~ubuntu-branches/ubuntu/karmic/file-browser-applet/karmic

« back to all changes in this revision

Viewing changes to data/file-browser-applet.ui

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2009-04-11 17:15:39 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090411171539-jk4kgkvm4i39nv3c
Tags: 0.6.2-1
* New upstream release. (Closes: #504525)
 - Added context menu with a few actions (open-with, new folder here, 
   delete file/folder, create/extract archive, create CD/DVD from 
   file/folder, compile a tex file).
 - Added configuration option to make text vertical/horizontal when 
   the panel is vertical.
 - Added tooltips to configuration dialog.
 - Fixes upstream bugs #21, #30, #34, #37, #39, #43, #44, #45, #49, 
   #51, #56, #59, #60, and #62.
 - Added mnemonic keyboard shortcut to menus for 
   faster keyboard navigation.
 - Added recent documents' support.
 - Improved menu browser focus after context menu close.
 - Added preliminary DnD dragging out of applet. MOVE is the default 
   behaviour.
 - Some code cleanups and plugged memory leaks.
 - Slightly improved "New Folder" dialog.
 - Migrated to gtk+ builder from libglade.
* debian/control:
 - Add suggests on file-roller, brasero, and rubber 
   for new features.
 - Add Vcs-Bzr field.
 - Drop depricated libglade2-dev Build-Depend
 - Drop unneeded libpanel-applet2-0 Depend. Already picked up by 
   shlibs:Depends.
 - Add versionized Build-Depend on libgtk2.0-dev (>= 2.14)
 - Bump Standards-Version to 3.8.1
* debian/copyright:
 - Use /usr/share/common-licenses/GPL-2 rather than just GLP.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!--*- mode: xml -*-->
 
3
<interface>
 
4
  <object class="GtkDialog" id="preferences_dialog">
 
5
    <property name="visible">True</property>
 
6
    <property name="border_width">6</property>
 
7
    <property name="title" translatable="yes">File Browser Applet Preferences</property>
 
8
    <property name="destroy_with_parent">True</property>
 
9
    <property name="icon_name">file-browser-applet</property>
 
10
    <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
 
11
    <property name="has_separator">False</property>
 
12
    <child internal-child="vbox">
 
13
      <object class="GtkVBox" id="dialog-vbox1">
 
14
        <property name="visible">True</property>
 
15
        <property name="spacing">6</property>
 
16
        <child>
 
17
          <object class="GtkVBox" id="vbox12">
 
18
            <property name="visible">True</property>
 
19
            <child>
 
20
              <object class="GtkVBox" id="vbox13">
 
21
                <property name="visible">True</property>
 
22
                <child>
 
23
                  <object class="GtkFrame" id="frame7">
 
24
                    <property name="visible">True</property>
 
25
                    <property name="label_xalign">0</property>
 
26
                    <property name="shadow_type">GTK_SHADOW_NONE</property>
 
27
                    <child>
 
28
                      <object class="GtkVBox" id="vbox14">
 
29
                        <property name="visible">True</property>
 
30
                        <property name="spacing">6</property>
 
31
                        <child>
 
32
                          <object class="GtkAlignment" id="alignment7">
 
33
                            <property name="visible">True</property>
 
34
                            <property name="left_padding">12</property>
 
35
                            <child>
 
36
                              <object class="GtkScrolledWindow" id="scrolledwindow2">
 
37
                                <property name="visible">True</property>
 
38
                                <property name="can_focus">True</property>
 
39
                                <property name="hscrollbar_policy">GTK_POLICY_NEVER</property>
 
40
                                <property name="vscrollbar_policy">GTK_POLICY_NEVER</property>
 
41
                                <property name="shadow_type">GTK_SHADOW_IN</property>
 
42
                                <child>
 
43
                                  <object class="GtkTreeView" id="directories_tree">
 
44
                                    <property name="visible">True</property>
 
45
                                    <property name="can_focus">True</property>
 
46
                                  </object>
 
47
                                </child>
 
48
                              </object>
 
49
                            </child>
 
50
                          </object>
 
51
                        </child>
 
52
                        <child>
 
53
                          <object class="GtkHBox" id="hbox8">
 
54
                            <property name="visible">True</property>
 
55
                            <property name="spacing">3</property>
 
56
                            <child>
 
57
                              <object class="GtkButton" id="move_down_button">
 
58
                                <property name="visible">True</property>
 
59
                                <property name="tooltip-text" translatable="yes">Move the selected Folder down/right.</property>
 
60
                                <property name="can_focus">True</property>
 
61
                                <property name="label">gtk-go-down</property>
 
62
                                <property name="use_stock">True</property>
 
63
                              </object>
 
64
                              <packing>
 
65
                                <property name="expand">False</property>
 
66
                                <property name="fill">False</property>
 
67
                                <property name="pack_type">GTK_PACK_END</property>
 
68
                              </packing>
 
69
                            </child>
 
70
                            <child>
 
71
                              <object class="GtkButton" id="move_up_button">
 
72
                                <property name="visible">True</property>
 
73
                                <property name="tooltip-text" translatable="yes">Move the selected Folder up/left.</property>
 
74
                                <property name="can_focus">True</property>
 
75
                                <property name="label">gtk-go-up</property>
 
76
                                <property name="use_stock">True</property>
 
77
                              </object>
 
78
                              <packing>
 
79
                                <property name="expand">False</property>
 
80
                                <property name="fill">False</property>
 
81
                                <property name="pack_type">GTK_PACK_END</property>
 
82
                              </packing>
 
83
                            </child>
 
84
                            <child>
 
85
                              <object class="GtkButton" id="directory_remove_button">
 
86
                                <property name="visible">True</property>
 
87
                                <property name="tooltip-text" translatable="yes">Remove the selected Folder.</property>
 
88
                                <property name="can_focus">True</property>
 
89
                                <property name="label">gtk-remove</property>
 
90
                                <property name="use_stock">True</property>
 
91
                              </object>
 
92
                              <packing>
 
93
                                <property name="expand">False</property>
 
94
                                <property name="fill">False</property>
 
95
                                <property name="pack_type">GTK_PACK_END</property>
 
96
                              </packing>
 
97
                            </child>
 
98
                            <child>
 
99
                              <object class="GtkButton" id="directory_add_button">
 
100
                                <property name="visible">True</property>
 
101
                                <property name="tooltip-text" translatable="yes">Add a new Folder to browse.</property>
 
102
                                <property name="can_focus">True</property>
 
103
                                <property name="label">gtk-add</property>
 
104
                                <property name="use_stock">True</property>
 
105
                              </object>
 
106
                              <packing>
 
107
                                <property name="expand">False</property>
 
108
                                <property name="fill">False</property>
 
109
                                <property name="pack_type">GTK_PACK_END</property>
 
110
                              </packing>
 
111
                            </child>
 
112
                          </object>
 
113
                          <packing>
 
114
                            <property name="expand">False</property>
 
115
                            <property name="position">1</property>
 
116
                          </packing>
 
117
                        </child>
 
118
                      </object>
 
119
                    </child>
 
120
                    <child type="label">
 
121
                      <object class="GtkLabel" id="label13">
 
122
                        <property name="visible">True</property>
 
123
                        <property name="ypad">6</property>
 
124
                        <property name="label" translatable="yes">&lt;b&gt;Directories&lt;/b&gt;</property>
 
125
                        <property name="use_markup">True</property>
 
126
                      </object>
 
127
                    </child>
 
128
                  </object>
 
129
                </child>
 
130
              </object>
 
131
            </child>
 
132
            <child>
 
133
              <object class="GtkFrame" id="frame8">
 
134
                <property name="visible">True</property>
 
135
                <property name="label_xalign">0</property>
 
136
                <property name="shadow_type">GTK_SHADOW_NONE</property>
 
137
                <child>
 
138
                  <object class="GtkVBox" id="vbox15">
 
139
                    <property name="visible">True</property>
 
140
                    <child>
 
141
                      <object class="GtkAlignment" id="alignment8">
 
142
                        <property name="visible">True</property>
 
143
                        <property name="left_padding">12</property>
 
144
                        <child>
 
145
                          <object class="GtkVBox" id="vbox16">
 
146
                            <property name="visible">True</property>
 
147
                            <property name="spacing">3</property>
 
148
                            <child>
 
149
                              <object class="GtkCheckButton" id="show_hidden_check">
 
150
                                <property name="visible">True</property>
 
151
                                <property name="can_focus">True</property>
 
152
                                <property name="tooltip-text" translatable="yes">Show files beginning with a "." in the menu browser.</property>
 
153
                                <property name="label" translatable="yes">Show hidden and backup files</property>
 
154
                                <property name="use_underline">True</property>
 
155
                                <property name="draw_indicator">True</property>
 
156
                              </object>
 
157
                              <packing>
 
158
                                <property name="expand">False</property>
 
159
                                <property name="fill">False</property>
 
160
                              </packing>
 
161
                            </child>
 
162
                            <child>
 
163
                              <object class="GtkCheckButton" id="horizontal_text_check">
 
164
                                <property name="visible">True</property>
 
165
                                <property name="can_focus">True</property>
 
166
                                <property name="tooltip-text" translatable="yes">Specify text orientation when the panel is vertical.</property>
 
167
                                <property name="label" translatable="yes">Horizontal text</property>
 
168
                                <property name="use_underline">True</property>
 
169
                                <property name="draw_indicator">True</property>
 
170
                              </object>
 
171
                              <packing>
 
172
                                <property name="expand">False</property>
 
173
                                <property name="fill">False</property>
 
174
                                <property name="position">1</property>
 
175
                              </packing>
 
176
                            </child>
 
177
                            <child>
 
178
                              <object class="GtkCheckButton" id="show_icon_check">
 
179
                                <property name="visible">True</property>
 
180
                                <property name="can_focus">True</property>
 
181
                                <property name="tooltip-text" translatable="yes">Show the selected icon in the applet.</property>
 
182
                                <property name="label" translatable="yes">Show applet icon</property>
 
183
                                <property name="use_underline">True</property>
 
184
                                <property name="draw_indicator">True</property>
 
185
                              </object>
 
186
                              <packing>
 
187
                                <property name="expand">False</property>
 
188
                                <property name="fill">False</property>
 
189
                                <property name="position">2</property>
 
190
                              </packing>
 
191
                            </child>
 
192
                            <child>
 
193
                              <object class="GtkHBox" id="hbox9">
 
194
                                <property name="visible">True</property>
 
195
                                <property name="spacing">6</property>
 
196
                                <child>
 
197
                                  <object class="GtkLabel" id="label14">
 
198
                                    <property name="visible">True</property>
 
199
                                    <property name="label" translatable="yes">Select applet icon:</property>
 
200
                                  </object>
 
201
                                  <packing>
 
202
                                    <property name="expand">False</property>
 
203
                                    <property name="fill">False</property>
 
204
                                  </packing>
 
205
                                </child>
 
206
                                <child>
 
207
                                  <object class="GtkButton" id="icon_button">
 
208
                                    <property name="visible">True</property>
 
209
                                    <property name="can_focus">True</property>
 
210
                                    <property name="tooltip-text" translatable="yes">Select the icon to show in the applet.</property>
 
211
                                    <child>
 
212
                                      <object class="GtkImage" id="image1">
 
213
                                        <property name="visible">True</property>
 
214
                                        <property name="stock">gtk-about</property>
 
215
                                      </object>
 
216
                                    </child>
 
217
                                  </object>
 
218
                                  <packing>
 
219
                                    <property name="expand">False</property>
 
220
                                    <property name="fill">False</property>
 
221
                                    <property name="position">1</property>
 
222
                                  </packing>
 
223
                                </child>
 
224
                              </object>
 
225
                              <packing>
 
226
                                <property name="position">3</property>
 
227
                              </packing>
 
228
                            </child>
 
229
                          </object>
 
230
                        </child>
 
231
                      </object>
 
232
                    </child>
 
233
                  </object>
 
234
                </child>
 
235
                <child type="label">
 
236
                  <object class="GtkLabel" id="label15">
 
237
                    <property name="visible">True</property>
 
238
                    <property name="ypad">6</property>
 
239
                    <property name="label" translatable="yes">&lt;b&gt;View&lt;/b&gt;</property>
 
240
                    <property name="use_markup">True</property>
 
241
                  </object>
 
242
                </child>
 
243
              </object>
 
244
              <packing>
 
245
                <property name="expand">False</property>
 
246
                <property name="padding">6</property>
 
247
                <property name="position">1</property>
 
248
              </packing>
 
249
            </child>
 
250
            <child>
 
251
              <object class="GtkFrame" id="frame9">
 
252
                <property name="visible">True</property>
 
253
                <property name="label_xalign">0</property>
 
254
                <property name="shadow_type">GTK_SHADOW_NONE</property>
 
255
                <child>
 
256
                  <object class="GtkAlignment" id="alignment9">
 
257
                    <property name="visible">True</property>
 
258
                    <property name="left_padding">12</property>
 
259
                    <child>
 
260
                      <object class="GtkVBox" id="vbox17">
 
261
                        <property name="visible">True</property>
 
262
                        <child>
 
263
                          <object class="GtkHBox" id="hbox10">
 
264
                            <property name="visible">True</property>
 
265
                            <property name="spacing">6</property>
 
266
                            <child>
 
267
                              <object class="GtkLabel" id="label16">
 
268
                                <property name="visible">True</property>
 
269
                                <property name="tooltip-text" translatable="yes">This command will be executed on right-click or F4 on a Folder entry in the menu browser.</property>
 
270
                                <property name="label" translatable="yes">Terminal executable:</property>
 
271
                              </object>
 
272
                              <packing>
 
273
                                <property name="expand">False</property>
 
274
                                <property name="fill">False</property>
 
275
                              </packing>
 
276
                            </child>
 
277
                            <child>
 
278
                              <object class="GtkEntry" id="terminal_entry">
 
279
                                <property name="visible">True</property>
 
280
                                <property name="can_focus">True</property>
 
281
                                <property name="activates_default">True</property>
 
282
                              </object>
 
283
                              <packing>
 
284
                                <property name="position">1</property>
 
285
                              </packing>
 
286
                            </child>
 
287
                          </object>
 
288
                          <packing>
 
289
                            <property name="padding">3</property>
 
290
                          </packing>
 
291
                        </child>
 
292
                        <child>
 
293
                          <object class="GtkHBox" id="hbox2">
 
294
                            <property name="visible">True</property>
 
295
                            <property name="spacing">6</property>
 
296
                            <child>
 
297
                              <object class="GtkLabel" id="label2">
 
298
                                <property name="visible">True</property>
 
299
                                <property name="tooltip-text" translatable="yes">This command will be executed on right-click or F4 on a File entry in the menu browser.</property>
 
300
                                <property name="label" translatable="yes">Editor executable:</property>
 
301
                              </object>
 
302
                              <packing>
 
303
                                <property name="expand">False</property>
 
304
                                <property name="fill">False</property>
 
305
                              </packing>
 
306
                            </child>
 
307
                            <child>
 
308
                              <object class="GtkEntry" id="editor_entry">
 
309
                                <property name="visible">True</property>
 
310
                                <property name="can_focus">True</property>
 
311
                              </object>
 
312
                              <packing>
 
313
                                <property name="position">1</property>
 
314
                              </packing>
 
315
                            </child>
 
316
                          </object>
 
317
                          <packing>
 
318
                            <property name="padding">3</property>
 
319
                            <property name="position">1</property>
 
320
                          </packing>
 
321
                        </child>
 
322
                      </object>
 
323
                    </child>
 
324
                  </object>
 
325
                </child>
 
326
                <child type="label">
 
327
                  <object class="GtkLabel" id="label17">
 
328
                    <property name="visible">True</property>
 
329
                    <property name="label" translatable="yes">&lt;b&gt;Miscellaneous&lt;/b&gt;</property>
 
330
                    <property name="use_markup">True</property>
 
331
                  </object>
 
332
                </child>
 
333
              </object>
 
334
              <packing>
 
335
                <property name="expand">False</property>
 
336
                <property name="padding">3</property>
 
337
                <property name="position">2</property>
 
338
              </packing>
 
339
            </child>
 
340
          </object>
 
341
          <packing>
 
342
            <property name="position">1</property>
 
343
          </packing>
 
344
        </child>
 
345
        <child internal-child="action_area">
 
346
          <object class="GtkHButtonBox" id="dialog-action_area1">
 
347
            <property name="visible">True</property>
 
348
            <property name="layout_style">GTK_BUTTONBOX_END</property>
 
349
            <child>
 
350
              <object class="GtkButton" id="closebutton1">
 
351
                <property name="visible">True</property>
 
352
                <property name="can_focus">True</property>
 
353
                <property name="can_default">True</property>
 
354
                <property name="label">gtk-close</property>
 
355
                <property name="use_stock">True</property>
 
356
              </object>
 
357
            </child>
 
358
          </object>
 
359
          <packing>
 
360
            <property name="expand">False</property>
 
361
            <property name="pack_type">GTK_PACK_END</property>
 
362
          </packing>
 
363
        </child>
 
364
      </object>
 
365
    </child>
 
366
    <action-widgets>
 
367
      <action-widget response="0">move_down_button</action-widget>
 
368
      <action-widget response="0">move_up_button</action-widget>
 
369
      <action-widget response="0">directory_remove_button</action-widget>
 
370
      <action-widget response="0">directory_add_button</action-widget>
 
371
      <action-widget response="0">show_hidden_check</action-widget>
 
372
      <action-widget response="0">horizontal_text_check</action-widget>
 
373
      <action-widget response="0">show_icon_check</action-widget>
 
374
      <action-widget response="0">icon_button</action-widget>
 
375
      <action-widget response="-7">closebutton1</action-widget>
 
376
    </action-widgets>
 
377
  </object>
 
378
  <object class="GtkDialog" id="new_dir_dialog">
 
379
    <property name="border_width">5</property>
 
380
    <property name="title" translatable="yes">Enter new directory name</property>
 
381
    <property name="resizable">False</property>
 
382
    <property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property>
 
383
    <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
 
384
    <property name="has_separator">False</property>
 
385
    <child internal-child="vbox">
 
386
      <object class="GtkVBox" id="dialog-vbox2">
 
387
        <property name="visible">True</property>
 
388
        <property name="spacing">2</property>
 
389
        <child>
 
390
          <object class="GtkLabel" id="label1">
 
391
            <property name="visible">True</property>
 
392
            <property name="label" translatable="yes">Create new Folder at</property>
 
393
          </object>
 
394
          <packing>
 
395
            <property name="position">1</property>
 
396
          </packing>
 
397
        </child>
 
398
        <child>
 
399
          <object class="GtkLabel" id="current_path_label">
 
400
            <property name="visible">True</property>
 
401
          </object>
 
402
          <packing>
 
403
            <property name="position">2</property>
 
404
          </packing>
 
405
        </child>
 
406
        <child>
 
407
          <object class="GtkEntry" id="new_dir_entry">
 
408
            <property name="visible">True</property>
 
409
            <property name="can_focus">True</property>
 
410
          </object>
 
411
          <packing>
 
412
            <property name="expand">False</property>
 
413
            <property name="fill">False</property>
 
414
            <property name="position">3</property>
 
415
          </packing>
 
416
        </child>
 
417
        <child internal-child="action_area">
 
418
          <object class="GtkHButtonBox" id="dialog-action_area2">
 
419
            <property name="visible">True</property>
 
420
            <property name="layout_style">GTK_BUTTONBOX_END</property>
 
421
            <child>
 
422
              <object class="GtkButton" id="cancel_button">
 
423
                <property name="visible">True</property>
 
424
                <property name="can_focus">True</property>
 
425
                <property name="receives_default">True</property>
 
426
                <property name="label" translatable="yes">gtk-cancel</property>
 
427
                <property name="use_stock">True</property>
 
428
              </object>
 
429
            </child>
 
430
            <child>
 
431
              <object class="GtkButton" id="ok_button">
 
432
                <property name="visible">True</property>
 
433
                <property name="can_focus">True</property>
 
434
                <property name="receives_default">True</property>
 
435
                <property name="label" translatable="yes">gtk-ok</property>
 
436
                <property name="use_stock">True</property>
 
437
                <signal handler="gtk_true" name="released"/>
 
438
              </object>
 
439
              <packing>
 
440
                <property name="position">1</property>
 
441
              </packing>
 
442
            </child>
 
443
          </object>
 
444
          <packing>
 
445
            <property name="expand">False</property>
 
446
            <property name="pack_type">GTK_PACK_END</property>
 
447
          </packing>
 
448
        </child>
 
449
      </object>
 
450
    </child>
 
451
    <action-widgets>
 
452
      <action-widget response="-1">cancel_button</action-widget>
 
453
      <action-widget response="-3">ok_button</action-widget>
 
454
    </action-widgets>
 
455
  </object>
 
456
</interface>