mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-02-08 01:14:13 +00:00
34 lines
1.0 KiB
Rust
34 lines
1.0 KiB
Rust
use gtk::{gio::SimpleAction, glib::uuid_string_random, prelude::ActionExt};
|
|
|
|
/// [SimpleAction](https://docs.gtk.org/gio/class.SimpleAction.html) wrapper for `Escape` action of `Browser` group
|
|
pub struct Escape {
|
|
pub simple_action: SimpleAction,
|
|
}
|
|
|
|
impl Escape {
|
|
// Constructors
|
|
|
|
/// Create new `Self`
|
|
pub fn new() -> Self {
|
|
Self {
|
|
simple_action: SimpleAction::new(&uuid_string_random(), None),
|
|
}
|
|
}
|
|
|
|
// Actions
|
|
|
|
/// Emit [activate](https://docs.gtk.org/gio/signal.SimpleAction.activate.html) signal
|
|
/// with formatted for this action [Variant](https://docs.gtk.org/glib/struct.Variant.html) value
|
|
pub fn activate(&self) {
|
|
self.simple_action.activate(None); // @TODO custom value
|
|
}
|
|
|
|
// Events
|
|
|
|
/// Define callback function for
|
|
/// [SimpleAction::activate](https://docs.gtk.org/gio/signal.SimpleAction.activate.html) signal
|
|
pub fn connect_activate(&self, callback: impl Fn() + 'static) {
|
|
self.simple_action.connect_activate(move |_, _| callback());
|
|
}
|
|
}
|