visualruby 1.0.19 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Splash.rb +40 -0
- data/bin/editor/VR_Document.rb +81 -74
- data/bin/editor/VR_TabSearch.rb +5 -7
- data/bin/editor/VR_Tabs.rb +57 -36
- data/bin/editor/VR_TextShell.rb +12 -34
- data/bin/editor/VR_TextViewCommon.rb +9 -28
- data/bin/main/NewProjectGUI.rb +14 -13
- data/bin/main/OpenProject.rb +69 -0
- data/bin/main/ProjectChooserView.rb +3 -2
- data/bin/main/ProjectTree.rb +25 -0
- data/bin/main/RubygemsAPI.rb +15 -11
- data/bin/main/VR_ENV.rb +38 -60
- data/bin/main/VR_ENV_GLOBAL.rb +45 -44
- data/bin/main/VR_File_Tree.rb +29 -21
- data/bin/main/VR_Local_Gem_Tree.rb +4 -19
- data/bin/main/VR_Main.rb +128 -144
- data/bin/main/VR_Remote_Gem_Tree.rb +6 -19
- data/bin/main/glade/NewProjectGUI.glade +94 -98
- data/bin/main/glade/OpenProject.glade +259 -0
- data/bin/main/glade/RubygemsAPI.glade +98 -62
- data/bin/main/glade/VR_ENV.glade +46 -55
- data/bin/main/glade/VR_ENV_GLOBAL.glade +251 -180
- data/bin/main/glade/VR_File_Tree.glade +25 -16
- data/bin/main/glade/VR_Local_Gem_Tree.glade +16 -8
- data/bin/main/glade/VR_Main.glade +410 -449
- data/bin/main/glade/VR_Remote_Gem_Tree.glade +33 -31
- data/bin/tools/VR_Tools.rb +60 -46
- data/{visualruby_examples → examples}/active_record/active_record.rb +16 -10
- data/{visualruby_examples → examples}/active_record/bin/ChoosePerson.rb +7 -0
- data/examples/active_record/bin/Person.rb +21 -0
- data/examples/active_record/bin/glade/ChoosePerson.glade +89 -0
- data/examples/active_record/bin/glade/Person.glade +197 -0
- data/{visualruby_examples → examples}/active_record/db/development.sqlite3 +0 -0
- data/{visualruby_examples → examples}/active_record2/bin/CompanyGUI.rb +7 -7
- data/{visualruby_examples → examples}/active_record2/bin/Employee.rb +0 -0
- data/{visualruby_examples → examples}/active_record2/bin/Employer.rb +0 -0
- data/{visualruby_examples → examples}/active_record2/bin/Paycheck.rb +0 -0
- data/examples/active_record2/bin/glade/CompanyGUI.glade +149 -0
- data/examples/active_record2/bin/glade/Employee.glade +126 -0
- data/{visualruby_examples → examples}/active_record2/bin/glade/Employer.glade +0 -0
- data/{visualruby_examples → examples}/active_record2/bin/glade/Paycheck.glade +0 -0
- data/{visualruby_examples → examples}/active_record2/db/development.sqlite3 +0 -0
- data/{visualruby_examples → examples}/active_record2/main.rb +15 -9
- data/examples/alert_box/bin/AlertBoxDemo.rb +80 -0
- data/examples/alert_box/bin/glade/AlertBoxDemo.glade +234 -0
- data/examples/alert_box/main.rb +12 -0
- data/{visualruby_examples → examples}/all_widgets/bin/AllWidgets.rb +18 -10
- data/{visualruby_examples → examples}/all_widgets/bin/glade/AllWidgets.glade +52 -16
- data/{visualruby_examples → examples}/all_widgets/bin/splash.png +0 -0
- data/examples/all_widgets/main.rb +12 -0
- data/{visualruby_examples → examples}/calculator/bin/Calculator.rb +23 -22
- data/{visualruby_examples → examples}/calculator/bin/glade/Calculator.glade +81 -51
- data/examples/calculator/main.rb +13 -0
- data/examples/child_window/bin/ChildWindowDemo.rb +52 -0
- data/examples/child_window/bin/ModalWindow.rb +9 -0
- data/examples/child_window/bin/ModelessWindow.rb +9 -0
- data/examples/child_window/bin/MyChildClass.rb +21 -0
- data/examples/child_window/bin/glade/ChildWindowDemo.glade +87 -0
- data/examples/child_window/bin/glade/ModalWindow.glade +61 -0
- data/examples/child_window/bin/glade/ModelessWindow.glade +61 -0
- data/{visualruby_examples → examples}/child_window/bin/glade/MyChildClass.glade +14 -12
- data/examples/child_window/main.rb +12 -0
- data/{visualruby_examples → examples}/drag_drop/bin/DragDropDemo.rb +9 -10
- data/examples/drag_drop/bin/glade/DragDropDemo.glade +161 -0
- data/{visualruby_examples → examples}/drag_drop/img/folder.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/glade.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/gtk-edit.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/obj.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/png.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/rb.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/ruby.png +0 -0
- data/{visualruby_examples → examples}/drag_drop/img/unknown.png +0 -0
- data/examples/drag_drop/main.rb +11 -0
- data/examples/filetreeview/bin/ProjectTree.rb +32 -0
- data/examples/filetreeview/bin/ProjectTreeGUI.rb +28 -0
- data/examples/filetreeview/bin/glade/ProjectTreeGUI.glade +156 -0
- data/examples/filetreeview/main.rb +13 -0
- data/{visualruby_examples → examples}/listview/bin/SongListView.rb +24 -20
- data/{visualruby_examples → examples}/listview/bin/SongListViewGUI.rb +12 -11
- data/{visualruby_examples → examples}/listview/bin/audio-x-generic.png +0 -0
- data/examples/listview/bin/glade/SongListViewGUI.glade +195 -0
- data/examples/listview/main.rb +10 -0
- data/examples/listview_objects/bin/DataObject.rb +53 -0
- data/{visualruby_examples → examples}/listview_objects/bin/ListViewObjects.rb +7 -4
- data/examples/listview_objects/bin/ListViewObjectsGUI.rb +26 -0
- data/examples/listview_objects/bin/glade/DataObject.glade +196 -0
- data/examples/listview_objects/bin/glade/ListViewObjectsGUI.glade +87 -0
- data/examples/listview_objects/main.rb +12 -0
- data/examples/settings_file/bin/MainApp.rb +38 -0
- data/examples/settings_file/bin/SavableSettings.rb +39 -0
- data/examples/settings_file/bin/glade/MainApp.glade +87 -0
- data/examples/settings_file/bin/glade/SavableSettings.glade +162 -0
- data/examples/settings_file/main.rb +14 -0
- data/examples/settings_file/settings.yaml +15 -0
- data/examples/simple_ruby_gui/bin/DataObjectGUI.rb +21 -0
- data/examples/simple_ruby_gui/bin/glade/DataObjectGUI.glade +195 -0
- data/examples/simple_ruby_gui/main.rb +16 -0
- data/{visualruby_examples → examples}/treeview/bin/MyClass.rb +1 -5
- data/examples/treeview/bin/glade/MyClass.glade +24 -0
- data/examples/treeview/main.rb +13 -0
- data/skeleton/document/New.glade +3 -4
- data/skeleton/document/NewWindow.rb +1 -1
- data/skeleton/project/bin/MyClass.rb +2 -2
- data/skeleton/project/bin/glade/MyClass.glade +12 -26
- data/skeleton/project/main.rb +4 -8
- data/vr +41 -37
- data/vrlib/lib/Alert.rb +67 -0
- data/vrlib/lib/DragDrop.rb +90 -0
- data/vrlib/lib/GladeGUI.rb +433 -0
- data/vrlib/lib/IconHash.rb +18 -0
- data/vrlib/lib/SavableClass.rb +56 -0
- data/vrlib/lib/SimpleComboBoxEntry.rb +8 -0
- data/vrlib/lib/glade/Alert.glade +119 -0
- data/vrlib/lib/treeview/FileTreeView.rb +113 -0
- data/vrlib/lib/treeview/IterMethods.rb +82 -0
- data/vrlib/lib/treeview/ListView.rb +85 -0
- data/vrlib/lib/treeview/TreeView.rb +43 -0
- data/vrlib/lib/treeview/ViewCommon.rb +370 -0
- data/vrlib/lib/treeview/columns/CalendarCol.rb +89 -0
- data/vrlib/lib/treeview/columns/CellRendererCombo.rb +66 -0
- data/vrlib/lib/treeview/columns/CellRendererDate.rb +45 -0
- data/vrlib/lib/treeview/columns/CellRendererObject.rb +57 -0
- data/vrlib/lib/treeview/columns/CellRendererPhone.rb +45 -0
- data/vrlib/lib/treeview/columns/CellRendererPixbuf.rb +16 -0
- data/vrlib/lib/treeview/columns/CellRendererProgress.rb +17 -0
- data/vrlib/lib/treeview/columns/CellRendererSpin.rb +37 -0
- data/vrlib/lib/treeview/columns/CellRendererText.rb +38 -0
- data/vrlib/lib/treeview/columns/CellRendererToggle.rb +47 -0
- data/vrlib/lib/treeview/columns/ComboCol.rb +43 -0
- data/vrlib/lib/treeview/columns/CurrencyCol.rb +23 -0
- data/vrlib/lib/treeview/columns/DateCol.rb +20 -0
- data/vrlib/lib/treeview/columns/ImageCol.rb +27 -0
- data/vrlib/lib/treeview/columns/ProgressCol.rb +27 -0
- data/vrlib/lib/treeview/columns/SpinCol.rb +11 -0
- data/vrlib/lib/treeview/columns/TextCol.rb +65 -0
- data/vrlib/lib/treeview/columns/TreeViewColumn.rb +93 -0
- data/{bin/main/glade/ProjectChooserGUI.glade → vrlib/lib/treeview/columns/glade/CalendarCol.glade} +71 -63
- data/{bin/main/glade/Splash.glade → vrlib/lib/treeview/columns/glade/ImageCol.glade} +5 -6
- data/vrlib/lib/treeview/columns/glade/TextCol.glade +82 -0
- data/vrlib/rdoc_replace.yaml +77 -0
- data/vrlib/vrlib.rb +7 -0
- metadata +163 -136
- data/bin/editor/glade/VR_Document.glade +0 -160
- data/bin/main/ProjectChooserGUI.rb +0 -41
- data/bin/main/Splash.rb +0 -22
- data/visualruby_examples/active_record/.vr_settings.yaml +0 -47
- data/visualruby_examples/active_record/bin/Person.rb +0 -13
- data/visualruby_examples/active_record/bin/glade/ChoosePerson.glade +0 -61
- data/visualruby_examples/active_record/bin/glade/Person.glade +0 -148
- data/visualruby_examples/active_record2/.vr_settings.yaml +0 -16
- data/visualruby_examples/active_record2/bin/glade/CompanyGUI.glade +0 -167
- data/visualruby_examples/active_record2/bin/glade/Employee.glade +0 -123
- data/visualruby_examples/all_widgets/.vr_settings.yaml +0 -13
- data/visualruby_examples/all_widgets/main.rb +0 -14
- data/visualruby_examples/calculator/.vr_settings.yaml +0 -11
- data/visualruby_examples/calculator/main.rb +0 -13
- data/visualruby_examples/child_window/.vr_settings.yaml +0 -16
- data/visualruby_examples/child_window/bin/ChildWindowDemo.rb +0 -39
- data/visualruby_examples/child_window/bin/MyChildClass.rb +0 -40
- data/visualruby_examples/child_window/bin/glade/ChildWindowDemo.glade +0 -101
- data/visualruby_examples/child_window/main.rb +0 -13
- data/visualruby_examples/drag_drop/.vr_settings.yaml +0 -12
- data/visualruby_examples/drag_drop/bin/glade/DragDropDemo.glade +0 -143
- data/visualruby_examples/drag_drop/main.rb +0 -14
- data/visualruby_examples/listview/.vr_settings.yaml +0 -12
- data/visualruby_examples/listview/bin/glade/SongListViewGUI.glade +0 -220
- data/visualruby_examples/listview/main.rb +0 -19
- data/visualruby_examples/listview_objects/.vr_settings.yaml +0 -16
- data/visualruby_examples/listview_objects/bin/DataObject.rb +0 -32
- data/visualruby_examples/listview_objects/bin/DataObjectGUI.rb +0 -41
- data/visualruby_examples/listview_objects/bin/ListViewObjectsGUI.rb +0 -18
- data/visualruby_examples/listview_objects/bin/glade/DataObject.glade +0 -198
- data/visualruby_examples/listview_objects/bin/glade/ListViewObjectsGUI.glade +0 -102
- data/visualruby_examples/listview_objects/main.rb +0 -13
- data/visualruby_examples/simple_ruby_gui/.vr_settings.yaml +0 -16
- data/visualruby_examples/simple_ruby_gui/bin/DataObjectGUI.rb +0 -20
- data/visualruby_examples/simple_ruby_gui/bin/glade/DataObjectGUI.glade +0 -163
- data/visualruby_examples/simple_ruby_gui/main.rb +0 -16
- data/visualruby_examples/treeview/.vr_settings.yaml +0 -12
- data/visualruby_examples/treeview/bin/glade/MyClass.glade +0 -48
- 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="
|
|
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="
|
|
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="
|
|
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
|
|
48
|
-
<property name="
|
|
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="
|
|
58
|
-
<property name="label" translatable="yes">New
|
|
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="
|
|
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="
|
|
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="
|
|
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">
|
|
148
|
-
<property name="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
189
|
+
<object class="GtkBox" id="box2">
|
|
220
190
|
<property name="visible">True</property>
|
|
221
191
|
<property name="can_focus">False</property>
|
|
222
|
-
<property name="
|
|
223
|
-
<
|
|
224
|
-
|
|
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="
|
|
196
|
+
<object class="GtkToolbar" id="toolbar1">
|
|
335
197
|
<property name="visible">True</property>
|
|
336
198
|
<property name="can_focus">False</property>
|
|
337
|
-
<property name="
|
|
338
|
-
<property name="
|
|
339
|
-
<
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
<
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
<
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
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="
|
|
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="
|
|
339
|
+
<object class="GtkPaned" id="panelMain">
|
|
391
340
|
<property name="visible">True</property>
|
|
392
|
-
<property name="can_focus">
|
|
341
|
+
<property name="can_focus">True</property>
|
|
393
342
|
<child>
|
|
394
|
-
<object class="
|
|
343
|
+
<object class="GtkBox" id="box3">
|
|
395
344
|
<property name="visible">True</property>
|
|
396
|
-
<property name="can_focus">
|
|
397
|
-
<
|
|
345
|
+
<property name="can_focus">False</property>
|
|
346
|
+
<property name="orientation">vertical</property>
|
|
398
347
|
<child>
|
|
399
|
-
<object class="
|
|
348
|
+
<object class="GtkNotebook" id="notebookTree">
|
|
400
349
|
<property name="visible">True</property>
|
|
401
350
|
<property name="can_focus">True</property>
|
|
402
|
-
<
|
|
403
|
-
<property name="vscrollbar_policy">automatic</property>
|
|
351
|
+
<signal name="switch-page" handler="notebookTree_changed" after="yes" swapped="no"/>
|
|
404
352
|
<child>
|
|
405
|
-
<
|
|
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
|
-
<
|
|
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
|
-
<
|
|
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">
|
|
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="
|
|
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">
|
|
502
|
-
<
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
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">
|
|
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="
|
|
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="
|
|
565
|
-
<property name="label" translatable="yes">
|
|
566
|
-
<property name="
|
|
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">
|
|
570
|
-
<property name="
|
|
571
|
-
<property name="
|
|
572
|
-
<
|
|
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="
|
|
582
|
-
<property name="label" translatable="yes">
|
|
583
|
-
<property name="
|
|
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">
|
|
587
|
-
<property name="
|
|
588
|
-
<
|
|
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="
|
|
599
|
-
<property name="
|
|
600
|
-
<property name="
|
|
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="
|
|
586
|
+
<object class="GtkPaned" id="panelNotebook">
|
|
653
587
|
<property name="visible">True</property>
|
|
654
588
|
<property name="can_focus">True</property>
|
|
655
|
-
<property name="
|
|
656
|
-
<property name="
|
|
589
|
+
<property name="hexpand">True</property>
|
|
590
|
+
<property name="vexpand">True</property>
|
|
591
|
+
<property name="orientation">vertical</property>
|
|
657
592
|
<child>
|
|
658
|
-
<
|
|
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="
|
|
669
|
-
<property name="
|
|
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="
|
|
634
|
+
<object class="GtkStatusbar" id="statusbar">
|
|
686
635
|
<property name="visible">True</property>
|
|
687
636
|
<property name="can_focus">False</property>
|
|
688
|
-
<property name="
|
|
689
|
-
<
|
|
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">
|
|
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">
|
|
701
|
-
<property name="position">
|
|
661
|
+
<property name="fill">True</property>
|
|
662
|
+
<property name="position">1</property>
|
|
702
663
|
</packing>
|
|
703
664
|
</child>
|
|
704
665
|
</object>
|