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,123 +1,159 @@
|
|
1
|
-
<?xml version="1.0"?>
|
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="GtkDialog" id="dialog1">
|
6
|
-
<property name="
|
7
|
-
<property name="
|
8
|
-
<property name="
|
6
|
+
<property name="can_focus">False</property>
|
7
|
+
<property name="vexpand">True</property>
|
8
|
+
<property name="title" translatable="yes">Enter Rubygems Account Info</property>
|
9
|
+
<property name="modal">True</property>
|
10
|
+
<property name="window_position">center</property>
|
11
|
+
<property name="default_height">200</property>
|
12
|
+
<property name="destroy_with_parent">True</property>
|
13
|
+
<property name="type_hint">dialog</property>
|
9
14
|
<child internal-child="vbox">
|
10
|
-
<object class="
|
11
|
-
<property name="
|
15
|
+
<object class="GtkBox" id="dialog-vbox2">
|
16
|
+
<property name="can_focus">False</property>
|
17
|
+
<property name="orientation">vertical</property>
|
12
18
|
<property name="spacing">2</property>
|
19
|
+
<child internal-child="action_area">
|
20
|
+
<object class="GtkButtonBox" id="dialog-action_area2">
|
21
|
+
<property name="can_focus">False</property>
|
22
|
+
<property name="margin_top">1</property>
|
23
|
+
<property name="margin_bottom">1</property>
|
24
|
+
<property name="layout_style">end</property>
|
25
|
+
<child>
|
26
|
+
<object class="GtkButton" id="buttonCancel">
|
27
|
+
<property name="label" translatable="yes">Cancel</property>
|
28
|
+
<property name="use_action_appearance">False</property>
|
29
|
+
<property name="visible">True</property>
|
30
|
+
<property name="can_focus">True</property>
|
31
|
+
<property name="receives_default">True</property>
|
32
|
+
</object>
|
33
|
+
<packing>
|
34
|
+
<property name="expand">False</property>
|
35
|
+
<property name="fill">False</property>
|
36
|
+
<property name="position">0</property>
|
37
|
+
</packing>
|
38
|
+
</child>
|
39
|
+
<child>
|
40
|
+
<object class="GtkButton" id="buttonOk">
|
41
|
+
<property name="label" translatable="yes">Ok</property>
|
42
|
+
<property name="use_action_appearance">False</property>
|
43
|
+
<property name="visible">True</property>
|
44
|
+
<property name="can_focus">True</property>
|
45
|
+
<property name="receives_default">True</property>
|
46
|
+
</object>
|
47
|
+
<packing>
|
48
|
+
<property name="expand">False</property>
|
49
|
+
<property name="fill">False</property>
|
50
|
+
<property name="position">1</property>
|
51
|
+
</packing>
|
52
|
+
</child>
|
53
|
+
</object>
|
54
|
+
<packing>
|
55
|
+
<property name="expand">False</property>
|
56
|
+
<property name="fill">True</property>
|
57
|
+
<property name="pack_type">end</property>
|
58
|
+
<property name="position">0</property>
|
59
|
+
</packing>
|
60
|
+
</child>
|
13
61
|
<child>
|
14
|
-
<object class="
|
62
|
+
<object class="GtkBox" id="box1">
|
15
63
|
<property name="visible">True</property>
|
16
|
-
<property name="
|
64
|
+
<property name="can_focus">False</property>
|
65
|
+
<property name="margin_left">15</property>
|
66
|
+
<property name="margin_right">15</property>
|
67
|
+
<property name="orientation">vertical</property>
|
17
68
|
<child>
|
18
69
|
<object class="GtkLabel" id="label6">
|
19
70
|
<property name="visible">True</property>
|
71
|
+
<property name="can_focus">False</property>
|
20
72
|
<property name="label" translatable="yes">Enter your rubygems.org username and password</property>
|
21
73
|
</object>
|
22
74
|
<packing>
|
75
|
+
<property name="expand">True</property>
|
76
|
+
<property name="fill">True</property>
|
23
77
|
<property name="position">0</property>
|
24
78
|
</packing>
|
25
79
|
</child>
|
26
80
|
<child>
|
27
|
-
<object class="
|
81
|
+
<object class="GtkGrid" id="grid1">
|
28
82
|
<property name="visible">True</property>
|
29
|
-
<property name="
|
30
|
-
<property name="
|
31
|
-
<property name="
|
83
|
+
<property name="can_focus">False</property>
|
84
|
+
<property name="margin_left">10</property>
|
85
|
+
<property name="margin_right">10</property>
|
86
|
+
<property name="margin_top">10</property>
|
87
|
+
<property name="margin_bottom">10</property>
|
88
|
+
<property name="vexpand">True</property>
|
89
|
+
<property name="resize_mode">queue</property>
|
32
90
|
<property name="row_spacing">6</property>
|
91
|
+
<property name="column_spacing">10</property>
|
33
92
|
<child>
|
34
|
-
<object class="GtkLabel" id="
|
93
|
+
<object class="GtkLabel" id="label2">
|
35
94
|
<property name="visible">True</property>
|
95
|
+
<property name="can_focus">False</property>
|
36
96
|
<property name="xalign">1</property>
|
37
97
|
<property name="label" translatable="yes">Username:</property>
|
38
98
|
</object>
|
99
|
+
<packing>
|
100
|
+
<property name="left_attach">0</property>
|
101
|
+
<property name="top_attach">0</property>
|
102
|
+
<property name="width">1</property>
|
103
|
+
<property name="height">1</property>
|
104
|
+
</packing>
|
39
105
|
</child>
|
40
106
|
<child>
|
41
|
-
<object class="GtkLabel" id="
|
107
|
+
<object class="GtkLabel" id="label1">
|
42
108
|
<property name="visible">True</property>
|
109
|
+
<property name="can_focus">False</property>
|
110
|
+
<property name="margin_top">2</property>
|
43
111
|
<property name="xalign">1</property>
|
44
112
|
<property name="label" translatable="yes">Password:</property>
|
45
113
|
</object>
|
46
114
|
<packing>
|
115
|
+
<property name="left_attach">0</property>
|
47
116
|
<property name="top_attach">1</property>
|
48
|
-
<property name="
|
117
|
+
<property name="width">1</property>
|
118
|
+
<property name="height">1</property>
|
49
119
|
</packing>
|
50
120
|
</child>
|
51
121
|
<child>
|
52
|
-
<object class="GtkEntry" id="
|
122
|
+
<object class="GtkEntry" id="username">
|
53
123
|
<property name="visible">True</property>
|
54
124
|
<property name="can_focus">True</property>
|
55
|
-
<property name="invisible_char">●</property>
|
56
125
|
</object>
|
57
126
|
<packing>
|
58
127
|
<property name="left_attach">1</property>
|
59
|
-
<property name="
|
128
|
+
<property name="top_attach">0</property>
|
129
|
+
<property name="width">1</property>
|
130
|
+
<property name="height">1</property>
|
60
131
|
</packing>
|
61
132
|
</child>
|
62
133
|
<child>
|
63
|
-
<object class="GtkEntry" id="
|
134
|
+
<object class="GtkEntry" id="password">
|
64
135
|
<property name="visible">True</property>
|
65
136
|
<property name="can_focus">True</property>
|
66
|
-
<property name="invisible_char">●</property>
|
67
137
|
</object>
|
68
138
|
<packing>
|
69
139
|
<property name="left_attach">1</property>
|
70
|
-
<property name="right_attach">2</property>
|
71
140
|
<property name="top_attach">1</property>
|
72
|
-
<property name="
|
141
|
+
<property name="width">1</property>
|
142
|
+
<property name="height">1</property>
|
73
143
|
</packing>
|
74
144
|
</child>
|
75
145
|
</object>
|
76
|
-
<packing>
|
77
|
-
<property name="position">1</property>
|
78
|
-
</packing>
|
79
|
-
</child>
|
80
|
-
</object>
|
81
|
-
<packing>
|
82
|
-
<property name="position">1</property>
|
83
|
-
</packing>
|
84
|
-
</child>
|
85
|
-
<child internal-child="action_area">
|
86
|
-
<object class="GtkHButtonBox" id="dialog-action_area1">
|
87
|
-
<property name="visible">True</property>
|
88
|
-
<property name="layout_style">end</property>
|
89
|
-
<child>
|
90
|
-
<object class="GtkButton" id="buttonCancel">
|
91
|
-
<property name="label" translatable="yes">Cancel</property>
|
92
|
-
<property name="visible">True</property>
|
93
|
-
<property name="can_focus">True</property>
|
94
|
-
<property name="receives_default">True</property>
|
95
|
-
</object>
|
96
146
|
<packing>
|
97
147
|
<property name="expand">False</property>
|
98
|
-
<property name="fill">
|
99
|
-
<property name="position">0</property>
|
100
|
-
</packing>
|
101
|
-
</child>
|
102
|
-
<child>
|
103
|
-
<object class="GtkButton" id="buttonOk">
|
104
|
-
<property name="label" translatable="yes">Ok</property>
|
105
|
-
<property name="visible">True</property>
|
106
|
-
<property name="can_focus">True</property>
|
107
|
-
<property name="receives_default">True</property>
|
108
|
-
</object>
|
109
|
-
<packing>
|
110
|
-
<property name="expand">False</property>
|
111
|
-
<property name="fill">False</property>
|
148
|
+
<property name="fill">True</property>
|
112
149
|
<property name="position">1</property>
|
113
150
|
</packing>
|
114
151
|
</child>
|
115
152
|
</object>
|
116
153
|
<packing>
|
117
|
-
<property name="expand">
|
118
|
-
<property name="
|
119
|
-
<property name="
|
120
|
-
<property name="position">0</property>
|
154
|
+
<property name="expand">True</property>
|
155
|
+
<property name="fill">True</property>
|
156
|
+
<property name="position">1</property>
|
121
157
|
</packing>
|
122
158
|
</child>
|
123
159
|
</object>
|
data/bin/main/glade/VR_ENV.glade
CHANGED
@@ -1,30 +1,27 @@
|
|
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 -->
|
5
|
-
<object class="GtkAdjustment" id="adjustment1">
|
6
|
-
<property name="upper">100</property>
|
7
|
-
<property name="step_increment">1</property>
|
8
|
-
<property name="page_increment">10</property>
|
9
|
-
<property name="page_size">10</property>
|
10
|
-
</object>
|
4
|
+
<requires lib="gtk+" version="3.0"/>
|
11
5
|
<object class="GtkWindow" id="window1">
|
12
|
-
<property name="visible">True</property>
|
13
6
|
<property name="can_focus">False</property>
|
14
|
-
<property name="title" translatable="yes">Visual Ruby Settings</property>
|
15
7
|
<property name="modal">True</property>
|
16
|
-
<property name="window_position">center
|
17
|
-
<property name="
|
18
|
-
<property name="default_height">300</property>
|
19
|
-
<signal name="destroy" handler="destroy_window" swapped="no"/>
|
8
|
+
<property name="window_position">center</property>
|
9
|
+
<property name="type_hint">menu</property>
|
20
10
|
<child>
|
21
|
-
<object class="
|
11
|
+
<object class="GtkBox" id="box1">
|
22
12
|
<property name="visible">True</property>
|
23
13
|
<property name="can_focus">False</property>
|
14
|
+
<property name="margin_left">15</property>
|
15
|
+
<property name="margin_right">15</property>
|
16
|
+
<property name="margin_top">15</property>
|
17
|
+
<property name="margin_bottom">15</property>
|
18
|
+
<property name="orientation">vertical</property>
|
24
19
|
<child>
|
25
|
-
<object class="
|
20
|
+
<object class="GtkBox" id="box2">
|
26
21
|
<property name="visible">True</property>
|
27
22
|
<property name="can_focus">False</property>
|
23
|
+
<property name="orientation">vertical</property>
|
24
|
+
<property name="homogeneous">True</property>
|
28
25
|
<child>
|
29
26
|
<object class="GtkLabel" id="label1">
|
30
27
|
<property name="visible">True</property>
|
@@ -40,14 +37,11 @@
|
|
40
37
|
</packing>
|
41
38
|
</child>
|
42
39
|
<child>
|
43
|
-
<object class="
|
40
|
+
<object class="GtkGrid" id="grid1">
|
44
41
|
<property name="visible">True</property>
|
45
42
|
<property name="can_focus">False</property>
|
46
|
-
<property name="
|
47
|
-
<property name="n_columns">2</property>
|
43
|
+
<property name="row_spacing">3</property>
|
48
44
|
<property name="column_spacing">5</property>
|
49
|
-
<property name="row_spacing">5</property>
|
50
|
-
<property name="homogeneous">True</property>
|
51
45
|
<child>
|
52
46
|
<object class="GtkLabel" id="label6">
|
53
47
|
<property name="visible">True</property>
|
@@ -55,75 +49,74 @@
|
|
55
49
|
<property name="xalign">1</property>
|
56
50
|
<property name="label" translatable="yes">Command Line when "Run" is pressed:</property>
|
57
51
|
</object>
|
52
|
+
<packing>
|
53
|
+
<property name="left_attach">0</property>
|
54
|
+
<property name="top_attach">0</property>
|
55
|
+
<property name="width">1</property>
|
56
|
+
<property name="height">1</property>
|
57
|
+
</packing>
|
58
58
|
</child>
|
59
59
|
<child>
|
60
60
|
<object class="GtkEntry" id="run_command_line">
|
61
61
|
<property name="visible">True</property>
|
62
62
|
<property name="can_focus">True</property>
|
63
|
-
<property name="invisible_char">•</property>
|
64
|
-
<property name="invisible_char_set">True</property>
|
65
|
-
<property name="primary_icon_activatable">False</property>
|
66
|
-
<property name="secondary_icon_activatable">False</property>
|
67
|
-
<property name="primary_icon_sensitive">True</property>
|
68
|
-
<property name="secondary_icon_sensitive">True</property>
|
69
63
|
</object>
|
70
64
|
<packing>
|
71
65
|
<property name="left_attach">1</property>
|
72
|
-
<property name="
|
66
|
+
<property name="top_attach">0</property>
|
67
|
+
<property name="width">1</property>
|
68
|
+
<property name="height">1</property>
|
73
69
|
</packing>
|
74
70
|
</child>
|
75
71
|
<child>
|
76
|
-
<object class="
|
72
|
+
<object class="GtkEntry" id="rdoc_command_line">
|
77
73
|
<property name="visible">True</property>
|
78
|
-
<property name="can_focus">
|
79
|
-
<property name="xalign">1</property>
|
80
|
-
<property name="label" translatable="yes">RDoc Command Line: </property>
|
74
|
+
<property name="can_focus">True</property>
|
81
75
|
</object>
|
82
76
|
<packing>
|
77
|
+
<property name="left_attach">1</property>
|
83
78
|
<property name="top_attach">1</property>
|
84
|
-
<property name="
|
79
|
+
<property name="width">1</property>
|
80
|
+
<property name="height">1</property>
|
85
81
|
</packing>
|
86
82
|
</child>
|
87
83
|
<child>
|
88
|
-
<object class="
|
84
|
+
<object class="GtkLabel" id="label2">
|
89
85
|
<property name="visible">True</property>
|
90
|
-
<property name="can_focus">
|
91
|
-
<property name="
|
92
|
-
<property name="
|
93
|
-
<property name="
|
94
|
-
<property name="
|
95
|
-
<property name="
|
96
|
-
<property name="secondary_icon_sensitive">True</property>
|
86
|
+
<property name="can_focus">False</property>
|
87
|
+
<property name="hexpand">True</property>
|
88
|
+
<property name="xalign">1</property>
|
89
|
+
<property name="label" translatable="yes">RDoc Command Line:</property>
|
90
|
+
<property name="justify">center</property>
|
91
|
+
<property name="ellipsize">middle</property>
|
97
92
|
</object>
|
98
93
|
<packing>
|
99
|
-
<property name="left_attach">
|
100
|
-
<property name="right_attach">2</property>
|
94
|
+
<property name="left_attach">0</property>
|
101
95
|
<property name="top_attach">1</property>
|
102
|
-
<property name="
|
96
|
+
<property name="width">1</property>
|
97
|
+
<property name="height">1</property>
|
103
98
|
</packing>
|
104
99
|
</child>
|
105
100
|
</object>
|
106
101
|
<packing>
|
107
|
-
<property name="expand">
|
102
|
+
<property name="expand">False</property>
|
108
103
|
<property name="fill">True</property>
|
109
104
|
<property name="position">1</property>
|
110
105
|
</packing>
|
111
106
|
</child>
|
112
107
|
<child>
|
113
|
-
<object class="
|
108
|
+
<object class="GtkButtonBox" id="buttonbox1">
|
114
109
|
<property name="visible">True</property>
|
115
110
|
<property name="can_focus">False</property>
|
116
|
-
<property name="
|
117
|
-
<property name="layout_style">center</property>
|
111
|
+
<property name="layout_style">spread</property>
|
118
112
|
<child>
|
119
113
|
<object class="GtkButton" id="buttonCancel">
|
120
114
|
<property name="label" translatable="yes">Cancel</property>
|
115
|
+
<property name="use_action_appearance">False</property>
|
121
116
|
<property name="visible">True</property>
|
122
117
|
<property name="can_focus">True</property>
|
123
118
|
<property name="receives_default">True</property>
|
124
|
-
<property name="use_action_appearance">False</property>
|
125
119
|
<property name="yalign">0.54000002145767212</property>
|
126
|
-
<signal name="clicked" handler="destroy_window" swapped="no"/>
|
127
120
|
</object>
|
128
121
|
<packing>
|
129
122
|
<property name="expand">False</property>
|
@@ -134,10 +127,10 @@
|
|
134
127
|
<child>
|
135
128
|
<object class="GtkButton" id="buttonSave">
|
136
129
|
<property name="label" translatable="yes">Save</property>
|
130
|
+
<property name="use_action_appearance">False</property>
|
137
131
|
<property name="visible">True</property>
|
138
132
|
<property name="can_focus">True</property>
|
139
133
|
<property name="receives_default">True</property>
|
140
|
-
<property name="use_action_appearance">False</property>
|
141
134
|
<signal name="clicked" handler="buttonSave_clicked" swapped="no"/>
|
142
135
|
</object>
|
143
136
|
<packing>
|
@@ -148,17 +141,15 @@
|
|
148
141
|
</child>
|
149
142
|
</object>
|
150
143
|
<packing>
|
151
|
-
<property name="expand">
|
144
|
+
<property name="expand">False</property>
|
152
145
|
<property name="fill">True</property>
|
153
|
-
<property name="padding">10</property>
|
154
146
|
<property name="position">2</property>
|
155
147
|
</packing>
|
156
148
|
</child>
|
157
149
|
</object>
|
158
150
|
<packing>
|
159
|
-
<property name="expand">
|
151
|
+
<property name="expand">False</property>
|
160
152
|
<property name="fill">True</property>
|
161
|
-
<property name="padding">10</property>
|
162
153
|
<property name="position">0</property>
|
163
154
|
</packing>
|
164
155
|
</child>
|