-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-config-base-widget.c
193 lines (153 loc) · 5.39 KB
/
nemo-config-base-widget.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
/* nemo-config-base-widget.c */
/* A base widget class for extension/action/script config widgets.
* This is usually part of a NemoPluginManagerWidget
*/
#include <config.h>
#include "nemo-config-base-widget.h"
#include <glib.h>
G_DEFINE_TYPE (NemoConfigBaseWidget, nemo_config_base_widget, GTK_TYPE_BIN);
static void
nemo_config_base_widget_class_init (NemoConfigBaseWidgetClass *klass)
{
}
static void
nemo_config_base_widget_init (NemoConfigBaseWidget *self)
{
GtkStyleContext *context;
GtkWidget *box;
GtkWidget *w;
GtkWidget *tb;
GtkWidget *label;
GtkWidget *toolbar_item;
GtkWidget *frame = gtk_frame_new (NULL);
gtk_container_add (GTK_CONTAINER (self), frame);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
context = gtk_widget_get_style_context (frame);
gtk_style_context_add_class (context, "view");
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_container_add (GTK_CONTAINER (frame), box);
tb = gtk_toolbar_new ();
context = gtk_widget_get_style_context (tb);
gtk_style_context_add_class (context, "primary-toolbar");
gtk_box_pack_start (GTK_BOX (box), tb, FALSE, FALSE, 0);
toolbar_item = GTK_WIDGET (gtk_tool_item_new ());
gtk_container_add (GTK_CONTAINER (tb), toolbar_item);
w = gtk_label_new (NULL);
gtk_container_add (GTK_CONTAINER (toolbar_item), w);
self->label = w;
w = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (w), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_box_pack_start (GTK_BOX (box), w, TRUE, TRUE, 0);
self->listbox = gtk_list_box_new ();
gtk_list_box_set_selection_mode (GTK_LIST_BOX (self->listbox), GTK_SELECTION_NONE);
gtk_container_add (GTK_CONTAINER (w), self->listbox);
tb = gtk_toolbar_new ();
context = gtk_widget_get_style_context (tb);
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TOOLBAR);
gtk_box_pack_start (GTK_BOX (box), tb, FALSE, FALSE, 0);
toolbar_item = GTK_WIDGET (gtk_tool_item_new ());
gtk_tool_item_set_expand (GTK_TOOL_ITEM (toolbar_item), TRUE);
gtk_container_add (GTK_CONTAINER (tb), toolbar_item);
w = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (toolbar_item), w);
context = gtk_widget_get_style_context(w);
gtk_style_context_add_class (context, "linked");
label = gtk_label_new (_("Disable all"));
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
self->disable_button = gtk_button_new ();
gtk_container_add (GTK_CONTAINER (w), self->disable_button);
gtk_container_add (GTK_CONTAINER (self->disable_button), label);
label = gtk_label_new (_("Enable all"));
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
self->enable_button = gtk_button_new ();
gtk_container_add (GTK_CONTAINER (w), self->enable_button);
gtk_container_add (GTK_CONTAINER (self->enable_button), label);
toolbar_item = GTK_WIDGET (gtk_tool_item_new ());
gtk_tool_item_set_expand (GTK_TOOL_ITEM (toolbar_item), FALSE);
gtk_container_add (GTK_CONTAINER (tb), toolbar_item);
w = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (toolbar_item), w);
context = gtk_widget_get_style_context(w);
gtk_style_context_add_class (context, "linked");
self->buttonbox = w;
gtk_widget_show_all (GTK_WIDGET (self));
}
/**
* nemo_config_base_widget_get_label:
* @widget: a #NemoConfigBaseWidget
*
* Returns: (transfer none): the label #GtkWidget
*/
GtkWidget *
nemo_config_base_widget_get_label (NemoConfigBaseWidget *widget)
{
return widget->label;
}
/**
* nemo_config_base_widget_get_listbox:
* @widget: a #NemoConfigBaseWidget
*
* Returns: (transfer none): the listbox #GtkWidget
*/
GtkWidget *
nemo_config_base_widget_get_listbox (NemoConfigBaseWidget *widget)
{
return widget->listbox;
}
/**
* nemo_config_base_widget_get_buttonbox:
* @widget: a #NemoConfigBaseWidget
*
* Returns: (transfer none): the buttonbox #GtkWidget
*/
GtkWidget *
nemo_config_base_widget_get_buttonbox (NemoConfigBaseWidget *widget)
{
return widget->buttonbox;
}
/**
* nemo_config_base_widget_get_enable_button:
* @widget: a #NemoConfigBaseWidget
*
* Returns: (transfer none): the enable button #GtkWidget
*/
GtkWidget *
nemo_config_base_widget_get_enable_button (NemoConfigBaseWidget *widget)
{
return widget->enable_button;
}
/**
* nemo_config_base_widget_get_disable_button:
* @widget: a #NemoConfigBaseWidget
*
* Returns: (transfer none): the disable button #GtkWidget
*/
GtkWidget *
nemo_config_base_widget_get_disable_button (NemoConfigBaseWidget *widget)
{
return widget->disable_button;
}
/**
* nemo_config_base_widget_set_default_buttons_sensitive:
* @widget: a #NemoConfigBaseWidget
* @sensitive: TRUE or FALSE
*
* Set the enable/disable buttons sensitive or not
*/
void
nemo_config_base_widget_set_default_buttons_sensitive (NemoConfigBaseWidget *widget, gboolean sensitive)
{
gtk_widget_set_sensitive (widget->enable_button, sensitive);
gtk_widget_set_sensitive (widget->disable_button, sensitive);
}
/**
* nemo_config_base_widget_clear_list:
* @widget: a #NemoConfigBaseWidget
*
* Clear the listbox and destroy all children
*/
void
nemo_config_base_widget_clear_list (NemoConfigBaseWidget *widget)
{
gtk_container_foreach (GTK_CONTAINER (widget->listbox), (GtkCallback) gtk_widget_destroy, NULL);
}