diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-04-28 13:31:44 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-04-28 13:31:44 +0200 |
| commit | 7eefefe0263922c9c0b7ed8190d49368a93bc959 (patch) | |
| tree | 10ee3a422312be225ba222a3fdfff0c03fc955b3 /include/adwaitamm/private/entryrow_p.hpp | |
| parent | c5064eedf26c04e346ec63b39610c82ded8194b7 (diff) | |
| download | libadwaitamm-7eefefe0263922c9c0b7ed8190d49368a93bc959.tar.xz libadwaitamm-7eefefe0263922c9c0b7ed8190d49368a93bc959.zip | |
adw: implement EntryRow
Diffstat (limited to 'include/adwaitamm/private/entryrow_p.hpp')
| -rw-r--r-- | include/adwaitamm/private/entryrow_p.hpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/adwaitamm/private/entryrow_p.hpp b/include/adwaitamm/private/entryrow_p.hpp new file mode 100644 index 0000000..903776f --- /dev/null +++ b/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 |
