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,755 @@
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
+ # {Wx::HeaderCtrl} is the control containing the column headings which is usually used for display of tabular data.
10
+ # It is used as part of {Wx::GRID::Grid}, in generic version {Wx::DataViewCtrl} and report view of {Wx::ListCtrl} but can be also used independently. In general this class is meant to be used as part of another control which already stores the column information somewhere as it can't be used directly: instead you need to inherit from it and implement the {Wx::HeaderCtrl#get_column} method to provide column information. See {Wx::HeaderCtrlSimple} for a concrete control class which can be used directly.
11
+ # In addition to labeling the columns, the control has the following features:
12
+ #
13
+ # - Column reordering support, either by explicitly configuring the columns order and calling {Wx::HeaderCtrl#set_columns_order} or by dragging the columns interactively (if enabled).
14
+ # - Display of the icons in the header: this is often used to display a sort or reverse sort indicator when the column header is clicked.
15
+ #
16
+ # Notice that this control itself doesn't do anything other than displaying the column headers. In particular column reordering and sorting must still be supported by the associated control displaying the real data under the header. Also remember to call {Wx::HeaderCtrl#scroll_window} method of the control if the associated data display window has a horizontal scrollbar, otherwise the headers wouldn't align with the data when the window is scrolled.
17
+ # This control is implemented using the native header control under MSW systems and a generic implementation elsewhere.
18
+ #
19
+ # == Future Improvements
20
+ #
21
+ # Some features are supported by the native MSW control and so could be easily implemented in this version of {Wx::HeaderCtrl} but need to be implemented in the generic version as well to be really useful. Please let us know if you need or, better, plan to work on implementing, any of them:
22
+ #
23
+ # - Displaying bitmaps instead of or together with the text
24
+ # - Custom drawn headers
25
+ # - Filters associated with a column.
26
+ # === Styles
27
+ #
28
+ # This class supports the following styles:
29
+ #
30
+ # - {Wx::HD_ALLOW_REORDER}: If this style is specified (it is by default), the user can reorder the control columns by dragging them.
31
+ #
32
+ # - {Wx::HD_ALLOW_HIDE}: If this style is specified, the control shows a popup menu allowing the user to change the columns visibility on right mouse click. Notice that the program can always hide or show the columns, this style only affects the users capability to do it.
33
+ #
34
+ # - {Wx::HD_BITMAP_ON_RIGHT}: The column image, if any, will be shown on the right side if this style is used. Note that this style is only implemented in wxMSW currently and doesn't do anything under the other platforms. It is available since wxWidgets 3.1.1.
35
+ #
36
+ # - {Wx::HD_DEFAULT_STYLE}: Symbolic name for the default control style, currently equal to {Wx::HD_ALLOW_REORDER}.
37
+ #
38
+ # === Events emitted by this class
39
+ #
40
+ # The following event-handler methods redirect the events to member method or handler blocks for {Wx::HeaderCtrlEvent} events.
41
+ # Event handler methods for events emitted by this class:
42
+ #
43
+ # - {Wx::EvtHandler#evt_header_click}(id, meth = nil, &block): A column heading was clicked.
44
+ #
45
+ # - {Wx::EvtHandler#evt_header_right_click}(id, meth = nil, &block): A column heading was right clicked.
46
+ #
47
+ # - {Wx::EvtHandler#evt_header_middle_click}(id, meth = nil, &block): A column heading was clicked with the middle mouse button.
48
+ #
49
+ # - {Wx::EvtHandler#evt_header_dclick}(id, meth = nil, &block): A column heading was double clicked.
50
+ #
51
+ # - {Wx::EvtHandler#evt_header_right_dclick}(id, meth = nil, &block): A column heading was right double clicked.
52
+ #
53
+ # - {Wx::EvtHandler#evt_header_middle_dclick}(id, meth = nil, &block): A column heading was double clicked with the middle mouse button.
54
+ #
55
+ # - {Wx::EvtHandler#evt_header_separator_dclick}(id, meth = nil, &block): Separator to the right of the specified column was double clicked (this action is commonly used to resize the column to fit its contents width and the control provides {Wx::HeaderCtrl#update_column_width_to_fit} method to make implementing this easier).
56
+ #
57
+ # - {Wx::EvtHandler#evt_header_begin_resize}(id, meth = nil, &block): The user started to drag the separator to the right of the column with the specified index (this can only happen for the columns for which {Wx::HeaderColumn#is_resizeable} returns true). The event can be vetoed to prevent the column from being resized. If it isn't, the resizing and end resize (or dragging cancelled) events will be generated later.
58
+ #
59
+ # - {Wx::EvtHandler#evt_header_resizing}(id, meth = nil, &block): The user is dragging the column with the specified index resizing it and its current width is {Wx::HeaderCtrlEvent#get_width}. The event can be vetoed to stop the dragging operation completely at any time.
60
+ #
61
+ # - {Wx::EvtHandler#evt_header_end_resize}(id, meth = nil, &block): The user stopped dragging the column by releasing the mouse. The column should normally be resized to the value of {Wx::HeaderCtrlEvent#get_width}.
62
+ #
63
+ # - {Wx::EvtHandler#evt_header_begin_reorder}(id, meth = nil, &block): The user started to drag the column with the specified index (this can only happen for the controls with {Wx::HD_ALLOW_REORDER} style). This event can be vetoed to prevent the column from being reordered, otherwise the end reorder message will be generated later.
64
+ #
65
+ # - {Wx::EvtHandler#evt_header_end_reorder}(id, meth = nil, &block): The user dropped the column in its new location. The event can be vetoed to prevent the column from being placed at the new position or handled to update the display of the data in the associated control to match the new column location (available from {Wx::HeaderCtrlEvent#get_new_order}).
66
+ #
67
+ # - {Wx::EvtHandler#evt_header_dragging_cancelled}(id, meth = nil, &block): The resizing or reordering operation currently in progress was cancelled. This can happen if the user pressed Esc key while dragging the mouse or the mouse capture was lost for some other reason. You only need to handle this event if your application entered into some modal mode when resizing or reordering began, in which case it should handle this event in addition to the matching end resizing or reordering ones.
68
+ #
69
+ # ===
70
+ #
71
+ # Category: {Wx::Controls}
72
+ # @see Wx::GRID::Grid
73
+ # @see Wx::ListCtrl
74
+ # @see Wx::DataViewCtrl
75
+ #
76
+ #
77
+ class HeaderCtrl < Control
78
+
79
+ # @overload initialize()
80
+ # Default constructor not creating the underlying window.
81
+ # You must use {Wx::HeaderCtrl#create} after creating the object using this constructor.
82
+ # @return [Wx::HeaderCtrl]
83
+ # @overload initialize(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr)
84
+ # Constructor creating the window.
85
+ # Please see {Wx::HeaderCtrl#create} for the parameters documentation.
86
+ # @param parent [Wx::Window]
87
+ # @param winid [Integer]
88
+ # @param pos [Array(Integer, Integer), Wx::Point]
89
+ # @param size [Array(Integer, Integer), Wx::Size]
90
+ # @param style [Integer]
91
+ # @param name [String]
92
+ # @return [Wx::HeaderCtrl]
93
+ def initialize(*args) end
94
+
95
+ # Create the header control window.
96
+ # @param parent [Wx::Window] The parent window. The header control should be typically positioned along the top edge of this window.
97
+ # @param winid [Integer] Id of the control or {Wx::StandardID::ID_ANY} if you don't care.
98
+ # @param pos [Array(Integer, Integer), Wx::Point] The initial position of the control.
99
+ # @param size [Array(Integer, Integer), Wx::Size] The initial size of the control (usually not very useful as this control will typically be resized to have the same width as the associated data display control).
100
+ # @param style [Integer] The control style, {Wx::HD_DEFAULT_STYLE} by default. Notice that the default style allows the user to reorder the columns by dragging them and you need to explicitly turn this feature off by using
101
+ # ```
102
+ # wxHD_DEFAULT_STYLE & ~wxHD_ALLOW_REORDER
103
+ # ```
104
+ # if this is undesirable.
105
+ # @param name [String] The name of the control.
106
+ # @return [Boolean]
107
+ def create(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr) end
108
+
109
+ # Set the number of columns in the control.
110
+ # The control will use {Wx::HeaderCtrl#get_column} to get information about all the new columns and refresh itself, i.e. this method also has the same effect as calling {Wx::HeaderCtrl#update_column} for all columns but it should only be used if the number of columns really changed.
111
+ # @param count [Integer]
112
+ # @return [void]
113
+ def set_column_count(count) end
114
+ alias_method :column_count=, :set_column_count
115
+
116
+ # Return the number of columns in the control.
117
+ # Number of columns as previously set by {Wx::HeaderCtrl#set_column_count}.
118
+ # @see Wx::HeaderCtrl#is_empty
119
+ # @return [Integer]
120
+ def get_column_count; end
121
+ alias_method :column_count, :get_column_count
122
+
123
+ # Return whether the control has any columns.
124
+ #
125
+ # @see Wx::HeaderCtrl#get_column_count
126
+ # @return [Boolean]
127
+ def is_empty; end
128
+ alias_method :empty?, :is_empty
129
+
130
+ # Update the column with the given index.
131
+ # When the value returned by {Wx::HeaderCtrl#get_column} changes, this method must be called to notify the control about the change and update the visual display to match the new column data.
132
+ # @param idx [Integer] The column index, must be less than {Wx::HeaderCtrl#get_column_count}.
133
+ # @return [void]
134
+ def update_column(idx) end
135
+
136
+ # Change the columns display order.
137
+ # The display order defines the order in which the columns appear on the screen and does not affect the interpretation of indices by all the other class methods.
138
+ # The order array specifies the column indices corresponding to the display positions.
139
+ # @see Wx::ListCtrl#set_columns_order
140
+ # @param order [Array<Integer>] A permutation of all column indices, i.e. an array of size {Wx::HeaderCtrl#get_columns_order} containing all column indices exactly once. The n-th element of this array defines the index of the column shown at the n-th position from left (for the default left-to-right writing direction).
141
+ # @return [void]
142
+ def set_columns_order(order) end
143
+ alias_method :columns_order=, :set_columns_order
144
+
145
+ # Return the array describing the columns display order.
146
+ # For the controls without {Wx::HD_ALLOW_REORDER} style the returned array will be the same as was passed to {Wx::HeaderCtrl#set_columns_order} previously or define the default order (with n-th element being n) if it hadn't been called. But for the controls with {Wx::HD_ALLOW_REORDER} style, the columns can be also reordered by user.
147
+ # @return [Array<Integer>]
148
+ def get_columns_order; end
149
+ alias_method :columns_order, :get_columns_order
150
+
151
+ # Return the index of the column displayed at the given position.
152
+ #
153
+ # @see Wx::HeaderCtrl#get_column_pos
154
+ # @param pos [Integer] The display position, e.g. 0 for the left-most column, 1 for the next one and so on until {Wx::HeaderCtrl#get_column_count} - 1.
155
+ # @return [Integer]
156
+ def get_column_at(pos) end
157
+ alias_method :column_at, :get_column_at
158
+
159
+ # Get the position at which this column is currently displayed.
160
+ # Notice that a valid position is returned even for the hidden columns currently.
161
+ # @see Wx::HeaderCtrl#get_column_at
162
+ # @param idx [Integer] The column index, must be less than {Wx::HeaderCtrl#get_column_count}.
163
+ # @return [Integer]
164
+ def get_column_pos(idx) end
165
+ alias_method :column_pos, :get_column_pos
166
+
167
+ # Reset the columns order to the natural one.
168
+ # After calling this function, the column with index idx appears at position idx in the control.
169
+ # @return [void]
170
+ def reset_columns_order; end
171
+
172
+ # Show the popup menu allowing the user to show or hide the columns.
173
+ # This functions shows the popup menu containing all columns with check marks for the ones which are currently shown and allows the user to check or uncheck them to toggle their visibility. It is called from the default EVT_HEADER_RIGHT_CLICK handler for the controls which have {Wx::HD_ALLOW_HIDE} style. And if the column has {Wx::HD_ALLOW_REORDER} style as well, the menu also contains an item to customize the columns shown using which results in {Wx::HeaderCtrl#show_customize_dialog} being called, please see its description for more details.
174
+ # If a column was toggled, {Wx::HeaderCtrl#update_column_visibility} virtual function is called so it must be implemented for the controls with {Wx::HD_ALLOW_HIDE} style or if you call this function explicitly.
175
+ #
176
+ # true if a column was shown or hidden or false if nothing was done, e.g. because the menu was cancelled.
177
+ # @param pt [Array(Integer, Integer), Wx::Point] The position of the menu, in the header window coordinates.
178
+ # @param title [String] The title for the menu if not empty.
179
+ # @return [Boolean]
180
+ def show_columns_menu(pt, title=(())) end
181
+
182
+ # Helper function appending the checkable items corresponding to all the columns to the given menu.
183
+ # This function is used by {Wx::HeaderCtrl#show_columns_menu} but can also be used if you show your own custom columns menu and still want all the columns shown in it. It appends menu items with column labels as their text and consecutive ids starting from idColumnsBase to the menu and checks the items corresponding to the currently visible columns.
184
+ # Example of use:
185
+ # ```
186
+ # wxMenu menu;
187
+ # menu.Append(100, "Some custom command");
188
+ # menu.AppendSeparator();
189
+ # AddColumnsItems(menu, 200);
190
+ # const int rc = GetPopupMenuSelectionFromUser(menu, pt);
191
+ # if ( rc >= 200 )
192
+ # ... toggle visibility of the column rc-200 ...
193
+ # ```
194
+ # @param menu [Wx::Menu] The menu to append the items to. It may be currently empty or not.
195
+ # @param idColumnsBase [Integer] The id for the menu item corresponding to the first column, the other ones are consecutive starting from it. It should be positive.
196
+ # @return [void]
197
+ def add_columns_items(menu, idColumnsBase=0) end
198
+
199
+ # Show the column customization dialog.
200
+ # This function displays a modal dialog containing the list of all columns which the user can use to reorder them as well as show or hide individual columns.
201
+ # If the user accepts the changes done in the dialog, the virtual methods {Wx::HeaderCtrl#update_column_visibility} and {Wx::HeaderCtrl#update_columns_order} will be called so they must be overridden in the derived class if this method is ever called. Please notice that the user will be able to invoke it interactively from the header popup menu if the control has both {Wx::HD_ALLOW_HIDE} and {Wx::HD_ALLOW_REORDER} styles.
202
+ # @see Wx::RearrangeDialog
203
+ # @return [Boolean]
204
+ def show_customize_dialog; end
205
+
206
+ # @overload get_column_title_width(col)
207
+ # Returns width needed for given column's title.
208
+ # @param col [Wx::HeaderColumn]
209
+ # @return [Integer]
210
+ # @overload get_column_title_width(idx)
211
+ # Returns width needed for the column with the given index.
212
+ # This is just a convenient wrapper for the overload taking {Wx::HeaderColumn}.
213
+ # @param idx [Integer]
214
+ # @return [Integer]
215
+ def get_column_title_width(*args) end
216
+ alias_method :column_title_width, :get_column_title_width
217
+
218
+ # Helper function to manipulate the array of column indices.
219
+ # This function reshuffles the array of column indices indexed by positions (i.e. using the same convention as for {Wx::HeaderCtrl#set_columns_order}) so that the column with the given index is found at the specified position.
220
+ # @param order [Array<Integer>] Array containing the indices of columns in order of their positions.
221
+ # @param idx [Integer] The index of the column to move.
222
+ # @param pos [Integer] The new position for the column idx.
223
+ # @return [void]
224
+ def self.move_column_in_order_array(order, idx, pos) end
225
+
226
+
227
+ protected
228
+
229
+ # Method to be implemented by the derived classes to return the information for the given column.
230
+ # @param idx [Integer] The column index, between 0 and the value last passed to {Wx::HeaderCtrl#set_column_count}.
231
+ # @return [Wx::HeaderColumn]
232
+ def get_column(idx) end
233
+ alias_method :column, :get_column
234
+
235
+ # Method called when the column visibility is changed by the user.
236
+ # This method is called from {Wx::HeaderCtrl#show_columns_menu} or {Wx::HeaderCtrl#show_customize_dialog} when the user interactively hides or shows a column. A typical implementation will simply update the internally stored column state. Notice that there is no need to call {Wx::HeaderCtrl#update_column} from this method as it is already done by {Wx::HeaderCtrl} itself.
237
+ # The base class version doesn't do anything and must be overridden if this method is called.
238
+ # @param idx [Integer] The index of the column whose visibility was toggled.
239
+ # @param show [Boolean] The new visibility value, true if the column is now shown or false if it is not hidden.
240
+ # @return [void]
241
+ def update_column_visibility(idx, show) end
242
+
243
+ # Method called when the columns order is changed in the customization dialog.
244
+ # This method is only called from {Wx::HeaderCtrl#show_customize_dialog} when the user changes the order of columns. In particular it is not called if a single column changes place because the user dragged it to the new location, the EVT_HEADER_END_REORDER event handler should be used to react to this.
245
+ # A typical implementation in a derived class will update the display order of the columns in the associated control, if any. Notice that there is no need to call {Wx::HeaderCtrl#set_columns_order} from it as {Wx::HeaderCtrl} does it itself.
246
+ # The base class version doesn't do anything and must be overridden if this method is called.
247
+ # @param order [Array<Integer>] The new column order. This array uses the same convention as {Wx::HeaderCtrl#set_columns_order}.
248
+ # @return [void]
249
+ def update_columns_order(order) end
250
+
251
+ # Method which may be implemented by the derived classes to allow double clicking the column separator to resize the column to fit its contents.
252
+ # When a separator is double clicked, the default handler of EVT_HEADER_SEPARATOR_DCLICK event calls this function and refreshes the column if it returns true so to implement the resizing of the column to fit its width on header double click you need to implement this method using logic similar to this example:
253
+ # ```
254
+ # class MyHeaderColumn : public wxHeaderColumn
255
+ # {
256
+ # public:
257
+ # ...
258
+ #
259
+ # void SetWidth(int width) { m_width = width; }
260
+ # virtual int GetWidth() const { return m_width; }
261
+ #
262
+ # private:
263
+ # int m_width;
264
+ # };
265
+ #
266
+ # class MyHeaderCtrl : public wxHeaderCtrl
267
+ # {
268
+ # public:
269
+ # protected:
270
+ # virtual wxHeaderColumn& GetColumn(unsigned int idx) const
271
+ # {
272
+ # return m_cols[idx];
273
+ # }
274
+ #
275
+ # virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle)
276
+ # {
277
+ # int widthContents = ... compute minimal width for column idx ...
278
+ # m_cols[idx].SetWidth(wxMax(widthContents, widthTitle));
279
+ # return true;
280
+ # }
281
+ #
282
+ # wxVector<MyHeaderColumn> m_cols;
283
+ # };
284
+ # ```
285
+ #
286
+ # Base class version simply returns false.
287
+ #
288
+ # true to indicate that the column was resized, i.e. {Wx::HeaderCtrl#get_column} now returns the new width value, and so must be refreshed or false meaning that the control didn't reach to the separator double click.
289
+ # @param idx [Integer] The zero-based index of the column to update.
290
+ # @param widthTitle [Integer] Contains minimal width needed to display the column header itself and will usually be used as a starting point for the fitting width calculation.
291
+ # @return [Boolean]
292
+ def update_column_width_to_fit(idx, widthTitle) end
293
+
294
+ # Can be overridden in the derived class to update internal data structures when the number of the columns in the control changes.
295
+ # This method is called by {Wx::HeaderCtrl#set_column_count} before effectively changing the number of columns.
296
+ # The base class version does nothing but it is good practice to still call it from the overridden version in the derived class.
297
+ # @param count [Integer]
298
+ # @return [void]
299
+ def on_column_count_changing(count) end
300
+
301
+ end # HeaderCtrl
302
+
303
+ # Represents a column header in controls displaying tabular data such as {Wx::DataViewCtrl} or {Wx::GRID::Grid}.
304
+ # Notice that this is an abstract base class which is implemented (usually using the information stored in the associated control) by the different controls using {Wx::HeaderCtrl}. As the control only needs to retrieve the information about the column, this class defines only the methods for accessing the various column properties but not for changing them as the setters might not be needed at all, e.g. if the column attributes can only be changed via the methods of the main associated control (this is the case for {Wx::GRID::Grid} for example). If you do want to allow changing them directly using the column itself, you should inherit from {Wx::SettableHeaderColumn} instead of this class.
305
+ # Finally, if you don't already store the column information at all anywhere, you should use the concrete {Wx::HeaderColumnSimple} class and {Wx::HeaderCtrlSimple}.
306
+ # ===
307
+ #
308
+ # Category: {Wx::Controls}
309
+ #
310
+ #
311
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
312
+ class HeaderColumn < ::Object
313
+
314
+ # Get the text shown in the column header.
315
+ # @return [String]
316
+ def get_title; end
317
+ alias_method :title, :get_title
318
+
319
+ # This function exists only for backwards compatibility, it's recommended to override {Wx::HeaderColumn#get_bitmap_bundle} in the new code and override this one to do nothing, as it will never be called if {Wx::HeaderColumn#get_bitmap_bundle} is overridden.
320
+ # @return [Wx::Bitmap]
321
+ def get_bitmap; end
322
+ alias_method :bitmap, :get_bitmap
323
+
324
+ # Returns the bitmap in the header of the column, if any.
325
+ # If the column has no associated bitmap, empty {Wx::BitmapBundle} should be returned.
326
+ # Override this function to return the bundle containing the bitmap to show in the column header. By default delegates to {Wx::HeaderColumn#get_bitmap} but should be overridden if the bitmaps are used.
327
+ # @return [Wx::BitmapBundle]
328
+ def get_bitmap_bundle; end
329
+ alias_method :bitmap_bundle, :get_bitmap_bundle
330
+
331
+ # Returns the current width of the column.
332
+ # Width of the column in pixels, never {Wx::COL_WIDTH_DEFAULT} or {Wx::COL_WIDTH_AUTOSIZE}.
333
+ # @return [Integer]
334
+ def get_width; end
335
+ alias_method :width, :get_width
336
+
337
+ # Return the minimal column width.
338
+ # The minimal width such that the user can't resize the column to lesser size (notice that it is still possible to set the column width to smaller value from the program code). Return 0 from here to allow resizing the column to arbitrarily small size.
339
+ # @return [Integer]
340
+ def get_min_width; end
341
+ alias_method :min_width, :get_min_width
342
+
343
+ # Returns the current column alignment.
344
+ # One of {Wx::Alignment::ALIGN_CENTRE}, {Wx::Alignment::ALIGN_LEFT} or {Wx::Alignment::ALIGN_RIGHT}.
345
+ # @return [Wx::Alignment]
346
+ def get_alignment; end
347
+ alias_method :alignment, :get_alignment
348
+
349
+ # Get the column flags.
350
+ # This method retrieves all the flags at once, you can also use {Wx::HeaderColumn#has_flag} to test for any individual flag or {Wx::HeaderColumn#is_resizeable}, {Wx::HeaderColumn#is_sortable}, {Wx::HeaderColumn#is_reorderable} and {Wx::HeaderColumn#is_hidden} to test for particular flags.
351
+ # @return [Integer]
352
+ def get_flags; end
353
+ alias_method :flags, :get_flags
354
+
355
+ # Return true if the specified flag is currently set for this column.
356
+ # @param flag [Integer]
357
+ # @return [Boolean]
358
+ def has_flag(flag) end
359
+ alias_method :has_flag?, :has_flag
360
+
361
+ # Return true if the column can be resized by the user.
362
+ # Equivalent to HasFlag({Wx::COL_RESIZABLE}).
363
+ # @return [Boolean]
364
+ def is_resizeable; end
365
+ alias_method :resizeable?, :is_resizeable
366
+
367
+ # Returns true if the column can be clicked by user to sort the control contents by the field in this column.
368
+ # This corresponds to {Wx::COL_SORTABLE} flag which is off by default.
369
+ # @return [Boolean]
370
+ def is_sortable; end
371
+ alias_method :sortable?, :is_sortable
372
+
373
+ # Returns true if the column can be dragged by user to change its order.
374
+ # This corresponds to {Wx::COL_REORDERABLE} flag which is on by default.
375
+ # @return [Boolean]
376
+ def is_reorderable; end
377
+ alias_method :reorderable?, :is_reorderable
378
+
379
+ # Returns true if the column is currently hidden.
380
+ # This corresponds to {Wx::COL_HIDDEN} flag which is off by default.
381
+ # @return [Boolean]
382
+ def is_hidden; end
383
+ alias_method :hidden?, :is_hidden
384
+
385
+ # Returns true if the column is currently shown.
386
+ # This corresponds to the absence of {Wx::COL_HIDDEN} flag.
387
+ # @return [Boolean]
388
+ def is_shown; end
389
+ alias_method :shown?, :is_shown
390
+
391
+ # Returns true if the column is currently used for sorting.
392
+ # @return [Boolean]
393
+ def is_sort_key; end
394
+ alias_method :sort_key?, :is_sort_key
395
+
396
+ # Returns true, if the sort order is ascending.
397
+ # Notice that it only makes sense to call this function if the column is used for sorting at all, i.e. if {Wx::HeaderColumn#is_sort_key} returns true.
398
+ # @return [Boolean]
399
+ def is_sort_order_ascending; end
400
+ alias_method :sort_order_ascending?, :is_sort_order_ascending
401
+
402
+ end # HeaderColumn
403
+
404
+ # {Wx::HeaderCtrlSimple} is a concrete header control which can be used directly, without inheriting from it as you need to do when using {Wx::HeaderCtrl} itself.
405
+ # When using it, you need to use simple {Wx::HeaderCtrlSimple#append_column}, {Wx::HeaderCtrlSimple#insert_column} and {Wx::HeaderCtrlSimple#delete_column} methods instead of setting the number of columns with {Wx::HeaderCtrlSimple#set_column_count} and returning the information about them from the overridden {Wx::HeaderCtrlSimple#get_column}.
406
+ # ===
407
+ #
408
+ # Category: {Wx::Controls}
409
+ # @see Wx::HeaderCtrl
410
+ #
411
+ #
412
+ class HeaderCtrlSimple < HeaderCtrl
413
+
414
+ # @overload initialize()
415
+ # Default constructor not creating the underlying window.
416
+ # You must use {Wx::HeaderCtrlSimple#create} after creating the object using this constructor.
417
+ # @return [Wx::HeaderCtrlSimple]
418
+ # @overload initialize(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr)
419
+ # Constructor creating the window.
420
+ # Please see the base class {Wx::HeaderCtrl#create} method for the parameters description.
421
+ # @param parent [Wx::Window]
422
+ # @param winid [Integer]
423
+ # @param pos [Array(Integer, Integer), Wx::Point]
424
+ # @param size [Array(Integer, Integer), Wx::Size]
425
+ # @param style [Integer]
426
+ # @param name [String]
427
+ # @return [Wx::HeaderCtrlSimple]
428
+ def initialize(*args) end
429
+
430
+ # Insert the column at the given position.
431
+ #
432
+ # @see Wx::HeaderCtrlSimple#append_column
433
+ # @param col [Wx::HeaderColumnSimple] The column to insert. Notice that because of the existence of implicit conversion from {Wx::String} to {Wx::HeaderColumn} a string can be passed directly here.
434
+ # @param idx [Integer] The position of the new column, from 0 to {Wx::HeaderCtrlSimple#get_column_count}. Using {Wx::HeaderCtrlSimple#get_column_count} means to append the column to the end.
435
+ # @return [void]
436
+ def insert_column(col, idx) end
437
+
438
+ # Append the column to the end of the control.
439
+ #
440
+ # @see Wx::HeaderCtrlSimple#insert_column
441
+ # @param col [Wx::HeaderColumnSimple]
442
+ # @return [void]
443
+ def append_column(col) end
444
+
445
+ # Delete the column at the given position.
446
+ #
447
+ # @see Wx::HeaderCtrlSimple#insert_column
448
+ # @see Wx::HeaderCtrlSimple#append_column
449
+ # @param idx [Integer]
450
+ # @return [void]
451
+ def delete_column(idx) end
452
+
453
+ # Show or hide the column.
454
+ # Initially the column is shown by default or hidden if it was added with {Wx::COL_HIDDEN} flag set.
455
+ # When a column is hidden, it doesn't appear at all on the screen but its index is still taken into account when working with other columns. E.g. if there are three columns 0, 1 and 2 and the column 1 is hidden you still need to use index 2 to refer to the last visible column.
456
+ # @param idx [Integer] The index of the column to show or hide, from 0 to {Wx::HeaderCtrlSimple#get_column_count}.
457
+ # @param show [Boolean] Indicates whether the column should be shown (default) or hidden.
458
+ # @return [void]
459
+ def show_column(idx, show=true) end
460
+
461
+ # Hide the column with the given index.
462
+ # This is the same as calling
463
+ # ```
464
+ # ShowColumn(idx, false)
465
+ # ```
466
+ # .
467
+ # @param idx [Integer] The index of the column to show or hide, from 0 to {Wx::HeaderCtrlSimple#get_column_count}.
468
+ # @return [void]
469
+ def hide_column(idx) end
470
+
471
+ # Update the column sort indicator.
472
+ # The sort indicator, if shown, is typically an arrow pointing upwards or downwards depending on whether the control contents is sorted in ascending or descending order.
473
+ # @param idx [Integer] The column to set the sort indicator for. If <code>-1</code> is given, then the currently shown sort indicator will be removed.
474
+ # @param sortOrder [Boolean] If true or false show the sort indicator corresponding to ascending or descending sort order respectively.
475
+ # @return [void]
476
+ def show_sort_indicator(idx, sortOrder=true) end
477
+
478
+ # Remove the sort indicator from the column being used as sort key.
479
+ #
480
+ # @see Wx::HeaderCtrlSimple#show_sort_indicator
481
+ # @return [void]
482
+ def remove_sort_indicator; end
483
+
484
+
485
+ protected
486
+
487
+ # This function can be overridden in the classes deriving from this control instead of overriding {Wx::HeaderCtrlSimple#update_column_width_to_fit}.
488
+ # To implement automatic column resizing to fit its contents width when the column divider is double clicked, you need to simply return the fitting width for the given column idx from this method, the control will automatically use the biggest value between the one returned from here and the one needed for the display of the column title itself.
489
+ # The base class version returns -1 indicating that this function is not implemented.
490
+ # @param idx [Integer]
491
+ # @return [Integer]
492
+ def get_best_fitting_width(idx) end
493
+ alias_method :best_fitting_width, :get_best_fitting_width
494
+
495
+ end # HeaderCtrlSimple
496
+
497
+ # Adds methods to set the column attributes to {Wx::HeaderColumn}.
498
+ # This class adds setters for the column attributes defined by {Wx::HeaderColumn}. It is still an abstract base class and needs to be implemented before using it with {Wx::HeaderCtrl}.
499
+ # ===
500
+ #
501
+ # Category: {Wx::Controls}
502
+ #
503
+ #
504
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
505
+ class SettableHeaderColumn < HeaderColumn
506
+
507
+ # Set the text to display in the column header.
508
+ # @param title [String]
509
+ # @return [void]
510
+ def set_title(title) end
511
+ alias_method :title=, :set_title
512
+
513
+ # Set the bitmap to be displayed in the column header.
514
+ # Notice that the bitmaps displayed in different columns of the same control must all be of the same size.
515
+ # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
516
+ # @return [void]
517
+ def set_bitmap(bitmap) end
518
+ alias_method :bitmap=, :set_bitmap
519
+
520
+ # Set the column width.
521
+ # @param width [Integer] The column width in pixels or the special {Wx::COL_WIDTH_DEFAULT} (meaning to use default width) or {Wx::COL_WIDTH_AUTOSIZE} (size to fit the content) value.
522
+ # @return [void]
523
+ def set_width(width) end
524
+ alias_method :width=, :set_width
525
+
526
+ # Set the minimal column width.
527
+ # This method can be used with resizable columns (i.e. those for which {Wx::COL_RESIZABLE} flag is set in {Wx::SettableHeaderColumn#get_flags} or, alternatively, {Wx::SettableHeaderColumn#is_resizeable} returns true) to prevent the user from making them narrower than the given width.
528
+ # @param minWidth [Integer] The minimal column width in pixels, may be 0 to remove any previously set restrictions.
529
+ # @return [void]
530
+ def set_min_width(minWidth) end
531
+ alias_method :min_width=, :set_min_width
532
+
533
+ # Set the alignment of the column header.
534
+ # @param align [Wx::Alignment] The text alignment in horizontal direction only or {Wx::Alignment::ALIGN_NOT} to use the default alignment, The possible values here are {Wx::Alignment::ALIGN_CENTRE}, {Wx::Alignment::ALIGN_LEFT} or {Wx::Alignment::ALIGN_RIGHT} with {Wx::Alignment::ALIGN_CENTRE_HORIZONTAL} being also supported as synonym for {Wx::Alignment::ALIGN_CENTRE} for consistency (but notice that {Wx::SettableHeaderColumn#get_alignment} never returns it).
535
+ # @return [void]
536
+ def set_alignment(align) end
537
+ alias_method :alignment=, :set_alignment
538
+
539
+ # Set the column flags.
540
+ # This method allows setting all flags at once, see also generic {Wx::SettableHeaderColumn#change_flag}, {Wx::SettableHeaderColumn#set_flag}, {Wx::SettableHeaderColumn#clear_flag} and {Wx::SettableHeaderColumn#toggle_flag} methods below as well as specific {Wx::SettableHeaderColumn#set_resizeable}, {Wx::SettableHeaderColumn#set_sortable}, {Wx::SettableHeaderColumn#set_reorderable} and {Wx::SettableHeaderColumn#set_hidden} ones.
541
+ # @param flags [Integer] Combination of {Wx::COL_RESIZABLE}, {Wx::COL_SORTABLE}, {Wx::COL_REORDERABLE} and {Wx::COL_HIDDEN} bit flags.
542
+ # @return [void]
543
+ def set_flags(flags) end
544
+ alias_method :flags=, :set_flags
545
+
546
+ # Set or clear the given flag.
547
+ #
548
+ # @see Wx::SettableHeaderColumn#set_flags
549
+ # @param flag [Integer] The flag to set or clear.
550
+ # @param set [Boolean] If true, set the flag, i.e. equivalent to calling {Wx::SettableHeaderColumn#set_flag}, otherwise clear it, as {Wx::SettableHeaderColumn#clear_flag}.
551
+ # @return [void]
552
+ def change_flag(flag, set) end
553
+
554
+ # Set the specified flag for the column.
555
+ #
556
+ # @see Wx::SettableHeaderColumn#set_flags
557
+ # @param flag [Integer]
558
+ # @return [void]
559
+ def set_flag(flag) end
560
+ alias_method :flag=, :set_flag
561
+
562
+ # Clear the specified flag for the column.
563
+ #
564
+ # @see Wx::SettableHeaderColumn#set_flags
565
+ # @param flag [Integer]
566
+ # @return [void]
567
+ def clear_flag(flag) end
568
+
569
+ # Toggle the specified flag for the column.
570
+ # If the flag is currently set, equivalent to {Wx::SettableHeaderColumn#clear_flag}, otherwise to {Wx::SettableHeaderColumn#set_flag}.
571
+ # @see Wx::SettableHeaderColumn#set_flags
572
+ # @param flag [Integer]
573
+ # @return [void]
574
+ def toggle_flag(flag) end
575
+
576
+ # Call this to enable or disable interactive resizing of the column by the user.
577
+ # By default, the columns are resizable.
578
+ # Equivalent to ChangeFlag({Wx::COL_RESIZABLE}, resizable).
579
+ # @param resizable [Boolean]
580
+ # @return [void]
581
+ def set_resizeable(resizable) end
582
+ alias_method :resizeable=, :set_resizeable
583
+
584
+ # Allow clicking the column to sort the control contents by the field in this column.
585
+ # By default, the columns are not sortable so you need to explicitly call this function to allow sorting by the field corresponding to this column.
586
+ # Equivalent to ChangeFlag({Wx::COL_SORTABLE}, sortable).
587
+ # @param sortable [Boolean]
588
+ # @return [void]
589
+ def set_sortable(sortable) end
590
+ alias_method :sortable=, :set_sortable
591
+
592
+ # Allow changing the column order by dragging it.
593
+ # Equivalent to ChangeFlag({Wx::COL_REORDERABLE}, reorderable).
594
+ # @param reorderable [Boolean]
595
+ # @return [void]
596
+ def set_reorderable(reorderable) end
597
+ alias_method :reorderable=, :set_reorderable
598
+
599
+ # Hide or show the column.
600
+ # By default all columns are shown but some of them can be completely hidden from view by calling this function.
601
+ # Equivalent to ChangeFlag({Wx::COL_HIDDEN}, hidden).
602
+ # @param hidden [Boolean]
603
+ # @return [void]
604
+ def set_hidden(hidden) end
605
+ alias_method :hidden=, :set_hidden
606
+
607
+ # Don't use this column for sorting.
608
+ # This is the reverse of {Wx::SettableHeaderColumn#set_sort_order} and is called to indicate that this column is not used for sorting any longer.
609
+ # @return [void]
610
+ def unset_as_sort_key; end
611
+
612
+ # Sets this column as the sort key for the associated control.
613
+ # This function indicates that this column is currently used for sorting the control and also sets the sorting direction. Notice that actual sorting is only done in the control associated with the header, this function doesn't do any sorting on its own.
614
+ # Don't confuse this function with {Wx::SettableHeaderColumn#set_sortable} which should be used to indicate that the column may be used for sorting while this one is used to indicate that it currently is used for sorting. Of course, {Wx::SettableHeaderColumn#set_sort_order} can be only called for sortable columns.
615
+ # @param ascending [Boolean] If true, sort in ascending order, otherwise in descending order.
616
+ # @return [void]
617
+ def set_sort_order(ascending) end
618
+ alias_method :sort_order=, :set_sort_order
619
+
620
+ # Inverses the sort order.
621
+ # This function is typically called when the user clicks on a column used for sorting to change sort order from ascending to descending or vice versa.
622
+ # @see Wx::SettableHeaderColumn#set_sort_order
623
+ # @see Wx::SettableHeaderColumn#is_sort_order_ascending
624
+ # @return [void]
625
+ def toggle_sort_order; end
626
+
627
+ end # SettableHeaderColumn
628
+
629
+ # Simple container for the information about the column.
630
+ # This is a concrete class implementing all {Wx::SettableHeaderColumn} class methods in a trivial way, i.e. by just storing the information in the object itself. It is used by and with {Wx::HeaderCtrlSimple}, e.g.
631
+ # ```
632
+ # wxHeaderCtrlSimple * header = new wxHeaderCtrlSimple(...);
633
+ # wxHeaderColumnSimple col("Title");
634
+ # col.SetWidth(100);
635
+ # col.SetSortable(100);
636
+ # header->AppendColumn(col);
637
+ # ```
638
+ #
639
+ # ===
640
+ #
641
+ # Category: {Wx::Controls}
642
+ #
643
+ #
644
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
645
+ class HeaderColumnSimple < SettableHeaderColumn
646
+
647
+ # @overload initialize(title, width=Wx::COL_WIDTH_DEFAULT, align=Wx::Alignment::ALIGN_NOT, flags=Wx::COL_DEFAULT_FLAGS)
648
+ # Constructor for a column header.
649
+ # The first constructor creates a header showing the given text title while the second one creates one showing the specified bitmap image.
650
+ # @param title [String]
651
+ # @param width [Integer]
652
+ # @param align [Wx::Alignment]
653
+ # @param flags [Integer]
654
+ # @return [Wx::HeaderColumnSimple]
655
+ # @overload initialize(bitmap, width=Wx::COL_WIDTH_DEFAULT, align=Wx::Alignment::ALIGN_CENTER, flags=Wx::COL_DEFAULT_FLAGS)
656
+ # Constructor for a column header.
657
+ # The first constructor creates a header showing the given text title while the second one creates one showing the specified bitmap image.
658
+ # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
659
+ # @param width [Integer]
660
+ # @param align [Wx::Alignment]
661
+ # @param flags [Integer]
662
+ # @return [Wx::HeaderColumnSimple]
663
+ def initialize(*args) end
664
+
665
+ # Trivial implementations of the base class pure virtual functions.
666
+ # @param title [String]
667
+ # @return [void]
668
+ def set_title(title) end
669
+ alias_method :title=, :set_title
670
+
671
+ # Trivial implementations of the base class pure virtual functions.
672
+ # @return [String]
673
+ def get_title; end
674
+ alias_method :title, :get_title
675
+
676
+ # Trivial implementations of the base class pure virtual functions.
677
+ # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
678
+ # @return [void]
679
+ def set_bitmap(bitmap) end
680
+ alias_method :bitmap=, :set_bitmap
681
+
682
+ # Trivial implementations of the base class pure virtual functions.
683
+ # @return [Wx::Bitmap]
684
+ def get_bitmap; end
685
+ alias_method :bitmap, :get_bitmap
686
+
687
+ # Trivial implementations of the base class pure virtual functions.
688
+ # @return [Wx::BitmapBundle]
689
+ def get_bitmap_bundle; end
690
+ alias_method :bitmap_bundle, :get_bitmap_bundle
691
+
692
+ # Trivial implementations of the base class pure virtual functions.
693
+ # @param width [Integer]
694
+ # @return [void]
695
+ def set_width(width) end
696
+ alias_method :width=, :set_width
697
+
698
+ # Trivial implementations of the base class pure virtual functions.
699
+ # @return [Integer]
700
+ def get_width; end
701
+ alias_method :width, :get_width
702
+
703
+ # Trivial implementations of the base class pure virtual functions.
704
+ # @param minWidth [Integer]
705
+ # @return [void]
706
+ def set_min_width(minWidth) end
707
+ alias_method :min_width=, :set_min_width
708
+
709
+ # Trivial implementations of the base class pure virtual functions.
710
+ # @return [Integer]
711
+ def get_min_width; end
712
+ alias_method :min_width, :get_min_width
713
+
714
+ # Trivial implementations of the base class pure virtual functions.
715
+ # @param align [Wx::Alignment]
716
+ # @return [void]
717
+ def set_alignment(align) end
718
+ alias_method :alignment=, :set_alignment
719
+
720
+ # Trivial implementations of the base class pure virtual functions.
721
+ # @return [Wx::Alignment]
722
+ def get_alignment; end
723
+ alias_method :alignment, :get_alignment
724
+
725
+ # Trivial implementations of the base class pure virtual functions.
726
+ # @param flags [Integer]
727
+ # @return [void]
728
+ def set_flags(flags) end
729
+ alias_method :flags=, :set_flags
730
+
731
+ # Trivial implementations of the base class pure virtual functions.
732
+ # @return [Integer]
733
+ def get_flags; end
734
+ alias_method :flags, :get_flags
735
+
736
+ # Trivial implementations of the base class pure virtual functions.
737
+ # @return [Boolean]
738
+ def is_sort_key; end
739
+ alias_method :sort_key?, :is_sort_key
740
+
741
+ # Trivial implementations of the base class pure virtual functions.
742
+ # @param ascending [Boolean]
743
+ # @return [void]
744
+ def set_sort_order(ascending) end
745
+ alias_method :sort_order=, :set_sort_order
746
+
747
+ # Trivial implementations of the base class pure virtual functions.
748
+ # @return [Boolean]
749
+ def is_sort_order_ascending; end
750
+ alias_method :sort_order_ascending?, :is_sort_order_ascending
751
+
752
+ end # HeaderColumnSimple
753
+
754
+
755
+ end