wxruby3 0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (837) hide show
  1. checksums.yaml +7 -0
  2. data/.wxconfig +17 -0
  3. data/.yardopts +13 -0
  4. data/CREDITS.md +52 -0
  5. data/LICENSE +21 -0
  6. data/README.md +139 -0
  7. data/bin/wxruby +9 -0
  8. data/bin/wxruby.bat +20 -0
  9. data/ext/mkrf_conf_bingem.rb +18 -0
  10. data/ext/wxbase32u_gcc_custom.dll +0 -0
  11. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  12. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  20. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  21. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  22. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  23. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  24. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  25. data/lib/wx/accessors.rb +63 -0
  26. data/lib/wx/aui/auimanager.rb +17 -0
  27. data/lib/wx/aui/auinotebook.rb +9 -0
  28. data/lib/wx/aui/events/evt_list.rb +143 -0
  29. data/lib/wx/aui/require.rb +9 -0
  30. data/lib/wx/aui.rb +14 -0
  31. data/lib/wx/core/acceleratortable.rb +28 -0
  32. data/lib/wx/core/animation.rb +18 -0
  33. data/lib/wx/core/app.rb +89 -0
  34. data/lib/wx/core/artprovider.rb +31 -0
  35. data/lib/wx/core/bitmap.rb +59 -0
  36. data/lib/wx/core/busycursor.rb +12 -0
  37. data/lib/wx/core/choice.rb +4 -0
  38. data/lib/wx/core/choicedlg.rb +54 -0
  39. data/lib/wx/core/clientdc.rb +13 -0
  40. data/lib/wx/core/clipboard.rb +56 -0
  41. data/lib/wx/core/collapsible_pane.rb +12 -0
  42. data/lib/wx/core/colour.rb +34 -0
  43. data/lib/wx/core/combobox.rb +4 -0
  44. data/lib/wx/core/controlwithitems.rb +10 -0
  45. data/lib/wx/core/data_object.rb +10 -0
  46. data/lib/wx/core/dataformat.rb +26 -0
  47. data/lib/wx/core/dc.rb +68 -0
  48. data/lib/wx/core/dialog.rb +50 -0
  49. data/lib/wx/core/event.rb +16 -0
  50. data/lib/wx/core/events/evt_list.rb +1378 -0
  51. data/lib/wx/core/evthandler.rb +240 -0
  52. data/lib/wx/core/ext.rb +58 -0
  53. data/lib/wx/core/font/encoding.rb +113 -0
  54. data/lib/wx/core/font.rb +22 -0
  55. data/lib/wx/core/functions.rb +44 -0
  56. data/lib/wx/core/gauge.rb +12 -0
  57. data/lib/wx/core/genericdirctrl.rb +36 -0
  58. data/lib/wx/core/hboxsizer.rb +6 -0
  59. data/lib/wx/core/helpcontroller.rb +5 -0
  60. data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
  61. data/lib/wx/core/helpprovider.rb +15 -0
  62. data/lib/wx/core/icon.rb +40 -0
  63. data/lib/wx/core/image.rb +68 -0
  64. data/lib/wx/core/imagelist.rb +3 -0
  65. data/lib/wx/core/listbox.rb +4 -0
  66. data/lib/wx/core/listctrl.rb +33 -0
  67. data/lib/wx/core/locale.rb +73 -0
  68. data/lib/wx/core/log.rb +20 -0
  69. data/lib/wx/core/menu.rb +78 -0
  70. data/lib/wx/core/menu_bar.rb +20 -0
  71. data/lib/wx/core/menuitem.rb +7 -0
  72. data/lib/wx/core/notebook.rb +9 -0
  73. data/lib/wx/core/object.rb +14 -0
  74. data/lib/wx/core/pen_info.rb +11 -0
  75. data/lib/wx/core/platform_info.rb +13 -0
  76. data/lib/wx/core/point.rb +92 -0
  77. data/lib/wx/core/real_point.rb +92 -0
  78. data/lib/wx/core/rect.rb +57 -0
  79. data/lib/wx/core/simplehelpprovider.rb +38 -0
  80. data/lib/wx/core/size.rb +86 -0
  81. data/lib/wx/core/sizer.rb +43 -0
  82. data/lib/wx/core/splash_screen.rb +44 -0
  83. data/lib/wx/core/textctrl.rb +8 -0
  84. data/lib/wx/core/timer.rb +105 -0
  85. data/lib/wx/core/toolbar.rb +37 -0
  86. data/lib/wx/core/toolbartool.rb +4 -0
  87. data/lib/wx/core/treectrl.rb +46 -0
  88. data/lib/wx/core/validator.rb +8 -0
  89. data/lib/wx/core/variant.rb +62 -0
  90. data/lib/wx/core/vboxsizer.rb +6 -0
  91. data/lib/wx/core/window.rb +95 -0
  92. data/lib/wx/core/window_update_locker.rb +12 -0
  93. data/lib/wx/core/xmlresource.rb +56 -0
  94. data/lib/wx/core.rb +61 -0
  95. data/lib/wx/doc/aui/auimanager.rb +12 -0
  96. data/lib/wx/doc/aui/auinotebook.rb +9 -0
  97. data/lib/wx/doc/colour_dialog.rb +15 -0
  98. data/lib/wx/doc/dc.rb +49 -0
  99. data/lib/wx/doc/enum.rb +66 -0
  100. data/lib/wx/doc/evthandler.rb +84 -0
  101. data/lib/wx/doc/extra/00_starting.md +154 -0
  102. data/lib/wx/doc/extra/01_packages.md +179 -0
  103. data/lib/wx/doc/extra/02_lifecycles.md +116 -0
  104. data/lib/wx/doc/extra/03_dialogs.md +57 -0
  105. data/lib/wx/doc/extra/04_enums.md +143 -0
  106. data/lib/wx/doc/extra/05_event-handling.md +166 -0
  107. data/lib/wx/doc/extra/06_geometry.md +56 -0
  108. data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
  109. data/lib/wx/doc/extra/08_extensions.md +144 -0
  110. data/lib/wx/doc/extra/09_exceptions.md +54 -0
  111. data/lib/wx/doc/functions.rb +221 -0
  112. data/lib/wx/doc/gdi_common.rb +181 -0
  113. data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
  114. data/lib/wx/doc/gen/accelerator.rb +172 -0
  115. data/lib/wx/doc/gen/accessible.rb +817 -0
  116. data/lib/wx/doc/gen/animation.rb +253 -0
  117. data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
  118. data/lib/wx/doc/gen/any_button.rb +170 -0
  119. data/lib/wx/doc/gen/app.rb +363 -0
  120. data/lib/wx/doc/gen/art_provider.rb +497 -0
  121. data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
  122. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
  123. data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
  124. data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
  125. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
  126. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
  127. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
  128. data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
  129. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
  130. data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
  131. data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
  132. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
  133. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
  134. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
  135. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
  136. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
  137. data/lib/wx/doc/gen/aui/event_list.rb +162 -0
  138. data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
  139. data/lib/wx/doc/gen/bitmap.rb +638 -0
  140. data/lib/wx/doc/gen/bitmap_button.rb +91 -0
  141. data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
  142. data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
  143. data/lib/wx/doc/gen/box_sizer.rb +66 -0
  144. data/lib/wx/doc/gen/brush.rb +219 -0
  145. data/lib/wx/doc/gen/buffered_dc.rb +95 -0
  146. data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
  147. data/lib/wx/doc/gen/busy_info.rb +141 -0
  148. data/lib/wx/doc/gen/button.rb +133 -0
  149. data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
  150. data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
  151. data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
  152. data/lib/wx/doc/gen/calendar_event.rb +150 -0
  153. data/lib/wx/doc/gen/caret.rb +99 -0
  154. data/lib/wx/doc/gen/check_box.rb +145 -0
  155. data/lib/wx/doc/gen/check_list_box.rb +96 -0
  156. data/lib/wx/doc/gen/choice.rb +143 -0
  157. data/lib/wx/doc/gen/choicebook.rb +100 -0
  158. data/lib/wx/doc/gen/client_dc.rb +49 -0
  159. data/lib/wx/doc/gen/clipboard.rb +128 -0
  160. data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
  161. data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
  162. data/lib/wx/doc/gen/colour.rb +289 -0
  163. data/lib/wx/doc/gen/colour_data.rb +96 -0
  164. data/lib/wx/doc/gen/colour_dialog.rb +84 -0
  165. data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
  166. data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
  167. data/lib/wx/doc/gen/combo_box.rb +228 -0
  168. data/lib/wx/doc/gen/context_help_button.rb +34 -0
  169. data/lib/wx/doc/gen/control.rb +245 -0
  170. data/lib/wx/doc/gen/control_with_items.rb +339 -0
  171. data/lib/wx/doc/gen/core.rb +42 -0
  172. data/lib/wx/doc/gen/cursor.rb +127 -0
  173. data/lib/wx/doc/gen/data_format.rb +94 -0
  174. data/lib/wx/doc/gen/data_object.rb +439 -0
  175. data/lib/wx/doc/gen/date_event.rb +48 -0
  176. data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
  177. data/lib/wx/doc/gen/dc.rb +1278 -0
  178. data/lib/wx/doc/gen/defs.rb +2832 -0
  179. data/lib/wx/doc/gen/dialog.rb +426 -0
  180. data/lib/wx/doc/gen/dir_dialog.rb +134 -0
  181. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
  182. data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
  183. data/lib/wx/doc/gen/drag_drop.rb +292 -0
  184. data/lib/wx/doc/gen/drag_image.rb +123 -0
  185. data/lib/wx/doc/gen/editable_list_box.rb +89 -0
  186. data/lib/wx/doc/gen/event.rb +911 -0
  187. data/lib/wx/doc/gen/event_list.rb +1512 -0
  188. data/lib/wx/doc/gen/events.rb +2499 -0
  189. data/lib/wx/doc/gen/evt_handler.rb +224 -0
  190. data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
  191. data/lib/wx/doc/gen/file_dialog.rb +294 -0
  192. data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
  193. data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
  194. data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
  195. data/lib/wx/doc/gen/find_replace_data.rb +59 -0
  196. data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
  197. data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
  198. data/lib/wx/doc/gen/font.rb +1282 -0
  199. data/lib/wx/doc/gen/font_data.rb +132 -0
  200. data/lib/wx/doc/gen/font_dialog.rb +71 -0
  201. data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
  202. data/lib/wx/doc/gen/font_picker_event.rb +64 -0
  203. data/lib/wx/doc/gen/frame.rb +276 -0
  204. data/lib/wx/doc/gen/fs_file.rb +269 -0
  205. data/lib/wx/doc/gen/functions.rb +10 -0
  206. data/lib/wx/doc/gen/gauge.rb +127 -0
  207. data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
  208. data/lib/wx/doc/gen/gcdc.rb +61 -0
  209. data/lib/wx/doc/gen/gdi_common.rb +1108 -0
  210. data/lib/wx/doc/gen/gdi_object.rb +29 -0
  211. data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
  212. data/lib/wx/doc/gen/graphics_context.rb +764 -0
  213. data/lib/wx/doc/gen/graphics_object.rb +494 -0
  214. data/lib/wx/doc/gen/grid/event_list.rb +173 -0
  215. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
  216. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
  217. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
  218. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
  219. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
  220. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
  221. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
  222. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
  223. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
  224. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
  225. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
  226. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
  227. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
  228. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
  229. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
  230. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
  231. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
  232. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
  233. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
  234. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
  235. data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
  236. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
  237. data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
  238. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
  239. data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
  240. data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
  241. data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
  242. data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
  243. data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
  244. data/lib/wx/doc/gen/grid_sizer.rb +135 -0
  245. data/lib/wx/doc/gen/help_controller.rb +136 -0
  246. data/lib/wx/doc/gen/help_provider.rb +80 -0
  247. data/lib/wx/doc/gen/html/event_list.rb +46 -0
  248. data/lib/wx/doc/gen/html/html_cell.rb +441 -0
  249. data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
  250. data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
  251. data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
  252. data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
  253. data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
  254. data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
  255. data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
  256. data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
  257. data/lib/wx/doc/gen/html/html_printout.rb +87 -0
  258. data/lib/wx/doc/gen/html/html_window.rb +386 -0
  259. data/lib/wx/doc/gen/icon.rb +267 -0
  260. data/lib/wx/doc/gen/icon_location.rb +38 -0
  261. data/lib/wx/doc/gen/image.rb +1144 -0
  262. data/lib/wx/doc/gen/image_list.rb +181 -0
  263. data/lib/wx/doc/gen/keyboard_state.rb +124 -0
  264. data/lib/wx/doc/gen/list_box.rb +260 -0
  265. data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
  266. data/lib/wx/doc/gen/list_event.rb +177 -0
  267. data/lib/wx/doc/gen/listbook.rb +100 -0
  268. data/lib/wx/doc/gen/locale.rb +4143 -0
  269. data/lib/wx/doc/gen/log.rb +505 -0
  270. data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
  271. data/lib/wx/doc/gen/mdi_frame.rb +235 -0
  272. data/lib/wx/doc/gen/media_ctrl.rb +225 -0
  273. data/lib/wx/doc/gen/media_event.rb +109 -0
  274. data/lib/wx/doc/gen/memory_dc.rb +95 -0
  275. data/lib/wx/doc/gen/menu.rb +493 -0
  276. data/lib/wx/doc/gen/menu_bar.rb +247 -0
  277. data/lib/wx/doc/gen/menu_item.rb +333 -0
  278. data/lib/wx/doc/gen/message_dialog.rb +195 -0
  279. data/lib/wx/doc/gen/mini_frame.rb +72 -0
  280. data/lib/wx/doc/gen/mirror_dc.rb +29 -0
  281. data/lib/wx/doc/gen/mouse_state.rb +108 -0
  282. data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
  283. data/lib/wx/doc/gen/non_owned_window.rb +46 -0
  284. data/lib/wx/doc/gen/notebook.rb +220 -0
  285. data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
  286. data/lib/wx/doc/gen/object.rb +69 -0
  287. data/lib/wx/doc/gen/paint_dc.rb +34 -0
  288. data/lib/wx/doc/gen/palette.rb +90 -0
  289. data/lib/wx/doc/gen/panel.rb +96 -0
  290. data/lib/wx/doc/gen/pen.rb +484 -0
  291. data/lib/wx/doc/gen/pg/event_list.rb +102 -0
  292. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
  293. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
  294. data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
  295. data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
  296. data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
  297. data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
  298. data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
  299. data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
  300. data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
  301. data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
  302. data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
  303. data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
  304. data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
  305. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
  306. data/lib/wx/doc/gen/picker_base.rb +143 -0
  307. data/lib/wx/doc/gen/platform_info.rb +379 -0
  308. data/lib/wx/doc/gen/popup_window.rb +93 -0
  309. data/lib/wx/doc/gen/progress_dialog.rb +106 -0
  310. data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
  311. data/lib/wx/doc/gen/prt/event_list.rb +13 -0
  312. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
  313. data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
  314. data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
  315. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
  316. data/lib/wx/doc/gen/prt/print_data.rb +598 -0
  317. data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
  318. data/lib/wx/doc/gen/prt/printer.rb +428 -0
  319. data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
  320. data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
  321. data/lib/wx/doc/gen/radio_box.rb +258 -0
  322. data/lib/wx/doc/gen/radio_button.rb +128 -0
  323. data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
  324. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
  325. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
  326. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
  327. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
  328. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
  329. data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
  330. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
  331. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
  332. data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
  333. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
  334. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
  335. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
  336. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
  337. data/lib/wx/doc/gen/region.rb +299 -0
  338. data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
  339. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
  340. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
  341. data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
  342. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
  343. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
  344. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
  345. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
  346. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
  347. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
  348. data/lib/wx/doc/gen/sash_event.rb +133 -0
  349. data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
  350. data/lib/wx/doc/gen/sash_window.rb +154 -0
  351. data/lib/wx/doc/gen/screen_dc.rb +27 -0
  352. data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
  353. data/lib/wx/doc/gen/scrolled_control.rb +317 -0
  354. data/lib/wx/doc/gen/scrolled_window.rb +337 -0
  355. data/lib/wx/doc/gen/simplebook.rb +93 -0
  356. data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
  357. data/lib/wx/doc/gen/sizer.rb +847 -0
  358. data/lib/wx/doc/gen/sizer_item.rb +227 -0
  359. data/lib/wx/doc/gen/slider.rb +316 -0
  360. data/lib/wx/doc/gen/spin_button.rb +124 -0
  361. data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
  362. data/lib/wx/doc/gen/spin_event.rb +47 -0
  363. data/lib/wx/doc/gen/splash_screen.rb +83 -0
  364. data/lib/wx/doc/gen/splitter_event.rb +87 -0
  365. data/lib/wx/doc/gen/splitter_window.rb +357 -0
  366. data/lib/wx/doc/gen/static_bitmap.rb +126 -0
  367. data/lib/wx/doc/gen/static_box.rb +123 -0
  368. data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
  369. data/lib/wx/doc/gen/static_line.rb +66 -0
  370. data/lib/wx/doc/gen/static_text.rb +98 -0
  371. data/lib/wx/doc/gen/status_bar.rb +203 -0
  372. data/lib/wx/doc/gen/stc/event_list.rb +217 -0
  373. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
  374. data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
  375. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
  376. data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
  377. data/lib/wx/doc/gen/system_options.rb +109 -0
  378. data/lib/wx/doc/gen/system_settings.rb +481 -0
  379. data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
  380. data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
  381. data/lib/wx/doc/gen/text_attr.rb +645 -0
  382. data/lib/wx/doc/gen/text_ctrl.rb +841 -0
  383. data/lib/wx/doc/gen/text_entry.rb +389 -0
  384. data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
  385. data/lib/wx/doc/gen/text_validator.rb +212 -0
  386. data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
  387. data/lib/wx/doc/gen/timer.rb +103 -0
  388. data/lib/wx/doc/gen/timer_event.rb +73 -0
  389. data/lib/wx/doc/gen/tip_provider.rb +60 -0
  390. data/lib/wx/doc/gen/toggle_button.rb +84 -0
  391. data/lib/wx/doc/gen/tool_bar.rb +744 -0
  392. data/lib/wx/doc/gen/tool_tip.rb +73 -0
  393. data/lib/wx/doc/gen/toolbook.rb +103 -0
  394. data/lib/wx/doc/gen/top_level_window.rb +462 -0
  395. data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
  396. data/lib/wx/doc/gen/tree_event.rb +101 -0
  397. data/lib/wx/doc/gen/treebook.rb +154 -0
  398. data/lib/wx/doc/gen/utils.rb +257 -0
  399. data/lib/wx/doc/gen/v_list_box.rb +224 -0
  400. data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
  401. data/lib/wx/doc/gen/validator.rb +73 -0
  402. data/lib/wx/doc/gen/variant.rb +340 -0
  403. data/lib/wx/doc/gen/window.rb +2414 -0
  404. data/lib/wx/doc/gen/window_dc.rb +35 -0
  405. data/lib/wx/doc/gen/window_disabler.rb +24 -0
  406. data/lib/wx/doc/gen/with_images.rb +73 -0
  407. data/lib/wx/doc/gen/wizard.rb +197 -0
  408. data/lib/wx/doc/gen/wizard_event.rb +105 -0
  409. data/lib/wx/doc/gen/wizard_page.rb +61 -0
  410. data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
  411. data/lib/wx/doc/gen/xml_node.rb +282 -0
  412. data/lib/wx/doc/gen/xml_resource.rb +304 -0
  413. data/lib/wx/doc/grid/grid.rb +20 -0
  414. data/lib/wx/doc/help_controller.rb +14 -0
  415. data/lib/wx/doc/html/html_help_controller.rb +8 -0
  416. data/lib/wx/doc/pg/events.rb +15 -0
  417. data/lib/wx/doc/pg/pg_property.rb +8 -0
  418. data/lib/wx/doc/pg/pgeditor.rb +21 -0
  419. data/lib/wx/doc/pg/property_grid.rb +48 -0
  420. data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
  421. data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
  422. data/lib/wx/doc/prt/print_data.rb +9 -0
  423. data/lib/wx/doc/prt/print_dialog.rb +26 -0
  424. data/lib/wx/doc/prt/printer.rb +15 -0
  425. data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
  426. data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
  427. data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
  428. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
  429. data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
  430. data/lib/wx/doc/screen_dc.rb +10 -0
  431. data/lib/wx/doc/stock_objects.rb +98 -0
  432. data/lib/wx/doc/stream.rb +38 -0
  433. data/lib/wx/doc/system_settings.rb +29 -0
  434. data/lib/wx/doc/treebook.rb +9 -0
  435. data/lib/wx/doc/variant.rb +163 -0
  436. data/lib/wx/doc/xml_resource.rb +19 -0
  437. data/lib/wx/global_const.rb +84 -0
  438. data/lib/wx/grid/events/evt_list.rb +156 -0
  439. data/lib/wx/grid/grid.rb +7 -0
  440. data/lib/wx/grid/keyword_defs.rb +10 -0
  441. data/lib/wx/grid/require.rb +9 -0
  442. data/lib/wx/grid.rb +14 -0
  443. data/lib/wx/helpers.rb +65 -0
  444. data/lib/wx/html/events/evt_list.rb +37 -0
  445. data/lib/wx/html/htmlhelpcontroller.rb +6 -0
  446. data/lib/wx/html/htmlwindow.rb +19 -0
  447. data/lib/wx/html/keyword_defs.rb +22 -0
  448. data/lib/wx/html/require.rb +10 -0
  449. data/lib/wx/html.rb +15 -0
  450. data/lib/wx/keyword_ctors.rb +226 -0
  451. data/lib/wx/keyword_defs.rb +487 -0
  452. data/lib/wx/pg/events/evt_list.rb +73 -0
  453. data/lib/wx/pg/events.rb +14 -0
  454. data/lib/wx/pg/keyword_defs.rb +15 -0
  455. data/lib/wx/pg/pg_editor.rb +13 -0
  456. data/lib/wx/pg/pg_properties.rb +24 -0
  457. data/lib/wx/pg/pg_property.rb +26 -0
  458. data/lib/wx/pg/property_grid.rb +56 -0
  459. data/lib/wx/pg/property_grid_interface.rb +33 -0
  460. data/lib/wx/pg/require.rb +12 -0
  461. data/lib/wx/pg.rb +14 -0
  462. data/lib/wx/prt/keyword_defs.rb +8 -0
  463. data/lib/wx/prt/page_setup_dialog.rb +15 -0
  464. data/lib/wx/prt/previewframe.rb +13 -0
  465. data/lib/wx/prt/require.rb +8 -0
  466. data/lib/wx/prt.rb +14 -0
  467. data/lib/wx/rbn/events/evt_list.rb +102 -0
  468. data/lib/wx/rbn/events.rb +4 -0
  469. data/lib/wx/rbn/keyword_defs.rb +43 -0
  470. data/lib/wx/rbn/require.rb +12 -0
  471. data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
  472. data/lib/wx/rbn/ribbon_bar.rb +12 -0
  473. data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
  474. data/lib/wx/rbn/ribbon_control.rb +25 -0
  475. data/lib/wx/rbn/ribbon_gallery.rb +26 -0
  476. data/lib/wx/rbn/ribbon_page.rb +15 -0
  477. data/lib/wx/rbn/ribbon_panel.rb +15 -0
  478. data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
  479. data/lib/wx/rbn.rb +14 -0
  480. data/lib/wx/rtc/events/evt_list.rb +98 -0
  481. data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
  482. data/lib/wx/rtc/ext.rb +15 -0
  483. data/lib/wx/rtc/keyword_defs.rb +17 -0
  484. data/lib/wx/rtc/require.rb +8 -0
  485. data/lib/wx/rtc.rb +15 -0
  486. data/lib/wx/stc/events/evt_list.rb +178 -0
  487. data/lib/wx/stc/keyword_defs.rb +8 -0
  488. data/lib/wx/stc/require.rb +7 -0
  489. data/lib/wx/stc.rb +14 -0
  490. data/lib/wx/version.rb +3 -0
  491. data/lib/wx/wxruby/base.rb +87 -0
  492. data/lib/wx/wxruby/cmd/sampler.rb +68 -0
  493. data/lib/wx/wxruby/cmd/test.rb +27 -0
  494. data/lib/wx.rb +14 -0
  495. data/lib/wxruby_aui.so +0 -0
  496. data/lib/wxruby_core.so +0 -0
  497. data/lib/wxruby_grid.so +0 -0
  498. data/lib/wxruby_html.so +0 -0
  499. data/lib/wxruby_pg.so +0 -0
  500. data/lib/wxruby_prt.so +0 -0
  501. data/lib/wxruby_rbn.so +0 -0
  502. data/lib/wxruby_rtc.so +0 -0
  503. data/lib/wxruby_stc.so +0 -0
  504. data/rakelib/install.rb +220 -0
  505. data/rakelib/lib/config/cygwin.rb +6 -0
  506. data/rakelib/lib/config/linux.rb +78 -0
  507. data/rakelib/lib/config/macosx.rb +6 -0
  508. data/rakelib/lib/config/mingw.rb +133 -0
  509. data/rakelib/lib/config/netbsd.rb +6 -0
  510. data/rakelib/lib/config/unixish.rb +187 -0
  511. data/rakelib/lib/config.rb +673 -0
  512. data/rakelib/lib/ext/enum_chain.rb +22 -0
  513. data/rakelib/prepost.rake +91 -0
  514. data/rakelib/prepost.rb +26 -0
  515. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
  516. data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
  517. data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
  518. data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
  519. data/rakelib/yard/yard-custom-templates.rb +2 -0
  520. data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
  521. data/samples/art/wxruby-128x128.png +0 -0
  522. data/samples/art/wxruby-256x256.png +0 -0
  523. data/samples/art/wxruby-64x64.png +0 -0
  524. data/samples/art/wxruby.ico +0 -0
  525. data/samples/art/wxruby.png +0 -0
  526. data/samples/aui/aui.rb +1321 -0
  527. data/samples/aui/tn_aui.png +0 -0
  528. data/samples/bigdemo/About.rbw +39 -0
  529. data/samples/bigdemo/ColorPanel.rbw +23 -0
  530. data/samples/bigdemo/GridSimple.rbw +78 -0
  531. data/samples/bigdemo/MDIDemo.rbw +57 -0
  532. data/samples/bigdemo/PopupMenu.rbw +146 -0
  533. data/samples/bigdemo/ShapedWindow.rbw +128 -0
  534. data/samples/bigdemo/Sizers.rbw +541 -0
  535. data/samples/bigdemo/bigdemo.rb +810 -0
  536. data/samples/bigdemo/demoTemplate.rbw +33 -0
  537. data/samples/bigdemo/helpfile.htb +0 -0
  538. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  539. data/samples/bigdemo/icons/Test 015.png +0 -0
  540. data/samples/bigdemo/icons/choice.bmp +0 -0
  541. data/samples/bigdemo/icons/choice.xpm +27 -0
  542. data/samples/bigdemo/icons/combo.bmp +0 -0
  543. data/samples/bigdemo/icons/combo.xpm +27 -0
  544. data/samples/bigdemo/icons/copy.xpm +25 -0
  545. data/samples/bigdemo/icons/cut.xpm +24 -0
  546. data/samples/bigdemo/icons/gauge.bmp +0 -0
  547. data/samples/bigdemo/icons/gauge.xpm +27 -0
  548. data/samples/bigdemo/icons/help.xpm +25 -0
  549. data/samples/bigdemo/icons/list.bmp +0 -0
  550. data/samples/bigdemo/icons/list.xpm +27 -0
  551. data/samples/bigdemo/icons/mondrian.ico +0 -0
  552. data/samples/bigdemo/icons/mondrian.xpm +44 -0
  553. data/samples/bigdemo/icons/new.xpm +24 -0
  554. data/samples/bigdemo/icons/ogl.ico +0 -0
  555. data/samples/bigdemo/icons/ogl.xpm +45 -0
  556. data/samples/bigdemo/icons/open.xpm +26 -0
  557. data/samples/bigdemo/icons/paste.bmp +0 -0
  558. data/samples/bigdemo/icons/paste.xpm +38 -0
  559. data/samples/bigdemo/icons/pointy.png +0 -0
  560. data/samples/bigdemo/icons/preview.xpm +26 -0
  561. data/samples/bigdemo/icons/print.xpm +26 -0
  562. data/samples/bigdemo/icons/radio.bmp +0 -0
  563. data/samples/bigdemo/icons/radio.xpm +27 -0
  564. data/samples/bigdemo/icons/robert.xpm +415 -0
  565. data/samples/bigdemo/icons/sashtest.ico +0 -0
  566. data/samples/bigdemo/icons/save.xpm +25 -0
  567. data/samples/bigdemo/icons/smiles.bmp +0 -0
  568. data/samples/bigdemo/icons/smiles.xpm +39 -0
  569. data/samples/bigdemo/icons/smiley.ico +0 -0
  570. data/samples/bigdemo/icons/smiley.xpm +42 -0
  571. data/samples/bigdemo/icons/stattext.xpm +24 -0
  572. data/samples/bigdemo/icons/test2.bmp +0 -0
  573. data/samples/bigdemo/icons/test2.png +0 -0
  574. data/samples/bigdemo/icons/test2.xpm +79 -0
  575. data/samples/bigdemo/icons/text.bmp +0 -0
  576. data/samples/bigdemo/icons/text.xpm +27 -0
  577. data/samples/bigdemo/icons/tog1.bmp +0 -0
  578. data/samples/bigdemo/icons/tog1.xpm +38 -0
  579. data/samples/bigdemo/icons/tog2.bmp +0 -0
  580. data/samples/bigdemo/icons/tog2.xpm +38 -0
  581. data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
  582. data/samples/bigdemo/icons/wxwin.ico +0 -0
  583. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  584. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
  585. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  586. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  587. data/samples/bigdemo/run.rb +91 -0
  588. data/samples/bigdemo/tips.txt +7 -0
  589. data/samples/bigdemo/utils.rb +12 -0
  590. data/samples/bigdemo/wxArtProvider.rbw +281 -0
  591. data/samples/bigdemo/wxBitmapButton.rbw +65 -0
  592. data/samples/bigdemo/wxButton.rbw +64 -0
  593. data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
  594. data/samples/bigdemo/wxCheckBox.rbw +50 -0
  595. data/samples/bigdemo/wxCheckListBox.rbw +65 -0
  596. data/samples/bigdemo/wxChoice.rbw +47 -0
  597. data/samples/bigdemo/wxChoicebook.rbw +78 -0
  598. data/samples/bigdemo/wxColourDialog.rbw +33 -0
  599. data/samples/bigdemo/wxComboBox.rbw +77 -0
  600. data/samples/bigdemo/wxCursor.rbw +136 -0
  601. data/samples/bigdemo/wxDialog.rbw +74 -0
  602. data/samples/bigdemo/wxDirDialog.rbw +29 -0
  603. data/samples/bigdemo/wxDragImage.rbw +70 -0
  604. data/samples/bigdemo/wxFileDialog.rbw +37 -0
  605. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
  606. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
  607. data/samples/bigdemo/wxFontDialog.rbw +200 -0
  608. data/samples/bigdemo/wxFrame.rbw +53 -0
  609. data/samples/bigdemo/wxGauge.rbw +65 -0
  610. data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
  611. data/samples/bigdemo/wxGrid.rbw +66 -0
  612. data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
  613. data/samples/bigdemo/wxListBox.rbw +140 -0
  614. data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
  615. data/samples/bigdemo/wxMDIWindows.rbw +50 -0
  616. data/samples/bigdemo/wxMenu.rbw +247 -0
  617. data/samples/bigdemo/wxMessageDialog.rbw +27 -0
  618. data/samples/bigdemo/wxMiniFrame.rbw +70 -0
  619. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
  620. data/samples/bigdemo/wxNotebook.rbw +136 -0
  621. data/samples/bigdemo/wxProgressDialog.rbw +43 -0
  622. data/samples/bigdemo/wxRadioBox.rbw +72 -0
  623. data/samples/bigdemo/wxRadioButton.rbw +125 -0
  624. data/samples/bigdemo/wxSashWindow.rbw +141 -0
  625. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
  626. data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
  627. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
  628. data/samples/bigdemo/wxSlider.rbw +42 -0
  629. data/samples/bigdemo/wxSpinButton.rbw +50 -0
  630. data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
  631. data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
  632. data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
  633. data/samples/bigdemo/wxStaticText.rbw +55 -0
  634. data/samples/bigdemo/wxStatusBar.rbw +126 -0
  635. data/samples/bigdemo/wxTextCtrl.rbw +149 -0
  636. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
  637. data/samples/bigdemo/wxToggleButton.rbw +49 -0
  638. data/samples/bigdemo/wxToolBar.rbw +131 -0
  639. data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
  640. data/samples/calendar/calendar.rb +363 -0
  641. data/samples/calendar/tn_calendar.png +0 -0
  642. data/samples/caret/caret.rb +293 -0
  643. data/samples/caret/mondrian.xpm +44 -0
  644. data/samples/caret/tn_caret.png +0 -0
  645. data/samples/controls/books.rb +183 -0
  646. data/samples/controls/controls.rb +1143 -0
  647. data/samples/controls/get_item_sample.rb +117 -0
  648. data/samples/controls/icons/choice.xpm +27 -0
  649. data/samples/controls/icons/combo.xpm +27 -0
  650. data/samples/controls/icons/gauge.xpm +27 -0
  651. data/samples/controls/icons/list.xpm +27 -0
  652. data/samples/controls/icons/radio.xpm +27 -0
  653. data/samples/controls/icons/stattext.xpm +24 -0
  654. data/samples/controls/icons/text.xpm +27 -0
  655. data/samples/controls/mondrian.ico +0 -0
  656. data/samples/controls/mondrian.xpm +44 -0
  657. data/samples/controls/test2.bmp +0 -0
  658. data/samples/controls/tn_books.png +0 -0
  659. data/samples/controls/tn_controls.png +0 -0
  660. data/samples/controls/tn_get_item_sample.png +0 -0
  661. data/samples/dialogs/dialogs.rb +879 -0
  662. data/samples/dialogs/tips.txt +18 -0
  663. data/samples/dialogs/tn_dialogs.png +0 -0
  664. data/samples/dialogs/tn_wizard.png +0 -0
  665. data/samples/dialogs/wizard.rb +89 -0
  666. data/samples/dragdrop/dragdrop.rb +200 -0
  667. data/samples/dragdrop/tn_dragdrop.png +0 -0
  668. data/samples/drawing/SVGlogo24.xpm +310 -0
  669. data/samples/drawing/bitmap.rb +76 -0
  670. data/samples/drawing/bitmap_image.rb +131 -0
  671. data/samples/drawing/graphics_drawing.rb +257 -0
  672. data/samples/drawing/maths_images.rb +327 -0
  673. data/samples/drawing/rmagic_bitmap_image.rb +139 -0
  674. data/samples/drawing/ruby-logo.jpg +0 -0
  675. data/samples/drawing/svgtest.rb +373 -0
  676. data/samples/drawing/tn_bitmap.png +0 -0
  677. data/samples/drawing/tn_bitmap_image.png +0 -0
  678. data/samples/drawing/tn_graphics_drawing.png +0 -0
  679. data/samples/drawing/tn_maths_images.png +0 -0
  680. data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
  681. data/samples/drawing/tn_svgtest.png +0 -0
  682. data/samples/etc/choice.rb +82 -0
  683. data/samples/etc/miniframe.rb +92 -0
  684. data/samples/etc/sash.rb +140 -0
  685. data/samples/etc/scrollwin.rb +120 -0
  686. data/samples/etc/system_settings.rb +263 -0
  687. data/samples/etc/tn_choice.png +0 -0
  688. data/samples/etc/tn_miniframe.png +0 -0
  689. data/samples/etc/tn_sash.png +0 -0
  690. data/samples/etc/tn_scrollwin.png +0 -0
  691. data/samples/etc/tn_system_settings.png +0 -0
  692. data/samples/event/activation.rb +129 -0
  693. data/samples/event/event.rb +220 -0
  694. data/samples/event/threaded.rb +141 -0
  695. data/samples/event/tn_activation.png +0 -0
  696. data/samples/event/tn_event.png +0 -0
  697. data/samples/event/tn_threaded.png +0 -0
  698. data/samples/event/tn_update_ui_event.png +0 -0
  699. data/samples/event/update_ui_event.rb +91 -0
  700. data/samples/grid/grid.rb +224 -0
  701. data/samples/grid/gridtablebase.rb +178 -0
  702. data/samples/grid/tn_grid.png +0 -0
  703. data/samples/grid/tn_gridtablebase.png +0 -0
  704. data/samples/html/8859_2.htm +14 -0
  705. data/samples/html/cp1250.htm +19 -0
  706. data/samples/html/foo.png +0 -0
  707. data/samples/html/html.rb +278 -0
  708. data/samples/html/i18n.gif +0 -0
  709. data/samples/html/imagemap.htm +20 -0
  710. data/samples/html/imagemap.png +0 -0
  711. data/samples/html/listtest.htm +28 -0
  712. data/samples/html/pic.png +0 -0
  713. data/samples/html/pic2.bmp +0 -0
  714. data/samples/html/regres.htm +20 -0
  715. data/samples/html/subsup.html +42 -0
  716. data/samples/html/tables.htm +255 -0
  717. data/samples/html/test.htm +375 -0
  718. data/samples/html/tn_html.png +0 -0
  719. data/samples/mdi/mdi.rb +118 -0
  720. data/samples/mdi/tn_mdi.png +0 -0
  721. data/samples/minimal/minimal.rb +95 -0
  722. data/samples/minimal/mondrian.ico +0 -0
  723. data/samples/minimal/mondrian.png +0 -0
  724. data/samples/minimal/nothing.rb +38 -0
  725. data/samples/minimal/tn_minimal.png +0 -0
  726. data/samples/minimal/tn_nothing.png +0 -0
  727. data/samples/printing/mondrian.ico +0 -0
  728. data/samples/printing/mondrian.xpm +44 -0
  729. data/samples/printing/printing.rb +499 -0
  730. data/samples/printing/printing2.rb +251 -0
  731. data/samples/printing/sample-text.txt +213 -0
  732. data/samples/printing/tn_printing.png +0 -0
  733. data/samples/printing/tn_printing2.png +0 -0
  734. data/samples/propgrid/propgrid.rb +2707 -0
  735. data/samples/propgrid/propgrid_minimal.rb +106 -0
  736. data/samples/propgrid/sample_props.rb +434 -0
  737. data/samples/propgrid/tn_propgrid.png +0 -0
  738. data/samples/propgrid/tn_propgrid_minimal.png +0 -0
  739. data/samples/ribbon/align_center.xpm +21 -0
  740. data/samples/ribbon/align_left.xpm +21 -0
  741. data/samples/ribbon/align_right.xpm +21 -0
  742. data/samples/ribbon/aui_style.xpm +53 -0
  743. data/samples/ribbon/auto_crop_selection.xpm +55 -0
  744. data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
  745. data/samples/ribbon/circle.xpm +38 -0
  746. data/samples/ribbon/circle_small.xpm +22 -0
  747. data/samples/ribbon/colours.xpm +25 -0
  748. data/samples/ribbon/cross.xpm +38 -0
  749. data/samples/ribbon/empty.xpm +23 -0
  750. data/samples/ribbon/expand_selection_h.xpm +46 -0
  751. data/samples/ribbon/expand_selection_v.xpm +46 -0
  752. data/samples/ribbon/eye.xpm +26 -0
  753. data/samples/ribbon/hexagon.xpm +38 -0
  754. data/samples/ribbon/msw_style.xpm +65 -0
  755. data/samples/ribbon/position_left.xpm +22 -0
  756. data/samples/ribbon/position_top.xpm +22 -0
  757. data/samples/ribbon/ribbon.rb +900 -0
  758. data/samples/ribbon/ribbon.xpm +54 -0
  759. data/samples/ribbon/selection_panel.xpm +23 -0
  760. data/samples/ribbon/square.xpm +38 -0
  761. data/samples/ribbon/tn_ribbon.png +0 -0
  762. data/samples/ribbon/triangle.xpm +38 -0
  763. data/samples/sample.xpm +475 -0
  764. data/samples/sampler/back.xpm +21 -0
  765. data/samples/sampler/copy.xpm +44 -0
  766. data/samples/sampler/cut.xpm +46 -0
  767. data/samples/sampler/editor.rb +534 -0
  768. data/samples/sampler/ext.rb +51 -0
  769. data/samples/sampler/filesave.xpm +42 -0
  770. data/samples/sampler/find.xpm +62 -0
  771. data/samples/sampler/findrepl.xpm +63 -0
  772. data/samples/sampler/forward.xpm +21 -0
  773. data/samples/sampler/paste.xpm +46 -0
  774. data/samples/sampler/play.xpm +24 -0
  775. data/samples/sampler/redo.xpm +58 -0
  776. data/samples/sampler/sample.rb +337 -0
  777. data/samples/sampler/stc_editor.rb +326 -0
  778. data/samples/sampler/txt_editor.rb +135 -0
  779. data/samples/sampler/undo.xpm +58 -0
  780. data/samples/sampler.rb +401 -0
  781. data/samples/splash/mobile.xpm +1835 -0
  782. data/samples/splash/splash.png +0 -0
  783. data/samples/splash/splash.rb +164 -0
  784. data/samples/splash/tn_splash.png +0 -0
  785. data/samples/text/document-open.png +0 -0
  786. data/samples/text/document-save.png +0 -0
  787. data/samples/text/edit-copy.png +0 -0
  788. data/samples/text/edit-cut.png +0 -0
  789. data/samples/text/edit-paste.png +0 -0
  790. data/samples/text/edit-redo.png +0 -0
  791. data/samples/text/edit-undo.png +0 -0
  792. data/samples/text/format-text-bold.png +0 -0
  793. data/samples/text/format-text-italic.png +0 -0
  794. data/samples/text/format-text-underline.png +0 -0
  795. data/samples/text/mondrian.ico +0 -0
  796. data/samples/text/mondrian.xpm +44 -0
  797. data/samples/text/preferences-desktop-font.png +0 -0
  798. data/samples/text/rich_textctrl.rb +326 -0
  799. data/samples/text/scintilla.rb +179 -0
  800. data/samples/text/textctrl.rb +124 -0
  801. data/samples/text/tn_rich_textctrl.png +0 -0
  802. data/samples/text/tn_scintilla.png +0 -0
  803. data/samples/text/tn_textctrl.png +0 -0
  804. data/samples/text/tn_unicode.png +0 -0
  805. data/samples/text/unicode.rb +238 -0
  806. data/samples/text/utf8.txt +15 -0
  807. data/samples/treectrl/checked.xpm +54 -0
  808. data/samples/treectrl/icon1.xpm +79 -0
  809. data/samples/treectrl/icon2.xpm +53 -0
  810. data/samples/treectrl/icon3.xpm +79 -0
  811. data/samples/treectrl/icon4.xpm +43 -0
  812. data/samples/treectrl/icon5.xpm +79 -0
  813. data/samples/treectrl/state1.xpm +145 -0
  814. data/samples/treectrl/state2.xpm +144 -0
  815. data/samples/treectrl/state3.xpm +142 -0
  816. data/samples/treectrl/state4.xpm +145 -0
  817. data/samples/treectrl/state5.xpm +85 -0
  818. data/samples/treectrl/tn_treectrl.png +0 -0
  819. data/samples/treectrl/treectrl.rb +1720 -0
  820. data/samples/treectrl/unchecked.xpm +30 -0
  821. data/samples/xrc/custom_dialog.xrc +46 -0
  822. data/samples/xrc/custom_xrc_sample.rb +84 -0
  823. data/samples/xrc/samples.xrc +46 -0
  824. data/samples/xrc/tn_xrc_sample.png +0 -0
  825. data/samples/xrc/xrc_sample.rb +86 -0
  826. data/tests/test_basic.rb +20 -0
  827. data/tests/test_clipboard.rb +241 -0
  828. data/tests/test_dialog.rb +28 -0
  829. data/tests/test_event_handling.rb +103 -0
  830. data/tests/test_events.rb +45 -0
  831. data/tests/test_geometry.rb +141 -0
  832. data/tests/test_intl.rb +107 -0
  833. data/tests/test_item_data.rb +120 -0
  834. data/tests/test_variant.rb +151 -0
  835. data/tests/testapp.rb +40 -0
  836. data/tests/testapp_noframe.rb +28 -0
  837. metadata +928 -0
@@ -0,0 +1,1652 @@
1
+ # :stopdoc:
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # :startdoc:
5
+
6
+
7
+ module Wx::RBN
8
+
9
+ # Identifiers for common settings on ribbon art providers which can be used to tweak the appearance of the art provider.
10
+ #
11
+ #
12
+ # @see Wx::RBN::RibbonArtProvider#get_colour
13
+ #
14
+ # @see Wx::RBN::RibbonArtProvider#get_font
15
+ #
16
+ # @see Wx::RBN::RibbonArtProvider#get_metric
17
+ #
18
+ # @see Wx::RBN::RibbonArtProvider#set_colour
19
+ #
20
+ # @see Wx::RBN::RibbonArtProvider#set_font
21
+ #
22
+ # @see Wx::RBN::RibbonArtProvider#set_metric
23
+ #
24
+ #
25
+ class RibbonArtSetting < Wx::Enum
26
+
27
+ #
28
+ #
29
+ RIBBON_ART_TAB_SEPARATION_SIZE = Wx::RBN::RibbonArtSetting.new(0)
30
+
31
+ #
32
+ #
33
+ RIBBON_ART_PAGE_BORDER_LEFT_SIZE = Wx::RBN::RibbonArtSetting.new(1)
34
+
35
+ #
36
+ #
37
+ RIBBON_ART_PAGE_BORDER_TOP_SIZE = Wx::RBN::RibbonArtSetting.new(2)
38
+
39
+ #
40
+ #
41
+ RIBBON_ART_PAGE_BORDER_RIGHT_SIZE = Wx::RBN::RibbonArtSetting.new(3)
42
+
43
+ #
44
+ #
45
+ RIBBON_ART_PAGE_BORDER_BOTTOM_SIZE = Wx::RBN::RibbonArtSetting.new(4)
46
+
47
+ #
48
+ #
49
+ RIBBON_ART_PANEL_X_SEPARATION_SIZE = Wx::RBN::RibbonArtSetting.new(5)
50
+
51
+ #
52
+ #
53
+ RIBBON_ART_PANEL_Y_SEPARATION_SIZE = Wx::RBN::RibbonArtSetting.new(6)
54
+
55
+ #
56
+ #
57
+ RIBBON_ART_TOOL_GROUP_SEPARATION_SIZE = Wx::RBN::RibbonArtSetting.new(7)
58
+
59
+ #
60
+ #
61
+ RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE = Wx::RBN::RibbonArtSetting.new(8)
62
+
63
+ #
64
+ #
65
+ RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE = Wx::RBN::RibbonArtSetting.new(9)
66
+
67
+ #
68
+ #
69
+ RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE = Wx::RBN::RibbonArtSetting.new(10)
70
+
71
+ #
72
+ #
73
+ RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE = Wx::RBN::RibbonArtSetting.new(11)
74
+
75
+ #
76
+ #
77
+ RIBBON_ART_PANEL_LABEL_FONT = Wx::RBN::RibbonArtSetting.new(12)
78
+
79
+ #
80
+ #
81
+ RIBBON_ART_BUTTON_BAR_LABEL_FONT = Wx::RBN::RibbonArtSetting.new(13)
82
+
83
+ #
84
+ #
85
+ RIBBON_ART_TAB_LABEL_FONT = Wx::RBN::RibbonArtSetting.new(14)
86
+
87
+ #
88
+ #
89
+ RIBBON_ART_BUTTON_BAR_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(15)
90
+
91
+ #
92
+ #
93
+ RIBBON_ART_BUTTON_BAR_LABEL_DISABLED_COLOUR = Wx::RBN::RibbonArtSetting.new(106)
94
+
95
+ #
96
+ #
97
+ RIBBON_ART_BUTTON_BAR_HOVER_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(16)
98
+
99
+ #
100
+ #
101
+ RIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(17)
102
+
103
+ #
104
+ #
105
+ RIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(18)
106
+
107
+ #
108
+ #
109
+ RIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(19)
110
+
111
+ #
112
+ #
113
+ RIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(20)
114
+
115
+ #
116
+ #
117
+ RIBBON_ART_BUTTON_BAR_ACTIVE_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(21)
118
+
119
+ #
120
+ #
121
+ RIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(22)
122
+
123
+ #
124
+ #
125
+ RIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(23)
126
+
127
+ #
128
+ #
129
+ RIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(24)
130
+
131
+ #
132
+ #
133
+ RIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(25)
134
+
135
+ #
136
+ #
137
+ RIBBON_ART_GALLERY_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(26)
138
+
139
+ #
140
+ #
141
+ RIBBON_ART_GALLERY_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(27)
142
+
143
+ #
144
+ #
145
+ RIBBON_ART_GALLERY_BUTTON_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(28)
146
+
147
+ #
148
+ #
149
+ RIBBON_ART_GALLERY_BUTTON_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(29)
150
+
151
+ #
152
+ #
153
+ RIBBON_ART_GALLERY_BUTTON_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(30)
154
+
155
+ #
156
+ #
157
+ RIBBON_ART_GALLERY_BUTTON_FACE_COLOUR = Wx::RBN::RibbonArtSetting.new(31)
158
+
159
+ #
160
+ #
161
+ RIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(32)
162
+
163
+ #
164
+ #
165
+ RIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(33)
166
+
167
+ #
168
+ #
169
+ RIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(34)
170
+
171
+ #
172
+ #
173
+ RIBBON_ART_GALLERY_BUTTON_HOVER_FACE_COLOUR = Wx::RBN::RibbonArtSetting.new(35)
174
+
175
+ #
176
+ #
177
+ RIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(36)
178
+
179
+ #
180
+ #
181
+ RIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(37)
182
+
183
+ #
184
+ #
185
+ RIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(38)
186
+
187
+ #
188
+ #
189
+ RIBBON_ART_GALLERY_BUTTON_ACTIVE_FACE_COLOUR = Wx::RBN::RibbonArtSetting.new(39)
190
+
191
+ #
192
+ #
193
+ RIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(40)
194
+
195
+ #
196
+ #
197
+ RIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(41)
198
+
199
+ #
200
+ #
201
+ RIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(42)
202
+
203
+ #
204
+ #
205
+ RIBBON_ART_GALLERY_BUTTON_DISABLED_FACE_COLOUR = Wx::RBN::RibbonArtSetting.new(43)
206
+
207
+ #
208
+ #
209
+ RIBBON_ART_GALLERY_ITEM_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(44)
210
+
211
+ #
212
+ #
213
+ RIBBON_ART_TAB_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(45)
214
+
215
+ #
216
+ #
217
+ RIBBON_ART_TAB_ACTIVE_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(46)
218
+
219
+ #
220
+ #
221
+ RIBBON_ART_TAB_HOVER_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(47)
222
+
223
+ #
224
+ #
225
+ RIBBON_ART_TAB_SEPARATOR_COLOUR = Wx::RBN::RibbonArtSetting.new(48)
226
+
227
+ #
228
+ #
229
+ RIBBON_ART_TAB_SEPARATOR_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(49)
230
+
231
+ #
232
+ #
233
+ RIBBON_ART_TAB_CTRL_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(50)
234
+
235
+ #
236
+ #
237
+ RIBBON_ART_TAB_CTRL_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(51)
238
+
239
+ #
240
+ #
241
+ RIBBON_ART_TAB_HOVER_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(52)
242
+
243
+ #
244
+ #
245
+ RIBBON_ART_TAB_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(53)
246
+
247
+ #
248
+ #
249
+ RIBBON_ART_TAB_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(54)
250
+
251
+ #
252
+ #
253
+ RIBBON_ART_TAB_HOVER_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(55)
254
+
255
+ #
256
+ #
257
+ RIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(56)
258
+
259
+ #
260
+ #
261
+ RIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(57)
262
+
263
+ #
264
+ #
265
+ RIBBON_ART_TAB_ACTIVE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(58)
266
+
267
+ #
268
+ #
269
+ RIBBON_ART_TAB_ACTIVE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(59)
270
+
271
+ #
272
+ #
273
+ RIBBON_ART_TAB_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(60)
274
+
275
+ #
276
+ #
277
+ RIBBON_ART_PANEL_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(61)
278
+
279
+ #
280
+ #
281
+ RIBBON_ART_PANEL_BORDER_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(62)
282
+
283
+ #
284
+ #
285
+ RIBBON_ART_PANEL_HOVER_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(63)
286
+
287
+ #
288
+ #
289
+ RIBBON_ART_PANEL_HOVER_BORDER_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(64)
290
+
291
+ #
292
+ #
293
+ RIBBON_ART_PANEL_MINIMISED_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(65)
294
+
295
+ #
296
+ #
297
+ RIBBON_ART_PANEL_MINIMISED_BORDER_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(66)
298
+
299
+ #
300
+ #
301
+ RIBBON_ART_PANEL_LABEL_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(67)
302
+
303
+ #
304
+ #
305
+ RIBBON_ART_PANEL_LABEL_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(68)
306
+
307
+ #
308
+ #
309
+ RIBBON_ART_PANEL_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(69)
310
+
311
+ #
312
+ #
313
+ RIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(70)
314
+
315
+ #
316
+ #
317
+ RIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(71)
318
+
319
+ #
320
+ #
321
+ RIBBON_ART_PANEL_HOVER_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(72)
322
+
323
+ #
324
+ #
325
+ RIBBON_ART_PANEL_MINIMISED_LABEL_COLOUR = Wx::RBN::RibbonArtSetting.new(73)
326
+
327
+ #
328
+ #
329
+ RIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(74)
330
+
331
+ #
332
+ #
333
+ RIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(75)
334
+
335
+ #
336
+ #
337
+ RIBBON_ART_PANEL_ACTIVE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(76)
338
+
339
+ #
340
+ #
341
+ RIBBON_ART_PANEL_ACTIVE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(77)
342
+
343
+ #
344
+ #
345
+ RIBBON_ART_PAGE_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(82)
346
+
347
+ #
348
+ #
349
+ RIBBON_ART_PAGE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(83)
350
+
351
+ #
352
+ #
353
+ RIBBON_ART_PAGE_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(84)
354
+
355
+ #
356
+ #
357
+ RIBBON_ART_PAGE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(85)
358
+
359
+ #
360
+ #
361
+ RIBBON_ART_PAGE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(86)
362
+
363
+ #
364
+ #
365
+ RIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(87)
366
+
367
+ #
368
+ #
369
+ RIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(88)
370
+
371
+ #
372
+ #
373
+ RIBBON_ART_PAGE_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(89)
374
+
375
+ #
376
+ #
377
+ RIBBON_ART_PAGE_HOVER_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(90)
378
+
379
+ #
380
+ #
381
+ RIBBON_ART_TOOLBAR_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(91)
382
+
383
+ #
384
+ #
385
+ RIBBON_ART_TOOLBAR_HOVER_BORDER_COLOUR = Wx::RBN::RibbonArtSetting.new(92)
386
+
387
+ #
388
+ #
389
+ RIBBON_ART_TOOLBAR_FACE_COLOUR = Wx::RBN::RibbonArtSetting.new(93)
390
+
391
+ #
392
+ #
393
+ RIBBON_ART_TOOL_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(94)
394
+
395
+ #
396
+ #
397
+ RIBBON_ART_TOOL_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(95)
398
+
399
+ #
400
+ #
401
+ RIBBON_ART_TOOL_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(96)
402
+
403
+ #
404
+ #
405
+ RIBBON_ART_TOOL_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(97)
406
+
407
+ #
408
+ #
409
+ RIBBON_ART_TOOL_HOVER_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(98)
410
+
411
+ #
412
+ #
413
+ RIBBON_ART_TOOL_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(99)
414
+
415
+ #
416
+ #
417
+ RIBBON_ART_TOOL_HOVER_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(100)
418
+
419
+ #
420
+ #
421
+ RIBBON_ART_TOOL_HOVER_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(101)
422
+
423
+ #
424
+ #
425
+ RIBBON_ART_TOOL_ACTIVE_BACKGROUND_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(102)
426
+
427
+ #
428
+ #
429
+ RIBBON_ART_TOOL_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(103)
430
+
431
+ #
432
+ #
433
+ RIBBON_ART_TOOL_ACTIVE_BACKGROUND_COLOUR = Wx::RBN::RibbonArtSetting.new(104)
434
+
435
+ #
436
+ #
437
+ RIBBON_ART_TOOL_ACTIVE_BACKGROUND_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(105)
438
+
439
+ #
440
+ #
441
+ RIBBON_ART_BUTTON_BAR_LABEL_HIGHLIGHT_COLOUR = Wx::RBN::RibbonArtSetting.new(107)
442
+
443
+ #
444
+ #
445
+ RIBBON_ART_BUTTON_BAR_LABEL_HIGHLIGHT_GRADIENT_COLOUR = Wx::RBN::RibbonArtSetting.new(108)
446
+
447
+ #
448
+ #
449
+ RIBBON_ART_BUTTON_BAR_LABEL_HIGHLIGHT_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(109)
450
+
451
+ #
452
+ #
453
+ RIBBON_ART_BUTTON_BAR_LABEL_HIGHLIGHT_GRADIENT_TOP_COLOUR = Wx::RBN::RibbonArtSetting.new(110)
454
+
455
+ end # RibbonArtSetting
456
+
457
+ # Flags used to describe the direction, state, and/or purpose of a ribbon-style scroll button.
458
+ #
459
+ #
460
+ # @see Wx::RBN::RibbonArtProvider#draw_scroll_button
461
+ #
462
+ # @see Wx::RBN::RibbonArtProvider#get_scroll_button_minimum_size
463
+ #
464
+ #
465
+ class RibbonScrollButtonStyle < Wx::Enum
466
+
467
+ # Button will scroll to the left.
468
+ #
469
+ RIBBON_SCROLL_BTN_LEFT = Wx::RBN::RibbonScrollButtonStyle.new(0)
470
+
471
+ # Button will scroll to the right.
472
+ #
473
+ RIBBON_SCROLL_BTN_RIGHT = Wx::RBN::RibbonScrollButtonStyle.new(1)
474
+
475
+ # Button will scroll upward.
476
+ #
477
+ RIBBON_SCROLL_BTN_UP = Wx::RBN::RibbonScrollButtonStyle.new(2)
478
+
479
+ # Button will scroll downward.
480
+ #
481
+ RIBBON_SCROLL_BTN_DOWN = Wx::RBN::RibbonScrollButtonStyle.new(3)
482
+
483
+ # A mask to extract direction from a combination of flags.
484
+ #
485
+ RIBBON_SCROLL_BTN_DIRECTION_MASK = Wx::RBN::RibbonScrollButtonStyle.new(3)
486
+
487
+ # Button is not active or hovered.
488
+ #
489
+ RIBBON_SCROLL_BTN_NORMAL = Wx::RBN::RibbonScrollButtonStyle.new(0)
490
+
491
+ # Button has a cursor hovering over it.
492
+ #
493
+ RIBBON_SCROLL_BTN_HOVERED = Wx::RBN::RibbonScrollButtonStyle.new(4)
494
+
495
+ # Button is being pressed.
496
+ #
497
+ RIBBON_SCROLL_BTN_ACTIVE = Wx::RBN::RibbonScrollButtonStyle.new(8)
498
+
499
+ # A mask to extract state from a combination of flags.
500
+ #
501
+ RIBBON_SCROLL_BTN_STATE_MASK = Wx::RBN::RibbonScrollButtonStyle.new(12)
502
+
503
+ # Button is not for scrolling tabs nor pages.
504
+ #
505
+ RIBBON_SCROLL_BTN_FOR_OTHER = Wx::RBN::RibbonScrollButtonStyle.new(0)
506
+
507
+ # Button is for scrolling tabs.
508
+ #
509
+ RIBBON_SCROLL_BTN_FOR_TABS = Wx::RBN::RibbonScrollButtonStyle.new(16)
510
+
511
+ # Button is for scrolling pages.
512
+ #
513
+ RIBBON_SCROLL_BTN_FOR_PAGE = Wx::RBN::RibbonScrollButtonStyle.new(32)
514
+
515
+ # A mask to extract purpose from a combination of flags.
516
+ #
517
+ RIBBON_SCROLL_BTN_FOR_MASK = Wx::RBN::RibbonScrollButtonStyle.new(48)
518
+
519
+ end # RibbonScrollButtonStyle
520
+
521
+ # Buttons on a ribbon button bar and tools on a ribbon tool bar can each be one of three different kinds.
522
+ #
523
+ #
524
+ #
525
+ class RibbonButtonKind < Wx::Enum
526
+
527
+ # Normal button or tool with a clickable area which causes some generic action.
528
+ #
529
+ RIBBON_BUTTON_NORMAL = Wx::RBN::RibbonButtonKind.new(1)
530
+
531
+ # Dropdown button or tool with a clickable area which typically causes a dropdown menu.
532
+ #
533
+ RIBBON_BUTTON_DROPDOWN = Wx::RBN::RibbonButtonKind.new(2)
534
+
535
+ # Button or tool with two clickable areas - one which causes a dropdown menu, and one which causes a generic action.
536
+ #
537
+ RIBBON_BUTTON_HYBRID = Wx::RBN::RibbonButtonKind.new(3)
538
+
539
+ # Normal button or tool with a clickable area which toggles the button between a pressed and unpressed state.
540
+ #
541
+ RIBBON_BUTTON_TOGGLE = Wx::RBN::RibbonButtonKind.new(4)
542
+
543
+ end # RibbonButtonKind
544
+
545
+ #
546
+ #
547
+ #
548
+ #
549
+ class RibbonBarOption < Wx::Enum
550
+
551
+ #
552
+ #
553
+ RIBBON_BAR_SHOW_PAGE_LABELS = Wx::RBN::RibbonBarOption.new(1)
554
+
555
+ #
556
+ #
557
+ RIBBON_BAR_SHOW_PAGE_ICONS = Wx::RBN::RibbonBarOption.new(2)
558
+
559
+ #
560
+ #
561
+ RIBBON_BAR_FLOW_HORIZONTAL = Wx::RBN::RibbonBarOption.new(0)
562
+
563
+ #
564
+ #
565
+ RIBBON_BAR_FLOW_VERTICAL = Wx::RBN::RibbonBarOption.new(4)
566
+
567
+ #
568
+ #
569
+ RIBBON_BAR_SHOW_PANEL_EXT_BUTTONS = Wx::RBN::RibbonBarOption.new(8)
570
+
571
+ #
572
+ #
573
+ RIBBON_BAR_SHOW_PANEL_MINIMISE_BUTTONS = Wx::RBN::RibbonBarOption.new(16)
574
+
575
+ #
576
+ #
577
+ RIBBON_BAR_ALWAYS_SHOW_TABS = Wx::RBN::RibbonBarOption.new(32)
578
+
579
+ #
580
+ #
581
+ RIBBON_BAR_SHOW_TOGGLE_BUTTON = Wx::RBN::RibbonBarOption.new(64)
582
+
583
+ #
584
+ #
585
+ RIBBON_BAR_SHOW_HELP_BUTTON = Wx::RBN::RibbonBarOption.new(128)
586
+
587
+ #
588
+ #
589
+ RIBBON_BAR_DEFAULT_STYLE = Wx::RBN::RibbonBarOption.new(201)
590
+
591
+ #
592
+ #
593
+ RIBBON_BAR_FOLDBAR_STYLE = Wx::RBN::RibbonBarOption.new(30)
594
+
595
+ end # RibbonBarOption
596
+
597
+ # The possible display modes of the panel area of a {Wx::RBN::RibbonBar} widget.
598
+ #
599
+ #
600
+ # @see Wx::RBN::RibbonBar#show_panels
601
+ #
602
+ # @see Wx::RBN::RibbonBar#get_display_mode
603
+ #
604
+ #
605
+ class RibbonDisplayMode < Wx::Enum
606
+
607
+ # The panel area is visible and pinned: it remains visible when the ribbon bar loses the focus.
608
+ #
609
+ RIBBON_BAR_PINNED = Wx::RBN::RibbonDisplayMode.new(0)
610
+
611
+ # The panel area is hidden: only the pages tabs remain visible.
612
+ #
613
+ RIBBON_BAR_MINIMIZED = Wx::RBN::RibbonDisplayMode.new(1)
614
+
615
+ # The panel area is visible, but not pinned: it minimizes as soon as the focus is lost.
616
+ #
617
+ RIBBON_BAR_EXPANDED = Wx::RBN::RibbonDisplayMode.new(2)
618
+
619
+ end # RibbonDisplayMode
620
+
621
+ #
622
+ #
623
+ EVT_RIBBONBAR_PAGE_CHANGED = 10442
624
+
625
+ #
626
+ #
627
+ EVT_RIBBONBAR_PAGE_CHANGING = 10443
628
+
629
+ #
630
+ #
631
+ EVT_RIBBONBAR_TAB_MIDDLE_DOWN = 10444
632
+
633
+ #
634
+ #
635
+ EVT_RIBBONBAR_TAB_MIDDLE_UP = 10445
636
+
637
+ #
638
+ #
639
+ EVT_RIBBONBAR_TAB_RIGHT_DOWN = 10446
640
+
641
+ #
642
+ #
643
+ EVT_RIBBONBAR_TAB_RIGHT_UP = 10447
644
+
645
+ #
646
+ #
647
+ EVT_RIBBONBAR_TAB_LEFT_DCLICK = 10448
648
+
649
+ #
650
+ #
651
+ EVT_RIBBONBAR_TOGGLED = 10449
652
+
653
+ #
654
+ #
655
+ EVT_RIBBONBAR_HELP_CLICK = 10450
656
+
657
+ # {Wx::RBN::RibbonArtProvider} is responsible for drawing all the components of the ribbon interface.
658
+ # This allows a ribbon bar to have a pluggable look-and-feel, while retaining the same underlying behaviour. As a single art provider is used for all ribbon components, a ribbon bar usually has a consistent (though unique) appearance.
659
+ # By default, a {Wx::RBN::RibbonBar} uses an instance of this class called {Wx::RBN::RibbonDefaultArtProvider}, which resolves to {Wx::RBN::RibbonAUIArtProvider}, {Wx::RBN::RibbonMSWArtProvider}, or {Wx::RibbonOSXArtProvider} - whichever is most appropriate to the current platform. These art providers are all slightly configurable with regard to colours and fonts, but for larger modifications, you can derive from one of these classes, or write a completely new art provider class. Call {Wx::RBN::RibbonBar#set_art_provider} to change the art provider being used.
660
+ # ===
661
+ #
662
+ # Category: Ribbon User Interface
663
+ # @see Wx::RBN::RibbonBar
664
+ #
665
+ #
666
+ class RibbonArtProvider < ::Object
667
+
668
+ # Constructor.
669
+ # @return [RibbonArtProvider]
670
+ def initialize; end
671
+
672
+ # Create a new art provider which is a clone of this one.
673
+ # @return [Wx::RBN::RibbonArtProvider]
674
+ def clone; end
675
+
676
+ # Set the style flags.
677
+ # Normally called automatically by {Wx::RBN::RibbonBar#set_art_provider} with the ribbon bar's style flags, so that the art provider has the same flags as the bar which it is serving.
678
+ # @param flags [Integer]
679
+ # @return [void]
680
+ def set_flags(flags) end
681
+ alias_method :flags=, :set_flags
682
+
683
+ # Get the previously set style flags.
684
+ # @return [Integer]
685
+ def get_flags; end
686
+ alias_method :flags, :get_flags
687
+
688
+ # Get the value of a certain integer setting.
689
+ # id can be one of the size values of {Wx::RBN::RibbonArtSetting}.
690
+ # @param id [Integer]
691
+ # @return [Integer]
692
+ def get_metric(id) end
693
+ alias_method :metric, :get_metric
694
+
695
+ # Set the value of a certain integer setting to the value new_val.
696
+ # id can be one of the size values of {Wx::RBN::RibbonArtSetting}.
697
+ # @param id [Integer]
698
+ # @param new_val [Integer]
699
+ # @return [void]
700
+ def set_metric(id, new_val) end
701
+
702
+ # Set the value of a certain font setting to the value font.
703
+ # id can be one of the font values of {Wx::RBN::RibbonArtSetting}.
704
+ # @param id [Integer]
705
+ # @param font [Wx::Font,Wx::FontInfo]
706
+ # @return [void]
707
+ def set_font(id, font) end
708
+
709
+ # Get the value of a certain font setting.
710
+ # id can be one of the font values of {Wx::RBN::RibbonArtSetting}.
711
+ # @param id [Integer]
712
+ # @return [Wx::Font]
713
+ def get_font(id) end
714
+ alias_method :font, :get_font
715
+
716
+ # Get the value of a certain colour setting.
717
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}.
718
+ # @param id [Integer]
719
+ # @return [Wx::Colour]
720
+ def get_colour(id) end
721
+ alias_method :colour, :get_colour
722
+
723
+ # Set the value of a certain colour setting to the value colour.
724
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}, though not all colour settings will have an effect on every art provider.
725
+ # @see Wx::RBN::RibbonArtProvider#set_colour_scheme
726
+ # @param id [Integer]
727
+ # @param colour [Wx::Colour,String,Symbol]
728
+ # @return [void]
729
+ def set_colour(id, colour) end
730
+
731
+ #
732
+ #
733
+ # @see Wx::RBN::RibbonArtProvider#get_colour
734
+ # @param id [Integer]
735
+ # @return [Wx::Colour]
736
+ def get_color(id) end
737
+ alias_method :color, :get_color
738
+
739
+ #
740
+ #
741
+ # @see Wx::RBN::RibbonArtProvider#set_colour
742
+ # @param id [Integer]
743
+ # @param color [Wx::Colour,String,Symbol]
744
+ # @return [void]
745
+ def set_color(id, color) end
746
+
747
+ # Get the current colour scheme.
748
+ # Returns three colours such that if {Wx::RBN::RibbonArtProvider#set_colour_scheme} were called with them, the colour scheme would be restored to what it was when {Wx::RBN::RibbonArtProvider#set_colour_scheme} was last called. In practice, this usually means that the returned values are the three colours given in the last call to {Wx::RBN::RibbonArtProvider#set_colour_scheme}, however if {Wx::RBN::RibbonArtProvider#set_colour_scheme} performs an idempotent operation upon the colours it is given (like clamping a component of the colour), then the returned values may not be the three colours given in the last call to {Wx::RBN::RibbonArtProvider#set_colour_scheme}. If {Wx::RBN::RibbonArtProvider#set_colour_scheme} has not been called, then the returned values should result in a colour scheme similar to, if not identical to, the default colours of the art provider. Note that if {Wx::RBN::RibbonArtProvider#set_colour} is called, then {Wx::RBN::RibbonArtProvider#get_colour_scheme} does not try and return a colour scheme similar to colours being used - it's return values are dependent upon the last values given to {Wx::RBN::RibbonArtProvider#set_colour_scheme}, as described above.
749
+ # @param primary [Wx::Colour] Pointer to a location to store the primary colour, or NULL.
750
+ # @param secondary [Wx::Colour] Pointer to a location to store the secondary colour, or NULL.
751
+ # @param tertiary [Wx::Colour] Pointer to a location to store the tertiary colour, or NULL.
752
+ # @return [void]
753
+ def get_colour_scheme(primary, secondary, tertiary) end
754
+ alias_method :colour_scheme, :get_colour_scheme
755
+
756
+ # Set all applicable colour settings from a few base colours.
757
+ # Uses any or all of the three given colours to create a colour scheme, and then sets all colour settings which are relevant to the art provider using that scheme. Note that some art providers may not use the tertiary colour for anything, and some may not use the secondary colour either.
758
+ # @see Wx::RBN::RibbonArtProvider#set_colour
759
+ #
760
+ # @see Wx::RBN::RibbonArtProvider#get_colour_scheme
761
+ # @param primary [Wx::Colour,String,Symbol]
762
+ # @param secondary [Wx::Colour,String,Symbol]
763
+ # @param tertiary [Wx::Colour,String,Symbol]
764
+ # @return [void]
765
+ def set_colour_scheme(primary, secondary, tertiary) end
766
+
767
+ # Draw the background of the tab region of a ribbon bar.
768
+ # @param dc [Wx::DC] The device context to draw onto.
769
+ # @param wnd [Wx::Window] The window which is being drawn onto.
770
+ # @param rect [Wx::Rect] The rectangle within which to draw.
771
+ # @return [void]
772
+ def draw_tab_ctrl_background(dc, wnd, rect) end
773
+
774
+ # Draw a single tab in the tab region of a ribbon bar.
775
+ # @param dc [Wx::DC] The device context to draw onto.
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}.
778
+ # @return [void]
779
+ def draw_tab(dc, wnd, tab) end
780
+
781
+ # Draw a separator between two tabs in a ribbon bar.
782
+ # @param dc [Wx::DC] The device context to draw onto.
783
+ # @param wnd [Wx::Window] The window which is being drawn onto.
784
+ # @param rect [Wx::Rect] The rectangle within which to draw, which will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tab_ctrl_background}.
785
+ # @param visibility [Float] The opacity with which to draw the separator. Values are in the range [0, 1], with 0 being totally transparent, and 1 being totally opaque.
786
+ # @return [void]
787
+ def draw_tab_separator(dc, wnd, rect, visibility) end
788
+
789
+ # Draw the background of a ribbon page.
790
+ #
791
+ # @see Wx::RBN::RibbonArtProvider#get_page_background_redraw_area
792
+ # @param dc [Wx::DC] The device context to draw onto.
793
+ # @param wnd [Wx::Window] The window which is being drawn onto (which is commonly the {Wx::RBN::RibbonPage} whose background is being drawn, but doesn't have to be).
794
+ # @param rect [Wx::Rect] The rectangle within which to draw.
795
+ # @return [void]
796
+ def draw_page_background(dc, wnd, rect) end
797
+
798
+ # Draw a ribbon-style scroll button.
799
+ # @param dc [Wx::DC] The device context to draw onto.
800
+ # @param wnd [Wx::Window] The window which is being drawn onto.
801
+ # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be at least the size returned by {Wx::RBN::RibbonArtProvider#get_scroll_button_minimum_size} for a scroll button with the same style. For tab scroll buttons, this rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tab_ctrl_background}, but this is not guaranteed for other types of button (for example, page scroll buttons will not be painted on an area previously painted with {Wx::RBN::RibbonArtProvider#draw_page_background}).
802
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, a for flag, and one or more states.
803
+ # @return [void]
804
+ def draw_scroll_button(dc, wnd, rect, style) end
805
+
806
+ # Draw the background and chrome for a ribbon panel.
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
+ # 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
+ # @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.
811
+ # @param rect [Wx::Rect] The rectangle within which to draw.
812
+ # @return [void]
813
+ def draw_panel_background(dc, wnd, rect) end
814
+
815
+ # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
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
+ # @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}.
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
+ # @return [void]
821
+ def draw_gallery_background(dc, wnd, rect) end
822
+
823
+ # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
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
+ # @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.
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.
829
+ # @return [void]
830
+ def draw_gallery_item_background(dc, wnd, rect, item) end
831
+
832
+ # Draw a minimised ribbon panel.
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.
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
+ # @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
+ # @return [void]
838
+ def draw_minimised_panel(dc, wnd, rect, bitmap) end
839
+
840
+ # Draw the background for a {Wx::RBN::RibbonButtonBar} control.
841
+ # @param dc [Wx::DC] The device context to draw onto.
842
+ # @param wnd [Wx::Window] The window which is being drawn onto (which will typically be the button bar itself, though this is not guaranteed).
843
+ # @param rect [Wx::Rect] The rectangle within which to draw.
844
+ # @return [void]
845
+ def draw_button_bar_background(dc, wnd, rect) end
846
+
847
+ # Draw a single button for a {Wx::RBN::RibbonButtonBar} control.
848
+ # @param dc [Wx::DC] The device context to draw onto.
849
+ # @param wnd [Wx::Window] The window which is being drawn onto.
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).
852
+ # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
853
+ # @param label [String] The label of the button.
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).
855
+ # @param bitmap_small [Wx::Bitmap] The small bitmap of the button (or the small disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
856
+ # @return [void]
857
+ def draw_button_bar_button(dc, wnd, rect, kind, state, label, bitmap_large, bitmap_small) end
858
+
859
+ # Draw the background for a {Wx::RBN::RibbonToolBar} control.
860
+ # @param dc [Wx::DC] The device context to draw onto.
861
+ # @param wnd [Wx::Window] The which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
862
+ # @param rect [Wx::Rect] The rectangle within which to draw. Some of this rectangle will later be drawn over using {Wx::RBN::RibbonArtProvider#draw_tool_group_background} and {Wx::RBN::RibbonArtProvider#draw_tool}, but not all of it will (unless there is only a single group of tools).
863
+ # @return [void]
864
+ def draw_tool_bar_background(dc, wnd, rect) end
865
+
866
+ # Draw the background for a group of tools on a {Wx::RBN::RibbonToolBar} control.
867
+ # @param dc [Wx::DC] The device context to draw onto.
868
+ # @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.
869
+ # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is a union of the individual tools' rectangles. As there are no gaps between tools, this rectangle will be painted over exactly once by calls to {Wx::RBN::RibbonArtProvider#draw_tool}. The group background could therefore be painted by {Wx::RBN::RibbonArtProvider#draw_tool}, though it can be conceptually easier and more efficient to draw it all at once here. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tool_bar_background}.
870
+ # @return [void]
871
+ def draw_tool_group_background(dc, wnd, rect) end
872
+
873
+ # Draw a single tool (for a {Wx::RBN::RibbonToolBar} control).
874
+ # @param dc [Wx::DC] The device context to draw onto.
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
+ # @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
+ # @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).
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
+ # @return [void]
881
+ def draw_tool(dc, wnd, rect, bitmap, kind, state) end
882
+
883
+ # Draw toggle button on {Wx::RBN::RibbonBar}.
884
+ # This should draw a small toggle button at top right corner of ribbon bar.
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.
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
889
+ # @return [void]
890
+ def draw_toggle_button(dc, wnd, rect, mode) end
891
+
892
+ # Draw help button on {Wx::RBN::RibbonBar}.
893
+ # This should draw a help button at top right corner of ribbon bar.
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.
896
+ # @param rect [Wx::Rect] The rectangle within which to draw.
897
+ # @return [void]
898
+ def draw_help_button(dc, wnd, rect) end
899
+
900
+ # Calculate the ideal and minimum width (in pixels) of a tab in a ribbon bar.
901
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
902
+ # @param wnd [Wx::Window] The window onto which the tab will eventually be drawn.
903
+ # @param label [String] The tab's label (or {Wx::EmptyString} if it has none).
904
+ # @param bitmap [Wx::Bitmap] The tab's icon (or {Wx::NULL_BITMAP} if it has none).
905
+ # @return [Array(Integer,Integer,Integer,Integer)]
906
+ def get_bar_tab_width(dc, wnd, label, bitmap) end
907
+ alias_method :bar_tab_width, :get_bar_tab_width
908
+
909
+ # Calculate the height (in pixels) of the tab region of a ribbon bar.
910
+ # Note that as the tab region can contain scroll buttons, the height should be greater than or equal to the minimum height for a tab scroll button.
911
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
912
+ # @param wnd [Wx::Window] The window onto which the tabs will eventually be drawn.
913
+ # @param pages [Array<Wx::RBN::RibbonPageTabInfo>] The tabs which will acquire the returned height.
914
+ # @return [Integer]
915
+ def get_tab_ctrl_height(dc, wnd, pages) end
916
+ alias_method :tab_ctrl_height, :get_tab_ctrl_height
917
+
918
+ # Calculate the minimum size (in pixels) of a scroll button.
919
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
920
+ # @param wnd [Wx::Window] The window onto which the scroll button will eventually be drawn.
921
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, and a for flag (state flags may be given too, but should be ignored, as a button should retain a constant size, regardless of its state).
922
+ # @return [Wx::Size]
923
+ def get_scroll_button_minimum_size(dc, wnd, style) end
924
+ alias_method :scroll_button_minimum_size, :get_scroll_button_minimum_size
925
+
926
+ # Calculate the size of a panel for a given client size.
927
+ # This should increment the given size by enough to fit the panel label and other chrome.
928
+ # @see Wx::RBN::RibbonArtProvider#get_panel_client_size
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.
931
+ # @param client_size [Wx::Size] The client size.
932
+ # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
933
+ # @return [Wx::Size]
934
+ def get_panel_size(dc, wnd, client_size, client_offset) end
935
+ alias_method :panel_size, :get_panel_size
936
+
937
+ # Calculate the client size of a panel for a given overall size.
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
+ # @see Wx::RBN::RibbonArtProvider#get_panel_size
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.
942
+ # @param size [Wx::Size] The overall size to calculate client size for.
943
+ # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
944
+ # @return [Wx::Size]
945
+ def get_panel_client_size(dc, wnd, size, client_offset) end
946
+ alias_method :panel_client_size, :get_panel_client_size
947
+
948
+ # Calculate the position and size of the panel extension button.
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.
951
+ # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
952
+ # @return [Wx::Rect]
953
+ def get_panel_ext_button_area(dc, wnd, rect) end
954
+ alias_method :panel_ext_button_area, :get_panel_ext_button_area
955
+
956
+ # Calculate the size of a {Wx::RBN::RibbonGallery} control for a given client size.
957
+ # This should increment the given size by enough to fit the gallery border, buttons, and any other chrome.
958
+ # @see Wx::RBN::RibbonArtProvider#get_gallery_client_size
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.
961
+ # @param client_size [Wx::Size] The client size.
962
+ # @return [Wx::Size]
963
+ def get_gallery_size(dc, wnd, client_size) end
964
+ alias_method :gallery_size, :get_gallery_size
965
+
966
+ # Calculate the client size of a {Wx::RBN::RibbonGallery} control for a given size.
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
+ # @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.
970
+ # @param size [Wx::Size] The overall size to calculate the client size for.
971
+ # @param client_offset [Wx::Point] The position within the given size at which the returned client size begins.
972
+ # @param scroll_up_button [Wx::Rect] The rectangle within the given size which the scroll up button occupies.
973
+ # @param scroll_down_button [Wx::Rect] The rectangle within the given size which the scroll down button occupies.
974
+ # @param extension_button [Wx::Rect] The rectangle within the given size which the extension button occupies.
975
+ # @return [Wx::Size]
976
+ def get_gallery_client_size(dc, wnd, size, client_offset, scroll_up_button, scroll_down_button, extension_button) end
977
+ alias_method :gallery_client_size, :get_gallery_client_size
978
+
979
+ # Calculate the portion of a page background which needs to be redrawn when a page is resized.
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
+ # @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.
983
+ # @param page_old_size [Wx::Size] The size of the page prior to the resize (which has already been painted).
984
+ # @param page_new_size [Wx::Size] The size of the page after the resize.
985
+ # @return [Wx::Rect]
986
+ def get_page_background_redraw_area(dc, wnd, page_old_size, page_new_size) end
987
+ alias_method :page_background_redraw_area, :get_page_background_redraw_area
988
+
989
+ # Calculate the size of a button within a {Wx::RBN::RibbonButtonBar}.
990
+ # true if a size exists for the button, false otherwise.
991
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
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.
995
+ # @param label [String] The label of the button.
996
+ # @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
997
+ # @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
998
+ # @param bitmap_size_small [Wx::Size] The size of all "small" bitmaps on the button bar.
999
+ # @param button_size [Wx::Size] The size, in pixels, of the button.
1000
+ # @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
1001
+ # @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
1002
+ # @return [true,false]
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
+ alias_method :button_bar_button_size, :get_button_bar_button_size
1005
+
1006
+ # Gets the width of the string if it is used as a {Wx::RBN::RibbonButtonBar} button label.
1007
+ # Width of the given label text in pixel.
1008
+ #
1009
+ # This function only works with single-line strings.
1010
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
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.
1014
+ # @return [Integer]
1015
+ def get_button_bar_button_text_width(dc, label, kind, size) end
1016
+ alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
1017
+
1018
+ # Calculate the size of a minimised ribbon panel.
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.
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
+ # @return [Array(Wx::Size,Wx::Direction)]
1023
+ def get_minimised_panel_minimum_size(dc, wnd, desired_bitmap_size) end
1024
+ alias_method :minimised_panel_minimum_size, :get_minimised_panel_minimum_size
1025
+
1026
+ # Calculate the size of a tool within a {Wx::RBN::RibbonToolBar}.
1027
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1028
+ # @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
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.
1033
+ # @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
1034
+ # @return [Wx::Size]
1035
+ def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
1036
+ alias_method :tool_size, :get_tool_size
1037
+
1038
+ # Calculate the position and size of the ribbon's toggle button.
1039
+ # @param rect [Wx::Rect] The ribbon bar rectangle from which calculate toggle button rectangle.
1040
+ # @return [Wx::Rect]
1041
+ def get_bar_toggle_button_area(rect) end
1042
+ alias_method :bar_toggle_button_area, :get_bar_toggle_button_area
1043
+
1044
+ # Calculate the position and size of the ribbon's help button.
1045
+ # @param rect [Wx::Rect] The ribbon bar rectangle from which calculate help button rectangle.
1046
+ # @return [Wx::Rect]
1047
+ def get_ribbon_help_button_area(rect) end
1048
+ alias_method :ribbon_help_button_area, :get_ribbon_help_button_area
1049
+
1050
+ end # RibbonArtProvider
1051
+
1052
+ #
1053
+ #
1054
+ #
1055
+ class RibbonPageTabInfo < ::Object
1056
+
1057
+ end # RibbonPageTabInfo
1058
+
1059
+ #
1060
+ #
1061
+ #
1062
+ class RibbonMSWArtProvider < RibbonArtProvider
1063
+
1064
+ # @param set_colour_scheme [true,false]
1065
+ # @return [RibbonMSWArtProvider]
1066
+ def initialize(set_colour_scheme=true) end
1067
+
1068
+ # Create a new art provider which is a clone of this one.
1069
+ # @return [Wx::RBN::RibbonArtProvider]
1070
+ def clone; end
1071
+
1072
+ # Set the style flags.
1073
+ # Normally called automatically by {Wx::RBN::RibbonBar#set_art_provider} with the ribbon bar's style flags, so that the art provider has the same flags as the bar which it is serving.
1074
+ # @param flags [Integer]
1075
+ # @return [void]
1076
+ def set_flags(flags) end
1077
+ alias_method :flags=, :set_flags
1078
+
1079
+ # Get the previously set style flags.
1080
+ # @return [Integer]
1081
+ def get_flags; end
1082
+ alias_method :flags, :get_flags
1083
+
1084
+ # Get the value of a certain integer setting.
1085
+ # id can be one of the size values of {Wx::RBN::RibbonArtSetting}.
1086
+ # @param id [Integer]
1087
+ # @return [Integer]
1088
+ def get_metric(id) end
1089
+ alias_method :metric, :get_metric
1090
+
1091
+ # Set the value of a certain integer setting to the value new_val.
1092
+ # id can be one of the size values of {Wx::RBN::RibbonArtSetting}.
1093
+ # @param id [Integer]
1094
+ # @param new_val [Integer]
1095
+ # @return [void]
1096
+ def set_metric(id, new_val) end
1097
+
1098
+ # Set the value of a certain font setting to the value font.
1099
+ # id can be one of the font values of {Wx::RBN::RibbonArtSetting}.
1100
+ # @param id [Integer]
1101
+ # @param font [Wx::Font,Wx::FontInfo]
1102
+ # @return [void]
1103
+ def set_font(id, font) end
1104
+
1105
+ # Get the value of a certain font setting.
1106
+ # id can be one of the font values of {Wx::RBN::RibbonArtSetting}.
1107
+ # @param id [Integer]
1108
+ # @return [Wx::Font]
1109
+ def get_font(id) end
1110
+ alias_method :font, :get_font
1111
+
1112
+ # Get the value of a certain colour setting.
1113
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}.
1114
+ # @param id [Integer]
1115
+ # @return [Wx::Colour]
1116
+ def get_colour(id) end
1117
+ alias_method :colour, :get_colour
1118
+
1119
+ # Set the value of a certain colour setting to the value colour.
1120
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}, though not all colour settings will have an effect on every art provider.
1121
+ # @see Wx::RBN::RibbonMSWArtProvider#set_colour_scheme
1122
+ # @param id [Integer]
1123
+ # @param colour [Wx::Colour,String,Symbol]
1124
+ # @return [void]
1125
+ def set_colour(id, colour) end
1126
+
1127
+ # Get the current colour scheme.
1128
+ # Returns three colours such that if {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme} were called with them, the colour scheme would be restored to what it was when {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme} was last called. In practice, this usually means that the returned values are the three colours given in the last call to {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme}, however if {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme} performs an idempotent operation upon the colours it is given (like clamping a component of the colour), then the returned values may not be the three colours given in the last call to {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme}. If {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme} has not been called, then the returned values should result in a colour scheme similar to, if not identical to, the default colours of the art provider. Note that if {Wx::RBN::RibbonMSWArtProvider#set_colour} is called, then {Wx::RBN::RibbonMSWArtProvider#get_colour_scheme} does not try and return a colour scheme similar to colours being used - it's return values are dependent upon the last values given to {Wx::RBN::RibbonMSWArtProvider#set_colour_scheme}, as described above.
1129
+ # @param primary [Wx::Colour] Pointer to a location to store the primary colour, or NULL.
1130
+ # @param secondary [Wx::Colour] Pointer to a location to store the secondary colour, or NULL.
1131
+ # @param tertiary [Wx::Colour] Pointer to a location to store the tertiary colour, or NULL.
1132
+ # @return [void]
1133
+ def get_colour_scheme(primary, secondary, tertiary) end
1134
+ alias_method :colour_scheme, :get_colour_scheme
1135
+
1136
+ # Set all applicable colour settings from a few base colours.
1137
+ # Uses any or all of the three given colours to create a colour scheme, and then sets all colour settings which are relevant to the art provider using that scheme. Note that some art providers may not use the tertiary colour for anything, and some may not use the secondary colour either.
1138
+ # @see Wx::RBN::RibbonMSWArtProvider#set_colour
1139
+ #
1140
+ # @see Wx::RBN::RibbonMSWArtProvider#get_colour_scheme
1141
+ # @param primary [Wx::Colour,String,Symbol]
1142
+ # @param secondary [Wx::Colour,String,Symbol]
1143
+ # @param tertiary [Wx::Colour,String,Symbol]
1144
+ # @return [void]
1145
+ def set_colour_scheme(primary, secondary, tertiary) end
1146
+
1147
+ # Calculate the height (in pixels) of the tab region of a ribbon bar.
1148
+ # Note that as the tab region can contain scroll buttons, the height should be greater than or equal to the minimum height for a tab scroll button.
1149
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1150
+ # @param wnd [Wx::Window] The window onto which the tabs will eventually be drawn.
1151
+ # @param pages [Array<Wx::RBN::RibbonPageTabInfo>] The tabs which will acquire the returned height.
1152
+ # @return [Integer]
1153
+ def get_tab_ctrl_height(dc, wnd, pages) end
1154
+ alias_method :tab_ctrl_height, :get_tab_ctrl_height
1155
+
1156
+ # Draw the background of the tab region of a ribbon bar.
1157
+ # @param dc [Wx::DC] The device context to draw onto.
1158
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1159
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1160
+ # @return [void]
1161
+ def draw_tab_ctrl_background(dc, wnd, rect) end
1162
+
1163
+ # Draw a single tab in the tab region of a ribbon bar.
1164
+ # @param dc [Wx::DC] The device context to draw onto.
1165
+ # @param wnd [Wx::Window] The window which is being drawn onto (not the {Wx::RBN::RibbonPage} associated with the tab being drawn).
1166
+ # @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}.
1167
+ # @return [void]
1168
+ def draw_tab(dc, wnd, tab) end
1169
+
1170
+ # Draw a separator between two tabs in a ribbon bar.
1171
+ # @param dc [Wx::DC] The device context to draw onto.
1172
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1173
+ # @param rect [Wx::Rect] The rectangle within which to draw, which will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tab_ctrl_background}.
1174
+ # @param visibility [Float] The opacity with which to draw the separator. Values are in the range [0, 1], with 0 being totally transparent, and 1 being totally opaque.
1175
+ # @return [void]
1176
+ def draw_tab_separator(dc, wnd, rect, visibility) end
1177
+
1178
+ # Draw the background of a ribbon page.
1179
+ #
1180
+ # @see Wx::RBN::RibbonMSWArtProvider#get_page_background_redraw_area
1181
+ # @param dc [Wx::DC] The device context to draw onto.
1182
+ # @param wnd [Wx::Window] The window which is being drawn onto (which is commonly the {Wx::RBN::RibbonPage} whose background is being drawn, but doesn't have to be).
1183
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1184
+ # @return [void]
1185
+ def draw_page_background(dc, wnd, rect) end
1186
+
1187
+ # Draw a ribbon-style scroll button.
1188
+ # @param dc [Wx::DC] The device context to draw onto.
1189
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1190
+ # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be at least the size returned by {Wx::RBN::RibbonMSWArtProvider#get_scroll_button_minimum_size} for a scroll button with the same style. For tab scroll buttons, this rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tab_ctrl_background}, but this is not guaranteed for other types of button (for example, page scroll buttons will not be painted on an area previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_page_background}).
1191
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, a for flag, and one or more states.
1192
+ # @return [void]
1193
+ def draw_scroll_button(dc, wnd, rect, style) end
1194
+
1195
+ # Draw the background and chrome for a ribbon panel.
1196
+ # This should draw the border, background, label, and any other items of a panel which are outside the client area of a panel.
1197
+ # 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.
1198
+ # @param dc [Wx::DC] The device context to draw onto.
1199
+ # @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.
1200
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1201
+ # @return [void]
1202
+ def draw_panel_background(dc, wnd, rect) end
1203
+
1204
+ # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
1205
+ # This should draw the border, background, scroll buttons, extension button, and any other UI elements which are not attached to a specific gallery item.
1206
+ # @param dc [Wx::DC] The device context to draw onto.
1207
+ # @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}.
1208
+ # @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.
1209
+ # @return [void]
1210
+ def draw_gallery_background(dc, wnd, rect) end
1211
+
1212
+ # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
1213
+ # 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.
1214
+ # @param dc [Wx::DC] The device context to draw onto.
1215
+ # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1216
+ # @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}.
1217
+ # @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.
1218
+ # @return [void]
1219
+ def draw_gallery_item_background(dc, wnd, rect, item) end
1220
+
1221
+ # Draw a minimised ribbon panel.
1222
+ # @param dc [Wx::DC] The device context to draw onto.
1223
+ # @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.
1224
+ # @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}.
1225
+ # @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}.
1226
+ # @return [void]
1227
+ def draw_minimised_panel(dc, wnd, rect, bitmap) end
1228
+
1229
+ # Draw the background for a {Wx::RBN::RibbonButtonBar} control.
1230
+ # @param dc [Wx::DC] The device context to draw onto.
1231
+ # @param wnd [Wx::Window] The window which is being drawn onto (which will typically be the button bar itself, though this is not guaranteed).
1232
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1233
+ # @return [void]
1234
+ def draw_button_bar_background(dc, wnd, rect) end
1235
+
1236
+ # Draw a single button for a {Wx::RBN::RibbonButtonBar} control.
1237
+ # @param dc [Wx::DC] The device context to draw onto.
1238
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1239
+ # @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}.
1240
+ # @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1241
+ # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
1242
+ # @param label [String] The label of the button.
1243
+ # @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).
1244
+ # @param bitmap_small [Wx::Bitmap] The small bitmap of the button (or the small disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
1245
+ # @return [void]
1246
+ def draw_button_bar_button(dc, wnd, rect, kind, state, label, bitmap_large, bitmap_small) end
1247
+
1248
+ # Draw the background for a {Wx::RBN::RibbonToolBar} control.
1249
+ # @param dc [Wx::DC] The device context to draw onto.
1250
+ # @param wnd [Wx::Window] The which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
1251
+ # @param rect [Wx::Rect] The rectangle within which to draw. Some of this rectangle will later be drawn over using {Wx::RBN::RibbonMSWArtProvider#draw_tool_group_background} and {Wx::RBN::RibbonMSWArtProvider#draw_tool}, but not all of it will (unless there is only a single group of tools).
1252
+ # @return [void]
1253
+ def draw_tool_bar_background(dc, wnd, rect) end
1254
+
1255
+ # Draw the background for a group of tools on a {Wx::RBN::RibbonToolBar} control.
1256
+ # @param dc [Wx::DC] The device context to draw onto.
1257
+ # @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.
1258
+ # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is a union of the individual tools' rectangles. As there are no gaps between tools, this rectangle will be painted over exactly once by calls to {Wx::RBN::RibbonMSWArtProvider#draw_tool}. The group background could therefore be painted by {Wx::RBN::RibbonMSWArtProvider#draw_tool}, though it can be conceptually easier and more efficient to draw it all at once here. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tool_bar_background}.
1259
+ # @return [void]
1260
+ def draw_tool_group_background(dc, wnd, rect) end
1261
+
1262
+ # Draw a single tool (for a {Wx::RBN::RibbonToolBar} control).
1263
+ # @param dc [Wx::DC] The device context to draw onto.
1264
+ # @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.
1265
+ # @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}.
1266
+ # @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.
1267
+ # @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1268
+ # @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
1269
+ # @return [void]
1270
+ def draw_tool(dc, wnd, rect, bitmap, kind, state) end
1271
+
1272
+ # Draw toggle button on {Wx::RBN::RibbonBar}.
1273
+ # This should draw a small toggle button at top right corner of ribbon bar.
1274
+ # @param dc [Wx::DC] The device context to draw onto.
1275
+ # @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.
1276
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1277
+ # @param mode [RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
1278
+ # @return [void]
1279
+ def draw_toggle_button(dc, wnd, rect, mode) end
1280
+
1281
+ # Draw help button on {Wx::RBN::RibbonBar}.
1282
+ # This should draw a help button at top right corner of ribbon bar.
1283
+ # @param dc [Wx::DC] The device context to draw onto.
1284
+ # @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.
1285
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1286
+ # @return [void]
1287
+ def draw_help_button(dc, wnd, rect) end
1288
+
1289
+ # Calculate the ideal and minimum width (in pixels) of a tab in a ribbon bar.
1290
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1291
+ # @param wnd [Wx::Window] The window onto which the tab will eventually be drawn.
1292
+ # @param label [String] The tab's label (or {Wx::EmptyString} if it has none).
1293
+ # @param bitmap [Wx::Bitmap] The tab's icon (or {Wx::NULL_BITMAP} if it has none).
1294
+ # @return [Array(Integer,Integer,Integer,Integer)]
1295
+ def get_bar_tab_width(dc, wnd, label, bitmap) end
1296
+ alias_method :bar_tab_width, :get_bar_tab_width
1297
+
1298
+ # Calculate the minimum size (in pixels) of a scroll button.
1299
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1300
+ # @param wnd [Wx::Window] The window onto which the scroll button will eventually be drawn.
1301
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, and a for flag (state flags may be given too, but should be ignored, as a button should retain a constant size, regardless of its state).
1302
+ # @return [Wx::Size]
1303
+ def get_scroll_button_minimum_size(dc, wnd, style) end
1304
+ alias_method :scroll_button_minimum_size, :get_scroll_button_minimum_size
1305
+
1306
+ # Calculate the size of a panel for a given client size.
1307
+ # This should increment the given size by enough to fit the panel label and other chrome.
1308
+ # @see Wx::RBN::RibbonMSWArtProvider#get_panel_client_size
1309
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1310
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1311
+ # @param client_size [Wx::Size] The client size.
1312
+ # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
1313
+ # @return [Wx::Size]
1314
+ def get_panel_size(dc, wnd, client_size, client_offset) end
1315
+ alias_method :panel_size, :get_panel_size
1316
+
1317
+ # Calculate the client size of a panel for a given overall size.
1318
+ # 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.
1319
+ # @see Wx::RBN::RibbonMSWArtProvider#get_panel_size
1320
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1321
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1322
+ # @param size [Wx::Size] The overall size to calculate client size for.
1323
+ # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
1324
+ # @return [Wx::Size]
1325
+ def get_panel_client_size(dc, wnd, size, client_offset) end
1326
+ alias_method :panel_client_size, :get_panel_client_size
1327
+
1328
+ # Calculate the position and size of the panel extension button.
1329
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1330
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1331
+ # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
1332
+ # @return [Wx::Rect]
1333
+ def get_panel_ext_button_area(dc, wnd, rect) end
1334
+ alias_method :panel_ext_button_area, :get_panel_ext_button_area
1335
+
1336
+ # Calculate the size of a {Wx::RBN::RibbonGallery} control for a given client size.
1337
+ # This should increment the given size by enough to fit the gallery border, buttons, and any other chrome.
1338
+ # @see Wx::RBN::RibbonMSWArtProvider#get_gallery_client_size
1339
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1340
+ # @param wnd [Wx::RibbonGallery] The gallery in question.
1341
+ # @param client_size [Wx::Size] The client size.
1342
+ # @return [Wx::Size]
1343
+ def get_gallery_size(dc, wnd, client_size) end
1344
+ alias_method :gallery_size, :get_gallery_size
1345
+
1346
+ # Calculate the client size of a {Wx::RBN::RibbonGallery} control for a given size.
1347
+ # 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.
1348
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1349
+ # @param wnd [Wx::RibbonGallery] The gallery in question.
1350
+ # @param size [Wx::Size] The overall size to calculate the client size for.
1351
+ # @param client_offset [Wx::Point] The position within the given size at which the returned client size begins.
1352
+ # @param scroll_up_button [Wx::Rect] The rectangle within the given size which the scroll up button occupies.
1353
+ # @param scroll_down_button [Wx::Rect] The rectangle within the given size which the scroll down button occupies.
1354
+ # @param extension_button [Wx::Rect] The rectangle within the given size which the extension button occupies.
1355
+ # @return [Wx::Size]
1356
+ def get_gallery_client_size(dc, wnd, size, client_offset, scroll_up_button, scroll_down_button, extension_button) end
1357
+ alias_method :gallery_client_size, :get_gallery_client_size
1358
+
1359
+ # Calculate the portion of a page background which needs to be redrawn when a page is resized.
1360
+ # 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.
1361
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1362
+ # @param wnd [Wx::RibbonPage] The page which is being resized.
1363
+ # @param page_old_size [Wx::Size] The size of the page prior to the resize (which has already been painted).
1364
+ # @param page_new_size [Wx::Size] The size of the page after the resize.
1365
+ # @return [Wx::Rect]
1366
+ def get_page_background_redraw_area(dc, wnd, page_old_size, page_new_size) end
1367
+ alias_method :page_background_redraw_area, :get_page_background_redraw_area
1368
+
1369
+ # Calculate the size of a button within a {Wx::RBN::RibbonButtonBar}.
1370
+ # true if a size exists for the button, false otherwise.
1371
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1372
+ # @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).
1373
+ # @param kind [RibbonButtonKind] The kind of button.
1374
+ # @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.
1375
+ # @param label [String] The label of the button.
1376
+ # @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
1377
+ # @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
1378
+ # @param bitmap_size_small [Wx::Size] The size of all "small" bitmaps on the button bar.
1379
+ # @param button_size [Wx::Size] The size, in pixels, of the button.
1380
+ # @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
1381
+ # @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
1382
+ # @return [true,false]
1383
+ 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
1384
+ alias_method :button_bar_button_size, :get_button_bar_button_size
1385
+
1386
+ # Gets the width of the string if it is used as a {Wx::RBN::RibbonButtonBar} button label.
1387
+ # Width of the given label text in pixel.
1388
+ #
1389
+ # This function only works with single-line strings.
1390
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1391
+ # @param label [String] The string whose width shall be calculated.
1392
+ # @param kind [RibbonButtonKind] The kind of button.
1393
+ # @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.
1394
+ # @return [Integer]
1395
+ def get_button_bar_button_text_width(dc, label, kind, size) end
1396
+ alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
1397
+
1398
+ # Calculate the size of a minimised ribbon panel.
1399
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1400
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question. Attributes like the panel label can be queried from this.
1401
+ # @param desired_bitmap_size [Wx::Size] Optional parameter which is filled with the size of the bitmap suitable for a minimised ribbon panel.
1402
+ # @return [Array(Wx::Size,Wx::Direction)]
1403
+ def get_minimised_panel_minimum_size(dc, wnd, desired_bitmap_size) end
1404
+ alias_method :minimised_panel_minimum_size, :get_minimised_panel_minimum_size
1405
+
1406
+ # Calculate the size of a tool within a {Wx::RBN::RibbonToolBar}.
1407
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1408
+ # @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
1409
+ # @param bitmap_size [Wx::Size] The size of the tool's foreground bitmap.
1410
+ # @param kind [RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
1411
+ # @param is_first [true,false] true if the tool is the first within its group. false otherwise.
1412
+ # @param is_last [true,false] true if the tool is the last within its group. false otherwise.
1413
+ # @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
1414
+ # @return [Wx::Size]
1415
+ def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
1416
+ alias_method :tool_size, :get_tool_size
1417
+
1418
+ # Calculate the position and size of the ribbon's toggle button.
1419
+ # @param rect [Wx::Rect] The ribbon bar rectangle from which calculate toggle button rectangle.
1420
+ # @return [Wx::Rect]
1421
+ def get_bar_toggle_button_area(rect) end
1422
+ alias_method :bar_toggle_button_area, :get_bar_toggle_button_area
1423
+
1424
+ # Calculate the position and size of the ribbon's help button.
1425
+ # @param rect [Wx::Rect] The ribbon bar rectangle from which calculate help button rectangle.
1426
+ # @return [Wx::Rect]
1427
+ def get_ribbon_help_button_area(rect) end
1428
+ alias_method :ribbon_help_button_area, :get_ribbon_help_button_area
1429
+
1430
+ end # RibbonMSWArtProvider
1431
+
1432
+ #
1433
+ #
1434
+ #
1435
+ class RibbonAUIArtProvider < RibbonMSWArtProvider
1436
+
1437
+ # @return [RibbonAUIArtProvider]
1438
+ def initialize; end
1439
+
1440
+ # Create a new art provider which is a clone of this one.
1441
+ # @return [Wx::RBN::RibbonArtProvider]
1442
+ def clone; end
1443
+
1444
+ # Get the value of a certain colour setting.
1445
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}.
1446
+ # @param id [Integer]
1447
+ # @return [Wx::Colour]
1448
+ def get_colour(id) end
1449
+ alias_method :colour, :get_colour
1450
+
1451
+ # Set the value of a certain colour setting to the value colour.
1452
+ # id can be one of the colour values of {Wx::RBN::RibbonArtSetting}, though not all colour settings will have an effect on every art provider.
1453
+ # @see Wx::RBN::RibbonAUIArtProvider#set_colour_scheme
1454
+ # @param id [Integer]
1455
+ # @param colour [Wx::Colour,String,Symbol]
1456
+ # @return [void]
1457
+ def set_colour(id, colour) end
1458
+
1459
+ # Set all applicable colour settings from a few base colours.
1460
+ # Uses any or all of the three given colours to create a colour scheme, and then sets all colour settings which are relevant to the art provider using that scheme. Note that some art providers may not use the tertiary colour for anything, and some may not use the secondary colour either.
1461
+ # @see Wx::RBN::RibbonAUIArtProvider#set_colour
1462
+ #
1463
+ # @see Wx::RBN::RibbonAUIArtProvider#get_colour_scheme
1464
+ # @param primary [Wx::Colour,String,Symbol]
1465
+ # @param secondary [Wx::Colour,String,Symbol]
1466
+ # @param tertiary [Wx::Colour,String,Symbol]
1467
+ # @return [void]
1468
+ def set_colour_scheme(primary, secondary, tertiary) end
1469
+
1470
+ # Set the value of a certain font setting to the value font.
1471
+ # id can be one of the font values of {Wx::RBN::RibbonArtSetting}.
1472
+ # @param id [Integer]
1473
+ # @param font [Wx::Font,Wx::FontInfo]
1474
+ # @return [void]
1475
+ def set_font(id, font) end
1476
+
1477
+ # Calculate the minimum size (in pixels) of a scroll button.
1478
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1479
+ # @param wnd [Wx::Window] The window onto which the scroll button will eventually be drawn.
1480
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, and a for flag (state flags may be given too, but should be ignored, as a button should retain a constant size, regardless of its state).
1481
+ # @return [Wx::Size]
1482
+ def get_scroll_button_minimum_size(dc, wnd, style) end
1483
+ alias_method :scroll_button_minimum_size, :get_scroll_button_minimum_size
1484
+
1485
+ # Draw a ribbon-style scroll button.
1486
+ # @param dc [Wx::DC] The device context to draw onto.
1487
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1488
+ # @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be at least the size returned by {Wx::RBN::RibbonAUIArtProvider#get_scroll_button_minimum_size} for a scroll button with the same style. For tab scroll buttons, this rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tab_ctrl_background}, but this is not guaranteed for other types of button (for example, page scroll buttons will not be painted on an area previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_page_background}).
1489
+ # @param style [Integer] A combination of flags from {Wx::RBN::RibbonScrollButtonStyle}, including a direction, a for flag, and one or more states.
1490
+ # @return [void]
1491
+ def draw_scroll_button(dc, wnd, rect, style) end
1492
+
1493
+ # Calculate the size of a panel for a given client size.
1494
+ # This should increment the given size by enough to fit the panel label and other chrome.
1495
+ # @see Wx::RBN::RibbonAUIArtProvider#get_panel_client_size
1496
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1497
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1498
+ # @param client_size [Wx::Size] The client size.
1499
+ # @param client_offset [Wx::Point] The offset where the client rectangle begins within the panel (may be NULL).
1500
+ # @return [Wx::Size]
1501
+ def get_panel_size(dc, wnd, client_size, client_offset) end
1502
+ alias_method :panel_size, :get_panel_size
1503
+
1504
+ # Calculate the client size of a panel for a given overall size.
1505
+ # 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.
1506
+ # @see Wx::RBN::RibbonAUIArtProvider#get_panel_size
1507
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1508
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1509
+ # @param size [Wx::Size] The overall size to calculate client size for.
1510
+ # @param client_offset [Wx::Point] The offset where the returned client size begins within the given size (may be NULL).
1511
+ # @return [Wx::Size]
1512
+ def get_panel_client_size(dc, wnd, size, client_offset) end
1513
+ alias_method :panel_client_size, :get_panel_client_size
1514
+
1515
+ # Calculate the position and size of the panel extension button.
1516
+ # @param dc [Wx::DC] A device context to use if one is required for size calculations.
1517
+ # @param wnd [Wx::RibbonPanel] The ribbon panel in question.
1518
+ # @param rect [Wx::Rect] The panel rectangle from which calculate extension button rectangle.
1519
+ # @return [Wx::Rect]
1520
+ def get_panel_ext_button_area(dc, wnd, rect) end
1521
+ alias_method :panel_ext_button_area, :get_panel_ext_button_area
1522
+
1523
+ # Draw the background of the tab region of a ribbon bar.
1524
+ # @param dc [Wx::DC] The device context to draw onto.
1525
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1526
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1527
+ # @return [void]
1528
+ def draw_tab_ctrl_background(dc, wnd, rect) end
1529
+
1530
+ # Calculate the height (in pixels) of the tab region of a ribbon bar.
1531
+ # Note that as the tab region can contain scroll buttons, the height should be greater than or equal to the minimum height for a tab scroll button.
1532
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1533
+ # @param wnd [Wx::Window] The window onto which the tabs will eventually be drawn.
1534
+ # @param pages [Array<Wx::RBN::RibbonPageTabInfo>] The tabs which will acquire the returned height.
1535
+ # @return [Integer]
1536
+ def get_tab_ctrl_height(dc, wnd, pages) end
1537
+ alias_method :tab_ctrl_height, :get_tab_ctrl_height
1538
+
1539
+ # Calculate the ideal and minimum width (in pixels) of a tab in a ribbon bar.
1540
+ # @param dc [Wx::DC] A device context to use when one is required for size calculations.
1541
+ # @param wnd [Wx::Window] The window onto which the tab will eventually be drawn.
1542
+ # @param label [String] The tab's label (or {Wx::EmptyString} if it has none).
1543
+ # @param bitmap [Wx::Bitmap] The tab's icon (or {Wx::NULL_BITMAP} if it has none).
1544
+ # @return [Array(Integer,Integer,Integer,Integer)]
1545
+ def get_bar_tab_width(dc, wnd, label, bitmap) end
1546
+ alias_method :bar_tab_width, :get_bar_tab_width
1547
+
1548
+ # Draw a single tab in the tab region of a ribbon bar.
1549
+ # @param dc [Wx::DC] The device context to draw onto.
1550
+ # @param wnd [Wx::Window] The window which is being drawn onto (not the {Wx::RBN::RibbonPage} associated with the tab being drawn).
1551
+ # @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}.
1552
+ # @return [void]
1553
+ def draw_tab(dc, wnd, tab) end
1554
+
1555
+ # Draw a separator between two tabs in a ribbon bar.
1556
+ # @param dc [Wx::DC] The device context to draw onto.
1557
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1558
+ # @param rect [Wx::Rect] The rectangle within which to draw, which will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tab_ctrl_background}.
1559
+ # @param visibility [Float] The opacity with which to draw the separator. Values are in the range [0, 1], with 0 being totally transparent, and 1 being totally opaque.
1560
+ # @return [void]
1561
+ def draw_tab_separator(dc, wnd, rect, visibility) end
1562
+
1563
+ # Draw the background of a ribbon page.
1564
+ #
1565
+ # @see Wx::GetPageBackgroundRedrawArea
1566
+ # @param dc [Wx::DC] The device context to draw onto.
1567
+ # @param wnd [Wx::Window] The window which is being drawn onto (which is commonly the {Wx::RBN::RibbonPage} whose background is being drawn, but doesn't have to be).
1568
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1569
+ # @return [void]
1570
+ def draw_page_background(dc, wnd, rect) end
1571
+
1572
+ # Draw the background and chrome for a ribbon panel.
1573
+ # This should draw the border, background, label, and any other items of a panel which are outside the client area of a panel.
1574
+ # 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.
1575
+ # @param dc [Wx::DC] The device context to draw onto.
1576
+ # @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.
1577
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1578
+ # @return [void]
1579
+ def draw_panel_background(dc, wnd, rect) end
1580
+
1581
+ # Draw a minimised ribbon panel.
1582
+ # @param dc [Wx::DC] The device context to draw onto.
1583
+ # @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.
1584
+ # @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}.
1585
+ # @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}.
1586
+ # @return [void]
1587
+ def draw_minimised_panel(dc, wnd, rect, bitmap) end
1588
+
1589
+ # Draw the background and chrome for a {Wx::RBN::RibbonGallery} control.
1590
+ # This should draw the border, background, scroll buttons, extension button, and any other UI elements which are not attached to a specific gallery item.
1591
+ # @param dc [Wx::DC] The device context to draw onto.
1592
+ # @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}.
1593
+ # @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.
1594
+ # @return [void]
1595
+ def draw_gallery_background(dc, wnd, rect) end
1596
+
1597
+ # Draw the background of a single item in a {Wx::RBN::RibbonGallery} control.
1598
+ # 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.
1599
+ # @param dc [Wx::DC] The device context to draw onto.
1600
+ # @param wnd [Wx::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
1601
+ # @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}.
1602
+ # @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.
1603
+ # @return [void]
1604
+ def draw_gallery_item_background(dc, wnd, rect, item) end
1605
+
1606
+ # Draw the background for a {Wx::RBN::RibbonButtonBar} control.
1607
+ # @param dc [Wx::DC] The device context to draw onto.
1608
+ # @param wnd [Wx::Window] The window which is being drawn onto (which will typically be the button bar itself, though this is not guaranteed).
1609
+ # @param rect [Wx::Rect] The rectangle within which to draw.
1610
+ # @return [void]
1611
+ def draw_button_bar_background(dc, wnd, rect) end
1612
+
1613
+ # Draw a single button for a {Wx::RBN::RibbonButtonBar} control.
1614
+ # @param dc [Wx::DC] The device context to draw onto.
1615
+ # @param wnd [Wx::Window] The window which is being drawn onto.
1616
+ # @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}.
1617
+ # @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
1618
+ # @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
1619
+ # @param label [String] The label of the button.
1620
+ # @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).
1621
+ # @param bitmap_small [Wx::Bitmap] The small bitmap of the button (or the small disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
1622
+ # @return [void]
1623
+ def draw_button_bar_button(dc, wnd, rect, kind, state, label, bitmap_large, bitmap_small) end
1624
+
1625
+ # Draw the background for a {Wx::RBN::RibbonToolBar} control.
1626
+ # @param dc [Wx::DC] The device context to draw onto.
1627
+ # @param wnd [Wx::Window] The which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
1628
+ # @param rect [Wx::Rect] The rectangle within which to draw. Some of this rectangle will later be drawn over using {Wx::RBN::RibbonAUIArtProvider#draw_tool_group_background} and {Wx::RBN::RibbonAUIArtProvider#draw_tool}, but not all of it will (unless there is only a single group of tools).
1629
+ # @return [void]
1630
+ def draw_tool_bar_background(dc, wnd, rect) end
1631
+
1632
+ # Draw the background for a group of tools on a {Wx::RBN::RibbonToolBar} control.
1633
+ # @param dc [Wx::DC] The device context to draw onto.
1634
+ # @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.
1635
+ # @param rect [Wx::Rect] The rectangle within which to draw. This rectangle is a union of the individual tools' rectangles. As there are no gaps between tools, this rectangle will be painted over exactly once by calls to {Wx::RBN::RibbonAUIArtProvider#draw_tool}. The group background could therefore be painted by {Wx::RBN::RibbonAUIArtProvider#draw_tool}, though it can be conceptually easier and more efficient to draw it all at once here. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tool_bar_background}.
1636
+ # @return [void]
1637
+ def draw_tool_group_background(dc, wnd, rect) end
1638
+
1639
+ # Draw a single tool (for a {Wx::RBN::RibbonToolBar} control).
1640
+ # @param dc [Wx::DC] The device context to draw onto.
1641
+ # @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.
1642
+ # @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}.
1643
+ # @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.
1644
+ # @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
1645
+ # @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
1646
+ # @return [void]
1647
+ def draw_tool(dc, wnd, rect, bitmap, kind, state) end
1648
+
1649
+ end # RibbonAUIArtProvider
1650
+
1651
+
1652
+ end