vimmate 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +4 -5
- data/VERSION +1 -0
- data/bin/vimmate +11 -53
- data/config/environment.rb +15 -14
- data/controllers/config_controller.rb +91 -0
- data/controllers/file_filter_controller.rb +1 -2
- data/controllers/vim_mate_controller.rb +1 -2
- data/lib/active_window/application.rb +26 -40
- data/lib/active_window/controller.rb +1 -2
- data/lib/active_window/filtered_active_tree_store.rb +28 -8
- data/lib/active_window.rb +14 -6
- data/lib/vim.rb +9 -0
- data/lib/vim_mate/app.rb +56 -0
- data/lib/vim_mate/plugins/inotify/init.rb +2 -2
- data/lib/vim_mate/plugins.rb +2 -2
- data/lib/vim_mate/vim_widget.rb +3 -1
- data/lib/vim_mate.rb +12 -0
- data/tasks/gem.rake +31 -0
- data/views/{vim_mate.glade → vim_mate.ui} +118 -141
- metadata +81 -16
- data/lib/try.rb +0 -9
- data/vimmate.gemspec +0 -138
@@ -1,55 +1,51 @@
|
|
1
|
-
<?xml version="1.0"?>
|
2
|
-
<
|
3
|
-
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<interface>
|
3
|
+
<requires lib="gtk+" version="2.16"/>
|
4
4
|
<!-- interface-naming-policy project-wide -->
|
5
|
-
<
|
5
|
+
<object class="GtkWindow" id="VimMate">
|
6
6
|
<signal name="key_press_event" handler="vim_mate.pressed_key"/>
|
7
7
|
<child>
|
8
|
-
<
|
8
|
+
<object class="GtkHPaned" id="MainPane">
|
9
9
|
<property name="visible">True</property>
|
10
10
|
<property name="can_focus">True</property>
|
11
11
|
<child>
|
12
|
-
<
|
12
|
+
<object class="GtkVBox" id="vbox1">
|
13
13
|
<property name="visible">True</property>
|
14
|
-
<property name="orientation">vertical</property>
|
15
14
|
<child>
|
16
|
-
<
|
15
|
+
<object class="GtkNotebook" id="SideTabs">
|
17
16
|
<property name="visible">True</property>
|
18
17
|
<property name="can_focus">True</property>
|
19
18
|
<property name="tab_pos">left</property>
|
20
19
|
<child>
|
21
|
-
<
|
20
|
+
<object class="GtkVBox" id="FilesBox">
|
22
21
|
<property name="visible">True</property>
|
23
|
-
<property name="orientation">vertical</property>
|
24
22
|
<child>
|
25
23
|
<placeholder/>
|
26
24
|
</child>
|
27
25
|
<child>
|
28
|
-
<
|
26
|
+
<object class="GtkVPaned" id="FilesPane">
|
29
27
|
<property name="visible">True</property>
|
30
28
|
<property name="can_focus">True</property>
|
31
|
-
<property name="orientation">vertical</property>
|
32
29
|
<child>
|
33
|
-
<
|
30
|
+
<object class="GtkVBox" id="TreeVBox">
|
34
31
|
<property name="visible">True</property>
|
35
|
-
<property name="orientation">vertical</property>
|
36
32
|
<child>
|
37
|
-
<
|
33
|
+
<object class="GtkHBox" id="FilesFilterBox">
|
38
34
|
<property name="visible">True</property>
|
39
35
|
<child>
|
40
|
-
<
|
36
|
+
<object class="GtkEntry" id="FilesFilterTerm">
|
41
37
|
<property name="visible">True</property>
|
42
38
|
<property name="can_focus">True</property>
|
43
|
-
<property name="invisible_char"
|
39
|
+
<property name="invisible_char">●</property>
|
44
40
|
<signal name="changed" handler="file_filter.changed"/>
|
45
|
-
</
|
41
|
+
</object>
|
46
42
|
<packing>
|
47
43
|
<property name="padding">5</property>
|
48
44
|
<property name="position">0</property>
|
49
45
|
</packing>
|
50
46
|
</child>
|
51
47
|
<child>
|
52
|
-
<
|
48
|
+
<object class="GtkToggleButton" id="FilesFilterButton">
|
53
49
|
<property name="label" translatable="yes">Filter</property>
|
54
50
|
<property name="visible">True</property>
|
55
51
|
<property name="can_focus">True</property>
|
@@ -58,14 +54,14 @@
|
|
58
54
|
<property name="active">True</property>
|
59
55
|
<property name="draw_indicator">True</property>
|
60
56
|
<signal name="toggled" handler="file_filter.toggle"/>
|
61
|
-
</
|
57
|
+
</object>
|
62
58
|
<packing>
|
63
59
|
<property name="expand">False</property>
|
64
60
|
<property name="padding">5</property>
|
65
61
|
<property name="position">1</property>
|
66
62
|
</packing>
|
67
63
|
</child>
|
68
|
-
</
|
64
|
+
</object>
|
69
65
|
<packing>
|
70
66
|
<property name="expand">False</property>
|
71
67
|
<property name="padding">7</property>
|
@@ -73,95 +69,83 @@
|
|
73
69
|
</packing>
|
74
70
|
</child>
|
75
71
|
<child>
|
76
|
-
<
|
72
|
+
<object class="GtkScrolledWindow" id="TreeScroller">
|
77
73
|
<property name="visible">True</property>
|
78
74
|
<property name="can_focus">True</property>
|
79
75
|
<property name="hscrollbar_policy">automatic</property>
|
80
76
|
<property name="vscrollbar_policy">automatic</property>
|
77
|
+
<signal name="drag_drop" handler="drag_drop"/>
|
81
78
|
<child>
|
82
|
-
<
|
79
|
+
<object class="GtkTreeView" id="FileTreeView">
|
83
80
|
<property name="visible">True</property>
|
84
81
|
<property name="can_focus">True</property>
|
85
82
|
<signal name="button_press_event" handler="file_filter.button_pressed"/>
|
83
|
+
<signal name="drag_drop" handler="file_filter.drag_drop"/>
|
86
84
|
<signal name="row_activated" handler="vim.open_selected_file"/>
|
87
|
-
</
|
85
|
+
</object>
|
88
86
|
</child>
|
89
|
-
</
|
87
|
+
</object>
|
90
88
|
<packing>
|
91
89
|
<property name="position">1</property>
|
92
90
|
</packing>
|
93
91
|
</child>
|
94
92
|
<child>
|
95
|
-
<
|
93
|
+
<object class="GtkLabel" id="SelectedPathLabel">
|
96
94
|
<property name="visible">True</property>
|
97
95
|
<property name="label" translatable="yes">---</property>
|
98
96
|
<property name="ellipsize">start</property>
|
99
|
-
</
|
97
|
+
</object>
|
100
98
|
<packing>
|
101
99
|
<property name="expand">False</property>
|
102
100
|
<property name="padding">3</property>
|
103
101
|
<property name="position">2</property>
|
104
102
|
</packing>
|
105
103
|
</child>
|
106
|
-
</
|
104
|
+
</object>
|
107
105
|
<packing>
|
108
106
|
<property name="resize">False</property>
|
109
107
|
<property name="shrink">True</property>
|
110
108
|
</packing>
|
111
109
|
</child>
|
112
110
|
<child>
|
113
|
-
<
|
114
|
-
<property name="visible">True</property>
|
115
|
-
<property name="can_focus">True</property>
|
116
|
-
<property name="hscrollbar_policy">automatic</property>
|
117
|
-
<property name="vscrollbar_policy">automatic</property>
|
118
|
-
<child>
|
119
|
-
<placeholder/>
|
120
|
-
</child>
|
121
|
-
</widget>
|
122
|
-
<packing>
|
123
|
-
<property name="resize">True</property>
|
124
|
-
<property name="shrink">True</property>
|
125
|
-
</packing>
|
111
|
+
<placeholder/>
|
126
112
|
</child>
|
127
|
-
</
|
113
|
+
</object>
|
128
114
|
<packing>
|
129
115
|
<property name="position">1</property>
|
130
116
|
</packing>
|
131
117
|
</child>
|
132
|
-
</
|
118
|
+
</object>
|
133
119
|
</child>
|
134
|
-
<child>
|
135
|
-
<
|
120
|
+
<child type="tab">
|
121
|
+
<object class="GtkLabel" id="FilesTabs">
|
136
122
|
<property name="visible">True</property>
|
137
123
|
<property name="label" translatable="yes">Files</property>
|
138
124
|
<property name="angle">90</property>
|
139
|
-
</
|
125
|
+
</object>
|
140
126
|
<packing>
|
141
127
|
<property name="tab_fill">False</property>
|
142
|
-
<property name="type">tab</property>
|
143
128
|
</packing>
|
144
129
|
</child>
|
145
130
|
<child>
|
146
|
-
<
|
131
|
+
<object class="GtkVBox" id="TagsBox">
|
147
132
|
<property name="visible">True</property>
|
148
|
-
<property name="orientation">vertical</property>
|
149
133
|
<child>
|
150
|
-
<
|
134
|
+
<object class="GtkHBox" id="TagsFilterBox">
|
151
135
|
<property name="visible">True</property>
|
152
136
|
<child>
|
153
|
-
<
|
137
|
+
<object class="GtkEntry" id="TagsFilterTerm">
|
154
138
|
<property name="visible">True</property>
|
155
139
|
<property name="can_focus">True</property>
|
156
|
-
<property name="invisible_char"
|
157
|
-
</
|
140
|
+
<property name="invisible_char">●</property>
|
141
|
+
</object>
|
158
142
|
<packing>
|
159
143
|
<property name="padding">5</property>
|
160
144
|
<property name="position">0</property>
|
161
145
|
</packing>
|
162
146
|
</child>
|
163
147
|
<child>
|
164
|
-
<
|
148
|
+
<object class="GtkToggleButton" id="TagsFilterButton">
|
165
149
|
<property name="label" translatable="yes">Filter</property>
|
166
150
|
<property name="visible">True</property>
|
167
151
|
<property name="can_focus">True</property>
|
@@ -169,21 +153,21 @@
|
|
169
153
|
<property name="focus_on_click">False</property>
|
170
154
|
<property name="active">True</property>
|
171
155
|
<property name="draw_indicator">True</property>
|
172
|
-
</
|
156
|
+
</object>
|
173
157
|
<packing>
|
174
158
|
<property name="expand">False</property>
|
175
159
|
<property name="padding">5</property>
|
176
160
|
<property name="position">1</property>
|
177
161
|
</packing>
|
178
162
|
</child>
|
179
|
-
</
|
163
|
+
</object>
|
180
164
|
<packing>
|
181
165
|
<property name="padding">7</property>
|
182
166
|
<property name="position">0</property>
|
183
167
|
</packing>
|
184
168
|
</child>
|
185
169
|
<child>
|
186
|
-
<
|
170
|
+
<object class="GtkScrolledWindow" id="TagsScroller">
|
187
171
|
<property name="visible">True</property>
|
188
172
|
<property name="can_focus">True</property>
|
189
173
|
<property name="hscrollbar_policy">automatic</property>
|
@@ -191,54 +175,50 @@
|
|
191
175
|
<child>
|
192
176
|
<placeholder/>
|
193
177
|
</child>
|
194
|
-
</
|
178
|
+
</object>
|
195
179
|
<packing>
|
196
180
|
<property name="position">1</property>
|
197
181
|
</packing>
|
198
182
|
</child>
|
199
|
-
</
|
183
|
+
</object>
|
200
184
|
<packing>
|
201
185
|
<property name="position">1</property>
|
202
186
|
</packing>
|
203
187
|
</child>
|
204
|
-
<child>
|
205
|
-
<
|
188
|
+
<child type="tab">
|
189
|
+
<object class="GtkLabel" id="TagsTabs">
|
206
190
|
<property name="visible">True</property>
|
207
191
|
<property name="label" translatable="yes">Tags</property>
|
208
192
|
<property name="angle">90</property>
|
209
|
-
</
|
193
|
+
</object>
|
210
194
|
<packing>
|
211
195
|
<property name="position">1</property>
|
212
196
|
<property name="tab_fill">False</property>
|
213
|
-
<property name="type">tab</property>
|
214
197
|
</packing>
|
215
198
|
</child>
|
216
199
|
<child>
|
217
200
|
<placeholder/>
|
218
201
|
</child>
|
219
|
-
<child>
|
202
|
+
<child type="tab">
|
220
203
|
<placeholder/>
|
221
|
-
<packing>
|
222
|
-
<property name="type">tab</property>
|
223
|
-
</packing>
|
224
204
|
</child>
|
225
|
-
</
|
205
|
+
</object>
|
226
206
|
<packing>
|
227
207
|
<property name="position">0</property>
|
228
208
|
</packing>
|
229
209
|
</child>
|
230
210
|
<child>
|
231
|
-
<
|
211
|
+
<object class="GtkHButtonBox" id="hbuttonbox1">
|
232
212
|
<property name="visible">True</property>
|
233
213
|
<child>
|
234
|
-
<
|
235
|
-
<property name="label"
|
214
|
+
<object class="GtkButton" id="ConfigButton">
|
215
|
+
<property name="label">gtk-preferences</property>
|
236
216
|
<property name="visible">True</property>
|
237
217
|
<property name="can_focus">True</property>
|
238
218
|
<property name="receives_default">True</property>
|
239
219
|
<property name="use_stock">True</property>
|
240
220
|
<signal name="clicked" handler="config.open_window"/>
|
241
|
-
</
|
221
|
+
</object>
|
242
222
|
<packing>
|
243
223
|
<property name="expand">False</property>
|
244
224
|
<property name="fill">False</property>
|
@@ -248,13 +228,13 @@
|
|
248
228
|
<child>
|
249
229
|
<placeholder/>
|
250
230
|
</child>
|
251
|
-
</
|
231
|
+
</object>
|
252
232
|
<packing>
|
253
233
|
<property name="expand">False</property>
|
254
234
|
<property name="position">1</property>
|
255
235
|
</packing>
|
256
236
|
</child>
|
257
|
-
</
|
237
|
+
</object>
|
258
238
|
<packing>
|
259
239
|
<property name="resize">False</property>
|
260
240
|
<property name="shrink">True</property>
|
@@ -263,194 +243,186 @@
|
|
263
243
|
<child>
|
264
244
|
<placeholder/>
|
265
245
|
</child>
|
266
|
-
</
|
246
|
+
</object>
|
267
247
|
</child>
|
268
|
-
</
|
269
|
-
<
|
248
|
+
</object>
|
249
|
+
<object class="GtkMenu" id="FilePopup">
|
270
250
|
<property name="visible">True</property>
|
271
251
|
<child>
|
272
|
-
<
|
252
|
+
<object class="GtkImageMenuItem" id="OpenFile">
|
273
253
|
<property name="label">gtk-open</property>
|
274
254
|
<property name="visible">True</property>
|
275
255
|
<property name="use_underline">True</property>
|
276
256
|
<property name="use_stock">True</property>
|
277
257
|
<property name="always_show_image">True</property>
|
278
258
|
<signal name="activate" handler="vim.open_selected_file"/>
|
279
|
-
</
|
259
|
+
</object>
|
280
260
|
</child>
|
281
261
|
<child>
|
282
|
-
<
|
262
|
+
<object class="GtkMenuItem" id="SplitOpenFile">
|
283
263
|
<property name="visible">True</property>
|
284
264
|
<property name="label" translatable="yes">Split Open</property>
|
285
265
|
<property name="use_underline">True</property>
|
286
266
|
<signal name="activate" handler="vim.open_selected_file_split"/>
|
287
|
-
</
|
267
|
+
</object>
|
288
268
|
</child>
|
289
269
|
<child>
|
290
|
-
<
|
270
|
+
<object class="GtkMenuItem" id="TabOpenFile">
|
291
271
|
<property name="visible">True</property>
|
292
272
|
<property name="label" translatable="yes">Tab Open</property>
|
293
273
|
<property name="use_underline">True</property>
|
294
274
|
<signal name="activate" handler="vim.open_selected_file_tab"/>
|
295
|
-
</
|
275
|
+
</object>
|
296
276
|
</child>
|
297
277
|
<child>
|
298
|
-
<
|
278
|
+
<object class="GtkSeparatorMenuItem" id="sep1">
|
299
279
|
<property name="visible">True</property>
|
300
|
-
</
|
280
|
+
</object>
|
301
281
|
</child>
|
302
282
|
<child>
|
303
|
-
<
|
283
|
+
<object class="GtkImageMenuItem" id="NewFile">
|
304
284
|
<property name="label">gtk-new</property>
|
305
285
|
<property name="visible">True</property>
|
306
286
|
<property name="use_underline">True</property>
|
307
287
|
<property name="use_stock">True</property>
|
308
288
|
<signal name="activate" handler="file_popup_menu.new_file"/>
|
309
|
-
</
|
289
|
+
</object>
|
310
290
|
</child>
|
311
291
|
<child>
|
312
|
-
<
|
292
|
+
<object class="GtkImageMenuItem" id="NewDirectory">
|
313
293
|
<property name="label">gtk-add</property>
|
314
294
|
<property name="visible">True</property>
|
315
295
|
<property name="use_underline">True</property>
|
316
296
|
<property name="use_stock">True</property>
|
317
297
|
<signal name="activate" handler="on_new_directory_clicked"/>
|
318
|
-
</
|
298
|
+
</object>
|
319
299
|
</child>
|
320
300
|
<child>
|
321
|
-
<
|
301
|
+
<object class="GtkSeparatorMenuItem" id="sep2">
|
322
302
|
<property name="visible">True</property>
|
323
|
-
</
|
303
|
+
</object>
|
324
304
|
</child>
|
325
305
|
<child>
|
326
|
-
<
|
306
|
+
<object class="GtkMenuItem" id="RenameItem">
|
327
307
|
<property name="visible">True</property>
|
328
308
|
<property name="label" translatable="yes">Rename</property>
|
329
309
|
<property name="use_underline">True</property>
|
330
|
-
</
|
310
|
+
</object>
|
331
311
|
</child>
|
332
312
|
<child>
|
333
|
-
<
|
313
|
+
<object class="GtkImageMenuItem" id="DeleteItem">
|
334
314
|
<property name="label">gtk-delete</property>
|
335
315
|
<property name="visible">True</property>
|
336
316
|
<property name="use_underline">True</property>
|
337
317
|
<property name="use_stock">True</property>
|
338
318
|
<signal name="activate" handler="on_delete_item_clicked"/>
|
339
|
-
</
|
319
|
+
</object>
|
340
320
|
</child>
|
341
321
|
<child>
|
342
|
-
<
|
322
|
+
<object class="GtkSeparatorMenuItem" id="sep3">
|
343
323
|
<property name="visible">True</property>
|
344
|
-
</
|
324
|
+
</object>
|
345
325
|
</child>
|
346
326
|
<child>
|
347
|
-
<
|
327
|
+
<object class="GtkImageMenuItem" id="RefreshItem">
|
348
328
|
<property name="label">gtk-refresh</property>
|
349
329
|
<property name="visible">True</property>
|
350
330
|
<property name="use_underline">True</property>
|
351
331
|
<property name="use_stock">True</property>
|
352
332
|
<signal name="activate" handler="on_refresh_item_clicked"/>
|
353
|
-
</
|
333
|
+
</object>
|
354
334
|
</child>
|
355
|
-
</
|
356
|
-
<
|
335
|
+
</object>
|
336
|
+
<object class="GtkDialog" id="ConfigWindow">
|
357
337
|
<property name="border_width">5</property>
|
358
338
|
<property name="default_width">400</property>
|
359
339
|
<property name="default_height">400</property>
|
360
340
|
<property name="type_hint">normal</property>
|
361
|
-
<property name="has_separator">False</property>
|
362
341
|
<child internal-child="vbox">
|
363
|
-
<
|
342
|
+
<object class="GtkVBox" id="dialog-vbox1">
|
364
343
|
<property name="visible">True</property>
|
365
|
-
<property name="orientation">vertical</property>
|
366
344
|
<property name="spacing">2</property>
|
367
345
|
<child>
|
368
|
-
<
|
346
|
+
<object class="GtkNotebook" id="notebook1">
|
369
347
|
<property name="visible">True</property>
|
370
348
|
<property name="can_focus">True</property>
|
371
349
|
<child>
|
372
|
-
<
|
350
|
+
<object class="GtkVBox" id="GeneralConfig">
|
373
351
|
<property name="visible">True</property>
|
374
|
-
<property name="orientation">vertical</property>
|
375
352
|
<child>
|
376
353
|
<placeholder/>
|
377
354
|
</child>
|
378
|
-
</
|
355
|
+
</object>
|
379
356
|
</child>
|
380
|
-
<child>
|
381
|
-
<
|
357
|
+
<child type="tab">
|
358
|
+
<object class="GtkLabel" id="label1">
|
382
359
|
<property name="visible">True</property>
|
383
360
|
<property name="label" translatable="yes">General</property>
|
384
|
-
</
|
361
|
+
</object>
|
385
362
|
<packing>
|
386
363
|
<property name="tab_fill">False</property>
|
387
|
-
<property name="type">tab</property>
|
388
364
|
</packing>
|
389
365
|
</child>
|
390
366
|
<child>
|
391
|
-
<
|
367
|
+
<object class="GtkVBox" id="MoreConfig">
|
392
368
|
<property name="visible">True</property>
|
393
|
-
<property name="orientation">vertical</property>
|
394
369
|
<child>
|
395
370
|
<placeholder/>
|
396
371
|
</child>
|
397
|
-
</
|
372
|
+
</object>
|
398
373
|
<packing>
|
399
374
|
<property name="position">1</property>
|
400
375
|
</packing>
|
401
376
|
</child>
|
402
|
-
<child>
|
403
|
-
<
|
377
|
+
<child type="tab">
|
378
|
+
<object class="GtkLabel" id="label2">
|
404
379
|
<property name="visible">True</property>
|
405
380
|
<property name="label" translatable="yes">More</property>
|
406
|
-
</
|
381
|
+
</object>
|
407
382
|
<packing>
|
408
383
|
<property name="position">1</property>
|
409
384
|
<property name="tab_fill">False</property>
|
410
|
-
<property name="type">tab</property>
|
411
385
|
</packing>
|
412
386
|
</child>
|
413
387
|
<child>
|
414
|
-
<
|
388
|
+
<object class="GtkVBox" id="AdvancedConfig">
|
415
389
|
<property name="visible">True</property>
|
416
|
-
<property name="orientation">vertical</property>
|
417
390
|
<child>
|
418
391
|
<placeholder/>
|
419
392
|
</child>
|
420
|
-
</
|
393
|
+
</object>
|
421
394
|
<packing>
|
422
395
|
<property name="position">2</property>
|
423
396
|
</packing>
|
424
397
|
</child>
|
425
|
-
<child>
|
426
|
-
<
|
398
|
+
<child type="tab">
|
399
|
+
<object class="GtkLabel" id="label3">
|
427
400
|
<property name="visible">True</property>
|
428
401
|
<property name="label" translatable="yes">Advanced</property>
|
429
|
-
</
|
402
|
+
</object>
|
430
403
|
<packing>
|
431
404
|
<property name="position">2</property>
|
432
405
|
<property name="tab_fill">False</property>
|
433
|
-
<property name="type">tab</property>
|
434
406
|
</packing>
|
435
407
|
</child>
|
436
|
-
</
|
408
|
+
</object>
|
437
409
|
<packing>
|
438
410
|
<property name="position">1</property>
|
439
411
|
</packing>
|
440
412
|
</child>
|
441
413
|
<child internal-child="action_area">
|
442
|
-
<
|
414
|
+
<object class="GtkHButtonBox" id="dialog-action_area1">
|
443
415
|
<property name="visible">True</property>
|
444
416
|
<property name="layout_style">end</property>
|
445
417
|
<child>
|
446
|
-
<
|
447
|
-
<property name="label"
|
418
|
+
<object class="GtkButton" id="RevertConfigButton">
|
419
|
+
<property name="label">gtk-revert-to-saved</property>
|
448
420
|
<property name="visible">True</property>
|
449
421
|
<property name="can_focus">True</property>
|
450
422
|
<property name="receives_default">True</property>
|
451
423
|
<property name="use_stock">True</property>
|
452
424
|
<signal name="clicked" handler="config.reset_settings"/>
|
453
|
-
</
|
425
|
+
</object>
|
454
426
|
<packing>
|
455
427
|
<property name="expand">False</property>
|
456
428
|
<property name="fill">False</property>
|
@@ -458,14 +430,14 @@
|
|
458
430
|
</packing>
|
459
431
|
</child>
|
460
432
|
<child>
|
461
|
-
<
|
462
|
-
<property name="label"
|
433
|
+
<object class="GtkButton" id="CancelConfigButton">
|
434
|
+
<property name="label">gtk-cancel</property>
|
463
435
|
<property name="visible">True</property>
|
464
436
|
<property name="can_focus">True</property>
|
465
437
|
<property name="receives_default">True</property>
|
466
438
|
<property name="use_stock">True</property>
|
467
439
|
<signal name="clicked" handler="config.close_window"/>
|
468
|
-
</
|
440
|
+
</object>
|
469
441
|
<packing>
|
470
442
|
<property name="expand">False</property>
|
471
443
|
<property name="fill">False</property>
|
@@ -473,28 +445,33 @@
|
|
473
445
|
</packing>
|
474
446
|
</child>
|
475
447
|
<child>
|
476
|
-
<
|
477
|
-
<property name="label"
|
448
|
+
<object class="GtkButton" id="SaveConfigButton">
|
449
|
+
<property name="label">gtk-ok</property>
|
478
450
|
<property name="visible">True</property>
|
479
451
|
<property name="can_focus">True</property>
|
480
452
|
<property name="receives_default">True</property>
|
481
453
|
<property name="use_stock">True</property>
|
482
454
|
<signal name="clicked" handler="config.save_settings"/>
|
483
|
-
</
|
455
|
+
</object>
|
484
456
|
<packing>
|
485
457
|
<property name="expand">False</property>
|
486
458
|
<property name="fill">False</property>
|
487
459
|
<property name="position">2</property>
|
488
460
|
</packing>
|
489
461
|
</child>
|
490
|
-
</
|
462
|
+
</object>
|
491
463
|
<packing>
|
492
464
|
<property name="expand">False</property>
|
493
465
|
<property name="pack_type">end</property>
|
494
466
|
<property name="position">0</property>
|
495
467
|
</packing>
|
496
468
|
</child>
|
497
|
-
</
|
469
|
+
</object>
|
498
470
|
</child>
|
499
|
-
|
500
|
-
</
|
471
|
+
<action-widgets>
|
472
|
+
<action-widget response="0">RevertConfigButton</action-widget>
|
473
|
+
<action-widget response="0">CancelConfigButton</action-widget>
|
474
|
+
<action-widget response="0">SaveConfigButton</action-widget>
|
475
|
+
</action-widgets>
|
476
|
+
</object>
|
477
|
+
</interface>
|