aboutsummaryrefslogtreecommitdiff
path: root/include/adwaitamm/private/comborow_p.hpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-28 12:11:23 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-28 12:11:23 +0200
commitc5064eedf26c04e346ec63b39610c82ded8194b7 (patch)
tree2b5d3c78facbf2e44774da2dd5cd953656c8d348 /include/adwaitamm/private/comborow_p.hpp
parenteea05c392c2711ffc8c19cbe1c1c7830fc3c60d1 (diff)
downloadlibadwaitamm-c5064eedf26c04e346ec63b39610c82ded8194b7.tar.xz
libadwaitamm-c5064eedf26c04e346ec63b39610c82ded8194b7.zip
adw: implement ComboRow
Diffstat (limited to 'include/adwaitamm/private/comborow_p.hpp')
-rw-r--r--include/adwaitamm/private/comborow_p.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/adwaitamm/private/comborow_p.hpp b/include/adwaitamm/private/comborow_p.hpp
new file mode 100644
index 0000000..e8c3683
--- /dev/null
+++ b/include/adwaitamm/private/comborow_p.hpp
@@ -0,0 +1,35 @@
+/**
+ * @author Felix Morgner (felix.morgner@gmail.com)
+ * @copyright Copyright (c) 2025
+ * SPDX-License-Identifier: LGPL-2.1-or-later
+ */
+
+#ifndef LIBADWAITAMM_PRIVATE_COMBO_ROW_P_HPP
+#define LIBADWAITAMM_PRIVATE_COMBO_ROW_P_HPP
+
+#include "adwaitamm/private/actionrow_p.hpp"
+
+#include <glibmm/class.h>
+#include <glibmm/objectbase.h>
+
+#define _ADWAITA_INSIDE
+#include <adw-combo-row.h>
+#undef _ADWAITA_INSIDE
+
+namespace Adwaita
+{
+ struct ComboRow_Class : Glib::Class
+ {
+ using BaseClassParent = AdwActionRowClass;
+ using BaseClassType = AdwComboRowClass;
+ using BaseObjectType = AdwComboRow;
+ using CppClassParent = ActionRow_Class;
+ using CppObjectType = struct ComboRow;
+
+ auto init() -> Glib::Class const &;
+ auto static class_init_function(void * gclass, void * data) -> void;
+ auto static wrap_new(GObject * object) -> Glib::ObjectBase *;
+ };
+} // namespace Adwaita
+
+#endif \ No newline at end of file