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
@@ -666,7 +666,7 @@ module Wx::RBN
666
666
  class RibbonArtProvider < ::Object
667
667
 
668
668
  # Constructor.
669
- # @return [RibbonArtProvider]
669
+ # @return [Wx::RBN::RibbonArtProvider]
670
670
  def initialize; end
671
671
 
672
672
  # Create a new art provider which is a clone of this one.
@@ -774,7 +774,7 @@ module Wx::RBN
774
774
  # Draw a single tab in the tab region of a ribbon bar.
775
775
  # @param dc [Wx::DC] The device context to draw onto.
776
776
  # @param wnd [Wx::Window] The window which is being drawn onto (not the {Wx::RBN::RibbonPage} associated with the tab being drawn).
777
- # @param tab [Wx::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonArtProvider#get_tab_ctrl_height}.
777
+ # @param tab [Wx::RBN::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonArtProvider#get_tab_ctrl_height}.
778
778
  # @return [void]
779
779
  def draw_tab(dc, wnd, tab) end
780
780
 
@@ -807,7 +807,7 @@ module Wx::RBN
807
807
  # This should draw the border, background, label, and any other items of a panel which are outside the client area of a panel.
808
808
  # Note that when a panel is minimised, this function is not called - only {Wx::RBN::RibbonArtProvider#draw_minimised_panel} is called, so a background should be explicitly painted by that if required.
809
809
  # @param dc [Wx::DC] The device context to draw onto.
810
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
810
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
811
811
  # @param rect [Wx::Rect] The rectangle within which to draw.
812
812
  # @return [void]
813
813
  def draw_panel_background(dc, wnd, rect) end
@@ -815,7 +815,7 @@ module Wx::RBN
815
815
  # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
816
816
  # This should draw the border, background, scroll buttons, extension button, and any other UI elements which are not attached to a specific gallery item.
817
817
  # @param dc [Wx::DC] The device context to draw onto.
818
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
818
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
819
819
  # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is the entire area of the gallery control, not just the client rectangle.
820
820
  # @return [void]
821
821
  def draw_gallery_background(dc, wnd, rect) end
@@ -823,15 +823,15 @@ module Wx::RBN
823
823
  # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
824
824
  # This is painted on top of a gallery background, and behind the items bitmap. Unlike {Wx::RBN::RibbonArtProvider#draw_button_bar_button} and {Wx::RBN::RibbonArtProvider#draw_tool}, it is not expected to draw the item bitmap - that is done by the gallery control itself.
825
825
  # @param dc [Wx::DC] The device context to draw onto.
826
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
826
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
827
827
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_gallery_background}.
828
- # @param item [Wx::RibbonGalleryItem] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
828
+ # @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
829
829
  # @return [void]
830
830
  def draw_gallery_item_background(dc, wnd, rect, item) end
831
831
 
832
832
  # Draw a minimised ribbon panel.
833
833
  # @param dc [Wx::DC] The device context to draw onto.
834
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
834
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
835
835
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of the rectangle will be at least the size returned by {Wx::RBN::RibbonArtProvider#get_minimised_panel_minimum_size}.
836
836
  # @param bitmap [Wx::Bitmap] A copy of the panel's minimised bitmap rescaled to the size returned by {Wx::RBN::RibbonArtProvider#get_minimised_panel_minimum_size}.
837
837
  # @return [void]
@@ -848,7 +848,7 @@ module Wx::RBN
848
848
  # @param dc [Wx::DC] The device context to draw onto.
849
849
  # @param wnd [Wx::Window] The window which is being drawn onto.
850
850
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_button_bar_background}.
851
- # @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
851
+ # @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
852
852
  # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
853
853
  # @param label [String] The label of the button.
854
854
  # @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
@@ -875,7 +875,7 @@ module Wx::RBN
875
875
  # @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
876
876
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tool_group_background}.
877
877
  # @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
878
- # @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
878
+ # @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
879
879
  # @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
880
880
  # @return [void]
881
881
  def draw_tool(dc, wnd, rect, bitmap, kind, state) end
@@ -883,16 +883,16 @@ module Wx::RBN
883
883
  # Draw toggle button on {Wx::RBN::RibbonBar}.
884
884
  # This should draw a small toggle button at top right corner of ribbon bar.
885
885
  # @param dc [Wx::DC] The device context to draw onto.
886
- # @param wnd [Wx::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
886
+ # @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
887
887
  # @param rect [Wx::Rect] The rectangle within which to draw.
888
- # @param mode [RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
888
+ # @param mode [Wx::RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
889
889
  # @return [void]
890
890
  def draw_toggle_button(dc, wnd, rect, mode) end
891
891
 
892
892
  # Draw help button on {Wx::RBN::RibbonBar}.
893
893
  # This should draw a help button at top right corner of ribbon bar.
894
894
  # @param dc [Wx::DC] The device context to draw onto.
895
- # @param wnd [Wx::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
895
+ # @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
896
896
  # @param rect [Wx::Rect] The rectangle within which to draw.
897
897
  # @return [void]
898
898
  def draw_help_button(dc, wnd, rect) end
@@ -927,7 +927,7 @@ module Wx::RBN
927
927
  # This should increment the given size by enough to fit the panel label and other chrome.
928
928
  # @see Wx::RBN::RibbonArtProvider#get_panel_client_size
929
929
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
930
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
930
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
931
931
  # @param client_size [Wx::Size] The client size.
932
932
  # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
933
933
  # @return [Wx::Size]
@@ -938,7 +938,7 @@ module Wx::RBN
938
938
  # This should act as the inverse to {Wx::RBN::RibbonArtProvider#get_panel_size}, and decrement the given size by enough to fit the panel label and other chrome.
939
939
  # @see Wx::RBN::RibbonArtProvider#get_panel_size
940
940
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
941
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
941
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
942
942
  # @param size [Wx::Size] The overall size to calculate client size for.
943
943
  # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
944
944
  # @return [Wx::Size]
@@ -947,7 +947,7 @@ module Wx::RBN
947
947
 
948
948
  # Calculate the position and size of the panel extension button.
949
949
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
950
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
950
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
951
951
  # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
952
952
  # @return [Wx::Rect]
953
953
  def get_panel_ext_button_area(dc, wnd, rect) end
@@ -957,7 +957,7 @@ module Wx::RBN
957
957
  # This should increment the given size by enough to fit the gallery border, buttons, and any other chrome.
958
958
  # @see Wx::RBN::RibbonArtProvider#get_gallery_client_size
959
959
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
960
- # @param wnd [Wx::RibbonGallery] The gallery in question.
960
+ # @param wnd [Wx::RBN::RibbonGallery] The gallery in question.
961
961
  # @param client_size [Wx::Size] The client size.
962
962
  # @return [Wx::Size]
963
963
  def get_gallery_size(dc, wnd, client_size) end
@@ -966,7 +966,7 @@ module Wx::RBN
966
966
  # Calculate the client size of a {Wx::RBN::RibbonGallery} control for a given size.
967
967
  # This should act as the inverse to {Wx::RBN::RibbonArtProvider#get_gallery_size}, and decrement the given size by enough to fit the gallery border, buttons, and other chrome.
968
968
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
969
- # @param wnd [Wx::RibbonGallery] The gallery in question.
969
+ # @param wnd [Wx::RBN::RibbonGallery] The gallery in question.
970
970
  # @param size [Wx::Size] The overall size to calculate the client size for.
971
971
  # @param client_offset [Wx::Point] The position within the given size at which the returned client size begins.
972
972
  # @param scroll_up_button [Wx::Rect] The rectangle within the given size which the scroll up button occupies.
@@ -979,7 +979,7 @@ module Wx::RBN
979
979
  # Calculate the portion of a page background which needs to be redrawn when a page is resized.
980
980
  # To optimise the drawing of page backgrounds, as small an area as possible should be returned. Of course, if the way in which a background is drawn means that the entire background needs to be repainted on resize, then the entire new size should be returned.
981
981
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
982
- # @param wnd [Wx::RibbonPage] The page which is being resized.
982
+ # @param wnd [Wx::RBN::RibbonPage] The page which is being resized.
983
983
  # @param page_old_size [Wx::Size] The size of the page prior to the resize (which has already been painted).
984
984
  # @param page_new_size [Wx::Size] The size of the page after the resize.
985
985
  # @return [Wx::Rect]
@@ -990,8 +990,8 @@ module Wx::RBN
990
990
  # true if a size exists for the button, false otherwise.
991
991
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
992
992
  # @param wnd [Wx::Window] The window onto which the button will eventually be drawn (which is normally a {Wx::RBN::RibbonButtonBar}, though this is not guaranteed).
993
- # @param kind [RibbonButtonKind] The kind of button.
994
- # @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
993
+ # @param kind [Wx::RibbonButtonKind] The kind of button.
994
+ # @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
995
995
  # @param label [String] The label of the button.
996
996
  # @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
997
997
  # @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
@@ -999,7 +999,7 @@ module Wx::RBN
999
999
  # @param button_size [Wx::Size] The size, in pixels, of the button.
1000
1000
  # @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
1001
1001
  # @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
1002
- # @return [true,false]
1002
+ # @return [Boolean]
1003
1003
  def get_button_bar_button_size(dc, wnd, kind, size, label, text_min_width, bitmap_size_large, bitmap_size_small, button_size, normal_region, dropdown_region) end
1004
1004
  alias_method :button_bar_button_size, :get_button_bar_button_size
1005
1005
 
@@ -1009,15 +1009,15 @@ module Wx::RBN
1009
1009
  # This function only works with single-line strings.
1010
1010
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1011
1011
  # @param label [String] The string whose width shall be calculated.
1012
- # @param kind [RibbonButtonKind] The kind of button.
1013
- # @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
1012
+ # @param kind [Wx::RibbonButtonKind] The kind of button.
1013
+ # @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
1014
1014
  # @return [Integer]
1015
1015
  def get_button_bar_button_text_width(dc, label, kind, size) end
1016
1016
  alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
1017
1017
 
1018
1018
  # Calculate the size of a minimised ribbon panel.
1019
1019
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1020
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question. Attributes like the panel label can be queried from this.
1020
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question. Attributes like the panel label can be queried from this.
1021
1021
  # @param desired_bitmap_size [Wx::Size] Optional parameter which is filled with the size of the bitmap suitable for a minimised ribbon panel.
1022
1022
  # @return [Array(Wx::Size,Wx::Direction)]
1023
1023
  def get_minimised_panel_minimum_size(dc, wnd, desired_bitmap_size) end
@@ -1027,9 +1027,9 @@ module Wx::RBN
1027
1027
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1028
1028
  # @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
1029
1029
  # @param bitmap_size [Wx::Size] The size of the tool's foreground bitmap.
1030
- # @param kind [RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
1031
- # @param is_first [true,false] true if the tool is the first within its group. false otherwise.
1032
- # @param is_last [true,false] true if the tool is the last within its group. false otherwise.
1030
+ # @param kind [Wx::RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
1031
+ # @param is_first [Boolean] true if the tool is the first within its group. false otherwise.
1032
+ # @param is_last [Boolean] true if the tool is the last within its group. false otherwise.
1033
1033
  # @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
1034
1034
  # @return [Wx::Size]
1035
1035
  def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
@@ -1065,8 +1065,8 @@ module Wx::RBN
1065
1065
  # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
1066
1066
  class RibbonMSWArtProvider < RibbonArtProvider
1067
1067
 
1068
- # @param set_colour_scheme [true,false]
1069
- # @return [RibbonMSWArtProvider]
1068
+ # @param set_colour_scheme [Boolean]
1069
+ # @return [Wx::RBN::RibbonMSWArtProvider]
1070
1070
  def initialize(set_colour_scheme=true) end
1071
1071
 
1072
1072
  # Create a new art provider which is a clone of this one.
@@ -1167,7 +1167,7 @@ module Wx::RBN
1167
1167
  # Draw a single tab in the tab region of a ribbon bar.
1168
1168
  # @param dc [Wx::DC] The device context to draw onto.
1169
1169
  # @param wnd [Wx::Window] The window which is being drawn onto (not the {Wx::RBN::RibbonPage} associated with the tab being drawn).
1170
- # @param tab [Wx::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonMSWArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonMSWArtProvider#get_tab_ctrl_height}.
1170
+ # @param tab [Wx::RBN::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonMSWArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonMSWArtProvider#get_tab_ctrl_height}.
1171
1171
  # @return [void]
1172
1172
  def draw_tab(dc, wnd, tab) end
1173
1173
 
@@ -1200,7 +1200,7 @@ module Wx::RBN
1200
1200
  # This should draw the border, background, label, and any other items of a panel which are outside the client area of a panel.
1201
1201
  # Note that when a panel is minimised, this function is not called - only {Wx::RBN::RibbonMSWArtProvider#draw_minimised_panel} is called, so a background should be explicitly painted by that if required.
1202
1202
  # @param dc [Wx::DC] The device context to draw onto.
1203
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1203
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1204
1204
  # @param rect [Wx::Rect] The rectangle within which to draw.
1205
1205
  # @return [void]
1206
1206
  def draw_panel_background(dc, wnd, rect) end
@@ -1208,7 +1208,7 @@ module Wx::RBN
1208
1208
  # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
1209
1209
  # This should draw the border, background, scroll buttons, extension button, and any other UI elements which are not attached to a specific gallery item.
1210
1210
  # @param dc [Wx::DC] The device context to draw onto.
1211
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
1211
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
1212
1212
  # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is the entire area of the gallery control, not just the client rectangle.
1213
1213
  # @return [void]
1214
1214
  def draw_gallery_background(dc, wnd, rect) end
@@ -1216,15 +1216,15 @@ module Wx::RBN
1216
1216
  # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
1217
1217
  # This is painted on top of a gallery background, and behind the items bitmap. Unlike {Wx::RBN::RibbonMSWArtProvider#draw_button_bar_button} and {Wx::RBN::RibbonMSWArtProvider#draw_tool}, it is not expected to draw the item bitmap - that is done by the gallery control itself.
1218
1218
  # @param dc [Wx::DC] The device context to draw onto.
1219
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1219
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1220
1220
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_gallery_background}.
1221
- # @param item [Wx::RibbonGalleryItem] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
1221
+ # @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
1222
1222
  # @return [void]
1223
1223
  def draw_gallery_item_background(dc, wnd, rect, item) end
1224
1224
 
1225
1225
  # Draw a minimised ribbon panel.
1226
1226
  # @param dc [Wx::DC] The device context to draw onto.
1227
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonMSWArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
1227
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonMSWArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
1228
1228
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of the rectangle will be at least the size returned by {Wx::RBN::RibbonMSWArtProvider#get_minimised_panel_minimum_size}.
1229
1229
  # @param bitmap [Wx::Bitmap] A copy of the panel's minimised bitmap rescaled to the size returned by {Wx::RBN::RibbonMSWArtProvider#get_minimised_panel_minimum_size}.
1230
1230
  # @return [void]
@@ -1241,7 +1241,7 @@ module Wx::RBN
1241
1241
  # @param dc [Wx::DC] The device context to draw onto.
1242
1242
  # @param wnd [Wx::Window] The window which is being drawn onto.
1243
1243
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonMSWArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_button_bar_background}.
1244
- # @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1244
+ # @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1245
1245
  # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
1246
1246
  # @param label [String] The label of the button.
1247
1247
  # @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
@@ -1268,7 +1268,7 @@ module Wx::RBN
1268
1268
  # @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
1269
1269
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonMSWArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tool_group_background}.
1270
1270
  # @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
1271
- # @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1271
+ # @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1272
1272
  # @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
1273
1273
  # @return [void]
1274
1274
  def draw_tool(dc, wnd, rect, bitmap, kind, state) end
@@ -1276,16 +1276,16 @@ module Wx::RBN
1276
1276
  # Draw toggle button on {Wx::RBN::RibbonBar}.
1277
1277
  # This should draw a small toggle button at top right corner of ribbon bar.
1278
1278
  # @param dc [Wx::DC] The device context to draw onto.
1279
- # @param wnd [Wx::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1279
+ # @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1280
1280
  # @param rect [Wx::Rect] The rectangle within which to draw.
1281
- # @param mode [RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
1281
+ # @param mode [Wx::RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
1282
1282
  # @return [void]
1283
1283
  def draw_toggle_button(dc, wnd, rect, mode) end
1284
1284
 
1285
1285
  # Draw help button on {Wx::RBN::RibbonBar}.
1286
1286
  # This should draw a help button at top right corner of ribbon bar.
1287
1287
  # @param dc [Wx::DC] The device context to draw onto.
1288
- # @param wnd [Wx::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1288
+ # @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1289
1289
  # @param rect [Wx::Rect] The rectangle within which to draw.
1290
1290
  # @return [void]
1291
1291
  def draw_help_button(dc, wnd, rect) end
@@ -1311,7 +1311,7 @@ module Wx::RBN
1311
1311
  # This should increment the given size by enough to fit the panel label and other chrome.
1312
1312
  # @see Wx::RBN::RibbonMSWArtProvider#get_panel_client_size
1313
1313
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1314
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1314
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1315
1315
  # @param client_size [Wx::Size] The client size.
1316
1316
  # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
1317
1317
  # @return [Wx::Size]
@@ -1322,7 +1322,7 @@ module Wx::RBN
1322
1322
  # This should act as the inverse to {Wx::RBN::RibbonMSWArtProvider#get_panel_size}, and decrement the given size by enough to fit the panel label and other chrome.
1323
1323
  # @see Wx::RBN::RibbonMSWArtProvider#get_panel_size
1324
1324
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1325
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1325
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1326
1326
  # @param size [Wx::Size] The overall size to calculate client size for.
1327
1327
  # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
1328
1328
  # @return [Wx::Size]
@@ -1331,7 +1331,7 @@ module Wx::RBN
1331
1331
 
1332
1332
  # Calculate the position and size of the panel extension button.
1333
1333
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1334
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1334
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1335
1335
  # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
1336
1336
  # @return [Wx::Rect]
1337
1337
  def get_panel_ext_button_area(dc, wnd, rect) end
@@ -1341,7 +1341,7 @@ module Wx::RBN
1341
1341
  # This should increment the given size by enough to fit the gallery border, buttons, and any other chrome.
1342
1342
  # @see Wx::RBN::RibbonMSWArtProvider#get_gallery_client_size
1343
1343
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1344
- # @param wnd [Wx::RibbonGallery] The gallery in question.
1344
+ # @param wnd [Wx::RBN::RibbonGallery] The gallery in question.
1345
1345
  # @param client_size [Wx::Size] The client size.
1346
1346
  # @return [Wx::Size]
1347
1347
  def get_gallery_size(dc, wnd, client_size) end
@@ -1350,7 +1350,7 @@ module Wx::RBN
1350
1350
  # Calculate the client size of a {Wx::RBN::RibbonGallery} control for a given size.
1351
1351
  # This should act as the inverse to {Wx::RBN::RibbonMSWArtProvider#get_gallery_size}, and decrement the given size by enough to fit the gallery border, buttons, and other chrome.
1352
1352
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1353
- # @param wnd [Wx::RibbonGallery] The gallery in question.
1353
+ # @param wnd [Wx::RBN::RibbonGallery] The gallery in question.
1354
1354
  # @param size [Wx::Size] The overall size to calculate the client size for.
1355
1355
  # @param client_offset [Wx::Point] The position within the given size at which the returned client size begins.
1356
1356
  # @param scroll_up_button [Wx::Rect] The rectangle within the given size which the scroll up button occupies.
@@ -1363,7 +1363,7 @@ module Wx::RBN
1363
1363
  # Calculate the portion of a page background which needs to be redrawn when a page is resized.
1364
1364
  # To optimise the drawing of page backgrounds, as small an area as possible should be returned. Of course, if the way in which a background is drawn means that the entire background needs to be repainted on resize, then the entire new size should be returned.
1365
1365
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1366
- # @param wnd [Wx::RibbonPage] The page which is being resized.
1366
+ # @param wnd [Wx::RBN::RibbonPage] The page which is being resized.
1367
1367
  # @param page_old_size [Wx::Size] The size of the page prior to the resize (which has already been painted).
1368
1368
  # @param page_new_size [Wx::Size] The size of the page after the resize.
1369
1369
  # @return [Wx::Rect]
@@ -1374,8 +1374,8 @@ module Wx::RBN
1374
1374
  # true if a size exists for the button, false otherwise.
1375
1375
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1376
1376
  # @param wnd [Wx::Window] The window onto which the button will eventually be drawn (which is normally a {Wx::RBN::RibbonButtonBar}, though this is not guaranteed).
1377
- # @param kind [RibbonButtonKind] The kind of button.
1378
- # @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
1377
+ # @param kind [Wx::RibbonButtonKind] The kind of button.
1378
+ # @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
1379
1379
  # @param label [String] The label of the button.
1380
1380
  # @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
1381
1381
  # @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
@@ -1383,7 +1383,7 @@ module Wx::RBN
1383
1383
  # @param button_size [Wx::Size] The size, in pixels, of the button.
1384
1384
  # @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
1385
1385
  # @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
1386
- # @return [true,false]
1386
+ # @return [Boolean]
1387
1387
  def get_button_bar_button_size(dc, wnd, kind, size, label, text_min_width, bitmap_size_large, bitmap_size_small, button_size, normal_region, dropdown_region) end
1388
1388
  alias_method :button_bar_button_size, :get_button_bar_button_size
1389
1389
 
@@ -1393,15 +1393,15 @@ module Wx::RBN
1393
1393
  # This function only works with single-line strings.
1394
1394
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1395
1395
  # @param label [String] The string whose width shall be calculated.
1396
- # @param kind [RibbonButtonKind] The kind of button.
1397
- # @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
1396
+ # @param kind [Wx::RibbonButtonKind] The kind of button.
1397
+ # @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
1398
1398
  # @return [Integer]
1399
1399
  def get_button_bar_button_text_width(dc, label, kind, size) end
1400
1400
  alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
1401
1401
 
1402
1402
  # Calculate the size of a minimised ribbon panel.
1403
1403
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1404
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question. Attributes like the panel label can be queried from this.
1404
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question. Attributes like the panel label can be queried from this.
1405
1405
  # @param desired_bitmap_size [Wx::Size] Optional parameter which is filled with the size of the bitmap suitable for a minimised ribbon panel.
1406
1406
  # @return [Array(Wx::Size,Wx::Direction)]
1407
1407
  def get_minimised_panel_minimum_size(dc, wnd, desired_bitmap_size) end
@@ -1411,9 +1411,9 @@ module Wx::RBN
1411
1411
  # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1412
1412
  # @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
1413
1413
  # @param bitmap_size [Wx::Size] The size of the tool's foreground bitmap.
1414
- # @param kind [RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
1415
- # @param is_first [true,false] true if the tool is the first within its group. false otherwise.
1416
- # @param is_last [true,false] true if the tool is the last within its group. false otherwise.
1414
+ # @param kind [Wx::RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
1415
+ # @param is_first [Boolean] true if the tool is the first within its group. false otherwise.
1416
+ # @param is_last [Boolean] true if the tool is the last within its group. false otherwise.
1417
1417
  # @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
1418
1418
  # @return [Wx::Size]
1419
1419
  def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
@@ -1440,7 +1440,7 @@ module Wx::RBN
1440
1440
  # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
1441
1441
  class RibbonAUIArtProvider < RibbonMSWArtProvider
1442
1442
 
1443
- # @return [RibbonAUIArtProvider]
1443
+ # @return [Wx::RBN::RibbonAUIArtProvider]
1444
1444
  def initialize; end
1445
1445
 
1446
1446
  # Create a new art provider which is a clone of this one.
@@ -1500,7 +1500,7 @@ module Wx::RBN
1500
1500
  # This should increment the given size by enough to fit the panel label and other chrome.
1501
1501
  # @see Wx::RBN::RibbonAUIArtProvider#get_panel_client_size
1502
1502
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1503
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1503
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1504
1504
  # @param client_size [Wx::Size] The client size.
1505
1505
  # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
1506
1506
  # @return [Wx::Size]
@@ -1511,7 +1511,7 @@ module Wx::RBN
1511
1511
  # This should act as the inverse to {Wx::RBN::RibbonAUIArtProvider#get_panel_size}, and decrement the given size by enough to fit the panel label and other chrome.
1512
1512
  # @see Wx::RBN::RibbonAUIArtProvider#get_panel_size
1513
1513
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1514
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1514
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1515
1515
  # @param size [Wx::Size] The overall size to calculate client size for.
1516
1516
  # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
1517
1517
  # @return [Wx::Size]
@@ -1520,7 +1520,7 @@ module Wx::RBN
1520
1520
 
1521
1521
  # Calculate the position and size of the panel extension button.
1522
1522
  # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1523
- # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1523
+ # @param wnd [Wx::RBN::RibbonPanel] The ribbon panel in question.
1524
1524
  # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
1525
1525
  # @return [Wx::Rect]
1526
1526
  def get_panel_ext_button_area(dc, wnd, rect) end
@@ -1554,7 +1554,7 @@ module Wx::RBN
1554
1554
  # Draw a single tab in the tab region of a ribbon bar.
1555
1555
  # @param dc [Wx::DC] The device context to draw onto.
1556
1556
  # @param wnd [Wx::Window] The window which is being drawn onto (not the {Wx::RBN::RibbonPage} associated with the tab being drawn).
1557
- # @param tab [Wx::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonAUIArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonAUIArtProvider#get_tab_ctrl_height}.
1557
+ # @param tab [Wx::RBN::RibbonPageTabInfo] The rectangle within which to draw, and also the tab label, icon, and state (active and/or hovered). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tab_ctrl_background}. The rectangle's width will be at least the minimum value returned by {Wx::RBN::RibbonAUIArtProvider#get_bar_tab_width}, and height will be the value returned by {Wx::RBN::RibbonAUIArtProvider#get_tab_ctrl_height}.
1558
1558
  # @return [void]
1559
1559
  def draw_tab(dc, wnd, tab) end
1560
1560
 
@@ -1579,14 +1579,14 @@ module Wx::RBN
1579
1579
  # This should draw the border, background, label, and any other items of a panel which are outside the client area of a panel.
1580
1580
  # Note that when a panel is minimised, this function is not called - only {Wx::RBN::RibbonAUIArtProvider#draw_minimised_panel} is called, so a background should be explicitly painted by that if required.
1581
1581
  # @param dc [Wx::DC] The device context to draw onto.
1582
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1582
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
1583
1583
  # @param rect [Wx::Rect] The rectangle within which to draw.
1584
1584
  # @return [void]
1585
1585
  def draw_panel_background(dc, wnd, rect) end
1586
1586
 
1587
1587
  # Draw a minimised ribbon panel.
1588
1588
  # @param dc [Wx::DC] The device context to draw onto.
1589
- # @param wnd [Wx::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonAUIArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
1589
+ # @param wnd [Wx::RBN::RibbonPanel] The window which is being drawn onto, which is always the panel which is minimised. The panel label can be obtained from this window. The minimised icon obtained from querying the window may not be the size requested by {Wx::RBN::RibbonAUIArtProvider#get_minimised_panel_minimum_size} - the bitmap argument contains the icon in the requested size.
1590
1590
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of the rectangle will be at least the size returned by {Wx::RBN::RibbonAUIArtProvider#get_minimised_panel_minimum_size}.
1591
1591
  # @param bitmap [Wx::Bitmap] A copy of the panel's minimised bitmap rescaled to the size returned by {Wx::RBN::RibbonAUIArtProvider#get_minimised_panel_minimum_size}.
1592
1592
  # @return [void]
@@ -1595,7 +1595,7 @@ module Wx::RBN
1595
1595
  # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
1596
1596
  # This should draw the border, background, scroll buttons, extension button, and any other UI elements which are not attached to a specific gallery item.
1597
1597
  # @param dc [Wx::DC] The device context to draw onto.
1598
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
1598
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery whose background and chrome is being drawn. Attributes used during drawing like the gallery hover state and individual button states can be queried from this parameter by {Wx::RBN::RibbonGallery#is_hovered}, {Wx::RBN::RibbonGallery#get_extension_button_state}, {Wx::RBN::RibbonGallery#get_up_button_state}, and {Wx::RBN::RibbonGallery#get_down_button_state}.
1599
1599
  # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is the entire area of the gallery control, not just the client rectangle.
1600
1600
  # @return [void]
1601
1601
  def draw_gallery_background(dc, wnd, rect) end
@@ -1603,9 +1603,9 @@ module Wx::RBN
1603
1603
  # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
1604
1604
  # This is painted on top of a gallery background, and behind the items bitmap. Unlike {Wx::RBN::RibbonAUIArtProvider#draw_button_bar_button} and {Wx::RBN::RibbonAUIArtProvider#draw_tool}, it is not expected to draw the item bitmap - that is done by the gallery control itself.
1605
1605
  # @param dc [Wx::DC] The device context to draw onto.
1606
- # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1606
+ # @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1607
1607
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_gallery_background}.
1608
- # @param item [Wx::RibbonGalleryItem] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
1608
+ # @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
1609
1609
  # @return [void]
1610
1610
  def draw_gallery_item_background(dc, wnd, rect, item) end
1611
1611
 
@@ -1620,7 +1620,7 @@ module Wx::RBN
1620
1620
  # @param dc [Wx::DC] The device context to draw onto.
1621
1621
  # @param wnd [Wx::Window] The window which is being drawn onto.
1622
1622
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonAUIArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_button_bar_background}.
1623
- # @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1623
+ # @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1624
1624
  # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
1625
1625
  # @param label [String] The label of the button.
1626
1626
  # @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
@@ -1647,7 +1647,7 @@ module Wx::RBN
1647
1647
  # @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
1648
1648
  # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonAUIArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tool_group_background}.
1649
1649
  # @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
1650
- # @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1650
+ # @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1651
1651
  # @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
1652
1652
  # @return [void]
1653
1653
  def draw_tool(dc, wnd, rect, bitmap, kind, state) end