Crate egui[][src]

egui: an easy-to-use GUI in pure Rust!

Try the live web demo: https://emilk.github.io/egui/index.html. Read more about egui at https://github.com/emilk/egui.

To quickly get started with egui, you can take a look at egui_template which uses eframe.

To create a GUI using egui you first need a CtxRef (by convention referred to by ctx). Then you add a Window or a SidePanel to get a Ui, which is what you’ll be using to add all the buttons and labels that you need.

Using egui

To see what is possible to build with egui you can check out the online demo at https://emilk.github.io/egui/#demo.

If you like the “learning by doing” approach, clone https://github.com/emilk/egui_template and get started using egui right away.

A simple example

Here is a simple counter that can be incremented and decremented using two buttons:

fn ui_counter(ui: &mut egui::Ui, counter: &mut i32) {
    // Put the buttons and label on the same row:
    ui.horizontal(|ui| {
        if ui.button("-").clicked() {
            *counter -= 1;
        }
        ui.label(counter.to_string());
        if ui.button("+").clicked() {
            *counter += 1;
        }
    });
}

In some GUI frameworks this would require defining multiple types and functions with callbacks or message handlers, but thanks to egui being immediate mode everything is one self-contained function!

Getting a Ui

Use one of SidePanel, TopPanel, CentralPanel, Window or Area to get access to an Ui where you can put widgets. For example:

egui::CentralPanel::default().show(&ctx, |ui| {
    ui.add(egui::Label::new("Hello World!"));
    ui.label("A shorter and more convenient way to add a label.");
    if ui.button("Click me").clicked() {
        /* take some action here */
    }
});

Quick start

ui.label("This is a label");
ui.hyperlink("https://github.com/emilk/egui");
ui.text_edit_singleline(&mut my_string);
if ui.button("Click me").clicked() { }
ui.add(egui::Slider::f32(&mut my_f32, 0.0..=100.0));
ui.add(egui::DragValue::f32(&mut my_f32));

ui.checkbox(&mut my_boolean, "Checkbox");

#[derive(PartialEq)]
enum Enum { First, Second, Third }
let mut my_enum = Enum::First;
ui.horizontal(|ui| {
    ui.radio_value(&mut my_enum, Enum::First, "First");
    ui.radio_value(&mut my_enum, Enum::Second, "Second");
    ui.radio_value(&mut my_enum, Enum::Third, "Third");
});

ui.separator();

ui.image(my_image, [640.0, 480.0]);

ui.collapsing("Click to see what is hidden!", |ui| {
    ui.label("Not much, as it turns out");
});

Conventions

Conventions unless otherwise specified:

  • angles are in radians
  • Vec2::X is right and Vec2::Y is down.
  • Pos2::ZERO is left top.
  • Positions and sizes are measured in points. Each point may consist of many physical pixels.

Integrating with egui

Most likely you are using an existing egui backend/integration such as eframe or bevy_egui, but if you want to integrate egui into a new game engine, this is the section for you.

To write your own integration for egui you need to do this:

let mut ctx = egui::CtxRef::default();

// Game loop:
loop {
    let raw_input: egui::RawInput = gather_input();
    ctx.begin_frame(raw_input);

    egui::CentralPanel::default().show(&ctx, |ui| {
        ui.label("Hello world!");
        if ui.button("Click me").clicked() {
            /* take some action here */
        }
    });

    let (output, shapes) = ctx.end_frame();
    let clipped_meshes = ctx.tessellate(shapes); // create triangles to paint
    handle_output(output);
    paint(clipped_meshes);
}

Understanding immediate mode

egui is an immediate mode GUI library. It is useful to fully grok what “immediate mode” implies.

Here is an example to illustrate it:

if ui.button("click me").clicked() {
    take_action()
}

This code is being executed each frame at maybe 60 frames per second. Each frame egui does these things:

  • lays out the letters click me in order to figure out the size of the button
  • decides where on screen to place the button
  • check if the mouse is hovering or clicking that location
  • chose button colors based on if it is being hovered or clicked
  • add a Shape::Rect and Shape::Text to the list of shapes to be painted later this frame
  • return a Response with the clicked member so the user can check for interactions

There is no button being created and stored somewhere. The only output of this call is some colored shapes, and a Response.

Read more about the pros and cons of immediate mode at https://github.com/emilk/egui#why-immediate-mode.

How widgets works

if ui.button("click me").clicked() { take_action() }

is short for

let button = egui::Button::new("click me");
if ui.add(button).clicked() { take_action() }

which is short for

let button = egui::Button::new("click me");
let response = button.ui(ui);
if response.clicked() { take_action() }

Button uses the builder pattern to create the data required to show it. The Button is then discarded.

Button implements trait Widget, which looks like this:

pub trait Widget {
    /// Allocate space, interact, paint, and return a [`Response`].
    fn ui(self, ui: &mut Ui) -> Response;
}

Code snippets

// Miscellaneous tips and tricks

ui.horizontal_wrapped(|ui|{
    ui.spacing_mut().item_spacing.x = 0.0; // remove spacing between widgets
    // `radio_value` also works for enums, integers, and more.
    ui.radio_value(&mut some_bool, false, "Off");
    ui.radio_value(&mut some_bool, true, "On");
});

// Change test color on subsequent widgets:
ui.visuals_mut().override_text_color = Some(egui::Color32::RED);

// Turn off text wrapping on subsequent widgets:
ui.style_mut().wrap = Some(false);

Re-exports

pub use epaint;
pub use epaint::emath;
pub use epaint as paint;
pub use emath as math;
pub use containers::*;
pub use layers::LayerId;
pub use layers::Order;
pub use style::Style;
pub use style::Visuals;
pub use widgets::*;

Modules

color

Color conversions and types.

containers

Containers are pieces of the UI which wraps other pieces of UI. Examples: Window, ScrollArea, Resize, etc.

experimental

Experimental parts of egui, that may change suddenly or get removed.

layers

Handles paint layers, i.e. how things are sometimes painted behind or in front of other things.

menu

Menu bar functionality (very basic so far).

mutex

Helper module that wraps some Mutex types with different implementations.

special_emojis

egui supports around 1216 emojis in total. Here are some of the most useful: ∞⊗⎗⎘⎙⏏⏴⏵⏶⏷ ⏩⏪⏭⏮⏸⏹⏺■▶📾🔀🔁🔃 ☀☁★☆☐☑☜☝☞☟⛃⛶✔ ↺↻⟲⟳⬅➡⬆⬇⬈⬉⬊⬋⬌⬍⮨⮩⮪⮫ ♡ 📅📆 📈📉📊 📋📌📎📤📥🔆 🔈🔉🔊🔍🔎🔗🔘 🕓🖧🖩🖮🖱🖴🖵🖼🗀🗁🗋🗐🗑🗙🚫❓

style

egui theme (spacing, colors, etc).

util

Miscellaneous tools used by the rest of egui.

widgets

Widgets are pieces of GUI such as Label, Button, Slider etc.

Macros

github_link_file

Create a Hyperlink to the current file! on github.

github_link_file_line

Create a Hyperlink to the current file! (and line) on Github

Structs

Align2

Two-dimension alignment, e.g. Align2::LEFT_TOP.

ClippedMesh

A Mesh within a clip rectangle.

Color32

This format is used for space-efficient color representation (32 bits).

Context

This is the first thing you need when working with egui. Create using CtxRef.

CtxRef

A wrapper around Arc<Context>. This is how you will normally create and access a Context.

FontDefinitions

Describes the font data and the sizes to use.

Grid

A simple grid layout.

Id

egui tracks widgets frame-to-frame using Ids.

InnerResponse

Returned when we wrap some ui-code and want to return both the results of the inner function and the ui as a whole, e.g.:

InputState

Input state that egui updates each frame.

Layout

The layout of a Ui, e.g. “vertical & centered”.

Memory

The data that egui persists between frames.

Modifiers

State of the modifier keys. These must be fed to egui.

Output

What egui emits each frame. The backend should use this.

Painter

Helper to paint shapes and text to a specific region on a specific layer.

PointerState

Mouse or touch state.

Pos2

A position on screen.

RawInput

What the integrations provides to egui at the start of each frame.

Rect

A rectangular region of space.

Response

The result of adding a widget to a Ui.

Rgba

0-1 linear space RGBA color with premultiplied alpha.

Sense

What sort of interaction is a widget sensitive to?

Stroke

Describes the width and color of a line.

Texture

An 8-bit texture containing font data.

Ui

This is what you use to place widgets.

Vec2

A vector has a direction and length. A Vec2 is often used to represent a size.

Enums

Align

left/center/right or top/center/bottom alignment for e.g. anchors and layouts.

CursorIcon

A mouse cursor icon.

Direction

Layout direction, one of LeftToRight, RightToLeft, TopDown, BottomUp.

Event

An input event generated by the integration.

FontFamily

Which style of font: Monospace or Proportional.

Key

Keyboard keys.

PointerButton

Mouse button (or similar for touch input)

Shape

A paint primitive such as a circle or a piece of text. Coordinates are all screen space points (not physical pixels).

TextStyle

One of a few categories of styles of text, e.g. body, button or heading.

TextureId

What texture to use in a Mesh mesh.

Constants

NUM_POINTER_BUTTONS

Number of pointer buttons supported by egui, i.e. the number of possible states of PointerButton.

Traits

NumExt

Extends f32, Vec2 etc with at_least and at_most as aliases for max and min.

Functions

clamp

Returns range.start() if x <= range.start(), returns range.end() if x >= range.end() and returns x elsewhen.

lerp

Linear interpolation.

pos2

pos2(x,y) == Pos2::new(x, y)

remap

Linearly remap a value from one range to another, so that when x == from.start() returns to.start() and when x == from.end() returns to.end().

remap_clamp

Like remap, but also clamps the value so that the returned value is always in the to range.

vec2

vec2(x,y) == Vec2::new(x, y)

warn_if_debug_build

Helper function that adds a label when compiling with debug assertions enabled.