wxruby3 1.6.1 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (530) hide show
  1. checksums.yaml +4 -4
  2. data/CREDITS.md +32 -25
  3. data/INSTALL.md +19 -4
  4. data/README.md +5 -5
  5. data/assets/repo-social-preview.odg +0 -0
  6. data/assets/repo-social-preview.xcf +0 -0
  7. data/ext/wxruby3/include/wxRubyApp.h +58 -45
  8. data/ext/wxruby3/include/wxruby-runtime.h +78 -1
  9. data/ext/wxruby3/swig/common.i +2 -2
  10. data/ext/wxruby3/swig/custom/director.swg +2 -2
  11. data/ext/wxruby3/swig/custom/rubyprimtypes.swg +59 -15
  12. data/ext/wxruby3/swig/custom/rubyrun.swg +4 -0
  13. data/ext/wxruby3/swig/custom/rubytracking.swg +4 -0
  14. data/ext/wxruby3/swig/custom/swiglabels.swg +129 -0
  15. data/ext/wxruby3/swig/custom/swigrun.swg +15 -0
  16. data/ext/wxruby3/swig/custom/typemaps/swigtypemaps.swg +20 -0
  17. data/ext/wxruby3/swig/mark_free_impl.i +152 -88
  18. data/ext/wxruby3/swig/memory_management.i +1 -0
  19. data/ext/wxruby3/swig/wx.i +73 -44
  20. data/lib/wx/aui/events/evt_list.rb +148 -0
  21. data/lib/wx/aui/require.rb +0 -1
  22. data/lib/wx/core/calendar_ctrl.rb +15 -0
  23. data/lib/wx/core/clipboard.rb +9 -13
  24. data/lib/wx/core/config.rb +1 -1
  25. data/lib/wx/core/events/evt_list.rb +1458 -0
  26. data/lib/wx/core/font/encoding.rb +113 -0
  27. data/lib/wx/core/generic_validator.rb +83 -31
  28. data/lib/wx/core/tipwindow.rb +16 -0
  29. data/lib/wx/doc/aui/auitabctrl.rb +35 -0
  30. data/lib/wx/doc/config.rb +2 -2
  31. data/lib/wx/doc/functions.rb +1 -1
  32. data/lib/wx/doc/gen/about_dialog_info.rb +330 -0
  33. data/lib/wx/doc/gen/accelerator.rb +178 -0
  34. data/lib/wx/doc/gen/activity_indicator.rb +83 -0
  35. data/lib/wx/doc/gen/affine_matrix2d.rb +284 -0
  36. data/lib/wx/doc/gen/animation.rb +275 -0
  37. data/lib/wx/doc/gen/animation_ctrl.rb +300 -0
  38. data/lib/wx/doc/gen/any_button.rb +191 -0
  39. data/lib/wx/doc/gen/app.rb +463 -0
  40. data/lib/wx/doc/gen/app_traits.rb +396 -0
  41. data/lib/wx/doc/gen/art_provider.rb +605 -0
  42. data/lib/wx/doc/gen/aui/aui_dock_art.rb +455 -0
  43. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +54 -0
  44. data/lib/wx/doc/gen/aui/aui_manager.rb +847 -0
  45. data/lib/wx/doc/gen/aui/aui_manager_event.rb +131 -0
  46. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +180 -0
  47. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +59 -0
  48. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +130 -0
  49. data/lib/wx/doc/gen/aui/aui_notebook.rb +631 -0
  50. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +233 -0
  51. data/lib/wx/doc/gen/aui/aui_pane_info.rb +769 -0
  52. data/lib/wx/doc/gen/aui/aui_tab_art.rb +352 -0
  53. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +14 -0
  54. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +510 -0
  55. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +340 -0
  56. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +244 -0
  57. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +257 -0
  58. data/lib/wx/doc/gen/aui/event_list.rb +179 -0
  59. data/lib/wx/doc/gen/banner_window.rb +124 -0
  60. data/lib/wx/doc/gen/bitmap.rb +731 -0
  61. data/lib/wx/doc/gen/bitmap_button.rb +123 -0
  62. data/lib/wx/doc/gen/bitmap_combo_box.rb +221 -0
  63. data/lib/wx/doc/gen/book_ctrl_base.rb +273 -0
  64. data/lib/wx/doc/gen/book_ctrl_event.rb +66 -0
  65. data/lib/wx/doc/gen/box_sizer.rb +85 -0
  66. data/lib/wx/doc/gen/brush.rb +251 -0
  67. data/lib/wx/doc/gen/busy_info.rb +157 -0
  68. data/lib/wx/doc/gen/button.rb +182 -0
  69. data/lib/wx/doc/gen/calculate_layout_event.rb +62 -0
  70. data/lib/wx/doc/gen/calendar_ctrl.rb +505 -0
  71. data/lib/wx/doc/gen/calendar_date_attr.rb +138 -0
  72. data/lib/wx/doc/gen/calendar_event.rb +147 -0
  73. data/lib/wx/doc/gen/caret.rb +97 -0
  74. data/lib/wx/doc/gen/check_box.rb +175 -0
  75. data/lib/wx/doc/gen/check_list_box.rb +121 -0
  76. data/lib/wx/doc/gen/choice.rb +175 -0
  77. data/lib/wx/doc/gen/choicebook.rb +116 -0
  78. data/lib/wx/doc/gen/client_dc.rb +43 -0
  79. data/lib/wx/doc/gen/clipboard.rb +144 -0
  80. data/lib/wx/doc/gen/collapsible_pane.rb +138 -0
  81. data/lib/wx/doc/gen/collapsible_pane_event.rb +46 -0
  82. data/lib/wx/doc/gen/colour.rb +333 -0
  83. data/lib/wx/doc/gen/colour_dialog.rb +190 -0
  84. data/lib/wx/doc/gen/colour_picker_ctrl.rb +110 -0
  85. data/lib/wx/doc/gen/colour_picker_event.rb +77 -0
  86. data/lib/wx/doc/gen/combo_box.rb +292 -0
  87. data/lib/wx/doc/gen/combo_ctrl.rb +662 -0
  88. data/lib/wx/doc/gen/command_link_button.rb +134 -0
  89. data/lib/wx/doc/gen/config_base.rb +10 -0
  90. data/lib/wx/doc/gen/context_help_button.rb +109 -0
  91. data/lib/wx/doc/gen/control.rb +277 -0
  92. data/lib/wx/doc/gen/control_with_items.rb +253 -0
  93. data/lib/wx/doc/gen/core.rb +45 -0
  94. data/lib/wx/doc/gen/credential_entry_dialog.rb +137 -0
  95. data/lib/wx/doc/gen/cursor.rb +193 -0
  96. data/lib/wx/doc/gen/data_format.rb +85 -0
  97. data/lib/wx/doc/gen/data_object.rb +436 -0
  98. data/lib/wx/doc/gen/data_object_simple_base.rb +10 -0
  99. data/lib/wx/doc/gen/date_event.rb +49 -0
  100. data/lib/wx/doc/gen/date_picker_ctrl.rb +161 -0
  101. data/lib/wx/doc/gen/dc.rb +1631 -0
  102. data/lib/wx/doc/gen/dc_overlay.rb +102 -0
  103. data/lib/wx/doc/gen/defs.rb +2802 -0
  104. data/lib/wx/doc/gen/dial_up_event.rb +45 -0
  105. data/lib/wx/doc/gen/dial_up_manager.rb +149 -0
  106. data/lib/wx/doc/gen/dialog.rb +541 -0
  107. data/lib/wx/doc/gen/dir_dialog.rb +164 -0
  108. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +90 -0
  109. data/lib/wx/doc/gen/dir_picker_ctrl.rb +125 -0
  110. data/lib/wx/doc/gen/display.rb +238 -0
  111. data/lib/wx/doc/gen/drag_drop.rb +299 -0
  112. data/lib/wx/doc/gen/drag_image.rb +116 -0
  113. data/lib/wx/doc/gen/editable_list_box.rb +109 -0
  114. data/lib/wx/doc/gen/event.rb +990 -0
  115. data/lib/wx/doc/gen/event_blocker.rb +50 -0
  116. data/lib/wx/doc/gen/event_filter.rb +92 -0
  117. data/lib/wx/doc/gen/event_list.rb +1644 -0
  118. data/lib/wx/doc/gen/events.rb +2809 -0
  119. data/lib/wx/doc/gen/evt_handler.rb +229 -0
  120. data/lib/wx/doc/gen/ext_help_controller.rb +109 -0
  121. data/lib/wx/doc/gen/file_ctrl.rb +231 -0
  122. data/lib/wx/doc/gen/file_ctrl_event.rb +83 -0
  123. data/lib/wx/doc/gen/file_dialog.rb +353 -0
  124. data/lib/wx/doc/gen/file_dialog_custom_control.rb +165 -0
  125. data/lib/wx/doc/gen/file_dialog_customize_hook.rb +158 -0
  126. data/lib/wx/doc/gen/file_dir_picker_event.rb +100 -0
  127. data/lib/wx/doc/gen/file_picker_ctrl.rb +132 -0
  128. data/lib/wx/doc/gen/file_system.rb +232 -0
  129. data/lib/wx/doc/gen/find_dialog_event.rb +126 -0
  130. data/lib/wx/doc/gen/find_replace_data.rb +60 -0
  131. data/lib/wx/doc/gen/find_replace_dialog.rb +58 -0
  132. data/lib/wx/doc/gen/flex_grid_sizer.rb +199 -0
  133. data/lib/wx/doc/gen/font.rb +1379 -0
  134. data/lib/wx/doc/gen/font_data.rb +151 -0
  135. data/lib/wx/doc/gen/font_dialog.rb +88 -0
  136. data/lib/wx/doc/gen/font_picker_ctrl.rb +143 -0
  137. data/lib/wx/doc/gen/font_picker_event.rb +65 -0
  138. data/lib/wx/doc/gen/frame.rb +352 -0
  139. data/lib/wx/doc/gen/fs_file.rb +337 -0
  140. data/lib/wx/doc/gen/functions.rb +10 -0
  141. data/lib/wx/doc/gen/gauge.rb +157 -0
  142. data/lib/wx/doc/gen/gb_sizer_item.rb +68 -0
  143. data/lib/wx/doc/gen/gcdc.rb +46 -0
  144. data/lib/wx/doc/gen/gdi_common.rb +1271 -0
  145. data/lib/wx/doc/gen/gdi_object.rb +31 -0
  146. data/lib/wx/doc/gen/generic_about_dialog.rb +140 -0
  147. data/lib/wx/doc/gen/generic_dir_ctrl.rb +223 -0
  148. data/lib/wx/doc/gen/geometry.rb +661 -0
  149. data/lib/wx/doc/gen/graphics_context.rb +1184 -0
  150. data/lib/wx/doc/gen/graphics_object.rb +750 -0
  151. data/lib/wx/doc/gen/grid/event_list.rb +191 -0
  152. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +40 -0
  153. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +280 -0
  154. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +35 -0
  155. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +37 -0
  156. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +49 -0
  157. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +35 -0
  158. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +46 -0
  159. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +38 -0
  160. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +45 -0
  161. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +40 -0
  162. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +197 -0
  163. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +39 -0
  164. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +44 -0
  165. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +45 -0
  166. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +79 -0
  167. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +46 -0
  168. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +35 -0
  169. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +108 -0
  170. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +35 -0
  171. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +49 -0
  172. data/lib/wx/doc/gen/grid/grid_ctrl.rb +3002 -0
  173. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +95 -0
  174. data/lib/wx/doc/gen/grid/grid_event.rb +129 -0
  175. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +104 -0
  176. data/lib/wx/doc/gen/grid/grid_size_event.rb +85 -0
  177. data/lib/wx/doc/gen/grid/grid_string_table.rb +142 -0
  178. data/lib/wx/doc/gen/grid/grid_table_base.rb +317 -0
  179. data/lib/wx/doc/gen/grid/grid_table_message.rb +81 -0
  180. data/lib/wx/doc/gen/grid_bag_sizer.rb +323 -0
  181. data/lib/wx/doc/gen/grid_sizer.rb +195 -0
  182. data/lib/wx/doc/gen/gui_event_loop.rb +159 -0
  183. data/lib/wx/doc/gen/h_scrolled_window.rb +562 -0
  184. data/lib/wx/doc/gen/header_ctrl.rb +880 -0
  185. data/lib/wx/doc/gen/header_ctrl_event.rb +133 -0
  186. data/lib/wx/doc/gen/help_controller.rb +195 -0
  187. data/lib/wx/doc/gen/help_provider.rb +98 -0
  188. data/lib/wx/doc/gen/html/event_list.rb +38 -0
  189. data/lib/wx/doc/gen/html/html_cell.rb +536 -0
  190. data/lib/wx/doc/gen/html/html_cell_event.rb +69 -0
  191. data/lib/wx/doc/gen/html/html_data_object.rb +42 -0
  192. data/lib/wx/doc/gen/html/html_easy_printing.rb +203 -0
  193. data/lib/wx/doc/gen/html/html_help_controller.rb +340 -0
  194. data/lib/wx/doc/gen/html/html_help_data.rb +159 -0
  195. data/lib/wx/doc/gen/html/html_help_window.rb +258 -0
  196. data/lib/wx/doc/gen/html/html_link_event.rb +41 -0
  197. data/lib/wx/doc/gen/html/html_list_box.rb +346 -0
  198. data/lib/wx/doc/gen/html/html_printout.rb +109 -0
  199. data/lib/wx/doc/gen/html/html_window.rb +461 -0
  200. data/lib/wx/doc/gen/hyperlink_ctrl.rb +311 -0
  201. data/lib/wx/doc/gen/hyperlink_event.rb +44 -0
  202. data/lib/wx/doc/gen/icon.rb +267 -0
  203. data/lib/wx/doc/gen/icon_location.rb +40 -0
  204. data/lib/wx/doc/gen/image.rb +1371 -0
  205. data/lib/wx/doc/gen/image_list.rb +168 -0
  206. data/lib/wx/doc/gen/info_bar.rb +195 -0
  207. data/lib/wx/doc/gen/keyboard_state.rb +140 -0
  208. data/lib/wx/doc/gen/list_box.rb +304 -0
  209. data/lib/wx/doc/gen/list_ctrl.rb +1774 -0
  210. data/lib/wx/doc/gen/list_event.rb +208 -0
  211. data/lib/wx/doc/gen/listbook.rb +116 -0
  212. data/lib/wx/doc/gen/locale.rb +4293 -0
  213. data/lib/wx/doc/gen/log.rb +603 -0
  214. data/lib/wx/doc/gen/mdi_client_window.rb +47 -0
  215. data/lib/wx/doc/gen/mdi_frame.rb +324 -0
  216. data/lib/wx/doc/gen/media_ctrl.rb +269 -0
  217. data/lib/wx/doc/gen/media_event.rb +117 -0
  218. data/lib/wx/doc/gen/memory_dc.rb +174 -0
  219. data/lib/wx/doc/gen/menu.rb +509 -0
  220. data/lib/wx/doc/gen/menu_bar.rb +287 -0
  221. data/lib/wx/doc/gen/menu_item.rb +362 -0
  222. data/lib/wx/doc/gen/message_dialog.rb +238 -0
  223. data/lib/wx/doc/gen/mini_frame.rb +108 -0
  224. data/lib/wx/doc/gen/mirror_dc.rb +22 -0
  225. data/lib/wx/doc/gen/mouse_state.rb +150 -0
  226. data/lib/wx/doc/gen/multi_choice_dialog.rb +80 -0
  227. data/lib/wx/doc/gen/non_owned_window.rb +49 -0
  228. data/lib/wx/doc/gen/notebook.rb +278 -0
  229. data/lib/wx/doc/gen/num_validator.rb +37 -0
  230. data/lib/wx/doc/gen/number_entry_dialog.rb +93 -0
  231. data/lib/wx/doc/gen/object.rb +59 -0
  232. data/lib/wx/doc/gen/owner_drawn_combo_box.rb +395 -0
  233. data/lib/wx/doc/gen/paint_dc.rb +27 -0
  234. data/lib/wx/doc/gen/palette.rb +92 -0
  235. data/lib/wx/doc/gen/panel.rb +127 -0
  236. data/lib/wx/doc/gen/pen.rb +511 -0
  237. data/lib/wx/doc/gen/persistence_manager.rb +135 -0
  238. data/lib/wx/doc/gen/persistent_object.rb +52 -0
  239. data/lib/wx/doc/gen/persistent_window.rb +241 -0
  240. data/lib/wx/doc/gen/pg/event_list.rb +106 -0
  241. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +54 -0
  242. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +292 -0
  243. data/lib/wx/doc/gen/pg/pg_cell.rb +177 -0
  244. data/lib/wx/doc/gen/pg/pg_editor.rb +721 -0
  245. data/lib/wx/doc/gen/pg/pg_multi_button.rb +152 -0
  246. data/lib/wx/doc/gen/pg/pg_properties.rb +2829 -0
  247. data/lib/wx/doc/gen/pg/pg_property.rb +2078 -0
  248. data/lib/wx/doc/gen/pg/pg_validation_info.rb +344 -0
  249. data/lib/wx/doc/gen/pg/property_grid.rb +740 -0
  250. data/lib/wx/doc/gen/pg/property_grid_event.rb +184 -0
  251. data/lib/wx/doc/gen/pg/property_grid_interface.rb +1098 -0
  252. data/lib/wx/doc/gen/pg/property_grid_manager.rb +415 -0
  253. data/lib/wx/doc/gen/pg/property_grid_page.rb +354 -0
  254. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +165 -0
  255. data/lib/wx/doc/gen/picker_base.rb +152 -0
  256. data/lib/wx/doc/gen/platform_info.rb +622 -0
  257. data/lib/wx/doc/gen/popup_window.rb +107 -0
  258. data/lib/wx/doc/gen/progress_dialog.rb +100 -0
  259. data/lib/wx/doc/gen/property_sheet_dialog.rb +216 -0
  260. data/lib/wx/doc/gen/prt/event_list.rb +17 -0
  261. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +44 -0
  262. data/lib/wx/doc/gen/prt/post_script_dc.rb +30 -0
  263. data/lib/wx/doc/gen/prt/preview_frame.rb +78 -0
  264. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +151 -0
  265. data/lib/wx/doc/gen/prt/print_data.rb +804 -0
  266. data/lib/wx/doc/gen/prt/print_dialog.rb +55 -0
  267. data/lib/wx/doc/gen/prt/printer.rb +518 -0
  268. data/lib/wx/doc/gen/prt/printer_dc.rb +37 -0
  269. data/lib/wx/doc/gen/query_layout_info_event.rb +106 -0
  270. data/lib/wx/doc/gen/radio_box.rb +306 -0
  271. data/lib/wx/doc/gen/radio_button.rb +159 -0
  272. data/lib/wx/doc/gen/rbn/event_list.rb +136 -0
  273. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1132 -0
  274. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +308 -0
  275. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +45 -0
  276. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +458 -0
  277. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +63 -0
  278. data/lib/wx/doc/gen/rbn/ribbon_control.rb +143 -0
  279. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +229 -0
  280. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +55 -0
  281. data/lib/wx/doc/gen/rbn/ribbon_page.rb +174 -0
  282. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +270 -0
  283. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +45 -0
  284. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +360 -0
  285. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +42 -0
  286. data/lib/wx/doc/gen/rearrange_ctrl.rb +78 -0
  287. data/lib/wx/doc/gen/rearrange_list.rb +123 -0
  288. data/lib/wx/doc/gen/region.rb +380 -0
  289. data/lib/wx/doc/gen/region_iterator.rb +76 -0
  290. data/lib/wx/doc/gen/rich_tool_tip.rb +154 -0
  291. data/lib/wx/doc/gen/rtc/event_list.rb +125 -0
  292. data/lib/wx/doc/gen/rtc/rich_text_box.rb +445 -0
  293. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +1188 -0
  294. data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +41 -0
  295. data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +538 -0
  296. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2103 -0
  297. data/lib/wx/doc/gen/rtc/rich_text_event.rb +173 -0
  298. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +181 -0
  299. data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +319 -0
  300. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +193 -0
  301. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +102 -0
  302. data/lib/wx/doc/gen/rtc/rich_text_image.rb +337 -0
  303. data/lib/wx/doc/gen/rtc/rich_text_object.rb +2922 -0
  304. data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1240 -0
  305. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +258 -0
  306. data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +344 -0
  307. data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +227 -0
  308. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +59 -0
  309. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +169 -0
  310. data/lib/wx/doc/gen/sash_event.rb +147 -0
  311. data/lib/wx/doc/gen/sash_layout_window.rb +232 -0
  312. data/lib/wx/doc/gen/sash_window.rb +171 -0
  313. data/lib/wx/doc/gen/scaled_dc.rb +10 -0
  314. data/lib/wx/doc/gen/screen_dc.rb +30 -0
  315. data/lib/wx/doc/gen/scroll_bar.rb +204 -0
  316. data/lib/wx/doc/gen/scrolled_canvas.rb +410 -0
  317. data/lib/wx/doc/gen/scrolled_control.rb +410 -0
  318. data/lib/wx/doc/gen/scrolled_window.rb +430 -0
  319. data/lib/wx/doc/gen/search_ctrl.rb +159 -0
  320. data/lib/wx/doc/gen/secret_store.rb +116 -0
  321. data/lib/wx/doc/gen/simplebook.rb +110 -0
  322. data/lib/wx/doc/gen/single_choice_dialog.rb +89 -0
  323. data/lib/wx/doc/gen/sizer.rb +945 -0
  324. data/lib/wx/doc/gen/sizer_item.rb +244 -0
  325. data/lib/wx/doc/gen/slider.rb +342 -0
  326. data/lib/wx/doc/gen/spin_button.rb +157 -0
  327. data/lib/wx/doc/gen/spin_ctrl.rb +231 -0
  328. data/lib/wx/doc/gen/spin_ctrl_double.rb +192 -0
  329. data/lib/wx/doc/gen/spin_double_event.rb +55 -0
  330. data/lib/wx/doc/gen/spin_event.rb +51 -0
  331. data/lib/wx/doc/gen/splash_screen.rb +113 -0
  332. data/lib/wx/doc/gen/splitter_event.rb +99 -0
  333. data/lib/wx/doc/gen/splitter_window.rb +498 -0
  334. data/lib/wx/doc/gen/static_bitmap.rb +256 -0
  335. data/lib/wx/doc/gen/static_box.rb +180 -0
  336. data/lib/wx/doc/gen/static_box_sizer.rb +85 -0
  337. data/lib/wx/doc/gen/static_line.rb +83 -0
  338. data/lib/wx/doc/gen/static_text.rb +127 -0
  339. data/lib/wx/doc/gen/status_bar.rb +290 -0
  340. data/lib/wx/doc/gen/stc/event_list.rb +221 -0
  341. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4474 -0
  342. data/lib/wx/doc/gen/stc/styled_text_event.rb +8762 -0
  343. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +129 -0
  344. data/lib/wx/doc/gen/svg_file_dc.rb +164 -0
  345. data/lib/wx/doc/gen/system_options.rb +129 -0
  346. data/lib/wx/doc/gen/system_settings.rb +507 -0
  347. data/lib/wx/doc/gen/task_bar_icon.rb +127 -0
  348. data/lib/wx/doc/gen/task_bar_icon_event.rb +88 -0
  349. data/lib/wx/doc/gen/text_attr.rb +756 -0
  350. data/lib/wx/doc/gen/text_ctrl.rb +1033 -0
  351. data/lib/wx/doc/gen/text_entry.rb +441 -0
  352. data/lib/wx/doc/gen/text_entry_dialog.rb +220 -0
  353. data/lib/wx/doc/gen/text_validator.rb +245 -0
  354. data/lib/wx/doc/gen/time_picker_ctrl.rb +128 -0
  355. data/lib/wx/doc/gen/timer.rb +119 -0
  356. data/lib/wx/doc/gen/timer_event.rb +68 -0
  357. data/lib/wx/doc/gen/tip_provider.rb +63 -0
  358. data/lib/wx/doc/gen/tip_window.rb +51 -0
  359. data/lib/wx/doc/gen/toggle_button.rb +182 -0
  360. data/lib/wx/doc/gen/tool_bar.rb +890 -0
  361. data/lib/wx/doc/gen/tool_tip.rb +86 -0
  362. data/lib/wx/doc/gen/toolbook.rb +118 -0
  363. data/lib/wx/doc/gen/top_level_window.rb +497 -0
  364. data/lib/wx/doc/gen/tree_ctrl.rb +1052 -0
  365. data/lib/wx/doc/gen/tree_event.rb +127 -0
  366. data/lib/wx/doc/gen/treebook.rb +180 -0
  367. data/lib/wx/doc/gen/ui_action_simulator.rb +109 -0
  368. data/lib/wx/doc/gen/utils.rb +273 -0
  369. data/lib/wx/doc/gen/v_list_box.rb +272 -0
  370. data/lib/wx/doc/gen/v_scrolled_canvas.rb +195 -0
  371. data/lib/wx/doc/gen/v_scrolled_window.rb +191 -0
  372. data/lib/wx/doc/gen/validator.rb +68 -0
  373. data/lib/wx/doc/gen/variant.rb +294 -0
  374. data/lib/wx/doc/gen/window.rb +2917 -0
  375. data/lib/wx/doc/gen/window_dc.rb +38 -0
  376. data/lib/wx/doc/gen/window_disabler.rb +30 -0
  377. data/lib/wx/doc/gen/with_images.rb +84 -0
  378. data/lib/wx/doc/gen/wizard.rb +257 -0
  379. data/lib/wx/doc/gen/wizard_event.rb +113 -0
  380. data/lib/wx/doc/gen/wizard_page.rb +65 -0
  381. data/lib/wx/doc/gen/wizard_page_simple.rb +88 -0
  382. data/lib/wx/doc/gen/wrap_sizer.rb +79 -0
  383. data/lib/wx/doc/gen/xml_node.rb +316 -0
  384. data/lib/wx/doc/gen/xml_resource.rb +320 -0
  385. data/lib/wx/doc/generic_validator.rb +5 -0
  386. data/lib/wx/doc/tip_window.rb +18 -6
  387. data/lib/wx/grid/events/evt_list.rb +166 -0
  388. data/lib/wx/html/events/evt_list.rb +27 -0
  389. data/lib/wx/html/simple_html_listbox.rb +46 -33
  390. data/lib/wx/keyword_defs.rb +9 -0
  391. data/lib/wx/pg/events/evt_list.rb +73 -0
  392. data/lib/wx/pg/pg_property.rb +26 -0
  393. data/lib/wx/pg/property_grid_interface.rb +2 -2
  394. data/lib/wx/rbn/events/evt_list.rb +102 -0
  395. data/lib/wx/rtc/events/evt_list.rb +98 -0
  396. data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
  397. data/lib/wx/stc/events/evt_list.rb +178 -0
  398. data/lib/wx/version.rb +1 -1
  399. data/lib/wx/wxruby/cmd/setup.rb +6 -0
  400. data/rakelib/configure.rb +9 -0
  401. data/rakelib/gem.rake +3 -2
  402. data/rakelib/lib/config/linux.rb +1 -1
  403. data/rakelib/lib/config/macosx.rb +15 -1
  404. data/rakelib/lib/config/pkgman/linux.rb +7 -2
  405. data/rakelib/lib/config/unixish.rb +3 -3
  406. data/rakelib/lib/config.rb +16 -5
  407. data/rakelib/lib/core/include/swigdirector.inc +3 -3
  408. data/rakelib/lib/core/include/swigrubyerrors.inc +4 -8
  409. data/rakelib/lib/core/include/swigrubyrun.inc +20 -4
  410. data/rakelib/lib/core/include/swigrun.inc +189 -0
  411. data/rakelib/lib/core/package.rb +3 -1
  412. data/rakelib/lib/director/accelerator.rb +1 -1
  413. data/rakelib/lib/director/animation.rb +1 -0
  414. data/rakelib/lib/director/app_traits.rb +1 -1
  415. data/rakelib/lib/director/aui_manager.rb +21 -14
  416. data/rakelib/lib/director/aui_mdi_child_frame.rb +2 -0
  417. data/rakelib/lib/director/aui_mdi_parent_frame.rb +4 -0
  418. data/rakelib/lib/director/aui_notebook.rb +20 -3
  419. data/rakelib/lib/director/aui_tab_ctrl.rb +64 -106
  420. data/rakelib/lib/director/calendar_ctrl.rb +72 -14
  421. data/rakelib/lib/director/clipboard.rb +2 -0
  422. data/rakelib/lib/director/data_object.rb +15 -7
  423. data/rakelib/lib/director/date_picker_ctrl.rb +4 -1
  424. data/rakelib/lib/director/display.rb +81 -0
  425. data/rakelib/lib/director/event.rb +33 -16
  426. data/rakelib/lib/director/event_handler.rb +27 -2
  427. data/rakelib/lib/director/functions.rb +9 -0
  428. data/rakelib/lib/director/geometry.rb +5 -0
  429. data/rakelib/lib/director/grid_ctrl.rb +123 -28
  430. data/rakelib/lib/director/help_provider.rb +1 -1
  431. data/rakelib/lib/director/html_listbox.rb +16 -3
  432. data/rakelib/lib/director/hvscrolled.rb +7 -106
  433. data/rakelib/lib/director/image_list.rb +1 -0
  434. data/rakelib/lib/director/mdi_frame.rb +4 -0
  435. data/rakelib/lib/director/menu.rb +56 -15
  436. data/rakelib/lib/director/menu_bar.rb +62 -0
  437. data/rakelib/lib/director/menu_item.rb +7 -1
  438. data/rakelib/lib/director/num_validator.rb +27 -0
  439. data/rakelib/lib/director/numeric_property_validator.rb +9 -0
  440. data/rakelib/lib/director/popup_window.rb +2 -0
  441. data/rakelib/lib/director/preview_frame.rb +29 -6
  442. data/rakelib/lib/director/printer.rb +59 -5
  443. data/rakelib/lib/director/property_grid.rb +37 -18
  444. data/rakelib/lib/director/property_grid_interface.rb +10 -8
  445. data/rakelib/lib/director/property_grid_manager.rb +99 -39
  446. data/rakelib/lib/director/property_grid_page.rb +60 -0
  447. data/rakelib/lib/director/rich_tooltip.rb +22 -0
  448. data/rakelib/lib/director/richtext_ctrl.rb +5 -0
  449. data/rakelib/lib/director/richtext_object.rb +13 -4
  450. data/rakelib/lib/director/richtext_style_listbox.rb +4 -1
  451. data/rakelib/lib/director/scrolled_t.rb +3 -0
  452. data/rakelib/lib/director/searchctrl.rb +1 -0
  453. data/rakelib/lib/director/task_bar_icon.rb +14 -8
  454. data/rakelib/lib/director/text_validator.rb +9 -0
  455. data/rakelib/lib/director/tip_window.rb +117 -6
  456. data/rakelib/lib/director/tool_bar.rb +6 -0
  457. data/rakelib/lib/director/validator.rb +12 -0
  458. data/rakelib/lib/director/variant.rb +36 -20
  459. data/rakelib/lib/director/vlistbox.rb +25 -22
  460. data/rakelib/lib/director/window.rb +10 -1
  461. data/rakelib/lib/director/xml_resource.rb +6 -0
  462. data/rakelib/lib/generate/doc/aui_manager.yaml +1 -1
  463. data/rakelib/lib/generate/doc/rich_tool_tip.yaml +26 -0
  464. data/rakelib/lib/generate/doc.rb +12 -7
  465. data/rakelib/lib/generate/interface.rb +16 -1
  466. data/rakelib/lib/specs/interfaces.rb +3 -1
  467. data/rakelib/lib/swig_runner.rb +10 -10
  468. data/rakelib/lib/typemap/aui_tabctrl.rb +46 -0
  469. data/rakelib/lib/typemap/common.rb +3 -3
  470. data/rakelib/lib/typemap/print_page_range.rb +32 -8
  471. data/samples/art/wxruby-512x512.png +0 -0
  472. data/samples/calendar/calendar.rb +64 -1
  473. data/samples/dialogs/dialogs.rb +172 -0
  474. data/samples/dialogs/tip.xpm +157 -0
  475. data/samples/drawing/maths_images.rb +1 -1
  476. data/samples/event/event.rb +1 -1
  477. data/samples/printing/printing2.rb +1 -1
  478. data/samples/sampler.rb +26 -8
  479. data/samples/text/textctrl.rb +2 -2
  480. data/samples/treectrl/treectrl.rb +2 -2
  481. data/tests/lib/leaked_process_event_exception_test.rb +1 -1
  482. data/tests/lib/leaked_queued_event_exception_test.rb +1 -1
  483. data/tests/lib/wxapp_runner.rb +31 -41
  484. data/tests/lib/wxframe_runner.rb +23 -11
  485. data/tests/lib/wxrb_test.rb +58 -0
  486. data/tests/test_app_event_filter.rb +1 -1
  487. data/tests/test_app_exit_exception.rb +3 -3
  488. data/tests/test_app_init_exception.rb +3 -3
  489. data/tests/test_app_traits.rb +24 -21
  490. data/tests/test_art.rb +7 -7
  491. data/tests/test_art_provider.rb +1 -1
  492. data/tests/test_basic.rb +2 -2
  493. data/tests/test_book_controls.rb +1 -1
  494. data/tests/test_box_sizer.rb +1 -1
  495. data/tests/test_clipboard.rb +5 -5
  496. data/tests/test_combo_ctrl.rb +2 -2
  497. data/tests/test_config.rb +11 -1
  498. data/tests/test_dc.rb +1 -1
  499. data/tests/test_dialog.rb +1 -1
  500. data/tests/test_event_handling.rb +1 -1
  501. data/tests/test_events.rb +1 -1
  502. data/tests/test_exceptions.rb +2 -2
  503. data/tests/test_ext_controls.rb +10 -10
  504. data/tests/test_file_dialog.rb +1 -1
  505. data/tests/test_font.rb +1 -1
  506. data/tests/test_gdi_object.rb +1 -1
  507. data/tests/test_geometry.rb +2 -2
  508. data/tests/test_grid_sizer.rb +2 -2
  509. data/tests/test_intl.rb +1 -1
  510. data/tests/test_item_data.rb +12 -12
  511. data/tests/test_list_ctrl.rb +1 -1
  512. data/tests/test_log.rb +2 -2
  513. data/tests/test_media_ctrl.rb +1 -1
  514. data/tests/test_menu.rb +114 -43
  515. data/tests/test_proof_check.rb +1 -1
  516. data/tests/test_propgrid.rb +31 -31
  517. data/tests/test_richtext.rb +10 -24
  518. data/tests/test_secret_store.rb +1 -1
  519. data/tests/test_sizer.rb +1 -1
  520. data/tests/test_std_controls.rb +8 -8
  521. data/tests/test_styled_text_ctrl.rb +1 -1
  522. data/tests/test_timer.rb +1 -1
  523. data/tests/test_tree_ctrl.rb +1 -1
  524. data/tests/test_validators.rb +79 -36
  525. data/tests/test_variant.rb +1 -1
  526. data/tests/test_window.rb +11 -11
  527. data/tests/testapp.rb +2 -2
  528. data/tests/testapp_noframe.rb +2 -2
  529. metadata +400 -11
  530. data/lib/wx/aui/aui_tab_ctrl.rb +0 -18
@@ -0,0 +1,1644 @@
1
+ # ----------------------------------------------------------------------------
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # ----------------------------------------------------------------------------
5
+
6
+
7
+ module Wx
8
+
9
+ class EvtHandler
10
+
11
+ # @!group Wx Event handler methods
12
+
13
+ # Process a {Wx::EVT_IDLE} event. See {Wx::IdleEvent}.
14
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
15
+ # @yieldparam [Wx::IdleEvent] event the event to handle
16
+ def evt_idle(meth = nil, &block) end
17
+
18
+ # Process all scroll events.
19
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
20
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
21
+ def evt_scroll(meth = nil, &block) end
22
+
23
+ # Process {Wx::EVT_SCROLL_TOP} scroll to top or leftmost (minimum) position events.
24
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
25
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
26
+ def evt_scroll_top(meth = nil, &block) end
27
+
28
+ # Process {Wx::EVT_SCROLL_BOTTOM} scroll to bottom or rightmost (maximum) position events.
29
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
30
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
31
+ def evt_scroll_bottom(meth = nil, &block) end
32
+
33
+ # Process {Wx::EVT_SCROLL_LINEUP} line up or left events.
34
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
35
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
36
+ def evt_scroll_lineup(meth = nil, &block) end
37
+
38
+ # Process {Wx::EVT_SCROLL_LINEDOWN} line down or right events.
39
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
40
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
41
+ def evt_scroll_linedown(meth = nil, &block) end
42
+
43
+ # Process {Wx::EVT_SCROLL_PAGEUP} page up or left events.
44
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
45
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
46
+ def evt_scroll_pageup(meth = nil, &block) end
47
+
48
+ # Process {Wx::EVT_SCROLL_PAGEDOWN} page down or right events.
49
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
50
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
51
+ def evt_scroll_pagedown(meth = nil, &block) end
52
+
53
+ # Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
54
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
55
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
56
+ def evt_scroll_thumbtrack(meth = nil, &block) end
57
+
58
+ # Process {Wx::EVT_SCROLL_THUMBRELEASE} thumb release events.
59
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
60
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
61
+ def evt_scroll_thumbrelease(meth = nil, &block) end
62
+
63
+ # Process {Wx::EVT_SCROLL_CHANGED} end of scrolling events (MSW only).
64
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
65
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
66
+ def evt_scroll_changed(meth = nil, &block) end
67
+
68
+ # Process all scroll events.
69
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
70
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
71
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
72
+ def evt_command_scroll(id, meth = nil, &block) end
73
+
74
+ # Process {Wx::EVT_SCROLL_TOP} scroll to top or leftmost (minimum) position events.
75
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
76
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
77
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
78
+ def evt_command_scroll_top(id, meth = nil, &block) end
79
+
80
+ # Process {Wx::EVT_SCROLL_BOTTOM} scroll to bottom or rightmost (maximum) position events.
81
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
82
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
83
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
84
+ def evt_command_scroll_bottom(id, meth = nil, &block) end
85
+
86
+ # Process {Wx::EVT_SCROLL_LINEUP} line up or left events.
87
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
88
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
89
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
90
+ def evt_command_scroll_lineup(id, meth = nil, &block) end
91
+
92
+ # Process {Wx::EVT_SCROLL_LINEDOWN} line down or right events.
93
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
94
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
95
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
96
+ def evt_command_scroll_linedown(id, meth = nil, &block) end
97
+
98
+ # Process {Wx::EVT_SCROLL_PAGEUP} page up or left events.
99
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
100
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
101
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
102
+ def evt_command_scroll_pageup(id, meth = nil, &block) end
103
+
104
+ # Process {Wx::EVT_SCROLL_PAGEDOWN} page down or right events.
105
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
106
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
107
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
108
+ def evt_command_scroll_pagedown(id, meth = nil, &block) end
109
+
110
+ # Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
111
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
112
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
113
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
114
+ def evt_command_scroll_thumbtrack(id, meth = nil, &block) end
115
+
116
+ # Processes a {Wx::EVT_COMMAND_SCROLL_THUMBRELEASE} event.
117
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
118
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
119
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
120
+ def evt_command_scroll_thumbrelease(id, meth = nil, &block) end
121
+
122
+ # Processes a {Wx::EVT_COMMAND_SCROLL_CHANGED} event.
123
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
124
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
125
+ # @yieldparam [Wx::ScrollEvent] event the event to handle
126
+ def evt_command_scroll_changed(id, meth = nil, &block) end
127
+
128
+ # Process all scroll events.
129
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
130
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
131
+ def evt_scrollwin(meth = nil, &block) end
132
+
133
+ # Process {Wx::EVT_SCROLLWIN_TOP} scroll-to-top events.
134
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
135
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
136
+ def evt_scrollwin_top(meth = nil, &block) end
137
+
138
+ # Process {Wx::EVT_SCROLLWIN_BOTTOM} scroll-to-bottom events.
139
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
140
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
141
+ def evt_scrollwin_bottom(meth = nil, &block) end
142
+
143
+ # Process {Wx::EVT_SCROLLWIN_LINEUP} line up events.
144
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
145
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
146
+ def evt_scrollwin_lineup(meth = nil, &block) end
147
+
148
+ # Process {Wx::EVT_SCROLLWIN_LINEDOWN} line down events.
149
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
150
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
151
+ def evt_scrollwin_linedown(meth = nil, &block) end
152
+
153
+ # Process {Wx::EVT_SCROLLWIN_PAGEUP} page up events.
154
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
155
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
156
+ def evt_scrollwin_pageup(meth = nil, &block) end
157
+
158
+ # Process {Wx::EVT_SCROLLWIN_PAGEDOWN} page down events.
159
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
160
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
161
+ def evt_scrollwin_pagedown(meth = nil, &block) end
162
+
163
+ # Process {Wx::EVT_SCROLLWIN_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
164
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
165
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
166
+ def evt_scrollwin_thumbtrack(meth = nil, &block) end
167
+
168
+ # Process {Wx::EVT_SCROLLWIN_THUMBRELEASE} thumb release events.
169
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
170
+ # @yieldparam [Wx::ScrollWinEvent] event the event to handle
171
+ def evt_scrollwin_thumbrelease(meth = nil, &block) end
172
+
173
+ # 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.
174
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
175
+ # @yieldparam [Wx::MouseEvent] event the event to handle
176
+ def evt_left_down(meth = nil, &block) end
177
+
178
+ # Process a {Wx::EVT_LEFT_UP} event.
179
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
180
+ # @yieldparam [Wx::MouseEvent] event the event to handle
181
+ def evt_left_up(meth = nil, &block) end
182
+
183
+ # Process a {Wx::EVT_LEFT_DCLICK} event.
184
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
185
+ # @yieldparam [Wx::MouseEvent] event the event to handle
186
+ def evt_left_dclick(meth = nil, &block) end
187
+
188
+ # Process a {Wx::EVT_MIDDLE_DOWN} event.
189
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
190
+ # @yieldparam [Wx::MouseEvent] event the event to handle
191
+ def evt_middle_down(meth = nil, &block) end
192
+
193
+ # Process a {Wx::EVT_MIDDLE_UP} event.
194
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
195
+ # @yieldparam [Wx::MouseEvent] event the event to handle
196
+ def evt_middle_up(meth = nil, &block) end
197
+
198
+ # Process a {Wx::EVT_MIDDLE_DCLICK} event.
199
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
200
+ # @yieldparam [Wx::MouseEvent] event the event to handle
201
+ def evt_middle_dclick(meth = nil, &block) end
202
+
203
+ # Process a {Wx::EVT_RIGHT_DOWN} event.
204
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
205
+ # @yieldparam [Wx::MouseEvent] event the event to handle
206
+ def evt_right_down(meth = nil, &block) end
207
+
208
+ # Process a {Wx::EVT_RIGHT_UP} event.
209
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
210
+ # @yieldparam [Wx::MouseEvent] event the event to handle
211
+ def evt_right_up(meth = nil, &block) end
212
+
213
+ # Process a {Wx::EVT_RIGHT_DCLICK} event.
214
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
215
+ # @yieldparam [Wx::MouseEvent] event the event to handle
216
+ def evt_right_dclick(meth = nil, &block) end
217
+
218
+ # Process a {Wx::EVT_AUX1_DOWN} event.
219
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
220
+ # @yieldparam [Wx::MouseEvent] event the event to handle
221
+ def evt_mouse_aux1_down(meth = nil, &block) end
222
+
223
+ # Process a {Wx::EVT_AUX1_UP} event.
224
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
225
+ # @yieldparam [Wx::MouseEvent] event the event to handle
226
+ def evt_mouse_aux1_up(meth = nil, &block) end
227
+
228
+ # Process a {Wx::EVT_AUX1_DCLICK} event.
229
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
230
+ # @yieldparam [Wx::MouseEvent] event the event to handle
231
+ def evt_mouse_aux1_dclick(meth = nil, &block) end
232
+
233
+ # Process 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
+ # Process a {Wx::EVT_AUX2_UP} event.
239
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
240
+ # @yieldparam [Wx::MouseEvent] event the event to handle
241
+ def evt_mouse_aux2_up(meth = nil, &block) end
242
+
243
+ # Process a {Wx::EVT_AUX2_DCLICK} event.
244
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
245
+ # @yieldparam [Wx::MouseEvent] event the event to handle
246
+ def evt_mouse_aux2_dclick(meth = nil, &block) end
247
+
248
+ # Process a {Wx::EVT_MOTION} event.
249
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
250
+ # @yieldparam [Wx::MouseEvent] event the event to handle
251
+ def evt_motion(meth = nil, &block) end
252
+
253
+ # Process a {Wx::EVT_ENTER_WINDOW} event.
254
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
255
+ # @yieldparam [Wx::MouseEvent] event the event to handle
256
+ def evt_enter_window(meth = nil, &block) end
257
+
258
+ # Process a {Wx::EVT_LEAVE_WINDOW} event.
259
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
260
+ # @yieldparam [Wx::MouseEvent] event the event to handle
261
+ def evt_leave_window(meth = nil, &block) end
262
+
263
+ # Process a {Wx::EVT_MOUSEWHEEL} event.
264
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
265
+ # @yieldparam [Wx::MouseEvent] event the event to handle
266
+ def evt_mousewheel(meth = nil, &block) end
267
+
268
+ # Process all mouse events.
269
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
270
+ # @yieldparam [Wx::MouseEvent] event the event to handle
271
+ def evt_mouse_events(meth = nil, &block) end
272
+
273
+ # Process a {Wx::EVT_MAGNIFY} event (new since wxWidgets 3.1.0).
274
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
275
+ # @yieldparam [Wx::MouseEvent] event the event to handle
276
+ def evt_magnify(meth = nil, &block) end
277
+
278
+ # Process a {Wx::EVT_SET_CURSOR} event. See {Wx::SetCursorEvent}.
279
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
280
+ # @yieldparam [Wx::SetCursorEvent] event the event to handle
281
+ def evt_set_cursor(meth = nil, &block) end
282
+
283
+ # Process a {Wx::EVT_GESTURE_PAN}.
284
+ # Processes a {Wx::EVT_GESTURE_PAN} event.
285
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
286
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
287
+ # @yieldparam [Wx::PanGestureEvent] event the event to handle
288
+ def evt_gesture_pan(id, meth = nil, &block) end
289
+
290
+ # Process a {Wx::EVT_GESTURE_ZOOM}.
291
+ # Processes a {Wx::EVT_GESTURE_ZOOM} event.
292
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
293
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
294
+ # @yieldparam [Wx::ZoomGestureEvent] event the event to handle
295
+ def evt_gesture_zoom(id, meth = nil, &block) end
296
+
297
+ # Process a {Wx::EVT_GESTURE_ROTATE}.
298
+ # Processes a {Wx::EVT_GESTURE_ROTATE} event.
299
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
300
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
301
+ # @yieldparam [Wx::RotateGestureEvent] event the event to handle
302
+ def evt_gesture_rotate(id, meth = nil, &block) end
303
+
304
+ # Process a {Wx::EVT_TWO_FINGER_TAP}.
305
+ # Processes a {Wx::EVT_TWO_FINGER_TAP} event.
306
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
307
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
308
+ # @yieldparam [Wx::TwoFingerTapEvent] event the event to handle
309
+ def evt_two_finger_tap(id, meth = nil, &block) end
310
+
311
+ # Process a {Wx::EVT_LONG_PRESS}.
312
+ # Processes a {Wx::EVT_LONG_PRESS} event.
313
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
314
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
315
+ # @yieldparam [Wx::LongPressEvent] event the event to handle
316
+ def evt_long_press(id, meth = nil, &block) end
317
+
318
+ # Process a {Wx::EVT_PRESS_AND_TAP}.
319
+ # Processes a {Wx::EVT_PRESS_AND_TAP} event.
320
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
321
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
322
+ # @yieldparam [Wx::PressAndTapEvent] event the event to handle
323
+ def evt_press_and_tap(id, meth = nil, &block) end
324
+
325
+ # Process a {Wx::EVT_KEY_DOWN} event (any key has been pressed). See {Wx::KeyEvent}.
326
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
327
+ # @yieldparam [Wx::KeyEvent] event the event to handle
328
+ def evt_key_down(meth = nil, &block) end
329
+
330
+ # Process a {Wx::EVT_KEY_UP} event (any key has been released). See {Wx::KeyEvent}.
331
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
332
+ # @yieldparam [Wx::KeyEvent] event the event to handle
333
+ def evt_key_up(meth = nil, &block) end
334
+
335
+ # Process a {Wx::EVT_CHAR} event. See {Wx::KeyEvent}.
336
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
337
+ # @yieldparam [Wx::KeyEvent] event the event to handle
338
+ def evt_char(meth = nil, &block) end
339
+
340
+ # Process a {Wx::EVT_CHAR_HOOK} event. See {Wx::KeyEvent}.
341
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
342
+ # @yieldparam [Wx::KeyEvent] event the event to handle
343
+ def evt_char_hook(meth = nil, &block) end
344
+
345
+ # Process a {Wx::EVT_SIZE} event. See {Wx::SizeEvent}.
346
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
347
+ # @yieldparam [Wx::SizeEvent] event the event to handle
348
+ def evt_size(meth = nil, &block) end
349
+
350
+ # Process a {Wx::EVT_MOVE} event, which is generated when a window is moved. See {Wx::MoveEvent}.
351
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
352
+ # @yieldparam [Wx::MoveEvent] event the event to handle
353
+ def evt_move(meth = nil, &block) end
354
+
355
+ # Process a {Wx::EVT_MOVE_START} event, which is generated when the user starts to move or size a window. WXMSW only. See {Wx::MoveEvent}.
356
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
357
+ # @yieldparam [Wx::MoveEvent] event the event to handle
358
+ def evt_move_start(meth = nil, &block) end
359
+
360
+ # Process a {Wx::EVT_MOVING} event, which is generated while the user is moving the window. WXMSW only.
361
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
362
+ # @yieldparam [Wx::MoveEvent] event the event to handle
363
+ def evt_moving(meth = nil, &block) end
364
+
365
+ # Process a {Wx::EVT_MOVE_END} event, which is generated when the user stops moving or sizing a window. WXMSW only. See {Wx::MoveEvent}.
366
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
367
+ # @yieldparam [Wx::MoveEvent] event the event to handle
368
+ def evt_move_end(meth = nil, &block) end
369
+
370
+ # Process a {Wx::EVT_PAINT} event. See {Wx::PaintEvent}.
371
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
372
+ # @yieldparam [Wx::PaintEvent] event the event to handle
373
+ def evt_paint(meth = nil, &block) end
374
+
375
+ # Process a {Wx::EVT_ERASE_BACKGROUND} event. See {Wx::EraseEvent}.
376
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
377
+ # @yieldparam [Wx::EraseEvent] event the event to handle
378
+ def evt_erase_background(meth = nil, &block) end
379
+
380
+ # Process a {Wx::EVT_SET_FOCUS} event. See {Wx::FocusEvent}.
381
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
382
+ # @yieldparam [Wx::FocusEvent] event the event to handle
383
+ def evt_set_focus(meth = nil, &block) end
384
+
385
+ # Process a {Wx::EVT_KILL_FOCUS} event. See {Wx::FocusEvent}.
386
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
387
+ # @yieldparam [Wx::FocusEvent] event the event to handle
388
+ def evt_kill_focus(meth = nil, &block) end
389
+
390
+ # Process a {Wx::EVT_ACTIVATE} event. See {Wx::ActivateEvent}.
391
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
392
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
393
+ def evt_activate(meth = nil, &block) end
394
+
395
+ # Process a {Wx::EVT_ACTIVATE_APP} event. See {Wx::ActivateEvent}.
396
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
397
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
398
+ def evt_activate_app(meth = nil, &block) end
399
+
400
+ # Process a hibernate event. See {Wx::ActivateEvent}.
401
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
402
+ # @yieldparam [Wx::ActivateEvent] event the event to handle
403
+ def evt_hibernate(meth = nil, &block) end
404
+
405
+ # Process a {Wx::EVT_INIT_DIALOG} event. See {Wx::InitDialogEvent}.
406
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
407
+ # @yieldparam [Wx::InitDialogEvent] event the event to handle
408
+ def evt_init_dialog(meth = nil, &block) end
409
+
410
+ # 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}.
411
+ # Processes a {Wx::EVT_MENU_OPEN} event.
412
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
413
+ # @yieldparam [Wx::MenuEvent] event the event to handle
414
+ def evt_menu_open(meth = nil, &block) end
415
+
416
+ # A menu has been just closed. This type of event is sent as {Wx::MenuEvent}.
417
+ # Processes a {Wx::EVT_MENU_CLOSE} event.
418
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
419
+ # @yieldparam [Wx::MenuEvent] event the event to handle
420
+ def evt_menu_close(meth = nil, &block) end
421
+
422
+ # 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}.
423
+ # Processes a {Wx::EVT_MENU_HIGHLIGHT} event.
424
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
425
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
426
+ # @yieldparam [Wx::MenuEvent] event the event to handle
427
+ def evt_menu_highlight(id, meth = nil, &block) end
428
+
429
+ # A menu item has been highlighted, i.e. the currently selected menu item has changed. This type of event is sent as {Wx::MenuEvent}.
430
+ # Processes a {Wx::EVT_MENU_HIGHLIGHT_ALL} event.
431
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
432
+ # @yieldparam [Wx::MenuEvent] event the event to handle
433
+ def evt_menu_highlight_all(meth = nil, &block) end
434
+
435
+ # 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).
436
+ # Processes a {Wx::EVT_CLOSE_WINDOW} event.
437
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
438
+ # @yieldparam [Wx::CloseEvent] event the event to handle
439
+ def evt_close(meth = nil, &block) end
440
+
441
+ # Process a query end session event, supplying the member function. See {Wx::CloseEvent}.
442
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
443
+ # @yieldparam [Wx::CloseEvent] event the event to handle
444
+ def evt_query_end_session(meth = nil, &block) end
445
+
446
+ # Process an end session event, supplying the member function. See {Wx::CloseEvent}.
447
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
448
+ # @yieldparam [Wx::CloseEvent] event the event to handle
449
+ def evt_end_session(meth = nil, &block) end
450
+
451
+ # Process a {Wx::EVT_SHOW} event. See {Wx::ShowEvent}.
452
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
453
+ # @yieldparam [Wx::ShowEvent] event the event to handle
454
+ def evt_show(meth = nil, &block) end
455
+
456
+ # Process a {Wx::EVT_ICONIZE} event. See {Wx::IconizeEvent}.
457
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
458
+ # @yieldparam [Wx::IconizeEvent] event the event to handle
459
+ def evt_iconize(meth = nil, &block) end
460
+
461
+ # Process a {Wx::EVT_MAXIMIZE} event. See {Wx::MaximizeEvent}.
462
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
463
+ # @yieldparam [Wx::MaximizeEvent] event the event to handle
464
+ def evt_maximize(meth = nil, &block) end
465
+
466
+ # Process a {Wx::EVT_FULLSCREEN} event. See {Wx::FullScreenEvent}.
467
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
468
+ # @yieldparam [Wx::FullScreenEvent] event the event to handle
469
+ def evt_fullscreen(meth = nil, &block) end
470
+
471
+ # Process a {Wx::EVT_JOY_BUTTON_DOWN} event.
472
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
473
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
474
+ def evt_joy_button_down(meth = nil, &block) end
475
+
476
+ # Process a {Wx::EVT_JOY_BUTTON_UP} event.
477
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
478
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
479
+ def evt_joy_button_up(meth = nil, &block) end
480
+
481
+ # Process a {Wx::EVT_JOY_MOVE} event.
482
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
483
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
484
+ def evt_joy_move(meth = nil, &block) end
485
+
486
+ # Process a {Wx::EVT_JOY_ZMOVE} event.
487
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
488
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
489
+ def evt_joy_zmove(meth = nil, &block) end
490
+
491
+ # Processes all joystick events.
492
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
493
+ # @yieldparam [Wx::JoystickEvent] event the event to handle
494
+ def evt_joystick_events(meth = nil, &block) end
495
+
496
+ # Process a {Wx::EVT_DROP_FILES} event. See {Wx::DropFilesEvent}.
497
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
498
+ # @yieldparam [Wx::DropFilesEvent] event the event to handle
499
+ def evt_drop_files(meth = nil, &block) end
500
+
501
+ # Process a {Wx::EVT_UPDATE_UI} event for the command with the given id.
502
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
503
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
504
+ # @yieldparam [Wx::UpdateUIEvent] event the event to handle
505
+ def evt_update_ui(id, meth = nil, &block) end
506
+
507
+ # Process a {Wx::EVT_UPDATE_UI} event for any command with id included in the given range.
508
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
509
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
510
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
511
+ # @yieldparam [Wx::UpdateUIEvent] event the event to handle
512
+ def evt_update_ui_range(id1, id2, meth = nil, &block) end
513
+
514
+ # Process a {Wx::EVT_SYS_COLOUR_CHANGED} event. See {Wx::SysColourChangedEvent}.
515
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
516
+ # @yieldparam [Wx::SysColourChangedEvent] event the event to handle
517
+ def evt_sys_colour_changed(meth = nil, &block) end
518
+
519
+ # Process a {Wx::EVT_DPI_CHANGED} event.
520
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
521
+ # @yieldparam [Wx::DPIChangedEvent] event the event to handle
522
+ def evt_dpi_changed(meth = nil, &block) end
523
+
524
+ # Process a navigation key event.
525
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
526
+ # @yieldparam [Wx::NavigationKeyEvent] event the event to handle
527
+ def evt_navigation_key(meth = nil, &block) end
528
+
529
+ # Process a {Wx::EVT_CREATE} event.
530
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
531
+ # @yieldparam [Wx::WindowCreateEvent] event the event to handle
532
+ def evt_window_create(meth = nil, &block) end
533
+
534
+ # Process a {Wx::EVT_HELP} event. See {Wx::HelpEvent}.
535
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
536
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
537
+ # @yieldparam [Wx::HelpEvent] event the event to handle
538
+ def evt_help(id, meth = nil, &block) end
539
+
540
+ # Process a {Wx::EVT_HELP} event for a range of ids. See {Wx::HelpEvent}.
541
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
542
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
543
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
544
+ # @yieldparam [Wx::HelpEvent] event the event to handle
545
+ def evt_help_range(id1, id2, meth = nil, &block) end
546
+
547
+ # Some or all of the controls content was copied to the clipboard.
548
+ # Processes a {Wx::EVT_TEXT_COPY} event.
549
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
550
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
551
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
552
+ def evt_text_copy(id, meth = nil, &block) end
553
+
554
+ # Some or all of the controls content was cut (i.e. copied and deleted).
555
+ # Processes a {Wx::EVT_TEXT_CUT} event.
556
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
557
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
558
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
559
+ def evt_text_cut(id, meth = nil, &block) end
560
+
561
+ # Clipboard content was pasted into the control.
562
+ # Processes a {Wx::EVT_TEXT_PASTE} event.
563
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
564
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
565
+ # @yieldparam [Wx::ClipboardTextEvent] event the event to handle
566
+ def evt_text_paste(id, meth = nil, &block) end
567
+
568
+ # A right click (or other context menu command depending on platform) has been detected. See {Wx::ContextMenuEvent}.
569
+ # Processes a {Wx::EVT_CONTEXT_MENU} event.
570
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
571
+ # @yieldparam [Wx::ContextMenuEvent] event the event to handle
572
+ def evt_context_menu(meth = nil, &block) end
573
+
574
+ # Process a {Wx::EVT_CHILD_FOCUS} event. See {Wx::ChildFocusEvent}.
575
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
576
+ # @yieldparam [Wx::ChildFocusEvent] event the event to handle
577
+ def evt_child_focus(meth = nil, &block) end
578
+
579
+ # The user expanded or collapsed the collapsible pane.
580
+ # Processes a {Wx::EVT_COLLAPSIBLEPANE_CHANGED} event.
581
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
582
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
583
+ # @yieldparam [Wx::CollapsiblePaneEvent] event the event to handle
584
+ def evt_collapsiblepane_changed(id, meth = nil, &block) end
585
+
586
+ # Generated whenever an arrow is pressed.
587
+ # Processes a {Wx::EVT_SPIN} event.
588
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
589
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
590
+ # @yieldparam [Wx::SpinEvent] event the event to handle
591
+ def evt_spin(id, meth = nil, &block) end
592
+
593
+ # Generated when left/up arrow is pressed.
594
+ # Processes a {Wx::EVT_SPIN_UP} event.
595
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
596
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
597
+ # @yieldparam [Wx::SpinEvent] event the event to handle
598
+ def evt_spin_up(id, meth = nil, &block) end
599
+
600
+ # Generated when right/down arrow is pressed.
601
+ # Processes a {Wx::EVT_SPIN_DOWN} event.
602
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
603
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
604
+ # @yieldparam [Wx::SpinEvent] event the event to handle
605
+ def evt_spin_down(id, meth = nil, &block) end
606
+
607
+ # Generated whenever the numeric value of the spin control is changed, that is, when the up/down spin button is clicked or when the control loses focus and the new value is different from the last one. See {Wx::SpinDoubleEvent}.
608
+ # Processes a {Wx::EVT_SPINCTRLDOUBLE} event.
609
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
610
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
611
+ # @yieldparam [Wx::SpinDoubleEvent] event the event to handle
612
+ def evt_spinctrldouble(id, meth = nil, &block) end
613
+
614
+ # 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).
615
+ # Processes a {Wx::EVT_FONTPICKER_CHANGED} event.
616
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
617
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
618
+ # @yieldparam [Wx::FontPickerEvent] event the event to handle
619
+ def evt_fontpicker_changed(id, meth = nil, &block) end
620
+
621
+ # Find button was pressed in the dialog.
622
+ # Processes a {Wx::EVT_FIND} event.
623
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
624
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
625
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
626
+ def evt_find(id, meth = nil, &block) end
627
+
628
+ # Find next button was pressed in the dialog.
629
+ # Processes a {Wx::EVT_FIND_NEXT} event.
630
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
631
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
632
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
633
+ def evt_find_next(id, meth = nil, &block) end
634
+
635
+ # Replace button was pressed in the dialog.
636
+ # Processes a {Wx::EVT_FIND_REPLACE} event.
637
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
638
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
639
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
640
+ def evt_find_replace(id, meth = nil, &block) end
641
+
642
+ # Replace all button was pressed in the dialog.
643
+ # Processes a {Wx::EVT_FIND_REPLACE_ALL} event.
644
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
645
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
646
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
647
+ def evt_find_replace_all(id, meth = nil, &block) end
648
+
649
+ # The dialog is being destroyed, any pointers to it cannot be used any longer.
650
+ # Processes a {Wx::EVT_FIND_CLOSE} event.
651
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
652
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
653
+ # @yieldparam [Wx::FindDialogEvent] event the event to handle
654
+ def evt_find_close(id, meth = nil, &block) end
655
+
656
+ # 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.
657
+ # Processes a {Wx::EVT_COLOURPICKER_CHANGED} event.
658
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
659
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
660
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
661
+ def evt_colourpicker_changed(id, meth = nil, &block) end
662
+
663
+ # 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 WXMSW.
664
+ # Processes a {Wx::EVT_COLOURPICKER_CURRENT_CHANGED} event.
665
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
666
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
667
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
668
+ def evt_colourpicker_current_changed(id, meth = nil, &block) end
669
+
670
+ # 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 WXMSW.
671
+ # Processes a {Wx::EVT_COLOURPICKER_DIALOG_CANCELLED} event.
672
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
673
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
674
+ # @yieldparam [Wx::ColourPickerEvent] event the event to handle
675
+ def evt_colourpicker_dialog_cancelled(id, meth = nil, &block) end
676
+
677
+ # 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).
678
+ # Processes a {Wx::EVT_FILEPICKER_CHANGED} event.
679
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
680
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
681
+ # @yieldparam [Wx::FileDirPickerEvent] event the event to handle
682
+ def evt_filepicker_changed(id, meth = nil, &block) end
683
+
684
+ # 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).
685
+ # Processes a {Wx::EVT_DIRPICKER_CHANGED} event.
686
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
687
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
688
+ # @yieldparam [Wx::FileDirPickerEvent] event the event to handle
689
+ def evt_dirpicker_changed(id, meth = nil, &block) end
690
+
691
+ # The user activated a file(by double-clicking or pressing Enter)
692
+ # Processes a {Wx::EVT_FILECTRL_FILEACTIVATED} event.
693
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
694
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
695
+ # @yieldparam [Wx::FileCtrlEvent] event the event to handle
696
+ def evt_filectrl_fileactivated(id, meth = nil, &block) end
697
+
698
+ # The user changed the current selection(by selecting or deselecting a file)
699
+ # Processes a {Wx::EVT_FILECTRL_SELECTIONCHANGED} event.
700
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
701
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
702
+ # @yieldparam [Wx::FileCtrlEvent] event the event to handle
703
+ def evt_filectrl_selectionchanged(id, meth = nil, &block) end
704
+
705
+ # The current folder of the file control has been changed
706
+ # Processes a {Wx::EVT_FILECTRL_FOLDERCHANGED} event.
707
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
708
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
709
+ # @yieldparam [Wx::FileCtrlEvent] event the event to handle
710
+ def evt_filectrl_folderchanged(id, meth = nil, &block) end
711
+
712
+ # The current file filter of the file control has been changed
713
+ # Processes a {Wx::EVT_FILECTRL_FILTERCHANGED} event.
714
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
715
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
716
+ # @yieldparam [Wx::FileCtrlEvent] event the event to handle
717
+ def evt_filectrl_filterchanged(id, meth = nil, &block) end
718
+
719
+ # Begin dragging with the left mouse button.
720
+ # Processes a {Wx::EVT_LIST_BEGIN_DRAG} event.
721
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
722
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
723
+ # @yieldparam [Wx::ListEvent] event the event to handle
724
+ def evt_list_begin_drag(id, meth = nil, &block) end
725
+
726
+ # Begin dragging with the right mouse button.
727
+ # Processes a {Wx::EVT_LIST_BEGIN_RDRAG} event.
728
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
729
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
730
+ # @yieldparam [Wx::ListEvent] event the event to handle
731
+ def evt_list_begin_rdrag(id, meth = nil, &block) end
732
+
733
+ # Begin editing a label. This can be prevented by calling {Wx::ListEvent#veto}.
734
+ # Processes a {Wx::EVT_LIST_BEGIN_LABEL_EDIT} event.
735
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
736
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
737
+ # @yieldparam [Wx::ListEvent] event the event to handle
738
+ def evt_list_begin_label_edit(id, meth = nil, &block) end
739
+
740
+ # Finish editing a label. This can be prevented by calling {Wx::ListEvent#veto}.
741
+ # Processes a {Wx::EVT_LIST_END_LABEL_EDIT} event.
742
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
743
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
744
+ # @yieldparam [Wx::ListEvent] event the event to handle
745
+ def evt_list_end_label_edit(id, meth = nil, &block) end
746
+
747
+ # Delete an item.
748
+ # Processes a {Wx::EVT_LIST_DELETE_ITEM} event.
749
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
750
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
751
+ # @yieldparam [Wx::ListEvent] event the event to handle
752
+ def evt_list_delete_item(id, meth = nil, &block) end
753
+
754
+ # Delete all items.
755
+ # Processes a {Wx::EVT_LIST_DELETE_ALL_ITEMS} event.
756
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
757
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
758
+ # @yieldparam [Wx::ListEvent] event the event to handle
759
+ def evt_list_delete_all_items(id, meth = nil, &block) end
760
+
761
+ # The item has been selected. Notice that the mouse is captured by the control itself when this event is generated, see event handling overview.
762
+ # Processes a {Wx::EVT_LIST_ITEM_SELECTED} event.
763
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
764
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
765
+ # @yieldparam [Wx::ListEvent] event the event to handle
766
+ def evt_list_item_selected(id, meth = nil, &block) end
767
+
768
+ # The item has been deselected. {Wx::ListEvent#get_index} may be -1 with virtual lists.
769
+ # Processes a {Wx::EVT_LIST_ITEM_DESELECTED} event.
770
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
771
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
772
+ # @yieldparam [Wx::ListEvent] event the event to handle
773
+ def evt_list_item_deselected(id, meth = nil, &block) end
774
+
775
+ # The item has been activated (ENTER or double click).
776
+ # Processes a {Wx::EVT_LIST_ITEM_ACTIVATED} event.
777
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
778
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
779
+ # @yieldparam [Wx::ListEvent] event the event to handle
780
+ def evt_list_item_activated(id, meth = nil, &block) end
781
+
782
+ # The currently focused item has changed.
783
+ # Processes a {Wx::EVT_LIST_ITEM_FOCUSED} event.
784
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
785
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
786
+ # @yieldparam [Wx::ListEvent] event the event to handle
787
+ def evt_list_item_focused(id, meth = nil, &block) end
788
+
789
+ # The middle mouse button has been clicked on an item.
790
+ # Processes a {Wx::EVT_LIST_ITEM_MIDDLE_CLICK} event.
791
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
792
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
793
+ # @yieldparam [Wx::ListEvent] event the event to handle
794
+ def evt_list_item_middle_click(id, meth = nil, &block) end
795
+
796
+ # The right mouse button has been clicked on an item.
797
+ # Processes a {Wx::EVT_LIST_ITEM_RIGHT_CLICK} event.
798
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
799
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
800
+ # @yieldparam [Wx::ListEvent] event the event to handle
801
+ def evt_list_item_right_click(id, meth = nil, &block) end
802
+
803
+ # A key has been pressed. {Wx::ListEvent#get_index} may be -1 if no item is selected.
804
+ # Processes a {Wx::EVT_LIST_KEY_DOWN} event.
805
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
806
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
807
+ # @yieldparam [Wx::ListEvent] event the event to handle
808
+ def evt_list_key_down(id, meth = nil, &block) end
809
+
810
+ # An item has been inserted.
811
+ # Processes a {Wx::EVT_LIST_INSERT_ITEM} event.
812
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
813
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
814
+ # @yieldparam [Wx::ListEvent] event the event to handle
815
+ def evt_list_insert_item(id, meth = nil, &block) end
816
+
817
+ # A column (m_col) has been left-clicked.
818
+ # Processes a {Wx::EVT_LIST_COL_CLICK} event.
819
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
820
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
821
+ # @yieldparam [Wx::ListEvent] event the event to handle
822
+ def evt_list_col_click(id, meth = nil, &block) end
823
+
824
+ # A column (m_col) (which can be -1 if the click occurred outside any column) has been right-clicked.
825
+ # Processes a {Wx::EVT_LIST_COL_RIGHT_CLICK} event.
826
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
827
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
828
+ # @yieldparam [Wx::ListEvent] event the event to handle
829
+ def evt_list_col_right_click(id, meth = nil, &block) end
830
+
831
+ # The user started resizing a column - can be vetoed.
832
+ # Processes a {Wx::EVT_LIST_COL_BEGIN_DRAG} event.
833
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
834
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
835
+ # @yieldparam [Wx::ListEvent] event the event to handle
836
+ def evt_list_col_begin_drag(id, meth = nil, &block) end
837
+
838
+ # The divider between columns is being dragged.
839
+ # Processes a {Wx::EVT_LIST_COL_DRAGGING} event.
840
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
841
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
842
+ # @yieldparam [Wx::ListEvent] event the event to handle
843
+ def evt_list_col_dragging(id, meth = nil, &block) end
844
+
845
+ # A column has been resized by the user.
846
+ # Processes a {Wx::EVT_LIST_COL_END_DRAG} event.
847
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
848
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
849
+ # @yieldparam [Wx::ListEvent] event the event to handle
850
+ def evt_list_col_end_drag(id, meth = nil, &block) end
851
+
852
+ # Prepare cache for a virtual list control
853
+ # Processes a {Wx::EVT_LIST_CACHE_HINT} event.
854
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
855
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
856
+ # @yieldparam [Wx::ListEvent] event the event to handle
857
+ def evt_list_cache_hint(id, meth = nil, &block) end
858
+
859
+ # The item has been checked (new since wxWidgets 3.1.0).
860
+ # Processes a {Wx::EVT_LIST_ITEM_CHECKED} event.
861
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
862
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
863
+ # @yieldparam [Wx::ListEvent] event the event to handle
864
+ def evt_list_item_checked(id, meth = nil, &block) end
865
+
866
+ # The item has been unchecked (new since wxWidgets 3.1.0).
867
+ # Processes a {Wx::EVT_LIST_ITEM_UNCHECKED} 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::ListEvent] event the event to handle
871
+ def evt_list_item_unchecked(id, meth = nil, &block) end
872
+
873
+ # 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.
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_sash_pos_changing(id, meth = nil, &block) end
878
+
879
+ # 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.
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::SplitterEvent] event the event to handle
883
+ def evt_splitter_sash_pos_changed(id, meth = nil, &block) end
884
+
885
+ # The splitter has been just unsplit. Processes a {Wx::EVT_SPLITTER_UNSPLIT} event.
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::SplitterEvent] event the event to handle
889
+ def evt_splitter_unsplit(id, meth = nil, &block) end
890
+
891
+ # 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.
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::SplitterEvent] event the event to handle
895
+ def evt_splitter_dclick(id, meth = nil, &block) end
896
+
897
+ # 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.
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_drag(id, meth = nil, &block) end
902
+
903
+ # 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.
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_begin_rdrag(id, meth = nil, &block) end
908
+
909
+ # End dragging with the left or right mouse button. Processes a {Wx::EVT_TREE_END_DRAG} 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_end_drag(id, meth = nil, &block) end
914
+
915
+ # Begin editing a label. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_BEGIN_LABEL_EDIT} 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_begin_label_edit(id, meth = nil, &block) end
920
+
921
+ # Finish editing a label. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_END_LABEL_EDIT} 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_end_label_edit(id, meth = nil, &block) end
926
+
927
+ # An item was deleted. Processes a {Wx::EVT_TREE_DELETE_ITEM} 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_delete_item(id, meth = nil, &block) end
932
+
933
+ # Request information from the application. Processes a {Wx::EVT_TREE_GET_INFO} 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_get_info(id, meth = nil, &block) end
938
+
939
+ # Information is being supplied. Processes a {Wx::EVT_TREE_SET_INFO} 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_set_info(id, meth = nil, &block) end
944
+
945
+ # 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.
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_activated(id, meth = nil, &block) end
950
+
951
+ # The item has been collapsed. Processes a {Wx::EVT_TREE_ITEM_COLLAPSED} 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_collapsed(id, meth = nil, &block) end
956
+
957
+ # The item is being collapsed. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_ITEM_COLLAPSING} 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_collapsing(id, meth = nil, &block) end
962
+
963
+ # The item has been expanded. Processes a {Wx::EVT_TREE_ITEM_EXPANDED} 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_expanded(id, meth = nil, &block) end
968
+
969
+ # The item is being expanded. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_ITEM_EXPANDING} 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_item_expanding(id, meth = nil, &block) end
974
+
975
+ # The user has clicked the item with the right mouse button. Processes a {Wx::EVT_TREE_ITEM_RIGHT_CLICK} 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_item_right_click(id, meth = nil, &block) end
980
+
981
+ # 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.
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_item_middle_click(id, meth = nil, &block) end
986
+
987
+ # Selection has changed. Processes a {Wx::EVT_TREE_SEL_CHANGED} 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_sel_changed(id, meth = nil, &block) end
992
+
993
+ # Selection is changing. This can be prevented by calling Veto(). Processes a {Wx::EVT_TREE_SEL_CHANGING} 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_sel_changing(id, meth = nil, &block) end
998
+
999
+ # A key has been pressed. Processes a {Wx::EVT_TREE_KEY_DOWN} 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_key_down(id, meth = nil, &block) end
1004
+
1005
+ # 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.
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::TreeEvent] event the event to handle
1009
+ def evt_tree_item_gettooltip(id, meth = nil, &block) end
1010
+
1011
+ # 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.
1012
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1013
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1014
+ # @yieldparam [Wx::TreeEvent] event the event to handle
1015
+ def evt_tree_item_menu(id, meth = nil, &block) end
1016
+
1017
+ # The state image has been clicked. Processes a {Wx::EVT_TREE_STATE_IMAGE_CLICK} event type.
1018
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1019
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1020
+ # @yieldparam [Wx::TreeEvent] event the event to handle
1021
+ def evt_tree_state_image_click(id, meth = nil, &block) end
1022
+
1023
+ # Process a {Wx::EVT_SASH_DRAGGED} event, when the user has finished dragging a sash.
1024
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1025
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1026
+ # @yieldparam [Wx::SashEvent] event the event to handle
1027
+ def evt_sash_dragged(id, meth = nil, &block) end
1028
+
1029
+ # 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.
1030
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1031
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1032
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1033
+ # @yieldparam [Wx::SashEvent] event the event to handle
1034
+ def evt_sash_dragged_range(id1, id2, meth = nil, &block) end
1035
+
1036
+ # Process a {Wx::EVT_QUERY_LAYOUT_INFO} event, to get size, orientation and alignment from a window.
1037
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1038
+ # @yieldparam [Wx::QueryLayoutInfoEvent] event the event to handle
1039
+ def evt_query_layout_info(meth = nil, &block) end
1040
+
1041
+ # Process a {Wx::EVT_CALCULATE_LAYOUT} event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm.
1042
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1043
+ # @yieldparam [Wx::CalculateLayoutEvent] event the event to handle
1044
+ def evt_calculate_layout(meth = nil, &block) end
1045
+
1046
+ # The page has just been changed (this event cannot be vetoed).
1047
+ # Processes a {Wx::EVT_WIZARD_PAGE_CHANGED} event.
1048
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1049
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1050
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1051
+ def evt_wizard_page_changed(id, meth = nil, &block) end
1052
+
1053
+ # The page is being changed (this event can be vetoed).
1054
+ # Processes a {Wx::EVT_WIZARD_PAGE_CHANGING} event.
1055
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1056
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1057
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1058
+ def evt_wizard_page_changing(id, meth = nil, &block) end
1059
+
1060
+ # 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.
1061
+ # Processes a {Wx::EVT_WIZARD_BEFORE_PAGE_CHANGED} event.
1062
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1063
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1064
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1065
+ def evt_wizard_before_page_changed(id, meth = nil, &block) end
1066
+
1067
+ # The page was shown and laid out (this event cannot be vetoed).
1068
+ # Processes a {Wx::EVT_WIZARD_PAGE_SHOWN} event.
1069
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1070
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1071
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1072
+ def evt_wizard_page_shown(id, meth = nil, &block) end
1073
+
1074
+ # The user attempted to cancel the wizard (this event may also be vetoed).
1075
+ # Processes a {Wx::EVT_WIZARD_CANCEL} event.
1076
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1077
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1078
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1079
+ def evt_wizard_cancel(id, meth = nil, &block) end
1080
+
1081
+ # The wizard help button was pressed.
1082
+ # Processes a {Wx::EVT_WIZARD_HELP} event.
1083
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1084
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1085
+ # @yieldparam [Wx::WizardEvent] event the event to handle
1086
+ def evt_wizard_help(id, meth = nil, &block) end
1087
+
1088
+ # The wizard finished button was pressed.
1089
+ # Processes a {Wx::EVT_WIZARD_FINISHED} event.
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::WizardEvent] event the event to handle
1093
+ def evt_wizard_finished(id, meth = nil, &block) end
1094
+
1095
+ # Sent when a media has loaded enough data that it can start playing. Processes a {Wx::EVT_MEDIA_LOADED} 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_loaded(id, meth = nil, &block) end
1100
+
1101
+ # 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.
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_stop(id, meth = nil, &block) end
1106
+
1107
+ # Sent when a media has finished playing in a {Wx::MediaCtrl}. Processes a {Wx::EVT_MEDIA_FINISHED} 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_finished(id, meth = nil, &block) end
1112
+
1113
+ # Sent when a media has switched its state (from any media state). Processes a {Wx::EVT_MEDIA_STATECHANGED} event type.
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::MediaEvent] event the event to handle
1117
+ def evt_media_statechanged(id, meth = nil, &block) end
1118
+
1119
+ # Sent when a media has switched to the {Wx::MediaState::MEDIASTATE_PLAYING} state. Processes a {Wx::EVT_MEDIA_PLAY} event type.
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::MediaEvent] event the event to handle
1123
+ def evt_media_play(id, meth = nil, &block) end
1124
+
1125
+ # Sent when a media has switched to the {Wx::MediaState::MEDIASTATE_PAUSED} state. Processes a {Wx::EVT_MEDIA_PAUSE} event type.
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::MediaEvent] event the event to handle
1129
+ def evt_media_pause(id, meth = nil, &block) end
1130
+
1131
+ # User clicked on a hyperlink.
1132
+ # Processes a {Wx::EVT_HYPERLINK} event.
1133
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1134
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1135
+ # @yieldparam [Wx::HyperlinkEvent] event the event to handle
1136
+ def evt_hyperlink(id, meth = nil, &block) end
1137
+
1138
+ # Process a {Wx::EVT_BUTTON} event, when the button is clicked.
1139
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1140
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1141
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1142
+ def evt_button(id, meth = nil, &block) end
1143
+
1144
+ # Process a {Wx::EVT_CHECKBOX} event, when the checkbox is clicked.
1145
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1146
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1147
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1148
+ def evt_checkbox(id, meth = nil, &block) end
1149
+
1150
+ # Process a {Wx::EVT_CHOICE} event, when an item on the list is selected.
1151
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1152
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1153
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1154
+ def evt_choice(id, meth = nil, &block) end
1155
+
1156
+ # Process a {Wx::EVT_COMBOBOX} event, when an item on the list is selected. Note that calling {Wx::OwnerDrawnComboBox#get_value} returns the new value of selection.
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_combobox(id, meth = nil, &block) end
1161
+
1162
+ # Process a {Wx::EVT_LISTBOX} event, when an item on the list is selected or the selection changes.
1163
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1164
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1165
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1166
+ def evt_listbox(id, meth = nil, &block) end
1167
+
1168
+ # Process a {Wx::EVT_LISTBOX_DCLICK} event, when the listbox is double-clicked. On some platforms (notably WXGTK2) pressing the enter key is handled as an equivalent of a double-click.
1169
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1170
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1171
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1172
+ def evt_listbox_dclick(id, meth = nil, &block) end
1173
+
1174
+ # 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.
1175
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1176
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1177
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1178
+ def evt_checklistbox(id, meth = nil, &block) end
1179
+
1180
+ # The same as EVT_TOOL().
1181
+ # Processes a {Wx::EVT_MENU} event.
1182
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1183
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1184
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1185
+ def evt_menu(id, meth = nil, &block) end
1186
+
1187
+ # The same as EVT_TOOL_RANGE().
1188
+ # Processes a {Wx::EVT_MENU} event.
1189
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1190
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1191
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1192
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1193
+ def evt_menu_range(id1, id2, meth = nil, &block) end
1194
+
1195
+ # Process a {Wx::EVT_RADIOBOX} event, when a radiobutton is clicked.
1196
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1197
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1198
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1199
+ def evt_radiobox(id, meth = nil, &block) end
1200
+
1201
+ # Process a {Wx::EVT_RADIOBUTTON} event, when the radiobutton is clicked.
1202
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1203
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1204
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1205
+ def evt_radiobutton(id, meth = nil, &block) end
1206
+
1207
+ # 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}).
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_scrollbar(id, meth = nil, &block) end
1212
+
1213
+ # 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.
1214
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1215
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1216
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1217
+ def evt_slider(id, meth = nil, &block) end
1218
+
1219
+ # Process a {Wx::EVT_TEXT} event, when the text changes.
1220
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1221
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1222
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1223
+ def evt_text(id, meth = nil, &block) end
1224
+
1225
+ # Process a {Wx::EVT_TEXT_ENTER} event, when RETURN is pressed in the combo control.
1226
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1227
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1228
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1229
+ def evt_text_enter(id, meth = nil, &block) end
1230
+
1231
+ # 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.
1232
+ # Processes a {Wx::EVT_TEXT_MAXLEN} event.
1233
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1234
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1235
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1236
+ def evt_text_maxlen(id, meth = nil, &block) end
1237
+
1238
+ # Handles a {Wx::EVT_TOGGLEBUTTON} event.
1239
+ # Processes a {Wx::EVT_TOGGLEBUTTON} event.
1240
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1241
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1242
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1243
+ def evt_togglebutton(id, meth = nil, &block) end
1244
+
1245
+ # Process a {Wx::EVT_TOOL} event (a synonym for {Wx::EVT_MENU}). Pass the id of the tool.
1246
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1247
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1248
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1249
+ def evt_tool(id, meth = nil, &block) end
1250
+
1251
+ # Process a {Wx::EVT_TOOL} event for a range of identifiers. Pass the ids of the tools.
1252
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1253
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
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_tool_range(id1, id2, meth = nil, &block) end
1257
+
1258
+ # Process a {Wx::EVT_TOOL_RCLICKED} event. Pass the id of the tool. (Not available on WXOSX.)
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_tool_rclicked(id, meth = nil, &block) end
1263
+
1264
+ # Process a {Wx::EVT_TOOL_RCLICKED} event for a range of ids. Pass the ids of the tools. (Not available on WXOSX.)
1265
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id1 first window/control id of range
1266
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id2 last window/control id of range
1267
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1268
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1269
+ def evt_tool_rclicked_range(id1, id2, meth = nil, &block) end
1270
+
1271
+ # 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 WXOSX.)
1272
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1273
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1274
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1275
+ def evt_tool_enter(id, meth = nil, &block) end
1276
+
1277
+ # Process a {Wx::EVT_COMMAND_LEFT_CLICK} command, which is generated by a control (WXMSW only).
1278
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1279
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1280
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1281
+ def evt_command_left_click(id, meth = nil, &block) end
1282
+
1283
+ # Process a {Wx::EVT_COMMAND_LEFT_DCLICK} command, which is generated by a control (WXMSW only).
1284
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1285
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1286
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1287
+ def evt_command_left_dclick(id, meth = nil, &block) end
1288
+
1289
+ # Process a {Wx::EVT_COMMAND_RIGHT_CLICK} command, which is generated by a control (WXMSW only).
1290
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1291
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1292
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1293
+ def evt_command_right_click(id, meth = nil, &block) end
1294
+
1295
+ # Process a {Wx::EVT_COMMAND_SET_FOCUS} command, which is generated by a control (WXMSW only).
1296
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1297
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1298
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1299
+ def evt_command_set_focus(id, meth = nil, &block) end
1300
+
1301
+ # Process a {Wx::EVT_COMMAND_KILL_FOCUS} command, which is generated by a control (WXMSW only).
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_command_kill_focus(id, meth = nil, &block) end
1306
+
1307
+ # Process a {Wx::EVT_COMMAND_ENTER} command, which is generated by a control.
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_command_enter(id, meth = nil, &block) end
1312
+
1313
+ # A connection with the network was established.
1314
+ # Processes a {Wx::EVT_DIALUP_CONNECTED} event.
1315
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1316
+ # @yieldparam [Wx::DialUpEvent] event the event to handle
1317
+ def evt_dialup_connected(meth = nil, &block) end
1318
+
1319
+ # The connection with the network was lost.
1320
+ # Processes a {Wx::EVT_DIALUP_DISCONNECTED} event.
1321
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1322
+ # @yieldparam [Wx::DialUpEvent] event the event to handle
1323
+ def evt_dialup_disconnected(meth = nil, &block) end
1324
+
1325
+ # A mouse event occurred over an URL in the text control.
1326
+ # Processes a {Wx::EVT_TEXT_URL} event.
1327
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1328
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1329
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1330
+ def evt_text_url(id, meth = nil, &block) end
1331
+
1332
+ # Process a {Wx::EVT_COMBOBOX_DROPDOWN} event, which is generated when the popup window is shown (drops down).
1333
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1334
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1335
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1336
+ def evt_combobox_dropdown(id, meth = nil, &block) end
1337
+
1338
+ # Process a {Wx::EVT_COMBOBOX_CLOSEUP} event, which is generated when the popup window of the combo control disappears (closes up). You should avoid adding or deleting items in this event.
1339
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1340
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1341
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1342
+ def evt_combobox_closeup(id, meth = nil, &block) end
1343
+
1344
+ # The page selection was changed. Processes a {Wx::EVT_NOTEBOOK_PAGE_CHANGED} event.
1345
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1346
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1347
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1348
+ def evt_notebook_page_changed(id, meth = nil, &block) end
1349
+
1350
+ # The page selection is about to be changed. Processes a {Wx::EVT_NOTEBOOK_PAGE_CHANGING} event. This event can be vetoed.
1351
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1352
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1353
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1354
+ def evt_notebook_page_changing(id, meth = nil, &block) end
1355
+
1356
+ # Respond to a {Wx::EVT_SEARCH} event, generated when the search button is clicked. Note that this does not initiate a search on its own, you need to perform the appropriate action in your event handler. You may use
1357
+ # Processes a {Wx::EVT_SEARCH} event.
1358
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1359
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1360
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1361
+ def evt_search(id, meth = nil, &block) end
1362
+
1363
+ # Respond to a {Wx::EVT_SEARCH_CANCEL} event, generated when the cancel button is clicked.
1364
+ # Processes a {Wx::EVT_SEARCH_CANCEL} event.
1365
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1366
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1367
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1368
+ def evt_search_cancel(id, meth = nil, &block) end
1369
+
1370
+ # Process a {Wx::EVT_SPINCTRL} event, which is generated whenever the numeric value of the spin control is updated.
1371
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1372
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1373
+ # @yieldparam [Wx::SpinEvent] event the event to handle
1374
+ def evt_spinctrl(id, meth = nil, &block) end
1375
+
1376
+ # Process a {Wx::EVT_TOOL_DROPDOWN} event. If unhandled, displays the default dropdown menu set using {Wx::ToolBar#set_dropdown_menu}.
1377
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1378
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1379
+ # @yieldparam [Wx::CommandEvent] event the event to handle
1380
+ def evt_tool_dropdown(id, meth = nil, &block) end
1381
+
1382
+ # The page selection was changed. Processes a {Wx::EVT_TOOLBOOK_PAGE_CHANGED} event.
1383
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1384
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1385
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1386
+ def evt_toolbook_page_changed(id, meth = nil, &block) end
1387
+
1388
+ # 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}).
1389
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1390
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1391
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1392
+ def evt_toolbook_page_changing(id, meth = nil, &block) end
1393
+
1394
+ # The page selection was changed. Processes a {Wx::EVT_CHOICEBOOK_PAGE_CHANGED} event.
1395
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1396
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1397
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1398
+ def evt_choicebook_page_changed(id, meth = nil, &block) end
1399
+
1400
+ # 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}).
1401
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1402
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1403
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1404
+ def evt_choicebook_page_changing(id, meth = nil, &block) end
1405
+
1406
+ # The page selection was changed. Processes a {Wx::EVT_LISTBOOK_PAGE_CHANGED} event.
1407
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1408
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1409
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1410
+ def evt_listbook_page_changed(id, meth = nil, &block) end
1411
+
1412
+ # The page selection is about to be changed. Processes a {Wx::EVT_LISTBOOK_PAGE_CHANGING} event. This event can be vetoed.
1413
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1414
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1415
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1416
+ def evt_listbook_page_changing(id, meth = nil, &block) end
1417
+
1418
+ # The page selection was changed. Processes a {Wx::EVT_TREEBOOK_PAGE_CHANGED} event.
1419
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1420
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1421
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1422
+ def evt_treebook_page_changed(id, meth = nil, &block) end
1423
+
1424
+ # The page selection is about to be changed. Processes a {Wx::EVT_TREEBOOK_PAGE_CHANGING} event. This event can be {Wx::vetoed}.
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::BookCtrlEvent] event the event to handle
1428
+ def evt_treebook_page_changing(id, meth = nil, &block) end
1429
+
1430
+ # The page node is going to be collapsed. Processes a {Wx::EVT_TREEBOOK_NODE_COLLAPSED} event.
1431
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1432
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1433
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1434
+ def evt_treebook_node_collapsed(id, meth = nil, &block) end
1435
+
1436
+ # The page node is going to be expanded. Processes a {Wx::EVT_TREEBOOK_NODE_EXPANDED} event.
1437
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1438
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1439
+ # @yieldparam [Wx::BookCtrlEvent] event the event to handle
1440
+ def evt_treebook_node_expanded(id, meth = nil, &block) end
1441
+
1442
+ # A column heading was clicked.
1443
+ # Processes a {Wx::EVT_HEADER_CLICK} event.
1444
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1445
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1446
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1447
+ def evt_header_click(id, meth = nil, &block) end
1448
+
1449
+ # A column heading was right clicked.
1450
+ # Processes a {Wx::EVT_HEADER_RIGHT_CLICK} event.
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::HeaderCtrlEvent] event the event to handle
1454
+ def evt_header_right_click(id, meth = nil, &block) end
1455
+
1456
+ # A column heading was clicked with the middle mouse button.
1457
+ # Processes a {Wx::EVT_HEADER_MIDDLE_CLICK} event.
1458
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1459
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1460
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1461
+ def evt_header_middle_click(id, meth = nil, &block) end
1462
+
1463
+ # A column heading was double clicked.
1464
+ # Processes a {Wx::EVT_HEADER_DCLICK} event.
1465
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1466
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1467
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1468
+ def evt_header_dclick(id, meth = nil, &block) end
1469
+
1470
+ # A column heading was right double clicked.
1471
+ # Processes a {Wx::EVT_HEADER_RIGHT_DCLICK} event.
1472
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1473
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1474
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1475
+ def evt_header_right_dclick(id, meth = nil, &block) end
1476
+
1477
+ # A column heading was double clicked with the middle mouse button.
1478
+ # Processes a {Wx::EVT_HEADER_MIDDLE_DCLICK} event.
1479
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1480
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1481
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1482
+ def evt_header_middle_dclick(id, meth = nil, &block) end
1483
+
1484
+ # Separator to the right of the specified column was double clicked (this action is commonly used to resize the column to fit its contents width and the control provides {Wx::HeaderCtrl#update_column_width_to_fit} method to make implementing this easier).
1485
+ # Processes a {Wx::EVT_HEADER_SEPARATOR_DCLICK} event.
1486
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1487
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1488
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1489
+ def evt_header_separator_dclick(id, meth = nil, &block) end
1490
+
1491
+ # The user started to drag the separator to the right of the column with the specified index (this can only happen for the columns for which {Wx::HeaderColumn#is_resizeable} returns true). The event can be vetoed to prevent the column from being resized. If it isn't, the resizing and end resize (or dragging cancelled) events will be generated later.
1492
+ # Processes a {Wx::EVT_HEADER_BEGIN_RESIZE} event.
1493
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1494
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1495
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1496
+ def evt_header_begin_resize(id, meth = nil, &block) end
1497
+
1498
+ # The user is dragging the column with the specified index resizing it and its current width is {Wx::HeaderCtrlEvent#get_width}. The event can be vetoed to stop the dragging operation completely at any time.
1499
+ # Processes a {Wx::EVT_HEADER_RESIZING} event.
1500
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1501
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1502
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1503
+ def evt_header_resizing(id, meth = nil, &block) end
1504
+
1505
+ # The user stopped dragging the column by releasing the mouse. The column should normally be resized to the value of {Wx::HeaderCtrlEvent#get_width}.
1506
+ # Processes a {Wx::EVT_HEADER_END_RESIZE} event.
1507
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1508
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1509
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1510
+ def evt_header_end_resize(id, meth = nil, &block) end
1511
+
1512
+ # The user started to drag the column with the specified index (this can only happen for the controls with {Wx::HD_ALLOW_REORDER} style). This event can be vetoed to prevent the column from being reordered, otherwise the end reorder message will be generated later.
1513
+ # Processes a {Wx::EVT_HEADER_BEGIN_REORDER} event.
1514
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1515
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1516
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1517
+ def evt_header_begin_reorder(id, meth = nil, &block) end
1518
+
1519
+ # The user dropped the column in its new location. The event can be vetoed to prevent the column from being placed at the new position or handled to update the display of the data in the associated control to match the new column location (available from {Wx::HeaderCtrlEvent#get_new_order}).
1520
+ # Processes a {Wx::EVT_HEADER_END_REORDER} event.
1521
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1522
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1523
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1524
+ def evt_header_end_reorder(id, meth = nil, &block) end
1525
+
1526
+ # The resizing or reordering operation currently in progress was cancelled. This can happen if the user pressed Esc key while dragging the mouse or the mouse capture was lost for some other reason. You only need to handle this event if your application entered into some modal mode when resizing or reordering began, in which case it should handle this event in addition to the matching end resizing or reordering ones.
1527
+ # Processes a {Wx::EVT_HEADER_DRAGGING_CANCELLED} event.
1528
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1529
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1530
+ # @yieldparam [Wx::HeaderCtrlEvent] event the event to handle
1531
+ def evt_header_dragging_cancelled(id, meth = nil, &block) end
1532
+
1533
+ # 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.
1534
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1535
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1536
+ # @yieldparam [Wx::SplitterEvent] event the event to handle
1537
+ def evt_splitter_sash_pos_resize(id, meth = nil, &block) end
1538
+
1539
+ # A day was double clicked in the calendar.
1540
+ # Processes a {Wx::EVT_CALENDAR} event.
1541
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1542
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1543
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1544
+ def evt_calendar(id, meth = nil, &block) end
1545
+
1546
+ # The selected date changed.
1547
+ # Processes a {Wx::EVT_CALENDAR_SEL_CHANGED} event.
1548
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1549
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1550
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1551
+ def evt_calendar_sel_changed(id, meth = nil, &block) end
1552
+
1553
+ # The selected month (and/or year) changed.
1554
+ # Processes a {Wx::EVT_CALENDAR_PAGE_CHANGED} event.
1555
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1556
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1557
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1558
+ def evt_calendar_page_changed(id, meth = nil, &block) end
1559
+
1560
+ # User clicked on the week day header (only generic).
1561
+ # Processes a {Wx::EVT_CALENDAR_WEEKDAY_CLICKED} event.
1562
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1563
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1564
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1565
+ def evt_calendar_weekday_clicked(id, meth = nil, &block) end
1566
+
1567
+ # User clicked on the week of the year number (only generic).
1568
+ # Processes a {Wx::EVT_CALENDAR_WEEK_CLICKED} event.
1569
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1570
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1571
+ # @yieldparam [Wx::CalendarEvent] event the event to handle
1572
+ def evt_calendar_week_clicked(id, meth = nil, &block) end
1573
+
1574
+ # Process a {Wx::EVT_DATE_CHANGED} event, which fires when the user changes the current selection in the control.
1575
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1576
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1577
+ # @yieldparam [Wx::DateEvent] event the event to handle
1578
+ def evt_date_changed(id, meth = nil, &block) end
1579
+
1580
+ # Process a {Wx::EVT_TIME_CHANGED} event, which fires when the user changes the current selection in the control.
1581
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1582
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1583
+ # @yieldparam [Wx::DateEvent] event the event to handle
1584
+ def evt_time_changed(id, meth = nil, &block) end
1585
+
1586
+ # Process a {Wx::EVT_TASKBAR_MOVE} event.
1587
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1588
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1589
+ def evt_taskbar_move(meth = nil, &block) end
1590
+
1591
+ # Process a {Wx::EVT_TASKBAR_LEFT_DOWN} event.
1592
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1593
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1594
+ def evt_taskbar_left_down(meth = nil, &block) end
1595
+
1596
+ # Process a {Wx::EVT_TASKBAR_LEFT_UP} event.
1597
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1598
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1599
+ def evt_taskbar_left_up(meth = nil, &block) end
1600
+
1601
+ # Process a {Wx::EVT_TASKBAR_RIGHT_DOWN} event.
1602
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1603
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1604
+ def evt_taskbar_right_down(meth = nil, &block) end
1605
+
1606
+ # Process a {Wx::EVT_TASKBAR_RIGHT_UP} event.
1607
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1608
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1609
+ def evt_taskbar_right_up(meth = nil, &block) end
1610
+
1611
+ # Process a {Wx::EVT_TASKBAR_LEFT_DCLICK} event.
1612
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1613
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1614
+ def evt_taskbar_left_dclick(meth = nil, &block) end
1615
+
1616
+ # Process a {Wx::EVT_TASKBAR_RIGHT_DCLICK} event.
1617
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1618
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1619
+ def evt_taskbar_right_dclick(meth = nil, &block) end
1620
+
1621
+ # 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.
1622
+ # Processes a {Wx::EVT_TASKBAR_CLICK} event.
1623
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1624
+ # @yieldparam [Wx::TaskBarIconEvent] event the event to handle
1625
+ def evt_taskbar_click(meth = nil, &block) end
1626
+
1627
+ # 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.
1628
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1629
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1630
+ # @yieldparam [Wx::TreeEvent] event the event to handle
1631
+ def evt_dirctrl_selectionchanged(id, meth = nil, &block) end
1632
+
1633
+ # The user activated a file by double-clicking or pressing Enter. Available since wxWidgets 2.9.5.
1634
+ # Processes a {Wx::EVT_DIRCTRL_FILEACTIVATED} event.
1635
+ # @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] id window/control id
1636
+ # @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
1637
+ # @yieldparam [Wx::TreeEvent] event the event to handle
1638
+ def evt_dirctrl_fileactivated(id, meth = nil, &block) end
1639
+
1640
+ # @!endgroup
1641
+
1642
+ end
1643
+
1644
+ end