diff --git a/build.rs b/build.rs index 7ff2fa1..0feb24c 100644 --- a/build.rs +++ b/build.rs @@ -9,4 +9,9 @@ fn main() { "src/resources/icons/resources.gresource.xml", "src.icons.gresource", ); + glib_build_tools::compile_resources( + &["src/resources/style"], + "src/resources/style/resources.gresource.xml", + "src.style.gresource", + ); } diff --git a/src/main.rs b/src/main.rs index 3e6bc47..db7c682 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,13 @@ +#![allow(non_snake_case)] + +use gtk::{Application, CssProvider, gio}; +use gtk::gdk::Display; +use gtk::prelude::*; + +use crate::components::window::window::Window; mod components; -use gtk::prelude::*; -use gtk::{gio, Application}; -use crate::components::window::window::Window; - const APP_ID: &str = "org.Xetibo.ReSet"; fn main() { @@ -12,17 +15,32 @@ fn main() { .expect("Failed to register resources."); gio::resources_register_include!("src.icons.gresource") .expect("Failed to register resources."); + gio::resources_register_include!("src.style.gresource") + .expect("Failed to register resources."); let app = Application::builder().application_id(APP_ID).build(); app.connect_startup(move |_| { adw::init().unwrap(); + loadCss(); }); app.connect_activate(buildUI); app.run(); } +fn loadCss() { + let provider = CssProvider::new(); + provider.load_from_resource("/org/Xetibo/ReSet/style/style.css"); + + gtk::style_context_add_provider_for_display( + &Display::default().expect("Could not connect to a display."), + &provider, + gtk::STYLE_PROVIDER_PRIORITY_APPLICATION, + ); + +} + #[allow(non_snake_case)] fn buildUI(app: &Application) { let window = Window::new(app); diff --git a/src/resources/resetBluetooth.ui b/src/resources/resetBluetooth.ui index 9c5b737..5c09e6e 100644 --- a/src/resources/resetBluetooth.ui +++ b/src/resources/resetBluetooth.ui @@ -4,13 +4,14 @@