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
@@ -177,7 +177,7 @@ module Wx
177
177
 
178
178
  #
179
179
  # false if this object is valid, otherwise returns true.
180
- # @return [true,false]
180
+ # @return [Boolean]
181
181
  def is_null; end
182
182
  alias_method :null?, :is_null
183
183
 
@@ -211,32 +211,19 @@ module Wx
211
211
  #
212
212
  class GraphicsPath < GraphicsObject
213
213
 
214
- # @overload add_arc(x, y, r, startAngle, endAngle, clockwise)
215
- # Adds an arc of a circle.
216
- # The circle is defined by the coordinates of its centre (x, y) or c and its radius r. The arc goes from the starting angle startAngle to endAngle either clockwise or counter-clockwise depending on the value of clockwise argument.
217
- # The angles are measured in radians but, contrary to the usual mathematical convention, are always clockwise from the horizontal axis.
218
- # If for clockwise arc endAngle is less than startAngle it will be progressively increased by 2*pi until it is greater than startAngle. If for counter-clockwise arc endAngle is greater than startAngle it will be progressively decreased by 2*pi until it is less than startAngle.
219
- # If there is a current point set, an initial line segment will be added to the path to connect the current point to the beginning of the arc.
220
- # @param x [Float]
221
- # @param y [Float]
222
- # @param r [Float]
223
- # @param startAngle [Float]
224
- # @param endAngle [Float]
225
- # @param clockwise [true,false]
226
- # @return [void]
227
- # @overload add_arc(c, r, startAngle, endAngle, clockwise)
228
- # Adds an arc of a circle.
229
- # The circle is defined by the coordinates of its centre (x, y) or c and its radius r. The arc goes from the starting angle startAngle to endAngle either clockwise or counter-clockwise depending on the value of clockwise argument.
230
- # The angles are measured in radians but, contrary to the usual mathematical convention, are always clockwise from the horizontal axis.
231
- # If for clockwise arc endAngle is less than startAngle it will be progressively increased by 2*pi until it is greater than startAngle. If for counter-clockwise arc endAngle is greater than startAngle it will be progressively decreased by 2*pi until it is less than startAngle.
232
- # If there is a current point set, an initial line segment will be added to the path to connect the current point to the beginning of the arc.
233
- # @param c [Array<Float,Float>]
234
- # @param r [Float]
235
- # @param startAngle [Float]
236
- # @param endAngle [Float]
237
- # @param clockwise [true,false]
238
- # @return [void]
239
- def add_arc(*args) end
214
+ # Adds an arc of a circle.
215
+ # The circle is defined by the coordinates of its centre (x, y) or c and its radius r. The arc goes from the starting angle startAngle to endAngle either clockwise or counter-clockwise depending on the value of clockwise argument.
216
+ # The angles are measured in radians but, contrary to the usual mathematical convention, are always clockwise from the horizontal axis.
217
+ # If for clockwise arc endAngle is less than startAngle it will be progressively increased by 2*pi until it is greater than startAngle. If for counter-clockwise arc endAngle is greater than startAngle it will be progressively decreased by 2*pi until it is less than startAngle.
218
+ # If there is a current point set, an initial line segment will be added to the path to connect the current point to the beginning of the arc.
219
+ # @param x [Float]
220
+ # @param y [Float]
221
+ # @param r [Float]
222
+ # @param startAngle [Float]
223
+ # @param endAngle [Float]
224
+ # @param clockwise [Boolean]
225
+ # @return [void]
226
+ def add_arc(x, y, r, startAngle, endAngle, clockwise) end
240
227
 
241
228
  # Adds an arc (of a circle with radius r) that is tangent to the line connecting current point and (x1, y1) and to the line connecting (x1, y1) and (x2, y2).
242
229
  # If the current point and the starting point of the arc are different, a straight line connecting these points is also appended. If there is no current point before the call to {Wx::GraphicsPath#add_arc_to_point} this function will behave as if preceded by a call to MoveToPoint(0, 0). After this call the current point will be at the ending point of the arc.
@@ -256,24 +243,16 @@ module Wx
256
243
  # @return [void]
257
244
  def add_circle(x, y, r) end
258
245
 
259
- # @overload add_curve_to_point(cx1, cy1, cx2, cy2, x, y)
260
- # Adds a cubic bezier curve from the current point, using two control points and an end point.
261
- # If there is no current point before the call to {Wx::GraphicsPath#add_curve_to_point} this function will behave as if preceded by a call to MoveToPoint(cx1, cy1).
262
- # @param cx1 [Float]
263
- # @param cy1 [Float]
264
- # @param cx2 [Float]
265
- # @param cy2 [Float]
266
- # @param x [Float]
267
- # @param y [Float]
268
- # @return [void]
269
- # @overload add_curve_to_point(c1, c2, e)
270
- # Adds a cubic bezier curve from the current point, using two control points and an end point.
271
- # If there is no current point before the call to {Wx::GraphicsPath#add_curve_to_point} this function will behave as if preceded by a call to MoveToPoint(c1).
272
- # @param c1 [Array<Float,Float>]
273
- # @param c2 [Array<Float,Float>]
274
- # @param e [Array<Float,Float>]
275
- # @return [void]
276
- def add_curve_to_point(*args) end
246
+ # Adds a cubic bezier curve from the current point, using two control points and an end point.
247
+ # If there is no current point before the call to {Wx::GraphicsPath#add_curve_to_point} this function will behave as if preceded by a call to MoveToPoint(cx1, cy1).
248
+ # @param cx1 [Float]
249
+ # @param cy1 [Float]
250
+ # @param cx2 [Float]
251
+ # @param cy2 [Float]
252
+ # @param x [Float]
253
+ # @param y [Float]
254
+ # @return [void]
255
+ def add_curve_to_point(cx1, cy1, cx2, cy2, x, y) end
277
256
 
278
257
  # Appends an ellipse fitting into the passed in rectangle as a new closed subpath.
279
258
  # After this call the current point will be at (x+w, y+h/2).
@@ -284,18 +263,12 @@ module Wx
284
263
  # @return [void]
285
264
  def add_ellipse(x, y, w, h) end
286
265
 
287
- # @overload add_line_to_point(x, y)
288
- # Adds a straight line from the current point to (x,y).
289
- # If current point is not yet set before the call to {Wx::GraphicsPath#add_line_to_point} this function will behave as {Wx::GraphicsPath#move_to_point}.
290
- # @param x [Float]
291
- # @param y [Float]
292
- # @return [void]
293
- # @overload add_line_to_point(p)
294
- # Adds a straight line from the current point to p.
295
- # If current point is not yet set before the call to {Wx::GraphicsPath#add_line_to_point} this function will behave as {Wx::GraphicsPath#move_to_point}.
296
- # @param p [Array<Float,Float>]
297
- # @return [void]
298
- def add_line_to_point(*args) end
266
+ # Adds a straight line from the current point to (x,y).
267
+ # If current point is not yet set before the call to {Wx::GraphicsPath#add_line_to_point} this function will behave as {Wx::GraphicsPath#move_to_point}.
268
+ # @param x [Float]
269
+ # @param y [Float]
270
+ # @return [void]
271
+ def add_line_to_point(x, y) end
299
272
 
300
273
  # Adds another path onto the current path.
301
274
  # After this call the current point will be at the added path's current point. For Direct2D the path being appended shouldn't contain a started non-empty subpath when this function is called.
@@ -336,47 +309,24 @@ module Wx
336
309
  # @return [void]
337
310
  def close_subpath; end
338
311
 
339
- # @overload contains(c, fillStyle=Wx::PolygonFillMode::ODDEVEN_RULE)
340
- #
341
- # true if the point is within the path.
342
- # @param c [Array<Float,Float>]
343
- # @param fillStyle [PolygonFillMode]
344
- # @return [true,false]
345
- # @overload contains(x, y, fillStyle=Wx::PolygonFillMode::ODDEVEN_RULE)
346
- #
347
- # true if the point is within the path.
348
- # @param x [Float]
349
- # @param y [Float]
350
- # @param fillStyle [PolygonFillMode]
351
- # @return [true,false]
352
- def contains(*args) end
353
-
354
- # Gets the bounding box enclosing all points (possibly including control points).
312
+ #
313
+ # true if the point is within the path.
355
314
  # @param x [Float]
356
315
  # @param y [Float]
357
- # @param w [Float]
358
- # @param h [Float]
359
- # @return [void]
360
- def get_box(x, y, w, h) end
316
+ # @param fillStyle [Wx::PolygonFillMode]
317
+ # @return [Boolean]
318
+ def contains(x, y, fillStyle=Wx::PolygonFillMode::ODDEVEN_RULE) end
319
+
320
+ # Gets the bounding box enclosing all points (possibly including control points).
321
+ # @return [Array(Float,Float,Float,Float)]
322
+ def get_box; end
361
323
  alias_method :box, :get_box
362
324
 
363
- # Gets the last point of the current path, (0,0) if not yet set.
325
+ # Begins a new subpath at (x,y).
364
326
  # @param x [Float]
365
327
  # @param y [Float]
366
328
  # @return [void]
367
- def get_current_point(x, y) end
368
- alias_method :current_point, :get_current_point
369
-
370
- # @overload move_to_point(x, y)
371
- # Begins a new subpath at (x,y).
372
- # @param x [Float]
373
- # @param y [Float]
374
- # @return [void]
375
- # @overload move_to_point(p)
376
- # Begins a new subpath at p.
377
- # @param p [Array<Float,Float>]
378
- # @return [void]
379
- def move_to_point(*args) end
329
+ def move_to_point(x, y) end
380
330
 
381
331
  # Transforms each point of this path by the matrix.
382
332
  # For Direct2D the current path shouldn't contain a started non-empty subpath when this function is called.
@@ -424,12 +374,12 @@ module Wx
424
374
 
425
375
  # Returns true if the elements of the transformation matrix are equal.
426
376
  # @param t [Wx::GraphicsMatrix]
427
- # @return [true,false]
377
+ # @return [Boolean]
428
378
  def is_equal(t) end
429
379
  alias_method :equal?, :is_equal
430
380
 
431
381
  # Return true if this is the identity matrix.
432
- # @return [true,false]
382
+ # @return [Boolean]
433
383
  def is_identity; end
434
384
  alias_method :identity?, :is_identity
435
385
 
@@ -456,16 +406,12 @@ module Wx
456
406
 
457
407
  # Applies this matrix to a distance (ie.
458
408
  # performs all transforms except translations).
459
- # @param dx [Float]
460
- # @param dy [Float]
461
- # @return [void]
462
- def transform_distance(dx, dy) end
409
+ # @return [Array(Float,Float)]
410
+ def transform_distance; end
463
411
 
464
412
  # Applies this matrix to a point.
465
- # @param x [Float]
466
- # @param y [Float]
467
- # @return [void]
468
- def transform_point(x, y) end
413
+ # @return [Array(Float,Float)]
414
+ def transform_point; end
469
415
 
470
416
  # Translates this matrix.
471
417
  # @param dx [Float]
@@ -481,7 +427,7 @@ module Wx
481
427
  class GraphicsBitmap < GraphicsObject
482
428
 
483
429
  # Default constructor creates an invalid bitmap.
484
- # @return [GraphicsBitmap]
430
+ # @return [Wx::GraphicsBitmap]
485
431
  def initialize; end
486
432
 
487
433
  # Return the contents of this bitmap as {Wx::Image}.
@@ -9,13 +9,15 @@ module Wx::GRID
9
9
  # Base class for activatable editors.
10
10
  # Inheriting from this class makes it simpler to implement editors that support only activation, but not in-place editing, as they only need to implement {Wx::GRID::GridCellActivatableEditor#try_activate}, {Wx::GRID::GridCellActivatableEditor#do_activate} and {Wx::GRID::GridCellActivatableEditor#clone} methods, but not all the other pure virtual methods of {Wx::GRID::GridCellEditor}.
11
11
  #
12
+ #
13
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
12
14
  class GridCellActivatableEditor < GridCellEditor
13
15
 
14
16
  # Same method as in {Wx::GRID::GridCellEditor}, but pure virtual.
15
17
  # Note that the implementation of this method must never return Wx::GridActivationResult#do_edit for the editors inheriting from this class, as it doesn't support normal editing.
16
18
  # @param row [Integer]
17
19
  # @param col [Integer]
18
- # @param grid [Wx::Grid]
20
+ # @param grid [Wx::GRID::Grid]
19
21
  # @param actSource [Wx::GridActivationSource]
20
22
  # @return [Wx::GridActivationResult]
21
23
  def try_activate(row, col, grid, actSource) end
@@ -23,7 +25,7 @@ module Wx::GRID
23
25
  # Same method as in {Wx::GRID::GridCellEditor}, but pure virtual.
24
26
  # @param row [Integer]
25
27
  # @param col [Integer]
26
- # @param grid [Wx::Grid]
28
+ # @param grid [Wx::GRID::Grid]
27
29
  # @return [void]
28
30
  def do_activate(row, col, grid) end
29
31
 
@@ -13,6 +13,8 @@ module Wx::GRID
13
13
  #
14
14
  # Category: Grid Related Classes
15
15
  #
16
+ #
17
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
16
18
  class GridCellAttr < ::Object
17
19
 
18
20
  # Kind of the attribute to retrieve.
@@ -50,27 +52,22 @@ module Wx::GRID
50
52
 
51
53
  end # AttrKind
52
54
 
53
- # @overload initialize(attrDefault=nil)
54
- # Default constructor.
55
- # @param attrDefault [Wx::GridCellAttr]
56
- # @return [GridCellAttr]
57
- # @overload initialize(colText, colBack, font, hAlign, vAlign)
58
- # Constructor specifying some of the often used attributes.
59
- # @param colText [Wx::Colour,String,Symbol]
60
- # @param colBack [Wx::Colour,String,Symbol]
61
- # @param font [Wx::Font,Wx::FontInfo]
62
- # @param hAlign [Integer]
63
- # @param vAlign [Integer]
64
- # @return [GridCellAttr]
65
- def initialize(*args) end
55
+ # Constructor specifying some of the often used attributes.
56
+ # @param colText [Wx::Colour,String,Symbol]
57
+ # @param colBack [Wx::Colour,String,Symbol]
58
+ # @param font [Wx::Font,Wx::FontInfo]
59
+ # @param hAlign [Integer]
60
+ # @param vAlign [Integer]
61
+ # @return [Wx::GRID::GridCellAttr]
62
+ def initialize(colText, colBack, font, hAlign, vAlign) end
66
63
 
67
64
  # Creates a new copy of this object.
68
- # @return [Wx::GridCellAttr]
65
+ # @return [Wx::GRID::GridCellAttr]
69
66
  def clone; end
70
67
 
71
68
  # Get the alignment to use for the cell with the given attribute.
72
69
  # If this attribute doesn't specify any alignment, the default attribute alignment is used (which can be changed using {Wx::GRID::Grid#set_default_cell_alignment} but is left and top by default).
73
- # Notice that hAlign and vAlign values are always overwritten by this function, use {Wx::GRID::GridCellAttr#get_non_default_alignment} if this is not desirable.
70
+ # Notice that valid hAlign and vAlign values (default or non-default) are always returned by this function, use {Wx::GRID::GridCellAttr#get_non_default_alignment} if this is not desirable.
74
71
  # @return [Array(Integer,Integer)]
75
72
  def get_alignment; end
76
73
  alias_method :alignment, :get_alignment
@@ -82,7 +79,7 @@ module Wx::GRID
82
79
 
83
80
  # Returns the cell editor.
84
81
  # The caller is responsible for calling {Wx::GRID::GridCellAttr#dec_ref} on the returned pointer, use {Wx::GRID::GridCellAttr#get_editor_ptr} to do it automatically.
85
- # @param grid [Wx::Grid]
82
+ # @param grid [Wx::GRID::Grid]
86
83
  # @param row [Integer]
87
84
  # @param col [Integer]
88
85
  # @return [Wx::GRID::GridCellEditor]
@@ -95,12 +92,11 @@ module Wx::GRID
95
92
  alias_method :font, :get_font
96
93
 
97
94
  # Get the alignment defined by this attribute.
98
- # Unlike {Wx::GRID::GridCellAttr#get_alignment} this function only modifies hAlign and vAlign if this attribute does define a non-default alignment. This means that they must be initialized before calling this function and that their values will be preserved unchanged if they are different from {Wx::Alignment::ALIGN_INVALID}.
95
+ # Unlike {Wx::GRID::GridCellAttr#get_alignment} this function only returns hAlign and vAlign if this attribute does define a non-default alignment. Otherwise the returned value will be {Wx::ALIGN_INVALID}.
99
96
  # For example, the following fragment can be used to use the cell alignment if one is defined but right-align its contents by default (instead of left-aligning it by default) while still using the default vertical alignment:
100
- # ```
101
- # int hAlign = wxALIGN_RIGHT,
102
- # vAlign = wxALIGN_INVALID;
103
- # attr.GetNonDefaultAlignment(&hAlign, &vAlign);
97
+ # ```ruby
98
+ # h_align, v_align = attr.get_non_default_alignment
99
+ # h_align = Wx::ALIGN_RIGHT if h_align == Wx::ALIGN_INVALID
104
100
  # ```
105
101
  # @return [Array(Integer,Integer)]
106
102
  def get_non_default_alignment; end
@@ -108,7 +104,7 @@ module Wx::GRID
108
104
 
109
105
  # Returns the cell renderer.
110
106
  # The caller is responsible for calling {Wx::GRID::GridCellAttr#dec_ref} on the returned pointer, use {Wx::GRID::GridCellAttr#get_renderer_ptr} to do it automatically.
111
- # @param grid [Wx::Grid]
107
+ # @param grid [Wx::GRID::Grid]
112
108
  # @param row [Integer]
113
109
  # @param col [Integer]
114
110
  # @return [Wx::GRID::GridCellRenderer]
@@ -121,37 +117,37 @@ module Wx::GRID
121
117
  alias_method :text_colour, :get_text_colour
122
118
 
123
119
  # Returns true if this attribute has a valid alignment set.
124
- # @return [true,false]
120
+ # @return [Boolean]
125
121
  def has_alignment; end
126
122
  alias_method :has_alignment?, :has_alignment
127
123
 
128
124
  # Returns true if this attribute has a valid background colour set.
129
- # @return [true,false]
125
+ # @return [Boolean]
130
126
  def has_background_colour; end
131
127
  alias_method :has_background_colour?, :has_background_colour
132
128
 
133
129
  # Returns true if this attribute has a valid cell editor set.
134
- # @return [true,false]
130
+ # @return [Boolean]
135
131
  def has_editor; end
136
132
  alias_method :has_editor?, :has_editor
137
133
 
138
134
  # Returns true if this attribute has a valid font set.
139
- # @return [true,false]
135
+ # @return [Boolean]
140
136
  def has_font; end
141
137
  alias_method :has_font?, :has_font
142
138
 
143
139
  # Returns true if this attribute has a valid cell renderer set.
144
- # @return [true,false]
140
+ # @return [Boolean]
145
141
  def has_renderer; end
146
142
  alias_method :has_renderer?, :has_renderer
147
143
 
148
144
  # Returns true if this attribute has a valid text colour set.
149
- # @return [true,false]
145
+ # @return [Boolean]
150
146
  def has_text_colour; end
151
147
  alias_method :has_text_colour?, :has_text_colour
152
148
 
153
149
  # Returns true if this cell is set as read-only.
154
- # @return [true,false]
150
+ # @return [Boolean]
155
151
  def is_read_only; end
156
152
  alias_method :read_only?, :is_read_only
157
153
 
@@ -168,15 +164,8 @@ module Wx::GRID
168
164
  def set_background_colour(colBack) end
169
165
  alias_method :background_colour=, :set_background_colour
170
166
 
171
- #
172
- # TodoNeeds documentation.
173
- # @param defAttr [Wx::GridCellAttr]
174
- # @return [void]
175
- def set_def_attr(defAttr) end
176
- alias_method :def_attr=, :set_def_attr
177
-
178
167
  # Sets the editor to be used with the cells with this attribute.
179
- # @param editor [Wx::GridCellEditor]
168
+ # @param editor [Wx::GRID::GridCellEditor]
180
169
  # @return [void]
181
170
  def set_editor(editor) end
182
171
  alias_method :editor=, :set_editor
@@ -188,14 +177,14 @@ module Wx::GRID
188
177
  alias_method :font=, :set_font
189
178
 
190
179
  # Sets the cell as read-only.
191
- # @param isReadOnly [true,false]
180
+ # @param isReadOnly [Boolean]
192
181
  # @return [void]
193
182
  def set_read_only(isReadOnly=true) end
194
183
  alias_method :read_only=, :set_read_only
195
184
 
196
185
  # Sets the renderer to be used for cells with this attribute.
197
186
  # Takes ownership of the pointer.
198
- # @param renderer [Wx::GridCellRenderer]
187
+ # @param renderer [Wx::GRID::GridCellRenderer]
199
188
  # @return [void]
200
189
  def set_renderer(renderer) end
201
190
  alias_method :renderer=, :set_renderer
@@ -206,10 +195,6 @@ module Wx::GRID
206
195
  def set_text_colour(colText) end
207
196
  alias_method :text_colour=, :set_text_colour
208
197
 
209
- # @param mergefrom [Wx::GridCellAttr]
210
- # @return [void]
211
- def merge_with(mergefrom) end
212
-
213
198
  # @param num_rows [Integer]
214
199
  # @param num_cols [Integer]
215
200
  # @return [void]
@@ -217,34 +202,34 @@ module Wx::GRID
217
202
 
218
203
  # Specifies the behaviour of the cell contents if it doesn't fit into the available space.
219
204
  #
220
- # @see Wx::GridFitMode
221
- # @param fitMode [Wx::GridFitMode]
205
+ # @see Wx::GRID::GridFitMode
206
+ # @param fitMode [Wx::GRID::GridFitMode]
222
207
  # @return [void]
223
208
  def set_fit_mode(fitMode) end
224
209
  alias_method :fit_mode=, :set_fit_mode
225
210
 
226
211
  # Specifies if cells using this attribute should overflow or clip their contents.
227
- # This is the same as calling {Wx::GRID::GridCellAttr#set_fit_mode} with either Wx::GridFitMode#overflow or Wx::GridFitMode#clip argument depending on whether allow is true or false.
212
+ # This is the same as calling {Wx::GRID::GridCellAttr#set_fit_mode} with either {Wx::GRID::GridFitMode.overflow} or {Wx::GRID::GridFitMode.clip} argument depending on whether allow is true or false.
228
213
  # Prefer using {Wx::GRID::GridCellAttr#set_fit_mode} directly instead in the new code.
229
- # @param allow [true,false]
214
+ # @param allow [Boolean]
230
215
  # @return [void]
231
216
  def set_overflow(allow=true) end
232
217
  alias_method :overflow=, :set_overflow
233
218
 
234
- # @param kind [AttrKind]
219
+ # @param kind [Wx::wxGridCellAttr::AttrKind]
235
220
  # @return [void]
236
221
  def set_kind(kind) end
237
222
  alias_method :kind=, :set_kind
238
223
 
239
- # @return [true,false]
224
+ # @return [Boolean]
240
225
  def has_read_write_mode; end
241
226
  alias_method :has_read_write_mode?, :has_read_write_mode
242
227
 
243
- # @return [true,false]
228
+ # @return [Boolean]
244
229
  def has_overflow_mode; end
245
230
  alias_method :has_overflow_mode?, :has_overflow_mode
246
231
 
247
- # @return [true,false]
232
+ # @return [Boolean]
248
233
  def has_size; end
249
234
  alias_method :has_size?, :has_size
250
235
 
@@ -253,24 +238,24 @@ module Wx::GRID
253
238
  alias_method :size, :get_size
254
239
 
255
240
  # Returns the fitting mode for the cells using this attribute.
256
- # The returned {Wx::GridFitMode} is always specified, i.e. Wx::GridFitMode#is_specified always returns true. The default value, if {Wx::GRID::GridCellAttr#set_fit_mode} hadn't been called before, is "overflow".
257
- # @return [Wx::GridFitMode]
241
+ # The returned {Wx::GRID::GridFitMode} is always specified, i.e. {Wx::GRID::GridFitMode#is_specified} always returns true. The default value, if {Wx::GRID::GridCellAttr#set_fit_mode} hadn't been called before, is "overflow".
242
+ # @return [Wx::GRID::GridFitMode]
258
243
  def get_fit_mode; end
259
244
  alias_method :fit_mode, :get_fit_mode
260
245
 
261
246
  # Returns true if the cells using this attribute overflow into the neighbouring cells.
262
247
  # Prefer using {Wx::GRID::GridCellAttr#get_fit_mode} in the new code.
263
- # @return [true,false]
248
+ # @return [Boolean]
264
249
  def get_overflow; end
265
250
  alias_method :overflow, :get_overflow
266
251
 
267
252
  # Returns true if the cell will draw an overflowed text into the neighbouring cells.
268
253
  # Note that only left aligned cells currently can overflow. It means that {Wx::GRID::GridCellAttr#get_fit_mode}.IsOverflow() should returns true and GetAlignment should returns {Wx::Alignment::ALIGN_LEFT} for hAlign parameter.
269
- # @return [true,false]
254
+ # @return [Boolean]
270
255
  def can_overflow; end
271
256
  alias_method :can_overflow?, :can_overflow
272
257
 
273
- # @return [AttrKind]
258
+ # @return [Wx::wxGridCellAttr::AttrKind]
274
259
  def get_kind; end
275
260
  alias_method :kind, :get_kind
276
261
 
@@ -20,9 +20,11 @@ module Wx::GRID
20
20
  # @see Wx::GRID::GridCellDateEditor
21
21
  #
22
22
  #
23
+ #
24
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
23
25
  class GridCellAutoWrapStringEditor < GridCellTextEditor
24
26
 
25
- # @return [GridCellAutoWrapStringEditor]
27
+ # @return [Wx::GRID::GridCellAutoWrapStringEditor]
26
28
  def initialize; end
27
29
 
28
30
  end # GridCellAutoWrapStringEditor
@@ -20,10 +20,12 @@ module Wx::GRID
20
20
  # @see Wx::GRID::GridCellStringRenderer
21
21
  #
22
22
  #
23
+ #
24
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
23
25
  class GridCellAutoWrapStringRenderer < GridCellStringRenderer
24
26
 
25
27
  # Default constructor.
26
- # @return [GridCellAutoWrapStringRenderer]
28
+ # @return [Wx::GRID::GridCellAutoWrapStringRenderer]
27
29
  def initialize; end
28
30
 
29
31
  end # GridCellAutoWrapStringRenderer
@@ -20,15 +20,17 @@ module Wx::GRID
20
20
  # @see Wx::GRID::GridCellDateEditor
21
21
  #
22
22
  #
23
+ #
24
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
23
25
  class GridCellBoolEditor < GridCellEditor
24
26
 
25
27
  # Default constructor.
26
- # @return [GridCellBoolEditor]
28
+ # @return [Wx::GRID::GridCellBoolEditor]
27
29
  def initialize; end
28
30
 
29
31
  # Returns true if the given value is equal to the string representation of the truth value we currently use (see {Wx::GRID::GridCellBoolEditor.use_string_values}).
30
32
  # @param value [String]
31
- # @return [true,false]
33
+ # @return [Boolean]
32
34
  def self.is_true_value(value) end
33
35
 
34
36
  # This method allows you to customize the values returned by {Wx::GRID::GridCellBoolEditor#get_value} for the cell using this editor.
@@ -19,10 +19,12 @@ module Wx::GRID
19
19
  # @see Wx::GRID::GridCellStringRenderer
20
20
  #
21
21
  #
22
+ #
23
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
22
24
  class GridCellBoolRenderer < GridCellStringRenderer
23
25
 
24
26
  # Default constructor.
25
- # @return [GridCellBoolRenderer]
27
+ # @return [Wx::GRID::GridCellBoolRenderer]
26
28
  def initialize; end
27
29
 
28
30
  end # GridCellBoolRenderer
@@ -20,20 +20,15 @@ module Wx::GRID
20
20
  # @see Wx::GRID::GridCellDateEditor
21
21
  #
22
22
  #
23
+ #
24
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
23
25
  class GridCellChoiceEditor < GridCellEditor
24
26
 
25
- # @overload initialize(count=0, choices=nil, allowOthers=false)
26
- # Choice cell renderer ctor.
27
- # @param count [Integer] Number of strings from which the user can choose.
28
- # @param choices [Wx::String] An array of strings from which the user can choose.
29
- # @param allowOthers [true,false] If allowOthers is true, the user can type a string not in choices array.
30
- # @return [GridCellChoiceEditor]
31
- # @overload initialize(choices, allowOthers=false)
32
- # Choice cell renderer ctor.
33
- # @param choices [Array<String>] An array of strings from which the user can choose.
34
- # @param allowOthers [true,false] If allowOthers is true, the user can type a string not in choices array.
35
- # @return [GridCellChoiceEditor]
36
- def initialize(*args) end
27
+ # Choice cell renderer ctor.
28
+ # @param choices [Array<String>] An array of strings from which the user can choose.
29
+ # @param allowOthers [Boolean] If allowOthers is true, the user can type a string not in choices array.
30
+ # @return [Wx::GRID::GridCellChoiceEditor]
31
+ def initialize(choices, allowOthers=false) end
37
32
 
38
33
  # Parameters string format is "item1[,item2[...,itemN]]".
39
34
  # This method can be called before the editor is used for the first time, or later, in which case it replaces the previously specified strings with the new ones.
@@ -20,11 +20,13 @@ module Wx::GRID
20
20
  # @see Wx::GRID::GridCellTextEditor
21
21
  #
22
22
  #
23
+ #
24
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
23
25
  class GridCellDateEditor < GridCellEditor
24
26
 
25
27
  # Date editor constructor.
26
28
  # @param format [String] Optional format for the date displayed in the associated cell. By default, the locale-specific date format ("%x") is assumed. You would typically want to specify the same format as the one used with the cell renderer, if a non-default one is used. Note that this parameter is only available since wxWidgets 3.1.5.
27
- # @return [GridCellDateEditor]
29
+ # @return [Wx::GRID::GridCellDateEditor]
28
30
  def initialize(format=(())) end
29
31
 
30
32
  end # GridCellDateEditor
@@ -21,11 +21,13 @@ module Wx::GRID
21
21
  # @see Wx::GRID::GridCellDateTimeRenderer
22
22
  #
23
23
  #
24
+ #
25
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
24
26
  class GridCellDateRenderer < GridCellStringRenderer
25
27
 
26
28
  # Date renderer constructor.
27
29
  # @param outformat [String] strftime()-like format string used to render the output date. By default (or if provided format string is empty) localized date representation ("%x") is used.
28
- # @return [GridCellDateRenderer]
30
+ # @return [Wx::GRID::GridCellDateRenderer]
29
31
  def initialize(outformat=(())) end
30
32
 
31
33
  # Sets the strftime()-like format string which will be used to render the date.
@@ -21,12 +21,14 @@ module Wx::GRID
21
21
  # @see Wx::GRID::GridCellDateRenderer
22
22
  #
23
23
  #
24
+ #
25
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
24
26
  class GridCellDateTimeRenderer < GridCellDateRenderer
25
27
 
26
28
  # Date/time renderer constructor.
27
29
  # @param outformat [String] strptime()-like format string used the parse the output date/time.
28
30
  # @param informat [String] strptime()-like format string used to parse the string entered in the cell.
29
- # @return [GridCellDateTimeRenderer]
31
+ # @return [Wx::GRID::GridCellDateTimeRenderer]
30
32
  def initialize(outformat=Wx::DefaultDateTimeFormat, informat=Wx::DefaultDateTimeFormat) end
31
33
 
32
34
  end # GridCellDateTimeRenderer