visualruby 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/bin/editor/VR_Document.rb +219 -0
  3. data/bin/editor/VR_TabSearch.rb +50 -0
  4. data/bin/editor/VR_Tabs.rb +99 -0
  5. data/bin/editor/VR_TextShell.rb +83 -0
  6. data/bin/editor/VR_TextViewCommon.rb +65 -0
  7. data/bin/editor/glade/VR_Document.glade +160 -0
  8. data/bin/main/GemTree.rb +23 -0
  9. data/bin/main/NewProjectGUI.rb +28 -0
  10. data/bin/main/ProjectChooserGUI.rb +41 -0
  11. data/bin/main/ProjectChooserView.rb +39 -0
  12. data/bin/main/RubygemsAPI.rb +93 -0
  13. data/bin/main/Splash.rb +22 -0
  14. data/bin/main/VR_ENV.rb +61 -0
  15. data/bin/main/VR_ENV_GLOBAL.rb +64 -0
  16. data/bin/main/VR_File_Tree.rb +120 -0
  17. data/bin/main/VR_Local_Gem_Tree.rb +80 -0
  18. data/bin/main/VR_Main.rb +313 -0
  19. data/bin/main/VR_Remote_Gem_Tree.rb +70 -0
  20. data/bin/main/glade/NewProjectGUI.glade +141 -0
  21. data/bin/main/glade/ProjectChooserGUI.glade +140 -0
  22. data/bin/main/glade/RubygemsAPI.glade +130 -0
  23. data/bin/main/glade/Splash.glade +18 -0
  24. data/bin/main/glade/VR_ENV.glade +168 -0
  25. data/bin/main/glade/VR_ENV_GLOBAL.glade +268 -0
  26. data/bin/main/glade/VR_File_Tree.glade +65 -0
  27. data/bin/main/glade/VR_Local_Gem_Tree.glade +45 -0
  28. data/bin/main/glade/VR_Main.glade +707 -0
  29. data/bin/main/glade/VR_Remote_Gem_Tree.glade +76 -0
  30. data/bin/tools/VR_Tools.rb +120 -0
  31. data/img/close.png +0 -0
  32. data/img/folder.png +0 -0
  33. data/img/glade.png +0 -0
  34. data/img/gtk-edit.png +0 -0
  35. data/img/obj.png +0 -0
  36. data/img/png.png +0 -0
  37. data/img/rb.png +0 -0
  38. data/img/ruby.png +0 -0
  39. data/img/splash.png +0 -0
  40. data/img/unknown.png +0 -0
  41. data/skeleton/document/New.glade +13 -0
  42. data/skeleton/document/NewWindow.rb +15 -0
  43. data/skeleton/project/bin/MyClass.rb +15 -0
  44. data/skeleton/project/bin/glade/MyClass.glade +45 -0
  45. data/skeleton/project/main.rb +14 -0
  46. data/visualruby_examples/active_record/.vr_settings.yaml +47 -0
  47. data/visualruby_examples/active_record/active_record.rb +52 -0
  48. data/visualruby_examples/active_record/bin/ChoosePerson.rb +17 -0
  49. data/visualruby_examples/active_record/bin/Person.rb +13 -0
  50. data/visualruby_examples/active_record/bin/glade/ChoosePerson.glade +61 -0
  51. data/visualruby_examples/active_record/bin/glade/Person.glade +148 -0
  52. data/visualruby_examples/active_record/db/development.sqlite3 +0 -0
  53. data/visualruby_examples/active_record2/.vr_settings.yaml +48 -0
  54. data/visualruby_examples/active_record2/active_record2.rb +142 -0
  55. data/visualruby_examples/active_record2/bin/CompanyGUI.rb +54 -0
  56. data/visualruby_examples/active_record2/bin/Employee.rb +20 -0
  57. data/visualruby_examples/active_record2/bin/Employer.rb +11 -0
  58. data/visualruby_examples/active_record2/bin/Paycheck.rb +11 -0
  59. data/visualruby_examples/active_record2/bin/glade/CompanyGUI.glade +167 -0
  60. data/visualruby_examples/active_record2/bin/glade/Employee.glade +123 -0
  61. data/visualruby_examples/active_record2/bin/glade/Employer.glade +147 -0
  62. data/visualruby_examples/active_record2/bin/glade/Paycheck.glade +145 -0
  63. data/visualruby_examples/active_record2/db/development.sqlite3 +0 -0
  64. data/visualruby_examples/all_widgets/.vr_settings.yaml +20 -0
  65. data/visualruby_examples/all_widgets/all_widgets.rb +13 -0
  66. data/visualruby_examples/all_widgets/bin/AllWidgets.rb +43 -0
  67. data/visualruby_examples/all_widgets/bin/glade/AllWidgets.glade +166 -0
  68. data/visualruby_examples/all_widgets/bin/splash.png +0 -0
  69. data/visualruby_examples/calculator/.vr_settings.yaml +21 -0
  70. data/visualruby_examples/calculator/bin/Calculator.rb +63 -0
  71. data/visualruby_examples/calculator/bin/glade/Calculator.glade +243 -0
  72. data/visualruby_examples/calculator/main.rb +13 -0
  73. data/visualruby_examples/child_window/.vr_settings.yaml +46 -0
  74. data/visualruby_examples/child_window/bin/ChildWindowDemo.rb +41 -0
  75. data/visualruby_examples/child_window/bin/MyChildClass.rb +42 -0
  76. data/visualruby_examples/child_window/bin/glade/ChildWindowDemo.glade +101 -0
  77. data/visualruby_examples/child_window/bin/glade/MyChildClass.glade +58 -0
  78. data/visualruby_examples/child_window/main.rb +13 -0
  79. data/visualruby_examples/drag_drop/.vr_settings.yaml +19 -0
  80. data/visualruby_examples/drag_drop/bin/DragDropDemo.rb +45 -0
  81. data/visualruby_examples/drag_drop/bin/glade/DragDropDemo.glade +143 -0
  82. data/visualruby_examples/drag_drop/img/folder.png +0 -0
  83. data/visualruby_examples/drag_drop/img/glade.png +0 -0
  84. data/visualruby_examples/drag_drop/img/gtk-edit.png +0 -0
  85. data/visualruby_examples/drag_drop/img/obj.png +0 -0
  86. data/visualruby_examples/drag_drop/img/png.png +0 -0
  87. data/visualruby_examples/drag_drop/img/rb.png +0 -0
  88. data/visualruby_examples/drag_drop/img/ruby.png +0 -0
  89. data/visualruby_examples/drag_drop/img/unknown.png +0 -0
  90. data/visualruby_examples/drag_drop/main.rb +14 -0
  91. data/visualruby_examples/listview/.vr_settings.yaml +46 -0
  92. data/visualruby_examples/listview/bin/SongListView.rb +89 -0
  93. data/visualruby_examples/listview/bin/SongListViewGUI.rb +67 -0
  94. data/visualruby_examples/listview/bin/audio-x-generic.png +0 -0
  95. data/visualruby_examples/listview/bin/glade/SongListViewGUI.glade +220 -0
  96. data/visualruby_examples/listview/main.rb +19 -0
  97. data/visualruby_examples/listview_objects/.vr_settings.yaml +46 -0
  98. data/visualruby_examples/listview_objects/bin/DataObject.rb +32 -0
  99. data/visualruby_examples/listview_objects/bin/DataObjectGUI.rb +41 -0
  100. data/visualruby_examples/listview_objects/bin/ListViewObjects.rb +34 -0
  101. data/visualruby_examples/listview_objects/bin/ListViewObjectsGUI.rb +18 -0
  102. data/visualruby_examples/listview_objects/bin/glade/DataObject.glade +198 -0
  103. data/visualruby_examples/listview_objects/bin/glade/ListViewObjectsGUI.glade +102 -0
  104. data/visualruby_examples/listview_objects/main.rb +13 -0
  105. data/visualruby_examples/simple_ruby_gui/.vr_settings.yaml +45 -0
  106. data/visualruby_examples/simple_ruby_gui/bin/DataObjectGUI.rb +20 -0
  107. data/visualruby_examples/simple_ruby_gui/bin/glade/DataObjectGUI.glade +163 -0
  108. data/visualruby_examples/simple_ruby_gui/simple_ruby_gui +16 -0
  109. data/visualruby_examples/treeview/.vr_settings.yaml +18 -0
  110. data/visualruby_examples/treeview/bin/MyClass.rb +28 -0
  111. data/visualruby_examples/treeview/bin/glade/MyClass.glade +48 -0
  112. data/visualruby_examples/treeview/main.rb +14 -0
  113. data/vr +40 -0
  114. metadata +202 -0
@@ -0,0 +1,707 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkWindow" id="window1">
6
+ <property name="width_request">800</property>
7
+ <property name="height_request">600</property>
8
+ <property name="can_focus">False</property>
9
+ <property name="title" translatable="yes">Visual Ruby</property>
10
+ <property name="modal">True</property>
11
+ <property name="window_position">center</property>
12
+ <signal name="destroy" handler="destroy_window" swapped="no"/>
13
+ <signal name="key-press-event" handler="window1_key_press" swapped="no"/>
14
+ <signal name="delete-event" handler="on_window1_delete_event" swapped="no"/>
15
+ <child>
16
+ <object class="GtkVBox" id="vbox1">
17
+ <property name="visible">True</property>
18
+ <property name="can_focus">False</property>
19
+ <child>
20
+ <object class="GtkMenuBar" id="menubar">
21
+ <property name="visible">True</property>
22
+ <property name="can_focus">False</property>
23
+ <child>
24
+ <object class="GtkMenuItem" id="menuitem1">
25
+ <property name="visible">True</property>
26
+ <property name="can_focus">False</property>
27
+ <property name="use_action_appearance">False</property>
28
+ <property name="label" translatable="yes">_File</property>
29
+ <property name="use_underline">True</property>
30
+ <child type="submenu">
31
+ <object class="GtkMenu" id="menu1">
32
+ <property name="visible">True</property>
33
+ <property name="can_focus">False</property>
34
+ <child>
35
+ <object class="GtkMenuItem" id="menuNewProject">
36
+ <property name="visible">True</property>
37
+ <property name="can_focus">False</property>
38
+ <property name="use_action_appearance">False</property>
39
+ <property name="label" translatable="yes">New Project</property>
40
+ <property name="use_underline">True</property>
41
+ </object>
42
+ </child>
43
+ <child>
44
+ <object class="GtkMenuItem" id="menuNew">
45
+ <property name="visible">True</property>
46
+ <property name="can_focus">False</property>
47
+ <property name="tooltip_text" translatable="yes">Create a new, blank document in a tab.</property>
48
+ <property name="use_action_appearance">False</property>
49
+ <property name="label" translatable="yes">New Blank Document</property>
50
+ <property name="use_underline">True</property>
51
+ </object>
52
+ </child>
53
+ <child>
54
+ <object class="GtkMenuItem" id="menuNewWindow">
55
+ <property name="visible">True</property>
56
+ <property name="can_focus">False</property>
57
+ <property name="use_action_appearance">False</property>
58
+ <property name="label" translatable="yes">New Skeleton Window Script</property>
59
+ <property name="use_underline">True</property>
60
+ </object>
61
+ </child>
62
+ <child>
63
+ <object class="GtkMenuItem" id="menuSaveAll">
64
+ <property name="visible">True</property>
65
+ <property name="can_focus">False</property>
66
+ <property name="tooltip_text" translatable="yes">Saves all documents in the tabs to disk.</property>
67
+ <property name="use_action_appearance">False</property>
68
+ <property name="label" translatable="yes">Save All</property>
69
+ <property name="use_underline">True</property>
70
+ </object>
71
+ </child>
72
+ <child>
73
+ <object class="GtkMenuItem" id="menuSaveAs">
74
+ <property name="visible">True</property>
75
+ <property name="can_focus">False</property>
76
+ <property name="tooltip_text" translatable="yes">Saves the current tab to a file.</property>
77
+ <property name="use_action_appearance">False</property>
78
+ <property name="label" translatable="yes">Save As...</property>
79
+ <property name="use_underline">True</property>
80
+ </object>
81
+ </child>
82
+ <child>
83
+ <object class="GtkMenuItem" id="menuCloseAll">
84
+ <property name="visible">True</property>
85
+ <property name="can_focus">False</property>
86
+ <property name="tooltip_text" translatable="yes">Close all documents opened in the tabs.</property>
87
+ <property name="use_action_appearance">False</property>
88
+ <property name="label" translatable="yes">Close All</property>
89
+ <property name="use_underline">True</property>
90
+ </object>
91
+ </child>
92
+ <child>
93
+ <object class="GtkSeparatorMenuItem" id="menuitem5">
94
+ <property name="visible">True</property>
95
+ <property name="can_focus">False</property>
96
+ </object>
97
+ </child>
98
+ <child>
99
+ <object class="GtkMenuItem" id="menuQuit">
100
+ <property name="visible">True</property>
101
+ <property name="can_focus">False</property>
102
+ <property name="use_action_appearance">False</property>
103
+ <property name="label" translatable="yes">Quit</property>
104
+ <property name="use_underline">True</property>
105
+ <signal name="activate" handler="destroy_window" swapped="no"/>
106
+ </object>
107
+ </child>
108
+ </object>
109
+ </child>
110
+ </object>
111
+ </child>
112
+ <child>
113
+ <object class="GtkMenuItem" id="menuitem3">
114
+ <property name="visible">True</property>
115
+ <property name="can_focus">False</property>
116
+ <property name="use_action_appearance">False</property>
117
+ <property name="label" translatable="yes">_Tools</property>
118
+ <property name="use_underline">True</property>
119
+ <child type="submenu">
120
+ <object class="GtkMenu" id="menu3">
121
+ <property name="visible">True</property>
122
+ <property name="can_focus">False</property>
123
+ <child>
124
+ <object class="GtkMenuItem" id="menuCreateGemspec">
125
+ <property name="visible">True</property>
126
+ <property name="can_focus">False</property>
127
+ <property name="tooltip_text" translatable="yes">Will create a .gemspec file that defines this project. When you build your gem, it uses this file.</property>
128
+ <property name="use_action_appearance">False</property>
129
+ <property name="label" translatable="yes">Create Gemspec FIle</property>
130
+ <property name="use_underline">True</property>
131
+ </object>
132
+ </child>
133
+ <child>
134
+ <object class="GtkMenuItem" id="menuWWWRubygems">
135
+ <property name="visible">True</property>
136
+ <property name="can_focus">False</property>
137
+ <property name="tooltip_text" translatable="yes">Create a free account on rubygems.org so you can upload and share your gems.</property>
138
+ <property name="use_action_appearance">False</property>
139
+ <property name="label" translatable="yes">Create rubygems.org Account</property>
140
+ <property name="use_underline">True</property>
141
+ </object>
142
+ </child>
143
+ <child>
144
+ <object class="GtkMenuItem" id="menuCreateLauncher">
145
+ <property name="visible">True</property>
146
+ <property name="can_focus">False</property>
147
+ <property name="tooltip_text" translatable="yes">Creates a launcher on your destop for this project.</property>
148
+ <property name="use_action_appearance">False</property>
149
+ <property name="label" translatable="yes">Create Destop Launcher</property>
150
+ <property name="use_underline">True</property>
151
+ </object>
152
+ </child>
153
+ <child>
154
+ <object class="GtkMenuItem" id="menuGlobalSettings">
155
+ <property name="visible">True</property>
156
+ <property name="can_focus">False</property>
157
+ <property name="use_action_appearance">False</property>
158
+ <property name="label" translatable="yes">Global Settings</property>
159
+ <property name="use_underline">True</property>
160
+ </object>
161
+ </child>
162
+ <child>
163
+ <object class="GtkMenuItem" id="menuSettings">
164
+ <property name="visible">True</property>
165
+ <property name="can_focus">False</property>
166
+ <property name="tooltip_text" translatable="yes">Edit all user preferences for Visual Ruby.</property>
167
+ <property name="use_action_appearance">False</property>
168
+ <property name="label" translatable="yes">Project Settings</property>
169
+ <property name="use_underline">True</property>
170
+ </object>
171
+ </child>
172
+ </object>
173
+ </child>
174
+ </object>
175
+ </child>
176
+ <child>
177
+ <object class="GtkMenuItem" id="menuitem4">
178
+ <property name="visible">True</property>
179
+ <property name="can_focus">False</property>
180
+ <property name="use_action_appearance">False</property>
181
+ <property name="label" translatable="yes">_Help</property>
182
+ <property name="use_underline">True</property>
183
+ <child type="submenu">
184
+ <object class="GtkMenu" id="menu">
185
+ <property name="visible">True</property>
186
+ <property name="can_focus">False</property>
187
+ <child>
188
+ <object class="GtkMenuItem" id="menuTutorials">
189
+ <property name="visible">True</property>
190
+ <property name="can_focus">False</property>
191
+ <property name="tooltip_text" translatable="yes">Visit visualruby.net for complete tutorials on using Visual Ruby</property>
192
+ <property name="use_action_appearance">False</property>
193
+ <property name="label" translatable="yes">Tutorials</property>
194
+ <property name="use_underline">True</property>
195
+ </object>
196
+ </child>
197
+ <child>
198
+ <object class="GtkMenuItem" id="menuInstallExamples">
199
+ <property name="visible">True</property>
200
+ <property name="can_focus">False</property>
201
+ <property name="tooltip_text" translatable="yes">This will copy exaple code into a folder named visualruby_examples in your home directory.</property>
202
+ <property name="use_action_appearance">False</property>
203
+ <property name="label" translatable="yes">Install Example Projects</property>
204
+ <property name="use_underline">True</property>
205
+ </object>
206
+ </child>
207
+ </object>
208
+ </child>
209
+ </object>
210
+ </child>
211
+ </object>
212
+ <packing>
213
+ <property name="expand">False</property>
214
+ <property name="fill">True</property>
215
+ <property name="position">0</property>
216
+ </packing>
217
+ </child>
218
+ <child>
219
+ <object class="GtkToolbar" id="toolbar">
220
+ <property name="visible">True</property>
221
+ <property name="can_focus">False</property>
222
+ <property name="toolbar_style">both</property>
223
+ <child>
224
+ <object class="GtkToolButton" id="toolRefresh">
225
+ <property name="visible">True</property>
226
+ <property name="can_focus">False</property>
227
+ <property name="use_action_appearance">False</property>
228
+ <property name="label" translatable="yes">Refresh</property>
229
+ <property name="use_underline">True</property>
230
+ <property name="stock_id">gtk-refresh</property>
231
+ <signal name="clicked" handler="toolRefresh_clicked" swapped="no"/>
232
+ </object>
233
+ <packing>
234
+ <property name="expand">False</property>
235
+ <property name="homogeneous">True</property>
236
+ </packing>
237
+ </child>
238
+ <child>
239
+ <object class="GtkSeparatorToolItem" id="toolbutton1">
240
+ <property name="visible">True</property>
241
+ <property name="can_focus">False</property>
242
+ </object>
243
+ <packing>
244
+ <property name="expand">False</property>
245
+ <property name="homogeneous">True</property>
246
+ </packing>
247
+ </child>
248
+ <child>
249
+ <object class="GtkToolButton" id="toolOpenFolder">
250
+ <property name="visible">True</property>
251
+ <property name="can_focus">False</property>
252
+ <property name="use_action_appearance">False</property>
253
+ <property name="label" translatable="yes">Open Project</property>
254
+ <property name="use_underline">True</property>
255
+ <property name="stock_id">gtk-open</property>
256
+ <signal name="clicked" handler="toolOpenFolder_clicked" swapped="no"/>
257
+ </object>
258
+ <packing>
259
+ <property name="expand">False</property>
260
+ <property name="homogeneous">True</property>
261
+ </packing>
262
+ </child>
263
+ <child>
264
+ <object class="GtkSeparatorToolItem" id="toolbutton2">
265
+ <property name="visible">True</property>
266
+ <property name="can_focus">False</property>
267
+ </object>
268
+ <packing>
269
+ <property name="expand">False</property>
270
+ <property name="homogeneous">True</property>
271
+ </packing>
272
+ </child>
273
+ <child>
274
+ <object class="GtkToolButton" id="toolbuttonRun">
275
+ <property name="visible">True</property>
276
+ <property name="can_focus">False</property>
277
+ <property name="use_action_appearance">False</property>
278
+ <property name="label" translatable="yes">Run</property>
279
+ <property name="use_underline">True</property>
280
+ <property name="stock_id">gtk-execute</property>
281
+ <signal name="clicked" handler="toolRun_clicked" swapped="no"/>
282
+ </object>
283
+ <packing>
284
+ <property name="expand">False</property>
285
+ <property name="homogeneous">True</property>
286
+ </packing>
287
+ </child>
288
+ <child>
289
+ <object class="GtkToolButton" id="toolSave">
290
+ <property name="visible">True</property>
291
+ <property name="can_focus">False</property>
292
+ <property name="use_action_appearance">False</property>
293
+ <property name="label" translatable="yes">Save</property>
294
+ <property name="use_underline">True</property>
295
+ <property name="stock_id">gtk-save</property>
296
+ <signal name="clicked" handler="toolSave_clicked" swapped="no"/>
297
+ </object>
298
+ <packing>
299
+ <property name="expand">False</property>
300
+ <property name="homogeneous">True</property>
301
+ </packing>
302
+ </child>
303
+ <child>
304
+ <object class="GtkToolButton" id="toolComment">
305
+ <property name="visible">True</property>
306
+ <property name="can_focus">False</property>
307
+ <property name="use_action_appearance">False</property>
308
+ <property name="label" translatable="yes">Comment</property>
309
+ <property name="use_underline">True</property>
310
+ <property name="stock_id">gtk-sort-ascending</property>
311
+ <signal name="clicked" handler="toolComment_clicked" swapped="no"/>
312
+ </object>
313
+ <packing>
314
+ <property name="expand">False</property>
315
+ <property name="homogeneous">True</property>
316
+ </packing>
317
+ </child>
318
+ <child>
319
+ <object class="GtkToolButton" id="toolUnComment">
320
+ <property name="visible">True</property>
321
+ <property name="can_focus">False</property>
322
+ <property name="use_action_appearance">False</property>
323
+ <property name="label" translatable="yes">Un-Comment</property>
324
+ <property name="use_underline">True</property>
325
+ <property name="stock_id">gtk-sort-descending</property>
326
+ <signal name="clicked" handler="toolUnComment_clicked" swapped="no"/>
327
+ </object>
328
+ <packing>
329
+ <property name="expand">False</property>
330
+ <property name="homogeneous">True</property>
331
+ </packing>
332
+ </child>
333
+ <child>
334
+ <object class="GtkToolButton" id="toolIndent">
335
+ <property name="visible">True</property>
336
+ <property name="can_focus">False</property>
337
+ <property name="use_action_appearance">False</property>
338
+ <property name="label" translatable="yes">Indent</property>
339
+ <property name="use_underline">True</property>
340
+ <property name="stock_id">gtk-indent</property>
341
+ <signal name="clicked" handler="toolIndent_clicked" swapped="no"/>
342
+ </object>
343
+ <packing>
344
+ <property name="expand">False</property>
345
+ <property name="homogeneous">True</property>
346
+ </packing>
347
+ </child>
348
+ <child>
349
+ <object class="GtkToolButton" id="toolUnIndent">
350
+ <property name="visible">True</property>
351
+ <property name="can_focus">False</property>
352
+ <property name="use_action_appearance">False</property>
353
+ <property name="label" translatable="yes">Un-Indent</property>
354
+ <property name="use_underline">True</property>
355
+ <property name="stock_id">gtk-unindent</property>
356
+ <signal name="clicked" handler="toolUnIndent_clicked" swapped="no"/>
357
+ </object>
358
+ <packing>
359
+ <property name="expand">False</property>
360
+ <property name="homogeneous">True</property>
361
+ </packing>
362
+ </child>
363
+ <child>
364
+ <object class="GtkToolButton" id="toolBackUp">
365
+ <property name="visible">True</property>
366
+ <property name="can_focus">False</property>
367
+ <property name="use_action_appearance">False</property>
368
+ <property name="label" translatable="yes">Save Backup</property>
369
+ <property name="use_underline">True</property>
370
+ <property name="stock_id">gtk-floppy</property>
371
+ <signal name="clicked" handler="toolBackUp_clicked" swapped="no"/>
372
+ </object>
373
+ <packing>
374
+ <property name="expand">False</property>
375
+ <property name="homogeneous">True</property>
376
+ </packing>
377
+ </child>
378
+ </object>
379
+ <packing>
380
+ <property name="expand">False</property>
381
+ <property name="fill">True</property>
382
+ <property name="position">1</property>
383
+ </packing>
384
+ </child>
385
+ <child>
386
+ <object class="GtkHPaned" id="hpaned1">
387
+ <property name="visible">True</property>
388
+ <property name="can_focus">True</property>
389
+ <child>
390
+ <object class="GtkVBox" id="vbox2">
391
+ <property name="visible">True</property>
392
+ <property name="can_focus">False</property>
393
+ <child>
394
+ <object class="GtkNotebook" id="notebookTree">
395
+ <property name="visible">True</property>
396
+ <property name="can_focus">True</property>
397
+ <signal name="switch-page" handler="notebookTree_changed" after="yes" swapped="no"/>
398
+ <child>
399
+ <object class="GtkScrolledWindow" id="scrolledwindowFileTree">
400
+ <property name="visible">True</property>
401
+ <property name="can_focus">True</property>
402
+ <property name="hscrollbar_policy">automatic</property>
403
+ <property name="vscrollbar_policy">automatic</property>
404
+ <child>
405
+ <placeholder/>
406
+ </child>
407
+ </object>
408
+ </child>
409
+ <child type="tab">
410
+ <object class="GtkLabel" id="labelFiles">
411
+ <property name="visible">True</property>
412
+ <property name="can_focus">False</property>
413
+ <property name="yalign">0.41999998688697815</property>
414
+ <property name="label" translatable="yes">Files</property>
415
+ </object>
416
+ <packing>
417
+ <property name="tab_fill">False</property>
418
+ </packing>
419
+ </child>
420
+ <child>
421
+ <object class="GtkScrolledWindow" id="scrolledLocalGems">
422
+ <property name="visible">True</property>
423
+ <property name="can_focus">True</property>
424
+ <property name="hscrollbar_policy">automatic</property>
425
+ <property name="vscrollbar_policy">automatic</property>
426
+ <child>
427
+ <placeholder/>
428
+ </child>
429
+ </object>
430
+ <packing>
431
+ <property name="position">1</property>
432
+ </packing>
433
+ </child>
434
+ <child type="tab">
435
+ <object class="GtkLabel" id="labelGems">
436
+ <property name="visible">True</property>
437
+ <property name="can_focus">False</property>
438
+ <property name="label" translatable="yes">Local Gems</property>
439
+ </object>
440
+ <packing>
441
+ <property name="position">1</property>
442
+ <property name="tab_fill">False</property>
443
+ </packing>
444
+ </child>
445
+ <child>
446
+ <object class="GtkScrolledWindow" id="scrolledRemoteGems">
447
+ <property name="visible">True</property>
448
+ <property name="can_focus">True</property>
449
+ <property name="hscrollbar_policy">automatic</property>
450
+ <property name="vscrollbar_policy">automatic</property>
451
+ <child>
452
+ <placeholder/>
453
+ </child>
454
+ </object>
455
+ <packing>
456
+ <property name="position">2</property>
457
+ </packing>
458
+ </child>
459
+ <child type="tab">
460
+ <object class="GtkLabel" id="label1">
461
+ <property name="visible">True</property>
462
+ <property name="can_focus">False</property>
463
+ <property name="label" translatable="yes">Remote Gems</property>
464
+ </object>
465
+ <packing>
466
+ <property name="position">2</property>
467
+ <property name="tab_fill">False</property>
468
+ </packing>
469
+ </child>
470
+ </object>
471
+ <packing>
472
+ <property name="expand">True</property>
473
+ <property name="fill">True</property>
474
+ <property name="position">0</property>
475
+ </packing>
476
+ </child>
477
+ <child>
478
+ <object class="GtkHBox" id="hbox2">
479
+ <property name="visible">True</property>
480
+ <property name="can_focus">False</property>
481
+ <child>
482
+ <object class="GtkRadioButton" id="radioOnDisk">
483
+ <property name="label" translatable="yes">On Disk</property>
484
+ <property name="visible">True</property>
485
+ <property name="can_focus">True</property>
486
+ <property name="receives_default">False</property>
487
+ <property name="use_action_appearance">False</property>
488
+ <property name="active">True</property>
489
+ <property name="draw_indicator">True</property>
490
+ </object>
491
+ <packing>
492
+ <property name="expand">False</property>
493
+ <property name="fill">False</property>
494
+ <property name="position">0</property>
495
+ </packing>
496
+ </child>
497
+ <child>
498
+ <object class="GtkRadioButton" id="radioInTabs">
499
+ <property name="label" translatable="yes">Open Docs </property>
500
+ <property name="visible">True</property>
501
+ <property name="can_focus">True</property>
502
+ <property name="receives_default">False</property>
503
+ <property name="use_action_appearance">False</property>
504
+ <property name="active">True</property>
505
+ <property name="draw_indicator">True</property>
506
+ <property name="group">radioOnDisk</property>
507
+ </object>
508
+ <packing>
509
+ <property name="expand">False</property>
510
+ <property name="fill">False</property>
511
+ <property name="position">1</property>
512
+ </packing>
513
+ </child>
514
+ </object>
515
+ <packing>
516
+ <property name="expand">False</property>
517
+ <property name="fill">True</property>
518
+ <property name="position">1</property>
519
+ </packing>
520
+ </child>
521
+ <child>
522
+ <object class="GtkTable" id="table1">
523
+ <property name="visible">True</property>
524
+ <property name="can_focus">False</property>
525
+ <property name="n_rows">2</property>
526
+ <property name="n_columns">2</property>
527
+ <property name="column_spacing">2</property>
528
+ <child>
529
+ <object class="GtkEntry" id="entryFind">
530
+ <property name="width_request">35</property>
531
+ <property name="visible">True</property>
532
+ <property name="can_focus">True</property>
533
+ <property name="invisible_char">●</property>
534
+ <property name="primary_icon_activatable">False</property>
535
+ <property name="secondary_icon_activatable">False</property>
536
+ <property name="primary_icon_sensitive">True</property>
537
+ <property name="secondary_icon_sensitive">True</property>
538
+ <signal name="key-press-event" handler="entryFind_key_press" swapped="no"/>
539
+ </object>
540
+ </child>
541
+ <child>
542
+ <object class="GtkButton" id="buttonReplace">
543
+ <property name="label" translatable="yes">Replace</property>
544
+ <property name="width_request">80</property>
545
+ <property name="visible">True</property>
546
+ <property name="can_focus">True</property>
547
+ <property name="receives_default">True</property>
548
+ <property name="use_action_appearance">False</property>
549
+ <signal name="clicked" handler="buttonReplace_clicked" swapped="no"/>
550
+ </object>
551
+ <packing>
552
+ <property name="left_attach">1</property>
553
+ <property name="right_attach">2</property>
554
+ <property name="top_attach">1</property>
555
+ <property name="bottom_attach">2</property>
556
+ <property name="x_options"></property>
557
+ </packing>
558
+ </child>
559
+ <child>
560
+ <object class="GtkHBox" id="hbox1">
561
+ <property name="visible">True</property>
562
+ <property name="can_focus">False</property>
563
+ <child>
564
+ <object class="GtkButton" id="buttonFind">
565
+ <property name="label" translatable="yes">Find</property>
566
+ <property name="width_request">40</property>
567
+ <property name="visible">True</property>
568
+ <property name="can_focus">True</property>
569
+ <property name="receives_default">True</property>
570
+ <property name="use_action_appearance">False</property>
571
+ <property name="image_position">right</property>
572
+ <signal name="clicked" handler="buttonFind_clicked" swapped="no"/>
573
+ </object>
574
+ <packing>
575
+ <property name="expand">False</property>
576
+ <property name="fill">False</property>
577
+ <property name="position">0</property>
578
+ </packing>
579
+ </child>
580
+ <child>
581
+ <object class="GtkButton" id="buttonNext">
582
+ <property name="label" translatable="yes">Next</property>
583
+ <property name="width_request">45</property>
584
+ <property name="visible">True</property>
585
+ <property name="can_focus">True</property>
586
+ <property name="receives_default">True</property>
587
+ <property name="use_action_appearance">False</property>
588
+ <signal name="clicked" handler="buttonNext_clicked" swapped="no"/>
589
+ </object>
590
+ <packing>
591
+ <property name="expand">False</property>
592
+ <property name="fill">False</property>
593
+ <property name="position">1</property>
594
+ </packing>
595
+ </child>
596
+ </object>
597
+ <packing>
598
+ <property name="left_attach">1</property>
599
+ <property name="right_attach">2</property>
600
+ <property name="x_options"></property>
601
+ </packing>
602
+ </child>
603
+ <child>
604
+ <object class="GtkEntry" id="entryReplace">
605
+ <property name="width_request">35</property>
606
+ <property name="visible">True</property>
607
+ <property name="can_focus">True</property>
608
+ <property name="invisible_char">●</property>
609
+ <property name="primary_icon_activatable">False</property>
610
+ <property name="secondary_icon_activatable">False</property>
611
+ <property name="primary_icon_sensitive">True</property>
612
+ <property name="secondary_icon_sensitive">True</property>
613
+ </object>
614
+ <packing>
615
+ <property name="top_attach">1</property>
616
+ <property name="bottom_attach">2</property>
617
+ </packing>
618
+ </child>
619
+ </object>
620
+ <packing>
621
+ <property name="expand">False</property>
622
+ <property name="fill">False</property>
623
+ <property name="position">2</property>
624
+ </packing>
625
+ </child>
626
+ </object>
627
+ <packing>
628
+ <property name="resize">False</property>
629
+ <property name="shrink">True</property>
630
+ </packing>
631
+ </child>
632
+ <child>
633
+ <object class="GtkVPaned" id="panelMain">
634
+ <property name="visible">True</property>
635
+ <property name="can_focus">True</property>
636
+ <property name="position">500</property>
637
+ <property name="position_set">True</property>
638
+ <child>
639
+ <object class="GtkVBox" id="vboxTabs">
640
+ <property name="visible">True</property>
641
+ <property name="can_focus">False</property>
642
+ <child>
643
+ <placeholder/>
644
+ </child>
645
+ </object>
646
+ <packing>
647
+ <property name="resize">False</property>
648
+ <property name="shrink">True</property>
649
+ </packing>
650
+ </child>
651
+ <child>
652
+ <object class="GtkScrolledWindow" id="scrollShell">
653
+ <property name="visible">True</property>
654
+ <property name="can_focus">True</property>
655
+ <property name="hscrollbar_policy">automatic</property>
656
+ <property name="vscrollbar_policy">automatic</property>
657
+ <child>
658
+ <placeholder/>
659
+ </child>
660
+ </object>
661
+ <packing>
662
+ <property name="resize">True</property>
663
+ <property name="shrink">True</property>
664
+ </packing>
665
+ </child>
666
+ </object>
667
+ <packing>
668
+ <property name="resize">True</property>
669
+ <property name="shrink">True</property>
670
+ </packing>
671
+ </child>
672
+ </object>
673
+ <packing>
674
+ <property name="expand">True</property>
675
+ <property name="fill">True</property>
676
+ <property name="position">2</property>
677
+ </packing>
678
+ </child>
679
+ <child>
680
+ <object class="GtkStatusbar" id="statusbar">
681
+ <property name="visible">True</property>
682
+ <property name="can_focus">False</property>
683
+ <property name="border_width">1</property>
684
+ <child>
685
+ <object class="GtkLabel" id="labelStatus">
686
+ <property name="visible">True</property>
687
+ <property name="can_focus">False</property>
688
+ <property name="xpad">10</property>
689
+ <property name="label" translatable="yes">Home Folder</property>
690
+ </object>
691
+ <packing>
692
+ <property name="expand">False</property>
693
+ <property name="fill">False</property>
694
+ <property name="position">0</property>
695
+ </packing>
696
+ </child>
697
+ </object>
698
+ <packing>
699
+ <property name="expand">False</property>
700
+ <property name="fill">False</property>
701
+ <property name="position">3</property>
702
+ </packing>
703
+ </child>
704
+ </object>
705
+ </child>
706
+ </object>
707
+ </interface>