You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Emil Ernerfeldt 7cd8ac2bbf Rename Widget::add_to to Widget::ui 5 years ago
docs Basic text input support 5 years ago
emigui Rename Widget::add_to to Widget::ui 5 years ago
emigui_glium Move code from glium example into glium library 5 years ago
emigui_wasm Remove legacy clone when uploading webgl texture 5 years ago
example_glium Move code from glium example into glium library 5 years ago
example_wasm Print frame times for glium and wasm excluding painting 5 years ago
.gitignore No typescript. Just one index.html + wasm. 6 years ago
Cargo.lock Move code from glium example into glium library 5 years ago
Cargo.toml Minor API improvements 6 years ago
OFL.txt New font: Comfortaa 6 years ago
README.md Basic text input support 5 years ago
build_glium.sh minor glium app change 5 years ago
build_wasm.sh Update wasm/web example 5 years ago
lint.sh No typescript. Just one index.html + wasm. 6 years ago
start_server.sh Update wasm/web example 5 years ago

README.md

Emigui

(Experimental, Modularized Immediate mode Graphical User Interface)

An immediate mode GUI library written in Rust. For web apps or native apps.

Goals:

  • Lightweight
  • Short, conveniant syntax
  • Responsive (60 Hz without breaking a sweat)
  • Portable
  • Platform independent (the same code works on the web and as a native app)

How it works:

Loop:

  • Gather input: mouse, touches, screen size, ...
  • Run application code (Immediate Mode GUI)
  • Output is a triangle mesh
  • Render with e.g. OpenGL

Available backends:

Wherever you can render textured triangles you can use Emigui.

Currently two backends have been tested:

  • WebAssembly (emigui_wasm) for making a web app
  • Glium for native apps (see example_glium).

The same application code can thus be compiled to either into a native app or a web app.

Demos

Emigui feature demo, (partial) source: https://github.com/emilk/emigui/blob/master/emigui/src/example_app.rs

Hobogo: A small game using Emigui, source: https://github.com/emilk/hobogo

State

Mostly a tech demo at this point. I hope to find time to work more on this in the future.

Features:

  • Text
  • Buttons, checkboxes, radio buttons and sliders
  • Horizontal or vertical layout
  • Column layout
  • Collapsible headers (sections)
  • Anti-aliased rendering of circles, rounded rectangles and lines.

Inspiration

The one and only Dear ImGui is a great Immediate Mode GUI for C++ which works with many backends. That library revolutionized how I think about GUI code from something I hated to do to something I now like to do.

Credits / Licenses

Fonts:

  • Comfortaa: Open Font License, see OFT.txt
  • ProggyClean.ttf, Copyright (c) 2004, 2005 Tristan Grimmer. MIT License. http://www.proggyfonts.net/
  • Roboto-Regular.ttf: Apache License, Version 2.0