aboutsummaryrefslogtreecommitdiff
path: root/include/turns/adw/breakpoint.hpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-03-27 19:44:46 +0100
committerFelix Morgner <felix.morgner@gmail.com>2025-03-27 19:44:46 +0100
commit6bcf6c01484c580b7b5846f9b0593e2b499d5aee (patch)
tree59d1759cb89111c8ffbbe0d4d1c757ed6760452a /include/turns/adw/breakpoint.hpp
parenteabdf3c6c4f10ee8232a75fff6f1cefa0734cebf (diff)
downloadlibadwaitamm-6bcf6c01484c580b7b5846f9b0593e2b499d5aee.tar.xz
libadwaitamm-6bcf6c01484c580b7b5846f9b0593e2b499d5aee.zip
adw: add more dialog functions
Diffstat (limited to 'include/turns/adw/breakpoint.hpp')
-rw-r--r--include/turns/adw/breakpoint.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/turns/adw/breakpoint.hpp b/include/turns/adw/breakpoint.hpp
index b274bbb..e5dabe3 100644
--- a/include/turns/adw/breakpoint.hpp
+++ b/include/turns/adw/breakpoint.hpp
@@ -84,19 +84,20 @@ namespace turns::adw
using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj;
using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj_copy;
- explicit Breakpoint(BreakpointCondition & condition);
Breakpoint(Breakpoint const & other) = delete;
Breakpoint(Breakpoint && other) noexcept = default;
auto operator=(Breakpoint const & other) noexcept -> Breakpoint & = delete;
auto operator=(Breakpoint && other) noexcept -> Breakpoint & = default;
+ auto static create(BreakpointCondition & condition) -> Glib::RefPtr<Breakpoint>;
auto static get_type() -> GType;
auto static get_base_type() -> GType;
auto property_condition() -> Glib::PropertyProxy<BreakpointCondition *>;
protected:
+ explicit Breakpoint(BreakpointCondition & condition);
explicit Breakpoint(Glib::ConstructParams const & params);
explicit Breakpoint(BaseObjectType * gobj);
};