wxruby 1.9.6-x86-mingw32

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 (236) hide show
  1. data/LICENSE +53 -0
  2. data/README +297 -0
  3. data/lib/wx/accessors.rb +52 -0
  4. data/lib/wx/classes/acceleratortable.rb +28 -0
  5. data/lib/wx/classes/animation.rb +18 -0
  6. data/lib/wx/classes/app.rb +45 -0
  7. data/lib/wx/classes/artprovider.rb +31 -0
  8. data/lib/wx/classes/bitmap.rb +28 -0
  9. data/lib/wx/classes/busycursor.rb +12 -0
  10. data/lib/wx/classes/checklistbox.rb +45 -0
  11. data/lib/wx/classes/choice.rb +4 -0
  12. data/lib/wx/classes/clientdc.rb +13 -0
  13. data/lib/wx/classes/clipboard.rb +16 -0
  14. data/lib/wx/classes/colour.rb +47 -0
  15. data/lib/wx/classes/combobox.rb +4 -0
  16. data/lib/wx/classes/commandevent.rb +7 -0
  17. data/lib/wx/classes/controlwithitems.rb +10 -0
  18. data/lib/wx/classes/dc.rb +57 -0
  19. data/lib/wx/classes/event.rb +5 -0
  20. data/lib/wx/classes/evthandler.rb +921 -0
  21. data/lib/wx/classes/font.rb +118 -0
  22. data/lib/wx/classes/functions.rb +44 -0
  23. data/lib/wx/classes/gauge.rb +12 -0
  24. data/lib/wx/classes/grid.rb +138 -0
  25. data/lib/wx/classes/helpcontroller.rb +5 -0
  26. data/lib/wx/classes/htmlhelpcontroller.rb +5 -0
  27. data/lib/wx/classes/htmlwindow.rb +14 -0
  28. data/lib/wx/classes/icon.rb +21 -0
  29. data/lib/wx/classes/iconbundle.rb +3 -0
  30. data/lib/wx/classes/image.rb +31 -0
  31. data/lib/wx/classes/imagelist.rb +3 -0
  32. data/lib/wx/classes/listbox.rb +4 -0
  33. data/lib/wx/classes/listctrl.rb +21 -0
  34. data/lib/wx/classes/locale.rb +28 -0
  35. data/lib/wx/classes/mediactrl.rb +22 -0
  36. data/lib/wx/classes/menu.rb +62 -0
  37. data/lib/wx/classes/menuitem.rb +7 -0
  38. data/lib/wx/classes/object.rb +7 -0
  39. data/lib/wx/classes/paintdc.rb +12 -0
  40. data/lib/wx/classes/point.rb +48 -0
  41. data/lib/wx/classes/previewframe.rb +13 -0
  42. data/lib/wx/classes/rect.rb +10 -0
  43. data/lib/wx/classes/size.rb +49 -0
  44. data/lib/wx/classes/sound.rb +23 -0
  45. data/lib/wx/classes/styledtextctrl.rb +92 -0
  46. data/lib/wx/classes/textctrl.rb +14 -0
  47. data/lib/wx/classes/texturlevent.rb +6 -0
  48. data/lib/wx/classes/timer.rb +94 -0
  49. data/lib/wx/classes/toolbartool.rb +4 -0
  50. data/lib/wx/classes/treectrl.rb +44 -0
  51. data/lib/wx/classes/window.rb +82 -0
  52. data/lib/wx/classes/xmlresource.rb +37 -0
  53. data/lib/wx/keyword_ctors.rb +222 -0
  54. data/lib/wx/keyword_defs.rb +492 -0
  55. data/lib/wx/version.rb +3 -0
  56. data/lib/wx.rb +42 -0
  57. data/lib/wxruby2.so +0 -0
  58. data/samples/SAMPLES-LICENSE.TXT +18 -0
  59. data/samples/aui/aui.rb +1356 -0
  60. data/samples/bigdemo/About.rbw +39 -0
  61. data/samples/bigdemo/ColorPanel.rbw +23 -0
  62. data/samples/bigdemo/GridSimple.rbw +78 -0
  63. data/samples/bigdemo/MDIDemo.rbw +57 -0
  64. data/samples/bigdemo/PopupMenu.rbw +149 -0
  65. data/samples/bigdemo/ShapedWindow.rbw +131 -0
  66. data/samples/bigdemo/Sizers.rbw +543 -0
  67. data/samples/bigdemo/bigdemo.rb +823 -0
  68. data/samples/bigdemo/demoTemplate.rbw +33 -0
  69. data/samples/bigdemo/helpfile.htb +0 -0
  70. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  71. data/samples/bigdemo/icons/Test 015.png +0 -0
  72. data/samples/bigdemo/icons/choice.bmp +0 -0
  73. data/samples/bigdemo/icons/choice.xpm +27 -0
  74. data/samples/bigdemo/icons/combo.bmp +0 -0
  75. data/samples/bigdemo/icons/combo.xpm +27 -0
  76. data/samples/bigdemo/icons/copy.xpm +25 -0
  77. data/samples/bigdemo/icons/cut.xpm +24 -0
  78. data/samples/bigdemo/icons/gauge.bmp +0 -0
  79. data/samples/bigdemo/icons/gauge.xpm +27 -0
  80. data/samples/bigdemo/icons/help.xpm +25 -0
  81. data/samples/bigdemo/icons/list.bmp +0 -0
  82. data/samples/bigdemo/icons/list.xpm +27 -0
  83. data/samples/bigdemo/icons/mondrian.ico +0 -0
  84. data/samples/bigdemo/icons/mondrian.xpm +44 -0
  85. data/samples/bigdemo/icons/new.xpm +24 -0
  86. data/samples/bigdemo/icons/ogl.ico +0 -0
  87. data/samples/bigdemo/icons/ogl.xpm +45 -0
  88. data/samples/bigdemo/icons/open.xpm +26 -0
  89. data/samples/bigdemo/icons/paste.bmp +0 -0
  90. data/samples/bigdemo/icons/paste.xpm +38 -0
  91. data/samples/bigdemo/icons/pointy.png +0 -0
  92. data/samples/bigdemo/icons/preview.xpm +26 -0
  93. data/samples/bigdemo/icons/print.xpm +26 -0
  94. data/samples/bigdemo/icons/radio.bmp +0 -0
  95. data/samples/bigdemo/icons/radio.xpm +27 -0
  96. data/samples/bigdemo/icons/robert.xpm +415 -0
  97. data/samples/bigdemo/icons/ruby.png +0 -0
  98. data/samples/bigdemo/icons/sashtest.ico +0 -0
  99. data/samples/bigdemo/icons/save.xpm +25 -0
  100. data/samples/bigdemo/icons/smiles.bmp +0 -0
  101. data/samples/bigdemo/icons/smiles.xpm +39 -0
  102. data/samples/bigdemo/icons/smiley.ico +0 -0
  103. data/samples/bigdemo/icons/smiley.xpm +42 -0
  104. data/samples/bigdemo/icons/stattext.xpm +24 -0
  105. data/samples/bigdemo/icons/test2.bmp +0 -0
  106. data/samples/bigdemo/icons/test2.png +0 -0
  107. data/samples/bigdemo/icons/test2.xpm +79 -0
  108. data/samples/bigdemo/icons/text.bmp +0 -0
  109. data/samples/bigdemo/icons/text.xpm +27 -0
  110. data/samples/bigdemo/icons/tog1.bmp +0 -0
  111. data/samples/bigdemo/icons/tog1.xpm +38 -0
  112. data/samples/bigdemo/icons/tog2.bmp +0 -0
  113. data/samples/bigdemo/icons/tog2.xpm +38 -0
  114. data/samples/bigdemo/icons/wxwin.ico +0 -0
  115. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  116. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
  117. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  118. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  119. data/samples/bigdemo/run.rb +90 -0
  120. data/samples/bigdemo/tips.txt +7 -0
  121. data/samples/bigdemo/utils.rb +12 -0
  122. data/samples/bigdemo/wxArtProvider.rbw +281 -0
  123. data/samples/bigdemo/wxBitmapButton.rbw +65 -0
  124. data/samples/bigdemo/wxButton.rbw +64 -0
  125. data/samples/bigdemo/wxCalendarCtrl.rbw +60 -0
  126. data/samples/bigdemo/wxCheckBox.rbw +50 -0
  127. data/samples/bigdemo/wxCheckListBox.rbw +75 -0
  128. data/samples/bigdemo/wxChoice.rbw +47 -0
  129. data/samples/bigdemo/wxChoicebook.rbw +78 -0
  130. data/samples/bigdemo/wxColourDialog.rbw +31 -0
  131. data/samples/bigdemo/wxComboBox.rbw +77 -0
  132. data/samples/bigdemo/wxCursor.rbw +136 -0
  133. data/samples/bigdemo/wxDialog.rbw +74 -0
  134. data/samples/bigdemo/wxDirDialog.rbw +29 -0
  135. data/samples/bigdemo/wxDragImage.rbw +70 -0
  136. data/samples/bigdemo/wxFileDialog.rbw +37 -0
  137. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
  138. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
  139. data/samples/bigdemo/wxFontDialog.rbw +173 -0
  140. data/samples/bigdemo/wxFrame.rbw +53 -0
  141. data/samples/bigdemo/wxGauge.rbw +71 -0
  142. data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
  143. data/samples/bigdemo/wxGrid.rbw +66 -0
  144. data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
  145. data/samples/bigdemo/wxListBox.rbw +140 -0
  146. data/samples/bigdemo/wxListCtrl_virtual.rbw +107 -0
  147. data/samples/bigdemo/wxMDIWindows.rbw +50 -0
  148. data/samples/bigdemo/wxMenu.rbw +236 -0
  149. data/samples/bigdemo/wxMessageDialog.rbw +27 -0
  150. data/samples/bigdemo/wxMiniFrame.rbw +70 -0
  151. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +32 -0
  152. data/samples/bigdemo/wxNotebook.rbw +136 -0
  153. data/samples/bigdemo/wxProgressDialog.rbw +43 -0
  154. data/samples/bigdemo/wxRadioBox.rbw +72 -0
  155. data/samples/bigdemo/wxRadioButton.rbw +125 -0
  156. data/samples/bigdemo/wxSashWindow.rbw +141 -0
  157. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
  158. data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
  159. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
  160. data/samples/bigdemo/wxSlider.rbw +42 -0
  161. data/samples/bigdemo/wxSpinButton.rbw +50 -0
  162. data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
  163. data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
  164. data/samples/bigdemo/wxStaticBitmap.rbw +51 -0
  165. data/samples/bigdemo/wxStaticText.rbw +55 -0
  166. data/samples/bigdemo/wxStatusBar.rbw +126 -0
  167. data/samples/bigdemo/wxTextCtrl.rbw +149 -0
  168. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
  169. data/samples/bigdemo/wxToggleButton.rbw +49 -0
  170. data/samples/bigdemo/wxToolBar.rbw +131 -0
  171. data/samples/bigdemo/wxTreeCtrl.rbw +190 -0
  172. data/samples/calendar/calendar.rb +271 -0
  173. data/samples/caret/caret.rb +282 -0
  174. data/samples/caret/mondrian.xpm +44 -0
  175. data/samples/controls/controls.rb +1136 -0
  176. data/samples/controls/get_item_sample.rb +87 -0
  177. data/samples/controls/icons/choice.xpm +27 -0
  178. data/samples/controls/icons/combo.xpm +27 -0
  179. data/samples/controls/icons/gauge.xpm +27 -0
  180. data/samples/controls/icons/list.xpm +27 -0
  181. data/samples/controls/icons/radio.xpm +27 -0
  182. data/samples/controls/icons/stattext.xpm +24 -0
  183. data/samples/controls/icons/text.xpm +27 -0
  184. data/samples/controls/mondrian.ico +0 -0
  185. data/samples/controls/mondrian.xpm +44 -0
  186. data/samples/controls/test2.bmp +0 -0
  187. data/samples/dialogs/dialogs.rb +723 -0
  188. data/samples/dialogs/tips.txt +18 -0
  189. data/samples/drawing/graphics_drawing.rb +235 -0
  190. data/samples/drawing/images.rb +37 -0
  191. data/samples/drawing/paperclip.png +0 -0
  192. data/samples/etc/activation.rb +102 -0
  193. data/samples/etc/choice.rb +67 -0
  194. data/samples/etc/miniframe.rb +79 -0
  195. data/samples/etc/sash.rb +130 -0
  196. data/samples/etc/scrollwin.rb +110 -0
  197. data/samples/etc/system_settings.rb +252 -0
  198. data/samples/etc/threaded.rb +72 -0
  199. data/samples/etc/wizard.rb +74 -0
  200. data/samples/event/event.rb +182 -0
  201. data/samples/grid/grid.rb +198 -0
  202. data/samples/grid/gridtablebase.rb +134 -0
  203. data/samples/html/html.rb +262 -0
  204. data/samples/listbook/listbook.rb +174 -0
  205. data/samples/listbook/listbook.xrc +370 -0
  206. data/samples/mdi/mdi.rb +82 -0
  207. data/samples/media/mediactrl.rb +167 -0
  208. data/samples/minimal/minimal.rb +77 -0
  209. data/samples/minimal/mondrian.ico +0 -0
  210. data/samples/minimal/mondrian.png +0 -0
  211. data/samples/minimal/nothing.rb +16 -0
  212. data/samples/opengl/cube.rb +117 -0
  213. data/samples/printing/mondrian.ico +0 -0
  214. data/samples/printing/mondrian.xpm +44 -0
  215. data/samples/printing/printing.rb +310 -0
  216. data/samples/sockets/SocketPackets.rb +27 -0
  217. data/samples/sockets/res/message-new.png +0 -0
  218. data/samples/sockets/res/user.png +0 -0
  219. data/samples/sockets/wxClient.rb +395 -0
  220. data/samples/sockets/wxServer.rb +422 -0
  221. data/samples/sockets/wxSocketGUI.rb +97 -0
  222. data/samples/text/mondrian.ico +0 -0
  223. data/samples/text/mondrian.xpm +44 -0
  224. data/samples/text/scintilla.rb +169 -0
  225. data/samples/text/textctrl.rb +113 -0
  226. data/samples/text/unicode.rb +242 -0
  227. data/samples/text/utf8.txt +15 -0
  228. data/samples/treectrl/icon1.xpm +79 -0
  229. data/samples/treectrl/icon2.xpm +53 -0
  230. data/samples/treectrl/icon3.xpm +79 -0
  231. data/samples/treectrl/icon4.xpm +43 -0
  232. data/samples/treectrl/icon5.xpm +79 -0
  233. data/samples/treectrl/treectrl.rb +1174 -0
  234. data/samples/xrc/samples.xrc +46 -0
  235. data/samples/xrc/xrc_sample.rb +96 -0
  236. metadata +313 -0
@@ -0,0 +1,282 @@
1
+ #!/usr/bin/env ruby
2
+ # wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
3
+ # Freely reusable code: see SAMPLES-LICENSE.TXT for details
4
+ begin
5
+ require 'rubygems'
6
+ rescue LoadError
7
+ end
8
+ require 'wx'
9
+
10
+
11
+ include Wx
12
+
13
+ # menu items
14
+ Caret_set_blink_time = 3
15
+ Caret_Move = 4
16
+
17
+ # controls start here (the numbers are, of course, arbitrary)
18
+ Caret_Text = 1000
19
+
20
+
21
+ # MyCanvas is a canvas on which you can type
22
+ class MyCanvas < ScrolledWindow
23
+ def initialize(parent)
24
+ super(parent, :style => SUNKEN_BORDER)
25
+
26
+ self.background_colour = WHITE
27
+
28
+ @font = Font.new(12, FONTFAMILY_TELETYPE,
29
+ FONTSTYLE_NORMAL, FONTWEIGHT_NORMAL)
30
+
31
+ @x_caret = @y_caret = @x_chars = @y_chars = 0
32
+ @x_margin = @y_margin = 5
33
+ @text = nil
34
+
35
+ create_caret
36
+
37
+ evt_paint :on_paint
38
+ evt_size :on_size
39
+ evt_char :on_char
40
+ end
41
+
42
+ def [](x,y)
43
+ @text[x + @x_chars * y,1]
44
+ end
45
+
46
+ def []=(x,y,z)
47
+ @text[x + @x_chars * y,1] = z
48
+ end
49
+
50
+ # caret movement
51
+ def home_pos
52
+ @x_caret = 0
53
+ end
54
+
55
+ def end_pos
56
+ @x_caret = @x_chars - 1
57
+ end
58
+
59
+ def first_line
60
+ @y_caret = 0
61
+ end
62
+
63
+ def last_line
64
+ @y_caret = @y_chars - 1
65
+ end
66
+
67
+ def prev_char
68
+ if @x_caret == 0
69
+ end_pos
70
+ prev_line
71
+ else
72
+ @x_caret -= 1
73
+ end
74
+ end
75
+
76
+ def next_char
77
+ @x_caret += 1
78
+ if @x_caret == @x_chars
79
+ home_pos
80
+ next_line
81
+ end
82
+ end
83
+
84
+ def prev_line
85
+ if @y_caret == 0
86
+ last_line
87
+ else
88
+ @y_caret -= 1
89
+ end
90
+ end
91
+
92
+ def next_line
93
+ @y_caret += 1
94
+ if @y_caret == @y_chars
95
+ first_line
96
+ end
97
+ end
98
+
99
+ def create_caret
100
+ paint do | dc |
101
+ dc.font = @font
102
+ @height_char = dc.char_height
103
+ @width_char = dc.char_width
104
+
105
+ my_caret = Caret.new(self, Size.new(@width_char, @height_char))
106
+ self.caret = my_caret
107
+
108
+ caret.move [ @x_margin, @y_margin ]
109
+ caret.show
110
+ end
111
+ end
112
+
113
+ def move_caret(x,y)
114
+ @x_caret = x
115
+ @y_caret = y
116
+
117
+ do_move_caret
118
+ end
119
+
120
+ def do_move_caret
121
+ log_status("Caret is at (%d, %d)", @x_caret, @y_caret)
122
+
123
+ caret.move_xy( @x_margin + @x_caret * @width_char,
124
+ @y_margin + @y_caret * @height_char)
125
+ end
126
+
127
+ def on_size(event)
128
+ @x_chars = (event.size.x - 2 * @x_margin) / @width_char
129
+ @y_chars = (event.size.y - 2 * @y_margin) / @height_char
130
+ if @x_chars <= 0
131
+ @x_chars = 1
132
+ end
133
+ if @y_chars <= 0
134
+ @y_chars = 1
135
+ end
136
+ if @x_caret >= @x_chars
137
+ @x_caret = @x_chars-1
138
+ end
139
+ if @y_caret >= @y_chars
140
+ @y_caret = @y_chars-1
141
+ end
142
+
143
+ @text = " " * @x_chars * @y_chars
144
+
145
+ if parent && parent.status_bar
146
+ msg = sprintf("Panel size is (%d, %d)", @x_chars, @y_chars)
147
+ parent.set_status_text(msg, 1)
148
+ parent.refresh
149
+ end
150
+ event.skip
151
+ end
152
+
153
+ def on_paint
154
+ if caret
155
+ caret.hide
156
+ end
157
+
158
+ paint do | dc |
159
+ dc.clear
160
+ dc.set_font(@font)
161
+
162
+ for y in 0 ... @y_chars
163
+ line = @text[@x_chars * y,@x_chars]
164
+ dc.draw_text( line, @x_margin, @y_margin + y * @height_char )
165
+ end
166
+ end
167
+
168
+ if caret
169
+ caret.show
170
+ end
171
+ end
172
+
173
+ def on_char(event)
174
+ case event.key_code
175
+ when K_LEFT, K_BACK
176
+ prev_char
177
+ when K_RIGHT
178
+ next_char
179
+ when K_UP
180
+ prev_line
181
+ when K_DOWN
182
+ next_line
183
+ when K_HOME
184
+ home_pos
185
+ when K_END
186
+ end_pos
187
+ when K_RETURN
188
+ home_pos
189
+ next_line
190
+ else
191
+ ch = event.key_code
192
+ if !event.alt_down and (ch >= K_SPACE) and (ch < K_DELETE)
193
+ self[@x_caret, @y_caret] = ch.chr
194
+ refresh
195
+ next_char
196
+ else
197
+ event.skip
198
+ end
199
+ end
200
+ do_move_caret
201
+ end
202
+ end
203
+
204
+ class MyFrame < Frame
205
+ def initialize(title, pos, size)
206
+ super(nil, -1, title, pos, size)
207
+ # set the frame icon
208
+ icon_file = File.join(File.dirname(__FILE__), 'mondrian.xpm')
209
+ self.icon = Icon.new(icon_file, BITMAP_TYPE_XPM)
210
+
211
+ # create a menu bar
212
+ menu_file = Menu.new
213
+
214
+ menu_file.append(Caret_set_blink_time, "&Blink time...\tCtrl-B")
215
+ menu_file.append(Caret_Move, "&Move caret\tCtrl-C")
216
+ menu_file.append_separator
217
+ menu_file.append(Wx::ID_ABOUT, "&About...\tCtrl-A", "Show about dialog")
218
+ menu_file.append_separator
219
+ menu_file.append(Wx::ID_EXIT, "E&xit\tAlt-X", "Quit self program")
220
+
221
+ # now append the freshly created menu to the menu bar...
222
+ menu_bar = MenuBar.new
223
+ menu_bar.append(menu_file, "&File")
224
+
225
+ # ... and attach self menu bar to the frame
226
+ self.menu_bar = menu_bar
227
+
228
+ @canvas = MyCanvas.new(self)
229
+
230
+ # This is required to set focus so that key events are directed to
231
+ # this Window, on Linux/GTK in particular
232
+ @canvas.set_focus
233
+
234
+ # create a status bar just for fun (by default with 1 pane only)
235
+ create_status_bar(2)
236
+ self.status_text = "Welcome to Windows!"
237
+
238
+ evt_menu Wx::ID_EXIT, :on_quit
239
+ evt_menu Wx::ID_ABOUT, :on_about
240
+ evt_menu Caret_set_blink_time, :on_set_blink_time
241
+ evt_menu Caret_Move, :on_caret_move
242
+ end
243
+
244
+ def on_quit
245
+ # true is to force the frame to close
246
+ close(true)
247
+ end
248
+
249
+ def on_about
250
+ message_box("The caret Windows sample, adapted for WxRuby",
251
+ "About Caret", OK | ICON_INFORMATION, self)
252
+ end
253
+
254
+ def on_caret_move
255
+ @canvas.move_caret(10, 10)
256
+ end
257
+
258
+ def on_set_blink_time
259
+ blink_time = get_number_from_user(
260
+ "The caret blink time is the time between two blinks",
261
+ "Time in milliseconds:",
262
+ "Caret sample",
263
+ Caret::get_blink_time, 0, 10000,
264
+ self)
265
+ if blink_time != -1
266
+ Caret::set_blink_time(blink_time)
267
+ @canvas.create_caret
268
+ log_status(self,"Blink time set to %d milliseconds.", blink_time)
269
+ end
270
+ end
271
+ end
272
+
273
+ class CaretApp < App
274
+ def on_init
275
+ frame = MyFrame.new("Caret Windows sample",
276
+ Point.new(50, 50), Size.new(450, 340))
277
+ frame.show(true)
278
+ end
279
+ end
280
+
281
+ a = CaretApp.new
282
+ a.main_loop
@@ -0,0 +1,44 @@
1
+ /* XPM */
2
+ static char *mondrian_xpm[] = {
3
+ /* columns rows colors chars-per-pixel */
4
+ "32 32 6 1",
5
+ " c Black",
6
+ ". c Blue",
7
+ "X c #00bf00",
8
+ "o c Red",
9
+ "O c Yellow",
10
+ "+ c Gray100",
11
+ /* pixels */
12
+ " ",
13
+ " oooooo +++++++++++++++++++++++ ",
14
+ " oooooo +++++++++++++++++++++++ ",
15
+ " oooooo +++++++++++++++++++++++ ",
16
+ " oooooo +++++++++++++++++++++++ ",
17
+ " oooooo +++++++++++++++++++++++ ",
18
+ " oooooo +++++++++++++++++++++++ ",
19
+ " oooooo +++++++++++++++++++++++ ",
20
+ " ",
21
+ " ++++++ ++++++++++++++++++ .... ",
22
+ " ++++++ ++++++++++++++++++ .... ",
23
+ " ++++++ ++++++++++++++++++ .... ",
24
+ " ++++++ ++++++++++++++++++ .... ",
25
+ " ++++++ ++++++++++++++++++ .... ",
26
+ " ++++++ ++++++++++++++++++ ",
27
+ " ++++++ ++++++++++++++++++ ++++ ",
28
+ " ++++++ ++++++++++++++++++ ++++ ",
29
+ " ++++++ ++++++++++++++++++ ++++ ",
30
+ " ++++++ ++++++++++++++++++ ++++ ",
31
+ " ++++++ ++++++++++++++++++ ++++ ",
32
+ " ++++++ ++++++++++++++++++ ++++ ",
33
+ " ++++++ ++++++++++++++++++ ++++ ",
34
+ " ++++++ ++++++++++++++++++ ++++ ",
35
+ " ++++++ ++++++++++++++++++ ++++ ",
36
+ " ++++++ ++++ ",
37
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
38
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
39
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
40
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
41
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
42
+ " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
43
+ " "
44
+ };