visualruby 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/bin/editor/VR_Document.rb +219 -0
  3. data/bin/editor/VR_TabSearch.rb +50 -0
  4. data/bin/editor/VR_Tabs.rb +99 -0
  5. data/bin/editor/VR_TextShell.rb +83 -0
  6. data/bin/editor/VR_TextViewCommon.rb +65 -0
  7. data/bin/editor/glade/VR_Document.glade +160 -0
  8. data/bin/main/GemTree.rb +23 -0
  9. data/bin/main/NewProjectGUI.rb +28 -0
  10. data/bin/main/ProjectChooserGUI.rb +41 -0
  11. data/bin/main/ProjectChooserView.rb +39 -0
  12. data/bin/main/RubygemsAPI.rb +93 -0
  13. data/bin/main/Splash.rb +22 -0
  14. data/bin/main/VR_ENV.rb +61 -0
  15. data/bin/main/VR_ENV_GLOBAL.rb +64 -0
  16. data/bin/main/VR_File_Tree.rb +120 -0
  17. data/bin/main/VR_Local_Gem_Tree.rb +80 -0
  18. data/bin/main/VR_Main.rb +313 -0
  19. data/bin/main/VR_Remote_Gem_Tree.rb +70 -0
  20. data/bin/main/glade/NewProjectGUI.glade +141 -0
  21. data/bin/main/glade/ProjectChooserGUI.glade +140 -0
  22. data/bin/main/glade/RubygemsAPI.glade +130 -0
  23. data/bin/main/glade/Splash.glade +18 -0
  24. data/bin/main/glade/VR_ENV.glade +168 -0
  25. data/bin/main/glade/VR_ENV_GLOBAL.glade +268 -0
  26. data/bin/main/glade/VR_File_Tree.glade +65 -0
  27. data/bin/main/glade/VR_Local_Gem_Tree.glade +45 -0
  28. data/bin/main/glade/VR_Main.glade +707 -0
  29. data/bin/main/glade/VR_Remote_Gem_Tree.glade +76 -0
  30. data/bin/tools/VR_Tools.rb +120 -0
  31. data/img/close.png +0 -0
  32. data/img/folder.png +0 -0
  33. data/img/glade.png +0 -0
  34. data/img/gtk-edit.png +0 -0
  35. data/img/obj.png +0 -0
  36. data/img/png.png +0 -0
  37. data/img/rb.png +0 -0
  38. data/img/ruby.png +0 -0
  39. data/img/splash.png +0 -0
  40. data/img/unknown.png +0 -0
  41. data/skeleton/document/New.glade +13 -0
  42. data/skeleton/document/NewWindow.rb +15 -0
  43. data/skeleton/project/bin/MyClass.rb +15 -0
  44. data/skeleton/project/bin/glade/MyClass.glade +45 -0
  45. data/skeleton/project/main.rb +14 -0
  46. data/visualruby_examples/active_record/.vr_settings.yaml +47 -0
  47. data/visualruby_examples/active_record/active_record.rb +52 -0
  48. data/visualruby_examples/active_record/bin/ChoosePerson.rb +17 -0
  49. data/visualruby_examples/active_record/bin/Person.rb +13 -0
  50. data/visualruby_examples/active_record/bin/glade/ChoosePerson.glade +61 -0
  51. data/visualruby_examples/active_record/bin/glade/Person.glade +148 -0
  52. data/visualruby_examples/active_record/db/development.sqlite3 +0 -0
  53. data/visualruby_examples/active_record2/.vr_settings.yaml +48 -0
  54. data/visualruby_examples/active_record2/active_record2.rb +142 -0
  55. data/visualruby_examples/active_record2/bin/CompanyGUI.rb +54 -0
  56. data/visualruby_examples/active_record2/bin/Employee.rb +20 -0
  57. data/visualruby_examples/active_record2/bin/Employer.rb +11 -0
  58. data/visualruby_examples/active_record2/bin/Paycheck.rb +11 -0
  59. data/visualruby_examples/active_record2/bin/glade/CompanyGUI.glade +167 -0
  60. data/visualruby_examples/active_record2/bin/glade/Employee.glade +123 -0
  61. data/visualruby_examples/active_record2/bin/glade/Employer.glade +147 -0
  62. data/visualruby_examples/active_record2/bin/glade/Paycheck.glade +145 -0
  63. data/visualruby_examples/active_record2/db/development.sqlite3 +0 -0
  64. data/visualruby_examples/all_widgets/.vr_settings.yaml +20 -0
  65. data/visualruby_examples/all_widgets/all_widgets.rb +13 -0
  66. data/visualruby_examples/all_widgets/bin/AllWidgets.rb +43 -0
  67. data/visualruby_examples/all_widgets/bin/glade/AllWidgets.glade +166 -0
  68. data/visualruby_examples/all_widgets/bin/splash.png +0 -0
  69. data/visualruby_examples/calculator/.vr_settings.yaml +21 -0
  70. data/visualruby_examples/calculator/bin/Calculator.rb +63 -0
  71. data/visualruby_examples/calculator/bin/glade/Calculator.glade +243 -0
  72. data/visualruby_examples/calculator/main.rb +13 -0
  73. data/visualruby_examples/child_window/.vr_settings.yaml +46 -0
  74. data/visualruby_examples/child_window/bin/ChildWindowDemo.rb +41 -0
  75. data/visualruby_examples/child_window/bin/MyChildClass.rb +42 -0
  76. data/visualruby_examples/child_window/bin/glade/ChildWindowDemo.glade +101 -0
  77. data/visualruby_examples/child_window/bin/glade/MyChildClass.glade +58 -0
  78. data/visualruby_examples/child_window/main.rb +13 -0
  79. data/visualruby_examples/drag_drop/.vr_settings.yaml +19 -0
  80. data/visualruby_examples/drag_drop/bin/DragDropDemo.rb +45 -0
  81. data/visualruby_examples/drag_drop/bin/glade/DragDropDemo.glade +143 -0
  82. data/visualruby_examples/drag_drop/img/folder.png +0 -0
  83. data/visualruby_examples/drag_drop/img/glade.png +0 -0
  84. data/visualruby_examples/drag_drop/img/gtk-edit.png +0 -0
  85. data/visualruby_examples/drag_drop/img/obj.png +0 -0
  86. data/visualruby_examples/drag_drop/img/png.png +0 -0
  87. data/visualruby_examples/drag_drop/img/rb.png +0 -0
  88. data/visualruby_examples/drag_drop/img/ruby.png +0 -0
  89. data/visualruby_examples/drag_drop/img/unknown.png +0 -0
  90. data/visualruby_examples/drag_drop/main.rb +14 -0
  91. data/visualruby_examples/listview/.vr_settings.yaml +46 -0
  92. data/visualruby_examples/listview/bin/SongListView.rb +89 -0
  93. data/visualruby_examples/listview/bin/SongListViewGUI.rb +67 -0
  94. data/visualruby_examples/listview/bin/audio-x-generic.png +0 -0
  95. data/visualruby_examples/listview/bin/glade/SongListViewGUI.glade +220 -0
  96. data/visualruby_examples/listview/main.rb +19 -0
  97. data/visualruby_examples/listview_objects/.vr_settings.yaml +46 -0
  98. data/visualruby_examples/listview_objects/bin/DataObject.rb +32 -0
  99. data/visualruby_examples/listview_objects/bin/DataObjectGUI.rb +41 -0
  100. data/visualruby_examples/listview_objects/bin/ListViewObjects.rb +34 -0
  101. data/visualruby_examples/listview_objects/bin/ListViewObjectsGUI.rb +18 -0
  102. data/visualruby_examples/listview_objects/bin/glade/DataObject.glade +198 -0
  103. data/visualruby_examples/listview_objects/bin/glade/ListViewObjectsGUI.glade +102 -0
  104. data/visualruby_examples/listview_objects/main.rb +13 -0
  105. data/visualruby_examples/simple_ruby_gui/.vr_settings.yaml +45 -0
  106. data/visualruby_examples/simple_ruby_gui/bin/DataObjectGUI.rb +20 -0
  107. data/visualruby_examples/simple_ruby_gui/bin/glade/DataObjectGUI.glade +163 -0
  108. data/visualruby_examples/simple_ruby_gui/simple_ruby_gui +16 -0
  109. data/visualruby_examples/treeview/.vr_settings.yaml +18 -0
  110. data/visualruby_examples/treeview/bin/MyClass.rb +28 -0
  111. data/visualruby_examples/treeview/bin/glade/MyClass.glade +48 -0
  112. data/visualruby_examples/treeview/main.rb +14 -0
  113. data/vr +40 -0
  114. metadata +202 -0
@@ -0,0 +1,130 @@
1
+ <?xml version="1.0"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
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>
9
+ <child internal-child="vbox">
10
+ <object class="GtkVBox" id="dialog-vbox1">
11
+ <property name="visible">True</property>
12
+ <property name="spacing">2</property>
13
+ <child>
14
+ <object class="GtkVBox" id="vbox2">
15
+ <property name="visible">True</property>
16
+ <property name="spacing">7</property>
17
+ <child>
18
+ <object class="GtkLabel" id="label6">
19
+ <property name="visible">True</property>
20
+ <property name="label" translatable="yes">Enter your rubygems.org username and password</property>
21
+ </object>
22
+ <packing>
23
+ <property name="position">0</property>
24
+ </packing>
25
+ </child>
26
+ <child>
27
+ <object class="GtkTable" id="table2">
28
+ <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>
32
+ <property name="row_spacing">6</property>
33
+ <child>
34
+ <object class="GtkLabel" id="label4">
35
+ <property name="visible">True</property>
36
+ <property name="xalign">1</property>
37
+ <property name="label" translatable="yes">Username:</property>
38
+ </object>
39
+ </child>
40
+ <child>
41
+ <object class="GtkLabel" id="label5">
42
+ <property name="visible">True</property>
43
+ <property name="xalign">1</property>
44
+ <property name="label" translatable="yes">Password:</property>
45
+ </object>
46
+ <packing>
47
+ <property name="top_attach">1</property>
48
+ <property name="bottom_attach">2</property>
49
+ </packing>
50
+ </child>
51
+ <child>
52
+ <object class="GtkEntry" id="RubygemsAPI.username">
53
+ <property name="visible">True</property>
54
+ <property name="can_focus">True</property>
55
+ <property name="invisible_char">&#x25CF;</property>
56
+ </object>
57
+ <packing>
58
+ <property name="left_attach">1</property>
59
+ <property name="right_attach">2</property>
60
+ </packing>
61
+ </child>
62
+ <child>
63
+ <object class="GtkEntry" id="RubygemsAPI.password">
64
+ <property name="visible">True</property>
65
+ <property name="can_focus">True</property>
66
+ <property name="invisible_char">&#x25CF;</property>
67
+ </object>
68
+ <packing>
69
+ <property name="left_attach">1</property>
70
+ <property name="right_attach">2</property>
71
+ <property name="top_attach">1</property>
72
+ <property name="bottom_attach">2</property>
73
+ </packing>
74
+ </child>
75
+ </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
+ <packing>
97
+ <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>
112
+ <property name="position">1</property>
113
+ </packing>
114
+ </child>
115
+ </object>
116
+ <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>
121
+ </packing>
122
+ </child>
123
+ </object>
124
+ </child>
125
+ <action-widgets>
126
+ <action-widget response="0">buttonCancel</action-widget>
127
+ <action-widget response="1">buttonOk</action-widget>
128
+ </action-widgets>
129
+ </object>
130
+ </interface>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkWindow" id="window1">
6
+ <property name="visible">True</property>
7
+ <property name="type">popup</property>
8
+ <property name="modal">True</property>
9
+ <property name="window_position">center-always</property>
10
+ <signal name="destroy" handler="destroy_window"/>
11
+ <child>
12
+ <object class="GtkImage" id="image1">
13
+ <property name="visible">True</property>
14
+ <property name="stock">gtk-missing-image</property>
15
+ </object>
16
+ </child>
17
+ </object>
18
+ </interface>
@@ -0,0 +1,168 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <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>
11
+ <object class="GtkWindow" id="window1">
12
+ <property name="visible">True</property>
13
+ <property name="can_focus">False</property>
14
+ <property name="title" translatable="yes">Visual Ruby Settings</property>
15
+ <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"/>
20
+ <child>
21
+ <object class="GtkHBox" id="hbox1">
22
+ <property name="visible">True</property>
23
+ <property name="can_focus">False</property>
24
+ <child>
25
+ <object class="GtkVBox" id="vbox1">
26
+ <property name="visible">True</property>
27
+ <property name="can_focus">False</property>
28
+ <child>
29
+ <object class="GtkLabel" id="label1">
30
+ <property name="visible">True</property>
31
+ <property name="can_focus">False</property>
32
+ <property name="label" translatable="yes">&lt;big&gt;&lt;big&gt;&lt;b&gt;Project Settings&lt;/b&gt;&lt;/big&gt;&lt;/big&gt;</property>
33
+ <property name="use_markup">True</property>
34
+ </object>
35
+ <packing>
36
+ <property name="expand">True</property>
37
+ <property name="fill">True</property>
38
+ <property name="padding">10</property>
39
+ <property name="position">0</property>
40
+ </packing>
41
+ </child>
42
+ <child>
43
+ <object class="GtkTable" id="table1">
44
+ <property name="visible">True</property>
45
+ <property name="can_focus">False</property>
46
+ <property name="n_rows">2</property>
47
+ <property name="n_columns">2</property>
48
+ <property name="column_spacing">5</property>
49
+ <property name="row_spacing">5</property>
50
+ <property name="homogeneous">True</property>
51
+ <child>
52
+ <object class="GtkLabel" id="label6">
53
+ <property name="visible">True</property>
54
+ <property name="can_focus">False</property>
55
+ <property name="xalign">1</property>
56
+ <property name="label" translatable="yes">Command Line when "Run" is pressed:</property>
57
+ </object>
58
+ </child>
59
+ <child>
60
+ <object class="GtkEntry" id="run_command_line">
61
+ <property name="visible">True</property>
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
+ </object>
70
+ <packing>
71
+ <property name="left_attach">1</property>
72
+ <property name="right_attach">2</property>
73
+ </packing>
74
+ </child>
75
+ <child>
76
+ <object class="GtkLabel" id="label8">
77
+ <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>
81
+ </object>
82
+ <packing>
83
+ <property name="top_attach">1</property>
84
+ <property name="bottom_attach">2</property>
85
+ </packing>
86
+ </child>
87
+ <child>
88
+ <object class="GtkEntry" id="rdoc_command_line">
89
+ <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>
97
+ </object>
98
+ <packing>
99
+ <property name="left_attach">1</property>
100
+ <property name="right_attach">2</property>
101
+ <property name="top_attach">1</property>
102
+ <property name="bottom_attach">2</property>
103
+ </packing>
104
+ </child>
105
+ </object>
106
+ <packing>
107
+ <property name="expand">True</property>
108
+ <property name="fill">True</property>
109
+ <property name="position">1</property>
110
+ </packing>
111
+ </child>
112
+ <child>
113
+ <object class="GtkHButtonBox" id="hbuttonbox1">
114
+ <property name="visible">True</property>
115
+ <property name="can_focus">False</property>
116
+ <property name="spacing">51</property>
117
+ <property name="layout_style">center</property>
118
+ <child>
119
+ <object class="GtkButton" id="buttonCancel">
120
+ <property name="label" translatable="yes">Cancel</property>
121
+ <property name="visible">True</property>
122
+ <property name="can_focus">True</property>
123
+ <property name="receives_default">True</property>
124
+ <property name="use_action_appearance">False</property>
125
+ <property name="yalign">0.54000002145767212</property>
126
+ <signal name="clicked" handler="destroy_window" swapped="no"/>
127
+ </object>
128
+ <packing>
129
+ <property name="expand">False</property>
130
+ <property name="fill">False</property>
131
+ <property name="position">0</property>
132
+ </packing>
133
+ </child>
134
+ <child>
135
+ <object class="GtkButton" id="buttonSave">
136
+ <property name="label" translatable="yes">Save</property>
137
+ <property name="visible">True</property>
138
+ <property name="can_focus">True</property>
139
+ <property name="receives_default">True</property>
140
+ <property name="use_action_appearance">False</property>
141
+ <signal name="clicked" handler="buttonSave_clicked" swapped="no"/>
142
+ </object>
143
+ <packing>
144
+ <property name="expand">False</property>
145
+ <property name="fill">False</property>
146
+ <property name="position">1</property>
147
+ </packing>
148
+ </child>
149
+ </object>
150
+ <packing>
151
+ <property name="expand">True</property>
152
+ <property name="fill">True</property>
153
+ <property name="padding">10</property>
154
+ <property name="position">2</property>
155
+ </packing>
156
+ </child>
157
+ </object>
158
+ <packing>
159
+ <property name="expand">True</property>
160
+ <property name="fill">True</property>
161
+ <property name="padding">10</property>
162
+ <property name="position">0</property>
163
+ </packing>
164
+ </child>
165
+ </object>
166
+ </child>
167
+ </object>
168
+ </interface>
@@ -0,0 +1,268 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <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>
11
+ <object class="GtkWindow" id="window1">
12
+ <property name="visible">True</property>
13
+ <property name="can_focus">False</property>
14
+ <property name="title" translatable="yes">Visual Ruby Settings</property>
15
+ <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"/>
20
+ <child>
21
+ <object class="GtkHBox" id="hbox1">
22
+ <property name="visible">True</property>
23
+ <property name="can_focus">False</property>
24
+ <child>
25
+ <object class="GtkVBox" id="vbox1">
26
+ <property name="visible">True</property>
27
+ <property name="can_focus">False</property>
28
+ <child>
29
+ <object class="GtkLabel" id="label1">
30
+ <property name="visible">True</property>
31
+ <property name="can_focus">False</property>
32
+ <property name="label" translatable="yes">&lt;big&gt;&lt;big&gt;&lt;b&gt;Visual Ruby Settings&lt;/b&gt;&lt;/big&gt;&lt;/big&gt;</property>
33
+ <property name="use_markup">True</property>
34
+ </object>
35
+ <packing>
36
+ <property name="expand">True</property>
37
+ <property name="fill">True</property>
38
+ <property name="padding">10</property>
39
+ <property name="position">0</property>
40
+ </packing>
41
+ </child>
42
+ <child>
43
+ <object class="GtkTable" id="table1">
44
+ <property name="visible">True</property>
45
+ <property name="can_focus">False</property>
46
+ <property name="n_rows">4</property>
47
+ <property name="n_columns">2</property>
48
+ <property name="column_spacing">5</property>
49
+ <property name="row_spacing">9</property>
50
+ <property name="homogeneous">True</property>
51
+ <child>
52
+ <object class="GtkLabel" id="label7">
53
+ <property name="visible">True</property>
54
+ <property name="can_focus">False</property>
55
+ <property name="xalign">1</property>
56
+ <property name="label" translatable="yes">Editor Font:</property>
57
+ </object>
58
+ </child>
59
+ <child>
60
+ <object class="GtkFontButton" id="font_name">
61
+ <property name="visible">True</property>
62
+ <property name="can_focus">True</property>
63
+ <property name="receives_default">True</property>
64
+ <property name="use_action_appearance">False</property>
65
+ </object>
66
+ <packing>
67
+ <property name="left_attach">1</property>
68
+ <property name="right_attach">2</property>
69
+ </packing>
70
+ </child>
71
+ <child>
72
+ <object class="GtkLabel" id="label4">
73
+ <property name="visible">True</property>
74
+ <property name="can_focus">False</property>
75
+ <property name="xalign">1</property>
76
+ <property name="label" translatable="yes">Spaces for Each Tab in Editor:</property>
77
+ </object>
78
+ <packing>
79
+ <property name="top_attach">1</property>
80
+ <property name="bottom_attach">2</property>
81
+ </packing>
82
+ </child>
83
+ <child>
84
+ <object class="GtkEntry" id="tab_spaces">
85
+ <property name="visible">True</property>
86
+ <property name="can_focus">True</property>
87
+ <property name="invisible_char">●</property>
88
+ <property name="invisible_char_set">True</property>
89
+ <property name="primary_icon_activatable">False</property>
90
+ <property name="secondary_icon_activatable">False</property>
91
+ <property name="primary_icon_sensitive">True</property>
92
+ <property name="secondary_icon_sensitive">True</property>
93
+ </object>
94
+ <packing>
95
+ <property name="left_attach">1</property>
96
+ <property name="right_attach">2</property>
97
+ <property name="top_attach">1</property>
98
+ <property name="bottom_attach">2</property>
99
+ </packing>
100
+ </child>
101
+ <child>
102
+ <object class="GtkLabel" id="label5">
103
+ <property name="visible">True</property>
104
+ <property name="can_focus">False</property>
105
+ <property name="xalign">1</property>
106
+ <property name="label" translatable="yes">Glade Command Line:</property>
107
+ </object>
108
+ <packing>
109
+ <property name="top_attach">2</property>
110
+ <property name="bottom_attach">3</property>
111
+ </packing>
112
+ </child>
113
+ <child>
114
+ <object class="GtkHBox" id="hbox3">
115
+ <property name="visible">True</property>
116
+ <property name="can_focus">False</property>
117
+ <child>
118
+ <object class="GtkHBox" id="hboxGlade">
119
+ <property name="visible">True</property>
120
+ <property name="can_focus">False</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="GtkButton" id="buttonTryGlade">
133
+ <property name="label" translatable="yes">Try</property>
134
+ <property name="visible">True</property>
135
+ <property name="can_focus">True</property>
136
+ <property name="receives_default">True</property>
137
+ <property name="use_action_appearance">False</property>
138
+ </object>
139
+ <packing>
140
+ <property name="expand">True</property>
141
+ <property name="fill">True</property>
142
+ <property name="position">1</property>
143
+ </packing>
144
+ </child>
145
+ </object>
146
+ <packing>
147
+ <property name="left_attach">1</property>
148
+ <property name="right_attach">2</property>
149
+ <property name="top_attach">2</property>
150
+ <property name="bottom_attach">3</property>
151
+ </packing>
152
+ </child>
153
+ <child>
154
+ <object class="GtkLabel" id="label2">
155
+ <property name="visible">True</property>
156
+ <property name="can_focus">False</property>
157
+ <property name="xalign">1</property>
158
+ <property name="label" translatable="yes">Browser Command Line:</property>
159
+ </object>
160
+ <packing>
161
+ <property name="top_attach">3</property>
162
+ <property name="bottom_attach">4</property>
163
+ </packing>
164
+ </child>
165
+ <child>
166
+ <object class="GtkHBox" id="hbox4">
167
+ <property name="visible">True</property>
168
+ <property name="can_focus">False</property>
169
+ <child>
170
+ <object class="GtkHBox" id="hboxBrowser">
171
+ <property name="visible">True</property>
172
+ <property name="can_focus">False</property>
173
+ <child>
174
+ <placeholder/>
175
+ </child>
176
+ </object>
177
+ <packing>
178
+ <property name="expand">True</property>
179
+ <property name="fill">True</property>
180
+ <property name="position">0</property>
181
+ </packing>
182
+ </child>
183
+ <child>
184
+ <object class="GtkButton" id="buttonTryBrowser">
185
+ <property name="label" translatable="yes">Try</property>
186
+ <property name="visible">True</property>
187
+ <property name="can_focus">True</property>
188
+ <property name="receives_default">True</property>
189
+ <property name="use_action_appearance">False</property>
190
+ </object>
191
+ <packing>
192
+ <property name="expand">True</property>
193
+ <property name="fill">True</property>
194
+ <property name="position">1</property>
195
+ </packing>
196
+ </child>
197
+ </object>
198
+ <packing>
199
+ <property name="left_attach">1</property>
200
+ <property name="right_attach">2</property>
201
+ <property name="top_attach">3</property>
202
+ <property name="bottom_attach">4</property>
203
+ </packing>
204
+ </child>
205
+ </object>
206
+ <packing>
207
+ <property name="expand">True</property>
208
+ <property name="fill">True</property>
209
+ <property name="position">1</property>
210
+ </packing>
211
+ </child>
212
+ <child>
213
+ <object class="GtkHButtonBox" id="hbuttonbox1">
214
+ <property name="visible">True</property>
215
+ <property name="can_focus">False</property>
216
+ <property name="spacing">51</property>
217
+ <property name="layout_style">center</property>
218
+ <child>
219
+ <object class="GtkButton" id="buttonCancel">
220
+ <property name="label" translatable="yes">Cancel</property>
221
+ <property name="visible">True</property>
222
+ <property name="can_focus">True</property>
223
+ <property name="receives_default">True</property>
224
+ <property name="use_action_appearance">False</property>
225
+ <property name="yalign">0.54000002145767212</property>
226
+ <signal name="clicked" handler="destroy_window" swapped="no"/>
227
+ </object>
228
+ <packing>
229
+ <property name="expand">False</property>
230
+ <property name="fill">False</property>
231
+ <property name="position">0</property>
232
+ </packing>
233
+ </child>
234
+ <child>
235
+ <object class="GtkButton" id="buttonSave">
236
+ <property name="label" translatable="yes">Save</property>
237
+ <property name="visible">True</property>
238
+ <property name="can_focus">True</property>
239
+ <property name="receives_default">True</property>
240
+ <property name="use_action_appearance">False</property>
241
+ <signal name="clicked" handler="buttonSave_clicked" swapped="no"/>
242
+ </object>
243
+ <packing>
244
+ <property name="expand">False</property>
245
+ <property name="fill">False</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="padding">10</property>
254
+ <property name="position">2</property>
255
+ </packing>
256
+ </child>
257
+ </object>
258
+ <packing>
259
+ <property name="expand">True</property>
260
+ <property name="fill">True</property>
261
+ <property name="padding">10</property>
262
+ <property name="position">0</property>
263
+ </packing>
264
+ </child>
265
+ </object>
266
+ </child>
267
+ </object>
268
+ </interface>
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkMenu" id="popFile">
6
+ <property name="visible">True</property>
7
+ <child>
8
+ <object class="GtkMenuItem" id="popGlade">
9
+ <property name="visible">True</property>
10
+ <property name="tooltip_text" translatable="yes">Edits the graphical interface for this class.</property>
11
+ <property name="label" translatable="yes">Edit Glade FIle</property>
12
+ <property name="use_underline">True</property>
13
+ <signal name="activate" handler="popGlade_clicked"/>
14
+ </object>
15
+ </child>
16
+ </object>
17
+ <object class="GtkMenu" id="popGemspec">
18
+ <property name="visible">True</property>
19
+ <child>
20
+ <object class="GtkMenuItem" id="popBuildGem">
21
+ <property name="visible">True</property>
22
+ <property name="tooltip_text" translatable="yes">This will build a Rubygem from the Selected .gemspec file.
23
+ </property>
24
+ <property name="label" translatable="yes">Build Gem</property>
25
+ <property name="use_underline">True</property>
26
+ <signal name="activate" handler="popBuildGem_clicked"/>
27
+ </object>
28
+ </child>
29
+ </object>
30
+ <object class="GtkMenu" id="popGemFile">
31
+ <property name="visible">True</property>
32
+ <child>
33
+ <object class="GtkMenuItem" id="popInstallGem">
34
+ <property name="visible">True</property>
35
+ <property name="tooltip_text" translatable="yes">This will install the selected .gem file onto your machine.
36
+ </property>
37
+ <property name="label" translatable="yes">Install Gem</property>
38
+ <property name="use_underline">True</property>
39
+ <signal name="activate" handler="popInstallGem_clicked"/>
40
+ </object>
41
+ </child>
42
+ <child>
43
+ <object class="GtkMenuItem" id="popPushGem">
44
+ <property name="visible">True</property>
45
+ <property name="tooltip_text" translatable="yes">This will push the gem to the rubygems.org server. You must have an account with rubygems.org.
46
+ </property>
47
+ <property name="label" translatable="yes">Push Gem to rubygems.org</property>
48
+ <property name="use_underline">True</property>
49
+ <signal name="activate" handler="menuPushGem_clicked"/>
50
+ </object>
51
+ </child>
52
+ </object>
53
+ <object class="GtkMenu" id="popFolder">
54
+ <property name="visible">True</property>
55
+ <child>
56
+ <object class="GtkMenuItem" id="menuRDoc">
57
+ <property name="visible">True</property>
58
+ <property name="tooltip_text" translatable="yes">Will create a doc subfolder with all the documentation for this project in it.</property>
59
+ <property name="label" translatable="yes">Create RDocs in this Folder</property>
60
+ <property name="use_underline">True</property>
61
+ <signal name="activate" handler="menuRDoc_clicked"/>
62
+ </object>
63
+ </child>
64
+ </object>
65
+ </interface>