visualruby 1.0.19 → 3.0.2

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