wxruby3 0.9.0.pre.rc.2-x64-mingw-ucrt → 0.9.0-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +30 -8
  3. data/README.md +3 -3
  4. data/ext/mkrf_conf_bingem.rb +4 -1
  5. data/ext/wxbase32u_gcc_custom.dll +0 -0
  6. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  7. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  8. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  9. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  10. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  11. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  12. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  20. data/lib/wx/accessors.rb +10 -2
  21. data/lib/wx/aui/auifloatframe.rb +20 -0
  22. data/lib/wx/aui/auimanager.rb +3 -0
  23. data/lib/wx/aui/auinotebook.rb +17 -0
  24. data/lib/wx/aui/events/evt_list.rb +7 -7
  25. data/lib/wx/aui/require.rb +5 -1
  26. data/lib/wx/aui.rb +4 -1
  27. data/lib/wx/core/acceleratortable.rb +8 -0
  28. data/lib/wx/core/animation.rb +8 -0
  29. data/lib/wx/core/app.rb +8 -0
  30. data/lib/wx/core/array_ext.rb +7 -0
  31. data/lib/wx/core/art_locator.rb +7 -0
  32. data/lib/wx/core/artprovider.rb +9 -0
  33. data/lib/wx/core/bitmap.rb +16 -4
  34. data/lib/wx/core/bitmap_combobox.rb +7 -0
  35. data/lib/wx/core/brush.rb +7 -0
  36. data/lib/wx/core/busycursor.rb +9 -0
  37. data/lib/wx/core/choice.rb +7 -0
  38. data/lib/wx/core/choicedlg.rb +7 -0
  39. data/lib/wx/core/clientdc.rb +9 -0
  40. data/lib/wx/core/clipboard.rb +8 -0
  41. data/lib/wx/core/collapsible_pane.rb +8 -1
  42. data/lib/wx/core/colour.rb +8 -0
  43. data/lib/wx/core/combo_ctrl.rb +110 -0
  44. data/lib/wx/core/combobox.rb +7 -0
  45. data/lib/wx/core/config.rb +303 -0
  46. data/lib/wx/core/controlwithitems.rb +12 -1
  47. data/lib/wx/core/cursor.rb +14 -4
  48. data/lib/wx/core/data_object.rb +7 -0
  49. data/lib/wx/core/dataformat.rb +9 -0
  50. data/lib/wx/core/datetime.rb +14 -0
  51. data/lib/wx/core/dc.rb +7 -0
  52. data/lib/wx/core/dialog.rb +18 -1
  53. data/lib/wx/core/enum.rb +7 -0
  54. data/lib/wx/core/event.rb +7 -0
  55. data/lib/wx/core/event_blocker.rb +7 -0
  56. data/lib/wx/core/event_loop.rb +14 -0
  57. data/lib/wx/core/events/evt_list.rb +76 -0
  58. data/lib/wx/core/evthandler.rb +8 -0
  59. data/lib/wx/core/ext.rb +7 -0
  60. data/lib/wx/core/file_dialog.rb +23 -0
  61. data/lib/wx/core/find_replace_dialog.rb +7 -0
  62. data/lib/wx/core/functions.rb +8 -0
  63. data/lib/wx/core/gauge.rb +10 -1
  64. data/lib/wx/core/genericdirctrl.rb +9 -0
  65. data/lib/wx/core/hboxsizer.rb +16 -0
  66. data/lib/wx/core/helpcontroller.rb +8 -0
  67. data/lib/wx/core/helpcontrollerhelpprovider.rb +9 -0
  68. data/lib/wx/core/helpprovider.rb +10 -1
  69. data/lib/wx/core/icon.rb +17 -6
  70. data/lib/wx/core/id_helper.rb +7 -0
  71. data/lib/wx/core/image.rb +49 -4
  72. data/lib/wx/core/imagelist.rb +8 -1
  73. data/lib/wx/core/listbox.rb +7 -0
  74. data/lib/wx/core/listctrl.rb +26 -13
  75. data/lib/wx/core/locale.rb +8 -0
  76. data/lib/wx/core/log.rb +114 -0
  77. data/lib/wx/core/menu.rb +9 -0
  78. data/lib/wx/core/menu_bar.rb +7 -0
  79. data/lib/wx/core/menuitem.rb +9 -0
  80. data/lib/wx/core/notebook.rb +9 -0
  81. data/lib/wx/core/object.rb +9 -0
  82. data/lib/wx/core/paintdc.rb +7 -0
  83. data/lib/wx/core/pen.rb +7 -0
  84. data/lib/wx/core/pen_info.rb +7 -0
  85. data/lib/wx/core/platform_info.rb +7 -0
  86. data/lib/wx/core/point.rb +8 -0
  87. data/lib/wx/core/real_point.rb +8 -0
  88. data/lib/wx/core/rect.rb +9 -0
  89. data/lib/wx/core/region_iterator.rb +7 -0
  90. data/lib/wx/core/simplehelpprovider.rb +9 -0
  91. data/lib/wx/core/size.rb +8 -0
  92. data/lib/wx/core/sizer.rb +9 -0
  93. data/lib/wx/core/splash_screen.rb +22 -2
  94. data/lib/wx/core/text_entry.rb +7 -0
  95. data/lib/wx/core/textctrl.rb +86 -5
  96. data/lib/wx/core/timer.rb +9 -0
  97. data/lib/wx/core/toolbar.rb +9 -0
  98. data/lib/wx/core/toolbartool.rb +8 -0
  99. data/lib/wx/core/treectrl.rb +9 -0
  100. data/lib/wx/core/v_list_box.rb +7 -0
  101. data/lib/wx/core/validator.rb +7 -0
  102. data/lib/wx/core/variant.rb +7 -0
  103. data/lib/wx/core/vboxsizer.rb +16 -0
  104. data/lib/wx/core/window.rb +8 -0
  105. data/lib/wx/core/window_update_locker.rb +9 -0
  106. data/lib/wx/core/xmlresource.rb +8 -0
  107. data/lib/wx/core.rb +4 -1
  108. data/lib/wx/doc/app.rb +7 -1
  109. data/lib/wx/doc/array_ext.rb +6 -0
  110. data/lib/wx/doc/art_locator.rb +7 -0
  111. data/lib/wx/doc/aui/auimanager.rb +6 -0
  112. data/lib/wx/doc/aui/auinotebook.rb +6 -0
  113. data/lib/wx/doc/bitmap.rb +19 -15
  114. data/lib/wx/doc/brush.rb +6 -0
  115. data/lib/wx/doc/busy_info.rb +6 -0
  116. data/lib/wx/doc/client_dc.rb +6 -0
  117. data/lib/wx/doc/clipboard.rb +6 -0
  118. data/lib/wx/doc/colour_dialog.rb +6 -0
  119. data/lib/wx/doc/config.rb +190 -0
  120. data/lib/wx/doc/const.rb +7 -0
  121. data/lib/wx/doc/controlwithitems.rb +6 -0
  122. data/lib/wx/doc/core.rb +6 -0
  123. data/lib/wx/doc/cursor.rb +13 -5
  124. data/lib/wx/doc/data_object.rb +6 -0
  125. data/lib/wx/doc/datetime.rb +16 -0
  126. data/lib/wx/doc/dc.rb +6 -0
  127. data/lib/wx/doc/enum.rb +8 -1
  128. data/lib/wx/doc/event.rb +12 -0
  129. data/lib/wx/doc/event_blocker.rb +6 -0
  130. data/lib/wx/doc/event_loop.rb +13 -0
  131. data/lib/wx/doc/events.rb +6 -0
  132. data/lib/wx/doc/evthandler.rb +8 -0
  133. data/lib/wx/doc/extra/00_starting.md +6 -6
  134. data/lib/wx/doc/extra/01_packages.md +52 -51
  135. data/lib/wx/doc/extra/02_lifecycles.md +9 -8
  136. data/lib/wx/doc/extra/05_event-handling.md +37 -12
  137. data/lib/wx/doc/extra/06_geometry.md +5 -5
  138. data/lib/wx/doc/extra/07_colour_and_font.md +2 -2
  139. data/lib/wx/doc/extra/09_exceptions.md +2 -2
  140. data/lib/wx/doc/extra/10_art.md +18 -12
  141. data/lib/wx/doc/extra/11_drawing_and_dc.md +8 -8
  142. data/lib/wx/doc/font.rb +7 -1
  143. data/lib/wx/doc/font_data.rb +16 -0
  144. data/lib/wx/doc/functions.rb +60 -24
  145. data/lib/wx/doc/gc_dc.rb +7 -1
  146. data/lib/wx/doc/gdi_common.rb +8 -1
  147. data/lib/wx/doc/gen/about_dialog_info.rb +10 -10
  148. data/lib/wx/doc/gen/accelerator.rb +8 -13
  149. data/lib/wx/doc/gen/accessible.rb +27 -23
  150. data/lib/wx/doc/gen/activity_indicator.rb +7 -7
  151. data/lib/wx/doc/gen/animation.rb +20 -20
  152. data/lib/wx/doc/gen/animation_ctrl.rb +14 -13
  153. data/lib/wx/doc/gen/any_button.rb +3 -3
  154. data/lib/wx/doc/gen/app.rb +25 -88
  155. data/lib/wx/doc/gen/app_traits.rb +381 -0
  156. data/lib/wx/doc/gen/art_provider.rb +64 -4
  157. data/lib/wx/doc/gen/aui/aui_dock_art.rb +12 -12
  158. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +6 -6
  159. data/lib/wx/doc/gen/aui/aui_manager.rb +57 -41
  160. data/lib/wx/doc/gen/aui/aui_manager_event.rb +16 -10
  161. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +19 -20
  162. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +7 -7
  163. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +12 -12
  164. data/lib/wx/doc/gen/aui/aui_notebook.rb +136 -26
  165. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +17 -2
  166. data/lib/wx/doc/gen/aui/aui_pane_info.rb +95 -95
  167. data/lib/wx/doc/gen/aui/aui_tab_art.rb +17 -17
  168. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +61 -46
  169. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +18 -18
  170. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +6 -6
  171. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +11 -11
  172. data/lib/wx/doc/gen/aui/event_list.rb +7 -0
  173. data/lib/wx/doc/gen/banner_window.rb +98 -0
  174. data/lib/wx/doc/gen/bitmap.rb +56 -81
  175. data/lib/wx/doc/gen/bitmap_button.rb +13 -9
  176. data/lib/wx/doc/gen/bitmap_combo_box.rb +14 -9
  177. data/lib/wx/doc/gen/book_ctrl_base.rb +20 -16
  178. data/lib/wx/doc/gen/book_ctrl_event.rb +2 -2
  179. data/lib/wx/doc/gen/box_sizer.rb +1 -1
  180. data/lib/wx/doc/gen/brush.rb +24 -12
  181. data/lib/wx/doc/gen/busy_info.rb +1 -1
  182. data/lib/wx/doc/gen/button.rb +23 -11
  183. data/lib/wx/doc/gen/calculate_layout_event.rb +2 -1
  184. data/lib/wx/doc/gen/calendar_ctrl.rb +34 -22
  185. data/lib/wx/doc/gen/calendar_date_attr.rb +13 -13
  186. data/lib/wx/doc/gen/calendar_event.rb +4 -10
  187. data/lib/wx/doc/gen/caret.rb +6 -6
  188. data/lib/wx/doc/gen/check_box.rb +19 -15
  189. data/lib/wx/doc/gen/check_list_box.rb +10 -9
  190. data/lib/wx/doc/gen/choice.rb +10 -9
  191. data/lib/wx/doc/gen/choicebook.rb +13 -7
  192. data/lib/wx/doc/gen/client_dc.rb +1 -1
  193. data/lib/wx/doc/gen/clipboard.rb +10 -10
  194. data/lib/wx/doc/gen/collapsible_pane.rb +13 -10
  195. data/lib/wx/doc/gen/collapsible_pane_event.rb +5 -4
  196. data/lib/wx/doc/gen/colour.rb +42 -32
  197. data/lib/wx/doc/gen/colour_dialog.rb +12 -12
  198. data/lib/wx/doc/gen/colour_picker_ctrl.rb +16 -10
  199. data/lib/wx/doc/gen/colour_picker_event.rb +7 -4
  200. data/lib/wx/doc/gen/combo_box.rb +29 -20
  201. data/lib/wx/doc/gen/combo_ctrl.rb +960 -0
  202. data/lib/wx/doc/gen/command_link_button.rb +110 -0
  203. data/lib/wx/doc/gen/config_base.rb +10 -0
  204. data/lib/wx/doc/gen/context_help_button.rb +7 -6
  205. data/lib/wx/doc/gen/control.rb +12 -9
  206. data/lib/wx/doc/gen/control_with_items.rb +5 -5
  207. data/lib/wx/doc/gen/core.rb +8 -5
  208. data/lib/wx/doc/gen/cursor.rb +18 -18
  209. data/lib/wx/doc/gen/data_format.rb +5 -5
  210. data/lib/wx/doc/gen/data_object.rb +32 -25
  211. data/lib/wx/doc/gen/date_event.rb +3 -3
  212. data/lib/wx/doc/gen/date_picker_ctrl.rb +16 -11
  213. data/lib/wx/doc/gen/dc.rb +162 -74
  214. data/lib/wx/doc/gen/defs.rb +16 -16
  215. data/lib/wx/doc/gen/dialog.rb +65 -22
  216. data/lib/wx/doc/gen/dir_dialog.rb +6 -2
  217. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +3 -3
  218. data/lib/wx/doc/gen/dir_picker_ctrl.rb +17 -12
  219. data/lib/wx/doc/gen/drag_drop.rb +26 -52
  220. data/lib/wx/doc/gen/drag_image.rb +13 -38
  221. data/lib/wx/doc/gen/editable_list_box.rb +9 -5
  222. data/lib/wx/doc/gen/event.rb +55 -32
  223. data/lib/wx/doc/gen/event_blocker.rb +1 -1
  224. data/lib/wx/doc/gen/event_filter.rb +5 -2
  225. data/lib/wx/doc/gen/event_list.rb +117 -19
  226. data/lib/wx/doc/gen/events.rb +351 -215
  227. data/lib/wx/doc/gen/evt_handler.rb +8 -8
  228. data/lib/wx/doc/gen/ext_help_controller.rb +9 -9
  229. data/lib/wx/doc/gen/file_dialog.rb +20 -9
  230. data/lib/wx/doc/gen/file_dialog_custom_control.rb +146 -0
  231. data/lib/wx/doc/gen/file_dialog_customize_hook.rb +159 -0
  232. data/lib/wx/doc/gen/file_dir_picker_event.rb +5 -3
  233. data/lib/wx/doc/gen/file_picker_ctrl.rb +19 -11
  234. data/lib/wx/doc/gen/file_system.rb +250 -0
  235. data/lib/wx/doc/gen/find_dialog_event.rb +7 -2
  236. data/lib/wx/doc/gen/find_replace_data.rb +1 -1
  237. data/lib/wx/doc/gen/find_replace_dialog.rb +2 -2
  238. data/lib/wx/doc/gen/flex_grid_sizer.rb +16 -10
  239. data/lib/wx/doc/gen/font.rb +90 -94
  240. data/lib/wx/doc/gen/font_data.rb +15 -11
  241. data/lib/wx/doc/gen/font_dialog.rb +5 -5
  242. data/lib/wx/doc/gen/font_picker_ctrl.rb +11 -7
  243. data/lib/wx/doc/gen/font_picker_event.rb +2 -1
  244. data/lib/wx/doc/gen/frame.rb +36 -27
  245. data/lib/wx/doc/gen/fs_file.rb +65 -38
  246. data/lib/wx/doc/gen/gauge.rb +14 -10
  247. data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
  248. data/lib/wx/doc/gen/gcdc.rb +5 -1
  249. data/lib/wx/doc/gen/gdi_common.rb +43 -41
  250. data/lib/wx/doc/gen/gdi_object.rb +1 -1
  251. data/lib/wx/doc/gen/generic_dir_ctrl.rb +19 -13
  252. data/lib/wx/doc/gen/graphics_context.rb +320 -88
  253. data/lib/wx/doc/gen/graphics_object.rb +48 -102
  254. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +4 -2
  255. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +41 -56
  256. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +3 -1
  257. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +3 -1
  258. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +4 -2
  259. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +3 -1
  260. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
  261. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +3 -1
  262. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +3 -1
  263. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +3 -1
  264. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +19 -14
  265. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +3 -1
  266. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +3 -1
  267. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +3 -1
  268. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +3 -1
  269. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +3 -1
  270. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +3 -1
  271. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +15 -13
  272. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +3 -1
  273. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +3 -1
  274. data/lib/wx/doc/gen/grid/grid_ctrl.rb +446 -189
  275. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +5 -3
  276. data/lib/wx/doc/gen/grid/grid_event.rb +26 -9
  277. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +15 -11
  278. data/lib/wx/doc/gen/grid/grid_size_event.rb +13 -7
  279. data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -8
  280. data/lib/wx/doc/gen/grid/grid_table_base.rb +21 -21
  281. data/lib/wx/doc/gen/grid/grid_table_message.rb +5 -5
  282. data/lib/wx/doc/gen/grid_bag_sizer.rb +15 -15
  283. data/lib/wx/doc/gen/grid_sizer.rb +4 -4
  284. data/lib/wx/doc/gen/gui_event_loop.rb +132 -0
  285. data/lib/wx/doc/gen/header_ctrl.rb +755 -0
  286. data/lib/wx/doc/gen/header_ctrl_event.rb +131 -0
  287. data/lib/wx/doc/gen/help_controller.rb +25 -19
  288. data/lib/wx/doc/gen/help_provider.rb +3 -3
  289. data/lib/wx/doc/gen/html/html_cell.rb +100 -59
  290. data/lib/wx/doc/gen/html/html_cell_event.rb +7 -5
  291. data/lib/wx/doc/gen/html/html_easy_printing.rb +14 -9
  292. data/lib/wx/doc/gen/html/html_help_controller.rb +60 -46
  293. data/lib/wx/doc/gen/html/html_help_data.rb +5 -5
  294. data/lib/wx/doc/gen/html/html_help_window.rb +33 -35
  295. data/lib/wx/doc/gen/html/html_link_event.rb +4 -3
  296. data/lib/wx/doc/gen/html/html_list_box.rb +21 -13
  297. data/lib/wx/doc/gen/html/html_printout.rb +16 -6
  298. data/lib/wx/doc/gen/html/html_window.rb +54 -39
  299. data/lib/wx/doc/gen/hyperlink_ctrl.rb +15 -10
  300. data/lib/wx/doc/gen/hyperlink_event.rb +2 -1
  301. data/lib/wx/doc/gen/icon.rb +24 -24
  302. data/lib/wx/doc/gen/icon_location.rb +1 -1
  303. data/lib/wx/doc/gen/image.rb +164 -114
  304. data/lib/wx/doc/gen/image_list.rb +24 -30
  305. data/lib/wx/doc/gen/info_bar.rb +152 -0
  306. data/lib/wx/doc/gen/keyboard_state.rb +24 -24
  307. data/lib/wx/doc/gen/list_box.rb +40 -31
  308. data/lib/wx/doc/gen/list_ctrl.rb +223 -167
  309. data/lib/wx/doc/gen/list_event.rb +25 -3
  310. data/lib/wx/doc/gen/listbook.rb +13 -7
  311. data/lib/wx/doc/gen/locale.rb +22 -71
  312. data/lib/wx/doc/gen/log.rb +133 -106
  313. data/lib/wx/doc/gen/mdi_client_window.rb +3 -3
  314. data/lib/wx/doc/gen/mdi_frame.rb +23 -17
  315. data/lib/wx/doc/gen/media_ctrl.rb +22 -19
  316. data/lib/wx/doc/gen/media_event.rb +8 -2
  317. data/lib/wx/doc/gen/memory_dc.rb +26 -33
  318. data/lib/wx/doc/gen/menu.rb +24 -25
  319. data/lib/wx/doc/gen/menu_bar.rb +11 -28
  320. data/lib/wx/doc/gen/menu_item.rb +127 -46
  321. data/lib/wx/doc/gen/message_dialog.rb +54 -36
  322. data/lib/wx/doc/gen/mini_frame.rb +14 -5
  323. data/lib/wx/doc/gen/mouse_state.rb +51 -11
  324. data/lib/wx/doc/gen/multi_choice_dialog.rb +4 -2
  325. data/lib/wx/doc/gen/non_owned_window.rb +8 -9
  326. data/lib/wx/doc/gen/notebook.rb +27 -22
  327. data/lib/wx/doc/gen/number_entry_dialog.rb +3 -3
  328. data/lib/wx/doc/gen/object.rb +3 -14
  329. data/lib/wx/doc/gen/palette.rb +15 -17
  330. data/lib/wx/doc/gen/panel.rb +8 -7
  331. data/lib/wx/doc/gen/pen.rb +50 -37
  332. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +3 -3
  333. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +17 -17
  334. data/lib/wx/doc/gen/pg/pg_cell.rb +13 -16
  335. data/lib/wx/doc/gen/pg/pg_editor.rb +95 -93
  336. data/lib/wx/doc/gen/pg/pg_multi_button.rb +64 -89
  337. data/lib/wx/doc/gen/pg/pg_properties.rb +379 -349
  338. data/lib/wx/doc/gen/pg/pg_property.rb +260 -307
  339. data/lib/wx/doc/gen/pg/pg_validation_info.rb +3 -3
  340. data/lib/wx/doc/gen/pg/property_grid.rb +49 -49
  341. data/lib/wx/doc/gen/pg/property_grid_event.rb +24 -11
  342. data/lib/wx/doc/gen/pg/property_grid_interface.rb +75 -69
  343. data/lib/wx/doc/gen/pg/property_grid_manager.rb +51 -54
  344. data/lib/wx/doc/gen/pg/property_grid_page.rb +22 -30
  345. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +17 -26
  346. data/lib/wx/doc/gen/picker_base.rb +17 -16
  347. data/lib/wx/doc/gen/platform_info.rb +180 -20
  348. data/lib/wx/doc/gen/popup_window.rb +8 -8
  349. data/lib/wx/doc/gen/progress_dialog.rb +3 -3
  350. data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -18
  351. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +2 -2
  352. data/lib/wx/doc/gen/prt/preview_frame.rb +18 -2
  353. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
  354. data/lib/wx/doc/gen/prt/print_data.rb +68 -62
  355. data/lib/wx/doc/gen/prt/print_dialog.rb +4 -4
  356. data/lib/wx/doc/gen/prt/printer.rb +44 -49
  357. data/lib/wx/doc/gen/query_layout_info_event.rb +6 -5
  358. data/lib/wx/doc/gen/radio_box.rb +21 -19
  359. data/lib/wx/doc/gen/radio_button.rb +13 -11
  360. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +67 -67
  361. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +38 -20
  362. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +5 -5
  363. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +22 -15
  364. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +6 -6
  365. data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -11
  366. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +14 -16
  367. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +5 -5
  368. data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -12
  369. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +24 -22
  370. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +5 -5
  371. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +17 -15
  372. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +6 -6
  373. data/lib/wx/doc/gen/rearrange_ctrl.rb +60 -0
  374. data/lib/wx/doc/gen/rearrange_list.rb +99 -0
  375. data/lib/wx/doc/gen/region.rb +35 -43
  376. data/lib/wx/doc/gen/region_iterator.rb +3 -3
  377. data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
  378. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +626 -1538
  379. data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +37 -0
  380. data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +525 -0
  381. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +488 -503
  382. data/lib/wx/doc/gen/rtc/rich_text_event.rb +31 -12
  383. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +18 -18
  384. data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +282 -0
  385. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +23 -19
  386. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +9 -18
  387. data/lib/wx/doc/gen/rtc/rich_text_image.rb +328 -0
  388. data/lib/wx/doc/gen/rtc/rich_text_object.rb +2849 -0
  389. data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1174 -0
  390. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +29 -29
  391. data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
  392. data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
  393. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +3 -3
  394. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +34 -37
  395. data/lib/wx/doc/gen/sash_event.rb +8 -6
  396. data/lib/wx/doc/gen/sash_layout_window.rb +13 -11
  397. data/lib/wx/doc/gen/sash_window.rb +14 -9
  398. data/lib/wx/doc/gen/scroll_bar.rb +33 -12
  399. data/lib/wx/doc/gen/scrolled_canvas.rb +49 -37
  400. data/lib/wx/doc/gen/scrolled_control.rb +49 -37
  401. data/lib/wx/doc/gen/scrolled_window.rb +49 -37
  402. data/lib/wx/doc/gen/search_ctrl.rb +20 -13
  403. data/lib/wx/doc/gen/simplebook.rb +7 -7
  404. data/lib/wx/doc/gen/single_choice_dialog.rb +5 -4
  405. data/lib/wx/doc/gen/sizer.rb +69 -73
  406. data/lib/wx/doc/gen/sizer_item.rb +5 -5
  407. data/lib/wx/doc/gen/slider.rb +51 -18
  408. data/lib/wx/doc/gen/spin_button.rb +17 -11
  409. data/lib/wx/doc/gen/spin_ctrl.rb +15 -9
  410. data/lib/wx/doc/gen/spin_ctrl_double.rb +146 -0
  411. data/lib/wx/doc/gen/spin_double_event.rb +53 -0
  412. data/lib/wx/doc/gen/spin_event.rb +5 -2
  413. data/lib/wx/doc/gen/splash_screen.rb +16 -12
  414. data/lib/wx/doc/gen/splitter_event.rb +6 -2
  415. data/lib/wx/doc/gen/splitter_window.rb +36 -16
  416. data/lib/wx/doc/gen/static_bitmap.rb +9 -9
  417. data/lib/wx/doc/gen/static_box.rb +41 -37
  418. data/lib/wx/doc/gen/static_box_sizer.rb +13 -10
  419. data/lib/wx/doc/gen/static_line.rb +8 -7
  420. data/lib/wx/doc/gen/static_text.rb +15 -9
  421. data/lib/wx/doc/gen/status_bar.rb +53 -10
  422. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +200 -184
  423. data/lib/wx/doc/gen/stc/styled_text_event.rb +229 -54
  424. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +11 -2
  425. data/lib/wx/doc/gen/svg_file_dc.rb +8 -8
  426. data/lib/wx/doc/gen/system_options.rb +13 -3
  427. data/lib/wx/doc/gen/system_settings.rb +9 -9
  428. data/lib/wx/doc/gen/task_bar_icon.rb +17 -9
  429. data/lib/wx/doc/gen/task_bar_icon_event.rb +3 -3
  430. data/lib/wx/doc/gen/text_attr.rb +67 -61
  431. data/lib/wx/doc/gen/text_ctrl.rb +58 -113
  432. data/lib/wx/doc/gen/text_entry.rb +44 -56
  433. data/lib/wx/doc/gen/text_entry_dialog.rb +23 -23
  434. data/lib/wx/doc/gen/text_validator.rb +3 -19
  435. data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -10
  436. data/lib/wx/doc/gen/timer.rb +13 -9
  437. data/lib/wx/doc/gen/timer_event.rb +19 -26
  438. data/lib/wx/doc/gen/tip_provider.rb +3 -3
  439. data/lib/wx/doc/gen/toggle_button.rb +10 -9
  440. data/lib/wx/doc/gen/tool_bar.rb +71 -61
  441. data/lib/wx/doc/gen/tool_tip.rb +2 -10
  442. data/lib/wx/doc/gen/toolbook.rb +12 -9
  443. data/lib/wx/doc/gen/top_level_window.rb +53 -113
  444. data/lib/wx/doc/gen/tree_ctrl.rb +83 -33
  445. data/lib/wx/doc/gen/tree_event.rb +24 -3
  446. data/lib/wx/doc/gen/treebook.rb +20 -16
  447. data/lib/wx/doc/gen/ui_action_simulator.rb +20 -19
  448. data/lib/wx/doc/gen/utils.rb +20 -14
  449. data/lib/wx/doc/gen/v_list_box.rb +11 -11
  450. data/lib/wx/doc/gen/v_scrolled_window.rb +9 -9
  451. data/lib/wx/doc/gen/validator.rb +10 -8
  452. data/lib/wx/doc/gen/variant.rb +56 -119
  453. data/lib/wx/doc/gen/window.rb +314 -224
  454. data/lib/wx/doc/gen/window_dc.rb +1 -1
  455. data/lib/wx/doc/gen/with_images.rb +2 -2
  456. data/lib/wx/doc/gen/wizard.rb +21 -8
  457. data/lib/wx/doc/gen/wizard_event.rb +11 -4
  458. data/lib/wx/doc/gen/wizard_page.rb +3 -3
  459. data/lib/wx/doc/gen/wizard_page_simple.rb +8 -8
  460. data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
  461. data/lib/wx/doc/gen/xml_node.rb +13 -13
  462. data/lib/wx/doc/gen/xml_resource.rb +24 -21
  463. data/lib/wx/doc/graphics_context.rb +59 -39
  464. data/lib/wx/doc/grid/grid.rb +16 -1
  465. data/lib/wx/doc/hboxsizer.rb +33 -0
  466. data/lib/wx/doc/help_controller.rb +6 -0
  467. data/lib/wx/doc/html/html_help_controller.rb +6 -0
  468. data/lib/wx/doc/icon.rb +13 -5
  469. data/lib/wx/doc/id_helper.rb +6 -0
  470. data/lib/wx/doc/image.rb +50 -12
  471. data/lib/wx/doc/list_ctrl.rb +38 -0
  472. data/lib/wx/doc/log.rb +45 -0
  473. data/lib/wx/doc/memory_dc.rb +6 -0
  474. data/lib/wx/doc/mirror_dc.rb +6 -0
  475. data/lib/wx/doc/pen.rb +6 -0
  476. data/lib/wx/doc/pg/events.rb +6 -0
  477. data/lib/wx/doc/pg/pg_property.rb +17 -0
  478. data/lib/wx/doc/pg/pgeditor.rb +6 -0
  479. data/lib/wx/doc/pg/property_grid.rb +6 -0
  480. data/lib/wx/doc/pg/property_grid_interface.rb +6 -0
  481. data/lib/wx/doc/progress_dialog.rb +6 -0
  482. data/lib/wx/doc/prt/page_setup_dialog.rb +6 -0
  483. data/lib/wx/doc/prt/print_data.rb +6 -0
  484. data/lib/wx/doc/prt/print_dialog.rb +6 -0
  485. data/lib/wx/doc/prt/printer.rb +6 -0
  486. data/lib/wx/doc/prt/printer_dc.rb +8 -2
  487. data/lib/wx/doc/radio_box.rb +6 -0
  488. data/lib/wx/doc/rbn/ribbon_bar.rb +6 -0
  489. data/lib/wx/doc/rbn/ribbon_button_bar.rb +6 -0
  490. data/lib/wx/doc/rbn/ribbon_gallery.rb +6 -0
  491. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +6 -0
  492. data/lib/wx/doc/region_iterator.rb +6 -0
  493. data/lib/wx/doc/rtc/richtext_buffer.rb +28 -0
  494. data/lib/wx/doc/rtc/richtext_formatting_dialog.rb +68 -0
  495. data/lib/wx/doc/rtc/richtext_printing.rb +6 -0
  496. data/lib/wx/doc/rtc/richtext_style_sheet.rb +20 -0
  497. data/lib/wx/doc/scaled_dc.rb +7 -1
  498. data/lib/wx/doc/screen_dc.rb +6 -0
  499. data/lib/wx/doc/stock_objects.rb +6 -0
  500. data/lib/wx/doc/stream.rb +6 -0
  501. data/lib/wx/doc/svg_file_dc.rb +6 -0
  502. data/lib/wx/doc/system_settings.rb +6 -0
  503. data/lib/wx/doc/text_validator.rb +18 -0
  504. data/lib/wx/doc/textctrl.rb +89 -0
  505. data/lib/wx/doc/tree_event.rb +20 -0
  506. data/lib/wx/doc/treebook.rb +6 -0
  507. data/lib/wx/doc/v_list_box.rb +6 -0
  508. data/lib/wx/doc/variant.rb +6 -0
  509. data/lib/wx/doc/vboxsizer.rb +33 -0
  510. data/lib/wx/doc/window.rb +6 -0
  511. data/lib/wx/doc/window_disabler.rb +6 -0
  512. data/lib/wx/doc/xml_resource.rb +8 -0
  513. data/lib/wx/global_const.rb +4 -1
  514. data/lib/wx/grid/grid.rb +23 -3
  515. data/lib/wx/grid/keyword_defs.rb +8 -1
  516. data/lib/wx/grid/require.rb +4 -1
  517. data/lib/wx/grid.rb +4 -1
  518. data/lib/wx/helpers.rb +8 -1
  519. data/lib/wx/html/htmlhelpcontroller.rb +29 -3
  520. data/lib/wx/html/htmlwindow.rb +23 -12
  521. data/lib/wx/html/keyword_defs.rb +8 -1
  522. data/lib/wx/html/require.rb +4 -1
  523. data/lib/wx/html/simple_html_listbox.rb +3 -0
  524. data/lib/wx/html.rb +4 -1
  525. data/lib/wx/keyword_ctors.rb +22 -3
  526. data/lib/wx/keyword_defs.rb +55 -3
  527. data/lib/wx/pg/events.rb +4 -1
  528. data/lib/wx/pg/keyword_defs.rb +8 -1
  529. data/lib/wx/pg/pg_editor.rb +3 -0
  530. data/lib/wx/pg/pg_properties.rb +4 -1
  531. data/lib/wx/pg/pg_property.rb +18 -5
  532. data/lib/wx/pg/property_grid.rb +4 -1
  533. data/lib/wx/pg/property_grid_interface.rb +3 -0
  534. data/lib/wx/pg/require.rb +4 -1
  535. data/lib/wx/pg.rb +4 -1
  536. data/lib/wx/prt/keyword_defs.rb +8 -1
  537. data/lib/wx/prt/page_setup_dialog.rb +3 -0
  538. data/lib/wx/prt/previewframe.rb +5 -0
  539. data/lib/wx/prt/require.rb +4 -1
  540. data/lib/wx/prt.rb +4 -1
  541. data/lib/wx/rbn/events.rb +4 -1
  542. data/lib/wx/rbn/keyword_defs.rb +8 -1
  543. data/lib/wx/rbn/require.rb +5 -1
  544. data/lib/wx/rbn/ribbon_art_provider.rb +3 -1
  545. data/lib/wx/rbn/ribbon_bar.rb +3 -0
  546. data/lib/wx/rbn/ribbon_button_bar.rb +3 -0
  547. data/lib/wx/rbn/ribbon_control.rb +3 -0
  548. data/lib/wx/rbn/ribbon_gallery.rb +10 -0
  549. data/lib/wx/rbn/ribbon_page.rb +3 -0
  550. data/lib/wx/rbn/ribbon_panel.rb +3 -0
  551. data/lib/wx/rbn/ribbon_tool_bar.rb +3 -0
  552. data/lib/wx/rbn.rb +4 -1
  553. data/lib/wx/rtc/ext.rb +4 -1
  554. data/lib/wx/rtc/keyword_defs.rb +18 -7
  555. data/lib/wx/rtc/require.rb +8 -1
  556. data/lib/wx/rtc/richtext_buffer.rb +36 -0
  557. data/lib/wx/rtc/richtext_formatting_dialog.rb +88 -0
  558. data/lib/wx/rtc/richtext_style_organiser_dialog.rb +46 -0
  559. data/lib/wx/rtc/symbol_picker_dialog.rb +47 -0
  560. data/lib/wx/rtc.rb +5 -1
  561. data/lib/wx/stc/keyword_defs.rb +8 -1
  562. data/lib/wx/stc/require.rb +4 -1
  563. data/lib/wx/stc.rb +4 -1
  564. data/lib/wx/version.rb +5 -1
  565. data/lib/wx/wxruby/base.rb +4 -1
  566. data/lib/wx/wxruby/cmd/sampler.rb +4 -1
  567. data/lib/wx/wxruby/cmd/test.rb +4 -1
  568. data/lib/wx.rb +4 -1
  569. data/lib/wxruby_aui.so +0 -0
  570. data/lib/wxruby_core.so +0 -0
  571. data/lib/wxruby_grid.so +0 -0
  572. data/lib/wxruby_html.so +0 -0
  573. data/lib/wxruby_pg.so +0 -0
  574. data/lib/wxruby_prt.so +0 -0
  575. data/lib/wxruby_rbn.so +0 -0
  576. data/lib/wxruby_rtc.so +0 -0
  577. data/lib/wxruby_stc.so +0 -0
  578. data/rakelib/install.rb +4 -1
  579. data/rakelib/lib/config/cygwin.rb +4 -1
  580. data/rakelib/lib/config/linux.rb +4 -1
  581. data/rakelib/lib/config/macosx.rb +5 -2
  582. data/rakelib/lib/config/mingw.rb +4 -1
  583. data/rakelib/lib/config/netbsd.rb +4 -1
  584. data/rakelib/lib/config/unixish.rb +10 -7
  585. data/rakelib/lib/config.rb +7 -2
  586. data/rakelib/lib/ext/enum_chain.rb +4 -1
  587. data/rakelib/prepost.rake +4 -1
  588. data/rakelib/prepost.rb +4 -1
  589. data/samples/aui/aui.rb +8 -3
  590. data/samples/bigdemo/bigdemo.rb +9 -2
  591. data/samples/bigdemo/run.rb +9 -2
  592. data/samples/bigdemo/utils.rb +9 -1
  593. data/samples/calendar/calendar.rb +9 -4
  594. data/samples/caret/caret.rb +8 -3
  595. data/samples/controls/books.rb +8 -2
  596. data/samples/controls/controls.rb +33 -77
  597. data/samples/controls/get_item_sample.rb +8 -2
  598. data/samples/controls/htlbox.rb +10 -3
  599. data/samples/dialogs/dialogs.rb +9 -4
  600. data/samples/dialogs/wizard.rb +8 -3
  601. data/samples/dragdrop/dragdrop.rb +8 -3
  602. data/samples/drawing/bitmap.rb +8 -3
  603. data/samples/drawing/bitmap_image.rb +8 -3
  604. data/samples/drawing/graphics_drawing.rb +44 -33
  605. data/samples/drawing/image_prt.rb +8 -2
  606. data/samples/drawing/maths_images.rb +8 -3
  607. data/samples/drawing/rmagic_bitmap_image.rb +8 -3
  608. data/samples/etc/choice.rb +8 -3
  609. data/samples/etc/miniframe.rb +8 -3
  610. data/samples/etc/sash.rb +8 -3
  611. data/samples/etc/scrollwin.rb +8 -3
  612. data/samples/etc/system_settings.rb +8 -3
  613. data/samples/event/activation.rb +8 -3
  614. data/samples/event/event.rb +8 -3
  615. data/samples/event/threaded.rb +8 -3
  616. data/samples/event/update_ui_event.rb +8 -3
  617. data/samples/grid/grid.rb +9 -3
  618. data/samples/grid/gridtablebase.rb +8 -3
  619. data/samples/html/html.rb +8 -3
  620. data/samples/mdi/mdi.rb +8 -3
  621. data/samples/minimal/minimal.rb +8 -3
  622. data/samples/minimal/nothing.rb +8 -3
  623. data/samples/printing/printing.rb +8 -3
  624. data/samples/printing/printing2.rb +8 -2
  625. data/samples/propgrid/propgrid.rb +4 -1
  626. data/samples/propgrid/propgrid_minimal.rb +4 -2
  627. data/samples/propgrid/sample_props.rb +4 -1
  628. data/samples/ribbon/ribbon.rb +4 -1
  629. data/samples/sampler/editor.rb +4 -1
  630. data/samples/sampler/ext.rb +4 -1
  631. data/samples/sampler/sample.rb +13 -4
  632. data/samples/sampler/stc_editor.rb +4 -1
  633. data/samples/sampler/txt_editor.rb +4 -1
  634. data/samples/sampler.rb +11 -3
  635. data/samples/splash/splash.rb +4 -2
  636. data/samples/text/art/richtext/alignleft.xpm +24 -0
  637. data/samples/text/art/richtext/alignright.xpm +24 -0
  638. data/samples/text/art/richtext/bold.xpm +24 -0
  639. data/samples/text/art/richtext/centre.xpm +24 -0
  640. data/samples/text/art/richtext/copy.xpm +45 -0
  641. data/samples/text/art/richtext/cut.xpm +47 -0
  642. data/samples/text/art/richtext/font.xpm +25 -0
  643. data/samples/text/art/richtext/idea.xpm +47 -0
  644. data/samples/text/art/richtext/indentless.xpm +25 -0
  645. data/samples/text/art/richtext/indentmore.xpm +25 -0
  646. data/samples/text/art/richtext/italic.xpm +25 -0
  647. data/samples/text/art/richtext/open.xpm +58 -0
  648. data/samples/text/art/richtext/paste.xpm +47 -0
  649. data/samples/text/art/richtext/redo.xpm +59 -0
  650. data/samples/text/art/richtext/save.xpm +43 -0
  651. data/samples/text/art/richtext/smiley.xpm +42 -0
  652. data/samples/text/art/richtext/underline.xpm +25 -0
  653. data/samples/text/art/richtext/undo.xpm +59 -0
  654. data/samples/text/art/richtext/zebra.xpm +409 -0
  655. data/samples/text/rich_textctrl.rb +8 -3
  656. data/samples/text/richtext.rb +1824 -0
  657. data/samples/text/scintilla.rb +8 -3
  658. data/samples/text/textctrl.rb +21 -4
  659. data/samples/text/tn_richtext.png +0 -0
  660. data/samples/text/unicode.rb +9 -4
  661. data/samples/treectrl/treectrl.rb +10 -5
  662. data/samples/xrc/custom_xrc_sample.rb +8 -3
  663. data/samples/xrc/xrc_sample.rb +8 -3
  664. data/tests/art/test_art/bitmap/wxruby-128x128.png +0 -0
  665. data/tests/art/test_art/bitmap/wxruby-256x256.png +0 -0
  666. data/tests/art/test_art/bitmap/wxruby-64x64.png +0 -0
  667. data/tests/lib/item_container_tests.rb +3 -0
  668. data/tests/lib/text_entry_tests.rb +3 -0
  669. data/tests/lib/wxapp_runner.rb +3 -0
  670. data/tests/lib/wxframe_runner.rb +81 -3
  671. data/tests/test_app_event_filter.rb +3 -0
  672. data/tests/test_app_traits.rb +33 -0
  673. data/tests/test_art.rb +31 -0
  674. data/tests/test_art_provider.rb +3 -0
  675. data/tests/test_aui.rb +65 -0
  676. data/tests/test_basic.rb +5 -1
  677. data/tests/test_box_sizer.rb +164 -0
  678. data/tests/test_clipboard.rb +3 -0
  679. data/tests/test_config.rb +150 -0
  680. data/tests/test_dc.rb +3 -0
  681. data/tests/test_dialog.rb +3 -0
  682. data/tests/test_event_handling.rb +3 -0
  683. data/tests/test_events.rb +3 -0
  684. data/tests/test_ext_controls.rb +286 -3
  685. data/tests/test_file_dialog.rb +55 -0
  686. data/tests/test_font.rb +8 -5
  687. data/tests/test_gdi_object.rb +3 -0
  688. data/tests/test_geometry.rb +4 -0
  689. data/tests/test_grid_sizer.rb +151 -0
  690. data/tests/test_intl.rb +3 -0
  691. data/tests/test_item_data.rb +3 -0
  692. data/tests/test_list_ctrl.rb +56 -0
  693. data/tests/test_log.rb +226 -0
  694. data/tests/test_proof_check.rb +52 -0
  695. data/tests/test_richtext.rb +204 -0
  696. data/tests/test_std_controls.rb +99 -31
  697. data/tests/test_timer.rb +98 -0
  698. data/tests/test_variant.rb +3 -0
  699. data/tests/test_window.rb +10 -8
  700. data/tests/testapp.rb +4 -0
  701. data/tests/testapp_noframe.rb +4 -0
  702. metadata +87 -3
  703. data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -255,9 +255,21 @@ module Wx
255
255
  #
256
256
  # == Available image handlers
257
257
  #
258
- # The following image handlers are available. {Wx::BMPHandler} is always installed by default. To use other image formats, install the appropriate handler with {Wx::Image.add_handler} or call {init_all_image_handlers}.
259
- #
260
- # - {Wx::BMPHandler}: For loading (including alpha support) and saving, always installed.- {Wx::PNGHandler}: For loading and saving. Includes alpha support.- {Wx::JPEGHandler}: For loading and saving.- {Wx::GIFHandler}: For loading and saving (see below).- {Wx::PCXHandler}: For loading and saving (see below).- {Wx::PNMHandler}: For loading and saving (see below).- {Wx::TIFFHandler}: For loading and saving. Includes alpha support.- {Wx::TGAHandler}: For loading and saving. Includes alpha support.- {Wx::IFFHandler}: For loading only.- {Wx::XPMHandler}: For loading and saving.- {Wx::ICOHandler}: For loading and saving.- {Wx::CURHandler}: For loading and saving.- {Wx::ANIHandler}: For loading only.
258
+ # The following image handlers are available. {Wx::BMPHandler} is always installed by default. In wxRuby all image handlers are loaded by default at startup by {init_all_image_handlers}.
259
+ #
260
+ # - {Wx::BMPHandler}: For loading (including alpha support) and saving, always installed.
261
+ # - {Wx::PNGHandler}: For loading and saving. Includes alpha support.
262
+ # - {Wx::JPEGHandler}: For loading and saving.
263
+ # - {Wx::GIFHandler}: For loading and saving (see below).
264
+ # - {Wx::PCXHandler}: For loading and saving (see below).
265
+ # - {Wx::PNMHandler}: For loading and saving (see below).
266
+ # - {Wx::TIFFHandler}: For loading and saving. Includes alpha support.
267
+ # - {Wx::TGAHandler}: For loading and saving. Includes alpha support.
268
+ # - {Wx::IFFHandler}: For loading only.
269
+ # - {Wx::XPMHandler}: For loading and saving.
270
+ # - {Wx::ICOHandler}: For loading and saving.
271
+ # - {Wx::CURHandler}: For loading and saving.
272
+ # - {Wx::ANIHandler}: For loading only.
261
273
  #
262
274
  # When saving in PCX format, {Wx::PCXHandler} will count the number of different colours in the image; if there are 256 or less colours, it will save as 8 bit, else it will save as 24 bit.
263
275
  # Loading PNMs only works for ASCII or raw RGB images. When saving in PNM format, {Wx::PNMHandler} will always save as raw RGB.
@@ -283,13 +295,13 @@ module Wx
283
295
  # true if the call succeeded, false otherwise.
284
296
  # @param width [Integer]
285
297
  # @param height [Integer]
286
- # @param clear [true,false]
287
- # @return [true,false]
298
+ # @param clear [Boolean]
299
+ # @return [Boolean]
288
300
  # @overload create(sz, clear=true)
289
301
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
290
302
  # @param sz [Array(Integer, Integer), Wx::Size]
291
- # @param clear [true,false]
292
- # @return [true,false]
303
+ # @param clear [Boolean]
304
+ # @return [Boolean]
293
305
  # @overload create(width, height, data)
294
306
  # Creates a fresh image.
295
307
  # See wxImage::wxImage(int,int,unsigned char*,bool) for more info.
@@ -297,12 +309,12 @@ module Wx
297
309
  # @param width [Integer]
298
310
  # @param height [Integer]
299
311
  # @param data [String]
300
- # @return [true,false]
312
+ # @return [Boolean]
301
313
  # @overload create(sz, data)
302
314
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
303
315
  # @param sz [Array(Integer, Integer), Wx::Size]
304
316
  # @param data [String]
305
- # @return [true,false]
317
+ # @return [Boolean]
306
318
  # @overload create(width, height, data, alpha)
307
319
  # Creates a fresh image.
308
320
  # See wxImage::wxImage(int,int,unsigned char*,unsigned char*,bool) for more info.
@@ -311,13 +323,13 @@ module Wx
311
323
  # @param height [Integer]
312
324
  # @param data [String]
313
325
  # @param alpha [String]
314
- # @return [true,false]
326
+ # @return [Boolean]
315
327
  # @overload create(sz, data, alpha)
316
328
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
317
329
  # @param sz [Array(Integer, Integer), Wx::Size]
318
330
  # @param data [String]
319
331
  # @param alpha [String]
320
- # @return [true,false]
332
+ # @return [Boolean]
321
333
  def create(*args) end
322
334
 
323
335
  # Initialize the image data with zeroes (the default) or with the byte value given as value.
@@ -360,7 +372,7 @@ module Wx
360
372
 
361
373
  # Returns a mirrored copy of the image.
362
374
  # The parameter horizontally indicates the orientation.
363
- # @param horizontally [true,false]
375
+ # @param horizontally [Boolean]
364
376
  # @return [Wx::Image]
365
377
  def mirror(horizontally=true) end
366
378
 
@@ -369,7 +381,7 @@ module Wx
369
381
  # @param image [Wx::Image] The image containing the data to copy, must be valid.
370
382
  # @param x [Integer] The horizontal position of the position to copy the data to.
371
383
  # @param y [Integer] The vertical position of the position to copy the data to.
372
- # @param alphaBlend [ImageAlphaBlendMode] This parameter (new in wx 3.1.5) determines whether the alpha values of the original image replace (default) or are composed with the alpha channel of this image. Notice that alpha blending overrides the mask handling.
384
+ # @param alphaBlend [Wx::ImageAlphaBlendMode] This parameter (new in wx 3.1.5) determines whether the alpha values of the original image replace (default) or are composed with the alpha channel of this image. Notice that alpha blending overrides the mask handling.
373
385
  # @return [void]
374
386
  def paste(image, x, y, alphaBlend=Wx::ImageAlphaBlendMode::IMAGE_ALPHA_BLEND_OVER) end
375
387
 
@@ -388,7 +400,7 @@ module Wx
388
400
  # @see Wx::Image#scale
389
401
  # @param width [Integer]
390
402
  # @param height [Integer]
391
- # @param quality [ImageResizeQuality]
403
+ # @param quality [Wx::ImageResizeQuality]
392
404
  # @return [Wx::Image]
393
405
  def rescale(width, height, quality=Wx::ImageResizeQuality::IMAGE_QUALITY_NORMAL) end
394
406
 
@@ -411,13 +423,13 @@ module Wx
411
423
  # Returns the rotated image, leaving this image intact.
412
424
  # @param angle [Float]
413
425
  # @param rotationCentre [Array(Integer, Integer), Wx::Point]
414
- # @param interpolating [true,false]
426
+ # @param interpolating [Boolean]
415
427
  # @param offsetAfterRotation [Wx::Point]
416
428
  # @return [Wx::Image]
417
429
  def rotate(angle, rotationCentre, interpolating=true, offsetAfterRotation=nil) end
418
430
 
419
431
  # Returns a copy of the image rotated 90 degrees in the direction indicated by clockwise.
420
- # @param clockwise [true,false]
432
+ # @param clockwise [Boolean]
421
433
  # @return [Wx::Image]
422
434
  def rotate90(clockwise=true) end
423
435
 
@@ -456,27 +468,26 @@ module Wx
456
468
  # It should be noted that although using {Wx::ImageResizeQuality::IMAGE_QUALITY_HIGH} produces much nicer looking results it is a slower method. Downsampling will use the box averaging method which seems to operate very fast. If you are upsampling larger images using this method you will most likely notice that it is a bit slower and in extreme cases it will be quite substantially slower as the bicubic algorithm has to process a lot of data.
457
469
  # It should also be noted that the high quality scaling may not work as expected when using a single mask colour for transparency, as the scaling will blur the image and will therefore remove the mask partially. Using the alpha channel will work.
458
470
  # Example:
459
- # ```
460
- # // get the bitmap from somewhere
461
- # wxBitmap bmp = ...;
471
+ # ```ruby
472
+ # # get the bitmap from somewhere
473
+ # bmp = ...
462
474
  #
463
- # // rescale it to have size of 32*32
464
- # if ( bmp.GetWidth() != 32 || bmp.GetHeight() != 32 )
465
- # {
466
- # wxImage image = bmp.ConvertToImage();
467
- # bmp = wxBitmap(image.Scale(32, 32));
475
+ # # rescale it to have size of 32*32
476
+ # if bmp.width != 32 || bmp.height != 32
477
+ # image = bmp.convert_to_image
478
+ # bmp = Wx::Bitmap.new(image.scale(32, 32))
468
479
  #
469
- # // another possibility:
470
- # image.Rescale(32, 32);
471
- # bmp = image;
472
- # }
480
+ # # another possibility:
481
+ # image.rescale(32, 32)
482
+ # bmp = image.to_bitmap
483
+ # end
473
484
  # ```
474
485
  #
475
486
  # The algorithm used for the default (normal) quality value doesn't work with images larger than 65536 (2^16) pixels in either dimension for 32-bit programs. For 64-bit programs the limit is 2^48 and so not relevant in practice.
476
487
  # @see Wx::Image#rescale
477
488
  # @param width [Integer]
478
489
  # @param height [Integer]
479
- # @param quality [ImageResizeQuality]
490
+ # @param quality [Wx::ImageResizeQuality]
480
491
  # @return [Wx::Image]
481
492
  def scale(width, height, quality=Wx::ImageResizeQuality::IMAGE_QUALITY_NORMAL) end
482
493
 
@@ -499,7 +510,7 @@ module Wx
499
510
  # The mask colour is chosen automatically using {Wx::Image#find_first_unused_colour}, see the overload below if this is not appropriate.
500
511
  # Returns true on success, false on error.
501
512
  # @param threshold [Integer]
502
- # @return [true,false]
513
+ # @return [Boolean]
503
514
  # @overload convert_alpha_to_mask(mr, mg, mb, threshold=Wx::IMAGE_ALPHA_THRESHOLD)
504
515
  # If the image has alpha channel, this method converts it to mask using the specified colour as the mask colour.
505
516
  # If the image has an alpha channel, all pixels with alpha value less than threshold are replaced with the mask colour and the alpha channel is removed. Otherwise nothing is done.
@@ -509,7 +520,7 @@ module Wx
509
520
  # @param mg [Integer] The green component of the mask colour.
510
521
  # @param mb [Integer] The blue component of the mask colour.
511
522
  # @param threshold [Integer] Pixels with alpha channel values below the given threshold are considered to be transparent, i.e. the corresponding mask pixels are set. Pixels with the alpha values above the threshold are considered to be opaque.
512
- # @return [true,false]
523
+ # @return [Boolean]
513
524
  def convert_alpha_to_mask(*args) end
514
525
 
515
526
  # @overload convert_to_greyscale(weight_r, weight_g, weight_b)
@@ -547,28 +558,6 @@ module Wx
547
558
  # @return [Wx::Image]
548
559
  def change_lightness(alpha) end
549
560
 
550
- # Computes the histogram of the image.
551
- # histogram is a reference to {Wx::ImageHistogram} object. {Wx::ImageHistogram} is a specialization of {Wx::HashMap} "template" and is defined as follows:
552
- #
553
- # ```
554
- # class WXDLLEXPORT wxImageHistogramEntry
555
- # {
556
- # public:
557
- # wxImageHistogramEntry() : index(0), value(0) {}
558
- # unsigned long index;
559
- # unsigned long value;
560
- # };
561
- #
562
- # WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
563
- # wxIntegerHash, wxIntegerEqual,
564
- # wxImageHistogram);
565
- # ```
566
- #
567
- # Returns number of colours in the histogram.
568
- # @param histogram [Wx::ImageHistogram]
569
- # @return [Integer]
570
- def compute_histogram(histogram) end
571
-
572
561
  # Finds the first colour that is never used in the image.
573
562
  # The search begins at given initial colour and continues by increasing R, G and B components (in this order) by 1 until an unused colour is found or the colour space exhausted.
574
563
  # The parameters r, g, b are pointers to variables to save the colour.
@@ -579,7 +568,7 @@ module Wx
579
568
  # @param startR [Integer]
580
569
  # @param startG [Integer]
581
570
  # @param startB [Integer]
582
- # @return [Array(true,false,Integer,Integer,Integer)]
571
+ # @return [Array(Boolean,Integer,Integer,Integer)]
583
572
  def find_first_unused_colour(startR=1, startG=0, startB=0) end
584
573
 
585
574
  # Returns the red intensity at the given coordinate.
@@ -643,9 +632,11 @@ module Wx
643
632
 
644
633
  # Gets a user-defined string-valued option.
645
634
  # Generic options:
635
+ #
646
636
  # - {Wx::IMAGE_OPTION_FILENAME}: The name of the file from which the image was loaded.
647
637
  #
648
638
  # Options specific to {Wx::GIFHandler}:
639
+ #
649
640
  # - {Wx::IMAGE_OPTION_GIF_COMMENT}: The comment text that is read from or written to the GIF file. In an animated GIF each frame can have its own comment. If there is only a comment in the first frame of a GIF it will not be repeated in other frames.
650
641
  #
651
642
  # The value of the option or an empty string if not found. Use {Wx::Image#has_option} if an empty string can be a valid option value.
@@ -660,9 +651,11 @@ module Wx
660
651
  # Gets a user-defined integer-valued option.
661
652
  # The function is case-insensitive to name. If the given option is not present, the function returns 0. Use {Wx::Image#has_option} if 0 is a possibly valid value for the option.
662
653
  # Generic options:
654
+ #
663
655
  # - {Wx::IMAGE_OPTION_MAX_WIDTH} and {Wx::IMAGE_OPTION_MAX_HEIGHT}: If either of these options is specified, the loaded image will be scaled down (preserving its aspect ratio) so that its width is less than the max width given if it is not 0 and its height is less than the max height given if it is not 0. This is typically used for loading thumbnails and the advantage of using these options compared to calling {Wx::Image#rescale} after loading is that some handlers (only JPEG one right now) support rescaling the image during loading which is vastly more efficient than loading the entire huge image and rescaling it later (if these options are not supported by the handler, this is still what happens however). These options must be set before calling {Wx::Image#load_file} to have any effect.
664
656
  #
665
657
  # - {Wx::IMAGE_OPTION_ORIGINAL_WIDTH} and {Wx::IMAGE_OPTION_ORIGINAL_HEIGHT}: These options will return the original size of the image if either {Wx::IMAGE_OPTION_MAX_WIDTH} or {Wx::IMAGE_OPTION_MAX_HEIGHT} is specified.
658
+ #
666
659
  # - {Wx::IMAGE_OPTION_QUALITY}: JPEG quality used when saving. This is an integer in 0..100 range with 0 meaning very poor and 100 excellent (but very badly compressed). This option is currently ignored for the other formats.
667
660
  #
668
661
  # - {Wx::IMAGE_OPTION_RESOLUTIONUNIT}: The value of this option determines whether the resolution of the image is specified in centimetres or inches, see {Wx::ImageResolution} enum elements.
@@ -670,21 +663,33 @@ module Wx
670
663
  # - {Wx::IMAGE_OPTION_RESOLUTION}, {Wx::IMAGE_OPTION_RESOLUTIONX} and {Wx::IMAGE_OPTION_RESOLUTIONY}: These options define the resolution of the image in the units corresponding to {Wx::IMAGE_OPTION_RESOLUTIONUNIT} options value. The first option can be set before saving the image to set both horizontal and vertical resolution to the same value. The X and Y options are set by the image handlers if they support the image resolution (currently BMP, JPEG and TIFF handlers do) and the image provides the resolution information and can be queried after loading the image.
671
664
  #
672
665
  # Options specific to {Wx::PNGHandler}:
666
+ #
673
667
  # - {Wx::IMAGE_OPTION_PNG_FORMAT}: Format for saving a PNG file, see {Wx::ImagePNGType} for the supported values.
668
+ #
674
669
  # - {Wx::IMAGE_OPTION_PNG_BITDEPTH}: Bit depth for every channel (R/G/B/A).
670
+ #
675
671
  # - {Wx::IMAGE_OPTION_PNG_FILTER}: Filter for saving a PNG file, see libpng (http://www.libpng.org/pub/png/libpng-1.2.5-manual.html) for possible values (e.g. PNG_FILTER_NONE, PNG_FILTER_SUB, PNG_FILTER_UP, etc).
672
+ #
676
673
  # - {Wx::IMAGE_OPTION_PNG_COMPRESSION_LEVEL}: Compression level (0..9) for saving a PNG file. A high value creates smaller-but-slower PNG file. Note that unlike other formats (e.g. JPEG) the PNG format is always lossless and thus this compression level doesn't tradeoff the image quality.
674
+ #
677
675
  # - {Wx::IMAGE_OPTION_PNG_COMPRESSION_MEM_LEVEL}: Compression memory usage level (1..9) for saving a PNG file. A high value means the saving process consumes more memory, but may create smaller PNG file.
676
+ #
678
677
  # - {Wx::IMAGE_OPTION_PNG_COMPRESSION_STRATEGY}: Possible values are 0 for default strategy, 1 for filter, and 2 for Huffman-only. You can use OptiPNG (http://optipng.sourceforge.net/) to get a suitable value for your application.
678
+ #
679
679
  # - {Wx::IMAGE_OPTION_PNG_COMPRESSION_BUFFER_SIZE}: Internal buffer size (in bytes) for saving a PNG file. Ideally this should be as big as the resulting PNG file. Use this option if your application produces images with small size variation.
680
680
  #
681
681
  # Options specific to {Wx::TIFFHandler}:
682
+ #
682
683
  # - {Wx::IMAGE_OPTION_TIFF_BITSPERSAMPLE}: Number of bits per sample (channel). Currently values of 1 and 8 are supported. A value of 1 results in a black and white image. A value of 8 (the default) can mean greyscale or RGB, depending on the value of {Wx::IMAGE_OPTION_TIFF_SAMPLESPERPIXEL}.
684
+ #
683
685
  # - {Wx::IMAGE_OPTION_TIFF_SAMPLESPERPIXEL}: Number of samples (channels) per pixel. Currently values of 1 and 3 are supported. A value of 1 results in either a greyscale (by default) or black and white image, depending on the value of {Wx::IMAGE_OPTION_TIFF_BITSPERSAMPLE}. A value of 3 (the default) will result in an RGB image.
686
+ #
684
687
  # - {Wx::IMAGE_OPTION_TIFF_COMPRESSION}: Compression type. By default it is set to 1 (COMPRESSION_NONE). Typical other values are 5 (COMPRESSION_LZW) and 7 (COMPRESSION_JPEG). See tiff.h for more options.
688
+ #
685
689
  # - {Wx::IMAGE_OPTION_TIFF_PHOTOMETRIC}: Specifies the photometric interpretation. By default it is set to 2 (PHOTOMETRIC_RGB) for RGB images and 0 (PHOTOMETRIC_MINISWHITE) for greyscale or black and white images. It can also be set to 1 (PHOTOMETRIC_MINISBLACK) to treat the lowest value as black and highest as white. If you want a greyscale image it is also sufficient to only specify {Wx::IMAGE_OPTION_TIFF_PHOTOMETRIC} and set it to either PHOTOMETRIC_MINISWHITE or PHOTOMETRIC_MINISBLACK. The other values are taken care of.
686
690
  #
687
691
  # Options specific to {Wx::GIFHandler}:
692
+ #
688
693
  # - {Wx::IMAGE_OPTION_GIF_TRANSPARENCY}: How to deal with transparent pixels. By default, the color of transparent pixels is changed to bright pink, so that if the image is accidentally drawn without transparency, it will be obvious. Normally, this would not be noticed, as these pixels will not be rendered. But in some cases it might be useful to load a GIF without making any modifications to its colours. Use {Wx::IMAGE_OPTION_GIF_TRANSPARENCY_UNCHANGED} to keep the colors correct. Use {Wx::IMAGE_OPTION_GIF_TRANSPARENCY_HIGHLIGHT} to convert transparent pixels to pink (default). This option has been added in wxWidgets 3.1.1.
689
694
  #
690
695
  # Be careful when combining the options {Wx::IMAGE_OPTION_TIFF_SAMPLESPERPIXEL}, {Wx::IMAGE_OPTION_TIFF_BITSPERSAMPLE}, and {Wx::IMAGE_OPTION_TIFF_PHOTOMETRIC}. While some measures are taken to prevent illegal combinations and/or values, it is still easy to abuse them and come up with invalid results in the form of either corrupted images or crashes.
@@ -699,7 +704,7 @@ module Wx
699
704
 
700
705
  # Get the current mask colour or find a suitable unused colour that could be used as a mask colour.
701
706
  # Returns true if the image currently has a mask.
702
- # @return [Array(true,false,Integer,Integer,Integer)]
707
+ # @return [Array(Boolean,Integer,Integer,Integer)]
703
708
  def get_or_find_mask_colour; end
704
709
  alias_method :or_find_mask_colour, :get_or_find_mask_colour
705
710
 
@@ -717,7 +722,7 @@ module Wx
717
722
  alias_method :sub_image, :get_sub_image
718
723
 
719
724
  # Gets the type of image found by {Wx::Image#load_file} or specified with {Wx::Image#save_file}.
720
- # @return [BitmapType]
725
+ # @return [Wx::BitmapType]
721
726
  def get_type; end
722
727
  alias_method :type, :get_type
723
728
 
@@ -725,12 +730,12 @@ module Wx
725
730
  #
726
731
  # @see Wx::Image#get_alpha
727
732
  # @see Wx::Image#set_alpha
728
- # @return [true,false]
733
+ # @return [Boolean]
729
734
  def has_alpha; end
730
735
  alias_method :has_alpha?, :has_alpha
731
736
 
732
737
  # Returns true if there is a mask active, false otherwise.
733
- # @return [true,false]
738
+ # @return [Boolean]
734
739
  def has_mask; end
735
740
  alias_method :has_mask?, :has_mask
736
741
 
@@ -741,12 +746,12 @@ module Wx
741
746
  # @see Wx::Image#get_option
742
747
  # @see Wx::Image#get_option_int
743
748
  # @param name [String]
744
- # @return [true,false]
749
+ # @return [Boolean]
745
750
  def has_option(name) end
746
751
  alias_method :has_option?, :has_option
747
752
 
748
753
  # Returns true if image data is present.
749
- # @return [true,false]
754
+ # @return [Boolean]
750
755
  def is_ok; end
751
756
  alias_method :ok?, :is_ok
752
757
 
@@ -754,7 +759,7 @@ module Wx
754
759
  # @param x [Integer]
755
760
  # @param y [Integer]
756
761
  # @param threshold [Integer]
757
- # @return [true,false]
762
+ # @return [Boolean]
758
763
  def is_transparent(x, y, threshold=Wx::IMAGE_ALPHA_THRESHOLD) end
759
764
  alias_method :transparent?, :is_transparent
760
765
 
@@ -767,50 +772,63 @@ module Wx
767
772
  # Depending on how wxWidgets has been configured, not all formats may be available.
768
773
  #
769
774
  # You can use {Wx::Image#get_option_int} to get the hotspot when loading cursor files:
770
- # ```
771
- # int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
772
- # int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
775
+ # ```ruby
776
+ # hotspot_x = image.get_option_int(Wx::IMAGE_OPTION_CUR_HOTSPOT_X)
777
+ # hotspot_y = image.get_option_int(Wx::IMAGE_OPTION_CUR_HOTSPOT_Y)
773
778
  # ```
774
779
  # @see Wx::Image#save_file
775
780
  # @param stream [IO,Wx::InputStream] Opened input stream from which to load the image. Currently, the stream must support seeking.
776
- # @param type [BitmapType] May be one of the following:
781
+ # @param type [Wx::BitmapType] May be one of the following:
782
+ #
777
783
  # - {Wx::BitmapType::BITMAP_TYPE_BMP}: Load a Windows bitmap file.
784
+ #
778
785
  # - {Wx::BitmapType::BITMAP_TYPE_GIF}: Load a GIF bitmap file.
786
+ #
779
787
  # - {Wx::BitmapType::BITMAP_TYPE_JPEG}: Load a JPEG bitmap file.
788
+ #
780
789
  # - {Wx::BitmapType::BITMAP_TYPE_PNG}: Load a PNG bitmap file.
790
+ #
781
791
  # - {Wx::BitmapType::BITMAP_TYPE_PCX}: Load a PCX bitmap file.
792
+ #
782
793
  # - {Wx::BitmapType::BITMAP_TYPE_PNM}: Load a PNM bitmap file.
794
+ #
783
795
  # - {Wx::BitmapType::BITMAP_TYPE_TIFF}: Load a TIFF bitmap file.
796
+ #
784
797
  # - {Wx::BitmapType::BITMAP_TYPE_TGA}: Load a TGA bitmap file.
798
+ #
785
799
  # - {Wx::BitmapType::BITMAP_TYPE_XPM}: Load a XPM bitmap file.
800
+ #
786
801
  # - {Wx::BitmapType::BITMAP_TYPE_ICO}: Load a Windows icon file (ICO).
802
+ #
787
803
  # - {Wx::BitmapType::BITMAP_TYPE_CUR}: Load a Windows cursor file (CUR).
804
+ #
788
805
  # - {Wx::BitmapType::BITMAP_TYPE_ANI}: Load a Windows animated cursor file (ANI).
806
+ #
789
807
  # - {Wx::BitmapType::BITMAP_TYPE_ANY}: Will try to autodetect the format.
790
808
  # @param index [Integer] Index of the image to load in the case that the image file contains multiple images. This is only used by GIF, ICO and TIFF handlers. The default value (-1) means "choose the default image" and is interpreted as the first image (index=0) by the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.
791
- # @return [true,false]
809
+ # @return [Boolean]
792
810
  # @overload load_stream(stream, mimetype, index=-1)
793
811
  # Loads an image from an input stream.
794
812
  # @param stream [IO,Wx::InputStream] Opened input stream from which to load the image. Currently, the stream must support seeking.
795
813
  # @param mimetype [String] MIME type string (for example 'image/jpeg')
796
814
  # @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
797
- # @return [true,false]
815
+ # @return [Boolean]
798
816
  def load_stream(*args) end
799
817
 
800
818
  # @overload load_file(name, type=Wx::BitmapType::BITMAP_TYPE_ANY, index=-1)
801
819
  # Loads an image from a file.
802
820
  # If no handler type is provided, the library will try to autodetect the format.
803
821
  # @param name [String] Name of the file from which to load the image.
804
- # @param type [BitmapType] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
822
+ # @param type [Wx::BitmapType] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
805
823
  # @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
806
- # @return [true,false]
824
+ # @return [Boolean]
807
825
  # @overload load_file(name, mimetype, index=-1)
808
826
  # Loads an image from a file.
809
827
  # If no handler type is provided, the library will try to autodetect the format.
810
828
  # @param name [String] Name of the file from which to load the image.
811
829
  # @param mimetype [String] MIME type string (for example 'image/jpeg')
812
830
  # @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
813
- # @return [true,false]
831
+ # @return [Boolean]
814
832
  def load_file(*args) end
815
833
 
816
834
  # @overload write(stream, mimetype)
@@ -820,45 +838,54 @@ module Wx
820
838
  # Depending on how wxWidgets has been configured, not all formats may be available.
821
839
  #
822
840
  # You can use {Wx::Image#set_option} to set the hotspot when saving an image into a cursor file (default hotspot is in the centre of the image):
823
- # ```
824
- # image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotspotX);
825
- # image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotspotY);
841
+ # ```ruby
842
+ # image.set_option(Wx::IMAGE_OPTION_CUR_HOTSPOT_X, hotspot_x)
843
+ # image.set_option(Wx::IMAGE_OPTION_CUR_HOTSPOT_Y, hotspot_y)
826
844
  # ```
827
845
  # @see Wx::Image#load_file
828
846
  # @param stream [IO,Wx::OutputStream] Opened output stream to save the image to.
829
847
  # @param mimetype [String] MIME type.
830
- # @return [true,false]
848
+ # @return [Boolean]
831
849
  # @overload write(stream, type)
832
850
  # Saves an image in the given stream.
833
851
  # @param stream [IO,Wx::OutputStream] Opened output stream to save the image to.
834
- # @param type [BitmapType] MIME type.
835
- # @return [true,false]
852
+ # @param type [Wx::BitmapType] MIME type.
853
+ # @return [Boolean]
836
854
  def write(*args) end
837
855
 
838
856
  # @overload save_file(name, type)
839
857
  # Saves an image in the named file.
840
858
  # @param name [String] Name of the file to save the image to.
841
- # @param type [BitmapType] Currently these types can be used:
859
+ # @param type [Wx::BitmapType] Currently these types can be used:
860
+ #
842
861
  # - {Wx::BitmapType::BITMAP_TYPE_BMP}: Save a BMP image file.
862
+ #
843
863
  # - {Wx::BitmapType::BITMAP_TYPE_JPEG}: Save a JPEG image file.
864
+ #
844
865
  # - {Wx::BitmapType::BITMAP_TYPE_PNG}: Save a PNG image file.
866
+ #
845
867
  # - {Wx::BitmapType::BITMAP_TYPE_PCX}: Save a PCX image file (tries to save as 8-bit if possible, falls back to 24-bit otherwise).
868
+ #
846
869
  # - {Wx::BitmapType::BITMAP_TYPE_PNM}: Save a PNM image file (as raw RGB always).
870
+ #
847
871
  # - {Wx::BitmapType::BITMAP_TYPE_TIFF}: Save a TIFF image file.
872
+ #
848
873
  # - {Wx::BitmapType::BITMAP_TYPE_XPM}: Save a XPM image file.
874
+ #
849
875
  # - {Wx::BitmapType::BITMAP_TYPE_ICO}: Save a Windows icon file (ICO). The size may be up to 255 wide by 127 high. A single image is saved in 8 colors at the size supplied.
876
+ #
850
877
  # - {Wx::BitmapType::BITMAP_TYPE_CUR}: Save a Windows cursor file (CUR).
851
- # @return [true,false]
878
+ # @return [Boolean]
852
879
  # @overload save_file(name, mimetype)
853
880
  # Saves an image in the named file.
854
881
  # @param name [String] Name of the file to save the image to.
855
882
  # @param mimetype [String] MIME type.
856
- # @return [true,false]
883
+ # @return [Boolean]
857
884
  # @overload save_file(name)
858
885
  # Saves an image in the named file.
859
886
  # File type is determined from the extension of the file name. Note that this function may fail if the extension is not recognized! You can use one of the forms above to save images to files with non-standard extensions.
860
887
  # @param name [String] Name of the file to save the image to.
861
- # @return [true,false]
888
+ # @return [Boolean]
862
889
  def save_file(*args) end
863
890
 
864
891
  # This function is similar to {Wx::Image#set_data} and has similar restrictions.
@@ -894,10 +921,10 @@ module Wx
894
921
  # Sets the flags used for loading image files by this object.
895
922
  # The flags will affect any future calls to {Wx::Image#load_file} for this object. To change the flags for all image objects, call {Wx::Image.set_default_load_flags} before creating any of them.
896
923
  # Currently the only defined flag is Load_Verbose which determines if the non-fatal (i.e. not preventing the file from being loaded completely) problems should result in the calls to {log_warning} function. It is recommended to customize handling of these warnings by e.g. defining a custom log target (see Logging Overview), but if such warnings should be completely suppressed, clearing this flag provides a simple way to do it, for example:
897
- # ```
898
- # wxImage image;
899
- # image.SetLoadFlags(image.GetLoadFlags() & ~wxImage::Load_Verbose);
900
- # image.LoadFile(...);
924
+ # ```ruby
925
+ # image = Wx::Image.new
926
+ # image.set_load_flags(image.get_load_flags & ~Wx::Image::Load_Verbose)
927
+ # image.load_file(...)
901
928
  # ```
902
929
  # @see Wx::Image#load_file
903
930
  # @see Wx::Image#set_load_flags
@@ -909,7 +936,7 @@ module Wx
909
936
 
910
937
  # Specifies whether there is a mask or not.
911
938
  # The area of the mask is determined by the current mask colour.
912
- # @param hasMask [true,false]
939
+ # @param hasMask [Boolean]
913
940
  # @return [void]
914
941
  def set_mask(hasMask=true) end
915
942
  alias_method :mask=, :set_mask
@@ -932,7 +959,7 @@ module Wx
932
959
  # @param mr [Integer]
933
960
  # @param mg [Integer]
934
961
  # @param mb [Integer]
935
- # @return [true,false]
962
+ # @return [Boolean]
936
963
  def set_mask_from_image(mask, mr, mg, mb) end
937
964
 
938
965
  # @overload set_option(name, value)
@@ -981,7 +1008,7 @@ module Wx
981
1008
  # Set the type of image returned by {Wx::Image#get_type}.
982
1009
  # This method is mostly used internally by the library but can also be called from the user code if the image was created from data in the given bitmap format without using {Wx::Image#load_file} (which would set the type correctly automatically).
983
1010
  # Notice that the image must be created before this function is called.
984
- # @param type [BitmapType] One of bitmap type constants, {Wx::BitmapType::BITMAP_TYPE_INVALID} is a valid value for it and can be used to reset the bitmap type to default but {Wx::BITMAP_TYPE_MAX} is not allowed here.
1011
+ # @param type [Wx::BitmapType] One of bitmap type constants, {Wx::BitmapType::BITMAP_TYPE_INVALID} is a valid value for it and can be used to reset the bitmap type to default but {Wx::BITMAP_TYPE_MAX} is not allowed here.
985
1012
  # @return [void]
986
1013
  def set_type(type) end
987
1014
  alias_method :type=, :set_type
@@ -1000,53 +1027,66 @@ module Wx
1000
1027
  # For the overload taking the parameter filename, that's the name of the file to query. For the overload taking the parameter stream, that's the opened input stream with image data.
1001
1028
  # See Wx::ImageHandler#get_image_count for more info.
1002
1029
  # The parameter type may be one of the following values:
1030
+ #
1003
1031
  # - {Wx::BitmapType::BITMAP_TYPE_BMP}: Load a Windows bitmap file.
1032
+ #
1004
1033
  # - {Wx::BitmapType::BITMAP_TYPE_GIF}: Load a GIF bitmap file.
1034
+ #
1005
1035
  # - {Wx::BitmapType::BITMAP_TYPE_JPEG}: Load a JPEG bitmap file.
1036
+ #
1006
1037
  # - {Wx::BitmapType::BITMAP_TYPE_PNG}: Load a PNG bitmap file.
1038
+ #
1007
1039
  # - {Wx::BitmapType::BITMAP_TYPE_PCX}: Load a PCX bitmap file.
1040
+ #
1008
1041
  # - {Wx::BitmapType::BITMAP_TYPE_PNM}: Load a PNM bitmap file.
1042
+ #
1009
1043
  # - {Wx::BitmapType::BITMAP_TYPE_TIFF}: Load a TIFF bitmap file.
1044
+ #
1010
1045
  # - {Wx::BitmapType::BITMAP_TYPE_TGA}: Load a TGA bitmap file.
1046
+ #
1011
1047
  # - {Wx::BitmapType::BITMAP_TYPE_XPM}: Load a XPM bitmap file.
1048
+ #
1012
1049
  # - {Wx::BitmapType::BITMAP_TYPE_ICO}: Load a Windows icon file (ICO).
1050
+ #
1013
1051
  # - {Wx::BitmapType::BITMAP_TYPE_CUR}: Load a Windows cursor file (CUR).
1052
+ #
1014
1053
  # - {Wx::BitmapType::BITMAP_TYPE_ANI}: Load a Windows animated cursor file (ANI).
1054
+ #
1015
1055
  # - {Wx::BitmapType::BITMAP_TYPE_ANY}: Will try to autodetect the format.
1016
1056
  #
1017
1057
  # Number of available images. For most image handlers, this is 1 (exceptions are TIFF and ICO formats as well as animated GIFs for which this function returns the number of frames in the animation).
1018
1058
  # @param filename [String]
1019
- # @param type [BitmapType]
1059
+ # @param type [Wx::BitmapType]
1020
1060
  # @return [Integer]
1021
1061
  def self.get_image_count(filename, type=Wx::BitmapType::BITMAP_TYPE_ANY) end
1022
1062
 
1023
1063
  # @overload initialize()
1024
1064
  # Creates an empty {Wx::Image} object without an alpha channel.
1025
- # @return [Image]
1065
+ # @return [Wx::Image]
1026
1066
  # @overload initialize(width, height, clear=true)
1027
1067
  # Creates an image with the given size and clears it if requested.
1028
1068
  # Does not create an alpha channel.
1029
1069
  # @param width [Integer] Specifies the width of the image.
1030
1070
  # @param height [Integer] Specifies the height of the image.
1031
- # @param clear [true,false] If true, initialize the image to black.
1032
- # @return [Image]
1071
+ # @param clear [Boolean] If true, initialize the image to black.
1072
+ # @return [Wx::Image]
1033
1073
  # @overload initialize(sz, clear=true)
1034
1074
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
1035
1075
  # @param sz [Array(Integer, Integer), Wx::Size]
1036
- # @param clear [true,false]
1037
- # @return [Image]
1076
+ # @param clear [Boolean]
1077
+ # @return [Wx::Image]
1038
1078
  # @overload initialize(width, height, data)
1039
1079
  # Creates an image from data in memory.
1040
1080
  # If static_data is false then the {Wx::Image} will take ownership of the data and free it afterwards. For this, it has to be allocated with malloc.
1041
1081
  # @param width [Integer] Specifies the width of the image.
1042
1082
  # @param height [Integer] Specifies the height of the image.
1043
1083
  # @param data [String] A pointer to RGB data
1044
- # @return [Image]
1084
+ # @return [Wx::Image]
1045
1085
  # @overload initialize(sz, data)
1046
1086
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
1047
1087
  # @param sz [Array(Integer, Integer), Wx::Size]
1048
1088
  # @param data [String]
1049
- # @return [Image]
1089
+ # @return [Wx::Image]
1050
1090
  # @overload initialize(width, height, data, alpha)
1051
1091
  # Creates an image from data in memory.
1052
1092
  # If static_data is false then the {Wx::Image} will take ownership of the data and free it afterwards. For this, it has to be allocated with malloc.
@@ -1054,51 +1094,59 @@ module Wx
1054
1094
  # @param height [Integer] Specifies the height of the image.
1055
1095
  # @param data [String] A pointer to RGB data
1056
1096
  # @param alpha [String] A pointer to alpha-channel data
1057
- # @return [Image]
1097
+ # @return [Wx::Image]
1058
1098
  # @overload initialize(sz, data, alpha)
1059
1099
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
1060
1100
  # @param sz [Array(Integer, Integer), Wx::Size]
1061
1101
  # @param data [String]
1062
1102
  # @param alpha [String]
1063
- # @return [Image]
1064
- # @overload initialize(xpmData)
1065
- # Creates an image from XPM data.
1066
- # This constructor has become explicit in wxWidgets 3.1.6.
1067
- # @param xpmData [char] A pointer to XPM image data.
1068
- # @return [Image]
1103
+ # @return [Wx::Image]
1069
1104
  # @overload initialize(name, type=Wx::BitmapType::BITMAP_TYPE_ANY, index=-1)
1070
1105
  # Creates an image from a file.
1071
1106
  # Depending on how wxWidgets has been configured and by which handlers have been loaded, not all formats may be available. Any handler other than BMP must be previously initialized with {Wx::Image.add_handler} or {init_all_image_handlers}.
1072
1107
  #
1073
1108
  # You can use {Wx::Image#get_option_int} to get the hotspot when loading cursor files:
1074
- # ```
1075
- # int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
1076
- # int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
1109
+ # ```ruby
1110
+ # hotspot_x = image.get_option_int(Wx::IMAGE_OPTION_CUR_HOTSPOT_X)
1111
+ # hotspot_y = image.get_option_int(Wx::IMAGE_OPTION_CUR_HOTSPOT_Y)
1077
1112
  # ```
1078
1113
  # @see Wx::Image#load_file
1079
1114
  # @param name [String] Name of the file from which to load the image.
1080
- # @param type [BitmapType] May be one of the following:
1115
+ # @param type [Wx::BitmapType] May be one of the following:
1116
+ #
1081
1117
  # - {Wx::BitmapType::BITMAP_TYPE_BMP}: Load a Windows bitmap file.
1118
+ #
1082
1119
  # - {Wx::BitmapType::BITMAP_TYPE_GIF}: Load a GIF bitmap file.
1120
+ #
1083
1121
  # - {Wx::BitmapType::BITMAP_TYPE_JPEG}: Load a JPEG bitmap file.
1122
+ #
1084
1123
  # - {Wx::BitmapType::BITMAP_TYPE_PNG}: Load a PNG bitmap file.
1124
+ #
1085
1125
  # - {Wx::BitmapType::BITMAP_TYPE_PCX}: Load a PCX bitmap file.
1126
+ #
1086
1127
  # - {Wx::BitmapType::BITMAP_TYPE_PNM}: Load a PNM bitmap file.
1128
+ #
1087
1129
  # - {Wx::BitmapType::BITMAP_TYPE_TIFF}: Load a TIFF bitmap file.
1130
+ #
1088
1131
  # - {Wx::BitmapType::BITMAP_TYPE_TGA}: Load a TGA bitmap file.
1132
+ #
1089
1133
  # - {Wx::BitmapType::BITMAP_TYPE_XPM}: Load a XPM bitmap file.
1134
+ #
1090
1135
  # - {Wx::BitmapType::BITMAP_TYPE_ICO}: Load a Windows icon file (ICO).
1136
+ #
1091
1137
  # - {Wx::BitmapType::BITMAP_TYPE_CUR}: Load a Windows cursor file (CUR).
1138
+ #
1092
1139
  # - {Wx::BitmapType::BITMAP_TYPE_ANI}: Load a Windows animated cursor file (ANI).
1140
+ #
1093
1141
  # - {Wx::BitmapType::BITMAP_TYPE_ANY}: Will try to autodetect the format.
1094
1142
  # @param index [Integer] Index of the image to load in the case that the image file contains multiple images. This is only used by GIF, ICO and TIFF handlers. The default value (-1) means "choose the default image" and is interpreted as the first image (index=0) by the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.
1095
- # @return [Image]
1143
+ # @return [Wx::Image]
1096
1144
  # @overload initialize(name, mimetype, index=-1)
1097
1145
  # Creates an image from a file using MIME-types to specify the type.
1098
1146
  # @param name [String] Name of the file from which to load the image.
1099
1147
  # @param mimetype [String] MIME type string (for example 'image/jpeg')
1100
1148
  # @param index [Integer] See description in wxImage(const wxString&, wxBitmapType, int) overload.
1101
- # @return [Image]
1149
+ # @return [Wx::Image]
1102
1150
  def initialize(*args) end
1103
1151
 
1104
1152
  # Returns the file load flags used for this object.
@@ -1111,12 +1159,12 @@ module Wx
1111
1159
  # Returns true if at least one of the available image handlers can read the file with the given name.
1112
1160
  # See Wx::ImageHandler::CanRead for more info.
1113
1161
  # @param filename [String]
1114
- # @return [true,false]
1162
+ # @return [Boolean]
1115
1163
  # @overload self.can_read(stream)
1116
1164
  # Returns true if at least one of the available image handlers can read the data in the given stream.
1117
1165
  # See Wx::ImageHandler::CanRead for more info.
1118
1166
  # @param stream [IO,Wx::InputStream]
1119
- # @return [true,false]
1167
+ # @return [Boolean]
1120
1168
  def self.can_read(*args) end
1121
1169
 
1122
1170
  # Returns the currently used default file load flags.
@@ -1126,10 +1174,12 @@ module Wx
1126
1174
 
1127
1175
  # Iterates all registered {Wx::ImageHandler} objects, and returns a string containing file extension masks suitable for passing to file open/save dialog boxes.
1128
1176
  # The format of the returned string is <code>"(*.ext1;*.ext2)|*.ext1;*.ext2"</code>. It is usually a good idea to prepend a description before passing the result to the dialog. Example:
1129
- # ```
1130
- # wxFileDialog FileDlg( this, "Choose Image", ::wxGetCwd(), "",
1131
- # _("Image Files ") + wxImage::GetImageExtWildcard(),
1132
- # wxFD_OPEN );
1177
+ # ```ruby
1178
+ # Wx::FileDialog(self, 'Choose Image', Dir.getwd, '',
1179
+ # 'Image Files ' + Wx::Image.get_image_ext_wildcard,
1180
+ # Wx::FD_OPEN) do |file_dlg|
1181
+ # # ...
1182
+ # end
1133
1183
  # ```
1134
1184
  # @see Wx::ImageHandler
1135
1185
  # @return [String]