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
@@ -14,7 +14,7 @@ module Wx
14
14
  #
15
15
  DP_SPIN = 1
16
16
 
17
- # a combobox-like date picker (not supported in mac version)
17
+ # a combobox-like date picker (not supported on macOS <10.15.4)
18
18
  #
19
19
  DP_DROPDOWN = 2
20
20
 
@@ -32,11 +32,15 @@ module Wx
32
32
  # === Styles
33
33
  #
34
34
  # This class supports the following styles:
35
- #
35
+ #
36
36
  # - {Wx::DP_SPIN}: Creates a control without a month calendar drop down but with spin-control-like arrows to change individual date components. This style is not supported by the generic version.
37
- # - {Wx::DP_DROPDOWN}: Creates a control with a month calendar drop-down part from which the user can select a date. This style is not supported in OSX/Cocoa native version.
37
+ #
38
+ # - {Wx::DP_DROPDOWN}: Creates a control with a month calendar drop-down part from which the user can select a date. In OSX/Cocoa native version this style is supported on macOS 10.15.4 and later.
39
+ #
38
40
  # - {Wx::DP_DEFAULT}: Creates a control with the style that is best supported for the current platform (currently {Wx::DP_SPIN} under Windows and OSX/Cocoa and {Wx::DP_DROPDOWN} elsewhere).
41
+ #
39
42
  # - {Wx::DP_ALLOWNONE}: With this style, the control allows the user to not enter any valid date at all. Without it - the default - the control always has some valid date. This style is not supported in OSX/Cocoa native version.
43
+ #
40
44
  # - {Wx::DP_SHOWCENTURY}: Forces display of the century in the default date format. Without this style the century could be displayed, or not, depending on the default date representation in the system. This style is not supported in OSX/Cocoa native version currently.
41
45
  #
42
46
  # As can be seen from the remarks above, most of the control style are only supported in the native MSW implementation. In portable code it's recommended to use {Wx::DP_DEFAULT} style only, possibly combined with {Wx::DP_SHOWCENTURY} (this is also the style used by default if none is specified).
@@ -44,13 +48,14 @@ module Wx
44
48
  #
45
49
  # The following event-handler methods redirect the events to member method or handler blocks for {Wx::DateEvent} events.
46
50
  # Event handler methods for events emitted by this class:
51
+ #
47
52
  # - {Wx::EvtHandler#evt_date_changed}(id, meth = nil, &block): Process a {Wx::EVT_DATE_CHANGED} event, which fires when the user changes the current selection in the control.
48
53
  #
49
54
  # ===
50
55
  #
51
- # Category: Picker Controls <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> {Wx::MSW} Appearance
52
- # </td><td> {Wx::GTK} Appearance
53
- # </td><td> {Wx::OSX} Appearance
56
+ # Category: Picker Controls <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
57
+ # </td><td> wxGTK Appearance
58
+ # </td><td> wxOSX Appearance
54
59
  # </td></tr></table></div>
55
60
  # @see Wx::TimePickerCtrl
56
61
  # @see Wx::CalendarCtrl
@@ -61,8 +66,8 @@ module Wx
61
66
 
62
67
  # @overload initialize()
63
68
  # Default constructor.
64
- # @return [DatePickerCtrl]
65
- # @overload initialize(parent, id, dt=Wx::DefaultDateTime, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl"))
69
+ # @return [Wx::DatePickerCtrl]
70
+ # @overload initialize(parent, id, dt=Wx::DEFAULT_DATE_TIME, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl"))
66
71
  # Initializes the object and calls {Wx::DatePickerCtrl#create} with all the parameters.
67
72
  # @param parent [Wx::Window]
68
73
  # @param id [Integer]
@@ -72,7 +77,7 @@ module Wx
72
77
  # @param style [Integer]
73
78
  # @param validator [Wx::Validator]
74
79
  # @param name [String]
75
- # @return [DatePickerCtrl]
80
+ # @return [Wx::DatePickerCtrl]
76
81
  def initialize(*args) end
77
82
 
78
83
  # Create the control window.
@@ -87,8 +92,8 @@ module Wx
87
92
  # @param style [Integer] The window style, see the description of the styles in the class documentation.
88
93
  # @param validator [Wx::Validator] Validator which can be used for additional data checks.
89
94
  # @param name [String] Control name.
90
- # @return [true,false]
91
- def create(parent, id, dt=Wx::DefaultDateTime, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl")) end
95
+ # @return [Boolean]
96
+ def create(parent, id, dt=Wx::DEFAULT_DATE_TIME, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl")) end
92
97
 
93
98
  # Returns the currently entered date.
94
99
  # For a control with {Wx::DP_ALLOWNONE} style the returned value may be invalid if no date is entered, otherwise it is always valid.
data/lib/wx/doc/gen/dc.rb CHANGED
@@ -10,8 +10,13 @@ module Wx
10
10
  #
11
11
  # {Wx::DC#blit} and {Wx::DC#stretch_blit}).
12
12
  # The description of the values below refer to how a generic src source pixel and the corresponding dst destination pixel gets combined together to produce the final pixel. E.g. {Wx::RasterOperationMode::CLEAR} and {Wx::RasterOperationMode::SET} completely ignore the source and the destination pixel and always put zeroes or ones in the final surface.
13
- # Note that not all modes are supported under all platforms. Notably {Wx::GTK3} and {Wx::Mac} only support the following modes:
14
- # - {Wx::RasterOperationMode::COPY}- {Wx::RasterOperationMode::OR}- {Wx::RasterOperationMode::NO_OP}- {Wx::RasterOperationMode::CLEAR}- {Wx::RasterOperationMode::XOR} and only support the commonly used {Wx::RasterOperationMode::INVERT} when the source colour is white (as it is implemented using {Wx::CompositionMode::COMPOSITION_DIFF} composition mode).
13
+ # Note that not all modes are supported under all platforms. Notably wxGTK3 and {Wx::Mac} only support the following modes:
14
+ #
15
+ # - {Wx::RasterOperationMode::COPY}
16
+ # - {Wx::RasterOperationMode::OR}
17
+ # - {Wx::RasterOperationMode::NO_OP}
18
+ # - {Wx::RasterOperationMode::CLEAR}
19
+ # - {Wx::RasterOperationMode::XOR} and only support the commonly used {Wx::RasterOperationMode::INVERT} when the source colour is white (as it is implemented using {Wx::CompositionMode::COMPOSITION_DIFF} composition mode).
15
20
  #
16
21
  class RasterOperationMode < Wx::Enum
17
22
 
@@ -302,13 +307,13 @@ module Wx
302
307
  # @param bitmap [Wx::Bitmap]
303
308
  # @param x [Integer]
304
309
  # @param y [Integer]
305
- # @param useMask [true,false]
310
+ # @param useMask [Boolean]
306
311
  # @return [void]
307
312
  # @overload draw_bitmap(bmp, pt, useMask=false)
308
313
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
309
314
  # @param bmp [Wx::Bitmap]
310
315
  # @param pt [Array(Integer, Integer), Wx::Point]
311
- # @param useMask [true,false]
316
+ # @param useMask [Boolean]
312
317
  # @return [void]
313
318
  def draw_bitmap(*args) end
314
319
 
@@ -458,7 +463,7 @@ module Wx
458
463
  # @param points [Array<Wx::Point>,Array<Array<Integer>>]
459
464
  # @param xoffset [Integer]
460
465
  # @param yoffset [Integer]
461
- # @param fill_style [PolygonFillMode]
466
+ # @param fill_style [Wx::PolygonFillMode]
462
467
  # @return [void]
463
468
  def draw_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
464
469
 
@@ -471,7 +476,7 @@ module Wx
471
476
  # @param points [Array<Array<Wx::Point>>,Array<Array<Array<Integer>>>]
472
477
  # @param xoffset [Integer]
473
478
  # @param yoffset [Integer]
474
- # @param fill_style [PolygonFillMode]
479
+ # @param fill_style [Wx::PolygonFillMode]
475
480
  # @return [void]
476
481
  def draw_poly_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
477
482
 
@@ -593,31 +598,32 @@ module Wx
593
598
  # @param rect [Wx::Rect]
594
599
  # @param initialColour [Wx::Colour,String,Symbol]
595
600
  # @param destColour [Wx::Colour,String,Symbol]
596
- # @param nDirection [Direction]
601
+ # @param nDirection [Wx::Direction]
597
602
  # @return [void]
598
603
  def gradient_fill_linear(rect, initialColour, destColour, nDirection=Wx::Direction::RIGHT) end
599
604
 
600
605
  # @overload flood_fill(x, y, colour, style=Wx::FloodFillStyle::FLOOD_SURFACE)
601
606
  # Flood fills the device context starting from the given point, using the current brush colour, and using a style:
602
- # - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered.- {Wx::FloodFillStyle::FLOOD_BORDER}: The area to be flooded is bounded by the given colour.
607
+ # - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered.
608
+ # - {Wx::FloodFillStyle::FLOOD_BORDER}: The area to be flooded is bounded by the given colour.
603
609
  #
604
- # Currently this method is not implemented in {Wx::OSX} and does nothing there.
610
+ # Currently this method is not implemented in wxOSX and does nothing there.
605
611
  # false if the operation failed.
606
612
  #
607
613
  # The present implementation for non-Windows platforms may fail to find colour borders if the pixels do not match the colour exactly. However the function will still return true.
608
614
  #
609
- # This method shouldn't be used with {Wx::PaintDC} under non-Windows platforms as it uses {Wx::DC#get_pixel} internally and this may give wrong results, notably in {Wx::GTK}. If you need to flood fill {Wx::PaintDC}, create a temporary {Wx::MemoryDC}, flood fill it and then blit it to, or draw as a bitmap on, {Wx::PaintDC}. See the example of doing this in the drawing sample and {Wx::BufferedPaintDC} class.
615
+ # This method shouldn't be used with {Wx::PaintDC} under non-Windows platforms as it uses {Wx::DC#get_pixel} internally and this may give wrong results, notably in wxGTK. If you need to flood fill {Wx::PaintDC}, create a temporary {Wx::MemoryDC}, flood fill it and then blit it to, or draw as a bitmap on, {Wx::PaintDC}. See the example of doing this in the drawing sample and {Wx::BufferedPaintDC} class.
610
616
  # @param x [Integer]
611
617
  # @param y [Integer]
612
618
  # @param colour [Wx::Colour,String,Symbol]
613
- # @param style [FloodFillStyle]
614
- # @return [true,false]
619
+ # @param style [Wx::FloodFillStyle]
620
+ # @return [Boolean]
615
621
  # @overload flood_fill(pt, col, style=Wx::FloodFillStyle::FLOOD_SURFACE)
616
622
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
617
623
  # @param pt [Array(Integer, Integer), Wx::Point]
618
624
  # @param col [Wx::Colour,String,Symbol]
619
- # @param style [FloodFillStyle]
620
- # @return [true,false]
625
+ # @param style [Wx::FloodFillStyle]
626
+ # @return [Boolean]
621
627
  def flood_fill(*args) end
622
628
 
623
629
  # @overload cross_hair(x, y)
@@ -646,11 +652,11 @@ module Wx
646
652
  # true if there is a clipping region or false if there is no active clipping region (note that this return value is available only since wxWidgets 3.1.2, this function didn't return anything in the previous versions).
647
653
  # @param x [Integer] If non-NULL, filled in with the logical horizontal coordinate of the top left corner of the clipping region if the function returns true or 0 otherwise.
648
654
  # @param y [Integer] If non-NULL, filled in with the logical vertical coordinate of the top left corner of the clipping region if the function returns true or 0 otherwise.
649
- # @return [Array(true,false,Integer,Integer)]
655
+ # @return [Array(Boolean,Integer,Integer)]
650
656
  # @overload get_clipping_box(rect)
651
657
  # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
652
658
  # @param rect [Wx::Rect]
653
- # @return [true,false]
659
+ # @return [Boolean]
654
660
  def get_clipping_box(*args) end
655
661
  alias_method :clipping_box, :get_clipping_box
656
662
 
@@ -658,7 +664,10 @@ module Wx
658
664
  # Sets the clipping region for this device context to the intersection of the given region described by the parameters of this method and the previously set clipping region.
659
665
  # The clipping region is an area to which drawing is restricted. Possible uses for the clipping region are for clipping text or for speeding up window redraws when only a known area of the screen is damaged.
660
666
  #
661
- # - Clipping region should be given in logical coordinates.- Calling this function can only make the clipping region smaller, never larger.- You need to call {Wx::DC#destroy_clipping_region} first if you want to set the clipping region exactly to the region specified.- If resulting clipping region is empty, then all drawing on the DC is clipped out (all changes made by drawing operations are masked out).
667
+ # - Clipping region should be given in logical coordinates.
668
+ # - Calling this function can only make the clipping region smaller, never larger.
669
+ # - You need to call {Wx::DC#destroy_clipping_region} first if you want to set the clipping region exactly to the region specified.
670
+ # - If resulting clipping region is empty, then all drawing on the DC is clipped out (all changes made by drawing operations are masked out).
662
671
  # @see Wx::DC#destroy_clipping_region
663
672
  # @see Wx::Region
664
673
  # @param x [Integer]
@@ -697,7 +706,7 @@ module Wx
697
706
 
698
707
  # Returns the various font characteristics.
699
708
  # This method allows retrieving some of the font characteristics not returned by {Wx::DC#get_text_extent}, notably internal leading and average character width.
700
- # Currently this method returns correct results only under {Wx::MSW}, in the other ports the internal leading will always be 0 and the average character width will be computed as the width of the character 'x'.
709
+ # Currently this method returns correct results only under wxMSW, in the other ports the internal leading will always be 0 and the average character width will be computed as the width of the character 'x'.
701
710
  # @return [Wx::FontMetrics]
702
711
  def get_font_metrics; end
703
712
  alias_method :font_metrics, :get_font_metrics
@@ -770,7 +779,7 @@ module Wx
770
779
  # Gets the current layout direction of the device context.
771
780
  # On platforms where RTL layout is supported, the return value will either be {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}. If RTL layout is not supported, the return value will be {Wx::LayoutDirection::Layout_Default}.
772
781
  # @see Wx::DC#set_layout_direction
773
- # @return [LayoutDirection]
782
+ # @return [Wx::LayoutDirection]
774
783
  def get_layout_direction; end
775
784
  alias_method :layout_direction, :get_layout_direction
776
785
 
@@ -797,7 +806,7 @@ module Wx
797
806
  alias_method :background_mode=, :set_background_mode
798
807
 
799
808
  # Sets the current font for the DC.
800
- # The font parameter should be valid, although in {Wx::MSW} port (only) the argument {Wx::NULL_FONT} is also accepted and resets the device context font to the default value used by the system (which is not generally useful).
809
+ # The font parameter should be valid, although in wxMSW port (only) the argument {Wx::NULL_FONT} is also accepted and resets the device context font to the default value used by the system (which is not generally useful).
801
810
  # @see Wx::Font
802
811
  # @param font [Wx::Font,Wx::FontInfo]
803
812
  # @return [void]
@@ -821,7 +830,7 @@ module Wx
821
830
  # Sets the current layout direction for the device context.
822
831
  #
823
832
  # @see Wx::DC#get_layout_direction
824
- # @param dir [LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
833
+ # @param dir [Wx::LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
825
834
  # @return [void]
826
835
  def set_layout_direction(dir) end
827
836
  alias_method :layout_direction=, :set_layout_direction
@@ -859,7 +868,7 @@ module Wx
859
868
  # Starts a document (only relevant when outputting to a printer).
860
869
  # message is a message to show while printing.
861
870
  # @param message [String]
862
- # @return [true,false]
871
+ # @return [Boolean]
863
872
  def start_doc(message) end
864
873
 
865
874
  # Starts a document page (only relevant when outputting to a printer).
@@ -890,18 +899,24 @@ module Wx
890
899
  # @param source [Wx::DC] Source device context.
891
900
  # @param xsrc [Integer] Source device context x position.
892
901
  # @param ysrc [Integer] Source device context y position.
893
- # @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
894
- # @param useMask [true,false] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
902
+ # @param logicalFunc [Wx::RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
903
+ # @param useMask [Boolean] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
904
+ #
895
905
  # -
896
906
  # Creates a temporary bitmap and copies the destination area into it.
907
+ #
897
908
  # -
898
909
  # Copies the source area into the temporary bitmap using the specified logical function.
910
+ #
899
911
  # -
900
912
  # Sets the masked area in the temporary bitmap to BLACK by ANDing the mask bitmap with the temp bitmap with the foreground colour set to WHITE and the bg colour set to BLACK.
913
+ #
901
914
  # -
902
915
  # Sets the unmasked area in the destination area to BLACK by ANDing the mask bitmap with the destination area with the foreground colour set to BLACK and the background colour set to WHITE.
916
+ #
903
917
  # -
904
918
  # ORs the temporary bitmap with the destination area.
919
+ #
905
920
  # -
906
921
  # Deletes the temporary bitmap.
907
922
  #
@@ -910,7 +925,7 @@ module Wx
910
925
  # <b>Note:</b> on Windows, blitting with masks can be speeded up considerably by compiling wxWidgets with the {Wx::Setup::USE_DC_CACHEING} option enabled. You can also influence whether MaskBlt or the explicit mask blitting code above is used, by using {Wx::SystemOptions} and setting the <code>no-maskblt</code> option to 1.
911
926
  # @param xsrcMask [Integer] Source x position on the mask. If both xsrcMask and ysrcMask are <code>-1</code>, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
912
927
  # @param ysrcMask [Integer] Source y position on the mask. If both xsrcMask and ysrcMask are <code>-1</code>, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
913
- # @return [true,false]
928
+ # @return [Boolean]
914
929
  def blit(xdest, ydest, width, height, source, xsrc, ysrc, logicalFunc=Wx::RasterOperationMode::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
915
930
 
916
931
  # Copy from a source DC to this DC possibly changing the scale.
@@ -932,18 +947,24 @@ module Wx
932
947
  # @param ysrc [Integer] Source device context y position.
933
948
  # @param srcWidth [Integer] Width of source area to be copied.
934
949
  # @param srcHeight [Integer] Height of source area to be copied.
935
- # @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
936
- # @param useMask [true,false] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
950
+ # @param logicalFunc [Wx::RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
951
+ # @param useMask [Boolean] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
952
+ #
937
953
  # -
938
954
  # Creates a temporary bitmap and copies the destination area into it.
955
+ #
939
956
  # -
940
957
  # Copies the source area into the temporary bitmap using the specified logical function.
958
+ #
941
959
  # -
942
960
  # Sets the masked area in the temporary bitmap to BLACK by ANDing the mask bitmap with the temp bitmap with the foreground colour set to WHITE and the bg colour set to BLACK.
961
+ #
943
962
  # -
944
963
  # Sets the unmasked area in the destination area to BLACK by ANDing the mask bitmap with the destination area with the foreground colour set to BLACK and the background colour set to WHITE.
964
+ #
945
965
  # -
946
966
  # ORs the temporary bitmap with the destination area.
967
+ #
947
968
  # -
948
969
  # Deletes the temporary bitmap.
949
970
  #
@@ -952,7 +973,7 @@ module Wx
952
973
  # <b>Note:</b> on Windows, blitting with masks can be speeded up considerably by compiling wxWidgets with the {Wx::Setup::USE_DC_CACHEING} option enabled. You can also influence whether MaskBlt or the explicit mask blitting code above is used, by using {Wx::SystemOptions} and setting the <code>no-maskblt</code> option to 1.
953
974
  # @param xsrcMask [Integer] Source x position on the mask. If both xsrcMask and ysrcMask are {Wx::DEFAULT_COORD}, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
954
975
  # @param ysrcMask [Integer] Source y position on the mask. If both xsrcMask and ysrcMask are {Wx::DEFAULT_COORD}, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
955
- # @return [true,false]
976
+ # @return [Boolean]
956
977
  def stretch_blit(xdest, ydest, dstWidth, dstHeight, source, xsrc, ysrc, srcWidth, srcHeight, logicalFunc=Wx::RasterOperationMode::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
957
978
 
958
979
  # Gets the brush used for painting the background.
@@ -999,36 +1020,13 @@ module Wx
999
1020
  def set_pen(pen) end
1000
1021
  alias_method :pen=, :set_pen
1001
1022
 
1002
- # Check if the use of transformation matrix is supported by the current system.
1003
- # This function returns true for MSW and GTK+ 3 platforms and since 3.1.1 also for {Wx::GCDC} in all ports.
1004
- # @return [true,false]
1005
- def can_use_transform_matrix; end
1006
- alias_method :can_use_transform_matrix?, :can_use_transform_matrix
1007
-
1008
- # Set the transformation matrix.
1009
- # If transformation matrix is supported on the current system, the specified matrix will be used to transform between {Wx::DC} and physical coordinates. Otherwise the function returns false and doesn't change the coordinate mapping.
1010
- # @param matrix [Wx::AffineMatrix2D]
1011
- # @return [true,false]
1012
- def set_transform_matrix(matrix) end
1013
- alias_method :transform_matrix=, :set_transform_matrix
1014
-
1015
- # Return the transformation matrix used by this device context.
1016
- # By default the transformation matrix is the identity matrix.
1017
- # @return [Wx::AffineMatrix2D]
1018
- def get_transform_matrix; end
1019
- alias_method :transform_matrix, :get_transform_matrix
1020
-
1021
- # Revert the transformation matrix to identity matrix.
1022
- # @return [void]
1023
- def reset_transform_matrix; end
1024
-
1025
1023
  # Does the DC support drawing bitmaps?
1026
- # @return [true,false]
1024
+ # @return [Boolean]
1027
1025
  def can_draw_bitmap; end
1028
1026
  alias_method :can_draw_bitmap?, :can_draw_bitmap
1029
1027
 
1030
1028
  # Does the DC support calculating the size required to draw text?
1031
- # @return [true,false]
1029
+ # @return [Boolean]
1032
1030
  def can_get_text_extent; end
1033
1031
  alias_method :can_get_text_extent?, :can_get_text_extent
1034
1032
 
@@ -1041,7 +1039,11 @@ module Wx
1041
1039
 
1042
1040
  # Copy attributes from another DC.
1043
1041
  # The copied attributes currently are:
1044
- # - Font- Text foreground and background colours- Background brush- Layout direction
1042
+ #
1043
+ # - Font
1044
+ # - Text foreground and background colours
1045
+ # - Background brush
1046
+ # - Layout direction
1045
1047
  #
1046
1048
  # Note that the scaling factor is not considered to be an attribute of {Wx::DC} and is not copied by this function.
1047
1049
  # @param dc [Wx::DC] A valid (i.e. its {Wx::DC#is_ok} must return true) source device context.
@@ -1049,7 +1051,8 @@ module Wx
1049
1051
  def copy_attributes(dc) end
1050
1052
 
1051
1053
  # Returns the factor used for converting logical pixels to physical ones.
1052
- # Returns the same value as {Wx::Window#get_content_scale_factor} for the device contexts associated with a window and the same value as {Wx::Bitmap#get_scale_factor} for the associated bitmap for {Wx::MemoryDC}.
1054
+ # Returns the same value as {Wx::Window#get_dpi_scale_factor} for the device contexts associated with a window and the same value as {Wx::Bitmap#get_scale_factor} for the associated bitmap for {Wx::MemoryDC}.
1055
+ # Beware that since wxWidgets 3.1.6, this function does not return the same value as {Wx::Window#get_content_scale_factor} for the device contexts associated with the window. Unlike {Wx::Window} method, it always returns the effective scale factor instead of always returning 1 on platforms where logical pixels are the same as physical ones, such as MSW.
1053
1056
  # @return [Float]
1054
1057
  def get_content_scale_factor; end
1055
1058
  alias_method :content_scale_factor, :get_content_scale_factor
@@ -1071,26 +1074,26 @@ module Wx
1071
1074
  # Gets the current logical function.
1072
1075
  #
1073
1076
  # @see Wx::DC#set_logical_function
1074
- # @return [RasterOperationMode]
1077
+ # @return [Wx::RasterOperationMode]
1075
1078
  def get_logical_function; end
1076
1079
  alias_method :logical_function, :get_logical_function
1077
1080
 
1078
1081
  # Gets the current mapping mode for the device context.
1079
1082
  #
1080
1083
  # @see Wx::DC#set_map_mode
1081
- # @return [MappingMode]
1084
+ # @return [Wx::MappingMode]
1082
1085
  def get_map_mode; end
1083
1086
  alias_method :map_mode, :get_map_mode
1084
1087
 
1085
1088
  # Gets in colour the colour at the specified location.
1086
- # This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in {Wx::OSX} port and simply returns false there.
1089
+ # This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in wxOSX port and simply returns false there.
1087
1090
  # Setting a pixel can be done using {Wx::DC#draw_point}.
1088
1091
  #
1089
- # This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in {Wx::GTK}.
1092
+ # This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in wxGTK.
1090
1093
  # @param x [Integer]
1091
1094
  # @param y [Integer]
1092
1095
  # @param colour [Wx::Colour]
1093
- # @return [true,false]
1096
+ # @return [Boolean]
1094
1097
  def get_pixel(x, y, colour) end
1095
1098
  alias_method :pixel, :get_pixel
1096
1099
 
@@ -1163,21 +1166,19 @@ module Wx
1163
1166
  # Gets the current user scale factor.
1164
1167
  #
1165
1168
  # @see Wx::DC#set_user_scale
1166
- # @param x [double]
1167
- # @param y [double]
1168
- # @return [void]
1169
- def get_user_scale(x, y) end
1169
+ # @return [Array(Float,Float)]
1170
+ def get_user_scale; end
1170
1171
  alias_method :user_scale, :get_user_scale
1171
1172
 
1172
1173
  # Returns true if the DC is ok to use.
1173
- # @return [true,false]
1174
+ # @return [Boolean]
1174
1175
  def is_ok; end
1175
1176
  alias_method :ok?, :is_ok
1176
1177
 
1177
1178
  # Sets the x and y axis orientation (i.e. the direction from lowest to highest values on the axis).
1178
1179
  # The default orientation is x axis from left to right and y axis from top down.
1179
- # @param xLeftRight [true,false] True to set the x axis orientation to the natural left to right orientation, false to invert it.
1180
- # @param yBottomUp [true,false] True to set the y axis orientation to the natural bottom up orientation, false to invert it.
1180
+ # @param xLeftRight [Boolean] True to set the x axis orientation to the natural left to right orientation, false to invert it.
1181
+ # @param yBottomUp [Boolean] True to set the y axis orientation to the natural bottom up orientation, false to invert it.
1181
1182
  # @return [void]
1182
1183
  def set_axis_orientation(xLeftRight, yBottomUp) end
1183
1184
 
@@ -1189,12 +1190,12 @@ module Wx
1189
1190
  def set_device_origin(x, y) end
1190
1191
 
1191
1192
  # Sets the current logical function for the device context.
1192
- # This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by {Wx::GTK3} and {Wx::Mac}. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
1193
+ # This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by wxGTK3 and {Wx::Mac}. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
1193
1194
  #
1194
1195
  # It determines how a source pixel (from a pen or brush colour, or source device context if using {Wx::DC#blit}) combines with a destination pixel in the current device context. Text drawing is not affected by this function.
1195
1196
  # See {Wx::RasterOperationMode} enumeration values for more info.
1196
1197
  # The default is {Wx::RasterOperationMode::COPY}, which simply draws with the current colour. The others combine the current colour and the background using a logical operation.
1197
- # @param function [RasterOperationMode]
1198
+ # @param function [Wx::RasterOperationMode]
1198
1199
  # @return [void]
1199
1200
  def set_logical_function(function) end
1200
1201
  alias_method :logical_function=, :set_logical_function
@@ -1203,7 +1204,7 @@ module Wx
1203
1204
  # Note that in X, text drawing isn't handled consistently with the mapping mode; a font is always specified in point size. However, setting the user scale (see {Wx::DC#set_user_scale}) scales the text appropriately. In Windows, scalable TrueType fonts are always used; in X, results depend on availability of fonts, but usually a reasonable match is found.
1204
1205
  # The coordinate origin is always at the top left of the screen/printer.
1205
1206
  # Drawing to a Windows printer device context uses the current mapping mode, but mapping mode is currently ignored for PostScript output.
1206
- # @param mode [MappingMode]
1207
+ # @param mode [Wx::MappingMode]
1207
1208
  # @return [void]
1208
1209
  def set_map_mode(mode) end
1209
1210
  alias_method :map_mode=, :set_map_mode
@@ -1236,10 +1237,8 @@ module Wx
1236
1237
  def set_logical_scale(x, y) end
1237
1238
 
1238
1239
  # Return the scale set by the last call to {Wx::DC#set_logical_scale}.
1239
- # @param x [double]
1240
- # @param y [double]
1241
- # @return [void]
1242
- def get_logical_scale(x, y) end
1240
+ # @return [Array(Float,Float)]
1241
+ def get_logical_scale; end
1243
1242
  alias_method :logical_scale, :get_logical_scale
1244
1243
 
1245
1244
  # Change the offset used for translating {Wx::DC} coordinates.
@@ -1266,5 +1265,94 @@ module Wx
1266
1265
 
1267
1266
  end # DC
1268
1267
 
1268
+ # Simple collection of various font metrics.
1269
+ # This object is returned by {Wx::DC#get_font_metrics}.
1270
+ #
1271
+ # ===
1272
+ #
1273
+ # Category: Device Contexts, Graphics Device Interface (GDI)
1274
+ #
1275
+ #
1276
+ # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
1277
+ class FontMetrics < ::Object
1278
+
1279
+ # Total character height.
1280
+ #
1281
+ #
1282
+ # @return [Integer]
1283
+ def height; end
1284
+ # Total character height.
1285
+ #
1286
+ #
1287
+ # @param val [Integer]
1288
+ # @return [void]
1289
+ def height=(val); end
1290
+
1291
+ # Part of the height above the baseline.
1292
+ #
1293
+ #
1294
+ # @return [Integer]
1295
+ def ascent; end
1296
+ # Part of the height above the baseline.
1297
+ #
1298
+ #
1299
+ # @param val [Integer]
1300
+ # @return [void]
1301
+ def ascent=(val); end
1302
+
1303
+ # Part of the height below the baseline.
1304
+ #
1305
+ #
1306
+ # @return [Integer]
1307
+ def descent; end
1308
+ # Part of the height below the baseline.
1309
+ #
1310
+ #
1311
+ # @param val [Integer]
1312
+ # @return [void]
1313
+ def descent=(val); end
1314
+
1315
+ # Intra-line spacing.
1316
+ #
1317
+ #
1318
+ # @return [Integer]
1319
+ def internal_leading; end
1320
+ # Intra-line spacing.
1321
+ #
1322
+ #
1323
+ # @param val [Integer]
1324
+ # @return [void]
1325
+ def internal_leading=(val); end
1326
+
1327
+ # Inter-line spacing.
1328
+ #
1329
+ #
1330
+ # @return [Integer]
1331
+ def external_leading; end
1332
+ # Inter-line spacing.
1333
+ #
1334
+ #
1335
+ # @param val [Integer]
1336
+ # @return [void]
1337
+ def external_leading=(val); end
1338
+
1339
+ # Average font width, a.k.a. "x-width".
1340
+ #
1341
+ #
1342
+ # @return [Integer]
1343
+ def average_width; end
1344
+ # Average font width, a.k.a. "x-width".
1345
+ #
1346
+ #
1347
+ # @param val [Integer]
1348
+ # @return [void]
1349
+ def average_width=(val); end
1350
+
1351
+ # Constructor initializes all fields to 0.
1352
+ # @return [Wx::FontMetrics]
1353
+ def initialize; end
1354
+
1355
+ end # FontMetrics
1356
+
1269
1357
 
1270
1358
  end
@@ -2106,67 +2106,67 @@ module Wx
2106
2106
  #
2107
2107
  K_LAUNCH_APP2 = Wx::KeyCode.new(443)
2108
2108
 
2109
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2109
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2110
2110
  #
2111
2111
  K_LAUNCH_0 = Wx::KeyCode.new(432)
2112
2112
 
2113
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2113
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2114
2114
  #
2115
2115
  K_LAUNCH_1 = Wx::KeyCode.new(433)
2116
2116
 
2117
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2117
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2118
2118
  #
2119
2119
  K_LAUNCH_2 = Wx::KeyCode.new(434)
2120
2120
 
2121
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2121
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2122
2122
  #
2123
2123
  K_LAUNCH_3 = Wx::KeyCode.new(435)
2124
2124
 
2125
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2125
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2126
2126
  #
2127
2127
  K_LAUNCH_4 = Wx::KeyCode.new(436)
2128
2128
 
2129
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2129
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2130
2130
  #
2131
2131
  K_LAUNCH_5 = Wx::KeyCode.new(437)
2132
2132
 
2133
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2133
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2134
2134
  #
2135
2135
  K_LAUNCH_6 = Wx::KeyCode.new(438)
2136
2136
 
2137
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2137
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2138
2138
  #
2139
2139
  K_LAUNCH_7 = Wx::KeyCode.new(439)
2140
2140
 
2141
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2141
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2142
2142
  #
2143
2143
  K_LAUNCH_8 = Wx::KeyCode.new(440)
2144
2144
 
2145
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2145
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2146
2146
  #
2147
2147
  K_LAUNCH_9 = Wx::KeyCode.new(441)
2148
2148
 
2149
- # Available since wxWidgets 3.1.6, generated by {Wx::GTK} and {Wx::MSW}.
2149
+ # Available since wxWidgets 3.1.6, generated by wxGTK and wxMSW.
2150
2150
  #
2151
2151
  K_LAUNCH_A = Wx::KeyCode.new(442)
2152
2152
 
2153
- # Available since wxWidgets 3.1.6, generated by {Wx::GTK} and {Wx::MSW}.
2153
+ # Available since wxWidgets 3.1.6, generated by wxGTK and wxMSW.
2154
2154
  #
2155
2155
  K_LAUNCH_B = Wx::KeyCode.new(443)
2156
2156
 
2157
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2157
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2158
2158
  #
2159
2159
  K_LAUNCH_C = Wx::KeyCode.new(444)
2160
2160
 
2161
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2161
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2162
2162
  #
2163
2163
  K_LAUNCH_D = Wx::KeyCode.new(445)
2164
2164
 
2165
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2165
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2166
2166
  #
2167
2167
  K_LAUNCH_E = Wx::KeyCode.new(446)
2168
2168
 
2169
- # Available since wxWidgets 3.1.6 and only generated by {Wx::GTK}.
2169
+ # Available since wxWidgets 3.1.6 and only generated by wxGTK.
2170
2170
  #
2171
2171
  K_LAUNCH_F = Wx::KeyCode.new(447)
2172
2172