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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
|
/*
* gnome-keyring
*
* Copyright (C) 2010 Stefan Walter
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "config.h"
#include "gcr-collection-model.h"
#include "gcr-internal.h"
#include "gcr-tree-selector.h"
#include <glib/gi18n-lib.h>
#include <string.h>
/**
* SECTION:gcr-tree-selector
* @title: GcrTreeSelector
* @short_description: A selector widget to select certificates or keys.
*
* The #GcrTreeSelector can be used to select certificates or keys. It allows
* the user to select multiple objects from a tree.
*/
/**
* GcrTreeSelector:
*
* A tree selector widget.
*/
/**
* GcrTreeSelectorClass:
*
* The class for #GcrTreeSelector.
*/
enum {
PROP_0,
PROP_COLLECTION,
PROP_COLUMNS
};
struct _GcrTreeSelectorPrivate {
GcrCollection *collection;
const GcrColumn *columns;
GcrCollectionModel *model;
};
G_DEFINE_TYPE (GcrTreeSelector, gcr_tree_selector, GTK_TYPE_TREE_VIEW);
/* -----------------------------------------------------------------------------
* INTERNAL
*/
static void
on_check_column_toggled (GtkCellRendererToggle *cell, gchar *path, GcrCollectionModel *model)
{
GtkTreeIter iter;
g_assert (path != NULL);
if (gtk_tree_model_get_iter_from_string (GTK_TREE_MODEL (model), &iter, path))
gcr_collection_model_toggle_selected (model, &iter);
}
static void
add_string_column (GcrTreeSelector *self, const GcrColumn *column, gint column_id)
{
GtkCellRenderer *cell;
GtkTreeViewColumn *col;
const gchar *label;
g_assert (column->column_type == G_TYPE_STRING);
g_assert (!(column->flags & GCR_COLUMN_HIDDEN));
cell = gtk_cell_renderer_text_new ();
g_object_set (G_OBJECT (cell), "ellipsize", PANGO_ELLIPSIZE_END, NULL);
label = column->label ? g_dpgettext2 (NULL, "column", column->label) : "";
col = gtk_tree_view_column_new_with_attributes (label, cell, "text", column_id, NULL);
gtk_tree_view_column_set_resizable (col, TRUE);
if (column->flags & GCR_COLUMN_SORTABLE)
gtk_tree_view_column_set_sort_column_id (col, column_id);
gtk_tree_view_append_column (GTK_TREE_VIEW (self), col);
}
static void
add_icon_column (GcrTreeSelector *self, const GcrColumn *column, gint column_id)
{
GtkCellRenderer *cell;
GtkTreeViewColumn *col;
const gchar *label;
g_assert (column->column_type == G_TYPE_ICON);
g_assert (!(column->flags & GCR_COLUMN_HIDDEN));
cell = gtk_cell_renderer_pixbuf_new ();
g_object_set (cell, "stock-size", GTK_ICON_SIZE_BUTTON, NULL);
label = column->label ? g_dpgettext2 (NULL, "column", column->label) : "";
col = gtk_tree_view_column_new_with_attributes (label, cell, "gicon", column_id, NULL);
gtk_tree_view_column_set_resizable (col, TRUE);
if (column->flags & GCR_COLUMN_SORTABLE)
gtk_tree_view_column_set_sort_column_id (col, column_id);
gtk_tree_view_append_column (GTK_TREE_VIEW (self), col);
}
static void
add_check_column (GcrTreeSelector *self, guint column_id)
{
GtkCellRenderer *cell;
GtkTreeViewColumn *col;
cell = gtk_cell_renderer_toggle_new ();
g_signal_connect (cell, "toggled", G_CALLBACK (on_check_column_toggled), self->pv->model);
col = gtk_tree_view_column_new_with_attributes ("", cell, "active", column_id, NULL);
gtk_tree_view_column_set_resizable (col, FALSE);
gtk_tree_view_append_column (GTK_TREE_VIEW (self), col);
}
/* -----------------------------------------------------------------------------
* OBJECT
*/
static GObject*
gcr_tree_selector_constructor (GType type, guint n_props, GObjectConstructParam *props)
{
GcrTreeSelector *self = GCR_TREE_SELECTOR (G_OBJECT_CLASS (gcr_tree_selector_parent_class)->constructor(type, n_props, props));
const GcrColumn *column;
guint i;
g_return_val_if_fail (self, NULL);
g_return_val_if_fail (self->pv->columns, NULL);
self->pv->model = gcr_collection_model_new_full (self->pv->collection,
GCR_COLLECTION_MODEL_TREE,
self->pv->columns);
gtk_tree_view_set_model (GTK_TREE_VIEW (self), GTK_TREE_MODEL (self->pv->model));
/* First add the check mark column */
add_check_column (self, gcr_collection_model_column_for_selected (self->pv->model));
for (column = self->pv->columns, i = 0; column->property_name; ++column, ++i) {
if (column->flags & GCR_COLUMN_HIDDEN)
continue;
if (column->column_type == G_TYPE_STRING)
add_string_column (self, column, i);
else if (column->column_type == G_TYPE_ICON)
add_icon_column (self, column, i);
else
g_warning ("skipping unsupported column '%s' of type: %s",
column->property_name, g_type_name (column->column_type));
}
return G_OBJECT (self);
}
static void
gcr_tree_selector_init (GcrTreeSelector *self)
{
self->pv = G_TYPE_INSTANCE_GET_PRIVATE (self, GCR_TYPE_TREE_SELECTOR, GcrTreeSelectorPrivate);
}
static void
gcr_tree_selector_dispose (GObject *obj)
{
GcrTreeSelector *self = GCR_TREE_SELECTOR (obj);
if (self->pv->model)
g_object_unref (self->pv->model);
self->pv->model = NULL;
if (self->pv->collection)
g_object_unref (self->pv->collection);
self->pv->collection = NULL;
G_OBJECT_CLASS (gcr_tree_selector_parent_class)->dispose (obj);
}
static void
gcr_tree_selector_finalize (GObject *obj)
{
GcrTreeSelector *self = GCR_TREE_SELECTOR (obj);
g_assert (!self->pv->collection);
g_assert (!self->pv->model);
G_OBJECT_CLASS (gcr_tree_selector_parent_class)->finalize (obj);
}
static void
gcr_tree_selector_set_property (GObject *obj, guint prop_id, const GValue *value,
GParamSpec *pspec)
{
GcrTreeSelector *self = GCR_TREE_SELECTOR (obj);
switch (prop_id) {
case PROP_COLLECTION:
g_return_if_fail (!self->pv->collection);
self->pv->collection = g_value_dup_object (value);
g_return_if_fail (self->pv->collection);
break;
case PROP_COLUMNS:
g_return_if_fail (!self->pv->columns);
self->pv->columns = g_value_get_pointer (value);
g_return_if_fail (self->pv->columns);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec);
break;
}
}
static void
gcr_tree_selector_get_property (GObject *obj, guint prop_id, GValue *value,
GParamSpec *pspec)
{
GcrTreeSelector *self = GCR_TREE_SELECTOR (obj);
switch (prop_id) {
case PROP_COLLECTION:
g_value_set_object (value, gcr_tree_selector_get_collection (self));
break;
case PROP_COLUMNS:
g_value_set_pointer (value, (gpointer)gcr_tree_selector_get_columns (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec);
break;
}
}
static void
gcr_tree_selector_class_init (GcrTreeSelectorClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->constructor = gcr_tree_selector_constructor;
gobject_class->dispose = gcr_tree_selector_dispose;
gobject_class->finalize = gcr_tree_selector_finalize;
gobject_class->set_property = gcr_tree_selector_set_property;
gobject_class->get_property = gcr_tree_selector_get_property;
g_type_class_add_private (gobject_class, sizeof (GcrTreeSelectorPrivate));
/**
* GcrTreeSelector:collection:
*
* The collection which contains the objects to display in the selector.
*/
g_object_class_install_property (gobject_class, PROP_COLLECTION,
g_param_spec_object ("collection", "Collection", "Collection to select from",
GCR_TYPE_COLLECTION, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
/**
* GcrTreeSelector:columns:
*
* The columns to use to display the objects.
*/
g_object_class_install_property (gobject_class, PROP_COLUMNS,
g_param_spec_pointer ("columns", "Columns", "Columns to display in selector",
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
}
/* -----------------------------------------------------------------------------
* PUBLIC
*/
/**
* gcr_tree_selector_new: (skip)
* @collection: The collection that contains the objects to display
* @columns: The columns to use to display the objects
*
* Create a new #GcrTreeSelector.
*
* Returns: (transfer full): a newly allocated selector, which should be
* released with g_object_unref()
*/
GcrTreeSelector *
gcr_tree_selector_new (GcrCollection *collection, const GcrColumn *columns)
{
return g_object_new (GCR_TYPE_TREE_SELECTOR,
"collection", collection,
"columns", columns,
NULL);
}
/**
* gcr_tree_selector_get_collection:
* @self: The selector
*
* Get the collection that this selector is displaying objects from.
*
* Returns: (transfer none): the collection, owned by the selector
*/
GcrCollection *
gcr_tree_selector_get_collection (GcrTreeSelector *self)
{
g_return_val_if_fail (GCR_IS_TREE_SELECTOR (self), NULL);
return self->pv->collection;
}
/**
* gcr_tree_selector_get_columns: (skip)
* @self: The selector
*
* Get the columns displayed in a selector in multiple mode.
*
* Returns: (transfer none): The columns, owned by the selector.
*/
const GcrColumn *
gcr_tree_selector_get_columns (GcrTreeSelector *self)
{
g_return_val_if_fail (GCR_IS_TREE_SELECTOR (self), NULL);
return self->pv->columns;
}
/**
* gcr_tree_selector_get_selected:
* @self: The selector
*
* Get a list of selected objects.
*
* Returns: (transfer container) (element-type GLib.Object): the list of selected
* objects, to be released with g_list_free()
*/
GList*
gcr_tree_selector_get_selected (GcrTreeSelector *self)
{
g_return_val_if_fail (GCR_IS_TREE_SELECTOR (self), NULL);
return gcr_collection_model_get_selected_objects (self->pv->model);
}
/**
* gcr_tree_selector_set_selected:
* @self: The selector
* @selected: (element-type GLib.Object): The list of objects to select.
*
* Select certain objects in the selector.
*/
void
gcr_tree_selector_set_selected (GcrTreeSelector *self, GList *selected)
{
g_return_if_fail (GCR_IS_TREE_SELECTOR (self));
gcr_collection_model_set_selected_objects (self->pv->model, selected);
}
|