Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <adwaita.h>
7 : : #include <valent.h>
8 : :
9 : : G_BEGIN_DECLS
10 : :
11 : : #define VALENT_TYPE_DEVICE_PREFERENCES_GROUP (valent_device_preferences_group_get_type ())
12 : :
13 [ + - + - : 33 : G_DECLARE_DERIVABLE_TYPE (ValentDevicePreferencesGroup, valent_device_preferences_group, VALENT, DEVICE_PREFERENCES_GROUP, AdwPreferencesGroup)
+ - ]
14 : :
15 : : struct _ValentDevicePreferencesGroupClass
16 : : {
17 : : AdwPreferencesGroupClass parent_class;
18 : :
19 : : /*< private >*/
20 : : gpointer padding[8];
21 : : };
22 : :
23 : : ValentContext * valent_device_preferences_group_get_context (ValentDevicePreferencesGroup *group);
24 : : GSettings * valent_device_preferences_group_get_settings (ValentDevicePreferencesGroup *group);
25 : :
26 : : G_END_DECLS
27 : :
|