#imgui #renderer #glium #window #bindings #mouse #ui

aflak_imgui-glium-renderer

Glium renderer for the imgui crate

1 unstable release

Uses old Rust 2015

0.18.1 Aug 11, 2018

#360 in Rendering

Download history 20/week @ 2024-02-19 10/week @ 2024-02-26 9/week @ 2024-03-04 19/week @ 2024-03-11

58 downloads per month
Used in 3 crates (via aflak_imgui_file_explorer)

MIT/Apache

11MB
198K SLoC

C 101K SLoC // 0.2% comments C++ 45K SLoC // 0.1% comments Visual Studio Project 40K SLoC // 0.0% comments Rust 6.5K SLoC // 0.0% comments Python 2K SLoC // 0.8% comments Objective-C++ 1.5K SLoC // 0.1% comments Objective-C 767 SLoC // 0.1% comments Visual Studio Solution 605 SLoC Perl 421 SLoC // 0.1% comments M4 321 SLoC // 0.2% comments Shell 226 SLoC // 0.2% comments GLSL 161 SLoC // 0.1% comments AWK 141 SLoC Batch 70 SLoC Forge Config 35 SLoC // 0.8% comments HICAD 23 SLoC INI 7 SLoC

imgui-rs: Rust bindings for ImGui

Still fairly experimental!

Minimum Rust version: 1.20

Build Status Documentation on docs.rs

Hello world

ui.window(im_str!("Hello world"))
    .size((300.0, 100.0), ImGuiCond::FirstUseEver)
    .build(|| {
        ui.text(im_str!("Hello world!"));
        ui.text(im_str!("This...is...imgui-rs!"));
        ui.separator();
        let mouse_pos = ui.imgui().mouse_pos();
        ui.text(im_str!("Mouse Position: ({:.1},{:.1})", mouse_pos.0, mouse_pos.1));
    })

Currently implemented things

  • Low-level API (imgui-sys)
  • Renderer for easy integration with Glium projects (optional)
  • Parts of high-level API
  • Not horrible way of defining and passing null-terminated UTF-8 to ImGui. The macro im_str! needs to be used most of the time. For more information and justification for this design, please see issue #7
  • Parts of imgui_demo.cpp reimplemented in Rust as an API usage example (examples/test_window_impl.rs)

Important but unimplemented things

  • Documentation (rustdoc)
  • Support passing a custom Program to Glium renderer (e.g. from a shader cache, or custom shader)

Core design questions and current choices

  • Closures VS begin/end pairs (current choice: closures)
  • Mutable references VS return values (current choice: mutable references)
  • Passing around Ui<'ui> VS passing around &'ui Ui (current choice: Ui<'ui>)
  • Splitting the API to smaller pieces VS all draw calls in Ui (current choice: all draw calls in Ui)
  • Builder pattern for optional arguments VS something else (current choice: builder)
  • Mutation functions in builders VS self-consuming functions in builders (current choice: self-consuming)

Compiling and running the demos

Examples are under the imgui-examples directory.

git clone https://github.com/Gekkio/imgui-rs
cd imgui-rs
git submodule update --init --recursive
cd imgui-examples
cargo test

cargo run --example hello_world
cargo run --example test_window
cargo run --example test_window_impl

Note to Windows users: You will need to use the MSVC ABI version of the Rust compiler along with its associated dependencies to build this libary and run the examples.

How to contribute

  1. Change or add something

  2. Run rustfmt to guarantee code style conformance

     cargo install rustfmt
     cargo fmt -- --write-mode=overwrite
    
  3. Open a pull request in Github

License

Licensed under either of

at your option.

Uses ImGui and cimgui.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~7–19MB
~245K SLoC