summaryrefslogtreecommitdiff
path: root/adw/include/adwaitamm/private
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-28 13:31:44 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-28 13:31:44 +0200
commitd7e133846015d005768e5588a6dd926fed4d3f04 (patch)
tree4b8dda3736595fdb77c4ee7dd79459737c1c0fc9 /adw/include/adwaitamm/private
parent6378909a3d85f7f65b5ba5c116d950f96342fed4 (diff)
downloadturns-d7e133846015d005768e5588a6dd926fed4d3f04.tar.xz
turns-d7e133846015d005768e5588a6dd926fed4d3f04.zip
adw: implement EntryRow
Diffstat (limited to 'adw/include/adwaitamm/private')
-rw-r--r--adw/include/adwaitamm/private/entryrow_p.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/adw/include/adwaitamm/private/entryrow_p.hpp b/adw/include/adwaitamm/private/entryrow_p.hpp
new file mode 100644
index 0000000..903776f
--- /dev/null
+++ b/adw/include/adwaitamm/private/entryrow_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_ENTRY_ROW_P_HPP
+#define LIBADWAITAMM_PRIVATE_ENTRY_ROW_P_HPP
+
+#include "adwaitamm/private/preferencesrow_p.hpp"
+
+#include <glibmm/class.h>
+#include <glibmm/objectbase.h>
+
+#define _ADWAITA_INSIDE
+#include <adw-entry-row.h>
+#undef _ADWAITA_INSIDE
+
+namespace Adwaita
+{
+ struct EntryRow_Class : Glib::Class
+ {
+ using BaseClassParent = AdwPreferencesRowClass;
+ using BaseClassType = AdwEntryRowClass;
+ using BaseObjectType = AdwEntryRow;
+ using CppClassParent = PreferencesRow_Class;
+ using CppObjectType = struct EntryRow;
+
+ 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