libadwaita/application.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::Application;
use glib::translate::*;
use std::cell::RefCell;
use std::rc::Rc;
use glib::signal::SignalHandlerId;
use gtk::prelude::*;
impl Application {
/// Creates a new [`Application`][crate::Application].
///
/// If `application_id` is not `NULL`, then it must be valid. See
/// [`gio::Application::id_is_valid()`][crate::gio::Application::id_is_valid()].
///
/// If no application ID is given then some features (most notably application
/// uniqueness) will be disabled.
/// ## `application_id`
/// The application ID
/// ## `flags`
/// The application flags
///
/// # Returns
///
/// the newly created [`Application`][crate::Application]
#[doc(alias = "adw_application_new")]
pub fn new(application_id: Option<&str>, flags: gio::ApplicationFlags) -> Self {
skip_assert_initialized!();
let app = unsafe {
from_glib_full(ffi::adw_application_new(
application_id.to_glib_none().0,
flags.into_glib(),
))
};
Self::register_startup_hook(&app);
app
}
pub(crate) fn register_startup_hook(app: &Self) {
skip_assert_initialized!();
let signalid: Rc<RefCell<Option<SignalHandlerId>>> = Rc::new(RefCell::new(None));
{
let signalid_ = signalid.clone();
let id = app.connect_startup(move |app| {
app.disconnect(
signalid_
.borrow_mut()
.take()
.expect("Signal ID went missing"),
);
gtk::init().expect("Failed to initialize gtk4");
});
*signalid.borrow_mut() = Some(id);
}
}
}
impl Default for Application {
fn default() -> Self {
let app = glib::object::Object::new::<Self>();
Self::register_startup_hook(&app);
app
}
}