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,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="2.16"/>
4
- <!-- interface-naming-policy project-wide -->
4
+ <requires lib="gtk+" version="3.0"/>
5
5
  <object class="GtkDialog" id="dialog1">
6
- <property name="border_width">5</property>
7
- <property name="type_hint">normal</property>
8
- <property name="has_separator">False</property>
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="GtkVBox" id="dialog-vbox1">
11
- <property name="visible">True</property>
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="GtkVBox" id="vbox2">
62
+ <object class="GtkBox" id="box1">
15
63
  <property name="visible">True</property>
16
- <property name="spacing">7</property>
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="GtkTable" id="table2">
81
+ <object class="GtkGrid" id="grid1">
28
82
  <property name="visible">True</property>
29
- <property name="n_rows">2</property>
30
- <property name="n_columns">2</property>
31
- <property name="column_spacing">10</property>
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="label4">
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="label5">
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="bottom_attach">2</property>
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="RubygemsAPI.username">
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">&#x25CF;</property>
56
125
  </object>
57
126
  <packing>
58
127
  <property name="left_attach">1</property>
59
- <property name="right_attach">2</property>
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="RubygemsAPI.password">
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">&#x25CF;</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="bottom_attach">2</property>
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">False</property>
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">False</property>
118
- <property name="padding">7</property>
119
- <property name="pack_type">end</property>
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>
@@ -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="2.16"/>
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-always</property>
17
- <property name="default_width">580</property>
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="GtkHBox" id="hbox1">
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="GtkVBox" id="vbox1">
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="GtkTable" id="table1">
40
+ <object class="GtkGrid" id="grid1">
44
41
  <property name="visible">True</property>
45
42
  <property name="can_focus">False</property>
46
- <property name="n_rows">2</property>
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="right_attach">2</property>
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="GtkLabel" id="label8">
72
+ <object class="GtkEntry" id="rdoc_command_line">
77
73
  <property name="visible">True</property>
78
- <property name="can_focus">False</property>
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="bottom_attach">2</property>
79
+ <property name="width">1</property>
80
+ <property name="height">1</property>
85
81
  </packing>
86
82
  </child>
87
83
  <child>
88
- <object class="GtkEntry" id="rdoc_command_line">
84
+ <object class="GtkLabel" id="label2">
89
85
  <property name="visible">True</property>
90
- <property name="can_focus">True</property>
91
- <property name="invisible_char">•</property>
92
- <property name="invisible_char_set">True</property>
93
- <property name="primary_icon_activatable">False</property>
94
- <property name="secondary_icon_activatable">False</property>
95
- <property name="primary_icon_sensitive">True</property>
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">1</property>
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="bottom_attach">2</property>
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">True</property>
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="GtkHButtonBox" id="hbuttonbox1">
108
+ <object class="GtkButtonBox" id="buttonbox1">
114
109
  <property name="visible">True</property>
115
110
  <property name="can_focus">False</property>
116
- <property name="spacing">51</property>
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">True</property>
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">True</property>
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>