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
@@ -0,0 +1,131 @@
1
+ # :stopdoc:
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # :startdoc:
5
+
6
+
7
+ module Wx
8
+
9
+ #
10
+ #
11
+ HD_ALLOW_REORDER = 1
12
+
13
+ #
14
+ #
15
+ HD_ALLOW_HIDE = 2
16
+
17
+ #
18
+ #
19
+ HD_BITMAP_ON_RIGHT = 4
20
+
21
+ #
22
+ #
23
+ HD_DEFAULT_STYLE = 1
24
+
25
+ #
26
+ #
27
+ EVT_HEADER_CLICK = 10157
28
+
29
+ #
30
+ #
31
+ EVT_HEADER_RIGHT_CLICK = 10158
32
+
33
+ #
34
+ #
35
+ EVT_HEADER_MIDDLE_CLICK = 10159
36
+
37
+ #
38
+ #
39
+ EVT_HEADER_DCLICK = 10160
40
+
41
+ #
42
+ #
43
+ EVT_HEADER_RIGHT_DCLICK = 10161
44
+
45
+ #
46
+ #
47
+ EVT_HEADER_MIDDLE_DCLICK = 10162
48
+
49
+ #
50
+ #
51
+ EVT_HEADER_SEPARATOR_DCLICK = 10163
52
+
53
+ #
54
+ #
55
+ EVT_HEADER_BEGIN_RESIZE = 10164
56
+
57
+ #
58
+ #
59
+ EVT_HEADER_RESIZING = 10165
60
+
61
+ #
62
+ #
63
+ EVT_HEADER_END_RESIZE = 10166
64
+
65
+ #
66
+ #
67
+ EVT_HEADER_BEGIN_REORDER = 10167
68
+
69
+ #
70
+ #
71
+ EVT_HEADER_END_REORDER = 10168
72
+
73
+ #
74
+ #
75
+ EVT_HEADER_DRAGGING_CANCELLED = 10169
76
+
77
+ # Event class representing the events generated by {Wx::HeaderCtrl}.
78
+ # ===
79
+ #
80
+ # Category: {Wx::Events}
81
+ # @see Wx::HeaderCtrl
82
+ #
83
+ #
84
+ class HeaderCtrlEvent < NotifyEvent
85
+
86
+ # @overload initialize(commandType=Wx::EVT_NULL, winid=0)
87
+ # @param commandType [Wx::CommandLinkButton::EventType]
88
+ # @param winid [Integer]
89
+ # @return [Wx::HeaderCtrlEvent]
90
+ # @overload initialize(event)
91
+ # @param event [Wx::HeaderCtrlEvent]
92
+ # @return [Wx::HeaderCtrlEvent]
93
+ def initialize(*args) end
94
+
95
+ # Return the index of the column affected by this event.
96
+ # This method can be called for all header control events.
97
+ # @return [Integer]
98
+ def get_column; end
99
+ alias_method :column, :get_column
100
+
101
+ # @param col [Integer]
102
+ # @return [void]
103
+ def set_column(col) end
104
+ alias_method :column=, :set_column
105
+
106
+ # Return the current width of the column.
107
+ # This method can only be called for the dragging events.
108
+ # @return [Integer]
109
+ def get_width; end
110
+ alias_method :width, :get_width
111
+
112
+ # @param width [Integer]
113
+ # @return [void]
114
+ def set_width(width) end
115
+ alias_method :width=, :set_width
116
+
117
+ # Return the new order of the column.
118
+ # This method can only be called for a reorder event for which it indicates the tentative new position for the column {Wx::HeaderCtrlEvent#get_column} selected by the user. If the event is not vetoed, this will become the new column position in {Wx::HeaderCtrl#get_columns_order}.
119
+ # @return [Integer]
120
+ def get_new_order; end
121
+ alias_method :new_order, :get_new_order
122
+
123
+ # @param order [Integer]
124
+ # @return [void]
125
+ def set_new_order(order) end
126
+ alias_method :new_order=, :set_new_order
127
+
128
+ end # HeaderCtrlEvent
129
+
130
+
131
+ end
@@ -29,15 +29,18 @@ module Wx
29
29
  # A help controller allows an application to display help, at the contents or at a particular topic, and shut the help program down on termination. This avoids proliferation of many instances of the help viewer whenever the user requests a different topic via the application's menus or buttons.
30
30
  # Typically, an application will create a help controller instance when it starts, and immediately call {Wx::HelpController::Initialize} to associate a filename with it. The help viewer will only get run, however, just before the first call to display something.
31
31
  # Most help controller classes actually derive from {Wx::HelpControllerBase} and have names of the form {Wx::XXXHelpController} or {Wx::HelpControllerXXX}. An appropriate class is aliased to the name {Wx::HelpController} for each platform, as follows:
32
- # - On desktop Windows, {Wx::CHMHelpController} is used (MS HTML Help).- On all other platforms, {Wx::HTML::HtmlHelpController} is used if {Wx::HTML} is compiled into wxWidgets; otherwise {Wx::ExtHelpController} is used (for invoking an external browser).
32
+ #
33
+ # - On desktop Windows, {Wx::CHMHelpController} is used (MS HTML Help).
34
+ # - On all other platforms, {Wx::HTML::HtmlHelpController} is used if {Wx::HTML} is compiled into wxWidgets; otherwise {Wx::ExtHelpController} is used (for invoking an external browser).
33
35
  #
34
36
  # The remaining help controller classes need to be named explicitly by an application that wishes to make use of them.
35
37
  # The following help controller classes are defined:
36
- # - {Wx::WinHelpController}, for controlling Windows Help.- {Wx::CHMHelpController}, for controlling MS HTML Help. To use this, you need to set {Wx::Setup::USE_MS_HTML_HELP} to 1 in setup.h and have the htmlhelp.h header from Microsoft's HTML Help kit. (You don't need the VC++-specific htmlhelp.lib because wxWidgets loads necessary DLL at runtime and so it works with all compilers.)- {Wx::BestHelpController}, for controlling MS HTML Help or, if Microsoft's runtime is not available, {Wx::HTML::HtmlHelpController}. You need to provide <b>both</b> CHM and HTB versions of the help file. For {Wx::MSW} only.- {Wx::ExtHelpController}, for controlling external browsers under Unix. The default browser is Netscape Navigator. The 'help' sample shows its use.- {Wx::HTML::HtmlHelpController}, a sophisticated help controller using {Wx::HTML}, in a similar style to the Microsoft HTML Help viewer and using some of the same files. Although it has an API compatible with other help controllers, it has more advanced features, so it is recommended that you use the specific API for this class instead. Note that if you use .zip or .htb formats for your books, you must add this line to your application initialization:
37
- # ```
38
- # wxFileSystem::AddHandler(new wxArchiveFSHandler);
39
- # ```
40
- # or nothing will be shown in your help window.
38
+ #
39
+ # - {Wx::WinHelpController}, for controlling Windows Help.
40
+ # - {Wx::CHMHelpController}, for controlling MS HTML Help. To use this, you need to set {Wx::Setup::USE_MS_HTML_HELP} to 1 in setup.h and have the htmlhelp.h header from Microsoft's HTML Help kit. (You don't need the VC++-specific htmlhelp.lib because wxWidgets loads necessary DLL at runtime and so it works with all compilers.)
41
+ # - {Wx::BestHelpController}, for controlling MS HTML Help or, if Microsoft's runtime is not available, {Wx::HTML::HtmlHelpController}. You need to provide <b>both</b> CHM and HTB versions of the help file. For wxMSW only.
42
+ # - {Wx::ExtHelpController}, for controlling external browsers under Unix. The default browser is Netscape Navigator. The 'help' sample shows its use.
43
+ # - {Wx::HTML::HtmlHelpController}, a sophisticated help controller using {Wx::HTML}, in a similar style to the Microsoft HTML Help viewer and using some of the same files. Although it has an API compatible with other help controllers, it has more advanced features, so it is recommended that you use the specific API for this class instead. Note that in Ruby the required filesystem handlers for .zip or .htb books are always loaded.
41
44
  #
42
45
  # ===
43
46
  #
@@ -52,24 +55,24 @@ module Wx
52
55
  # If you provide a window, it will be used by some help controller classes, such as {Wx::CHMHelpController}, {Wx::WinHelpController} and {Wx::HTML::HtmlHelpController}, as the parent for the help window instead of the value of {Wx::App#get_top_window}.
53
56
  # You can also change the parent window later with {Wx::HelpController#set_parent_window}.
54
57
  # @param parentWindow [Wx::Window]
55
- # @return [HelpController]
58
+ # @return [Wx::HelpController]
56
59
  def initialize(parentWindow=nil) end
57
60
 
58
61
  # If the help viewer is not running, runs it and displays the contents.
59
- # @return [true,false]
62
+ # @return [Boolean]
60
63
  def display_contents; end
61
64
 
62
65
  # Displays the section as a popup window using a context id.
63
66
  # Returns false if unsuccessful or not implemented.
64
67
  # @param contextId [Integer]
65
- # @return [true,false]
68
+ # @return [Boolean]
66
69
  def display_context_popup(contextId) end
67
70
 
68
71
  # Displays the text in a popup window, if possible.
69
72
  # Returns false if unsuccessful or not implemented.
70
73
  # @param text [String]
71
74
  # @param pos [Array(Integer, Integer), Wx::Point]
72
- # @return [true,false]
75
+ # @return [Boolean]
73
76
  def display_text_popup(text, pos) end
74
77
 
75
78
  # Returns the window to be used as the parent for the help window.
@@ -82,16 +85,19 @@ module Wx
82
85
  # Does not invoke the help viewer. This must be called directly after the help instance object is created and before any attempts to communicate with the viewer.
83
86
  # You may omit the file extension and a suitable one will be chosen. For {Wx::HTML::HtmlHelpController}, the extensions zip, htb and hhp will be appended while searching for a suitable file. For WinHelp, the hlp extension is appended.
84
87
  # @param file [String]
85
- # @return [true,false]
88
+ # @return [Boolean]
86
89
  def init(file) end
87
90
 
88
91
  # If the help viewer is not running, runs it, and searches for sections matching the given keyword.
89
92
  # If one match is found, the file is displayed at this section. The optional parameter allows searching the index ({Wx::HelpSearchMode::HELP_SEARCH_INDEX}) but this currently is only supported by the {Wx::HTML::HtmlHelpController}.
90
93
  #
91
- # - WinHelp, MS HTML Help: If more than one match is found, the first topic is displayed.- MS HTML Help: Pass an empty string to display the search page.- External HTML help, simple {Wx::HTML} help: If more than one match is found, a choice of topics is displayed.- {Wx::HTML::HtmlHelpController}: see {Wx::HTML::HtmlHelpController::KeywordSearch}.
94
+ # - WinHelp, MS HTML Help: If more than one match is found, the first topic is displayed.
95
+ # - MS HTML Help: Pass an empty string to display the search page.
96
+ # - External HTML help, simple {Wx::HTML} help: If more than one match is found, a choice of topics is displayed.
97
+ # - {Wx::HTML::HtmlHelpController}: see {Wx::HTML::HtmlHelpController::KeywordSearch}.
92
98
  # @param keyWord [String]
93
- # @param mode [HelpSearchMode]
94
- # @return [true,false]
99
+ # @param mode [Wx::HelpSearchMode]
100
+ # @return [Boolean]
95
101
  def keyword_search(keyWord, mode=Wx::HelpSearchMode::HELP_SEARCH_ALL) end
96
102
 
97
103
  # Overridable member called when this application's viewer is quit by the user.
@@ -106,7 +112,7 @@ module Wx
106
112
  # @param titleFormat [String]
107
113
  # @param size [Array(Integer, Integer), Wx::Size]
108
114
  # @param pos [Array(Integer, Integer), Wx::Point]
109
- # @param newFrameEachTime [true,false]
115
+ # @param newFrameEachTime [Boolean]
110
116
  # @return [void]
111
117
  def set_frame_parameters(titleFormat, size, pos=Wx::DEFAULT_POSITION, newFrameEachTime=false) end
112
118
 
@@ -120,10 +126,10 @@ module Wx
120
126
  # Sets detailed viewer information.
121
127
  # So far this is only relevant to {Wx::ExtHelpController}. Some examples of usage:
122
128
  #
123
- # ```
124
- # m_help.SetViewer("kdehelp");
125
- # m_help.SetViewer("gnome-help-browser");
126
- # m_help.SetViewer("netscape", wxHELP_NETSCAPE);
129
+ # ```ruby
130
+ # @help.set_viewer('kdehelp')
131
+ # @help.set_viewer('gnome-help-browser')
132
+ # @help.set_viewer('netscape', Wx::HELP_NETSCAPE)
127
133
  # ```
128
134
  #
129
135
  # Todomodernize this function with {Wx::LaunchDefaultBrowser}
@@ -52,15 +52,15 @@ module Wx
52
52
  # Shows help for the given window.
53
53
  # Override this function if the help doesn't depend on the exact position inside the window, otherwise you need to override {Wx::HelpProvider#show_help_at_point}. Returns true if help was shown, or false if no help was available for this window.
54
54
  # @param window [Wx::Window]
55
- # @return [true,false]
55
+ # @return [Boolean]
56
56
  def show_help(window) end
57
57
 
58
58
  # This function may be overridden to show help for the window when it should depend on the position inside the window, By default this method forwards to {Wx::HelpProvider#show_help}, so it is enough to only implement the latter if the help doesn't depend on the position.
59
59
  # true if help was shown, or false if no help was available for this window.
60
60
  # @param window [Wx::Window] Window to show help text for.
61
61
  # @param point [Array(Integer, Integer), Wx::Point] Coordinates of the mouse at the moment of help event emission.
62
- # @param origin [Wx::HelpEvent::Origin] Help event origin, see {Wx::HelpEvent#get_origin}.
63
- # @return [true,false]
62
+ # @param origin [Wx::wxHelpEvent::Origin] Help event origin, see {Wx::HelpEvent#get_origin}.
63
+ # @return [Boolean]
64
64
  def show_help_at_point(window, point, origin) end
65
65
 
66
66
  # Returns pointer to help provider instance.
@@ -134,7 +134,7 @@ module Wx::HTML
134
134
  class HtmlCell < Object
135
135
 
136
136
  # Constructor.
137
- # @return [HtmlCell]
137
+ # @return [Wx::HTML::HtmlCell]
138
138
  def initialize; end
139
139
 
140
140
  # Find a cell inside this cell positioned at the given coordinates (relative to this's positions).
@@ -172,33 +172,17 @@ module Wx::HTML
172
172
  # See {Wx::HTML::HtmlLinkInfo}. (Note: this makes sense only for visible tags).
173
173
  # @param x [Integer] Coordinates of position where the user pressed mouse button. These coordinates are used e.g. by COLORMAP. Values are relative to the upper left corner of THIS cell (i.e. from 0 to m_Width or m_Height)
174
174
  # @param y [Integer]
175
- # @return [Wx::HtmlLinkInfo]
175
+ # @return [Wx::HTML::HtmlLinkInfo]
176
176
  def get_link(x=0, y=0) end
177
177
  alias_method :link, :get_link
178
178
 
179
- # Returns cursor to show when mouse pointer is over the cell.
180
- #
181
- # @see Wx::HTML::HtmlCell#get_mouse_cursor_at
182
- # @param window [Wx::HtmlWindowInterface] interface to the parent HTML window
183
- # @return [Wx::Cursor]
184
- def get_mouse_cursor(window) end
185
- alias_method :mouse_cursor, :get_mouse_cursor
186
-
187
- # Returns cursor to show when mouse pointer is over the specified point.
188
- # This function should be overridden instead of {Wx::HTML::HtmlCell#get_mouse_cursor_at} if the cursor should depend on the exact position of the mouse in the window.
189
- # @param window [Wx::HtmlWindowInterface] interface to the parent HTML window
190
- # @param rePos [Array(Integer, Integer), Wx::Point] Position to show cursor.
191
- # @return [Wx::Cursor]
192
- def get_mouse_cursor_at(window, rePos) end
193
- alias_method :mouse_cursor_at, :get_mouse_cursor_at
194
-
195
179
  # Returns pointer to the next cell in list (see {Wx::htmlcell.h} if you're interested in details).
196
180
  # @return [Wx::HTML::HtmlCell,Wx::HTML::HtmlContainerCell]
197
181
  def get_next; end
198
182
  alias_method :next_, :get_next
199
183
 
200
184
  # Returns pointer to parent container.
201
- # @return [Wx::HtmlContainerCell]
185
+ # @return [Wx::HTML::HtmlContainerCell]
202
186
  def get_parent; end
203
187
  alias_method :parent, :get_parent
204
188
 
@@ -228,21 +212,21 @@ module Wx::HTML
228
212
 
229
213
  # Sets the hypertext link associated with this cell.
230
214
  # (Default value is {Wx::HTML::HtmlLinkInfo}("", "") (no link))
231
- # @param link [Wx::HtmlLinkInfo]
215
+ # @param link [Wx::HTML::HtmlLinkInfo]
232
216
  # @return [void]
233
217
  def set_link(link) end
234
218
  alias_method :link=, :set_link
235
219
 
236
220
  # Sets the next cell in the list.
237
221
  # This shouldn't be called by user - it is to be used only by {Wx::HTML::HtmlContainerCell#insert_cell}.
238
- # @param cell [Wx::HtmlCell]
222
+ # @param cell [Wx::HTML::HtmlCell]
239
223
  # @return [void]
240
224
  def set_next(cell) end
241
225
  alias_method :next_=, :set_next
242
226
 
243
227
  # Sets parent container of this cell.
244
228
  # This is called from {Wx::HTML::HtmlContainerCell#insert_cell}.
245
- # @param p [Wx::HtmlContainerCell]
229
+ # @param p [Wx::HTML::HtmlContainerCell]
246
230
  # @return [void]
247
231
  def set_parent(p) end
248
232
  alias_method :parent=, :set_parent
@@ -255,7 +239,7 @@ module Wx::HTML
255
239
 
256
240
  # Converts the cell into text representation.
257
241
  # If sel != NULL then only part of the cell inside the selection is converted.
258
- # @param sel [Wx::HtmlSelection]
242
+ # @param sel [Wx::HTML::HtmlSelection]
259
243
  # @return [String]
260
244
  def convert_to_text(sel) end
261
245
 
@@ -275,12 +259,12 @@ module Wx::HTML
275
259
 
276
260
  # @overload initialize()
277
261
  # Default ctor.
278
- # @return [HtmlLinkInfo]
262
+ # @return [Wx::HTML::HtmlLinkInfo]
279
263
  # @overload initialize(href, target=(''))
280
264
  # Construct hypertext link from HREF (aka URL) and TARGET (name of target frame).
281
265
  # @param href [String]
282
266
  # @param target [String]
283
- # @return [HtmlLinkInfo]
267
+ # @return [Wx::HTML::HtmlLinkInfo]
284
268
  def initialize(*args) end
285
269
 
286
270
  # Return pointer to event that generated OnLinkClicked() event.
@@ -296,7 +280,7 @@ module Wx::HTML
296
280
 
297
281
  # Return pointer to the cell that was clicked.
298
282
  # Valid only within {Wx::HTML::HtmlWindow#on_link_clicked}, NULL otherwise.
299
- # @return [Wx::HtmlCell]
283
+ # @return [Wx::HTML::HtmlCell]
300
284
  def get_html_cell; end
301
285
  alias_method :html_cell, :get_html_cell
302
286
 
@@ -319,13 +303,13 @@ module Wx::HTML
319
303
 
320
304
  # Constructor.
321
305
  # parent is pointer to parent container or NULL.
322
- # @param parent [Wx::HtmlContainerCell]
323
- # @return [HtmlContainerCell]
306
+ # @param parent [Wx::HTML::HtmlContainerCell]
307
+ # @return [Wx::HTML::HtmlContainerCell]
324
308
  def initialize(parent) end
325
309
 
326
310
  # Detach a child cell.
327
311
  # Detaching a cell removes it from this container and allows reattaching it to another one by using {Wx::HTML::HtmlContainerCell#insert_cell}. Alternatively, this method can be used to selectively remove some elements of the HTML document tree by deleting the cell after calling it.
328
- # @param cell [Wx::HtmlCell] Must be non-null and an immediate child of this cell.
312
+ # @param cell [Wx::HTML::HtmlCell] Must be non-null and an immediate child of this cell.
329
313
  # @return [void]
330
314
  def detach(cell) end
331
315
 
@@ -360,21 +344,18 @@ module Wx::HTML
360
344
 
361
345
  # Inserts a new cell into the container.
362
346
  # Note that the container takes ownership of the cell and will delete it when it itself is destroyed.
363
- # @param cell [Wx::HtmlCell]
347
+ # @param cell [Wx::HTML::HtmlCell]
364
348
  # @return [void]
365
349
  def insert_cell(cell) end
366
350
 
367
- # Sets the container's alignment (both horizontal and vertical) according to the values stored in tag.
368
- # (Tags ALIGN parameter is extracted.) In fact it is only a front-end to {Wx::HTML::HtmlContainerCell#set_align_hor} and {Wx::HTML::HtmlContainerCell#set_align_ver}.
369
- # @param tag [Wx::HtmlTag]
370
- # @return [void]
371
- def set_align(tag) end
372
- alias_method :align=, :set_align
373
-
374
351
  # Sets the container's horizontal alignment.
375
352
  # During {Wx::HTML::HtmlCell#layout} each line is aligned according to al value.
376
353
  # @param al [Integer] new horizontal alignment. May be one of these values:
377
- # - {Wx::HTML::HTML_ALIGN_LEFT}: lines are left-aligned (default)- {Wx::HTML::HTML_ALIGN_JUSTIFY}: lines are justified- {Wx::HTML::HTML_ALIGN_CENTER}: lines are centered- {Wx::HTML::HTML_ALIGN_RIGHT}: lines are right-aligned
354
+ #
355
+ # - {Wx::HTML::HTML_ALIGN_LEFT}: lines are left-aligned (default)
356
+ # - {Wx::HTML::HTML_ALIGN_JUSTIFY}: lines are justified
357
+ # - {Wx::HTML::HTML_ALIGN_CENTER}: lines are centered
358
+ # - {Wx::HTML::HTML_ALIGN_RIGHT}: lines are right-aligned
378
359
  # @return [void]
379
360
  def set_align_hor(al) end
380
361
  alias_method :align_hor=, :set_align_hor
@@ -382,7 +363,10 @@ module Wx::HTML
382
363
  # Sets the container's vertical alignment.
383
364
  # This is per-line alignment!
384
365
  # @param al [Integer] new vertical alignment. May be one of these values:
385
- # - {Wx::HTML::HTML_ALIGN_BOTTOM}: cells are over the line (default)- {Wx::HTML::HTML_ALIGN_CENTER}: cells are centered on line- {Wx::HTML::HTML_ALIGN_TOP}: cells are under the line
366
+ #
367
+ # - {Wx::HTML::HTML_ALIGN_BOTTOM}: cells are over the line (default)
368
+ # - {Wx::HTML::HTML_ALIGN_CENTER}: cells are centered on line
369
+ # - {Wx::HTML::HTML_ALIGN_TOP}: cells are under the line
386
370
  # @return [void]
387
371
  def set_align_ver(al) end
388
372
  alias_method :align_ver=, :set_align_ver
@@ -404,9 +388,18 @@ module Wx::HTML
404
388
  # Sets the indentation (free space between borders of container and subcells).
405
389
  # @param i [Integer] Indentation value.
406
390
  # @param what [Integer] Determines which of the four borders we're setting. It is OR combination of following constants:
407
- # - {Wx::HTML::HTML_INDENT_TOP}: top border- {Wx::HTML::HTML_INDENT_BOTTOM}: bottom- {Wx::HTML::HTML_INDENT_LEFT}: left- {Wx::HTML::HTML_INDENT_RIGHT}: right- {Wx::HTML::HTML_INDENT_HORIZONTAL}: left and right- {Wx::HTML::HTML_INDENT_VERTICAL}: top and bottom- {Wx::HTML::HTML_INDENT_ALL}: all 4 borders
391
+ #
392
+ # - {Wx::HTML::HTML_INDENT_TOP}: top border
393
+ # - {Wx::HTML::HTML_INDENT_BOTTOM}: bottom
394
+ # - {Wx::HTML::HTML_INDENT_LEFT}: left
395
+ # - {Wx::HTML::HTML_INDENT_RIGHT}: right
396
+ # - {Wx::HTML::HTML_INDENT_HORIZONTAL}: left and right
397
+ # - {Wx::HTML::HTML_INDENT_VERTICAL}: top and bottom
398
+ # - {Wx::HTML::HTML_INDENT_ALL}: all 4 borders
408
399
  # @param units [Integer] Units of i. This parameter affects interpretation of value.
409
- # - {Wx::HTML::HTML_UNITS_PIXELS}: i is number of pixels- {Wx::HTML::HTML_UNITS_PERCENT}: i is interpreted as percents of width of parent container
400
+ #
401
+ # - {Wx::HTML::HTML_UNITS_PIXELS}: i is number of pixels
402
+ # - {Wx::HTML::HTML_UNITS_PERCENT}: i is interpreted as percents of width of parent container
410
403
  # @return [void]
411
404
  def set_indent(i, what, units=Wx::HTML::HTML_UNITS_PIXELS) end
412
405
 
@@ -418,27 +411,75 @@ module Wx::HTML
418
411
  def set_min_height(h, align=Wx::HTML::HTML_ALIGN_TOP) end
419
412
  alias_method :min_height=, :set_min_height
420
413
 
421
- # @overload set_width_float(w, units)
422
- # Sets floating width adjustment.
423
- # The normal behaviour of container is that its width is the same as the width of parent container (and thus you can have only one sub-container per line). You can change this by setting the floating width adjustment.
424
- # @param w [Integer] Width of the container. If the value is negative it means complement to full width of parent container. E.g.
425
- # ```
426
- # SetWidthFloat(-50, wxHTML_UNITS_PIXELS)
427
- # ```
428
- # sets the width of container to parent's width minus 50 pixels. This is useful when creating tables - you can call SetWidthFloat(50) and SetWidthFloat(-50).
429
- # @param units [Integer] Units of w This parameter affects the interpretation of value.
430
- # - {Wx::HTML::HTML_UNITS_PIXELS}: w is number of pixels- {Wx::HTML::HTML_UNITS_PERCENT}: w is interpreted as percents of width of parent container
414
+ end # HtmlContainerCell
415
+
416
+ #
417
+ #
418
+ #
419
+ #
420
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
421
+ class HtmlSelection < ::Object
422
+
423
+ # @return [Wx::HTML::HtmlSelection]
424
+ def initialize; end
425
+
426
+ # @overload set(fromPos, fromCell, toPos, toCell)
427
+ # @param fromPos [Array(Integer, Integer), Wx::Point]
428
+ # @param fromCell [Wx::HTML::HtmlCell]
429
+ # @param toPos [Array(Integer, Integer), Wx::Point]
430
+ # @param toCell [Wx::HTML::HtmlCell]
431
431
  # @return [void]
432
- # @overload set_width_float(tag, pixel_scale=1.0)
433
- # Sets floating width adjustment.
434
- # The normal behaviour of container is that its width is the same as the width of parent container (and thus you can have only one sub-container per line). You can change this by setting the floating width adjustment.
435
- # @param tag [Wx::HtmlTag] In the second version of method, w and units info is extracted from tag's WIDTH parameter.
436
- # @param pixel_scale [Float] This is number of real pixels that equals to 1 HTML pixel.
432
+ # @overload set(fromCell, toCell)
433
+ # @param fromCell [Wx::HTML::HtmlCell]
434
+ # @param toCell [Wx::HTML::HtmlCell]
437
435
  # @return [void]
438
- def set_width_float(*args) end
439
- alias_method :width_float=, :set_width_float
436
+ def set(*args) end
440
437
 
441
- end # HtmlContainerCell
438
+ # @return [Wx::HTML::HtmlCell]
439
+ def get_from_cell; end
440
+ alias_method :from_cell, :get_from_cell
441
+
442
+ # @return [Wx::HTML::HtmlCell]
443
+ def get_to_cell; end
444
+ alias_method :to_cell, :get_to_cell
445
+
446
+ # @return [Wx::Point]
447
+ def get_from_pos; end
448
+ alias_method :from_pos, :get_from_pos
449
+
450
+ # @return [Wx::Point]
451
+ def get_to_pos; end
452
+ alias_method :to_pos, :get_to_pos
453
+
454
+ # @return [void]
455
+ def clear_from_to_character_pos; end
456
+
457
+ # @return [Boolean]
458
+ def are_from_to_character_pos_set; end
459
+
460
+ # @param pos [Integer]
461
+ # @return [void]
462
+ def set_from_character_pos(pos) end
463
+ alias_method :from_character_pos=, :set_from_character_pos
464
+
465
+ # @param pos [Integer]
466
+ # @return [void]
467
+ def set_to_character_pos(pos) end
468
+ alias_method :to_character_pos=, :set_to_character_pos
469
+
470
+ # @return [Integer]
471
+ def get_from_character_pos; end
472
+ alias_method :from_character_pos, :get_from_character_pos
473
+
474
+ # @return [Integer]
475
+ def get_to_character_pos; end
476
+ alias_method :to_character_pos, :get_to_character_pos
477
+
478
+ # @return [Boolean]
479
+ def is_empty; end
480
+ alias_method :empty?, :is_empty
481
+
482
+ end # HtmlSelection
442
483
 
443
484
 
444
485
  end
@@ -11,7 +11,9 @@ module Wx::HTML
11
11
  #
12
12
  # The following event-handler methods redirect the events to member method or handler blocks for {Wx::HTML::HtmlCellEvent} events.
13
13
  # Event handler methods:
14
+ #
14
15
  # - {Wx::EvtHandler#evt_html_cell_hover}(id, meth = nil, &block): User moved the mouse over a {Wx::HTML::HtmlCell}.
16
+ #
15
17
  # - {Wx::EvtHandler#evt_html_cell_clicked}(id, meth = nil, &block): User clicked on a {Wx::HTML::HtmlCell}. When handling this event, remember to use {Wx::HTML::HtmlCell#set_link_clicked(true)} if the cell contains a link.
16
18
  #
17
19
  # ===
@@ -21,12 +23,12 @@ module Wx::HTML
21
23
  class HtmlCellEvent < CommandEvent
22
24
 
23
25
  # The constructor is not normally used by the user code.
24
- # @param commandType [Integer]
26
+ # @param commandType [Wx::CommandLinkButton::EventType]
25
27
  # @param id [Integer]
26
- # @param cell [Wx::HtmlCell]
28
+ # @param cell [Wx::HTML::HtmlCell]
27
29
  # @param point [Array(Integer, Integer), Wx::Point]
28
30
  # @param ev [Wx::MouseEvent]
29
- # @return [HtmlCellEvent]
31
+ # @return [Wx::HTML::HtmlCellEvent]
30
32
  def initialize(commandType, id, cell, point, ev) end
31
33
 
32
34
  # Returns the {Wx::HTML::HtmlCellEvent} associated with the event.
@@ -35,7 +37,7 @@ module Wx::HTML
35
37
  alias_method :cell, :get_cell
36
38
 
37
39
  # Returns true if SetLinkClicked(true) has previously been called; false otherwise.
38
- # @return [true,false]
40
+ # @return [Boolean]
39
41
  def get_link_clicked; end
40
42
  alias_method :link_clicked, :get_link_clicked
41
43
 
@@ -51,7 +53,7 @@ module Wx::HTML
51
53
 
52
54
  # Call this function with linkclicked set to true if the cell which has been clicked contained a link or false otherwise (which is the default).
53
55
  # With this function the event handler can return info to the {Wx::HTML::HtmlWindow} which sent the event.
54
- # @param linkclicked [true,false]
56
+ # @param linkclicked [Boolean]
55
57
  # @return [void]
56
58
  def set_link_clicked(linkclicked) end
57
59
  alias_method :link_clicked=, :set_link_clicked
@@ -53,7 +53,7 @@ module Wx::HTML
53
53
  # Constructor.
54
54
  # @param name [String] Name of the printing object. Used by preview frames and setup dialogs.
55
55
  # @param parentWindow [Wx::Window] pointer to the window that will own the preview frame and setup dialogs. May be NULL.
56
- # @return [HtmlEasyPrinting]
56
+ # @return [Wx::HTML::HtmlEasyPrinting]
57
57
  def initialize(name=("Printing"), parentWindow=nil) end
58
58
 
59
59
  # Returns the current name being used for preview frames and setup dialogs.
@@ -63,7 +63,7 @@ module Wx::HTML
63
63
 
64
64
  # Returns a pointer to {Wx::PRT::PageSetupDialogData} instance used by this class.
65
65
  # You can set its parameters (via SetXXXX methods).
66
- # @return [Wx::PageSetupDialogData]
66
+ # @return [Wx::PRT::PageSetupDialogData]
67
67
  def get_page_setup_data; end
68
68
  alias_method :page_setup_data, :get_page_setup_data
69
69
 
@@ -74,7 +74,7 @@ module Wx::HTML
74
74
 
75
75
  # Returns pointer to {Wx::PRT::PrintData} instance used by this class.
76
76
  # You can set its parameters (via SetXXXX methods).
77
- # @return [Wx::PrintData]
77
+ # @return [Wx::PRT::PrintData]
78
78
  def get_print_data; end
79
79
  alias_method :print_data, :get_print_data
80
80
 
@@ -85,27 +85,27 @@ module Wx::HTML
85
85
  # Preview HTML file.
86
86
  # Returns false in case of error call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
87
87
  # @param htmlfile [String]
88
- # @return [true,false]
88
+ # @return [Boolean]
89
89
  def preview_file(htmlfile) end
90
90
 
91
91
  # Preview HTML text (not file!).
92
92
  # Returns false in case of error call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
93
93
  # @param htmltext [String] HTML text.
94
94
  # @param basepath [String] base directory (html string would be stored there if it was in file). It is used to determine path for loading images, for example.
95
- # @return [true,false]
95
+ # @return [Boolean]
96
96
  def preview_text(htmltext, basepath=('')) end
97
97
 
98
98
  # Print HTML file.
99
99
  # Returns false in case of error call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
100
100
  # @param htmlfile [String]
101
- # @return [true,false]
101
+ # @return [Boolean]
102
102
  def print_file(htmlfile) end
103
103
 
104
104
  # Print HTML text (not file!).
105
105
  # Returns false in case of error call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
106
106
  # @param htmltext [String] HTML text.
107
107
  # @param basepath [String] base directory (html string would be stored there if it was in file). It is used to determine path for loading images, for example.
108
- # @return [true,false]
108
+ # @return [Boolean]
109
109
  def print_text(htmltext, basepath=('')) end
110
110
 
111
111
  # Sets fonts.
@@ -142,7 +142,12 @@ module Wx::HTML
142
142
 
143
143
  # Set page header.
144
144
  # The following macros can be used inside it:
145
- # - @DATE@ is replaced by the current date in default format- @PAGENUM@ is replaced by page number- @PAGESCNT@ is replaced by total number of pages- @TIME@ is replaced by the current time in default format- @TITLE@ is replaced with the title of the document
145
+ #
146
+ # - @DATE@ is replaced by the current date in default format
147
+ # - @PAGENUM@ is replaced by page number
148
+ # - @PAGESCNT@ is replaced by total number of pages
149
+ # - @TIME@ is replaced by the current time in default format
150
+ # - @TITLE@ is replaced with the title of the document
146
151
  # @param header [String] HTML text to be used as header.
147
152
  # @param pg [Integer] one of {Wx::HTML::PAGE_ODD}, {Wx::HTML::PAGE_EVEN} and {Wx::HTML::PAGE_ALL} constants.
148
153
  # @return [void]
@@ -158,7 +163,7 @@ module Wx::HTML
158
163
  # Enable or disable showing the dialog before printing.
159
164
  # The prompt mode determines the value of the prompt parameter passed to {Wx::PRT::Printer#print} when it is called by this class.
160
165
  # Default prompt mode value is Prompt_Always.
161
- # @param promptMode [PromptMode]
166
+ # @param promptMode [Wx::wxHtmlEasyPrinting::PromptMode]
162
167
  # @return [void]
163
168
  def set_prompt_mode(promptMode) end
164
169
  alias_method :prompt_mode=, :set_prompt_mode