-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-navigation-state.c
265 lines (218 loc) · 6.93 KB
/
nemo-navigation-state.c
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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* Nemo - Nemo navigation state
*
* Copyright (C) 2011 Red Hat Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street - Suite 500,
* Boston, MA 02110-1335, USA.
*
* Authors: Cosimo Cecchi <[email protected]>
*
*/
#include <config.h>
#include "nemo-navigation-state.h"
struct _NemoNavigationStateDetails {
GtkActionGroup *slave;
GtkActionGroup *master;
GList *groups;
gchar **action_names;
GList *active_bindings;
};
enum {
PROP_SLAVE = 1,
PROP_MASTER,
PROP_ACTION_NAMES,
NUM_PROPERTIES,
};
static GParamSpec *properties[NUM_PROPERTIES] = { NULL, };
G_DEFINE_TYPE (NemoNavigationState, nemo_navigation_state, G_TYPE_OBJECT);
static void
clear_bindings (NemoNavigationState *self)
{
g_list_free_full (self->priv->active_bindings, g_object_unref);
self->priv->active_bindings = NULL;
}
static void
update_bindings (NemoNavigationState *self)
{
gint length, idx;
GBinding *binding;
GtkAction *master_action, *slave_action;
length = g_strv_length (self->priv->action_names);
for (idx = 0; idx < length; idx++) {
master_action = gtk_action_group_get_action (self->priv->master,
self->priv->action_names[idx]);
slave_action = gtk_action_group_get_action (self->priv->slave,
self->priv->action_names[idx]);
if (!master_action || !slave_action) {
continue;
}
binding = g_object_bind_property (master_action, "sensitive",
slave_action, "sensitive",
G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE);
/* bind "active" too for toggle actions */
if (GTK_IS_TOGGLE_ACTION (master_action)) {
binding = g_object_bind_property (master_action, "active",
slave_action, "active",
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
}
self->priv->active_bindings = g_list_prepend (self->priv->active_bindings, binding);
}
}
static void
nemo_navigation_state_init (NemoNavigationState *self)
{
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, NEMO_TYPE_NAVIGATION_STATE,
NemoNavigationStateDetails);
}
static void
nemo_navigation_state_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
{
NemoNavigationState *self = NEMO_NAVIGATION_STATE (object);
switch (property_id) {
case PROP_SLAVE:
self->priv->slave = g_value_dup_object (value);
nemo_navigation_state_add_group (self, g_value_get_object (value));
break;
case PROP_MASTER:
self->priv->master = g_value_dup_object (value);
break;
case PROP_ACTION_NAMES:
self->priv->action_names = g_value_dup_boxed (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
static void
nemo_navigation_state_finalize (GObject *obj)
{
NemoNavigationState *self = NEMO_NAVIGATION_STATE (obj);
g_strfreev (self->priv->action_names);
G_OBJECT_CLASS (nemo_navigation_state_parent_class)->finalize (obj);
}
static void
nemo_navigation_state_dispose (GObject *obj)
{
NemoNavigationState *self = NEMO_NAVIGATION_STATE (obj);
clear_bindings (self);
g_clear_object (&self->priv->slave);
g_clear_object (&self->priv->master);
if (self->priv->groups != NULL) {
g_list_free_full (self->priv->groups, g_object_unref);
self->priv->groups = NULL;
}
G_OBJECT_CLASS (nemo_navigation_state_parent_class)->dispose (obj);
}
static void
nemo_navigation_state_class_init (NemoNavigationStateClass *klass)
{
GObjectClass *oclass = G_OBJECT_CLASS (klass);
oclass->dispose = nemo_navigation_state_dispose;
oclass->finalize = nemo_navigation_state_finalize;
oclass->set_property = nemo_navigation_state_set_property;
properties[PROP_SLAVE] =
g_param_spec_object ("slave",
"The slave GtkActionGroup",
"The GtkActionGroup that will sync with the current master",
GTK_TYPE_ACTION_GROUP,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE |
G_PARAM_STATIC_STRINGS);
properties[PROP_MASTER] =
g_param_spec_object ("master",
"The master GtkActionGroup",
"The GtkActionGroup that will be used to sync the slave",
GTK_TYPE_ACTION_GROUP,
G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS);
properties[PROP_ACTION_NAMES] =
g_param_spec_boxed ("action-names",
"The action names to sync",
"The action names to sync",
G_TYPE_STRV,
G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (oclass, NUM_PROPERTIES, properties);
g_type_class_add_private (klass, sizeof (NemoNavigationStateDetails));
}
NemoNavigationState *
nemo_navigation_state_new (GtkActionGroup *slave,
const gchar **action_names)
{
return g_object_new (NEMO_TYPE_NAVIGATION_STATE,
"slave", slave,
"action-names", action_names,
NULL);
}
void
nemo_navigation_state_set_master (NemoNavigationState *self,
GtkActionGroup *master)
{
if (self->priv->master != master) {
clear_bindings (self);
g_clear_object (&self->priv->master);
self->priv->master = g_object_ref (master);
update_bindings (self);
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_MASTER]);
}
}
void
nemo_navigation_state_add_group (NemoNavigationState *self,
GtkActionGroup *group)
{
self->priv->groups = g_list_prepend (self->priv->groups, g_object_ref (group));
}
void
nemo_navigation_state_sync_all (NemoNavigationState *self)
{
GList *l;
gint length, idx;
const gchar *action_name;
GtkAction *action;
gboolean master_value;
GtkActionGroup *group;
length = g_strv_length (self->priv->action_names);
for (idx = 0; idx < length; idx++) {
action_name = self->priv->action_names[idx];
action = gtk_action_group_get_action (self->priv->master,
action_name);
master_value = gtk_action_get_sensitive (action);
for (l = self->priv->groups; l != NULL; l = l->next) {
group = l->data;
action = gtk_action_group_get_action (group, action_name);
gtk_action_set_sensitive (action, master_value);
}
}
}
GtkActionGroup *
nemo_navigation_state_get_master (NemoNavigationState *self)
{
return self->priv->master;
}
void
nemo_navigation_state_set_boolean (NemoNavigationState *self,
const gchar *action_name,
gboolean value)
{
GtkAction *action;
action = gtk_action_group_get_action (self->priv->master,
action_name);
if (action == NULL) {
return;
}
gtk_action_set_sensitive (action, value);
}