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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
/*
* Copyright (C) 2019 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#include "config.h"
#include <glib/gi18n-lib.h>
#include "hdy-preferences-row.h"
/**
* SECTION:hdy-preferences-row
* @short_description: A #GtkListBox row used to present preferences.
* @Title: HdyPreferencesRow
*
* The #HdyPreferencesRow widget has a title that #HdyPreferencesWindow will use
* to let the user look for a preference. It doesn't present the title in any
* way and it lets you present the preference as you please.
*
* #HdyActionRow and its derivatives are convenient to use as preference rows as
* they take care of presenting the preference's title while letting you compose
* the inputs of the preference around it.
*
* Since: 0.0.10
*/
typedef struct
{
gchar *title;
gboolean use_underline;
} HdyPreferencesRowPrivate;
G_DEFINE_TYPE_WITH_PRIVATE (HdyPreferencesRow, hdy_preferences_row, GTK_TYPE_LIST_BOX_ROW)
enum {
PROP_0,
PROP_TITLE,
PROP_USE_UNDERLINE,
LAST_PROP,
};
static GParamSpec *props[LAST_PROP];
static void
hdy_preferences_row_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
HdyPreferencesRow *self = HDY_PREFERENCES_ROW (object);
switch (prop_id) {
case PROP_TITLE:
g_value_set_string (value, hdy_preferences_row_get_title (self));
break;
case PROP_USE_UNDERLINE:
g_value_set_boolean (value, hdy_preferences_row_get_use_underline (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
hdy_preferences_row_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
HdyPreferencesRow *self = HDY_PREFERENCES_ROW (object);
switch (prop_id) {
case PROP_TITLE:
hdy_preferences_row_set_title (self, g_value_get_string (value));
break;
case PROP_USE_UNDERLINE:
hdy_preferences_row_set_use_underline (self, g_value_get_boolean (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
hdy_preferences_row_finalize (GObject *object)
{
HdyPreferencesRow *self = HDY_PREFERENCES_ROW (object);
HdyPreferencesRowPrivate *priv = hdy_preferences_row_get_instance_private (self);
g_free (priv->title);
G_OBJECT_CLASS (hdy_preferences_row_parent_class)->finalize (object);
}
static void
hdy_preferences_row_class_init (HdyPreferencesRowClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->get_property = hdy_preferences_row_get_property;
object_class->set_property = hdy_preferences_row_set_property;
object_class->finalize = hdy_preferences_row_finalize;
/**
* HdyPreferencesRow:title:
*
* The title of the preference represented by this row.
*
* Since: 0.0.10
*/
props[PROP_TITLE] =
g_param_spec_string ("title",
_("Title"),
_("The title of the preference"),
"",
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* HdyPreferencesRow:use-underline:
*
* Whether an embedded underline in the text of the title indicates a
* mnemonic.
*
* Since: 0.0.10
*/
props[PROP_USE_UNDERLINE] =
g_param_spec_boolean ("use-underline",
_("Use underline"),
_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"),
FALSE,
G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
g_object_class_install_properties (object_class, LAST_PROP, props);
}
static void
hdy_preferences_row_init (HdyPreferencesRow *self)
{
}
/**
* hdy_preferences_row_new:
*
* Creates a new #HdyPreferencesRow.
*
* Returns: a new #HdyPreferencesRow
*
* Since: 0.0.10
*/
GtkWidget *
hdy_preferences_row_new (void)
{
return g_object_new (HDY_TYPE_PREFERENCES_ROW, NULL);
}
/**
* hdy_preferences_row_get_title:
* @self: a #HdyPreferencesRow
*
* Gets the title of the preference represented by @self.
*
* Returns: (transfer none) (nullable): the title of the preference represented
* by @self, or %NULL.
*
* Since: 0.0.10
*/
const gchar *
hdy_preferences_row_get_title (HdyPreferencesRow *self)
{
HdyPreferencesRowPrivate *priv;
g_return_val_if_fail (HDY_IS_PREFERENCES_ROW (self), NULL);
priv = hdy_preferences_row_get_instance_private (self);
return priv->title;
}
/**
* hdy_preferences_row_set_title:
* @self: a #HdyPreferencesRow
* @title: (nullable): the title, or %NULL.
*
* Sets the title of the preference represented by @self.
*
* Since: 0.0.10
*/
void
hdy_preferences_row_set_title (HdyPreferencesRow *self,
const gchar *title)
{
HdyPreferencesRowPrivate *priv;
g_return_if_fail (HDY_IS_PREFERENCES_ROW (self));
priv = hdy_preferences_row_get_instance_private (self);
if (g_strcmp0 (priv->title, title) == 0)
return;
g_free (priv->title);
priv->title = g_strdup (title);
g_object_notify_by_pspec (G_OBJECT (self), props[PROP_TITLE]);
}
/**
* hdy_preferences_row_get_use_underline:
* @self: a #HdyPreferencesRow
*
* Gets whether an embedded underline in the text of the title indicates a
* mnemonic. See hdy_preferences_row_set_use_underline().
*
* Returns: %TRUE if an embedded underline in the title indicates the mnemonic
* accelerator keys.
*
* Since: 0.0.10
*/
gboolean
hdy_preferences_row_get_use_underline (HdyPreferencesRow *self)
{
HdyPreferencesRowPrivate *priv;
g_return_val_if_fail (HDY_IS_PREFERENCES_ROW (self), FALSE);
priv = hdy_preferences_row_get_instance_private (self);
return priv->use_underline;
}
/**
* hdy_preferences_row_set_use_underline:
* @self: a #HdyPreferencesRow
* @use_underline: %TRUE if underlines in the text indicate mnemonics
*
* If true, an underline in the text of the title indicates the next character
* should be used for the mnemonic accelerator key.
*
* Since: 0.0.10
*/
void
hdy_preferences_row_set_use_underline (HdyPreferencesRow *self,
gboolean use_underline)
{
HdyPreferencesRowPrivate *priv;
g_return_if_fail (HDY_IS_PREFERENCES_ROW (self));
priv = hdy_preferences_row_get_instance_private (self);
if (priv->use_underline == !!use_underline)
return;
priv->use_underline = !!use_underline;
g_object_notify_by_pspec (G_OBJECT (self), props[PROP_USE_UNDERLINE]);
}
|