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.
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,138 +1,134 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Generated with glade 3.16.1 -->
2
3
  <interface>
3
- <requires lib="gtk+" version="2.16"/>
4
- <!-- interface-naming-policy project-wide -->
4
+ <requires lib="gtk+" version="3.0"/>
5
5
  <object class="GtkWindow" id="window1">
6
- <property name="visible">True</property>
6
+ <property name="width_request">400</property>
7
+ <property name="height_request">250</property>
7
8
  <property name="can_focus">False</property>
9
+ <property name="title" translatable="yes">New Project</property>
8
10
  <property name="modal">True</property>
9
- <property name="default_width">550</property>
10
- <property name="default_height">300</property>
11
- <signal name="destroy" handler="destroy_window" swapped="no"/>
11
+ <property name="window_position">center</property>
12
+ <property name="default_width">440</property>
13
+ <property name="default_height">250</property>
14
+ <property name="type_hint">dialog</property>
12
15
  <child>
13
- <object class="GtkHBox" id="hbox1">
16
+ <object class="GtkBox" id="box1">
14
17
  <property name="visible">True</property>
15
18
  <property name="can_focus">False</property>
19
+ <property name="margin_left">20</property>
20
+ <property name="margin_right">15</property>
21
+ <property name="margin_top">20</property>
22
+ <property name="margin_bottom">20</property>
23
+ <property name="orientation">vertical</property>
16
24
  <child>
17
- <object class="GtkVBox" id="vbox1">
25
+ <object class="GtkLabel" id="label1">
18
26
  <property name="visible">True</property>
19
27
  <property name="can_focus">False</property>
28
+ <property name="label" translatable="yes">&lt;big&gt;&lt;big&gt;Create New Project&lt;/big&gt;&lt;/big&gt;</property>
29
+ <property name="use_markup">True</property>
30
+ </object>
31
+ <packing>
32
+ <property name="expand">True</property>
33
+ <property name="fill">True</property>
34
+ <property name="position">0</property>
35
+ </packing>
36
+ </child>
37
+ <child>
38
+ <object class="GtkLabel" id="label2">
39
+ <property name="visible">True</property>
40
+ <property name="can_focus">False</property>
41
+ <property name="label" translatable="yes">Enter the name for your new project. A directory will be created under your /home/visualruby directory with that name. Use only letters and underscores.
42
+
43
+ You are free to move the project later.</property>
44
+ <property name="wrap">True</property>
45
+ <property name="width_chars">30</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
+ <child>
54
+ <object class="GtkBox" id="box3">
55
+ <property name="width_request">0</property>
56
+ <property name="height_request">0</property>
57
+ <property name="visible">True</property>
58
+ <property name="can_focus">False</property>
59
+ <property name="margin_top">10</property>
60
+ <property name="margin_bottom">10</property>
20
61
  <child>
21
- <object class="GtkLabel" id="label1">
62
+ <object class="GtkLabel" id="projects_home">
22
63
  <property name="visible">True</property>
23
64
  <property name="can_focus">False</property>
24
- <property name="label" translatable="yes">&lt;big&gt;&lt;big&gt;Create New Project&lt;/big&gt;&lt;/big&gt;</property>
25
- <property name="use_markup">True</property>
65
+ <property name="xalign">1</property>
66
+ <property name="label" translatable="yes">projects_home</property>
26
67
  </object>
27
68
  <packing>
28
- <property name="expand">True</property>
69
+ <property name="expand">False</property>
29
70
  <property name="fill">True</property>
30
71
  <property name="position">0</property>
31
72
  </packing>
32
73
  </child>
33
74
  <child>
34
- <object class="GtkLabel" id="label2">
75
+ <object class="GtkEntry" id="entryFolderName">
35
76
  <property name="visible">True</property>
36
- <property name="can_focus">False</property>
37
- <property name="label" translatable="yes">Enter the name for your new project. A directory will be created under your /home/visualruby directory with that name. Use only letters and underscores.
38
-
39
- You are free to move the project later.</property>
40
- <property name="wrap">True</property>
77
+ <property name="can_focus">True</property>
41
78
  </object>
42
79
  <packing>
43
- <property name="expand">True</property>
80
+ <property name="expand">False</property>
44
81
  <property name="fill">True</property>
45
82
  <property name="position">1</property>
46
83
  </packing>
47
84
  </child>
85
+ </object>
86
+ <packing>
87
+ <property name="expand">False</property>
88
+ <property name="fill">True</property>
89
+ <property name="position">2</property>
90
+ </packing>
91
+ </child>
92
+ <child>
93
+ <object class="GtkButtonBox" id="buttonbox1">
94
+ <property name="visible">True</property>
95
+ <property name="can_focus">False</property>
96
+ <property name="margin_top">10</property>
97
+ <property name="margin_bottom">10</property>
98
+ <property name="layout_style">spread</property>
48
99
  <child>
49
- <object class="GtkTable" id="table1">
100
+ <object class="GtkButton" id="buttonCreate">
101
+ <property name="label" translatable="yes">Create Project</property>
102
+ <property name="use_action_appearance">False</property>
50
103
  <property name="visible">True</property>
51
- <property name="can_focus">False</property>
52
- <property name="n_rows">2</property>
53
- <property name="n_columns">2</property>
54
- <child>
55
- <object class="GtkEntry" id="entryFolderName">
56
- <property name="visible">True</property>
57
- <property name="can_focus">True</property>
58
- <property name="invisible_char">•</property>
59
- <property name="invisible_char_set">True</property>
60
- <property name="primary_icon_activatable">False</property>
61
- <property name="secondary_icon_activatable">False</property>
62
- <property name="primary_icon_sensitive">True</property>
63
- <property name="secondary_icon_sensitive">True</property>
64
- </object>
65
- <packing>
66
- <property name="left_attach">1</property>
67
- <property name="right_attach">2</property>
68
- </packing>
69
- </child>
70
- <child>
71
- <object class="GtkLabel" id="labelHomePath">
72
- <property name="visible">True</property>
73
- <property name="can_focus">False</property>
74
- <property name="xalign">1</property>
75
- <property name="label" translatable="yes">/home/visualruby/</property>
76
- </object>
77
- </child>
78
- <child>
79
- <object class="GtkHButtonBox" id="hbuttonbox1">
80
- <property name="visible">True</property>
81
- <property name="can_focus">False</property>
82
- <property name="layout_style">spread</property>
83
- <child>
84
- <object class="GtkButton" id="buttonCreate">
85
- <property name="label" translatable="yes">Create Project</property>
86
- <property name="visible">True</property>
87
- <property name="can_focus">True</property>
88
- <property name="receives_default">True</property>
89
- <property name="use_action_appearance">False</property>
90
- </object>
91
- <packing>
92
- <property name="expand">False</property>
93
- <property name="fill">False</property>
94
- <property name="position">0</property>
95
- </packing>
96
- </child>
97
- <child>
98
- <object class="GtkButton" id="buttonCancel">
99
- <property name="label" translatable="yes">Cancel</property>
100
- <property name="visible">True</property>
101
- <property name="can_focus">True</property>
102
- <property name="receives_default">True</property>
103
- <property name="use_action_appearance">False</property>
104
- </object>
105
- <packing>
106
- <property name="expand">False</property>
107
- <property name="fill">False</property>
108
- <property name="position">1</property>
109
- </packing>
110
- </child>
111
- </object>
112
- <packing>
113
- <property name="left_attach">1</property>
114
- <property name="right_attach">2</property>
115
- <property name="top_attach">1</property>
116
- <property name="bottom_attach">2</property>
117
- </packing>
118
- </child>
119
- <child>
120
- <placeholder/>
121
- </child>
104
+ <property name="can_focus">True</property>
105
+ <property name="receives_default">True</property>
122
106
  </object>
123
107
  <packing>
124
- <property name="expand">True</property>
125
- <property name="fill">True</property>
126
- <property name="padding">12</property>
127
- <property name="position">2</property>
108
+ <property name="expand">False</property>
109
+ <property name="fill">False</property>
110
+ <property name="position">0</property>
111
+ </packing>
112
+ </child>
113
+ <child>
114
+ <object class="GtkButton" id="buttonCancel">
115
+ <property name="label" translatable="yes">Cancel</property>
116
+ <property name="use_action_appearance">False</property>
117
+ <property name="visible">True</property>
118
+ <property name="can_focus">True</property>
119
+ <property name="receives_default">True</property>
120
+ </object>
121
+ <packing>
122
+ <property name="expand">False</property>
123
+ <property name="fill">False</property>
124
+ <property name="position">1</property>
128
125
  </packing>
129
126
  </child>
130
127
  </object>
131
128
  <packing>
132
- <property name="expand">True</property>
129
+ <property name="expand">False</property>
133
130
  <property name="fill">True</property>
134
- <property name="padding">17</property>
135
- <property name="position">0</property>
131
+ <property name="position">3</property>
136
132
  </packing>
137
133
  </child>
138
134
  </object>
@@ -0,0 +1,259 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Generated with glade 3.16.1 -->
3
+ <interface>
4
+ <requires lib="gtk+" version="3.0"/>
5
+ <object class="GtkWindow" id="window1">
6
+ <property name="width_request">600</property>
7
+ <property name="height_request">500</property>
8
+ <property name="can_focus">False</property>
9
+ <property name="title" translatable="yes">Open Project</property>
10
+ <property name="modal">True</property>
11
+ <property name="window_position">center</property>
12
+ <property name="type_hint">dialog</property>
13
+ <child>
14
+ <object class="GtkBox" id="box1">
15
+ <property name="visible">True</property>
16
+ <property name="can_focus">False</property>
17
+ <property name="margin_left">20</property>
18
+ <property name="margin_right">20</property>
19
+ <property name="margin_top">20</property>
20
+ <property name="margin_bottom">20</property>
21
+ <property name="orientation">vertical</property>
22
+ <property name="spacing">15</property>
23
+ <child>
24
+ <object class="GtkLabel" id="label1">
25
+ <property name="visible">True</property>
26
+ <property name="can_focus">False</property>
27
+ <property name="label" translatable="yes">&lt;big&gt;Open Project&lt;/big&gt;</property>
28
+ <property name="use_markup">True</property>
29
+ </object>
30
+ <packing>
31
+ <property name="expand">False</property>
32
+ <property name="fill">True</property>
33
+ <property name="position">0</property>
34
+ </packing>
35
+ </child>
36
+ <child>
37
+ <object class="GtkFrame" id="frame1">
38
+ <property name="visible">True</property>
39
+ <property name="can_focus">False</property>
40
+ <property name="label_xalign">0</property>
41
+ <property name="shadow_type">in</property>
42
+ <child>
43
+ <object class="GtkAlignment" id="alignment1">
44
+ <property name="visible">True</property>
45
+ <property name="can_focus">False</property>
46
+ <property name="left_padding">12</property>
47
+ <child>
48
+ <object class="GtkBox" id="box4">
49
+ <property name="visible">True</property>
50
+ <property name="can_focus">False</property>
51
+ <child>
52
+ <object class="GtkLabel" id="projects_home">
53
+ <property name="visible">True</property>
54
+ <property name="can_focus">False</property>
55
+ <property name="label" translatable="yes">label</property>
56
+ <property name="ellipsize">end</property>
57
+ </object>
58
+ <packing>
59
+ <property name="expand">False</property>
60
+ <property name="fill">True</property>
61
+ <property name="position">0</property>
62
+ </packing>
63
+ </child>
64
+ <child>
65
+ <object class="GtkButtonBox" id="buttonbox1">
66
+ <property name="visible">True</property>
67
+ <property name="can_focus">False</property>
68
+ <property name="orientation">vertical</property>
69
+ <property name="layout_style">start</property>
70
+ <child>
71
+ <object class="GtkButton" id="buttonChange">
72
+ <property name="label" translatable="yes">Change</property>
73
+ <property name="visible">True</property>
74
+ <property name="can_focus">True</property>
75
+ <property name="receives_default">True</property>
76
+ <property name="margin_right">6</property>
77
+ <property name="margin_bottom">5</property>
78
+ </object>
79
+ <packing>
80
+ <property name="expand">False</property>
81
+ <property name="fill">True</property>
82
+ <property name="position">0</property>
83
+ </packing>
84
+ </child>
85
+ </object>
86
+ <packing>
87
+ <property name="expand">False</property>
88
+ <property name="fill">True</property>
89
+ <property name="pack_type">end</property>
90
+ <property name="position">1</property>
91
+ </packing>
92
+ </child>
93
+ </object>
94
+ </child>
95
+ </object>
96
+ </child>
97
+ <child type="label">
98
+ <object class="GtkLabel" id="label2">
99
+ <property name="visible">True</property>
100
+ <property name="can_focus">False</property>
101
+ <property name="label" translatable="yes">Home Folder</property>
102
+ </object>
103
+ </child>
104
+ </object>
105
+ <packing>
106
+ <property name="expand">False</property>
107
+ <property name="fill">True</property>
108
+ <property name="position">1</property>
109
+ </packing>
110
+ </child>
111
+ <child>
112
+ <object class="GtkBox" id="box2">
113
+ <property name="visible">True</property>
114
+ <property name="can_focus">False</property>
115
+ <property name="spacing">15</property>
116
+ <child>
117
+ <object class="GtkScrolledWindow" id="view">
118
+ <property name="visible">True</property>
119
+ <property name="can_focus">True</property>
120
+ <property name="shadow_type">in</property>
121
+ <child>
122
+ <placeholder/>
123
+ </child>
124
+ </object>
125
+ <packing>
126
+ <property name="expand">True</property>
127
+ <property name="fill">True</property>
128
+ <property name="position">0</property>
129
+ </packing>
130
+ </child>
131
+ <child>
132
+ <object class="GtkBox" id="box3">
133
+ <property name="visible">True</property>
134
+ <property name="can_focus">False</property>
135
+ <property name="orientation">vertical</property>
136
+ <property name="spacing">15</property>
137
+ <child>
138
+ <object class="GtkFrame" id="frame2">
139
+ <property name="visible">True</property>
140
+ <property name="can_focus">False</property>
141
+ <property name="label_xalign">0</property>
142
+ <property name="shadow_type">in</property>
143
+ <child>
144
+ <object class="GtkAlignment" id="alignment2">
145
+ <property name="visible">True</property>
146
+ <property name="can_focus">False</property>
147
+ <property name="left_padding">12</property>
148
+ <child>
149
+ <object class="GtkLabel" id="label4">
150
+ <property name="visible">True</property>
151
+ <property name="can_focus">False</property>
152
+ <property name="margin_top">5</property>
153
+ <property name="margin_bottom">10</property>
154
+ <property name="label" translatable="yes">Select a visualruby project. Some of the folders listed are not projects, they may just hold other visual ruby projects. The folders at the bottom of the tree are always project folders.</property>
155
+ <property name="wrap">True</property>
156
+ <property name="max_width_chars">27</property>
157
+ </object>
158
+ </child>
159
+ </object>
160
+ </child>
161
+ <child type="label">
162
+ <object class="GtkLabel" id="label3">
163
+ <property name="visible">True</property>
164
+ <property name="can_focus">False</property>
165
+ <property name="label" translatable="yes">Instructions</property>
166
+ </object>
167
+ </child>
168
+ </object>
169
+ <packing>
170
+ <property name="expand">False</property>
171
+ <property name="fill">True</property>
172
+ <property name="position">1</property>
173
+ </packing>
174
+ </child>
175
+ <child>
176
+ <object class="GtkButtonBox" id="buttonbox2">
177
+ <property name="visible">True</property>
178
+ <property name="can_focus">False</property>
179
+ <property name="orientation">vertical</property>
180
+ <property name="spacing">6</property>
181
+ <property name="layout_style">start</property>
182
+ <child>
183
+ <object class="GtkButton" id="buttonCancel">
184
+ <property name="label" translatable="yes">Cancel</property>
185
+ <property name="visible">True</property>
186
+ <property name="can_focus">True</property>
187
+ <property name="receives_default">True</property>
188
+ </object>
189
+ <packing>
190
+ <property name="expand">True</property>
191
+ <property name="fill">True</property>
192
+ <property name="position">0</property>
193
+ </packing>
194
+ </child>
195
+ <child>
196
+ <object class="GtkButton" id="buttonDelete">
197
+ <property name="label" translatable="yes">Delete Project</property>
198
+ <property name="visible">True</property>
199
+ <property name="can_focus">True</property>
200
+ <property name="receives_default">True</property>
201
+ </object>
202
+ <packing>
203
+ <property name="expand">True</property>
204
+ <property name="fill">True</property>
205
+ <property name="position">1</property>
206
+ </packing>
207
+ </child>
208
+ <child>
209
+ <object class="GtkButton" id="buttonNew">
210
+ <property name="label" translatable="yes">Create New Project</property>
211
+ <property name="visible">True</property>
212
+ <property name="can_focus">True</property>
213
+ <property name="receives_default">True</property>
214
+ </object>
215
+ <packing>
216
+ <property name="expand">True</property>
217
+ <property name="fill">True</property>
218
+ <property name="position">2</property>
219
+ </packing>
220
+ </child>
221
+ <child>
222
+ <object class="GtkButton" id="buttonOpen">
223
+ <property name="label" translatable="yes">Open Selected Project</property>
224
+ <property name="visible">True</property>
225
+ <property name="can_focus">True</property>
226
+ <property name="receives_default">True</property>
227
+ </object>
228
+ <packing>
229
+ <property name="expand">True</property>
230
+ <property name="fill">True</property>
231
+ <property name="position">3</property>
232
+ </packing>
233
+ </child>
234
+ </object>
235
+ <packing>
236
+ <property name="expand">False</property>
237
+ <property name="fill">True</property>
238
+ <property name="pack_type">end</property>
239
+ <property name="position">2</property>
240
+ </packing>
241
+ </child>
242
+ </object>
243
+ <packing>
244
+ <property name="expand">False</property>
245
+ <property name="fill">True</property>
246
+ <property name="position">1</property>
247
+ </packing>
248
+ </child>
249
+ </object>
250
+ <packing>
251
+ <property name="expand">True</property>
252
+ <property name="fill">True</property>
253
+ <property name="position">2</property>
254
+ </packing>
255
+ </child>
256
+ </object>
257
+ </child>
258
+ </object>
259
+ </interface>