blob: 295f1d02a67cb0fed3778ff6ec7a3ddd326eaa44 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
* Copyright (C) 2018 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
#error "Only <handy.h> can be included directly."
#endif
#include "hdy-version.h"
#include <gtk/gtk.h>
#include "hdy-preferences-row.h"
G_BEGIN_DECLS
#define HDY_TYPE_EXPANDER_ROW (hdy_expander_row_get_type())
HDY_AVAILABLE_IN_ALL
G_DECLARE_DERIVABLE_TYPE (HdyExpanderRow, hdy_expander_row, HDY, EXPANDER_ROW, HdyPreferencesRow)
/**
* HdyExpanderRowClass
* @parent_class: The parent class
*/
struct _HdyExpanderRowClass
{
HdyPreferencesRowClass parent_class;
/*< private >*/
gpointer padding[4];
};
HDY_AVAILABLE_IN_ALL
GtkWidget *hdy_expander_row_new (void);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_expander_row_get_subtitle (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_subtitle (HdyExpanderRow *self,
const gchar *subtitle);
HDY_AVAILABLE_IN_ALL
gboolean hdy_expander_row_get_use_underline (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_use_underline (HdyExpanderRow *self,
gboolean use_underline);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_expander_row_get_icon_name (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_icon_name (HdyExpanderRow *self,
const gchar *icon_name);
HDY_AVAILABLE_IN_ALL
gboolean hdy_expander_row_get_expanded (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_expanded (HdyExpanderRow *self,
gboolean expanded);
HDY_AVAILABLE_IN_ALL
gboolean hdy_expander_row_get_enable_expansion (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_enable_expansion (HdyExpanderRow *self,
gboolean enable_expansion);
HDY_AVAILABLE_IN_ALL
gboolean hdy_expander_row_get_show_enable_switch (HdyExpanderRow *self);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_set_show_enable_switch (HdyExpanderRow *self,
gboolean show_enable_switch);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_add_action (HdyExpanderRow *self,
GtkWidget *widget);
HDY_AVAILABLE_IN_ALL
void hdy_expander_row_add_prefix (HdyExpanderRow *self,
GtkWidget *widget);
G_END_DECLS
|