wxruby3 0.9.0.pre.beta.1-x64-mingw-ucrt-3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (822) 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 +138 -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/lib/wx/accessors.rb +63 -0
  11. data/lib/wx/aui/auimanager.rb +17 -0
  12. data/lib/wx/aui/auinotebook.rb +9 -0
  13. data/lib/wx/aui/events/evt_list.rb +143 -0
  14. data/lib/wx/aui/require.rb +9 -0
  15. data/lib/wx/aui.rb +14 -0
  16. data/lib/wx/core/acceleratortable.rb +28 -0
  17. data/lib/wx/core/animation.rb +18 -0
  18. data/lib/wx/core/app.rb +89 -0
  19. data/lib/wx/core/artprovider.rb +31 -0
  20. data/lib/wx/core/bitmap.rb +59 -0
  21. data/lib/wx/core/busycursor.rb +12 -0
  22. data/lib/wx/core/choice.rb +4 -0
  23. data/lib/wx/core/choicedlg.rb +54 -0
  24. data/lib/wx/core/clientdc.rb +13 -0
  25. data/lib/wx/core/clipboard.rb +56 -0
  26. data/lib/wx/core/collapsible_pane.rb +12 -0
  27. data/lib/wx/core/colour.rb +34 -0
  28. data/lib/wx/core/combobox.rb +4 -0
  29. data/lib/wx/core/controlwithitems.rb +10 -0
  30. data/lib/wx/core/data_object.rb +10 -0
  31. data/lib/wx/core/dataformat.rb +26 -0
  32. data/lib/wx/core/dc.rb +68 -0
  33. data/lib/wx/core/dialog.rb +50 -0
  34. data/lib/wx/core/event.rb +16 -0
  35. data/lib/wx/core/events/evt_list.rb +1378 -0
  36. data/lib/wx/core/evthandler.rb +240 -0
  37. data/lib/wx/core/ext.rb +58 -0
  38. data/lib/wx/core/font/encoding.rb +113 -0
  39. data/lib/wx/core/font.rb +22 -0
  40. data/lib/wx/core/functions.rb +44 -0
  41. data/lib/wx/core/gauge.rb +12 -0
  42. data/lib/wx/core/genericdirctrl.rb +36 -0
  43. data/lib/wx/core/hboxsizer.rb +6 -0
  44. data/lib/wx/core/helpcontroller.rb +5 -0
  45. data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
  46. data/lib/wx/core/helpprovider.rb +15 -0
  47. data/lib/wx/core/icon.rb +40 -0
  48. data/lib/wx/core/image.rb +68 -0
  49. data/lib/wx/core/imagelist.rb +3 -0
  50. data/lib/wx/core/listbox.rb +4 -0
  51. data/lib/wx/core/listctrl.rb +33 -0
  52. data/lib/wx/core/locale.rb +73 -0
  53. data/lib/wx/core/log.rb +20 -0
  54. data/lib/wx/core/menu.rb +78 -0
  55. data/lib/wx/core/menu_bar.rb +20 -0
  56. data/lib/wx/core/menuitem.rb +7 -0
  57. data/lib/wx/core/notebook.rb +9 -0
  58. data/lib/wx/core/object.rb +14 -0
  59. data/lib/wx/core/pen_info.rb +11 -0
  60. data/lib/wx/core/platform_info.rb +13 -0
  61. data/lib/wx/core/point.rb +92 -0
  62. data/lib/wx/core/real_point.rb +92 -0
  63. data/lib/wx/core/rect.rb +57 -0
  64. data/lib/wx/core/simplehelpprovider.rb +38 -0
  65. data/lib/wx/core/size.rb +86 -0
  66. data/lib/wx/core/sizer.rb +43 -0
  67. data/lib/wx/core/splash_screen.rb +44 -0
  68. data/lib/wx/core/textctrl.rb +8 -0
  69. data/lib/wx/core/timer.rb +105 -0
  70. data/lib/wx/core/toolbar.rb +37 -0
  71. data/lib/wx/core/toolbartool.rb +4 -0
  72. data/lib/wx/core/treectrl.rb +46 -0
  73. data/lib/wx/core/validator.rb +8 -0
  74. data/lib/wx/core/variant.rb +62 -0
  75. data/lib/wx/core/vboxsizer.rb +6 -0
  76. data/lib/wx/core/window.rb +95 -0
  77. data/lib/wx/core/window_update_locker.rb +12 -0
  78. data/lib/wx/core/xmlresource.rb +56 -0
  79. data/lib/wx/core.rb +61 -0
  80. data/lib/wx/doc/aui/auimanager.rb +12 -0
  81. data/lib/wx/doc/aui/auinotebook.rb +9 -0
  82. data/lib/wx/doc/colour_dialog.rb +15 -0
  83. data/lib/wx/doc/dc.rb +49 -0
  84. data/lib/wx/doc/enum.rb +66 -0
  85. data/lib/wx/doc/evthandler.rb +84 -0
  86. data/lib/wx/doc/extra/00_starting.md +154 -0
  87. data/lib/wx/doc/extra/01_packages.md +179 -0
  88. data/lib/wx/doc/extra/02_lifecycles.md +116 -0
  89. data/lib/wx/doc/extra/03_dialogs.md +57 -0
  90. data/lib/wx/doc/extra/04_enums.md +143 -0
  91. data/lib/wx/doc/extra/05_event-handling.md +166 -0
  92. data/lib/wx/doc/extra/06_geometry.md +56 -0
  93. data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
  94. data/lib/wx/doc/extra/08_extensions.md +144 -0
  95. data/lib/wx/doc/extra/09_exceptions.md +54 -0
  96. data/lib/wx/doc/functions.rb +221 -0
  97. data/lib/wx/doc/gdi_common.rb +181 -0
  98. data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
  99. data/lib/wx/doc/gen/accelerator.rb +172 -0
  100. data/lib/wx/doc/gen/accessible.rb +817 -0
  101. data/lib/wx/doc/gen/animation.rb +253 -0
  102. data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
  103. data/lib/wx/doc/gen/any_button.rb +170 -0
  104. data/lib/wx/doc/gen/app.rb +363 -0
  105. data/lib/wx/doc/gen/art_provider.rb +497 -0
  106. data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
  107. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
  108. data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
  109. data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
  110. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
  111. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
  112. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
  113. data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
  114. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
  115. data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
  116. data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
  117. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
  118. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
  119. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
  120. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
  121. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
  122. data/lib/wx/doc/gen/aui/event_list.rb +162 -0
  123. data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
  124. data/lib/wx/doc/gen/bitmap.rb +638 -0
  125. data/lib/wx/doc/gen/bitmap_button.rb +91 -0
  126. data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
  127. data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
  128. data/lib/wx/doc/gen/box_sizer.rb +66 -0
  129. data/lib/wx/doc/gen/brush.rb +219 -0
  130. data/lib/wx/doc/gen/buffered_dc.rb +95 -0
  131. data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
  132. data/lib/wx/doc/gen/busy_info.rb +141 -0
  133. data/lib/wx/doc/gen/button.rb +133 -0
  134. data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
  135. data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
  136. data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
  137. data/lib/wx/doc/gen/calendar_event.rb +150 -0
  138. data/lib/wx/doc/gen/caret.rb +99 -0
  139. data/lib/wx/doc/gen/check_box.rb +145 -0
  140. data/lib/wx/doc/gen/check_list_box.rb +96 -0
  141. data/lib/wx/doc/gen/choice.rb +143 -0
  142. data/lib/wx/doc/gen/choicebook.rb +100 -0
  143. data/lib/wx/doc/gen/client_dc.rb +49 -0
  144. data/lib/wx/doc/gen/clipboard.rb +128 -0
  145. data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
  146. data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
  147. data/lib/wx/doc/gen/colour.rb +289 -0
  148. data/lib/wx/doc/gen/colour_data.rb +96 -0
  149. data/lib/wx/doc/gen/colour_dialog.rb +84 -0
  150. data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
  151. data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
  152. data/lib/wx/doc/gen/combo_box.rb +228 -0
  153. data/lib/wx/doc/gen/context_help_button.rb +34 -0
  154. data/lib/wx/doc/gen/control.rb +245 -0
  155. data/lib/wx/doc/gen/control_with_items.rb +339 -0
  156. data/lib/wx/doc/gen/core.rb +42 -0
  157. data/lib/wx/doc/gen/cursor.rb +127 -0
  158. data/lib/wx/doc/gen/data_format.rb +94 -0
  159. data/lib/wx/doc/gen/data_object.rb +439 -0
  160. data/lib/wx/doc/gen/date_event.rb +48 -0
  161. data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
  162. data/lib/wx/doc/gen/dc.rb +1278 -0
  163. data/lib/wx/doc/gen/defs.rb +2832 -0
  164. data/lib/wx/doc/gen/dialog.rb +426 -0
  165. data/lib/wx/doc/gen/dir_dialog.rb +134 -0
  166. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
  167. data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
  168. data/lib/wx/doc/gen/drag_drop.rb +292 -0
  169. data/lib/wx/doc/gen/drag_image.rb +123 -0
  170. data/lib/wx/doc/gen/editable_list_box.rb +89 -0
  171. data/lib/wx/doc/gen/event.rb +911 -0
  172. data/lib/wx/doc/gen/event_list.rb +1512 -0
  173. data/lib/wx/doc/gen/events.rb +2499 -0
  174. data/lib/wx/doc/gen/evt_handler.rb +224 -0
  175. data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
  176. data/lib/wx/doc/gen/file_dialog.rb +294 -0
  177. data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
  178. data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
  179. data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
  180. data/lib/wx/doc/gen/find_replace_data.rb +59 -0
  181. data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
  182. data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
  183. data/lib/wx/doc/gen/font.rb +1282 -0
  184. data/lib/wx/doc/gen/font_data.rb +132 -0
  185. data/lib/wx/doc/gen/font_dialog.rb +71 -0
  186. data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
  187. data/lib/wx/doc/gen/font_picker_event.rb +64 -0
  188. data/lib/wx/doc/gen/frame.rb +276 -0
  189. data/lib/wx/doc/gen/fs_file.rb +269 -0
  190. data/lib/wx/doc/gen/functions.rb +10 -0
  191. data/lib/wx/doc/gen/gauge.rb +127 -0
  192. data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
  193. data/lib/wx/doc/gen/gcdc.rb +61 -0
  194. data/lib/wx/doc/gen/gdi_common.rb +1108 -0
  195. data/lib/wx/doc/gen/gdi_object.rb +29 -0
  196. data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
  197. data/lib/wx/doc/gen/graphics_context.rb +764 -0
  198. data/lib/wx/doc/gen/graphics_object.rb +494 -0
  199. data/lib/wx/doc/gen/grid/event_list.rb +173 -0
  200. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
  201. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
  202. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
  203. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
  204. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
  205. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
  206. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
  207. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
  208. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
  209. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
  210. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
  211. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
  212. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
  213. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
  214. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
  215. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
  216. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
  217. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
  218. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
  219. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
  220. data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
  221. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
  222. data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
  223. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
  224. data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
  225. data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
  226. data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
  227. data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
  228. data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
  229. data/lib/wx/doc/gen/grid_sizer.rb +135 -0
  230. data/lib/wx/doc/gen/help_controller.rb +136 -0
  231. data/lib/wx/doc/gen/help_provider.rb +80 -0
  232. data/lib/wx/doc/gen/html/event_list.rb +46 -0
  233. data/lib/wx/doc/gen/html/html_cell.rb +441 -0
  234. data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
  235. data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
  236. data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
  237. data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
  238. data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
  239. data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
  240. data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
  241. data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
  242. data/lib/wx/doc/gen/html/html_printout.rb +87 -0
  243. data/lib/wx/doc/gen/html/html_window.rb +386 -0
  244. data/lib/wx/doc/gen/icon.rb +267 -0
  245. data/lib/wx/doc/gen/icon_location.rb +38 -0
  246. data/lib/wx/doc/gen/image.rb +1144 -0
  247. data/lib/wx/doc/gen/image_list.rb +181 -0
  248. data/lib/wx/doc/gen/keyboard_state.rb +124 -0
  249. data/lib/wx/doc/gen/list_box.rb +260 -0
  250. data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
  251. data/lib/wx/doc/gen/list_event.rb +177 -0
  252. data/lib/wx/doc/gen/listbook.rb +100 -0
  253. data/lib/wx/doc/gen/locale.rb +4143 -0
  254. data/lib/wx/doc/gen/log.rb +505 -0
  255. data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
  256. data/lib/wx/doc/gen/mdi_frame.rb +235 -0
  257. data/lib/wx/doc/gen/media_ctrl.rb +225 -0
  258. data/lib/wx/doc/gen/media_event.rb +109 -0
  259. data/lib/wx/doc/gen/memory_dc.rb +95 -0
  260. data/lib/wx/doc/gen/menu.rb +493 -0
  261. data/lib/wx/doc/gen/menu_bar.rb +247 -0
  262. data/lib/wx/doc/gen/menu_item.rb +333 -0
  263. data/lib/wx/doc/gen/message_dialog.rb +195 -0
  264. data/lib/wx/doc/gen/mini_frame.rb +72 -0
  265. data/lib/wx/doc/gen/mirror_dc.rb +29 -0
  266. data/lib/wx/doc/gen/mouse_state.rb +108 -0
  267. data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
  268. data/lib/wx/doc/gen/non_owned_window.rb +46 -0
  269. data/lib/wx/doc/gen/notebook.rb +220 -0
  270. data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
  271. data/lib/wx/doc/gen/object.rb +69 -0
  272. data/lib/wx/doc/gen/paint_dc.rb +34 -0
  273. data/lib/wx/doc/gen/palette.rb +90 -0
  274. data/lib/wx/doc/gen/panel.rb +96 -0
  275. data/lib/wx/doc/gen/pen.rb +484 -0
  276. data/lib/wx/doc/gen/pg/event_list.rb +102 -0
  277. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
  278. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
  279. data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
  280. data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
  281. data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
  282. data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
  283. data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
  284. data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
  285. data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
  286. data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
  287. data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
  288. data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
  289. data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
  290. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
  291. data/lib/wx/doc/gen/picker_base.rb +143 -0
  292. data/lib/wx/doc/gen/platform_info.rb +379 -0
  293. data/lib/wx/doc/gen/popup_window.rb +93 -0
  294. data/lib/wx/doc/gen/progress_dialog.rb +106 -0
  295. data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
  296. data/lib/wx/doc/gen/prt/event_list.rb +13 -0
  297. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
  298. data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
  299. data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
  300. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
  301. data/lib/wx/doc/gen/prt/print_data.rb +598 -0
  302. data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
  303. data/lib/wx/doc/gen/prt/printer.rb +428 -0
  304. data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
  305. data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
  306. data/lib/wx/doc/gen/radio_box.rb +258 -0
  307. data/lib/wx/doc/gen/radio_button.rb +128 -0
  308. data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
  309. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
  310. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
  311. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
  312. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
  313. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
  314. data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
  315. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
  316. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
  317. data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
  318. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
  319. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
  320. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
  321. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
  322. data/lib/wx/doc/gen/region.rb +299 -0
  323. data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
  324. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
  325. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
  326. data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
  327. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
  328. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
  329. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
  330. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
  331. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
  332. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
  333. data/lib/wx/doc/gen/sash_event.rb +133 -0
  334. data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
  335. data/lib/wx/doc/gen/sash_window.rb +154 -0
  336. data/lib/wx/doc/gen/screen_dc.rb +27 -0
  337. data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
  338. data/lib/wx/doc/gen/scrolled_control.rb +317 -0
  339. data/lib/wx/doc/gen/scrolled_window.rb +337 -0
  340. data/lib/wx/doc/gen/simplebook.rb +93 -0
  341. data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
  342. data/lib/wx/doc/gen/sizer.rb +847 -0
  343. data/lib/wx/doc/gen/sizer_item.rb +227 -0
  344. data/lib/wx/doc/gen/slider.rb +316 -0
  345. data/lib/wx/doc/gen/spin_button.rb +124 -0
  346. data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
  347. data/lib/wx/doc/gen/spin_event.rb +47 -0
  348. data/lib/wx/doc/gen/splash_screen.rb +83 -0
  349. data/lib/wx/doc/gen/splitter_event.rb +87 -0
  350. data/lib/wx/doc/gen/splitter_window.rb +357 -0
  351. data/lib/wx/doc/gen/static_bitmap.rb +126 -0
  352. data/lib/wx/doc/gen/static_box.rb +123 -0
  353. data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
  354. data/lib/wx/doc/gen/static_line.rb +66 -0
  355. data/lib/wx/doc/gen/static_text.rb +98 -0
  356. data/lib/wx/doc/gen/status_bar.rb +203 -0
  357. data/lib/wx/doc/gen/stc/event_list.rb +217 -0
  358. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
  359. data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
  360. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
  361. data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
  362. data/lib/wx/doc/gen/system_options.rb +109 -0
  363. data/lib/wx/doc/gen/system_settings.rb +481 -0
  364. data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
  365. data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
  366. data/lib/wx/doc/gen/text_attr.rb +645 -0
  367. data/lib/wx/doc/gen/text_ctrl.rb +841 -0
  368. data/lib/wx/doc/gen/text_entry.rb +389 -0
  369. data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
  370. data/lib/wx/doc/gen/text_validator.rb +212 -0
  371. data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
  372. data/lib/wx/doc/gen/timer.rb +103 -0
  373. data/lib/wx/doc/gen/timer_event.rb +73 -0
  374. data/lib/wx/doc/gen/tip_provider.rb +60 -0
  375. data/lib/wx/doc/gen/toggle_button.rb +84 -0
  376. data/lib/wx/doc/gen/tool_bar.rb +744 -0
  377. data/lib/wx/doc/gen/tool_tip.rb +73 -0
  378. data/lib/wx/doc/gen/toolbook.rb +103 -0
  379. data/lib/wx/doc/gen/top_level_window.rb +462 -0
  380. data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
  381. data/lib/wx/doc/gen/tree_event.rb +101 -0
  382. data/lib/wx/doc/gen/treebook.rb +154 -0
  383. data/lib/wx/doc/gen/utils.rb +257 -0
  384. data/lib/wx/doc/gen/v_list_box.rb +224 -0
  385. data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
  386. data/lib/wx/doc/gen/validator.rb +73 -0
  387. data/lib/wx/doc/gen/variant.rb +340 -0
  388. data/lib/wx/doc/gen/window.rb +2414 -0
  389. data/lib/wx/doc/gen/window_dc.rb +35 -0
  390. data/lib/wx/doc/gen/window_disabler.rb +24 -0
  391. data/lib/wx/doc/gen/with_images.rb +73 -0
  392. data/lib/wx/doc/gen/wizard.rb +197 -0
  393. data/lib/wx/doc/gen/wizard_event.rb +105 -0
  394. data/lib/wx/doc/gen/wizard_page.rb +61 -0
  395. data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
  396. data/lib/wx/doc/gen/xml_node.rb +282 -0
  397. data/lib/wx/doc/gen/xml_resource.rb +304 -0
  398. data/lib/wx/doc/grid/grid.rb +20 -0
  399. data/lib/wx/doc/help_controller.rb +14 -0
  400. data/lib/wx/doc/html/html_help_controller.rb +8 -0
  401. data/lib/wx/doc/pg/events.rb +15 -0
  402. data/lib/wx/doc/pg/pg_property.rb +8 -0
  403. data/lib/wx/doc/pg/pgeditor.rb +21 -0
  404. data/lib/wx/doc/pg/property_grid.rb +48 -0
  405. data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
  406. data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
  407. data/lib/wx/doc/prt/print_data.rb +9 -0
  408. data/lib/wx/doc/prt/print_dialog.rb +26 -0
  409. data/lib/wx/doc/prt/printer.rb +15 -0
  410. data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
  411. data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
  412. data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
  413. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
  414. data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
  415. data/lib/wx/doc/screen_dc.rb +10 -0
  416. data/lib/wx/doc/stock_objects.rb +98 -0
  417. data/lib/wx/doc/stream.rb +38 -0
  418. data/lib/wx/doc/system_settings.rb +29 -0
  419. data/lib/wx/doc/treebook.rb +9 -0
  420. data/lib/wx/doc/variant.rb +163 -0
  421. data/lib/wx/doc/xml_resource.rb +19 -0
  422. data/lib/wx/global_const.rb +84 -0
  423. data/lib/wx/grid/events/evt_list.rb +156 -0
  424. data/lib/wx/grid/grid.rb +7 -0
  425. data/lib/wx/grid/keyword_defs.rb +10 -0
  426. data/lib/wx/grid/require.rb +9 -0
  427. data/lib/wx/grid.rb +14 -0
  428. data/lib/wx/helpers.rb +65 -0
  429. data/lib/wx/html/events/evt_list.rb +37 -0
  430. data/lib/wx/html/htmlhelpcontroller.rb +6 -0
  431. data/lib/wx/html/htmlwindow.rb +19 -0
  432. data/lib/wx/html/keyword_defs.rb +22 -0
  433. data/lib/wx/html/require.rb +10 -0
  434. data/lib/wx/html.rb +15 -0
  435. data/lib/wx/keyword_ctors.rb +226 -0
  436. data/lib/wx/keyword_defs.rb +487 -0
  437. data/lib/wx/pg/events/evt_list.rb +73 -0
  438. data/lib/wx/pg/events.rb +14 -0
  439. data/lib/wx/pg/keyword_defs.rb +15 -0
  440. data/lib/wx/pg/pg_editor.rb +13 -0
  441. data/lib/wx/pg/pg_properties.rb +24 -0
  442. data/lib/wx/pg/pg_property.rb +26 -0
  443. data/lib/wx/pg/property_grid.rb +56 -0
  444. data/lib/wx/pg/property_grid_interface.rb +33 -0
  445. data/lib/wx/pg/require.rb +12 -0
  446. data/lib/wx/pg.rb +14 -0
  447. data/lib/wx/prt/keyword_defs.rb +8 -0
  448. data/lib/wx/prt/page_setup_dialog.rb +15 -0
  449. data/lib/wx/prt/previewframe.rb +13 -0
  450. data/lib/wx/prt/require.rb +8 -0
  451. data/lib/wx/prt.rb +14 -0
  452. data/lib/wx/rbn/events/evt_list.rb +102 -0
  453. data/lib/wx/rbn/events.rb +4 -0
  454. data/lib/wx/rbn/keyword_defs.rb +43 -0
  455. data/lib/wx/rbn/require.rb +12 -0
  456. data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
  457. data/lib/wx/rbn/ribbon_bar.rb +12 -0
  458. data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
  459. data/lib/wx/rbn/ribbon_control.rb +25 -0
  460. data/lib/wx/rbn/ribbon_gallery.rb +26 -0
  461. data/lib/wx/rbn/ribbon_page.rb +15 -0
  462. data/lib/wx/rbn/ribbon_panel.rb +15 -0
  463. data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
  464. data/lib/wx/rbn.rb +14 -0
  465. data/lib/wx/rtc/events/evt_list.rb +98 -0
  466. data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
  467. data/lib/wx/rtc/ext.rb +15 -0
  468. data/lib/wx/rtc/keyword_defs.rb +17 -0
  469. data/lib/wx/rtc/require.rb +8 -0
  470. data/lib/wx/rtc.rb +15 -0
  471. data/lib/wx/stc/events/evt_list.rb +178 -0
  472. data/lib/wx/stc/keyword_defs.rb +8 -0
  473. data/lib/wx/stc/require.rb +7 -0
  474. data/lib/wx/stc.rb +14 -0
  475. data/lib/wx/version.rb +3 -0
  476. data/lib/wx/wxruby/base.rb +87 -0
  477. data/lib/wx/wxruby/cmd/sampler.rb +68 -0
  478. data/lib/wx/wxruby/cmd/test.rb +27 -0
  479. data/lib/wx.rb +14 -0
  480. data/lib/wxruby_aui.so +0 -0
  481. data/lib/wxruby_core.so +0 -0
  482. data/lib/wxruby_grid.so +0 -0
  483. data/lib/wxruby_html.so +0 -0
  484. data/lib/wxruby_pg.so +0 -0
  485. data/lib/wxruby_prt.so +0 -0
  486. data/lib/wxruby_rbn.so +0 -0
  487. data/lib/wxruby_rtc.so +0 -0
  488. data/lib/wxruby_stc.so +0 -0
  489. data/rakelib/install.rb +220 -0
  490. data/rakelib/lib/config/cygwin.rb +6 -0
  491. data/rakelib/lib/config/linux.rb +78 -0
  492. data/rakelib/lib/config/macosx.rb +6 -0
  493. data/rakelib/lib/config/mingw.rb +133 -0
  494. data/rakelib/lib/config/netbsd.rb +6 -0
  495. data/rakelib/lib/config/unixish.rb +187 -0
  496. data/rakelib/lib/config.rb +673 -0
  497. data/rakelib/lib/ext/enum_chain.rb +22 -0
  498. data/rakelib/prepost.rake +91 -0
  499. data/rakelib/prepost.rb +26 -0
  500. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
  501. data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
  502. data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
  503. data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
  504. data/rakelib/yard/yard-custom-templates.rb +2 -0
  505. data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
  506. data/samples/art/wxruby-128x128.png +0 -0
  507. data/samples/art/wxruby-256x256.png +0 -0
  508. data/samples/art/wxruby-64x64.png +0 -0
  509. data/samples/art/wxruby.ico +0 -0
  510. data/samples/art/wxruby.png +0 -0
  511. data/samples/aui/aui.rb +1321 -0
  512. data/samples/aui/tn_aui.png +0 -0
  513. data/samples/bigdemo/About.rbw +39 -0
  514. data/samples/bigdemo/ColorPanel.rbw +23 -0
  515. data/samples/bigdemo/GridSimple.rbw +78 -0
  516. data/samples/bigdemo/MDIDemo.rbw +57 -0
  517. data/samples/bigdemo/PopupMenu.rbw +146 -0
  518. data/samples/bigdemo/ShapedWindow.rbw +128 -0
  519. data/samples/bigdemo/Sizers.rbw +541 -0
  520. data/samples/bigdemo/bigdemo.rb +810 -0
  521. data/samples/bigdemo/demoTemplate.rbw +33 -0
  522. data/samples/bigdemo/helpfile.htb +0 -0
  523. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  524. data/samples/bigdemo/icons/Test 015.png +0 -0
  525. data/samples/bigdemo/icons/choice.bmp +0 -0
  526. data/samples/bigdemo/icons/choice.xpm +27 -0
  527. data/samples/bigdemo/icons/combo.bmp +0 -0
  528. data/samples/bigdemo/icons/combo.xpm +27 -0
  529. data/samples/bigdemo/icons/copy.xpm +25 -0
  530. data/samples/bigdemo/icons/cut.xpm +24 -0
  531. data/samples/bigdemo/icons/gauge.bmp +0 -0
  532. data/samples/bigdemo/icons/gauge.xpm +27 -0
  533. data/samples/bigdemo/icons/help.xpm +25 -0
  534. data/samples/bigdemo/icons/list.bmp +0 -0
  535. data/samples/bigdemo/icons/list.xpm +27 -0
  536. data/samples/bigdemo/icons/mondrian.ico +0 -0
  537. data/samples/bigdemo/icons/mondrian.xpm +44 -0
  538. data/samples/bigdemo/icons/new.xpm +24 -0
  539. data/samples/bigdemo/icons/ogl.ico +0 -0
  540. data/samples/bigdemo/icons/ogl.xpm +45 -0
  541. data/samples/bigdemo/icons/open.xpm +26 -0
  542. data/samples/bigdemo/icons/paste.bmp +0 -0
  543. data/samples/bigdemo/icons/paste.xpm +38 -0
  544. data/samples/bigdemo/icons/pointy.png +0 -0
  545. data/samples/bigdemo/icons/preview.xpm +26 -0
  546. data/samples/bigdemo/icons/print.xpm +26 -0
  547. data/samples/bigdemo/icons/radio.bmp +0 -0
  548. data/samples/bigdemo/icons/radio.xpm +27 -0
  549. data/samples/bigdemo/icons/robert.xpm +415 -0
  550. data/samples/bigdemo/icons/sashtest.ico +0 -0
  551. data/samples/bigdemo/icons/save.xpm +25 -0
  552. data/samples/bigdemo/icons/smiles.bmp +0 -0
  553. data/samples/bigdemo/icons/smiles.xpm +39 -0
  554. data/samples/bigdemo/icons/smiley.ico +0 -0
  555. data/samples/bigdemo/icons/smiley.xpm +42 -0
  556. data/samples/bigdemo/icons/stattext.xpm +24 -0
  557. data/samples/bigdemo/icons/test2.bmp +0 -0
  558. data/samples/bigdemo/icons/test2.png +0 -0
  559. data/samples/bigdemo/icons/test2.xpm +79 -0
  560. data/samples/bigdemo/icons/text.bmp +0 -0
  561. data/samples/bigdemo/icons/text.xpm +27 -0
  562. data/samples/bigdemo/icons/tog1.bmp +0 -0
  563. data/samples/bigdemo/icons/tog1.xpm +38 -0
  564. data/samples/bigdemo/icons/tog2.bmp +0 -0
  565. data/samples/bigdemo/icons/tog2.xpm +38 -0
  566. data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
  567. data/samples/bigdemo/icons/wxwin.ico +0 -0
  568. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  569. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
  570. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  571. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  572. data/samples/bigdemo/run.rb +91 -0
  573. data/samples/bigdemo/tips.txt +7 -0
  574. data/samples/bigdemo/utils.rb +12 -0
  575. data/samples/bigdemo/wxArtProvider.rbw +281 -0
  576. data/samples/bigdemo/wxBitmapButton.rbw +65 -0
  577. data/samples/bigdemo/wxButton.rbw +64 -0
  578. data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
  579. data/samples/bigdemo/wxCheckBox.rbw +50 -0
  580. data/samples/bigdemo/wxCheckListBox.rbw +65 -0
  581. data/samples/bigdemo/wxChoice.rbw +47 -0
  582. data/samples/bigdemo/wxChoicebook.rbw +78 -0
  583. data/samples/bigdemo/wxColourDialog.rbw +33 -0
  584. data/samples/bigdemo/wxComboBox.rbw +77 -0
  585. data/samples/bigdemo/wxCursor.rbw +136 -0
  586. data/samples/bigdemo/wxDialog.rbw +74 -0
  587. data/samples/bigdemo/wxDirDialog.rbw +29 -0
  588. data/samples/bigdemo/wxDragImage.rbw +70 -0
  589. data/samples/bigdemo/wxFileDialog.rbw +37 -0
  590. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
  591. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
  592. data/samples/bigdemo/wxFontDialog.rbw +200 -0
  593. data/samples/bigdemo/wxFrame.rbw +53 -0
  594. data/samples/bigdemo/wxGauge.rbw +65 -0
  595. data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
  596. data/samples/bigdemo/wxGrid.rbw +66 -0
  597. data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
  598. data/samples/bigdemo/wxListBox.rbw +140 -0
  599. data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
  600. data/samples/bigdemo/wxMDIWindows.rbw +50 -0
  601. data/samples/bigdemo/wxMenu.rbw +247 -0
  602. data/samples/bigdemo/wxMessageDialog.rbw +27 -0
  603. data/samples/bigdemo/wxMiniFrame.rbw +70 -0
  604. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
  605. data/samples/bigdemo/wxNotebook.rbw +136 -0
  606. data/samples/bigdemo/wxProgressDialog.rbw +43 -0
  607. data/samples/bigdemo/wxRadioBox.rbw +72 -0
  608. data/samples/bigdemo/wxRadioButton.rbw +125 -0
  609. data/samples/bigdemo/wxSashWindow.rbw +141 -0
  610. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
  611. data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
  612. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
  613. data/samples/bigdemo/wxSlider.rbw +42 -0
  614. data/samples/bigdemo/wxSpinButton.rbw +50 -0
  615. data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
  616. data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
  617. data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
  618. data/samples/bigdemo/wxStaticText.rbw +55 -0
  619. data/samples/bigdemo/wxStatusBar.rbw +126 -0
  620. data/samples/bigdemo/wxTextCtrl.rbw +149 -0
  621. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
  622. data/samples/bigdemo/wxToggleButton.rbw +49 -0
  623. data/samples/bigdemo/wxToolBar.rbw +131 -0
  624. data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
  625. data/samples/calendar/calendar.rb +363 -0
  626. data/samples/calendar/tn_calendar.png +0 -0
  627. data/samples/caret/caret.rb +293 -0
  628. data/samples/caret/mondrian.xpm +44 -0
  629. data/samples/caret/tn_caret.png +0 -0
  630. data/samples/controls/books.rb +183 -0
  631. data/samples/controls/controls.rb +1143 -0
  632. data/samples/controls/get_item_sample.rb +117 -0
  633. data/samples/controls/icons/choice.xpm +27 -0
  634. data/samples/controls/icons/combo.xpm +27 -0
  635. data/samples/controls/icons/gauge.xpm +27 -0
  636. data/samples/controls/icons/list.xpm +27 -0
  637. data/samples/controls/icons/radio.xpm +27 -0
  638. data/samples/controls/icons/stattext.xpm +24 -0
  639. data/samples/controls/icons/text.xpm +27 -0
  640. data/samples/controls/mondrian.ico +0 -0
  641. data/samples/controls/mondrian.xpm +44 -0
  642. data/samples/controls/test2.bmp +0 -0
  643. data/samples/controls/tn_books.png +0 -0
  644. data/samples/controls/tn_controls.png +0 -0
  645. data/samples/controls/tn_get_item_sample.png +0 -0
  646. data/samples/dialogs/dialogs.rb +879 -0
  647. data/samples/dialogs/tips.txt +18 -0
  648. data/samples/dialogs/tn_dialogs.png +0 -0
  649. data/samples/dialogs/tn_wizard.png +0 -0
  650. data/samples/dialogs/wizard.rb +89 -0
  651. data/samples/dragdrop/dragdrop.rb +200 -0
  652. data/samples/dragdrop/tn_dragdrop.png +0 -0
  653. data/samples/drawing/SVGlogo24.xpm +310 -0
  654. data/samples/drawing/bitmap.rb +76 -0
  655. data/samples/drawing/bitmap_image.rb +131 -0
  656. data/samples/drawing/graphics_drawing.rb +257 -0
  657. data/samples/drawing/maths_images.rb +327 -0
  658. data/samples/drawing/rmagic_bitmap_image.rb +139 -0
  659. data/samples/drawing/ruby-logo.jpg +0 -0
  660. data/samples/drawing/svgtest.rb +373 -0
  661. data/samples/drawing/tn_bitmap.png +0 -0
  662. data/samples/drawing/tn_bitmap_image.png +0 -0
  663. data/samples/drawing/tn_graphics_drawing.png +0 -0
  664. data/samples/drawing/tn_maths_images.png +0 -0
  665. data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
  666. data/samples/drawing/tn_svgtest.png +0 -0
  667. data/samples/etc/choice.rb +82 -0
  668. data/samples/etc/miniframe.rb +92 -0
  669. data/samples/etc/sash.rb +140 -0
  670. data/samples/etc/scrollwin.rb +120 -0
  671. data/samples/etc/system_settings.rb +263 -0
  672. data/samples/etc/tn_choice.png +0 -0
  673. data/samples/etc/tn_miniframe.png +0 -0
  674. data/samples/etc/tn_sash.png +0 -0
  675. data/samples/etc/tn_scrollwin.png +0 -0
  676. data/samples/etc/tn_system_settings.png +0 -0
  677. data/samples/event/activation.rb +129 -0
  678. data/samples/event/event.rb +220 -0
  679. data/samples/event/threaded.rb +141 -0
  680. data/samples/event/tn_activation.png +0 -0
  681. data/samples/event/tn_event.png +0 -0
  682. data/samples/event/tn_threaded.png +0 -0
  683. data/samples/event/tn_update_ui_event.png +0 -0
  684. data/samples/event/update_ui_event.rb +91 -0
  685. data/samples/grid/grid.rb +224 -0
  686. data/samples/grid/gridtablebase.rb +178 -0
  687. data/samples/grid/tn_grid.png +0 -0
  688. data/samples/grid/tn_gridtablebase.png +0 -0
  689. data/samples/html/8859_2.htm +14 -0
  690. data/samples/html/cp1250.htm +19 -0
  691. data/samples/html/foo.png +0 -0
  692. data/samples/html/html.rb +278 -0
  693. data/samples/html/i18n.gif +0 -0
  694. data/samples/html/imagemap.htm +20 -0
  695. data/samples/html/imagemap.png +0 -0
  696. data/samples/html/listtest.htm +28 -0
  697. data/samples/html/pic.png +0 -0
  698. data/samples/html/pic2.bmp +0 -0
  699. data/samples/html/regres.htm +20 -0
  700. data/samples/html/subsup.html +42 -0
  701. data/samples/html/tables.htm +255 -0
  702. data/samples/html/test.htm +375 -0
  703. data/samples/html/tn_html.png +0 -0
  704. data/samples/mdi/mdi.rb +118 -0
  705. data/samples/mdi/tn_mdi.png +0 -0
  706. data/samples/minimal/minimal.rb +95 -0
  707. data/samples/minimal/mondrian.ico +0 -0
  708. data/samples/minimal/mondrian.png +0 -0
  709. data/samples/minimal/nothing.rb +38 -0
  710. data/samples/minimal/tn_minimal.png +0 -0
  711. data/samples/minimal/tn_nothing.png +0 -0
  712. data/samples/printing/mondrian.ico +0 -0
  713. data/samples/printing/mondrian.xpm +44 -0
  714. data/samples/printing/printing.rb +499 -0
  715. data/samples/printing/printing2.rb +251 -0
  716. data/samples/printing/sample-text.txt +213 -0
  717. data/samples/printing/tn_printing.png +0 -0
  718. data/samples/printing/tn_printing2.png +0 -0
  719. data/samples/propgrid/propgrid.rb +2707 -0
  720. data/samples/propgrid/propgrid_minimal.rb +106 -0
  721. data/samples/propgrid/sample_props.rb +434 -0
  722. data/samples/propgrid/tn_propgrid.png +0 -0
  723. data/samples/propgrid/tn_propgrid_minimal.png +0 -0
  724. data/samples/ribbon/align_center.xpm +21 -0
  725. data/samples/ribbon/align_left.xpm +21 -0
  726. data/samples/ribbon/align_right.xpm +21 -0
  727. data/samples/ribbon/aui_style.xpm +53 -0
  728. data/samples/ribbon/auto_crop_selection.xpm +55 -0
  729. data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
  730. data/samples/ribbon/circle.xpm +38 -0
  731. data/samples/ribbon/circle_small.xpm +22 -0
  732. data/samples/ribbon/colours.xpm +25 -0
  733. data/samples/ribbon/cross.xpm +38 -0
  734. data/samples/ribbon/empty.xpm +23 -0
  735. data/samples/ribbon/expand_selection_h.xpm +46 -0
  736. data/samples/ribbon/expand_selection_v.xpm +46 -0
  737. data/samples/ribbon/eye.xpm +26 -0
  738. data/samples/ribbon/hexagon.xpm +38 -0
  739. data/samples/ribbon/msw_style.xpm +65 -0
  740. data/samples/ribbon/position_left.xpm +22 -0
  741. data/samples/ribbon/position_top.xpm +22 -0
  742. data/samples/ribbon/ribbon.rb +900 -0
  743. data/samples/ribbon/ribbon.xpm +54 -0
  744. data/samples/ribbon/selection_panel.xpm +23 -0
  745. data/samples/ribbon/square.xpm +38 -0
  746. data/samples/ribbon/tn_ribbon.png +0 -0
  747. data/samples/ribbon/triangle.xpm +38 -0
  748. data/samples/sample.xpm +475 -0
  749. data/samples/sampler/back.xpm +21 -0
  750. data/samples/sampler/copy.xpm +44 -0
  751. data/samples/sampler/cut.xpm +46 -0
  752. data/samples/sampler/editor.rb +534 -0
  753. data/samples/sampler/ext.rb +51 -0
  754. data/samples/sampler/filesave.xpm +42 -0
  755. data/samples/sampler/find.xpm +62 -0
  756. data/samples/sampler/findrepl.xpm +63 -0
  757. data/samples/sampler/forward.xpm +21 -0
  758. data/samples/sampler/paste.xpm +46 -0
  759. data/samples/sampler/play.xpm +24 -0
  760. data/samples/sampler/redo.xpm +58 -0
  761. data/samples/sampler/sample.rb +337 -0
  762. data/samples/sampler/stc_editor.rb +326 -0
  763. data/samples/sampler/txt_editor.rb +135 -0
  764. data/samples/sampler/undo.xpm +58 -0
  765. data/samples/sampler.rb +401 -0
  766. data/samples/splash/mobile.xpm +1835 -0
  767. data/samples/splash/splash.png +0 -0
  768. data/samples/splash/splash.rb +164 -0
  769. data/samples/splash/tn_splash.png +0 -0
  770. data/samples/text/document-open.png +0 -0
  771. data/samples/text/document-save.png +0 -0
  772. data/samples/text/edit-copy.png +0 -0
  773. data/samples/text/edit-cut.png +0 -0
  774. data/samples/text/edit-paste.png +0 -0
  775. data/samples/text/edit-redo.png +0 -0
  776. data/samples/text/edit-undo.png +0 -0
  777. data/samples/text/format-text-bold.png +0 -0
  778. data/samples/text/format-text-italic.png +0 -0
  779. data/samples/text/format-text-underline.png +0 -0
  780. data/samples/text/mondrian.ico +0 -0
  781. data/samples/text/mondrian.xpm +44 -0
  782. data/samples/text/preferences-desktop-font.png +0 -0
  783. data/samples/text/rich_textctrl.rb +326 -0
  784. data/samples/text/scintilla.rb +179 -0
  785. data/samples/text/textctrl.rb +124 -0
  786. data/samples/text/tn_rich_textctrl.png +0 -0
  787. data/samples/text/tn_scintilla.png +0 -0
  788. data/samples/text/tn_textctrl.png +0 -0
  789. data/samples/text/tn_unicode.png +0 -0
  790. data/samples/text/unicode.rb +238 -0
  791. data/samples/text/utf8.txt +15 -0
  792. data/samples/treectrl/checked.xpm +54 -0
  793. data/samples/treectrl/icon1.xpm +79 -0
  794. data/samples/treectrl/icon2.xpm +53 -0
  795. data/samples/treectrl/icon3.xpm +79 -0
  796. data/samples/treectrl/icon4.xpm +43 -0
  797. data/samples/treectrl/icon5.xpm +79 -0
  798. data/samples/treectrl/state1.xpm +145 -0
  799. data/samples/treectrl/state2.xpm +144 -0
  800. data/samples/treectrl/state3.xpm +142 -0
  801. data/samples/treectrl/state4.xpm +145 -0
  802. data/samples/treectrl/state5.xpm +85 -0
  803. data/samples/treectrl/tn_treectrl.png +0 -0
  804. data/samples/treectrl/treectrl.rb +1720 -0
  805. data/samples/treectrl/unchecked.xpm +30 -0
  806. data/samples/xrc/custom_dialog.xrc +46 -0
  807. data/samples/xrc/custom_xrc_sample.rb +84 -0
  808. data/samples/xrc/samples.xrc +46 -0
  809. data/samples/xrc/tn_xrc_sample.png +0 -0
  810. data/samples/xrc/xrc_sample.rb +86 -0
  811. data/tests/test_basic.rb +20 -0
  812. data/tests/test_clipboard.rb +241 -0
  813. data/tests/test_dialog.rb +28 -0
  814. data/tests/test_event_handling.rb +103 -0
  815. data/tests/test_events.rb +45 -0
  816. data/tests/test_geometry.rb +141 -0
  817. data/tests/test_intl.rb +107 -0
  818. data/tests/test_item_data.rb +120 -0
  819. data/tests/test_variant.rb +151 -0
  820. data/tests/testapp.rb +40 -0
  821. data/tests/testapp_noframe.rb +28 -0
  822. metadata +912 -0
@@ -0,0 +1,1512 @@
1
+ # ----------------------------------------------------------------------------
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # ----------------------------------------------------------------------------
5
+
6
+
7
+ class Wx::EvtHandler
8
+
9
+ # @!group Wx Event handler methods
10
+
11
+ # Process a {Wx::EVT_IDLE} event. See {Wx::IdleEvent}.
12
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
13
+ # @yieldparam [Wx::IdleEvent] event the event to handle
14
+ def evt_idle(meth = nil, &block) end
15
+
16
+ # Process all scroll events.
17
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
18
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
19
+ def evt_scroll(meth = nil, &block) end
20
+
21
+ # Process {Wx::EVT_SCROLL_TOP} scroll-to-top events (minimum position).
22
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
23
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
24
+ def evt_scroll_top(meth = nil, &block) end
25
+
26
+ # Process {Wx::EVT_SCROLL_BOTTOM} scroll-to-bottom events (maximum position).
27
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
28
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
29
+ def evt_scroll_bottom(meth = nil, &block) end
30
+
31
+ # Process {Wx::EVT_SCROLL_LINEUP} line up events.
32
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
33
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
34
+ def evt_scroll_lineup(meth = nil, &block) end
35
+
36
+ # Process {Wx::EVT_SCROLL_LINEDOWN} line down events.
37
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
38
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
39
+ def evt_scroll_linedown(meth = nil, &block) end
40
+
41
+ # Process {Wx::EVT_SCROLL_PAGEUP} page up events.
42
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
43
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
44
+ def evt_scroll_pageup(meth = nil, &block) end
45
+
46
+ # Process {Wx::EVT_SCROLL_PAGEDOWN} page down events.
47
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
48
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
49
+ def evt_scroll_pagedown(meth = nil, &block) end
50
+
51
+ # Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
52
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
53
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
54
+ def evt_scroll_thumbtrack(meth = nil, &block) end
55
+
56
+ # Process {Wx::EVT_SCROLL_THUMBRELEASE} thumb release events.
57
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
58
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
59
+ def evt_scroll_thumbrelease(meth = nil, &block) end
60
+
61
+ # Process {Wx::EVT_SCROLL_CHANGED} end of scrolling events (MSW only).
62
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
63
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
64
+ def evt_scroll_changed(meth = nil, &block) end
65
+
66
+ # Process all scroll events.
67
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
68
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
69
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
70
+ def evt_command_scroll(id, meth = nil, &block) end
71
+
72
+ # Process {Wx::EVT_SCROLL_TOP} scroll-to-top events (minimum position).
73
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
74
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
75
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
76
+ def evt_command_scroll_top(id, meth = nil, &block) end
77
+
78
+ # Process {Wx::EVT_SCROLL_BOTTOM} scroll-to-bottom events (maximum position).
79
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
80
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
81
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
82
+ def evt_command_scroll_bottom(id, meth = nil, &block) end
83
+
84
+ # Process {Wx::EVT_SCROLL_LINEUP} line up events.
85
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
86
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
87
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
88
+ def evt_command_scroll_lineup(id, meth = nil, &block) end
89
+
90
+ # Process {Wx::EVT_SCROLL_LINEDOWN} line down events.
91
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
92
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
93
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
94
+ def evt_command_scroll_linedown(id, meth = nil, &block) end
95
+
96
+ # Process {Wx::EVT_SCROLL_PAGEUP} page up events.
97
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
98
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
99
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
100
+ def evt_command_scroll_pageup(id, meth = nil, &block) end
101
+
102
+ # Process {Wx::EVT_SCROLL_PAGEDOWN} page down events.
103
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
104
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
105
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
106
+ def evt_command_scroll_pagedown(id, meth = nil, &block) end
107
+
108
+ # Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
109
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
110
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
111
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
112
+ def evt_command_scroll_thumbtrack(id, meth = nil, &block) end
113
+
114
+ # Process {Wx::EVT_SCROLL_THUMBRELEASE} thumb release events.
115
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
116
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
117
+ def evt_command_scroll_thumbrelease(meth = nil, &block) end
118
+
119
+ # Process {Wx::EVT_SCROLL_CHANGED} end of scrolling events (MSW only).
120
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
121
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
122
+ def evt_command_scroll_changed(meth = nil, &block) end
123
+
124
+ # Process all scroll events.
125
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
126
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
127
+ def evt_scrollwin(meth = nil, &block) end
128
+
129
+ # Process {Wx::EVT_SCROLLWIN_TOP} scroll-to-top events.
130
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
131
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
132
+ def evt_scrollwin_top(meth = nil, &block) end
133
+
134
+ # Process {Wx::EVT_SCROLLWIN_BOTTOM} scroll-to-bottom events.
135
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
136
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
137
+ def evt_scrollwin_bottom(meth = nil, &block) end
138
+
139
+ # Process {Wx::EVT_SCROLLWIN_LINEUP} line up events.
140
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
141
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
142
+ def evt_scrollwin_lineup(meth = nil, &block) end
143
+
144
+ # Process {Wx::EVT_SCROLLWIN_LINEDOWN} line down events.
145
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
146
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
147
+ def evt_scrollwin_linedown(meth = nil, &block) end
148
+
149
+ # Process {Wx::EVT_SCROLLWIN_PAGEUP} page up events.
150
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
151
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
152
+ def evt_scrollwin_pageup(meth = nil, &block) end
153
+
154
+ # Process {Wx::EVT_SCROLLWIN_PAGEDOWN} page down events.
155
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
156
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
157
+ def evt_scrollwin_pagedown(meth = nil, &block) end
158
+
159
+ # Process {Wx::EVT_SCROLLWIN_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
160
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
161
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
162
+ def evt_scrollwin_thumbtrack(meth = nil, &block) end
163
+
164
+ # Process {Wx::EVT_SCROLLWIN_THUMBRELEASE} thumb release events.
165
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
166
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
167
+ def evt_scrollwin_thumbrelease(meth = nil, &block) end
168
+
169
+ # Process a {Wx::EVT_LEFT_DOWN} event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus.
170
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
171
+ # @yieldparam [Wx::MouseEvent] event the event to handle
172
+ def evt_left_down(meth = nil, &block) end
173
+
174
+ # Process a {Wx::EVT_LEFT_UP} event.
175
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
176
+ # @yieldparam [Wx::MouseEvent] event the event to handle
177
+ def evt_left_up(meth = nil, &block) end
178
+
179
+ # Process a {Wx::EVT_LEFT_DCLICK} event.
180
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
181
+ # @yieldparam [Wx::MouseEvent] event the event to handle
182
+ def evt_left_dclick(meth = nil, &block) end
183
+
184
+ # Process a {Wx::EVT_MIDDLE_DOWN} event.
185
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
186
+ # @yieldparam [Wx::MouseEvent] event the event to handle
187
+ def evt_middle_down(meth = nil, &block) end
188
+
189
+ # Process a {Wx::EVT_MIDDLE_UP} event.
190
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
191
+ # @yieldparam [Wx::MouseEvent] event the event to handle
192
+ def evt_middle_up(meth = nil, &block) end
193
+
194
+ # Process a {Wx::EVT_MIDDLE_DCLICK} event.
195
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
196
+ # @yieldparam [Wx::MouseEvent] event the event to handle
197
+ def evt_middle_dclick(meth = nil, &block) end
198
+
199
+ # Process a {Wx::EVT_RIGHT_DOWN} event.
200
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
201
+ # @yieldparam [Wx::MouseEvent] event the event to handle
202
+ def evt_right_down(meth = nil, &block) end
203
+
204
+ # Process a {Wx::EVT_RIGHT_UP} event.
205
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
206
+ # @yieldparam [Wx::MouseEvent] event the event to handle
207
+ def evt_right_up(meth = nil, &block) end
208
+
209
+ # Process a {Wx::EVT_RIGHT_DCLICK} event.
210
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
211
+ # @yieldparam [Wx::MouseEvent] event the event to handle
212
+ def evt_right_dclick(meth = nil, &block) end
213
+
214
+ # See {Wx::MouseEvent}.
215
+ # Processes a {Wx::EVT_AUX1_DOWN} event.
216
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
217
+ # @yieldparam [Wx::MouseEvent] event the event to handle
218
+ def evt_mouse_aux1_down(meth = nil, &block) end
219
+
220
+ # See {Wx::MouseEvent}.
221
+ # Processes a {Wx::EVT_AUX1_UP} event.
222
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
223
+ # @yieldparam [Wx::MouseEvent] event the event to handle
224
+ def evt_mouse_aux1_up(meth = nil, &block) end
225
+
226
+ # See {Wx::MouseEvent}.
227
+ # Processes a {Wx::EVT_AUX1_DCLICK} event.
228
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
229
+ # @yieldparam [Wx::MouseEvent] event the event to handle
230
+ def evt_mouse_aux1_dclick(meth = nil, &block) end
231
+
232
+ # See {Wx::MouseEvent}.
233
+ # Processes a {Wx::EVT_AUX2_DOWN} event.
234
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
235
+ # @yieldparam [Wx::MouseEvent] event the event to handle
236
+ def evt_mouse_aux2_down(meth = nil, &block) end
237
+
238
+ # See {Wx::MouseEvent}.
239
+ # Processes a {Wx::EVT_AUX2_UP} event.
240
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
241
+ # @yieldparam [Wx::MouseEvent] event the event to handle
242
+ def evt_mouse_aux2_up(meth = nil, &block) end
243
+
244
+ # See {Wx::MouseEvent}.
245
+ # Processes a {Wx::EVT_AUX2_DCLICK} event.
246
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
247
+ # @yieldparam [Wx::MouseEvent] event the event to handle
248
+ def evt_mouse_aux2_dclick(meth = nil, &block) end
249
+
250
+ # Process a {Wx::EVT_MOTION} event.
251
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
252
+ # @yieldparam [Wx::MouseEvent] event the event to handle
253
+ def evt_motion(meth = nil, &block) end
254
+
255
+ # Process a {Wx::EVT_ENTER_WINDOW} event.
256
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
257
+ # @yieldparam [Wx::MouseEvent] event the event to handle
258
+ def evt_enter_window(meth = nil, &block) end
259
+
260
+ # Process a {Wx::EVT_LEAVE_WINDOW} event.
261
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
262
+ # @yieldparam [Wx::MouseEvent] event the event to handle
263
+ def evt_leave_window(meth = nil, &block) end
264
+
265
+ # Process a {Wx::EVT_MOUSEWHEEL} event.
266
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
267
+ # @yieldparam [Wx::MouseEvent] event the event to handle
268
+ def evt_mousewheel(meth = nil, &block) end
269
+
270
+ # Process all mouse events.
271
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
272
+ # @yieldparam [Wx::MouseEvent] event the event to handle
273
+ def evt_mouse_events(meth = nil, &block) end
274
+
275
+ # Process a {Wx::EVT_MAGNIFY} event (new since wxWidgets 3.1.0).
276
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
277
+ # @yieldparam [Wx::MouseEvent] event the event to handle
278
+ def evt_magnify(meth = nil, &block) end
279
+
280
+ # Process a {Wx::EVT_SET_CURSOR} event. See {Wx::SetCursorEvent}.
281
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
282
+ # @yieldparam [Wx::SetCursorEvent] event the event to handle
283
+ def evt_set_cursor(meth = nil, &block) end
284
+
285
+ # Process a {Wx::EVT_GESTURE_PAN}.
286
+ # Processes a {Wx::EVT_GESTURE_PAN} event.
287
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
288
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
289
+ # @yieldparam [Wx::PanGestureEvent] event the event to handle
290
+ def evt_gesture_pan(id, meth = nil, &block) end
291
+
292
+ # Process a {Wx::EVT_GESTURE_ZOOM}.
293
+ # Processes a {Wx::EVT_GESTURE_ZOOM} event.
294
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
295
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
296
+ # @yieldparam [Wx::ZoomGestureEvent] event the event to handle
297
+ def evt_gesture_zoom(id, meth = nil, &block) end
298
+
299
+ # Process a {Wx::EVT_GESTURE_ROTATE}.
300
+ # Processes a {Wx::EVT_GESTURE_ROTATE} event.
301
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
302
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
303
+ # @yieldparam [Wx::RotateGestureEvent] event the event to handle
304
+ def evt_gesture_rotate(id, meth = nil, &block) end
305
+
306
+ # Process a {Wx::EVT_TWO_FINGER_TAP}.
307
+ # Processes a {Wx::EVT_TWO_FINGER_TAP} event.
308
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
309
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
310
+ # @yieldparam [Wx::TwoFingerTapEvent] event the event to handle
311
+ def evt_two_finger_tap(id, meth = nil, &block) end
312
+
313
+ # Process a {Wx::EVT_LONG_PRESS}.
314
+ # Processes a {Wx::EVT_LONG_PRESS} event.
315
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
316
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
317
+ # @yieldparam [Wx::LongPressEvent] event the event to handle
318
+ def evt_long_press(id, meth = nil, &block) end
319
+
320
+ # Process a {Wx::EVT_PRESS_AND_TAP}.
321
+ # Processes a {Wx::EVT_PRESS_AND_TAP} event.
322
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
323
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
324
+ # @yieldparam [Wx::PressAndTapEvent] event the event to handle
325
+ def evt_press_and_tap(id, meth = nil, &block) end
326
+
327
+ # Process a {Wx::EVT_KEY_DOWN} event (any key has been pressed). See {Wx::KeyEvent}.
328
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
329
+ # @yieldparam [Wx::KeyEvent] event the event to handle
330
+ def evt_key_down(meth = nil, &block) end
331
+
332
+ # Process a {Wx::EVT_KEY_UP} event (any key has been released). See {Wx::KeyEvent}.
333
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
334
+ # @yieldparam [Wx::KeyEvent] event the event to handle
335
+ def evt_key_up(meth = nil, &block) end
336
+
337
+ # Process a {Wx::EVT_CHAR} event. See {Wx::KeyEvent}.
338
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
339
+ # @yieldparam [Wx::KeyEvent] event the event to handle
340
+ def evt_char(meth = nil, &block) end
341
+
342
+ # Process a {Wx::EVT_CHAR_HOOK} event. See {Wx::KeyEvent}.
343
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
344
+ # @yieldparam [Wx::KeyEvent] event the event to handle
345
+ def evt_char_hook(meth = nil, &block) end
346
+
347
+ # Process a {Wx::EVT_SIZE} event. See {Wx::SizeEvent}.
348
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
349
+ # @yieldparam [Wx::SizeEvent] event the event to handle
350
+ def evt_size(meth = nil, &block) end
351
+
352
+ # Process a {Wx::EVT_MOVE} event, which is generated when a window is moved. See {Wx::MoveEvent}.
353
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
354
+ # @yieldparam [Wx::MoveEvent] event the event to handle
355
+ def evt_move(meth = nil, &block) end
356
+
357
+ # Process a {Wx::EVT_MOVE_START} event, which is generated when the user starts to move or size a window. {Wx::MSW} only. See {Wx::MoveEvent}.
358
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
359
+ # @yieldparam [Wx::MoveEvent] event the event to handle
360
+ def evt_move_start(meth = nil, &block) end
361
+
362
+ # Process a {Wx::EVT_MOVING} event, which is generated while the user is moving the window. {Wx::MSW} only.
363
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
364
+ # @yieldparam [Wx::MoveEvent] event the event to handle
365
+ def evt_moving(meth = nil, &block) end
366
+
367
+ # Process a {Wx::EVT_MOVE_END} event, which is generated when the user stops moving or sizing a window. {Wx::MSW} only. See {Wx::MoveEvent}.
368
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
369
+ # @yieldparam [Wx::MoveEvent] event the event to handle
370
+ def evt_move_end(meth = nil, &block) end
371
+
372
+ # Process a {Wx::EVT_PAINT} event. See {Wx::PaintEvent}.
373
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
374
+ # @yieldparam [Wx::PaintEvent] event the event to handle
375
+ def evt_paint(meth = nil, &block) end
376
+
377
+ # Process a {Wx::EVT_ERASE_BACKGROUND} event. See {Wx::EraseEvent}.
378
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
379
+ # @yieldparam [Wx::EraseEvent] event the event to handle
380
+ def evt_erase_background(meth = nil, &block) end
381
+
382
+ # Process a {Wx::EVT_SET_FOCUS} event. See {Wx::FocusEvent}.
383
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
384
+ # @yieldparam [Wx::FocusEvent] event the event to handle
385
+ def evt_set_focus(meth = nil, &block) end
386
+
387
+ # Process a {Wx::EVT_KILL_FOCUS} event. See {Wx::FocusEvent}.
388
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
389
+ # @yieldparam [Wx::FocusEvent] event the event to handle
390
+ def evt_kill_focus(meth = nil, &block) end
391
+
392
+ # Process a {Wx::EVT_ACTIVATE} event.
393
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
394
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
395
+ def evt_activate(meth = nil, &block) end
396
+
397
+ # Process a {Wx::EVT_ACTIVATE_APP} event. See {Wx::ActivateEvent}.
398
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
399
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
400
+ def evt_activate_app(meth = nil, &block) end
401
+
402
+ # Process a hibernate event. See {Wx::ActivateEvent}.
403
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
404
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
405
+ def evt_hibernate(meth = nil, &block) end
406
+
407
+ # Process a {Wx::EVT_INIT_DIALOG} event. See {Wx::InitDialogEvent}.
408
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
409
+ # @yieldparam [Wx::InitDialogEvent] event the event to handle
410
+ def evt_init_dialog(meth = nil, &block) end
411
+
412
+ # A menu is about to be opened. On Windows, this is only sent once for each navigation of the menubar (up until all menus have closed). This type of event is sent as {Wx::MenuEvent}.
413
+ # Processes a {Wx::EVT_MENU_OPEN} event.
414
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
415
+ # @yieldparam [Wx::MenuEvent] event the event to handle
416
+ def evt_menu_open(meth = nil, &block) end
417
+
418
+ # A menu has been just closed. This type of event is sent as {Wx::MenuEvent}.
419
+ # Processes a {Wx::EVT_MENU_CLOSE} event.
420
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
421
+ # @yieldparam [Wx::MenuEvent] event the event to handle
422
+ def evt_menu_close(meth = nil, &block) end
423
+
424
+ # The menu item with the specified id has been highlighted. If the id is {Wx::StandardID::ID_NONE}, highlighting has been removed from the previously highlighted menu item and there is no highlighted item any more. This is used by {Wx::Frame} to show help prompts in the status bar. This type of event is sent as {Wx::MenuEvent}.
425
+ # Processes a {Wx::EVT_MENU_HIGHLIGHT} event.
426
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
427
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
428
+ # @yieldparam [Wx::MenuEvent] event the event to handle
429
+ def evt_menu_highlight(id, meth = nil, &block) end
430
+
431
+ # A menu item has been highlighted, i.e. the currently selected menu item has changed. This type of event is sent as {Wx::MenuEvent}.
432
+ # Processes a {Wx::EVT_MENU_HIGHLIGHT_ALL} event.
433
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
434
+ # @yieldparam [Wx::MenuEvent] event the event to handle
435
+ def evt_menu_highlight_all(meth = nil, &block) end
436
+
437
+ # The dialog is being closed by the user or programmatically (see {Wx::Window#close}). The user may generate this event clicking the close button (typically the 'X' on the top-right of the title bar) if it's present (see the {Wx::CLOSE_BOX} style).
438
+ # Processes a {Wx::EVT_CLOSE_WINDOW} event.
439
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
440
+ # @yieldparam [Wx::CloseEvent] event the event to handle
441
+ def evt_close(meth = nil, &block) end
442
+
443
+ # Process a query end session event, supplying the member function. See {Wx::CloseEvent}.
444
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
445
+ # @yieldparam [Wx::CloseEvent] event the event to handle
446
+ def evt_query_end_session(meth = nil, &block) end
447
+
448
+ # Process an end session event, supplying the member function. See {Wx::CloseEvent}.
449
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
450
+ # @yieldparam [Wx::CloseEvent] event the event to handle
451
+ def evt_end_session(meth = nil, &block) end
452
+
453
+ # Process a {Wx::EVT_SHOW} event. See {Wx::ShowEvent}.
454
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
455
+ # @yieldparam [Wx::ShowEvent] event the event to handle
456
+ def evt_show(meth = nil, &block) end
457
+
458
+ # Process a {Wx::EVT_ICONIZE} event. See {Wx::IconizeEvent}.
459
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
460
+ # @yieldparam [Wx::IconizeEvent] event the event to handle
461
+ def evt_iconize(meth = nil, &block) end
462
+
463
+ # Process a {Wx::EVT_MAXIMIZE} event.
464
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
465
+ # @yieldparam [Wx::MaximizeEvent] event the event to handle
466
+ def evt_maximize(meth = nil, &block) end
467
+
468
+ # Process a {Wx::EVT_FULLSCREEN} event.
469
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
470
+ # @yieldparam [Wx::FullScreenEvent] event the event to handle
471
+ def evt_fullscreen(meth = nil, &block) end
472
+
473
+ # Process a {Wx::EVT_JOY_BUTTON_DOWN} event.
474
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
475
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
476
+ def evt_joy_button_down(meth = nil, &block) end
477
+
478
+ # Process a {Wx::EVT_JOY_BUTTON_UP} event.
479
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
480
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
481
+ def evt_joy_button_up(meth = nil, &block) end
482
+
483
+ # Process a {Wx::EVT_JOY_MOVE} event.
484
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
485
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
486
+ def evt_joy_move(meth = nil, &block) end
487
+
488
+ # Process a {Wx::EVT_JOY_ZMOVE} event.
489
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
490
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
491
+ def evt_joy_zmove(meth = nil, &block) end
492
+
493
+ # Processes all joystick events.
494
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
495
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
496
+ def evt_joystick_events(meth = nil, &block) end
497
+
498
+ # Process a {Wx::EVT_DROP_FILES} event. See {Wx::DropFilesEvent}.
499
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
500
+ # @yieldparam [Wx::DropFilesEvent] event the event to handle
501
+ def evt_drop_files(meth = nil, &block) end
502
+
503
+ # Process a {Wx::EVT_UPDATE_UI} event for the command with the given id.
504
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
505
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
506
+ # @yieldparam [Wx::UpdateUIEvent] event the event to handle
507
+ def evt_update_ui(id, meth = nil, &block) end
508
+
509
+ # Process a {Wx::EVT_UPDATE_UI} event for any command with id included in the given range.
510
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
511
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
512
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
513
+ # @yieldparam [Wx::UpdateUIEvent] event the event to handle
514
+ def evt_update_ui_range(id1, id2, meth = nil, &block) end
515
+
516
+ # Process a {Wx::EVT_SYS_COLOUR_CHANGED} event. See {Wx::SysColourChangedEvent}.
517
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
518
+ # @yieldparam [Wx::SysColourChangedEvent] event the event to handle
519
+ def evt_sys_colour_changed(meth = nil, &block) end
520
+
521
+ # Process a {Wx::EVT_MOUSE_CAPTURE_CHANGED} event. See {Wx::MouseCaptureChangedEvent}.
522
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
523
+ # @yieldparam [Wx::MouseCaptureChangedEvent] event the event to handle
524
+ def evt_mouse_capture_changed(meth = nil, &block) end
525
+
526
+ # Process a {Wx::EVT_MOUSE_CAPTURE_LOST} event. See {Wx::MouseCaptureLostEvent}.
527
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
528
+ # @yieldparam [Wx::MouseCaptureLostEvent] event the event to handle
529
+ def evt_mouse_capture_lost(meth = nil, &block) end
530
+
531
+ # Process a {Wx::EVT_DISPLAY_CHANGED} event.
532
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
533
+ # @yieldparam [Wx::DisplayChangedEvent] event the event to handle
534
+ def evt_display_changed(meth = nil, &block) end
535
+
536
+ # Process a {Wx::EVT_DPI_CHANGED} event.
537
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
538
+ # @yieldparam [Wx::DPIChangedEvent] event the event to handle
539
+ def evt_dpi_changed(meth = nil, &block) end
540
+
541
+ # Process a navigation key event.
542
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
543
+ # @yieldparam [Wx::NavigationKeyEvent] event the event to handle
544
+ def evt_navigation_key(meth = nil, &block) end
545
+
546
+ # Process a {Wx::EVT_CREATE} event.
547
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
548
+ # @yieldparam [Wx::WindowCreateEvent] event the event to handle
549
+ def evt_window_create(meth = nil, &block) end
550
+
551
+ # Process a {Wx::EVT_HELP} event. See {Wx::HelpEvent}.
552
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
553
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
554
+ # @yieldparam [Wx::HelpEvent] event the event to handle
555
+ def evt_help(id, meth = nil, &block) end
556
+
557
+ # Process a {Wx::EVT_HELP} event for a range of ids. See {Wx::HelpEvent}.
558
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
559
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
560
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
561
+ # @yieldparam [Wx::HelpEvent] event the event to handle
562
+ def evt_help_range(id1, id2, meth = nil, &block) end
563
+
564
+ # Some or all of the controls content was copied to the clipboard.
565
+ # Processes a {Wx::EVT_TEXT_COPY} event.
566
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
567
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
568
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
569
+ def evt_text_copy(id, meth = nil, &block) end
570
+
571
+ # Some or all of the controls content was cut (i.e. copied and deleted).
572
+ # Processes a {Wx::EVT_TEXT_CUT} event.
573
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
574
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
575
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
576
+ def evt_text_cut(id, meth = nil, &block) end
577
+
578
+ # Clipboard content was pasted into the control.
579
+ # Processes a {Wx::EVT_TEXT_PASTE} event.
580
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
581
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
582
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
583
+ def evt_text_paste(id, meth = nil, &block) end
584
+
585
+ # A right click (or other context menu command depending on platform) has been detected. See {Wx::ContextMenuEvent}.
586
+ # Processes a {Wx::EVT_CONTEXT_MENU} event.
587
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
588
+ # @yieldparam [Wx::ContextMenuEvent] event the event to handle
589
+ def evt_context_menu(meth = nil, &block) end
590
+
591
+ # Process a {Wx::EVT_CHILD_FOCUS} event. See {Wx::ChildFocusEvent}.
592
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
593
+ # @yieldparam [Wx::ChildFocusEvent] event the event to handle
594
+ def evt_child_focus(meth = nil, &block) end
595
+
596
+ # The user expanded or collapsed the collapsible pane.
597
+ # Processes a {Wx::EVT_COLLAPSIBLEPANE_CHANGED} event.
598
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
599
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
600
+ # @yieldparam [Wx::CollapsiblePaneEvent] event the event to handle
601
+ def evt_collapsiblepane_changed(id, meth = nil, &block) end
602
+
603
+ # Generated whenever an arrow is pressed.
604
+ # Processes a {Wx::EVT_SPIN} event.
605
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
606
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
607
+ # @yieldparam [Wx::SpinEvent] event the event to handle
608
+ def evt_spin(id, meth = nil, &block) end
609
+
610
+ # Generated when left/up arrow is pressed.
611
+ # Processes a {Wx::EVT_SPIN_UP} event.
612
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
613
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
614
+ # @yieldparam [Wx::SpinEvent] event the event to handle
615
+ def evt_spin_up(id, meth = nil, &block) end
616
+
617
+ # Generated when right/down arrow is pressed.
618
+ # Processes a {Wx::EVT_SPIN_DOWN} event.
619
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
620
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
621
+ # @yieldparam [Wx::SpinEvent] event the event to handle
622
+ def evt_spin_down(id, meth = nil, &block) end
623
+
624
+ # The user changed the font selected in the control either using the button or using text control (see {Wx::FNTP_USE_TEXTCTRL}; note that in this case the event is fired only if the user's input is valid, i.e. recognizable).
625
+ # Processes a {Wx::EVT_FONTPICKER_CHANGED} event.
626
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
627
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
628
+ # @yieldparam [Wx::FontPickerEvent] event the event to handle
629
+ def evt_fontpicker_changed(id, meth = nil, &block) end
630
+
631
+ # Find button was pressed in the dialog.
632
+ # Processes a {Wx::EVT_FIND} event.
633
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
634
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
635
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
636
+ def evt_find(id, meth = nil, &block) end
637
+
638
+ # Find next button was pressed in the dialog.
639
+ # Processes a {Wx::EVT_FIND_NEXT} event.
640
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
641
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
642
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
643
+ def evt_find_next(id, meth = nil, &block) end
644
+
645
+ # Replace button was pressed in the dialog.
646
+ # Processes a {Wx::EVT_FIND_REPLACE} event.
647
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
648
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
649
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
650
+ def evt_find_replace(id, meth = nil, &block) end
651
+
652
+ # Replace all button was pressed in the dialog.
653
+ # Processes a {Wx::EVT_FIND_REPLACE_ALL} event.
654
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
655
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
656
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
657
+ def evt_find_replace_all(id, meth = nil, &block) end
658
+
659
+ # The dialog is being destroyed, any pointers to it cannot be used any longer.
660
+ # Processes a {Wx::EVT_FIND_CLOSE} event.
661
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
662
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
663
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
664
+ def evt_find_close(id, meth = nil, &block) end
665
+
666
+ # The user changed the colour selected in the control either using the button or using text control (see {Wx::CLRP_USE_TEXTCTRL}; note that in this case the event is fired only if the user's input is valid, i.e. recognizable). When using a popup dialog for changing the colour, this event is sent only when the changes in the dialog are accepted by the user, unlike EVT_COLOURPICKER_CURRENT_CHANGED.
667
+ # Processes a {Wx::EVT_COLOURPICKER_CHANGED} event.
668
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
669
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
670
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
671
+ def evt_colourpicker_changed(id, meth = nil, &block) end
672
+
673
+ # The user changed the currently selected colour in the dialog associated with the control. This event is sent immediately when the selection changes and you must also handle EVT_COLOUR_CANCELLED to revert to the previously selected colour if the selection ends up not being accepted. This event is new since wxWidgets 3.1.3 and currently is only implemented in {Wx::MSW}.
674
+ # Processes a {Wx::EVT_COLOURPICKER_CURRENT_CHANGED} event.
675
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
676
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
677
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
678
+ def evt_colourpicker_current_changed(id, meth = nil, &block) end
679
+
680
+ # The user cancelled the colour dialog associated with the control, i.e. closed it without accepting the selection. This event is new since wxWidgets 3.1.3 and currently is only implemented in {Wx::MSW}.
681
+ # Processes a {Wx::EVT_COLOURPICKER_DIALOG_CANCELLED} event.
682
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
683
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
684
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
685
+ def evt_colourpicker_dialog_cancelled(id, meth = nil, &block) end
686
+
687
+ # The user changed the file selected in the control either using the button or using text control (see {Wx::FLP_USE_TEXTCTRL}; note that in this case the event is fired only if the user's input is valid, e.g. an existing file path if {Wx::FLP_FILE_MUST_EXIST} was given).
688
+ # Processes a {Wx::EVT_FILEPICKER_CHANGED} event.
689
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
690
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
691
+ # @yieldparam [Wx::FileDirPickerEvent] event the event to handle
692
+ def evt_filepicker_changed(id, meth = nil, &block) end
693
+
694
+ # The user changed the directory selected in the control either using the button or using text control (see {Wx::DIRP_USE_TEXTCTRL}; note that in this case the event is fired only if the user's input is valid, e.g. an existing directory path).
695
+ # Processes a {Wx::EVT_DIRPICKER_CHANGED} event.
696
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
697
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
698
+ # @yieldparam [Wx::FileDirPickerEvent] event the event to handle
699
+ def evt_dirpicker_changed(id, meth = nil, &block) end
700
+
701
+ # Begin dragging with the left mouse button.
702
+ # Processes a {Wx::EVT_LIST_BEGIN_DRAG} event.
703
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
704
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
705
+ # @yieldparam [Wx::ListEvent] event the event to handle
706
+ def evt_list_begin_drag(id, meth = nil, &block) end
707
+
708
+ # Begin dragging with the right mouse button.
709
+ # Processes a {Wx::EVT_LIST_BEGIN_RDRAG} event.
710
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
711
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
712
+ # @yieldparam [Wx::ListEvent] event the event to handle
713
+ def evt_list_begin_rdrag(id, meth = nil, &block) end
714
+
715
+ # Begin editing a label. This can be prevented by calling {Wx::ListEvent#veto}.
716
+ # Processes a {Wx::EVT_LIST_BEGIN_LABEL_EDIT} event.
717
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
718
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
719
+ # @yieldparam [Wx::ListEvent] event the event to handle
720
+ def evt_list_begin_label_edit(id, meth = nil, &block) end
721
+
722
+ # Finish editing a label. This can be prevented by calling {Wx::ListEvent#veto}.
723
+ # Processes a {Wx::EVT_LIST_END_LABEL_EDIT} event.
724
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
725
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
726
+ # @yieldparam [Wx::ListEvent] event the event to handle
727
+ def evt_list_end_label_edit(id, meth = nil, &block) end
728
+
729
+ # Delete an item.
730
+ # Processes a {Wx::EVT_LIST_DELETE_ITEM} event.
731
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
732
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
733
+ # @yieldparam [Wx::ListEvent] event the event to handle
734
+ def evt_list_delete_item(id, meth = nil, &block) end
735
+
736
+ # Delete all items.
737
+ # Processes a {Wx::EVT_LIST_DELETE_ALL_ITEMS} event.
738
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
739
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
740
+ # @yieldparam [Wx::ListEvent] event the event to handle
741
+ def evt_list_delete_all_items(id, meth = nil, &block) end
742
+
743
+ # The item has been selected. Notice that the mouse is captured by the control itself when this event is generated, see event handling overview.
744
+ # Processes a {Wx::EVT_LIST_ITEM_SELECTED} event.
745
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
746
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
747
+ # @yieldparam [Wx::ListEvent] event the event to handle
748
+ def evt_list_item_selected(id, meth = nil, &block) end
749
+
750
+ # The item has been deselected. {Wx::ListEvent#get_index} may be -1 with virtual lists.
751
+ # Processes a {Wx::EVT_LIST_ITEM_DESELECTED} event.
752
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
753
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
754
+ # @yieldparam [Wx::ListEvent] event the event to handle
755
+ def evt_list_item_deselected(id, meth = nil, &block) end
756
+
757
+ # The item has been activated (ENTER or double click).
758
+ # Processes a {Wx::EVT_LIST_ITEM_ACTIVATED} event.
759
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
760
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
761
+ # @yieldparam [Wx::ListEvent] event the event to handle
762
+ def evt_list_item_activated(id, meth = nil, &block) end
763
+
764
+ # The currently focused item has changed.
765
+ # Processes a {Wx::EVT_LIST_ITEM_FOCUSED} event.
766
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
767
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
768
+ # @yieldparam [Wx::ListEvent] event the event to handle
769
+ def evt_list_item_focused(id, meth = nil, &block) end
770
+
771
+ # The middle mouse button has been clicked on an item.
772
+ # Processes a {Wx::EVT_LIST_ITEM_MIDDLE_CLICK} event.
773
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
774
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
775
+ # @yieldparam [Wx::ListEvent] event the event to handle
776
+ def evt_list_item_middle_click(id, meth = nil, &block) end
777
+
778
+ # The right mouse button has been clicked on an item.
779
+ # Processes a {Wx::EVT_LIST_ITEM_RIGHT_CLICK} event.
780
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
781
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
782
+ # @yieldparam [Wx::ListEvent] event the event to handle
783
+ def evt_list_item_right_click(id, meth = nil, &block) end
784
+
785
+ # A key has been pressed. {Wx::ListEvent#get_index} may be -1 if no item is selected.
786
+ # Processes a {Wx::EVT_LIST_KEY_DOWN} event.
787
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
788
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
789
+ # @yieldparam [Wx::ListEvent] event the event to handle
790
+ def evt_list_key_down(id, meth = nil, &block) end
791
+
792
+ # An item has been inserted.
793
+ # Processes a {Wx::EVT_LIST_INSERT_ITEM} event.
794
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
795
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
796
+ # @yieldparam [Wx::ListEvent] event the event to handle
797
+ def evt_list_insert_item(id, meth = nil, &block) end
798
+
799
+ # A column (m_col) has been left-clicked.
800
+ # Processes a {Wx::EVT_LIST_COL_CLICK} event.
801
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
802
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
803
+ # @yieldparam [Wx::ListEvent] event the event to handle
804
+ def evt_list_col_click(id, meth = nil, &block) end
805
+
806
+ # A column (m_col) (which can be -1 if the click occurred outside any column) has been right-clicked.
807
+ # Processes a {Wx::EVT_LIST_COL_RIGHT_CLICK} event.
808
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
809
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
810
+ # @yieldparam [Wx::ListEvent] event the event to handle
811
+ def evt_list_col_right_click(id, meth = nil, &block) end
812
+
813
+ # The user started resizing a column - can be vetoed.
814
+ # Processes a {Wx::EVT_LIST_COL_BEGIN_DRAG} event.
815
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
816
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
817
+ # @yieldparam [Wx::ListEvent] event the event to handle
818
+ def evt_list_col_begin_drag(id, meth = nil, &block) end
819
+
820
+ # The divider between columns is being dragged.
821
+ # Processes a {Wx::EVT_LIST_COL_DRAGGING} event.
822
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
823
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
824
+ # @yieldparam [Wx::ListEvent] event the event to handle
825
+ def evt_list_col_dragging(id, meth = nil, &block) end
826
+
827
+ # A column has been resized by the user.
828
+ # Processes a {Wx::EVT_LIST_COL_END_DRAG} event.
829
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
830
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
831
+ # @yieldparam [Wx::ListEvent] event the event to handle
832
+ def evt_list_col_end_drag(id, meth = nil, &block) end
833
+
834
+ # Prepare cache for a virtual list control
835
+ # Processes a {Wx::EVT_LIST_CACHE_HINT} event.
836
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
837
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
838
+ # @yieldparam [Wx::ListEvent] event the event to handle
839
+ def evt_list_cache_hint(id, meth = nil, &block) end
840
+
841
+ # The item has been checked (new since wxWidgets 3.1.0).
842
+ # Processes a {Wx::EVT_LIST_ITEM_CHECKED} event.
843
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
844
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
845
+ # @yieldparam [Wx::ListEvent] event the event to handle
846
+ def evt_list_item_checked(id, meth = nil, &block) end
847
+
848
+ # The item has been unchecked (new since wxWidgets 3.1.0).
849
+ # Processes a {Wx::EVT_LIST_ITEM_UNCHECKED} event.
850
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
851
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
852
+ # @yieldparam [Wx::ListEvent] event the event to handle
853
+ def evt_list_item_unchecked(id, meth = nil, &block) end
854
+
855
+ # The sash position is in the process of being changed. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a {Wx::EVT_SPLITTER_SASH_POS_CHANGING} event.
856
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
857
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
858
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
859
+ def evt_splitter_sash_pos_changing(id, meth = nil, &block) end
860
+
861
+ # The sash position was changed. May be used to modify the sash position before it is set, or to prevent the change from taking place. Processes a {Wx::EVT_SPLITTER_SASH_POS_CHANGED} event.
862
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
863
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
864
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
865
+ def evt_splitter_sash_pos_changed(id, meth = nil, &block) end
866
+
867
+ # The splitter has been just unsplit. Processes a {Wx::EVT_SPLITTER_UNSPLIT} event.
868
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
869
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
870
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
871
+ def evt_splitter_unsplit(id, meth = nil, &block) end
872
+
873
+ # The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). Processes a {Wx::EVT_SPLITTER_DOUBLECLICKED} event.
874
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
875
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
876
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
877
+ def evt_splitter_dclick(id, meth = nil, &block) end
878
+
879
+ # Begin dragging with the left mouse button. If you want to enable left-dragging you need to intercept this event and explicitly call {Wx::TreeEvent#allow}, as it's vetoed by default. Processes a {Wx::EVT_TREE_BEGIN_DRAG} event type.
880
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
881
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
882
+ # @yieldparam [Wx::TreeEvent] event the event to handle
883
+ def evt_tree_begin_drag(id, meth = nil, &block) end
884
+
885
+ # Begin dragging with the right mouse button. If you want to enable right-dragging you need to intercept this event and explicitly call {Wx::TreeEvent#allow}, as it's vetoed by default. Processes a {Wx::EVT_TREE_BEGIN_RDRAG} event type.
886
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
887
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
888
+ # @yieldparam [Wx::TreeEvent] event the event to handle
889
+ def evt_tree_begin_rdrag(id, meth = nil, &block) end
890
+
891
+ # End dragging with the left or right mouse button. Processes a {Wx::EVT_TREE_END_DRAG} event type.
892
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
893
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
894
+ # @yieldparam [Wx::TreeEvent] event the event to handle
895
+ def evt_tree_end_drag(id, meth = nil, &block) end
896
+
897
+ # Begin editing a label. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_BEGIN_LABEL_EDIT} event type.
898
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
899
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
900
+ # @yieldparam [Wx::TreeEvent] event the event to handle
901
+ def evt_tree_begin_label_edit(id, meth = nil, &block) end
902
+
903
+ # Finish editing a label. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_END_LABEL_EDIT} event type.
904
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
905
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
906
+ # @yieldparam [Wx::TreeEvent] event the event to handle
907
+ def evt_tree_end_label_edit(id, meth = nil, &block) end
908
+
909
+ # An item was deleted. Processes a {Wx::EVT_TREE_DELETE_ITEM} event type.
910
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
911
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
912
+ # @yieldparam [Wx::TreeEvent] event the event to handle
913
+ def evt_tree_delete_item(id, meth = nil, &block) end
914
+
915
+ # Request information from the application. Processes a {Wx::EVT_TREE_GET_INFO} event type.
916
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
917
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
918
+ # @yieldparam [Wx::TreeEvent] event the event to handle
919
+ def evt_tree_get_info(id, meth = nil, &block) end
920
+
921
+ # Information is being supplied. Processes a {Wx::EVT_TREE_SET_INFO} event type.
922
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
923
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
924
+ # @yieldparam [Wx::TreeEvent] event the event to handle
925
+ def evt_tree_set_info(id, meth = nil, &block) end
926
+
927
+ # The item has been activated, i.e. chosen by double clicking it with mouse or from keyboard. Processes a {Wx::EVT_TREE_ITEM_ACTIVATED} event type.
928
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
929
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
930
+ # @yieldparam [Wx::TreeEvent] event the event to handle
931
+ def evt_tree_item_activated(id, meth = nil, &block) end
932
+
933
+ # The item has been collapsed. Processes a {Wx::EVT_TREE_ITEM_COLLAPSED} event type.
934
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
935
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
936
+ # @yieldparam [Wx::TreeEvent] event the event to handle
937
+ def evt_tree_item_collapsed(id, meth = nil, &block) end
938
+
939
+ # The item is being collapsed. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_ITEM_COLLAPSING} event type.
940
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
941
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
942
+ # @yieldparam [Wx::TreeEvent] event the event to handle
943
+ def evt_tree_item_collapsing(id, meth = nil, &block) end
944
+
945
+ # The item has been expanded. Processes a {Wx::EVT_TREE_ITEM_EXPANDED} event type.
946
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
947
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
948
+ # @yieldparam [Wx::TreeEvent] event the event to handle
949
+ def evt_tree_item_expanded(id, meth = nil, &block) end
950
+
951
+ # The item is being expanded. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_ITEM_EXPANDING} event type.
952
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
953
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
954
+ # @yieldparam [Wx::TreeEvent] event the event to handle
955
+ def evt_tree_item_expanding(id, meth = nil, &block) end
956
+
957
+ # The user has clicked the item with the right mouse button. Processes a {Wx::EVT_TREE_ITEM_RIGHT_CLICK} event type.
958
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
959
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
960
+ # @yieldparam [Wx::TreeEvent] event the event to handle
961
+ def evt_tree_item_right_click(id, meth = nil, &block) end
962
+
963
+ # The user has clicked the item with the middle mouse button. This is only supported by the generic control. Processes a {Wx::EVT_TREE_ITEM_MIDDLE_CLICK} event type.
964
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
965
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
966
+ # @yieldparam [Wx::TreeEvent] event the event to handle
967
+ def evt_tree_item_middle_click(id, meth = nil, &block) end
968
+
969
+ # Selection has changed. Processes a {Wx::EVT_TREE_SEL_CHANGED} event type.
970
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
971
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
972
+ # @yieldparam [Wx::TreeEvent] event the event to handle
973
+ def evt_tree_sel_changed(id, meth = nil, &block) end
974
+
975
+ # Selection is changing. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_SEL_CHANGING} event type.
976
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
977
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
978
+ # @yieldparam [Wx::TreeEvent] event the event to handle
979
+ def evt_tree_sel_changing(id, meth = nil, &block) end
980
+
981
+ # A key has been pressed. Processes a {Wx::EVT_TREE_KEY_DOWN} event type.
982
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
983
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
984
+ # @yieldparam [Wx::TreeEvent] event the event to handle
985
+ def evt_tree_key_down(id, meth = nil, &block) end
986
+
987
+ # The opportunity to set the item tooltip is being given to the application (call {Wx::TreeEvent#set_tool_tip}). Windows only. Processes a {Wx::EVT_TREE_ITEM_GETTOOLTIP} event type.
988
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
989
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
990
+ # @yieldparam [Wx::TreeEvent] event the event to handle
991
+ def evt_tree_item_gettooltip(id, meth = nil, &block) end
992
+
993
+ # The context menu for the selected item has been requested, either by a right click or by using the menu key. Notice that these events always carry a valid tree item and so are not generated when (right) clicking outside of the items area. If you need to handle such events, consider using {Wx::EVT_CONTEXT_MENU} instead. Processes a {Wx::EVT_TREE_ITEM_MENU} event type.
994
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
995
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
996
+ # @yieldparam [Wx::TreeEvent] event the event to handle
997
+ def evt_tree_item_menu(id, meth = nil, &block) end
998
+
999
+ # The state image has been clicked. Processes a {Wx::EVT_TREE_STATE_IMAGE_CLICK} event type.
1000
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1001
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1002
+ # @yieldparam [Wx::TreeEvent] event the event to handle
1003
+ def evt_tree_state_image_click(id, meth = nil, &block) end
1004
+
1005
+ # Process a {Wx::EVT_SASH_DRAGGED} event, when the user has finished dragging a sash.
1006
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1007
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1008
+ # @yieldparam [Wx::SashEvent] event the event to handle
1009
+ def evt_sash_dragged(id, meth = nil, &block) end
1010
+
1011
+ # Process a {Wx::EVT_SASH_DRAGGED_RANGE} event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged.
1012
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1013
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1014
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1015
+ # @yieldparam [Wx::SashEvent] event the event to handle
1016
+ def evt_sash_dragged_range(id1, id2, meth = nil, &block) end
1017
+
1018
+ # Process a {Wx::EVT_QUERY_LAYOUT_INFO} event, to get size, orientation and alignment from a window.
1019
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1020
+ # @yieldparam [Wx::QueryLayoutInfoEvent] event the event to handle
1021
+ def evt_query_layout_info(meth = nil, &block) end
1022
+
1023
+ # Process a {Wx::EVT_CALCULATE_LAYOUT} event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm.
1024
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1025
+ # @yieldparam [Wx::CalculateLayoutEvent] event the event to handle
1026
+ def evt_calculate_layout(meth = nil, &block) end
1027
+
1028
+ # The page has just been changed (this event cannot be vetoed).
1029
+ # Processes a {Wx::EVT_WIZARD_PAGE_CHANGED} event.
1030
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1031
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1032
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1033
+ def evt_wizard_page_changed(id, meth = nil, &block) end
1034
+
1035
+ # The page is being changed (this event can be vetoed).
1036
+ # Processes a {Wx::EVT_WIZARD_PAGE_CHANGING} event.
1037
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1038
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1039
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1040
+ def evt_wizard_page_changing(id, meth = nil, &block) end
1041
+
1042
+ # Called after Next is clicked but before GetNext is called. Unlike EVT_WIZARD_CHANGING, the handler for this function can change state that might affect the return value of GetNext. This event can be vetoed.
1043
+ # Processes a {Wx::EVT_WIZARD_BEFORE_PAGE_CHANGED} event.
1044
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1045
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1046
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1047
+ def evt_wizard_before_page_changed(id, meth = nil, &block) end
1048
+
1049
+ # The page was shown and laid out (this event cannot be vetoed).
1050
+ # Processes a {Wx::EVT_WIZARD_PAGE_SHOWN} event.
1051
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1052
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1053
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1054
+ def evt_wizard_page_shown(id, meth = nil, &block) end
1055
+
1056
+ # The user attempted to cancel the wizard (this event may also be vetoed).
1057
+ # Processes a {Wx::EVT_WIZARD_CANCEL} event.
1058
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1059
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1060
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1061
+ def evt_wizard_cancel(id, meth = nil, &block) end
1062
+
1063
+ # The wizard help button was pressed.
1064
+ # Processes a {Wx::EVT_WIZARD_HELP} event.
1065
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1066
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1067
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1068
+ def evt_wizard_help(id, meth = nil, &block) end
1069
+
1070
+ # The wizard finished button was pressed.
1071
+ # Processes a {Wx::EVT_WIZARD_FINISHED} event.
1072
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1073
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1074
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1075
+ def evt_wizard_finished(id, meth = nil, &block) end
1076
+
1077
+ # Sent when a media has loaded enough data that it can start playing. Processes a {Wx::EVT_MEDIA_LOADED} event type.
1078
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1079
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1080
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1081
+ def evt_media_loaded(id, meth = nil, &block) end
1082
+
1083
+ # Sent when a media has switched to the {Wx::MediaState::MEDIASTATE_STOPPED} state. You may be able to Veto this event to prevent it from stopping, causing it to continue playing - even if it has reached that end of the media (note that this may not have the desired effect - if you want to loop the media, for example, catch the EVT_MEDIA_FINISHED and play there instead). Processes a {Wx::EVT_MEDIA_STOP} event type.
1084
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1085
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1086
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1087
+ def evt_media_stop(id, meth = nil, &block) end
1088
+
1089
+ # Sent when a media has finished playing in a {Wx::MediaCtrl}. Processes a {Wx::EVT_MEDIA_FINISHED} event type.
1090
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1091
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1092
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1093
+ def evt_media_finished(id, meth = nil, &block) end
1094
+
1095
+ # Sent when a media has switched its state (from any media state). Processes a {Wx::EVT_MEDIA_STATECHANGED} event type.
1096
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1097
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1098
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1099
+ def evt_media_statechanged(id, meth = nil, &block) end
1100
+
1101
+ # Sent when a media has switched to the {Wx::MediaState::MEDIASTATE_PLAYING} state. Processes a {Wx::EVT_MEDIA_PLAY} event type.
1102
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1103
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1104
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1105
+ def evt_media_play(id, meth = nil, &block) end
1106
+
1107
+ # Sent when a media has switched to the {Wx::MediaState::MEDIASTATE_PAUSED} state. Processes a {Wx::EVT_MEDIA_PAUSE} event type.
1108
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1109
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1110
+ # @yieldparam [Wx::MediaEvent] event the event to handle
1111
+ def evt_media_pause(id, meth = nil, &block) end
1112
+
1113
+ # Process a {Wx::EVT_BUTTON} event, when the button is clicked.
1114
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1115
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1116
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1117
+ def evt_button(id, meth = nil, &block) end
1118
+
1119
+ # Process a {Wx::EVT_CHECKBOX} event, when the checkbox is clicked.
1120
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1121
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1122
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1123
+ def evt_checkbox(id, meth = nil, &block) end
1124
+
1125
+ # Process a {Wx::EVT_CHOICE} event, when an item on the list is selected.
1126
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1127
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1128
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1129
+ def evt_choice(id, meth = nil, &block) end
1130
+
1131
+ # Process a {Wx::EVT_COMBOBOX} event, when an item on the list is selected. Note that calling {Wx::ComboBox#get_value} returns the new value of selection.
1132
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1133
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1134
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1135
+ def evt_combobox(id, meth = nil, &block) end
1136
+
1137
+ # Process a {Wx::EVT_LISTBOX} event, when an item on the list is selected or the selection changes.
1138
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1139
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1140
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1141
+ def evt_listbox(id, meth = nil, &block) end
1142
+
1143
+ # Process a {Wx::EVT_LISTBOX_DCLICK} event, when the listbox is double-clicked. On some platforms (notably {Wx::GTK2}) pressing the enter key is handled as an equivalent of a double-click.
1144
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1145
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1146
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1147
+ def evt_listbox_dclick(id, meth = nil, &block) end
1148
+
1149
+ # Process a {Wx::EVT_CHECKLISTBOX} event, when an item in the check list box is checked or unchecked. {Wx::CommandEvent#get_int} will contain the index of the item that was checked or unchecked. {Wx::CommandEvent#is_checked} is not valid! Use {Wx::CheckListBox#is_checked} instead.
1150
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1151
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1152
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1153
+ def evt_checklistbox(id, meth = nil, &block) end
1154
+
1155
+ # The same as EVT_TOOL().
1156
+ # Processes a {Wx::EVT_MENU} event.
1157
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1158
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1159
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1160
+ def evt_menu(id, meth = nil, &block) end
1161
+
1162
+ # The same as EVT_TOOL_RANGE().
1163
+ # Processes a {Wx::EVT_MENU} event.
1164
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1165
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1166
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1167
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1168
+ def evt_menu_range(id1, id2, meth = nil, &block) end
1169
+
1170
+ # Process a {Wx::EVT_RADIOBOX} event, when a radiobutton is clicked.
1171
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1172
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1173
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1174
+ def evt_radiobox(id, meth = nil, &block) end
1175
+
1176
+ # Process a {Wx::EVT_RADIOBUTTON} event, when the radiobutton is clicked.
1177
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1178
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1179
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1180
+ def evt_radiobutton(id, meth = nil, &block) end
1181
+
1182
+ # Process a {Wx::EVT_SCROLLBAR} command, which is generated by a {Wx::ScrollBar} control. This is provided for compatibility only; more specific scrollbar event macros should be used instead (see {Wx::ScrollEvent}).
1183
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1184
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1185
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1186
+ def evt_scrollbar(id, meth = nil, &block) end
1187
+
1188
+ # Process {Wx::EVT_SLIDER} which is generated after any change of {Wx::Slider} position in addition to one of the events above. Notice that the handler of this event receives a {Wx::CommandEvent} as argument and not {Wx::ScrollEvent}, as all the other handlers.
1189
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1190
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1191
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1192
+ def evt_slider(id, meth = nil, &block) end
1193
+
1194
+ # Process a {Wx::EVT_TEXT} event, when the combobox text changes.
1195
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1196
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1197
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1198
+ def evt_text(id, meth = nil, &block) end
1199
+
1200
+ # Process a {Wx::EVT_TEXT_ENTER} event, when RETURN is pressed in the combobox (notice that the combobox must have been created with {Wx::TE_PROCESS_ENTER} style to receive this event).
1201
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1202
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1203
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1204
+ def evt_text_enter(id, meth = nil, &block) end
1205
+
1206
+ # This event is generated when the user tries to enter more text into the control than the limit set by {Wx::TextCtrl#set_max_length}, see its description.
1207
+ # Processes a {Wx::EVT_TEXT_MAXLEN} event.
1208
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1209
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1210
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1211
+ def evt_text_maxlen(id, meth = nil, &block) end
1212
+
1213
+ # Handles a {Wx::EVT_TOGGLEBUTTON} event.
1214
+ # Processes a {Wx::EVT_TOGGLEBUTTON} event.
1215
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1216
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1217
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1218
+ def evt_togglebutton(id, meth = nil, &block) end
1219
+
1220
+ # Process a {Wx::EVT_TOOL} event (a synonym for {Wx::EVT_MENU}). Pass the id of the tool.
1221
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1222
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1223
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1224
+ def evt_tool(id, meth = nil, &block) end
1225
+
1226
+ # Process a {Wx::EVT_TOOL} event for a range of identifiers. Pass the ids of the tools.
1227
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1228
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1229
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1230
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1231
+ def evt_tool_range(id1, id2, meth = nil, &block) end
1232
+
1233
+ # Process a {Wx::EVT_TOOL_RCLICKED} event. Pass the id of the tool. (Not available on {Wx::OSX}.)
1234
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1235
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1236
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1237
+ def evt_tool_rclicked(id, meth = nil, &block) end
1238
+
1239
+ # Process a {Wx::EVT_TOOL_RCLICKED} event for a range of ids. Pass the ids of the tools. (Not available on {Wx::OSX}.)
1240
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1241
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1242
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1243
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1244
+ def evt_tool_rclicked_range(id1, id2, meth = nil, &block) end
1245
+
1246
+ # Process a {Wx::EVT_TOOL_ENTER} event. Pass the id of the toolbar itself. The value of {Wx::CommandEvent#get_selection} is the tool id, or -1 if the mouse cursor has moved off a tool. (Not available on {Wx::OSX}.)
1247
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1248
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1249
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1250
+ def evt_tool_enter(id, meth = nil, &block) end
1251
+
1252
+ # Process a {Wx::EVT_COMMAND_LEFT_CLICK} command, which is generated by a control ({Wx::MSW} only).
1253
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1254
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1255
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1256
+ def evt_command_left_click(id, meth = nil, &block) end
1257
+
1258
+ # Process a {Wx::EVT_COMMAND_LEFT_DCLICK} command, which is generated by a control ({Wx::MSW} only).
1259
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1260
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1261
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1262
+ def evt_command_left_dclick(id, meth = nil, &block) end
1263
+
1264
+ # Process a {Wx::EVT_COMMAND_RIGHT_CLICK} command, which is generated by a control ({Wx::MSW} only).
1265
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1266
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1267
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1268
+ def evt_command_right_click(id, meth = nil, &block) end
1269
+
1270
+ # Process a {Wx::EVT_COMMAND_SET_FOCUS} command, which is generated by a control ({Wx::MSW} only).
1271
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1272
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1273
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1274
+ def evt_command_set_focus(id, meth = nil, &block) end
1275
+
1276
+ # Process a {Wx::EVT_COMMAND_KILL_FOCUS} command, which is generated by a control ({Wx::MSW} only).
1277
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1278
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1279
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1280
+ def evt_command_kill_focus(id, meth = nil, &block) end
1281
+
1282
+ # Process a {Wx::EVT_COMMAND_ENTER} command, which is generated by a control.
1283
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1284
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1285
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1286
+ def evt_command_enter(id, meth = nil, &block) end
1287
+
1288
+ # A connection with the network was established. See {Wx::DialUpEvent}.
1289
+ # Processes a {Wx::EVT_DIALUP_CONNECTED} event.
1290
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1291
+ # @yieldparam [Wx::App] event the event to handle
1292
+ def evt_dialup_connected(meth = nil, &block) end
1293
+
1294
+ # The connection with the network was lost. See {Wx::DialUpEvent}.
1295
+ # Processes a {Wx::EVT_DIALUP_DISCONNECTED} event.
1296
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1297
+ # @yieldparam [Wx::App] event the event to handle
1298
+ def evt_dialup_disconnected(meth = nil, &block) end
1299
+
1300
+ # A mouse event occurred over an URL in the text control.
1301
+ # Processes a {Wx::EVT_TEXT_URL} event.
1302
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1303
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1304
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1305
+ def evt_text_url(id, meth = nil, &block) end
1306
+
1307
+ # Process a {Wx::EVT_COMBOBOX_DROPDOWN} event, which is generated when the list box part of the combo box is shown (drops down). Notice that this event is only supported by {Wx::MSW}, {Wx::GTK} with GTK+ 2.10 or later, and {Wx::OSX}/Cocoa.
1308
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1309
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1310
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1311
+ def evt_combobox_dropdown(id, meth = nil, &block) end
1312
+
1313
+ # Process a {Wx::EVT_COMBOBOX_CLOSEUP} event, which is generated when the list box of the combo box disappears (closes up). This event is only generated for the same platforms as {Wx::EVT_COMBOBOX_DROPDOWN} above.
1314
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1315
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1316
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1317
+ def evt_combobox_closeup(id, meth = nil, &block) end
1318
+
1319
+ # The page selection was changed. Processes a {Wx::EVT_NOTEBOOK_PAGE_CHANGED} event.
1320
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1321
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1322
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1323
+ def evt_notebook_page_changed(id, meth = nil, &block) end
1324
+
1325
+ # The page selection is about to be changed. Processes a {Wx::EVT_NOTEBOOK_PAGE_CHANGING} event. This event can be vetoed.
1326
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1327
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1328
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1329
+ def evt_notebook_page_changing(id, meth = nil, &block) end
1330
+
1331
+ # Process a {Wx::EVT_SPINCTRL} event, which is generated whenever the numeric value of the spin control is updated.
1332
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1333
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1334
+ # @yieldparam [Wx::SpinEvent] event the event to handle
1335
+ def evt_spinctrl(id, meth = nil, &block) end
1336
+
1337
+ # Process a {Wx::EVT_TOOL_DROPDOWN} event. If unhandled, displays the default dropdown menu set using {Wx::ToolBar#set_dropdown_menu}.
1338
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1339
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1340
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1341
+ def evt_tool_dropdown(id, meth = nil, &block) end
1342
+
1343
+ # The page selection was changed. Processes a {Wx::EVT_TOOLBOOK_PAGE_CHANGED} event.
1344
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1345
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1346
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1347
+ def evt_toolbook_page_changed(id, meth = nil, &block) end
1348
+
1349
+ # The page selection is about to be changed. Processes a {Wx::EVT_TOOLBOOK_PAGE_CHANGING} event. This event can be vetoed (using {Wx::NotifyEvent#veto}).
1350
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1351
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1352
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1353
+ def evt_toolbook_page_changing(id, meth = nil, &block) end
1354
+
1355
+ # The page selection was changed. Processes a {Wx::EVT_CHOICEBOOK_PAGE_CHANGED} event.
1356
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1357
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1358
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1359
+ def evt_choicebook_page_changed(id, meth = nil, &block) end
1360
+
1361
+ # The page selection is about to be changed. Processes a {Wx::EVT_CHOICEBOOK_PAGE_CHANGING} event. This event can be vetoed (using {Wx::NotifyEvent#veto}).
1362
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1363
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1364
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1365
+ def evt_choicebook_page_changing(id, meth = nil, &block) end
1366
+
1367
+ # The page selection was changed. Processes a {Wx::EVT_LISTBOOK_PAGE_CHANGED} event.
1368
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1369
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1370
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1371
+ def evt_listbook_page_changed(id, meth = nil, &block) end
1372
+
1373
+ # The page selection is about to be changed. Processes a {Wx::EVT_LISTBOOK_PAGE_CHANGING} event. This event can be vetoed.
1374
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1375
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1376
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1377
+ def evt_listbook_page_changing(id, meth = nil, &block) end
1378
+
1379
+ # The page selection was changed. Processes a {Wx::EVT_TREEBOOK_PAGE_CHANGED} event.
1380
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1381
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1382
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1383
+ def evt_treebook_page_changed(id, meth = nil, &block) end
1384
+
1385
+ # The page selection is about to be changed. Processes a {Wx::EVT_TREEBOOK_PAGE_CHANGING} event. This event can be {Wx::vetoed}.
1386
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1387
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1388
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1389
+ def evt_treebook_page_changing(id, meth = nil, &block) end
1390
+
1391
+ # The page node is going to be collapsed. Processes a {Wx::EVT_TREEBOOK_NODE_COLLAPSED} event.
1392
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1393
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1394
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1395
+ def evt_treebook_node_collapsed(id, meth = nil, &block) end
1396
+
1397
+ # The page node is going to be expanded. Processes a {Wx::EVT_TREEBOOK_NODE_EXPANDED} event.
1398
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1399
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1400
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1401
+ def evt_treebook_node_expanded(id, meth = nil, &block) end
1402
+
1403
+ # The sash position is in the process of being updated. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the update were to be completed. This can happen e.g. when the window is resized and the sash is moved according to the gravity setting. This event is sent when the window is resized and allows the application to select the desired new sash position. If it doesn't process the event, the position is determined by the gravity setting. Processes a {Wx::EVT_SPLITTER_SASH_POS_RESIZE} event and is only available in wxWidgets 3.1.6 or newer.
1404
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1405
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1406
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
1407
+ def evt_splitter_sash_pos_resize(id, meth = nil, &block) end
1408
+
1409
+ # A day was double clicked in the calendar.
1410
+ # Processes a {Wx::EVT_CALENDAR} event.
1411
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1412
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1413
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1414
+ def evt_calendar(id, meth = nil, &block) end
1415
+
1416
+ # The selected date changed.
1417
+ # Processes a {Wx::EVT_CALENDAR_SEL_CHANGED} event.
1418
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1419
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1420
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1421
+ def evt_calendar_sel_changed(id, meth = nil, &block) end
1422
+
1423
+ # The selected month (and/or year) changed.
1424
+ # Processes a {Wx::EVT_CALENDAR_PAGE_CHANGED} event.
1425
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1426
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1427
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1428
+ def evt_calendar_page_changed(id, meth = nil, &block) end
1429
+
1430
+ # User clicked on the week day header (only generic).
1431
+ # Processes a {Wx::EVT_CALENDAR_WEEKDAY_CLICKED} event.
1432
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1433
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1434
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1435
+ def evt_calendar_weekday_clicked(id, meth = nil, &block) end
1436
+
1437
+ # User clicked on the week of the year number (only generic).
1438
+ # Processes a {Wx::EVT_CALENDAR_WEEK_CLICKED} event.
1439
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1440
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1441
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1442
+ def evt_calendar_week_clicked(id, meth = nil, &block) end
1443
+
1444
+ # Process a {Wx::EVT_DATE_CHANGED} event, which fires when the user changes the current selection in the control.
1445
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1446
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1447
+ # @yieldparam [Wx::DateEvent] event the event to handle
1448
+ def evt_date_changed(id, meth = nil, &block) end
1449
+
1450
+ # Process a {Wx::EVT_TIME_CHANGED} event, which fires when the user changes the current selection in the control.
1451
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1452
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1453
+ # @yieldparam [Wx::DateEvent] event the event to handle
1454
+ def evt_time_changed(id, meth = nil, &block) end
1455
+
1456
+ # Process a {Wx::EVT_TASKBAR_MOVE} event.
1457
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1458
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1459
+ def evt_taskbar_move(meth = nil, &block) end
1460
+
1461
+ # Process a {Wx::EVT_TASKBAR_LEFT_DOWN} event.
1462
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1463
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1464
+ def evt_taskbar_left_down(meth = nil, &block) end
1465
+
1466
+ # Process a {Wx::EVT_TASKBAR_LEFT_UP} event.
1467
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1468
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1469
+ def evt_taskbar_left_up(meth = nil, &block) end
1470
+
1471
+ # Process a {Wx::EVT_TASKBAR_RIGHT_DOWN} event.
1472
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1473
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1474
+ def evt_taskbar_right_down(meth = nil, &block) end
1475
+
1476
+ # Process a {Wx::EVT_TASKBAR_RIGHT_UP} event.
1477
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1478
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1479
+ def evt_taskbar_right_up(meth = nil, &block) end
1480
+
1481
+ # Process a {Wx::EVT_TASKBAR_LEFT_DCLICK} event.
1482
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1483
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1484
+ def evt_taskbar_left_dclick(meth = nil, &block) end
1485
+
1486
+ # Process a {Wx::EVT_TASKBAR_RIGHT_DCLICK} event.
1487
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1488
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1489
+ def evt_taskbar_right_dclick(meth = nil, &block) end
1490
+
1491
+ # This is a synonym for either EVT_TASKBAR_RIGHT_DOWN or UP depending on the platform, use this event macro to catch the event which should result in the menu being displayed on the current platform.
1492
+ # Processes a {Wx::EVT_TASKBAR_CLICK} event.
1493
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1494
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1495
+ def evt_taskbar_click(meth = nil, &block) end
1496
+
1497
+ # Selected directory has changed. Processes a {Wx::EVT_DIRCTRL_SELECTIONCHANGED} event type. Notice that this event is generated even for the changes done by the program itself and not only those done by the user. Available since wxWidgets 2.9.5.
1498
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1499
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1500
+ # @yieldparam [Wx::GenericDirCtrl] event the event to handle
1501
+ def evt_dirctrl_selectionchanged(id, meth = nil, &block) end
1502
+
1503
+ # The user activated a file by double-clicking or pressing Enter. Available since wxWidgets 2.9.5.
1504
+ # Processes a {Wx::EVT_DIRCTRL_FILEACTIVATED} event.
1505
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1506
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1507
+ # @yieldparam [Wx::GenericDirCtrl] event the event to handle
1508
+ def evt_dirctrl_fileactivated(id, meth = nil, &block) end
1509
+
1510
+ # @!endgroup
1511
+
1512
+ end