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,662 @@
1
+ # :stopdoc:
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # :startdoc:
5
+
6
+
7
+ module Wx
8
+
9
+ #
10
+ #
11
+ CC_SPECIAL_DCLICK = 256
12
+
13
+ #
14
+ #
15
+ CC_STD_BUTTON = 512
16
+
17
+ # A combo control is a generic combobox that allows totally custom popup.
18
+ #
19
+ # In addition it has other customization features. For instance, position and size of the dropdown button can be changed.
20
+ #
21
+ # ## Setting Custom Popup for wxComboCtrl
22
+ # {Wx::ComboCtrl} needs to be told somehow which control to use and this is done by {Wx::ComboCtrl#set_popup_control}. However, we need something more than just a {Wx::Control} in this method as, for example, we need to call SetStringValue("initial text value") and {Wx::Control} doesn't have such method. So we also need a {Wx::ComboPopup} which is an interface which must be implemented by a control to be usable as a popup.
23
+ # We couldn't derive {Wx::ComboPopup} from {Wx::Control} as this would make it impossible to have a class deriving from a wxWidgets control and from it, so instead it is just a mix-in.
24
+ # Here's a minimal sample of {Wx::ListView} popup:
25
+ #
26
+ # ```ruby
27
+ # class ListViewComboPopup < Wx::ListView
28
+ #
29
+ # include Wx::ComboPopup
30
+ #
31
+ # # Allow only default ctor
32
+ # def initialize
33
+ # # call default control ctor; need to call Wx::ListView#create later
34
+ # super
35
+ # end
36
+ #
37
+ # # Initialize member variables
38
+ # def init
39
+ # @value = -1
40
+ # end
41
+ #
42
+ # # Create popup control
43
+ # def create(parent)
44
+ # # need to finish creating the list view here
45
+ # # as calling super here would just call Wx::ComboPopup#create and not Wx::ListView#create
46
+ # # we need to use Ruby magic
47
+ # wx_lv_create = (Wx::ListView.instance_method :create).bind(self)
48
+ # wx_lv_create.call(parent, 1, [0,0], Wx::DEFAULT_SIZE)
49
+ # evt_motion :on_mouse_move
50
+ # evt_left_up :on_mouse_click
51
+ # end
52
+ #
53
+ # # Return pointer to the created control
54
+ # def get_control
55
+ # self
56
+ # end
57
+ #
58
+ # def lv_find_item(*args)
59
+ # unless @wx_lv_find_item
60
+ # @wx_lv_find_item = (Wx::ListView.instance_method :find_item).bind(self)
61
+ # end
62
+ # @wx_lv_find_item.call(*args)
63
+ # end
64
+ # protected :lv_find_item
65
+ #
66
+ # # Translate string into a list selection
67
+ # def set_string_value(s)
68
+ # n = lv_find_item(-1, s)
69
+ # if n >= 0 && n < get_item_count
70
+ # select(n)
71
+ # @value = n
72
+ # end
73
+ # end
74
+ #
75
+ # # Get list selection as a string
76
+ # def get_string_value
77
+ # return get_item_text(@value) if @value >= 0
78
+ # ''
79
+ # end
80
+ #
81
+ # # Do mouse hot-tracking (which is typical in list popups)
82
+ # def on_mouse_move(event)
83
+ # # Move selection to cursor ...
84
+ # end
85
+ #
86
+ # # On mouse left up, set the value and close the popup
87
+ # def on_mouse_click(_event)
88
+ # @value = get_first_selected
89
+ #
90
+ # # Send event as well ...
91
+ #
92
+ # dismiss
93
+ # end
94
+ #
95
+ # end
96
+ # ```
97
+ #
98
+ # Here's how you would create and populate it in a dialog constructor:
99
+ #
100
+ # ```ruby
101
+ # comboCtrl = Wx::ComboCtrl.new(self, Wx::ID_ANY, '')
102
+ #
103
+ # popupCtrl = ListViewComboPopup.new
104
+ #
105
+ # # It is important to call #set_popup_control as soon as possible
106
+ # comboCtrl.set_popup_control(popupCtrl)
107
+ #
108
+ # # Populate using Wx::ListView methods
109
+ # popupCtrl.insert_item((popupCtrl.item_count, 'First Item')
110
+ # popupCtrl.insert_item((popupCtrl.item_count, 'Second Item')
111
+ # popupCtrl.insert_item((popupCtrl.item_count, 'Third Item')
112
+ # ```
113
+ #
114
+ # ### Styles
115
+ #
116
+ # This class supports the following styles:
117
+ #
118
+ # - {Wx::CB_READONLY}: Text will not be editable.
119
+ #
120
+ # - {Wx::CB_SORT}: Sorts the entries in the list alphabetically.
121
+ #
122
+ # - {Wx::TE_PROCESS_ENTER}: The control will generate the event {Wx::EVT_TEXT_ENTER} (otherwise pressing Enter key is either processed internally by the control or used for navigation between dialog controls). Windows only.
123
+ #
124
+ # - {Wx::CC_SPECIAL_DCLICK}: Double-clicking triggers a call to popup's OnComboDoubleClick. Actual behaviour is defined by a derived class. For instance, {Wx::OwnerDrawnComboBox} will cycle an item. This style only applies if {Wx::CB_READONLY} is used as well.
125
+ #
126
+ # - {Wx::CC_STD_BUTTON}: Drop button will behave more like a standard push button.
127
+ #
128
+ # ### Events emitted by this class
129
+ #
130
+ # The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
131
+ # Event handler methods for events emitted by this class:
132
+ #
133
+ # - {Wx::EvtHandler#evt_text}(id, meth = nil, &block): Process a {Wx::EVT_TEXT} event, when the text changes.
134
+ #
135
+ # - {Wx::EvtHandler#evt_text_enter}(id, meth = nil, &block): Process a {Wx::EVT_TEXT_ENTER} event, when RETURN is pressed in the combo control.
136
+ #
137
+ # - {Wx::EvtHandler#evt_combobox_dropdown}(id, meth = nil, &block): Process a {Wx::EVT_COMBOBOX_DROPDOWN} event, which is generated when the popup window is shown (drops down).
138
+ #
139
+ # - {Wx::EvtHandler#evt_combobox_closeup}(id, meth = nil, &block): 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.
140
+ #
141
+ # Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> WXMSW Appearance
142
+ # </td><td> WXGTK Appearance
143
+ # </td><td> WXOSX Appearance
144
+ # </td></tr></table></div>
145
+ # @see Wx::ComboBox
146
+ # @see Wx::Choice
147
+ # @see Wx::OwnerDrawnComboBox
148
+ # @see Wx::ComboPopup
149
+ # @see Wx::CommandEvent
150
+ #
151
+ #
152
+ # @wxrb_require USE_COMBOCTRL
153
+ class ComboCtrl < Control
154
+
155
+ include Wx::TextEntry
156
+
157
+ # @overload set_margins(pt)
158
+ # Attempts to set the control margins.
159
+ #
160
+ # When margins are given as {Wx::Point}, x indicates the left and y the top margin. Use -1 to indicate that an existing value should be used.
161
+ # true if setting of all requested margins was successful.
162
+ # @param pt [Array(Integer, Integer), Wx::Point]
163
+ # @return [Boolean]
164
+ # @overload set_margins(left, top=-1)
165
+ # Attempts to set the control margins.
166
+ #
167
+ # When margins are given as {Wx::Point}, x indicates the left and y the top margin. Use -1 to indicate that an existing value should be used.
168
+ # true if setting of all requested margins was successful.
169
+ # @param left [Integer]
170
+ # @param top [Integer]
171
+ # @return [Boolean]
172
+ def set_margins(*args) end
173
+ alias_method :margins=, :set_margins
174
+
175
+ # @overload initialize()
176
+ # Default constructor.
177
+ # @return [Wx::ComboCtrl]
178
+ # @overload initialize(parent, id=Wx::StandardID::ID_ANY, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR)
179
+ # Constructor, creating and showing a combo control.
180
+ #
181
+ #
182
+ # @see Wx::ComboCtrl#create
183
+ # @see Wx::Validator
184
+ # @param parent [Wx::Window] Parent window. Must not be nil.
185
+ # @param id [Integer] Window identifier. The value {Wx::StandardID::ID_ANY} indicates a default value.
186
+ # @param value [String] Initial selection string. An empty string indicates no selection.
187
+ # @param pos [Array(Integer, Integer), Wx::Point] Window position. If {Wx::DEFAULT_POSITION} is specified then a default position is chosen.
188
+ # @param size [Array(Integer, Integer), Wx::Size] Window size. If {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
189
+ # @param style [Integer] Window style. See {Wx::ComboCtrl}.
190
+ # @param validator [Wx::Validator] Window validator.
191
+ # @param name [String] Window name.
192
+ # @return [Wx::ComboCtrl]
193
+ # @overload initialize(parent, id=Wx::StandardID::ID_ANY, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR, &block)
194
+ # Constructor, creating and showing a combo control.
195
+ #
196
+ #
197
+ # @see Wx::ComboCtrl#create
198
+ # @see Wx::Validator
199
+ # @param parent [Wx::Window] Parent window. Must not be nil.
200
+ # @param id [Integer] Window identifier. The value {Wx::StandardID::ID_ANY} indicates a default value.
201
+ # @param value [String] Initial selection string. An empty string indicates no selection.
202
+ # @param pos [Array(Integer, Integer), Wx::Point] Window position. If {Wx::DEFAULT_POSITION} is specified then a default position is chosen.
203
+ # @param size [Array(Integer, Integer), Wx::Size] Window size. If {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
204
+ # @param style [Integer] Window style. See {Wx::ComboCtrl}.
205
+ # @param validator [Wx::Validator] Window validator.
206
+ # @param name [String] Window name.
207
+ # @yieldparam [Wx::ComboCtrl] win new instance
208
+ # @return [Wx::ComboCtrl]
209
+ def initialize(*args) end
210
+
211
+ # Copies the selected text to the clipboard.
212
+ # @return [void]
213
+ def copy; end
214
+
215
+ # Creates the combo control for two-step construction.
216
+ #
217
+ # Derived classes should call or replace this function. See {Wx::ComboCtrl#initialize} for further details.
218
+ # @param parent [Wx::Window]
219
+ # @param id [Integer]
220
+ # @param value [String]
221
+ # @param pos [Array(Integer, Integer), Wx::Point]
222
+ # @param size [Array(Integer, Integer), Wx::Size]
223
+ # @param style [Integer]
224
+ # @param validator [Wx::Validator]
225
+ # @param name [String]
226
+ # @return [Boolean]
227
+ def create(parent, id=Wx::StandardID::ID_ANY, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR) end
228
+
229
+ # Copies the selected text to the clipboard and removes the selection.
230
+ # @return [void]
231
+ def cut; end
232
+
233
+ # Dismisses the popup window.
234
+ #
235
+ # Notice that calling this function will generate a {Wx::EVT_COMBOBOX_CLOSEUP} event.
236
+ # @return [void]
237
+ def dismiss; end
238
+
239
+ # Enables or disables popup animation, if any, depending on the value of the argument.
240
+ # @param enable [Boolean]
241
+ # @return [void]
242
+ def enable_popup_animation(enable=true) end
243
+
244
+ # Returns true if given key combination should toggle the popup.
245
+ # @param event [Wx::KeyEvent]
246
+ # @return [Boolean]
247
+ def is_key_popup_toggle(event) end
248
+ alias_method :key_popup_toggle?, :is_key_popup_toggle
249
+
250
+ # Prepare background of combo control or an item in a dropdown list in a way typical on platform.
251
+ #
252
+ # This includes painting the focus/disabled background and setting the clipping region.
253
+ # Unless you plan to paint your own focus indicator, you should always call this in your {Wx::ComboPopup::PaintComboControl} implementation. In addition, it sets pen and text colour to what looks good and proper against the background.
254
+ # flags: {Wx::RendererNative} flags: {Wx::CONTROL_ISSUBMENU}: is drawing a list item instead of combo control {Wx::CONTROL_SELECTED}: list item is selected {Wx::CONTROL_DISABLED}: control/item is disabled
255
+ # @param dc [Wx::DC]
256
+ # @param rect [Wx::Rect]
257
+ # @param flags [Integer]
258
+ # @return [void]
259
+ def prepare_background(dc, rect, flags) end
260
+
261
+ # Returns true if focus indicator should be drawn in the control.
262
+ # @return [Boolean]
263
+ def should_draw_focus; end
264
+
265
+ # Returns disabled button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
266
+ #
267
+ # The disabled state bitmap.
268
+ # @return [Wx::Bitmap]
269
+ def get_bitmap_disabled; end
270
+ alias_method :bitmap_disabled, :get_bitmap_disabled
271
+
272
+ # Returns button mouse hover bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
273
+ #
274
+ # The mouse hover state bitmap.
275
+ # @return [Wx::Bitmap]
276
+ def get_bitmap_hover; end
277
+ alias_method :bitmap_hover, :get_bitmap_hover
278
+
279
+ # Returns default button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
280
+ #
281
+ # The normal state bitmap.
282
+ # @return [Wx::Bitmap]
283
+ def get_bitmap_normal; end
284
+ alias_method :bitmap_normal, :get_bitmap_normal
285
+
286
+ # Returns depressed button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
287
+ #
288
+ # The depressed state bitmap.
289
+ # @return [Wx::Bitmap]
290
+ def get_bitmap_pressed; end
291
+ alias_method :bitmap_pressed, :get_bitmap_pressed
292
+
293
+ # Returns current size of the dropdown button.
294
+ # @return [Wx::Size]
295
+ def get_button_size; end
296
+ alias_method :button_size, :get_button_size
297
+
298
+ # Returns custom painted area in control.
299
+ #
300
+ #
301
+ # @see Wx::ComboCtrl#set_custom_paint_width.
302
+ # @return [Integer]
303
+ def get_custom_paint_width; end
304
+ alias_method :custom_paint_width, :get_custom_paint_width
305
+
306
+ # Returns the current hint string.
307
+ #
308
+ # See {Wx::ComboCtrl#set_hint} for more information about hints.
309
+ # @return [String]
310
+ def get_hint; end
311
+ alias_method :hint, :get_hint
312
+
313
+ # Returns the insertion point for the combo control's text field.
314
+ #
315
+ # <div class="wxrb-note">
316
+ # <b>Note:</b>
317
+ # <p>Under Windows, this function always returns 0 if the combo control doesn't have the focus.
318
+ # </p>
319
+ # </div>
320
+ # @return [Integer]
321
+ def get_insertion_point; end
322
+ alias_method :insertion_point, :get_insertion_point
323
+
324
+ # Returns the last position in the combo control text field.
325
+ # @return [Integer]
326
+ def get_last_position; end
327
+ alias_method :last_position, :get_last_position
328
+
329
+ # Returns the margins used by the control.
330
+ #
331
+ # The x field of the returned point is the horizontal margin and the y field is the vertical one.
332
+ #
333
+ # <div class="wxrb-remark">
334
+ # <b>Remark:</b>
335
+ # <p>If given margin cannot be accurately determined, its value will be set to -1.
336
+ # </p>
337
+ # </div>
338
+ # @see Wx::ComboCtrl#set_margins
339
+ # @return [Wx::Point]
340
+ def get_margins; end
341
+ alias_method :margins, :get_margins
342
+
343
+ # Returns current popup interface that has been set with {Wx::ComboCtrl#set_popup_control}.
344
+ # @return [Wx::ComboPopup]
345
+ def get_popup_control; end
346
+ alias_method :popup_control, :get_popup_control
347
+
348
+ # Returns popup window containing the popup control.
349
+ # @return [Wx::Window]
350
+ def get_popup_window; end
351
+ alias_method :popup_window, :get_popup_window
352
+
353
+ # Get the text control which is part of the combo control.
354
+ # @return [Wx::TextCtrl]
355
+ def get_text_ctrl; end
356
+ alias_method :text_ctrl, :get_text_ctrl
357
+
358
+ # Returns area covered by the text field (includes everything except borders and the dropdown button).
359
+ # @return [Wx::Rect]
360
+ def get_text_rect; end
361
+ alias_method :text_rect, :get_text_rect
362
+
363
+ # Returns text representation of the current value.
364
+ #
365
+ # For writable combo control it always returns the value in the text field.
366
+ # @return [String]
367
+ def get_value; end
368
+ alias_method :value, :get_value
369
+
370
+ # Returns true if the popup is currently shown.
371
+ # @return [Boolean]
372
+ def is_popup_shown; end
373
+ alias_method :popup_shown?, :is_popup_shown
374
+
375
+ # Returns true if the popup window is in the given state.
376
+ #
377
+ # Possible values are:
378
+ #
379
+ # {Wx::ComboCtrl::Hidden}
380
+ # Popup window is hidden.
381
+ #
382
+ # {Wx::ComboCtrl::Animating}
383
+ # Popup window is being shown, but the popup animation has not yet finished.
384
+ #
385
+ # {Wx::ComboCtrl::Visible}
386
+ # Popup window is fully visible.
387
+ # @param state [Integer]
388
+ # @return [Boolean]
389
+ def is_popup_window_state(state) end
390
+ alias_method :popup_window_state?, :is_popup_window_state
391
+
392
+ # Implement in a derived class to define what happens on dropdown button click.
393
+ #
394
+ # Default action is to show the popup.
395
+ #
396
+ # <div class="wxrb-note">
397
+ # <b>Note:</b>
398
+ # <p>If you implement this to do something else than show the popup, you must then also implement {Wx::ComboCtrl#do_set_popup_control} to always return nil.
399
+ # </p>
400
+ # </div>
401
+ # @return [void]
402
+ def on_button_click; end
403
+
404
+ # Pastes text from the clipboard to the text field.
405
+ # @return [void]
406
+ def paste; end
407
+
408
+ # Shows the popup portion of the combo control.
409
+ #
410
+ # Notice that calling this function will generate a {Wx::EVT_COMBOBOX_DROPDOWN} event.
411
+ # @return [void]
412
+ def popup; end
413
+
414
+ # Removes the text between the two positions in the combo control text field.
415
+ # @param from [Integer] The first position.
416
+ # @param to [Integer] The last position.
417
+ # @return [void]
418
+ def remove(from, to) end
419
+
420
+ # Replaces the text between two positions with the given text, in the combo control text field.
421
+ # @param from [Integer] The first position.
422
+ # @param to [Integer] The second position.
423
+ # @param text [String] The text to insert.
424
+ # @return [void]
425
+ def replace(from, to, text) end
426
+
427
+ # Sets custom dropdown button graphics.
428
+ # @param bmpNormal [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Default button image.
429
+ # @param pushButtonBg [Boolean] If true, blank push button background is painted below the image.
430
+ # @param bmpPressed [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Depressed button image.
431
+ # @param bmpHover [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Button image when mouse hovers above it. This should be ignored on platforms and themes that do not generally draw different kind of button on mouse hover.
432
+ # @param bmpDisabled [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Disabled button image.
433
+ # @return [void]
434
+ def set_button_bitmaps(bmpNormal, pushButtonBg=false, bmpPressed=(Wx::BitmapBundle.new()), bmpHover=(Wx::BitmapBundle.new()), bmpDisabled=(Wx::BitmapBundle.new())) end
435
+ alias_method :button_bitmaps=, :set_button_bitmaps
436
+
437
+ # Sets size and position of dropdown button.
438
+ # @param width [Integer] Button width. Value = 0 specifies default.
439
+ # @param height [Integer] Button height. Value = 0 specifies default.
440
+ # @param side [Integer] Indicates which side the button will be placed. Value can be {Wx::Direction::LEFT} or {Wx::Direction::RIGHT}.
441
+ # @param spacingX [Integer] Horizontal spacing around the button. Default is 0.
442
+ # @return [void]
443
+ def set_button_position(width=-1, height=-1, side=Wx::Direction::RIGHT, spacingX=0) end
444
+ alias_method :button_position=, :set_button_position
445
+
446
+ # Set width, in pixels, of custom painted area in control without {Wx::CB_READONLY} style.
447
+ #
448
+ # In read-only {Wx::OwnerDrawnComboBox}, this is used to indicate area that is not covered by the focus rectangle.
449
+ # @param width [Integer]
450
+ # @return [void]
451
+ def set_custom_paint_width(width) end
452
+ alias_method :custom_paint_width=, :set_custom_paint_width
453
+
454
+ # Sets a hint shown in an empty unfocused combo control.
455
+ #
456
+ # Notice that hints are known as cue banners under MSW or placeholder strings under macOS.
457
+ # @see Wx::TextEntry#set_hint
458
+ # @param hint [String]
459
+ # @return [Boolean]
460
+ def set_hint(hint) end
461
+ alias_method :hint=, :set_hint
462
+
463
+ # Sets the insertion point in the text field.
464
+ # @param pos [Integer] The new insertion point.
465
+ # @return [void]
466
+ def set_insertion_point(pos) end
467
+ alias_method :insertion_point=, :set_insertion_point
468
+
469
+ # Sets the insertion point at the end of the combo control text field.
470
+ # @return [void]
471
+ def set_insertion_point_end; end
472
+
473
+ # Uses the given window instead of the default text control as the main window of the combo control.
474
+ #
475
+ # By default, combo controls without {Wx::CB_READONLY} style create a {Wx::TextCtrl} which shows the current value and allows to edit it. This method allows to use some other window instead of this {Wx::TextCtrl}.
476
+ # This method can be called after creating the combo fully, however in this case a {Wx::TextCtrl} is unnecessarily created just to be immediately destroyed when it's replaced by a custom window. If you wish to avoid this, you can use the following approach, also shown in the combo sample:
477
+ #
478
+ # ```ruby
479
+ # # Create the combo control using its default ctor.
480
+ # combo = Wx::ComboCtrl.new
481
+ #
482
+ # # Create the custom main control using its default ctor too.
483
+ # main = SomeWindow.new
484
+ #
485
+ # # Set the custom main control before creating the combo.
486
+ # combo.set_main_control(main)
487
+ #
488
+ # # And only create it now: Wx::TextCtrl won't be unnecessarily
489
+ # # created because the combo already has a main window.
490
+ # combo.create(panel, Wx::ID_ANY, '')
491
+ #
492
+ # # Finally create the main window itself, now that its parent was
493
+ # # created.
494
+ # main.create(combo, ...)
495
+ # ```
496
+ #
497
+ # Note that when a custom main window is used, none of the methods of this class inherited from {Wx::TextEntry}, such as {Wx::ComboCtrl#set_value}, {Wx::ComboCtrl#replace}, {Wx::ComboCtrl#set_insertion_point} etc do anything and simply return.
498
+ # @param win [Wx::Window]
499
+ # @return [void]
500
+ def set_main_control(win) end
501
+ alias_method :main_control=, :set_main_control
502
+
503
+ # Set side of the control to which the popup will align itself.
504
+ #
505
+ # Valid values are {Wx::Direction::LEFT}, {Wx::Direction::RIGHT} and 0. The default value 0 means that the most appropriate side is used (which, currently, is always {Wx::Direction::LEFT}).
506
+ # @param anchorSide [Integer]
507
+ # @return [void]
508
+ def set_popup_anchor(anchorSide) end
509
+ alias_method :popup_anchor=, :set_popup_anchor
510
+
511
+ # Set popup interface class derived from {Wx::ComboPopup}.
512
+ #
513
+ # This method should be called as soon as possible after the control has been created, unless {Wx::ComboCtrl#on_button_click} has been overridden.
514
+ # @param popup [Wx::ComboPopup,nil]
515
+ # @return [void]
516
+ def set_popup_control(popup) end
517
+
518
+ # Extends popup size horizontally, relative to the edges of the combo control.
519
+ #
520
+ # <div class="wxrb-remark">
521
+ # <b>Remark:</b>
522
+ # <p>Popup minimum width may override arguments. It is up to the popup to fully take this into account.
523
+ # </p>
524
+ # </div>
525
+ # @param extLeft [Integer] How many pixel to extend beyond the left edge of the control. Default is 0.
526
+ # @param extRight [Integer] How many pixel to extend beyond the right edge of the control. Default is 0.
527
+ # @return [void]
528
+ def set_popup_extents(extLeft, extRight) end
529
+
530
+ # Sets preferred maximum height of the popup.
531
+ #
532
+ # <div class="wxrb-remark">
533
+ # <b>Remark:</b>
534
+ # <p>Value -1 indicates the default.
535
+ # </p>
536
+ # </div>
537
+ # @param height [Integer]
538
+ # @return [void]
539
+ def set_popup_max_height(height) end
540
+ alias_method :popup_max_height=, :set_popup_max_height
541
+
542
+ # Sets minimum width of the popup.
543
+ #
544
+ # If wider than combo control, it will extend to the left.
545
+ #
546
+ # <div class="wxrb-remark">
547
+ # <b>Remark:</b>
548
+ # <p>Value -1 indicates the default. Also, popup implementation may choose to ignore this.
549
+ # </p>
550
+ # </div>
551
+ # @param width [Integer]
552
+ # @return [void]
553
+ def set_popup_min_width(width) end
554
+ alias_method :popup_min_width=, :set_popup_min_width
555
+
556
+ # Selects the text between the two positions, in the combo control text field.
557
+ # @param from [Integer] The first position.
558
+ # @param to [Integer] The second position.
559
+ # @return [void]
560
+ def set_selection(from, to) end
561
+
562
+ # Sets the text for the text field without affecting the popup.
563
+ #
564
+ # Thus, unlike {Wx::ComboCtrl#set_value}, it works equally well with combo control using {Wx::CB_READONLY} style.
565
+ # @param value [String]
566
+ # @return [void]
567
+ def set_text(value) end
568
+ alias_method :text=, :set_text
569
+
570
+ # Set a custom window style for the embedded {Wx::TextCtrl}.
571
+ #
572
+ # Usually you will need to use this during two-step creation, just before {Wx::ComboCtrl#create}. For example:
573
+ #
574
+ # ```ruby
575
+ # comboCtrl = Wx::ComboCtrl.new
576
+ #
577
+ # # Let's make the text right-aligned
578
+ # comboCtrl.set_text_ctrl_style(Wx::TE_RIGHT)
579
+ #
580
+ # comboCtrl.create(parent, Wx::ID_ANY, '')
581
+ # ```
582
+ # @param style [Integer]
583
+ # @return [void]
584
+ def set_text_ctrl_style(style) end
585
+ alias_method :text_ctrl_style=, :set_text_ctrl_style
586
+
587
+ # Sets the text for the combo control text field.
588
+ #
589
+ # <div class="wxrb-note">
590
+ # <b>Note:</b>
591
+ # <p>For a combo control with {Wx::CB_READONLY} style the string must be accepted by the popup (for instance, exist in the dropdown list), otherwise the call to {Wx::ComboCtrl#set_value} is ignored.
592
+ # </p>
593
+ # </div>
594
+ # @param value [String]
595
+ # @return [void]
596
+ def set_value(value) end
597
+ alias_method :value=, :set_value
598
+
599
+ # Changes value of the control as if user had done it by selecting an item from a combo box drop-down list.
600
+ # @param value [String]
601
+ # @return [void]
602
+ def set_value_by_user(value) end
603
+ alias_method :value_by_user=, :set_value_by_user
604
+
605
+ # Undoes the last edit in the text field.
606
+ #
607
+ # Windows only.
608
+ # @return [void]
609
+ def undo; end
610
+
611
+ # Enable or disable usage of an alternative popup window, which guarantees ability to focus the popup control, and allows common native controls to function normally.
612
+ #
613
+ # This alternative popup window is usually a {Wx::Dialog}, and as such, when it is shown, its parent top-level window will appear as if the focus has been lost from it.
614
+ # @param enable [Boolean]
615
+ # @return [void]
616
+ def use_alt_popup_window(enable=true) end
617
+
618
+ # Returns features supported by {Wx::ComboCtrl}.
619
+ #
620
+ # If needed feature is missing, you need to instead use {Wx::GenericComboCtrl}, which however may lack a native look and feel (but otherwise sports identical API).
621
+ # Value returned is a combination of the flags defined in {Wx::ComboCtrlFeatures}.
622
+ # @return [Integer]
623
+ def self.get_features; end
624
+
625
+
626
+ protected
627
+
628
+ # This member function is not normally called in application code.
629
+ #
630
+ # Instead, it can be implemented in a derived class to create a custom popup animation.
631
+ # The parameters are the same as those for {Wx::ComboCtrl#do_show_popup}.
632
+ # true if animation finishes before the function returns, false otherwise. In the latter case you need to manually call {Wx::ComboCtrl#do_show_popup} after the animation ends.
633
+ # @param rect [Wx::Rect]
634
+ # @param flags [Integer]
635
+ # @return [Boolean]
636
+ def animate_show(rect, flags) end
637
+
638
+ # This member function is not normally called in application code.
639
+ #
640
+ # Instead, it can be implemented in a derived class to return default {Wx::ComboPopup}, in case popup is nil.
641
+ #
642
+ # <div class="wxrb-note">
643
+ # <b>Note:</b>
644
+ # <p>If you have implemented {Wx::ComboCtrl#on_button_click} to do something else than show the popup, then {Wx::ComboCtrl#do_set_popup_control} must always set popup to nil.
645
+ # </p>
646
+ # </div>
647
+ # @param popup [Wx::ComboPopup,nil]
648
+ # @return [void]
649
+ def do_set_popup_control(popup) end
650
+
651
+ # This member function is not normally called in application code.
652
+ #
653
+ # Instead, it must be called in a derived class to make sure popup is properly shown after a popup animation has finished (but only if {Wx::ComboCtrl#animate_show} did not finish the animation within its function scope).
654
+ # @param rect [Wx::Rect] Position to show the popup window at, in screen coordinates.
655
+ # @param flags [Integer] Combination of any of the following: {Wx::ComboCtrl::ShowAbove}, and {Wx::ComboCtrl::CanDeferShow}.
656
+ # @return [void]
657
+ def do_show_popup(rect, flags) end
658
+
659
+ end # ComboCtrl
660
+
661
+
662
+ end