14 releases (breaking)

0.12.0 Mar 27, 2024
0.10.0 Jan 8, 2024
0.9.0 Dec 1, 2023
0.8.0 Sep 28, 2023
0.4.0 Oct 31, 2022

#394 in Encoding

Download history 18/week @ 2024-01-04 23/week @ 2024-01-11 34/week @ 2024-01-18 19/week @ 2024-02-01 58/week @ 2024-02-08 19/week @ 2024-02-15 37/week @ 2024-02-22 12/week @ 2024-02-29 8/week @ 2024-03-07 20/week @ 2024-03-14 31/week @ 2024-03-21 125/week @ 2024-03-28 45/week @ 2024-04-04 4/week @ 2024-04-11

205 downloads per month

MIT license

47KB
459 lines

egui-bind

Library for showing key and pointer binds

Installation

[dependencies]
egui-bind = "0.5"

# Or if you wish for your binds to be serializable
# [dependencies]
# egui-bind = { version = "0.5", features = ["serde"] }

Example

// Foreword: You can find this example in `examples/bind.rs`
#[derive(Default)]
struct ExampleApp {
    // This can also be serialized with `serde`. You just
    // need to enable `serde` feature.
    bind: Option<(KeyOrPointer, Modifiers)>,
    count: usize,
}

impl App for ExampleApp {
    fn update(&mut self, ctx: &Context, _: &mut Frame) {
        Window::new("Example")
            .show(ctx, |ui| {
                // Order matters, If you were to put this if case
                // after the bind was shown, then it would trigger `self.cout += 1`
                // on the same frame user assigned a new bind, which may not be the
                // desired behavior. But you can mitigate this by using the return
                // value of a `Bind::show` as shown below with `println!`.
                if self.bind.pressed(ui.input()) {
                    self.count += 1;
                }

                // `Bind::new` accepts a reference to a type that implements `BindTarget`
                // Most common of those are:
                // `Key`, `PointerButton`, `KeyOrPointer`, `(BindTarget, Modifiers)`
                // `Option<BindTarget>`
                let assigned = Bind::new("_test", &mut self.bind).show(ui);

                // Here it checks if the bind was pressed but not assigned on the same frame.
                if !assigned && self.bind.pressed(ui.input()) {
                    println!("I was pressed");
                }

                ui.label(format!("Counter: {}", self.count));
            });
    }
}

Dependencies

~4–11MB
~79K SLoC