sysd-manager 2.19.4

Application to empower user to manage their <b>systemd units</b> via Graphical User Interface. Not only are you able to make changes to the enablement and running status of each of the units, but you will also be able to view and modify their unit files and check the journal logs.
mod imp;

use gtk::{
    glib::{self},
    subclass::prelude::ObjectSubclassIsExt,
};

use super::app_window::AppWindow;

// ANCHOR: mod
glib::wrapper! {
    pub struct SignalsWindow(ObjectSubclass<imp::SignalsWindowImp>)
    @extends adw::Window, gtk::Window, gtk::Widget,
    @implements gtk::Accessible,  gtk::Buildable,  gtk::ConstraintTarget,
    gtk::Native, gtk::Root, gtk::ShortcutManager;
}

impl SignalsWindow {
    pub fn new(app_window: &AppWindow) -> Self {
        let obj: SignalsWindow = glib::Object::new();
        let imp = obj.imp();
        imp.set_app_window(app_window);

        obj
    }
}