19 releases (10 breaking)

0.11.0 Nov 8, 2024
0.9.1 Oct 6, 2024
0.6.1 Jul 10, 2024
0.2.4 Mar 22, 2024

#188 in GUI

Download history 131/week @ 2024-08-03 42/week @ 2024-08-10 26/week @ 2024-08-17 14/week @ 2024-08-24 17/week @ 2024-08-31 14/week @ 2024-09-07 196/week @ 2024-09-14 232/week @ 2024-09-21 83/week @ 2024-09-28 174/week @ 2024-10-05 40/week @ 2024-10-12 10/week @ 2024-10-19 164/week @ 2024-10-26 110/week @ 2024-11-02 68/week @ 2024-11-09 10/week @ 2024-11-16

352 downloads per month
Used in 3 crates

MIT license

9MB
121K SLoC

C++ 104K SLoC // 0.2% comments Visual Studio Project 6.5K SLoC Rust 5.5K SLoC // 0.1% comments Objective-C++ 3.5K SLoC // 0.2% comments C 731 SLoC // 0.3% comments Batch 389 SLoC Visual Studio Solution 361 SLoC GLSL 63 SLoC Kotlin 59 SLoC // 0.1% comments Shell 3 SLoC // 0.7% comments GDB Script 1 SLoC // 0.9% comments

easy-imgui-rs

build

Build full GUI applications with Rust and Dear ImGui. It currently uses version v1.91.5.

There are several crates in this repository:

See some examples at the examples directory. The simplest one is just a few lines of code:

use easy_imgui_window::{MainWindow, MainWindowWithRenderer,
    winit::event_loop::EventLoopBuilder,
    easy_imgui as imgui,
};

fn main() {
    let event_loop = EventLoopBuilder::new().build().unwrap();
    let main_window = MainWindow::new(&event_loop, "Example").unwrap();
    let mut window = MainWindowWithRenderer::new(main_window);

    let mut app = App;

    event_loop.run(move |event, w| {
        let res = window.do_event(&mut app, &event, w);
        if res.is_break() {
            w.exit();
        }
    }).unwrap();
}

struct App;

impl imgui::UiBuilder for App {
    fn do_ui(&mut self, ui: &imgui::Ui<Self>) {
        ui.show_demo_window(None);
    }
}

Dependencies