diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-04-24 20:12:26 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-04-25 07:43:33 +0200 |
| commit | 2c4e151343828af13b28ec39946b6bf34748c2b3 (patch) | |
| tree | 3572c1e224ad93e51c4a560198732e8f9bac7c99 /include/adwaitamm/breakpoint.hpp | |
| parent | 96ce3ba51c152e854bcc5e7df1c53fe776ca554b (diff) | |
| download | libadwaitamm-2c4e151343828af13b28ec39946b6bf34748c2b3.tar.xz libadwaitamm-2c4e151343828af13b28ec39946b6bf34748c2b3.zip | |
adw: extract class definitions
Diffstat (limited to 'include/adwaitamm/breakpoint.hpp')
| -rw-r--r-- | include/adwaitamm/breakpoint.hpp | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/include/adwaitamm/breakpoint.hpp b/include/adwaitamm/breakpoint.hpp index 13e9f1e..7bcb2d9 100644 --- a/include/adwaitamm/breakpoint.hpp +++ b/include/adwaitamm/breakpoint.hpp @@ -52,23 +52,10 @@ namespace Adwaita Gtk::Buildable, helpers::gobj_mixin<Breakpoint, AdwBreakpoint> { - struct Class : Glib::Class - { - using BaseClassParent = GObjectClass; - using BaseClassType = AdwBreakpointClass; - using BaseObjectType = AdwBreakpoint; - using CppClassParent = struct Glib::Object_Class; - using CppObjectType = Breakpoint; - - auto init() -> Glib::Class const &; - auto static class_init_function(void * gclass, void * data) -> void; - auto static wrap_new(GObject * object) -> Glib::ObjectBase *; - }; - - using BaseObjectType = Class::BaseObjectType; - using BaseClassType = Class::BaseClassType; - using CppObjectType = Class::CppObjectType; - using CppClassType = Class; + using BaseObjectType = AdwBreakpoint; + using BaseClassType = AdwBreakpointClass; + using CppObjectType = Breakpoint; + using CppClassType = struct Breakpoint_Class; using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj; using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj_copy; @@ -87,6 +74,8 @@ namespace Adwaita auto property_condition() const -> Glib::PropertyProxy_ReadOnly<BreakpointCondition *>; protected: + friend Breakpoint_Class; + explicit Breakpoint(BreakpointCondition & condition); explicit Breakpoint(Glib::ConstructParams const & params); explicit Breakpoint(BaseObjectType * gobj); |
