blob: fd6c22b1ff0fd76780f94489c1ab35575c1faba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* @author Felix Morgner (felix.morgner@gmail.com)
* @copyright Copyright (c) 2025
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifndef LIBADWAITAMM_PRIVATE_PREFERENCES_ROW_P_HPP
#define LIBADWAITAMM_PRIVATE_PREFERENCES_ROW_P_HPP
#include <glibmm/class.h>
#include <glibmm/objectbase.h>
#include <gtkmm/listboxrow.h>
#define _ADWAITA_INSIDE
#include <adw-preferences-row.h>
#undef _ADWAITA_INSIDE
namespace Adwaita
{
struct PreferencesRow_Class : Glib::Class
{
using BaseClassParent = GtkListBoxRowClass;
using BaseClassType = AdwPreferencesRowClass;
using BaseObjectType = AdwPreferencesRow;
using CppClassParent = Gtk::ListBoxRow_Class;
using CppObjectType = struct PreferencesRow;
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
|