14 个版本 (6 个破坏性更新)

0.7.0 2024年8月7日
0.6.1 2024年7月10日
0.5.0 2024年6月8日
0.4.1 2024年5月13日
0.1.1 2024年1月27日

#133GUI

Download history • Rust 包仓库 1/week @ 2024-05-02 • Rust 包仓库 325/week @ 2024-05-09 • Rust 包仓库 58/week @ 2024-05-16 • Rust 包仓库 137/week @ 2024-05-23 • Rust 包仓库 16/week @ 2024-05-30 • Rust 包仓库 207/week @ 2024-06-06 • Rust 包仓库 33/week @ 2024-06-13 • Rust 包仓库 5/week @ 2024-06-20 • Rust 包仓库 277/week @ 2024-07-04 • Rust 包仓库 100/week @ 2024-07-11 • Rust 包仓库 18/week @ 2024-07-18 • Rust 包仓库 20/week @ 2024-07-25 • Rust 包仓库 48/week @ 2024-08-01 • Rust 包仓库 131/week @ 2024-08-08 • Rust 包仓库 22/week @ 2024-08-15 • Rust 包仓库

224 每月下载量
用于 3 crates

MIT 许可证

8.5MB
118K SLoC

C++ 101K SLoC // 0.2% comments • Rust 包仓库 Visual Studio Project 6.5K SLoC • Rust 包仓库 Rust 5K SLoC // 0.0% comments • Rust 包仓库 Objective-C++ 3.5K SLoC // 0.2% comments • Rust 包仓库 C 731 SLoC // 0.3% comments • Rust 包仓库 Visual Studio Solution 341 SLoC • Rust 包仓库 Batch 273 SLoC • Rust 包仓库 GLSL 63 SLoC • Rust 包仓库 Kotlin 59 SLoC // 0.1% comments • Rust 包仓库 Shell 3 SLoC // 0.7% comments • Rust 包仓库 GDB Script 1 SLoC // 0.9% comments • Rust 包仓库

easy-imgui-rs

build

使用 Rust 和 Dear ImGui 构建完整的 GUI 应用程序。它目前使用版本 v1.90.9。

此仓库中有几个 crate

examples 目录中查看一些示例。最简单的示例只有几行代码。

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);
    }
}

依赖项