blob: be0b25b559fd9774ee34d8485559079089acd620 (
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
36
|
#ifndef LIBADWAITAMM_PRIVATE_PREFERENCES_ROW_P_HPP
#define LIBADWAITAMM_PRIVATE_PREFERENCES_ROW_P_HPP
#include <glibmm/class.h>
#include <glibmm/objectbase.h>
#include <gtk/gtk.h>
using AdwPreferencesRow = struct _AdwPreferencesRow;
using AdwPreferencesRowClass = struct _AdwPreferencesRowClass;
namespace Gtk
{
struct ListBoxRow_Class;
} // namespace Gtk
namespace Adwaita
{
struct PreferencesRow;
struct PreferencesRow_Class : Glib::Class
{
using BaseClassParent = GtkListBoxRowClass;
using BaseClassType = AdwPreferencesRowClass;
using BaseObjectType = AdwPreferencesRow;
using CppClassParent = Gtk::ListBoxRow_Class;
using CppObjectType = 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
|