diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-04-04 20:45:03 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-04-04 20:45:03 +0200 |
| commit | d99cd911f62619cfa7da63b6b75d8315ec81d2fc (patch) | |
| tree | 5ec5d8e40efd750667100c5f3718323a7f5005b7 /include/adwaitamm/stylemanager.hpp | |
| parent | 28e8900afd96d6aa0035ea8a01c1a7e4fdeb1ced (diff) | |
| download | libadwaitamm-d99cd911f62619cfa7da63b6b75d8315ec81d2fc.tar.xz libadwaitamm-d99cd911f62619cfa7da63b6b75d8315ec81d2fc.zip | |
adw: add missing StyleManager functions
Diffstat (limited to 'include/adwaitamm/stylemanager.hpp')
| -rw-r--r-- | include/adwaitamm/stylemanager.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/adwaitamm/stylemanager.hpp b/include/adwaitamm/stylemanager.hpp index 8c6fd85..8a365f9 100644 --- a/include/adwaitamm/stylemanager.hpp +++ b/include/adwaitamm/stylemanager.hpp @@ -14,6 +14,7 @@ #include <gtkmm/application.h> #include <gdkmm/display.h> +#include <gdkmm/rgba.h> #include <glib-object.h> #define _ADWAITA_INSIDE @@ -64,6 +65,15 @@ namespace Adwaita auto static get_base_type() -> GType; auto get_accent_color() const -> AccentColor; + auto get_accent_color_rgba() const -> Gdk::RGBA; + auto get_color_scheme() const -> ColorScheme; + auto get_dark() const -> bool; + auto get_display() const -> Glib::RefPtr<Gdk::Display>; + auto get_document_font_name() const -> Glib::ustring; + auto get_high_contrast() const -> bool; + auto get_monospace_font_name() const -> Glib::ustring; + auto get_system_supports_accent_colors() const -> bool; + auto get_system_supports_color_schemes() const -> bool; auto set_color_scheme(ColorScheme value) -> void; protected: |
