wxruby3 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +35 -29
  3. data/README.md +24 -15
  4. data/ext/wxruby3/include/wxruby-ClientData.h +48 -0
  5. data/ext/wxruby3/include/wxruby-Validator.h +39 -0
  6. data/ext/wxruby3/include/wxruby-ValidatorBinding.h +64 -0
  7. data/ext/wxruby3/swig/custom/director.swg +8 -0
  8. data/ext/wxruby3/swig/mark_free_impl.i +0 -33
  9. data/lib/wx/core/bitmap_combobox.rb +17 -21
  10. data/lib/wx/core/combobox.rb +13 -3
  11. data/lib/wx/core/controlwithitems.rb +40 -130
  12. data/lib/wx/core/enum.rb +17 -1
  13. data/lib/wx/core/event.rb +6 -1
  14. data/lib/wx/core/evthandler.rb +8 -2
  15. data/lib/wx/core/generic_validator.rb +312 -0
  16. data/lib/wx/core/listbox.rb +2 -2
  17. data/lib/wx/core/log.rb +1 -1
  18. data/lib/wx/core/owner_drawn_combobox.rb +45 -0
  19. data/lib/wx/core/size.rb +4 -0
  20. data/lib/wx/core/sizer.rb +1 -2
  21. data/lib/wx/core/standard_paths.rb +22 -0
  22. data/lib/wx/core/text_entry.rb +4 -1
  23. data/lib/wx/core/validator.rb +70 -5
  24. data/lib/wx/core/window.rb +3 -7
  25. data/lib/wx/doc/art_locator.rb +1 -0
  26. data/lib/wx/doc/comboctrl.rb +18 -0
  27. data/lib/wx/doc/controlwithitems.rb +16 -0
  28. data/lib/wx/doc/date_picker_ctrl.rb +23 -0
  29. data/lib/wx/doc/editable_listbox.rb +44 -0
  30. data/lib/wx/doc/enum.rb +15 -0
  31. data/lib/wx/doc/event.rb +12 -0
  32. data/lib/wx/doc/extra/12_client_data.md +89 -0
  33. data/lib/wx/doc/extra/13_validators.md +139 -0
  34. data/lib/wx/doc/gdi_common.rb +4 -0
  35. data/lib/wx/doc/generic_validator.rb +95 -0
  36. data/lib/wx/doc/html/simple_html_listbox.rb +22 -0
  37. data/lib/wx/doc/num_validator.rb +387 -0
  38. data/lib/wx/doc/owner_drawn_combobox.rb +96 -0
  39. data/lib/wx/doc/pg/numeric_property_validator.rb +33 -0
  40. data/lib/wx/doc/static_bitmap.rb +25 -0
  41. data/lib/wx/doc/text_validator.rb +10 -0
  42. data/lib/wx/doc/validator.rb +113 -0
  43. data/lib/wx/doc/window.rb +30 -0
  44. data/lib/wx/html/simple_html_listbox.rb +24 -91
  45. data/lib/wx/keyword_defs.rb +34 -2
  46. data/lib/wx/rbn/ribbon_gallery.rb +0 -21
  47. data/lib/wx/version.rb +1 -1
  48. data/rakelib/lib/config/mingw.rb +12 -0
  49. data/rakelib/lib/core/include/client_data.inc +65 -0
  50. data/rakelib/lib/core/include/funcall.inc +1 -1
  51. data/rakelib/lib/core/package.rb +17 -2
  52. data/rakelib/lib/core/parameter.rb +1 -1
  53. data/rakelib/lib/core/spec_helper.rb +7 -1
  54. data/rakelib/lib/director/app.rb +18 -0
  55. data/rakelib/lib/director/app_traits.rb +3 -1
  56. data/rakelib/lib/director/bitmap_combobox.rb +2 -2
  57. data/rakelib/lib/director/combobox.rb +22 -0
  58. data/rakelib/lib/director/comboctrl.rb +1 -55
  59. data/rakelib/lib/director/ctrl_with_items.rb +88 -21
  60. data/rakelib/lib/director/date_picker_ctrl.rb +8 -6
  61. data/rakelib/lib/director/editable_listbox.rb +30 -0
  62. data/rakelib/lib/director/event.rb +102 -12
  63. data/rakelib/lib/director/event_handler.rb +3 -2
  64. data/rakelib/lib/director/functions.rb +4 -2
  65. data/rakelib/lib/director/generic_dirctrl.rb +17 -0
  66. data/rakelib/lib/director/grid_cell_attr.rb +0 -2
  67. data/rakelib/lib/director/grid_cell_editor.rb +0 -2
  68. data/rakelib/lib/director/grid_cell_renderer.rb +0 -2
  69. data/rakelib/lib/director/header_ctrl.rb +6 -1
  70. data/rakelib/lib/director/html_listbox.rb +96 -22
  71. data/rakelib/lib/director/num_validator.rb +495 -0
  72. data/rakelib/lib/director/numeric_property_validator.rb +131 -6
  73. data/rakelib/lib/director/owner_drawn_combobox.rb +192 -0
  74. data/rakelib/lib/director/pgproperty.rb +3 -29
  75. data/rakelib/lib/director/ribbon_button_bar.rb +3 -3
  76. data/rakelib/lib/director/ribbon_gallery.rb +3 -5
  77. data/rakelib/lib/director/sizer.rb +15 -4
  78. data/rakelib/lib/director/sizer_item.rb +13 -0
  79. data/rakelib/lib/director/static_bitmap.rb +28 -0
  80. data/rakelib/lib/director/text_entry.rb +4 -0
  81. data/rakelib/lib/director/text_validator.rb +124 -13
  82. data/rakelib/lib/director/toggle_button.rb +1 -0
  83. data/rakelib/lib/director/top_level_window.rb +0 -2
  84. data/rakelib/lib/director/tree_ctrl.rb +35 -0
  85. data/rakelib/lib/director/utils.rb +16 -2
  86. data/rakelib/lib/director/validator.rb +196 -21
  87. data/rakelib/lib/director/window.rb +16 -2
  88. data/rakelib/lib/extractor/function.rb +2 -1
  89. data/rakelib/lib/generate/analyzer.rb +1 -1
  90. data/rakelib/lib/generate/doc.rb +10 -4
  91. data/rakelib/lib/specs/interfaces.rb +2 -0
  92. data/rakelib/lib/swig_runner.rb +55 -9
  93. data/rakelib/lib/typemap/client_data.rb +67 -0
  94. data/rakelib/lib/typemap/common.rb +3 -3
  95. data/rakelib/lib/typemap/datetime.rb +1 -1
  96. data/rakelib/lib/typemap/tree_itemid.rb +2 -2
  97. data/samples/aui/aui.rb +1237 -1233
  98. data/samples/calendar/calendar.rb +293 -289
  99. data/samples/controls/get_item_sample.rb +83 -79
  100. data/samples/controls/htlbox.rb +331 -327
  101. data/samples/dialogs/dialogs.rb +682 -694
  102. data/samples/dialogs/wizard.rb +52 -55
  103. data/samples/dragdrop/dragdrop.rb +146 -142
  104. data/samples/drawing/bitmap.rb +29 -26
  105. data/samples/drawing/bitmap_image.rb +84 -80
  106. data/samples/drawing/graphics_drawing.rb +209 -205
  107. data/samples/drawing/image_prt.rb +344 -340
  108. data/samples/drawing/maths_images.rb +18 -1
  109. data/samples/drawing/rmagic_bitmap_image.rb +88 -84
  110. data/samples/etc/caret.rb +306 -0
  111. data/samples/etc/miniframe.rb +65 -60
  112. data/samples/etc/sash.rb +109 -105
  113. data/samples/etc/scrollwin.rb +86 -80
  114. data/samples/etc/system_settings.rb +216 -209
  115. data/samples/event/activation.rb +72 -67
  116. data/samples/event/event.rb +160 -153
  117. data/samples/event/threaded.rb +8 -1
  118. data/samples/event/update_ui_event.rb +67 -60
  119. data/samples/grid/grid.rb +188 -181
  120. data/samples/grid/gridtablebase.rb +136 -129
  121. data/samples/html/html.rb +208 -204
  122. data/samples/mdi/mdi.rb +59 -54
  123. data/samples/minimal/minimal.rb +54 -51
  124. data/samples/minimal/nothing.rb +1 -0
  125. data/samples/printing/printing.rb +367 -377
  126. data/samples/printing/printing2.rb +203 -198
  127. data/samples/propgrid/propgrid.rb +2312 -2308
  128. data/samples/propgrid/propgrid_minimal.rb +57 -50
  129. data/samples/ribbon/ribbon.rb +780 -774
  130. data/samples/sampler/ext.rb +0 -33
  131. data/samples/sampler/sample.rb +4 -9
  132. data/samples/sampler.rb +1 -1
  133. data/samples/splash/splash.rb +118 -116
  134. data/samples/text/rich_textctrl.rb +207 -201
  135. data/samples/text/richtext.rb +1409 -1405
  136. data/samples/text/scintilla.rb +137 -128
  137. data/samples/text/textctrl.rb +89 -83
  138. data/samples/text/unicode.rb +175 -168
  139. data/samples/treectrl/treectrl.rb +1430 -1426
  140. data/samples/widgets/activityindicator.rb +95 -0
  141. data/samples/widgets/art/widgets/activityindicator.xpm +278 -0
  142. data/samples/widgets/art/widgets/bmpbtn.xpm +37 -0
  143. data/samples/widgets/art/widgets/bmpcombobox.xpm +54 -0
  144. data/samples/widgets/art/widgets/button.xpm +54 -0
  145. data/samples/widgets/art/widgets/checkbox.xpm +54 -0
  146. data/samples/{bigdemo/icons → widgets/art/widgets}/choice.xpm +1 -1
  147. data/samples/widgets/art/widgets/choicebk.xpm +54 -0
  148. data/samples/widgets/art/widgets/clrpicker.xpm +193 -0
  149. data/samples/widgets/art/widgets/combobox.xpm +54 -0
  150. data/samples/widgets/art/widgets/datepick.xpm +200 -0
  151. data/samples/widgets/art/widgets/dirctrl.xpm +54 -0
  152. data/samples/widgets/art/widgets/dirpicker.xpm +213 -0
  153. data/samples/widgets/art/widgets/filepicker.xpm +214 -0
  154. data/samples/widgets/art/widgets/fontpicker.xpm +185 -0
  155. data/samples/widgets/art/widgets/gauge.xpm +54 -0
  156. data/samples/widgets/art/widgets/header.xpm +54 -0
  157. data/samples/widgets/art/widgets/hyperlnk.xpm +54 -0
  158. data/samples/widgets/art/widgets/listbook.xpm +54 -0
  159. data/samples/widgets/art/widgets/listbox.xpm +54 -0
  160. data/samples/widgets/art/widgets/native.xpm +81 -0
  161. data/samples/widgets/art/widgets/notebook.xpm +54 -0
  162. data/samples/widgets/art/widgets/odcombobox.xpm +54 -0
  163. data/samples/widgets/art/widgets/radiobox.xpm +54 -0
  164. data/samples/widgets/art/widgets/scrolbar.xpm +54 -0
  165. data/samples/widgets/art/widgets/slider.xpm +54 -0
  166. data/samples/widgets/art/widgets/spinbtn.xpm +40 -0
  167. data/samples/widgets/art/widgets/statbmp.xpm +40 -0
  168. data/samples/widgets/art/widgets/statbox.xpm +54 -0
  169. data/samples/widgets/art/widgets/stattext.xpm +54 -0
  170. data/samples/widgets/art/widgets/text.xpm +54 -0
  171. data/samples/widgets/art/widgets/timepick.xpm +207 -0
  172. data/samples/widgets/art/widgets/toggle.xpm +54 -0
  173. data/samples/widgets/art/widgets/toucan.png +0 -0
  174. data/samples/widgets/bmpcombobox.rb +651 -0
  175. data/samples/widgets/button.rb +462 -0
  176. data/samples/widgets/checkbox.rb +211 -0
  177. data/samples/widgets/choice.rb +287 -0
  178. data/samples/widgets/clrpicker.rb +156 -0
  179. data/samples/widgets/combobox.rb +516 -0
  180. data/samples/widgets/datepick.rb +215 -0
  181. data/samples/widgets/dirctrl.rb +265 -0
  182. data/samples/widgets/dirpicker.rb +158 -0
  183. data/samples/widgets/editlbox.rb +122 -0
  184. data/samples/widgets/filectrl.rb +216 -0
  185. data/samples/widgets/filepicker.rb +214 -0
  186. data/samples/widgets/fontpicker.rb +135 -0
  187. data/samples/widgets/gauge.rb +311 -0
  188. data/samples/widgets/headerctrl.rb +236 -0
  189. data/samples/widgets/hyperlink.rb +203 -0
  190. data/samples/widgets/itemcontainer.rb +185 -0
  191. data/samples/widgets/listbox.rb +473 -0
  192. data/samples/widgets/notebook.rb +488 -0
  193. data/samples/widgets/odcombobox.rb +608 -0
  194. data/samples/widgets/radiobox.rb +328 -0
  195. data/samples/widgets/searchctrl.rb +159 -0
  196. data/samples/widgets/slider.rb +594 -0
  197. data/samples/widgets/spinbtn.rb +443 -0
  198. data/samples/widgets/statbmp.rb +130 -0
  199. data/samples/widgets/static.rb +436 -0
  200. data/samples/widgets/textctrl.rb +700 -0
  201. data/samples/widgets/timepick.rb +148 -0
  202. data/samples/widgets/tn_widgets.png +0 -0
  203. data/samples/widgets/toggle.rb +385 -0
  204. data/samples/widgets/widgets.rb +1233 -0
  205. data/samples/xrc/custom_xrc_sample.rb +47 -41
  206. data/samples/xrc/xrc_sample.rb +53 -47
  207. data/tests/test_event_handling.rb +52 -34
  208. data/tests/test_events.rb +7 -0
  209. data/tests/test_item_data.rb +24 -0
  210. data/tests/test_sizer.rb +44 -1
  211. data/tests/test_validators.rb +805 -0
  212. metadata +92 -138
  213. data/lib/wx/core/choice.rb +0 -14
  214. data/lib/wx/core/combo_ctrl.rb +0 -110
  215. data/rakelib/lib/typemap/grid_client_data.rb +0 -58
  216. data/samples/bigdemo/About.rbw +0 -39
  217. data/samples/bigdemo/ColorPanel.rbw +0 -23
  218. data/samples/bigdemo/GridSimple.rbw +0 -78
  219. data/samples/bigdemo/MDIDemo.rbw +0 -57
  220. data/samples/bigdemo/PopupMenu.rbw +0 -146
  221. data/samples/bigdemo/ShapedWindow.rbw +0 -128
  222. data/samples/bigdemo/Sizers.rbw +0 -541
  223. data/samples/bigdemo/bigdemo.rb +0 -817
  224. data/samples/bigdemo/demoTemplate.rbw +0 -33
  225. data/samples/bigdemo/helpfile.htb +0 -0
  226. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  227. data/samples/bigdemo/icons/Test 015.png +0 -0
  228. data/samples/bigdemo/icons/choice.bmp +0 -0
  229. data/samples/bigdemo/icons/combo.bmp +0 -0
  230. data/samples/bigdemo/icons/combo.xpm +0 -27
  231. data/samples/bigdemo/icons/copy.xpm +0 -25
  232. data/samples/bigdemo/icons/cut.xpm +0 -24
  233. data/samples/bigdemo/icons/gauge.bmp +0 -0
  234. data/samples/bigdemo/icons/gauge.xpm +0 -27
  235. data/samples/bigdemo/icons/help.xpm +0 -25
  236. data/samples/bigdemo/icons/list.bmp +0 -0
  237. data/samples/bigdemo/icons/list.xpm +0 -27
  238. data/samples/bigdemo/icons/mondrian.ico +0 -0
  239. data/samples/bigdemo/icons/mondrian.xpm +0 -44
  240. data/samples/bigdemo/icons/new.xpm +0 -24
  241. data/samples/bigdemo/icons/ogl.ico +0 -0
  242. data/samples/bigdemo/icons/ogl.xpm +0 -45
  243. data/samples/bigdemo/icons/open.xpm +0 -26
  244. data/samples/bigdemo/icons/paste.bmp +0 -0
  245. data/samples/bigdemo/icons/paste.xpm +0 -38
  246. data/samples/bigdemo/icons/pointy.png +0 -0
  247. data/samples/bigdemo/icons/preview.xpm +0 -26
  248. data/samples/bigdemo/icons/print.xpm +0 -26
  249. data/samples/bigdemo/icons/radio.bmp +0 -0
  250. data/samples/bigdemo/icons/radio.xpm +0 -27
  251. data/samples/bigdemo/icons/robert.xpm +0 -415
  252. data/samples/bigdemo/icons/sashtest.ico +0 -0
  253. data/samples/bigdemo/icons/save.xpm +0 -25
  254. data/samples/bigdemo/icons/smiles.bmp +0 -0
  255. data/samples/bigdemo/icons/smiles.xpm +0 -39
  256. data/samples/bigdemo/icons/smiley.ico +0 -0
  257. data/samples/bigdemo/icons/smiley.xpm +0 -42
  258. data/samples/bigdemo/icons/stattext.xpm +0 -24
  259. data/samples/bigdemo/icons/test2.bmp +0 -0
  260. data/samples/bigdemo/icons/test2.png +0 -0
  261. data/samples/bigdemo/icons/test2.xpm +0 -79
  262. data/samples/bigdemo/icons/text.bmp +0 -0
  263. data/samples/bigdemo/icons/text.xpm +0 -27
  264. data/samples/bigdemo/icons/tog1.bmp +0 -0
  265. data/samples/bigdemo/icons/tog1.xpm +0 -38
  266. data/samples/bigdemo/icons/tog2.bmp +0 -0
  267. data/samples/bigdemo/icons/tog2.xpm +0 -38
  268. data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
  269. data/samples/bigdemo/icons/wxwin.ico +0 -0
  270. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  271. data/samples/bigdemo/icons/wxwin16x16.xpm +0 -25
  272. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  273. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  274. data/samples/bigdemo/run.rb +0 -98
  275. data/samples/bigdemo/tips.txt +0 -7
  276. data/samples/bigdemo/utils.rb +0 -20
  277. data/samples/bigdemo/wxArtProvider.rbw +0 -282
  278. data/samples/bigdemo/wxBitmapButton.rbw +0 -65
  279. data/samples/bigdemo/wxButton.rbw +0 -64
  280. data/samples/bigdemo/wxCalendarCtrl.rbw +0 -59
  281. data/samples/bigdemo/wxCheckBox.rbw +0 -50
  282. data/samples/bigdemo/wxCheckListBox.rbw +0 -65
  283. data/samples/bigdemo/wxChoice.rbw +0 -47
  284. data/samples/bigdemo/wxChoicebook.rbw +0 -78
  285. data/samples/bigdemo/wxColourDialog.rbw +0 -33
  286. data/samples/bigdemo/wxComboBox.rbw +0 -77
  287. data/samples/bigdemo/wxCursor.rbw +0 -136
  288. data/samples/bigdemo/wxDialog.rbw +0 -74
  289. data/samples/bigdemo/wxDirDialog.rbw +0 -29
  290. data/samples/bigdemo/wxDragImage.rbw +0 -70
  291. data/samples/bigdemo/wxFileDialog.rbw +0 -37
  292. data/samples/bigdemo/wxFileDialog_Save.rbw +0 -35
  293. data/samples/bigdemo/wxFindReplaceDialog.rbw +0 -82
  294. data/samples/bigdemo/wxFontDialog.rbw +0 -200
  295. data/samples/bigdemo/wxFrame.rbw +0 -53
  296. data/samples/bigdemo/wxGauge.rbw +0 -65
  297. data/samples/bigdemo/wxGenericDirCtrl.rbw +0 -74
  298. data/samples/bigdemo/wxGrid.rbw +0 -66
  299. data/samples/bigdemo/wxHtmlHelpController.rbw +0 -52
  300. data/samples/bigdemo/wxListBox.rbw +0 -140
  301. data/samples/bigdemo/wxListCtrl_virtual.rbw +0 -112
  302. data/samples/bigdemo/wxMDIWindows.rbw +0 -50
  303. data/samples/bigdemo/wxMenu.rbw +0 -247
  304. data/samples/bigdemo/wxMessageDialog.rbw +0 -27
  305. data/samples/bigdemo/wxMiniFrame.rbw +0 -70
  306. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +0 -29
  307. data/samples/bigdemo/wxNotebook.rbw +0 -136
  308. data/samples/bigdemo/wxProgressDialog.rbw +0 -43
  309. data/samples/bigdemo/wxRadioBox.rbw +0 -72
  310. data/samples/bigdemo/wxRadioButton.rbw +0 -125
  311. data/samples/bigdemo/wxSashWindow.rbw +0 -141
  312. data/samples/bigdemo/wxScrolledMessageDialog.rbw +0 -57
  313. data/samples/bigdemo/wxScrolledWindow.rbw +0 -199
  314. data/samples/bigdemo/wxSingleChoiceDialog.rbw +0 -33
  315. data/samples/bigdemo/wxSlider.rbw +0 -42
  316. data/samples/bigdemo/wxSpinButton.rbw +0 -50
  317. data/samples/bigdemo/wxSpinCtrl.rbw +0 -51
  318. data/samples/bigdemo/wxSplitterWindow.rbw +0 -63
  319. data/samples/bigdemo/wxStaticBitmap.rbw +0 -47
  320. data/samples/bigdemo/wxStaticText.rbw +0 -55
  321. data/samples/bigdemo/wxStatusBar.rbw +0 -126
  322. data/samples/bigdemo/wxTextCtrl.rbw +0 -149
  323. data/samples/bigdemo/wxTextEntryDialog.rbw +0 -31
  324. data/samples/bigdemo/wxToggleButton.rbw +0 -49
  325. data/samples/bigdemo/wxToolBar.rbw +0 -131
  326. data/samples/bigdemo/wxTreeCtrl.rbw +0 -191
  327. data/samples/caret/caret.rb +0 -298
  328. data/samples/caret/mondrian.xpm +0 -44
  329. data/samples/controls/books.rb +0 -189
  330. data/samples/controls/choice.xpm +0 -27
  331. data/samples/controls/combo.xpm +0 -27
  332. data/samples/controls/controls.rb +0 -1099
  333. data/samples/controls/gauge.xpm +0 -27
  334. data/samples/controls/list.xpm +0 -27
  335. data/samples/controls/mondrian.ico +0 -0
  336. data/samples/controls/mondrian.xpm +0 -44
  337. data/samples/controls/radio.xpm +0 -27
  338. data/samples/controls/stattext.xpm +0 -24
  339. data/samples/controls/test2.bmp +0 -0
  340. data/samples/controls/text.xpm +0 -27
  341. data/samples/controls/tn_books.png +0 -0
  342. data/samples/controls/tn_controls.png +0 -0
  343. data/samples/etc/choice.rb +0 -87
  344. data/samples/etc/tn_choice.png +0 -0
  345. data/samples/text/mondrian.ico +0 -0
  346. data/samples/text/mondrian.xpm +0 -44
  347. /data/samples/{caret → etc}/tn_caret.png +0 -0
data/samples/html/html.rb CHANGED
@@ -14,252 +14,256 @@ require 'wx'
14
14
  require 'net/http'
15
15
  require 'uri'
16
16
 
17
- ID_PageOpen,
18
- ID_DefaultLocalBrowser,
19
- ID_DefaultWebBrowser,
20
- ID_Back,
21
- ID_Forward,
22
- ID_Processor,
23
- ID_DrawCustomBg = (Wx::ID_HIGHEST..Wx::ID_HIGHEST+7).to_a
24
-
25
-
26
- class MyHtmlFilter < Wx::HTML::HtmlFilter
27
- def can_read(fsfile)
28
- return /\.foobar\Z/ =~ fsfile.location
29
- end
17
+ module Html
30
18
 
31
- def read_file(fsfile)
32
- uri = URI.parse(fsfile.location)
33
- if uri.scheme == 'file' && File.exist?(uri.path)
34
- return File.read(uri.path)
35
- else
36
- "<html><body><b>Cannot locate #{fsfile.location}</b></body></html>"
37
- end
38
- end
39
- end
19
+ ID_PageOpen,
20
+ ID_DefaultLocalBrowser,
21
+ ID_DefaultWebBrowser,
22
+ ID_Back,
23
+ ID_Forward,
24
+ ID_Processor,
25
+ ID_DrawCustomBg = (Wx::ID_HIGHEST..Wx::ID_HIGHEST+7).to_a
40
26
 
41
- class MyHtmlWindow < Wx::HTML::HtmlWindow
42
- BLUE_PEN = Wx::Pen.new
43
- attr_reader :html_src
44
- def initialize(*args)
45
- super
46
- @draw_custom_bg = false
47
- evt_erase_background :on_erase_bg_event
48
27
 
49
- BLUE_PEN.set_colour(Wx::BLUE)
50
- end
28
+ class MyHtmlFilter < Wx::HTML::HtmlFilter
29
+ def can_read(fsfile)
30
+ return /\.foobar\Z/ =~ fsfile.location
31
+ end
51
32
 
52
- def draw_custom_bg(val)
53
- @draw_custom_bg = !!val
54
- refresh
33
+ def read_file(fsfile)
34
+ uri = URI.parse(fsfile.location)
35
+ if uri.scheme == 'file' && File.exist?(uri.path)
36
+ return File.read(uri.path)
37
+ else
38
+ "<html><body><b>Cannot locate #{fsfile.location}</b></body></html>"
39
+ end
40
+ end
55
41
  end
56
42
 
57
- def on_opening_url(_type, url)
58
- related_frame.set_status_text(url + " lately opened", 1)
59
- Wx::HTML_OPEN
60
- end
43
+ class MyHtmlWindow < Wx::HTML::HtmlWindow
44
+ BLUE_PEN = Wx::Pen.new
45
+ attr_reader :html_src
46
+ def initialize(*args)
47
+ super
48
+ @draw_custom_bg = false
49
+ evt_erase_background :on_erase_bg_event
61
50
 
62
- def on_erase_bg_event(event)
63
- unless @draw_custom_bg
64
- event.skip
65
- return
51
+ BLUE_PEN.set_colour(Wx::BLUE)
66
52
  end
67
53
 
68
- # draw a background grid to show that this handler is indeed executed
69
- paint do |dc|
70
- dc.pen = BLUE_PEN
71
- dc.clear
54
+ def draw_custom_bg(val)
55
+ @draw_custom_bg = !!val
56
+ refresh
57
+ end
72
58
 
73
- vx, vy = get_virtual_size
74
- (vx / 15).times { |i| x = i*15; dc.draw_line(x, 0, x, vy) }
75
- (vy / 15).times { |i| y = i*15; dc.draw_line(0, y, vx, y) }
59
+ def on_opening_url(_type, url)
60
+ related_frame.set_status_text(url + " lately opened", 1)
61
+ Wx::HTML_OPEN
76
62
  end
77
- end
78
63
 
79
- end
64
+ def on_erase_bg_event(event)
65
+ unless @draw_custom_bg
66
+ event.skip
67
+ return
68
+ end
69
+
70
+ # draw a background grid to show that this handler is indeed executed
71
+ paint do |dc|
72
+ dc.pen = BLUE_PEN
73
+ dc.clear
74
+
75
+ vx, vy = get_virtual_size
76
+ (vx / 15).times { |i| x = i*15; dc.draw_line(x, 0, x, vy) }
77
+ (vy / 15).times { |i| y = i*15; dc.draw_line(0, y, vx, y) }
78
+ end
79
+ end
80
80
 
81
- # The frame or self-contained window for this application
82
- class HtmlFrame < Wx::Frame
83
- attr_reader :html_win
84
-
85
- def initialize(title, pos, size, style = Wx::DEFAULT_FRAME_STYLE)
86
- # A main application frame has no parent (nil)
87
- # -1 means this frame will be supplied a default id
88
- super(nil, -1, title, pos, size, style)
89
- setup_menus
90
- create_status_bar(2)
91
- self.icon = Wx::Icon.new(local_icon_file('../sample.xpm'))
92
- setup_panel
93
- self.status_text = "Welcome to wxRuby!"
94
-
95
- evt_html_link_clicked Wx::ID_ANY, :on_html_link_clicked
96
- evt_html_cell_hover Wx::ID_ANY, :on_html_cell_hover
97
- evt_html_cell_clicked Wx::ID_ANY, :on_html_cell_clicked
98
81
  end
99
82
 
100
- def setup_panel
101
- panel = Wx::Panel.new(self, -1)
83
+ # The frame or self-contained window for this application
84
+ class HtmlFrame < Wx::Frame
85
+ attr_reader :html_win
86
+
87
+ def initialize(title, pos, size, style = Wx::DEFAULT_FRAME_STYLE)
88
+ # A main application frame has no parent (nil)
89
+ # -1 means this frame will be supplied a default id
90
+ super(nil, -1, title, pos, size, style)
91
+ setup_menus
92
+ create_status_bar(2)
93
+ self.icon = Wx::Icon.new(local_icon_file('../sample.xpm'))
94
+ setup_panel
95
+ self.status_text = "Welcome to wxRuby!"
96
+
97
+ evt_html_link_clicked Wx::ID_ANY, :on_html_link_clicked
98
+ evt_html_cell_hover Wx::ID_ANY, :on_html_cell_hover
99
+ evt_html_cell_clicked Wx::ID_ANY, :on_html_cell_clicked
100
+ end
102
101
 
103
- @html_win = MyHtmlWindow.new(panel, -1)
104
- @html_win.set_related_frame(self, 'HTML : %s')
105
- @html_win.set_related_status_bar(1)
102
+ def setup_panel
103
+ panel = Wx::Panel.new(self, -1)
106
104
 
107
- @html_win.load_file('samples/html/test.htm')
105
+ @html_win = MyHtmlWindow.new(panel, -1)
106
+ @html_win.set_related_frame(self, 'HTML : %s')
107
+ @html_win.set_related_status_bar(1)
108
108
 
109
- text = Wx::TextCtrl.new(panel, Wx::ID_ANY, "",
110
- Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE,
111
- Wx::TE_MULTILINE)
112
- Wx::Log.set_active_target(Wx::LogTextCtrl.new(text))
109
+ @html_win.load_file('samples/html/test.htm')
113
110
 
114
- sizer = Wx::BoxSizer.new(Wx::VERTICAL)
115
- sizer.add(@html_win, 3, Wx::GROW)
116
- sizer.add(text, 1, Wx::GROW)
117
- panel.set_sizer(sizer)
118
- end
111
+ text = Wx::TextCtrl.new(panel, Wx::ID_ANY, "",
112
+ Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE,
113
+ Wx::TE_MULTILINE)
114
+ Wx::Log.set_active_target(Wx::LogTextCtrl.new(text))
119
115
 
120
- def setup_menus
121
- menu_file = Wx::Menu.new
122
- menu_nav = Wx::Menu.new
123
- menu_help = Wx::Menu.new
124
-
125
-
126
- menu_file.append(ID_PageOpen, "&Open HTML page...\tCtrl-O")
127
- menu_file.append(ID_DefaultLocalBrowser, "&Open current page with default browser")
128
- menu_file.append(ID_DefaultWebBrowser, "Open a &web page with default browser")
129
- # menu_file.append_separator
130
- # menu_file.append(ID_Processor, "&Remove bold attribute",
131
- # '', Wx::ITEM_CHECK)
132
- menu_file.append_separator
133
- menu_file.append_check_item(ID_DrawCustomBg, "&Draw custom background")
134
- menu_file.append_separator
135
- menu_file.append(Wx::ID_EXIT, "&Close frame")
136
-
137
- menu_nav.append(ID_Back, "Go &BACK")
138
- menu_nav.append(ID_Forward, "Go &FORWARD")
139
-
140
- # Using Wx::ID_ABOUT default id means the menu item will be placed
141
- # in the correct platform-specific place
142
- menu_help.append(Wx::ID_ABOUT, "&About...\tF1", "Show about dialog")
143
-
144
- menu_bar = Wx::MenuBar.new
145
- menu_bar.append(menu_file, "&File")
146
- menu_bar.append(menu_nav, "&Navigate")
147
- menu_bar.append(menu_help, "&Help")
148
- # Assign the menus to this frame
149
- self.menu_bar = menu_bar
150
-
151
- if Wx.has_feature?(:USE_ACCEL)
152
- accel_entries = [
153
- Wx::AcceleratorEntry.new(Wx::ACCEL_ALT, Wx::K_LEFT, ID_Back),
154
- Wx::AcceleratorEntry.new(Wx::ACCEL_ALT, Wx::K_RIGHT, ID_Forward)
155
- ]
156
- set_accelerator_table(Wx::AcceleratorTable.new(accel_entries))
116
+ sizer = Wx::BoxSizer.new(Wx::VERTICAL)
117
+ sizer.add(@html_win, 3, Wx::GROW)
118
+ sizer.add(text, 1, Wx::GROW)
119
+ panel.set_sizer(sizer)
157
120
  end
158
121
 
159
- # handle menu events
160
- evt_menu ID_PageOpen, :on_open_page
161
- evt_menu ID_DefaultLocalBrowser, :on_default_local_browser
162
- evt_menu ID_DefaultWebBrowser, :on_default_web_browser
163
- evt_menu ID_Back, :on_back
164
- evt_menu ID_Forward, :on_forward
165
- evt_menu ID_DrawCustomBg, :on_draw_custom_bg
166
- evt_menu Wx::ID_EXIT, :on_quit
167
- evt_menu Wx::ID_ABOUT, :on_about
168
- end
122
+ def setup_menus
123
+ menu_file = Wx::Menu.new
124
+ menu_nav = Wx::Menu.new
125
+ menu_help = Wx::Menu.new
126
+
127
+
128
+ menu_file.append(ID_PageOpen, "&Open HTML page...\tCtrl-O")
129
+ menu_file.append(ID_DefaultLocalBrowser, "&Open current page with default browser")
130
+ menu_file.append(ID_DefaultWebBrowser, "Open a &web page with default browser")
131
+ # menu_file.append_separator
132
+ # menu_file.append(ID_Processor, "&Remove bold attribute",
133
+ # '', Wx::ITEM_CHECK)
134
+ menu_file.append_separator
135
+ menu_file.append_check_item(ID_DrawCustomBg, "&Draw custom background")
136
+ menu_file.append_separator
137
+ menu_file.append(Wx::ID_EXIT, "&Close frame")
138
+
139
+ menu_nav.append(ID_Back, "Go &BACK")
140
+ menu_nav.append(ID_Forward, "Go &FORWARD")
141
+
142
+ # Using Wx::ID_ABOUT default id means the menu item will be placed
143
+ # in the correct platform-specific place
144
+ menu_help.append(Wx::ID_ABOUT, "&About...\tF1", "Show about dialog")
145
+
146
+ menu_bar = Wx::MenuBar.new
147
+ menu_bar.append(menu_file, "&File")
148
+ menu_bar.append(menu_nav, "&Navigate")
149
+ menu_bar.append(menu_help, "&Help")
150
+ # Assign the menus to this frame
151
+ self.menu_bar = menu_bar
152
+
153
+ if Wx.has_feature?(:USE_ACCEL)
154
+ accel_entries = [
155
+ Wx::AcceleratorEntry.new(Wx::ACCEL_ALT, Wx::K_LEFT, ID_Back),
156
+ Wx::AcceleratorEntry.new(Wx::ACCEL_ALT, Wx::K_RIGHT, ID_Forward)
157
+ ]
158
+ set_accelerator_table(Wx::AcceleratorTable.new(accel_entries))
159
+ end
169
160
 
170
- # end the application
171
- def on_quit(_evt)
172
- close(true)
173
- end
161
+ # handle menu events
162
+ evt_menu ID_PageOpen, :on_open_page
163
+ evt_menu ID_DefaultLocalBrowser, :on_default_local_browser
164
+ evt_menu ID_DefaultWebBrowser, :on_default_web_browser
165
+ evt_menu ID_Back, :on_back
166
+ evt_menu ID_Forward, :on_forward
167
+ evt_menu ID_DrawCustomBg, :on_draw_custom_bg
168
+ evt_menu Wx::ID_EXIT, :on_quit
169
+ evt_menu Wx::ID_ABOUT, :on_about
170
+ end
171
+
172
+ # end the application
173
+ def on_quit(_evt)
174
+ close(true)
175
+ end
174
176
 
175
- def on_open_page(_evt)
176
- if Wx.has_feature?(:USE_FILEDLG)
177
- p = Wx.file_selector("Open HTML document", '',
178
- '', '', 'HTML files|*.htm;*.html');
179
- unless p.empty?
180
- tm = Time.now
181
- if html_win.load_file(p)
182
- Wx.log_status("Loaded \"#{p}\" in #{Time.now-tm}sec")
177
+ def on_open_page(_evt)
178
+ if Wx.has_feature?(:USE_FILEDLG)
179
+ p = Wx.file_selector("Open HTML document", '',
180
+ '', '', 'HTML files|*.htm;*.html');
181
+ unless p.empty?
182
+ tm = Time.now
183
+ if html_win.load_file(p)
184
+ Wx.log_status("Loaded \"#{p}\" in #{Time.now-tm}sec")
185
+ end
183
186
  end
184
187
  end
185
188
  end
186
- end
187
189
 
188
- def on_default_local_browser(_evt)
189
- page = html_win.get_opened_page
190
- Wx.launch_default_browser(page) unless page.empty?
191
- end
190
+ def on_default_local_browser(_evt)
191
+ page = html_win.get_opened_page
192
+ Wx.launch_default_browser(page) unless page.empty?
193
+ end
192
194
 
193
- def on_default_web_browser(_evt)
194
- page = html_win.get_opened_page
195
- Wx.launch_default_browser('http://www.google.com') unless page.empty?
196
- end
195
+ def on_default_web_browser(_evt)
196
+ page = html_win.get_opened_page
197
+ Wx.launch_default_browser('http://www.google.com') unless page.empty?
198
+ end
197
199
 
198
- def on_back(_evt)
199
- Wx.message_box('You reached prehistory era!') unless html_win.history_back
200
- end
200
+ def on_back(_evt)
201
+ Wx.message_box('You reached prehistory era!') unless html_win.history_back
202
+ end
201
203
 
202
- def on_forward(_evt)
203
- Wx.message_box('No more items in history!') unless html_win.history_forward
204
- end
204
+ def on_forward(_evt)
205
+ Wx.message_box('No more items in history!') unless html_win.history_forward
206
+ end
205
207
 
206
- def on_draw_custom_bg(event)
207
- html_win.draw_custom_bg(event.checked?)
208
- end
208
+ def on_draw_custom_bg(event)
209
+ html_win.draw_custom_bg(event.checked?)
210
+ end
209
211
 
210
- # show an 'About' dialog
211
- def on_about(_evt)
212
- msg = sprintf("This is the About dialog of the HTML sample.\n" \
213
- "Welcome to wxRuby, version %s", Wx::WXRUBY_VERSION)
212
+ # show an 'About' dialog
213
+ def on_about(_evt)
214
+ msg = sprintf("This is the About dialog of the HTML sample.\n" \
215
+ "Welcome to wxRuby, version %s", Wx::WXRUBY_VERSION)
214
216
 
215
- # create a simple message dialog with OK button
216
- Wx::MessageDialog(self, msg, 'About WxRuby HTML',
217
- Wx::OK | Wx::ICON_INFORMATION)
218
- end
217
+ # create a simple message dialog with OK button
218
+ Wx::MessageDialog(self, msg, 'About WxRuby HTML',
219
+ Wx::OK | Wx::ICON_INFORMATION)
220
+ end
219
221
 
220
- def on_html_link_clicked(event)
221
- Wx.log_message("The url '%s' has been clicked!", event.link_info.href)
222
+ def on_html_link_clicked(event)
223
+ Wx.log_message("The url '%s' has been clicked!", event.link_info.href)
222
224
 
223
- # skipping this event the default behaviour (load the clicked URL)
224
- # will happen...
225
- event.skip
226
- end
225
+ # skipping this event the default behaviour (load the clicked URL)
226
+ # will happen...
227
+ event.skip
228
+ end
227
229
 
228
- def on_html_cell_hover(event)
229
- Wx.log_message("Mouse moved over cell %p at %d;%d",
230
- event.cell, event.point.x, event.point.y)
231
- end
230
+ def on_html_cell_hover(event)
231
+ Wx.log_message("Mouse moved over cell %p at %d;%d",
232
+ event.cell, event.point.x, event.point.y)
233
+ end
232
234
 
233
- def on_html_cell_clicked(event)
234
- Wx.log_message("Click over cell %p at %d;%d",
235
- event.cell, event.point.x, event.point.y)
235
+ def on_html_cell_clicked(event)
236
+ Wx.log_message("Click over cell %p at %d;%d",
237
+ event.cell, event.point.x, event.point.y)
236
238
 
237
- # if we don't skip the event, OnHtmlLinkClicked won't be called!
238
- event.skip
239
- end
239
+ # if we don't skip the event, OnHtmlLinkClicked won't be called!
240
+ event.skip
241
+ end
240
242
 
241
- # utility function to find an icon relative to this ruby script
242
- def local_icon_file(icon_name)
243
- File.join( File.dirname(__FILE__), icon_name)
243
+ # utility function to find an icon relative to this ruby script
244
+ def local_icon_file(icon_name)
245
+ File.join( File.dirname(__FILE__), icon_name)
246
+ end
244
247
  end
245
- end
246
248
 
247
- # Wx::App is the container class for any wxruby app - only a single
248
- # instance is required
249
- class HtmlApp < Wx::App
250
- def on_init
251
- Wx::HTML::HtmlWindow.add_filter(MyHtmlFilter.new)
252
-
253
- set_vendor_name("wxRuby")
254
- set_app_name("Wx::HtmlTest")
255
-
256
- frame = HtmlFrame.new("Wx::HtmlWindow testing application",
257
- Wx::Point.new(50, 50),
258
- Wx::Size.new(450, 340))
259
- set_app_name('HtmlDemo')
260
- # required
261
- frame.show
249
+ # Wx::App is the container class for any wxruby app - only a single
250
+ # instance is required
251
+ class HtmlApp < Wx::App
252
+ def on_init
253
+ Wx::HTML::HtmlWindow.add_filter(MyHtmlFilter.new)
254
+
255
+ set_vendor_name("wxRuby")
256
+ set_app_name("Wx::HtmlTest")
257
+
258
+ frame = HtmlFrame.new("Wx::HtmlWindow testing application",
259
+ Wx::Point.new(50, 50),
260
+ Wx::Size.new(450, 340))
261
+ set_app_name('HtmlDemo')
262
+ # required
263
+ frame.show
264
+ end
262
265
  end
266
+
263
267
  end
264
268
 
265
269
  module HTMLSample
@@ -277,7 +281,7 @@ module HTMLSample
277
281
  end
278
282
 
279
283
  if $0 == __FILE__
280
- HtmlApp.run
284
+ Html::HtmlApp.run
281
285
  end
282
286
 
283
287
  end
data/samples/mdi/mdi.rb CHANGED
@@ -26,62 +26,67 @@ require 'wx'
26
26
  # development. Alternative interface strategies include using separate
27
27
  # frames, or the AUI classes.
28
28
 
29
- class MDIFrame < Wx::MDIParentFrame
30
- def initialize(title)
31
- super(nil, :title => title, :size => [ 500, 400 ] )
32
-
33
- @child_number = 0
34
-
35
- menuFile = Wx::Menu.new
36
- menuFile.append(Wx::ID_EXIT, "E&xit\tAlt-X")
37
- evt_menu(Wx::ID_EXIT) { self.close }
38
-
39
- menuMDI = Wx::Menu.new
40
- menuMDI.append(Wx::ID_FORWARD, "&Next Child\tCtrl-F6")
41
- evt_menu(Wx::ID_FORWARD) { self.activate_next }
42
- menuMDI.append(Wx::ID_BACKWARD, "&Previous Child")
43
- evt_menu(Wx::ID_BACKWARD) { self.activate_previous }
44
- menuMDI.append_separator
45
-
46
- mi_cascade = menuMDI.append("&Cascade")
47
- evt_menu(mi_cascade) { self.cascade }
48
- mi_tile = menuMDI.append("&Tile")
49
- evt_menu(mi_tile) { self.tile }
50
- menuMDI.append_separator
51
-
52
- menuMDI.append(Wx::ID_NEW, "&Add Child")
53
- evt_menu Wx::ID_NEW, :create_child
54
- menuMDI.append(Wx::ID_CLOSE, "&Remove Child\tCtrl-F4")
55
- evt_menu Wx::ID_CLOSE, :on_close_child
56
-
57
- menuBar = Wx::MenuBar.new
58
- menuBar.append(menuFile, "&File")
59
- menuBar.append(menuMDI, "&Window")
60
-
61
- self.menu_bar = menuBar
62
-
63
- create_status_bar(2).set_status_widths([100, -1])
64
- set_status_text("Some features only work on MS Windows", 1)
65
-
66
- 3.times { create_child }
67
- end
68
-
69
- def on_close_child
70
- if active_child
71
- active_child.close
29
+ module MDI
30
+
31
+ class MDIFrame < Wx::MDIParentFrame
32
+ def initialize(title)
33
+ super(nil, :title => title, :size => [ 500, 400 ] )
34
+
35
+ self.icon = Wx.Icon(:sample, Wx::BITMAP_TYPE_XPM, art_path: File.join(__dir__, '..'))
36
+
37
+ @child_number = 0
38
+
39
+ menuFile = Wx::Menu.new
40
+ menuFile.append(Wx::ID_EXIT, "E&xit\tAlt-X")
41
+ evt_menu(Wx::ID_EXIT) { self.close }
42
+
43
+ menuMDI = Wx::Menu.new
44
+ menuMDI.append(Wx::ID_FORWARD, "&Next Child\tCtrl-F6")
45
+ evt_menu(Wx::ID_FORWARD) { self.activate_next }
46
+ menuMDI.append(Wx::ID_BACKWARD, "&Previous Child")
47
+ evt_menu(Wx::ID_BACKWARD) { self.activate_previous }
48
+ menuMDI.append_separator
49
+
50
+ mi_cascade = menuMDI.append("&Cascade")
51
+ evt_menu(mi_cascade) { self.cascade }
52
+ mi_tile = menuMDI.append("&Tile")
53
+ evt_menu(mi_tile) { self.tile }
54
+ menuMDI.append_separator
55
+
56
+ menuMDI.append(Wx::ID_NEW, "&Add Child")
57
+ evt_menu Wx::ID_NEW, :create_child
58
+ menuMDI.append(Wx::ID_CLOSE, "&Remove Child\tCtrl-F4")
59
+ evt_menu Wx::ID_CLOSE, :on_close_child
60
+
61
+ menuBar = Wx::MenuBar.new
62
+ menuBar.append(menuFile, "&File")
63
+ menuBar.append(menuMDI, "&Window")
64
+
65
+ self.menu_bar = menuBar
66
+
67
+ create_status_bar(2).set_status_widths([100, -1])
68
+ set_status_text("Some features only work on MS Windows", 1)
69
+
70
+ 3.times { create_child }
71
+ end
72
+
73
+ def on_close_child
74
+ if active_child
75
+ active_child.close
76
+ end
77
+ end
78
+
79
+ def create_child
80
+ @child_number += 1
81
+ name = "Child #{@child_number.to_s}"
82
+ child = Wx::MDIChildFrame.new(self, :title => name)
83
+ # Note that this is required on OS X; if no child frames are shown,
84
+ # then nothing is shown at all.
85
+ child.show
72
86
  end
73
87
  end
74
-
75
- def create_child
76
- @child_number += 1
77
- name = "Child #{@child_number.to_s}"
78
- child = Wx::MDIChildFrame.new(self, :title => name)
79
- # Note that this is required on OS X; if no child frames are shown,
80
- # then nothing is shown at all.
81
- child.show
82
- end
83
- end
84
88
 
89
+ end
85
90
 
86
91
  module MDISample
87
92
 
@@ -111,7 +116,7 @@ module MDISample
111
116
  end
112
117
 
113
118
  def self.activate
114
- frame = MDIFrame.new("MDI Application")
119
+ frame = MDI::MDIFrame.new("MDI Application")
115
120
  frame.show # may return false on OS X
116
121
  frame
117
122
  end