wxruby3 0.9.0.pre.rc.2-x64-mingw-ucrt → 0.9.0-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +30 -8
  3. data/README.md +3 -3
  4. data/ext/mkrf_conf_bingem.rb +4 -1
  5. data/ext/wxbase32u_gcc_custom.dll +0 -0
  6. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  7. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  8. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  9. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  10. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  11. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  12. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  20. data/lib/wx/accessors.rb +10 -2
  21. data/lib/wx/aui/auifloatframe.rb +20 -0
  22. data/lib/wx/aui/auimanager.rb +3 -0
  23. data/lib/wx/aui/auinotebook.rb +17 -0
  24. data/lib/wx/aui/events/evt_list.rb +7 -7
  25. data/lib/wx/aui/require.rb +5 -1
  26. data/lib/wx/aui.rb +4 -1
  27. data/lib/wx/core/acceleratortable.rb +8 -0
  28. data/lib/wx/core/animation.rb +8 -0
  29. data/lib/wx/core/app.rb +8 -0
  30. data/lib/wx/core/array_ext.rb +7 -0
  31. data/lib/wx/core/art_locator.rb +7 -0
  32. data/lib/wx/core/artprovider.rb +9 -0
  33. data/lib/wx/core/bitmap.rb +16 -4
  34. data/lib/wx/core/bitmap_combobox.rb +7 -0
  35. data/lib/wx/core/brush.rb +7 -0
  36. data/lib/wx/core/busycursor.rb +9 -0
  37. data/lib/wx/core/choice.rb +7 -0
  38. data/lib/wx/core/choicedlg.rb +7 -0
  39. data/lib/wx/core/clientdc.rb +9 -0
  40. data/lib/wx/core/clipboard.rb +8 -0
  41. data/lib/wx/core/collapsible_pane.rb +8 -1
  42. data/lib/wx/core/colour.rb +8 -0
  43. data/lib/wx/core/combo_ctrl.rb +110 -0
  44. data/lib/wx/core/combobox.rb +7 -0
  45. data/lib/wx/core/config.rb +303 -0
  46. data/lib/wx/core/controlwithitems.rb +12 -1
  47. data/lib/wx/core/cursor.rb +14 -4
  48. data/lib/wx/core/data_object.rb +7 -0
  49. data/lib/wx/core/dataformat.rb +9 -0
  50. data/lib/wx/core/datetime.rb +14 -0
  51. data/lib/wx/core/dc.rb +7 -0
  52. data/lib/wx/core/dialog.rb +18 -1
  53. data/lib/wx/core/enum.rb +7 -0
  54. data/lib/wx/core/event.rb +7 -0
  55. data/lib/wx/core/event_blocker.rb +7 -0
  56. data/lib/wx/core/event_loop.rb +14 -0
  57. data/lib/wx/core/events/evt_list.rb +76 -0
  58. data/lib/wx/core/evthandler.rb +8 -0
  59. data/lib/wx/core/ext.rb +7 -0
  60. data/lib/wx/core/file_dialog.rb +23 -0
  61. data/lib/wx/core/find_replace_dialog.rb +7 -0
  62. data/lib/wx/core/functions.rb +8 -0
  63. data/lib/wx/core/gauge.rb +10 -1
  64. data/lib/wx/core/genericdirctrl.rb +9 -0
  65. data/lib/wx/core/hboxsizer.rb +16 -0
  66. data/lib/wx/core/helpcontroller.rb +8 -0
  67. data/lib/wx/core/helpcontrollerhelpprovider.rb +9 -0
  68. data/lib/wx/core/helpprovider.rb +10 -1
  69. data/lib/wx/core/icon.rb +17 -6
  70. data/lib/wx/core/id_helper.rb +7 -0
  71. data/lib/wx/core/image.rb +49 -4
  72. data/lib/wx/core/imagelist.rb +8 -1
  73. data/lib/wx/core/listbox.rb +7 -0
  74. data/lib/wx/core/listctrl.rb +26 -13
  75. data/lib/wx/core/locale.rb +8 -0
  76. data/lib/wx/core/log.rb +114 -0
  77. data/lib/wx/core/menu.rb +9 -0
  78. data/lib/wx/core/menu_bar.rb +7 -0
  79. data/lib/wx/core/menuitem.rb +9 -0
  80. data/lib/wx/core/notebook.rb +9 -0
  81. data/lib/wx/core/object.rb +9 -0
  82. data/lib/wx/core/paintdc.rb +7 -0
  83. data/lib/wx/core/pen.rb +7 -0
  84. data/lib/wx/core/pen_info.rb +7 -0
  85. data/lib/wx/core/platform_info.rb +7 -0
  86. data/lib/wx/core/point.rb +8 -0
  87. data/lib/wx/core/real_point.rb +8 -0
  88. data/lib/wx/core/rect.rb +9 -0
  89. data/lib/wx/core/region_iterator.rb +7 -0
  90. data/lib/wx/core/simplehelpprovider.rb +9 -0
  91. data/lib/wx/core/size.rb +8 -0
  92. data/lib/wx/core/sizer.rb +9 -0
  93. data/lib/wx/core/splash_screen.rb +22 -2
  94. data/lib/wx/core/text_entry.rb +7 -0
  95. data/lib/wx/core/textctrl.rb +86 -5
  96. data/lib/wx/core/timer.rb +9 -0
  97. data/lib/wx/core/toolbar.rb +9 -0
  98. data/lib/wx/core/toolbartool.rb +8 -0
  99. data/lib/wx/core/treectrl.rb +9 -0
  100. data/lib/wx/core/v_list_box.rb +7 -0
  101. data/lib/wx/core/validator.rb +7 -0
  102. data/lib/wx/core/variant.rb +7 -0
  103. data/lib/wx/core/vboxsizer.rb +16 -0
  104. data/lib/wx/core/window.rb +8 -0
  105. data/lib/wx/core/window_update_locker.rb +9 -0
  106. data/lib/wx/core/xmlresource.rb +8 -0
  107. data/lib/wx/core.rb +4 -1
  108. data/lib/wx/doc/app.rb +7 -1
  109. data/lib/wx/doc/array_ext.rb +6 -0
  110. data/lib/wx/doc/art_locator.rb +7 -0
  111. data/lib/wx/doc/aui/auimanager.rb +6 -0
  112. data/lib/wx/doc/aui/auinotebook.rb +6 -0
  113. data/lib/wx/doc/bitmap.rb +19 -15
  114. data/lib/wx/doc/brush.rb +6 -0
  115. data/lib/wx/doc/busy_info.rb +6 -0
  116. data/lib/wx/doc/client_dc.rb +6 -0
  117. data/lib/wx/doc/clipboard.rb +6 -0
  118. data/lib/wx/doc/colour_dialog.rb +6 -0
  119. data/lib/wx/doc/config.rb +190 -0
  120. data/lib/wx/doc/const.rb +7 -0
  121. data/lib/wx/doc/controlwithitems.rb +6 -0
  122. data/lib/wx/doc/core.rb +6 -0
  123. data/lib/wx/doc/cursor.rb +13 -5
  124. data/lib/wx/doc/data_object.rb +6 -0
  125. data/lib/wx/doc/datetime.rb +16 -0
  126. data/lib/wx/doc/dc.rb +6 -0
  127. data/lib/wx/doc/enum.rb +8 -1
  128. data/lib/wx/doc/event.rb +12 -0
  129. data/lib/wx/doc/event_blocker.rb +6 -0
  130. data/lib/wx/doc/event_loop.rb +13 -0
  131. data/lib/wx/doc/events.rb +6 -0
  132. data/lib/wx/doc/evthandler.rb +8 -0
  133. data/lib/wx/doc/extra/00_starting.md +6 -6
  134. data/lib/wx/doc/extra/01_packages.md +52 -51
  135. data/lib/wx/doc/extra/02_lifecycles.md +9 -8
  136. data/lib/wx/doc/extra/05_event-handling.md +37 -12
  137. data/lib/wx/doc/extra/06_geometry.md +5 -5
  138. data/lib/wx/doc/extra/07_colour_and_font.md +2 -2
  139. data/lib/wx/doc/extra/09_exceptions.md +2 -2
  140. data/lib/wx/doc/extra/10_art.md +18 -12
  141. data/lib/wx/doc/extra/11_drawing_and_dc.md +8 -8
  142. data/lib/wx/doc/font.rb +7 -1
  143. data/lib/wx/doc/font_data.rb +16 -0
  144. data/lib/wx/doc/functions.rb +60 -24
  145. data/lib/wx/doc/gc_dc.rb +7 -1
  146. data/lib/wx/doc/gdi_common.rb +8 -1
  147. data/lib/wx/doc/gen/about_dialog_info.rb +10 -10
  148. data/lib/wx/doc/gen/accelerator.rb +8 -13
  149. data/lib/wx/doc/gen/accessible.rb +27 -23
  150. data/lib/wx/doc/gen/activity_indicator.rb +7 -7
  151. data/lib/wx/doc/gen/animation.rb +20 -20
  152. data/lib/wx/doc/gen/animation_ctrl.rb +14 -13
  153. data/lib/wx/doc/gen/any_button.rb +3 -3
  154. data/lib/wx/doc/gen/app.rb +25 -88
  155. data/lib/wx/doc/gen/app_traits.rb +381 -0
  156. data/lib/wx/doc/gen/art_provider.rb +64 -4
  157. data/lib/wx/doc/gen/aui/aui_dock_art.rb +12 -12
  158. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +6 -6
  159. data/lib/wx/doc/gen/aui/aui_manager.rb +57 -41
  160. data/lib/wx/doc/gen/aui/aui_manager_event.rb +16 -10
  161. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +19 -20
  162. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +7 -7
  163. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +12 -12
  164. data/lib/wx/doc/gen/aui/aui_notebook.rb +136 -26
  165. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +17 -2
  166. data/lib/wx/doc/gen/aui/aui_pane_info.rb +95 -95
  167. data/lib/wx/doc/gen/aui/aui_tab_art.rb +17 -17
  168. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +61 -46
  169. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +18 -18
  170. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +6 -6
  171. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +11 -11
  172. data/lib/wx/doc/gen/aui/event_list.rb +7 -0
  173. data/lib/wx/doc/gen/banner_window.rb +98 -0
  174. data/lib/wx/doc/gen/bitmap.rb +56 -81
  175. data/lib/wx/doc/gen/bitmap_button.rb +13 -9
  176. data/lib/wx/doc/gen/bitmap_combo_box.rb +14 -9
  177. data/lib/wx/doc/gen/book_ctrl_base.rb +20 -16
  178. data/lib/wx/doc/gen/book_ctrl_event.rb +2 -2
  179. data/lib/wx/doc/gen/box_sizer.rb +1 -1
  180. data/lib/wx/doc/gen/brush.rb +24 -12
  181. data/lib/wx/doc/gen/busy_info.rb +1 -1
  182. data/lib/wx/doc/gen/button.rb +23 -11
  183. data/lib/wx/doc/gen/calculate_layout_event.rb +2 -1
  184. data/lib/wx/doc/gen/calendar_ctrl.rb +34 -22
  185. data/lib/wx/doc/gen/calendar_date_attr.rb +13 -13
  186. data/lib/wx/doc/gen/calendar_event.rb +4 -10
  187. data/lib/wx/doc/gen/caret.rb +6 -6
  188. data/lib/wx/doc/gen/check_box.rb +19 -15
  189. data/lib/wx/doc/gen/check_list_box.rb +10 -9
  190. data/lib/wx/doc/gen/choice.rb +10 -9
  191. data/lib/wx/doc/gen/choicebook.rb +13 -7
  192. data/lib/wx/doc/gen/client_dc.rb +1 -1
  193. data/lib/wx/doc/gen/clipboard.rb +10 -10
  194. data/lib/wx/doc/gen/collapsible_pane.rb +13 -10
  195. data/lib/wx/doc/gen/collapsible_pane_event.rb +5 -4
  196. data/lib/wx/doc/gen/colour.rb +42 -32
  197. data/lib/wx/doc/gen/colour_dialog.rb +12 -12
  198. data/lib/wx/doc/gen/colour_picker_ctrl.rb +16 -10
  199. data/lib/wx/doc/gen/colour_picker_event.rb +7 -4
  200. data/lib/wx/doc/gen/combo_box.rb +29 -20
  201. data/lib/wx/doc/gen/combo_ctrl.rb +960 -0
  202. data/lib/wx/doc/gen/command_link_button.rb +110 -0
  203. data/lib/wx/doc/gen/config_base.rb +10 -0
  204. data/lib/wx/doc/gen/context_help_button.rb +7 -6
  205. data/lib/wx/doc/gen/control.rb +12 -9
  206. data/lib/wx/doc/gen/control_with_items.rb +5 -5
  207. data/lib/wx/doc/gen/core.rb +8 -5
  208. data/lib/wx/doc/gen/cursor.rb +18 -18
  209. data/lib/wx/doc/gen/data_format.rb +5 -5
  210. data/lib/wx/doc/gen/data_object.rb +32 -25
  211. data/lib/wx/doc/gen/date_event.rb +3 -3
  212. data/lib/wx/doc/gen/date_picker_ctrl.rb +16 -11
  213. data/lib/wx/doc/gen/dc.rb +162 -74
  214. data/lib/wx/doc/gen/defs.rb +16 -16
  215. data/lib/wx/doc/gen/dialog.rb +65 -22
  216. data/lib/wx/doc/gen/dir_dialog.rb +6 -2
  217. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +3 -3
  218. data/lib/wx/doc/gen/dir_picker_ctrl.rb +17 -12
  219. data/lib/wx/doc/gen/drag_drop.rb +26 -52
  220. data/lib/wx/doc/gen/drag_image.rb +13 -38
  221. data/lib/wx/doc/gen/editable_list_box.rb +9 -5
  222. data/lib/wx/doc/gen/event.rb +55 -32
  223. data/lib/wx/doc/gen/event_blocker.rb +1 -1
  224. data/lib/wx/doc/gen/event_filter.rb +5 -2
  225. data/lib/wx/doc/gen/event_list.rb +117 -19
  226. data/lib/wx/doc/gen/events.rb +351 -215
  227. data/lib/wx/doc/gen/evt_handler.rb +8 -8
  228. data/lib/wx/doc/gen/ext_help_controller.rb +9 -9
  229. data/lib/wx/doc/gen/file_dialog.rb +20 -9
  230. data/lib/wx/doc/gen/file_dialog_custom_control.rb +146 -0
  231. data/lib/wx/doc/gen/file_dialog_customize_hook.rb +159 -0
  232. data/lib/wx/doc/gen/file_dir_picker_event.rb +5 -3
  233. data/lib/wx/doc/gen/file_picker_ctrl.rb +19 -11
  234. data/lib/wx/doc/gen/file_system.rb +250 -0
  235. data/lib/wx/doc/gen/find_dialog_event.rb +7 -2
  236. data/lib/wx/doc/gen/find_replace_data.rb +1 -1
  237. data/lib/wx/doc/gen/find_replace_dialog.rb +2 -2
  238. data/lib/wx/doc/gen/flex_grid_sizer.rb +16 -10
  239. data/lib/wx/doc/gen/font.rb +90 -94
  240. data/lib/wx/doc/gen/font_data.rb +15 -11
  241. data/lib/wx/doc/gen/font_dialog.rb +5 -5
  242. data/lib/wx/doc/gen/font_picker_ctrl.rb +11 -7
  243. data/lib/wx/doc/gen/font_picker_event.rb +2 -1
  244. data/lib/wx/doc/gen/frame.rb +36 -27
  245. data/lib/wx/doc/gen/fs_file.rb +65 -38
  246. data/lib/wx/doc/gen/gauge.rb +14 -10
  247. data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
  248. data/lib/wx/doc/gen/gcdc.rb +5 -1
  249. data/lib/wx/doc/gen/gdi_common.rb +43 -41
  250. data/lib/wx/doc/gen/gdi_object.rb +1 -1
  251. data/lib/wx/doc/gen/generic_dir_ctrl.rb +19 -13
  252. data/lib/wx/doc/gen/graphics_context.rb +320 -88
  253. data/lib/wx/doc/gen/graphics_object.rb +48 -102
  254. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +4 -2
  255. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +41 -56
  256. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +3 -1
  257. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +3 -1
  258. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +4 -2
  259. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +3 -1
  260. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
  261. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +3 -1
  262. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +3 -1
  263. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +3 -1
  264. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +19 -14
  265. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +3 -1
  266. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +3 -1
  267. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +3 -1
  268. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +3 -1
  269. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +3 -1
  270. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +3 -1
  271. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +15 -13
  272. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +3 -1
  273. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +3 -1
  274. data/lib/wx/doc/gen/grid/grid_ctrl.rb +446 -189
  275. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +5 -3
  276. data/lib/wx/doc/gen/grid/grid_event.rb +26 -9
  277. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +15 -11
  278. data/lib/wx/doc/gen/grid/grid_size_event.rb +13 -7
  279. data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -8
  280. data/lib/wx/doc/gen/grid/grid_table_base.rb +21 -21
  281. data/lib/wx/doc/gen/grid/grid_table_message.rb +5 -5
  282. data/lib/wx/doc/gen/grid_bag_sizer.rb +15 -15
  283. data/lib/wx/doc/gen/grid_sizer.rb +4 -4
  284. data/lib/wx/doc/gen/gui_event_loop.rb +132 -0
  285. data/lib/wx/doc/gen/header_ctrl.rb +755 -0
  286. data/lib/wx/doc/gen/header_ctrl_event.rb +131 -0
  287. data/lib/wx/doc/gen/help_controller.rb +25 -19
  288. data/lib/wx/doc/gen/help_provider.rb +3 -3
  289. data/lib/wx/doc/gen/html/html_cell.rb +100 -59
  290. data/lib/wx/doc/gen/html/html_cell_event.rb +7 -5
  291. data/lib/wx/doc/gen/html/html_easy_printing.rb +14 -9
  292. data/lib/wx/doc/gen/html/html_help_controller.rb +60 -46
  293. data/lib/wx/doc/gen/html/html_help_data.rb +5 -5
  294. data/lib/wx/doc/gen/html/html_help_window.rb +33 -35
  295. data/lib/wx/doc/gen/html/html_link_event.rb +4 -3
  296. data/lib/wx/doc/gen/html/html_list_box.rb +21 -13
  297. data/lib/wx/doc/gen/html/html_printout.rb +16 -6
  298. data/lib/wx/doc/gen/html/html_window.rb +54 -39
  299. data/lib/wx/doc/gen/hyperlink_ctrl.rb +15 -10
  300. data/lib/wx/doc/gen/hyperlink_event.rb +2 -1
  301. data/lib/wx/doc/gen/icon.rb +24 -24
  302. data/lib/wx/doc/gen/icon_location.rb +1 -1
  303. data/lib/wx/doc/gen/image.rb +164 -114
  304. data/lib/wx/doc/gen/image_list.rb +24 -30
  305. data/lib/wx/doc/gen/info_bar.rb +152 -0
  306. data/lib/wx/doc/gen/keyboard_state.rb +24 -24
  307. data/lib/wx/doc/gen/list_box.rb +40 -31
  308. data/lib/wx/doc/gen/list_ctrl.rb +223 -167
  309. data/lib/wx/doc/gen/list_event.rb +25 -3
  310. data/lib/wx/doc/gen/listbook.rb +13 -7
  311. data/lib/wx/doc/gen/locale.rb +22 -71
  312. data/lib/wx/doc/gen/log.rb +133 -106
  313. data/lib/wx/doc/gen/mdi_client_window.rb +3 -3
  314. data/lib/wx/doc/gen/mdi_frame.rb +23 -17
  315. data/lib/wx/doc/gen/media_ctrl.rb +22 -19
  316. data/lib/wx/doc/gen/media_event.rb +8 -2
  317. data/lib/wx/doc/gen/memory_dc.rb +26 -33
  318. data/lib/wx/doc/gen/menu.rb +24 -25
  319. data/lib/wx/doc/gen/menu_bar.rb +11 -28
  320. data/lib/wx/doc/gen/menu_item.rb +127 -46
  321. data/lib/wx/doc/gen/message_dialog.rb +54 -36
  322. data/lib/wx/doc/gen/mini_frame.rb +14 -5
  323. data/lib/wx/doc/gen/mouse_state.rb +51 -11
  324. data/lib/wx/doc/gen/multi_choice_dialog.rb +4 -2
  325. data/lib/wx/doc/gen/non_owned_window.rb +8 -9
  326. data/lib/wx/doc/gen/notebook.rb +27 -22
  327. data/lib/wx/doc/gen/number_entry_dialog.rb +3 -3
  328. data/lib/wx/doc/gen/object.rb +3 -14
  329. data/lib/wx/doc/gen/palette.rb +15 -17
  330. data/lib/wx/doc/gen/panel.rb +8 -7
  331. data/lib/wx/doc/gen/pen.rb +50 -37
  332. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +3 -3
  333. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +17 -17
  334. data/lib/wx/doc/gen/pg/pg_cell.rb +13 -16
  335. data/lib/wx/doc/gen/pg/pg_editor.rb +95 -93
  336. data/lib/wx/doc/gen/pg/pg_multi_button.rb +64 -89
  337. data/lib/wx/doc/gen/pg/pg_properties.rb +379 -349
  338. data/lib/wx/doc/gen/pg/pg_property.rb +260 -307
  339. data/lib/wx/doc/gen/pg/pg_validation_info.rb +3 -3
  340. data/lib/wx/doc/gen/pg/property_grid.rb +49 -49
  341. data/lib/wx/doc/gen/pg/property_grid_event.rb +24 -11
  342. data/lib/wx/doc/gen/pg/property_grid_interface.rb +75 -69
  343. data/lib/wx/doc/gen/pg/property_grid_manager.rb +51 -54
  344. data/lib/wx/doc/gen/pg/property_grid_page.rb +22 -30
  345. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +17 -26
  346. data/lib/wx/doc/gen/picker_base.rb +17 -16
  347. data/lib/wx/doc/gen/platform_info.rb +180 -20
  348. data/lib/wx/doc/gen/popup_window.rb +8 -8
  349. data/lib/wx/doc/gen/progress_dialog.rb +3 -3
  350. data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -18
  351. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +2 -2
  352. data/lib/wx/doc/gen/prt/preview_frame.rb +18 -2
  353. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
  354. data/lib/wx/doc/gen/prt/print_data.rb +68 -62
  355. data/lib/wx/doc/gen/prt/print_dialog.rb +4 -4
  356. data/lib/wx/doc/gen/prt/printer.rb +44 -49
  357. data/lib/wx/doc/gen/query_layout_info_event.rb +6 -5
  358. data/lib/wx/doc/gen/radio_box.rb +21 -19
  359. data/lib/wx/doc/gen/radio_button.rb +13 -11
  360. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +67 -67
  361. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +38 -20
  362. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +5 -5
  363. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +22 -15
  364. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +6 -6
  365. data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -11
  366. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +14 -16
  367. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +5 -5
  368. data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -12
  369. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +24 -22
  370. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +5 -5
  371. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +17 -15
  372. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +6 -6
  373. data/lib/wx/doc/gen/rearrange_ctrl.rb +60 -0
  374. data/lib/wx/doc/gen/rearrange_list.rb +99 -0
  375. data/lib/wx/doc/gen/region.rb +35 -43
  376. data/lib/wx/doc/gen/region_iterator.rb +3 -3
  377. data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
  378. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +626 -1538
  379. data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +37 -0
  380. data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +525 -0
  381. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +488 -503
  382. data/lib/wx/doc/gen/rtc/rich_text_event.rb +31 -12
  383. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +18 -18
  384. data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +282 -0
  385. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +23 -19
  386. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +9 -18
  387. data/lib/wx/doc/gen/rtc/rich_text_image.rb +328 -0
  388. data/lib/wx/doc/gen/rtc/rich_text_object.rb +2849 -0
  389. data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1174 -0
  390. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +29 -29
  391. data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
  392. data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
  393. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +3 -3
  394. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +34 -37
  395. data/lib/wx/doc/gen/sash_event.rb +8 -6
  396. data/lib/wx/doc/gen/sash_layout_window.rb +13 -11
  397. data/lib/wx/doc/gen/sash_window.rb +14 -9
  398. data/lib/wx/doc/gen/scroll_bar.rb +33 -12
  399. data/lib/wx/doc/gen/scrolled_canvas.rb +49 -37
  400. data/lib/wx/doc/gen/scrolled_control.rb +49 -37
  401. data/lib/wx/doc/gen/scrolled_window.rb +49 -37
  402. data/lib/wx/doc/gen/search_ctrl.rb +20 -13
  403. data/lib/wx/doc/gen/simplebook.rb +7 -7
  404. data/lib/wx/doc/gen/single_choice_dialog.rb +5 -4
  405. data/lib/wx/doc/gen/sizer.rb +69 -73
  406. data/lib/wx/doc/gen/sizer_item.rb +5 -5
  407. data/lib/wx/doc/gen/slider.rb +51 -18
  408. data/lib/wx/doc/gen/spin_button.rb +17 -11
  409. data/lib/wx/doc/gen/spin_ctrl.rb +15 -9
  410. data/lib/wx/doc/gen/spin_ctrl_double.rb +146 -0
  411. data/lib/wx/doc/gen/spin_double_event.rb +53 -0
  412. data/lib/wx/doc/gen/spin_event.rb +5 -2
  413. data/lib/wx/doc/gen/splash_screen.rb +16 -12
  414. data/lib/wx/doc/gen/splitter_event.rb +6 -2
  415. data/lib/wx/doc/gen/splitter_window.rb +36 -16
  416. data/lib/wx/doc/gen/static_bitmap.rb +9 -9
  417. data/lib/wx/doc/gen/static_box.rb +41 -37
  418. data/lib/wx/doc/gen/static_box_sizer.rb +13 -10
  419. data/lib/wx/doc/gen/static_line.rb +8 -7
  420. data/lib/wx/doc/gen/static_text.rb +15 -9
  421. data/lib/wx/doc/gen/status_bar.rb +53 -10
  422. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +200 -184
  423. data/lib/wx/doc/gen/stc/styled_text_event.rb +229 -54
  424. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +11 -2
  425. data/lib/wx/doc/gen/svg_file_dc.rb +8 -8
  426. data/lib/wx/doc/gen/system_options.rb +13 -3
  427. data/lib/wx/doc/gen/system_settings.rb +9 -9
  428. data/lib/wx/doc/gen/task_bar_icon.rb +17 -9
  429. data/lib/wx/doc/gen/task_bar_icon_event.rb +3 -3
  430. data/lib/wx/doc/gen/text_attr.rb +67 -61
  431. data/lib/wx/doc/gen/text_ctrl.rb +58 -113
  432. data/lib/wx/doc/gen/text_entry.rb +44 -56
  433. data/lib/wx/doc/gen/text_entry_dialog.rb +23 -23
  434. data/lib/wx/doc/gen/text_validator.rb +3 -19
  435. data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -10
  436. data/lib/wx/doc/gen/timer.rb +13 -9
  437. data/lib/wx/doc/gen/timer_event.rb +19 -26
  438. data/lib/wx/doc/gen/tip_provider.rb +3 -3
  439. data/lib/wx/doc/gen/toggle_button.rb +10 -9
  440. data/lib/wx/doc/gen/tool_bar.rb +71 -61
  441. data/lib/wx/doc/gen/tool_tip.rb +2 -10
  442. data/lib/wx/doc/gen/toolbook.rb +12 -9
  443. data/lib/wx/doc/gen/top_level_window.rb +53 -113
  444. data/lib/wx/doc/gen/tree_ctrl.rb +83 -33
  445. data/lib/wx/doc/gen/tree_event.rb +24 -3
  446. data/lib/wx/doc/gen/treebook.rb +20 -16
  447. data/lib/wx/doc/gen/ui_action_simulator.rb +20 -19
  448. data/lib/wx/doc/gen/utils.rb +20 -14
  449. data/lib/wx/doc/gen/v_list_box.rb +11 -11
  450. data/lib/wx/doc/gen/v_scrolled_window.rb +9 -9
  451. data/lib/wx/doc/gen/validator.rb +10 -8
  452. data/lib/wx/doc/gen/variant.rb +56 -119
  453. data/lib/wx/doc/gen/window.rb +314 -224
  454. data/lib/wx/doc/gen/window_dc.rb +1 -1
  455. data/lib/wx/doc/gen/with_images.rb +2 -2
  456. data/lib/wx/doc/gen/wizard.rb +21 -8
  457. data/lib/wx/doc/gen/wizard_event.rb +11 -4
  458. data/lib/wx/doc/gen/wizard_page.rb +3 -3
  459. data/lib/wx/doc/gen/wizard_page_simple.rb +8 -8
  460. data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
  461. data/lib/wx/doc/gen/xml_node.rb +13 -13
  462. data/lib/wx/doc/gen/xml_resource.rb +24 -21
  463. data/lib/wx/doc/graphics_context.rb +59 -39
  464. data/lib/wx/doc/grid/grid.rb +16 -1
  465. data/lib/wx/doc/hboxsizer.rb +33 -0
  466. data/lib/wx/doc/help_controller.rb +6 -0
  467. data/lib/wx/doc/html/html_help_controller.rb +6 -0
  468. data/lib/wx/doc/icon.rb +13 -5
  469. data/lib/wx/doc/id_helper.rb +6 -0
  470. data/lib/wx/doc/image.rb +50 -12
  471. data/lib/wx/doc/list_ctrl.rb +38 -0
  472. data/lib/wx/doc/log.rb +45 -0
  473. data/lib/wx/doc/memory_dc.rb +6 -0
  474. data/lib/wx/doc/mirror_dc.rb +6 -0
  475. data/lib/wx/doc/pen.rb +6 -0
  476. data/lib/wx/doc/pg/events.rb +6 -0
  477. data/lib/wx/doc/pg/pg_property.rb +17 -0
  478. data/lib/wx/doc/pg/pgeditor.rb +6 -0
  479. data/lib/wx/doc/pg/property_grid.rb +6 -0
  480. data/lib/wx/doc/pg/property_grid_interface.rb +6 -0
  481. data/lib/wx/doc/progress_dialog.rb +6 -0
  482. data/lib/wx/doc/prt/page_setup_dialog.rb +6 -0
  483. data/lib/wx/doc/prt/print_data.rb +6 -0
  484. data/lib/wx/doc/prt/print_dialog.rb +6 -0
  485. data/lib/wx/doc/prt/printer.rb +6 -0
  486. data/lib/wx/doc/prt/printer_dc.rb +8 -2
  487. data/lib/wx/doc/radio_box.rb +6 -0
  488. data/lib/wx/doc/rbn/ribbon_bar.rb +6 -0
  489. data/lib/wx/doc/rbn/ribbon_button_bar.rb +6 -0
  490. data/lib/wx/doc/rbn/ribbon_gallery.rb +6 -0
  491. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +6 -0
  492. data/lib/wx/doc/region_iterator.rb +6 -0
  493. data/lib/wx/doc/rtc/richtext_buffer.rb +28 -0
  494. data/lib/wx/doc/rtc/richtext_formatting_dialog.rb +68 -0
  495. data/lib/wx/doc/rtc/richtext_printing.rb +6 -0
  496. data/lib/wx/doc/rtc/richtext_style_sheet.rb +20 -0
  497. data/lib/wx/doc/scaled_dc.rb +7 -1
  498. data/lib/wx/doc/screen_dc.rb +6 -0
  499. data/lib/wx/doc/stock_objects.rb +6 -0
  500. data/lib/wx/doc/stream.rb +6 -0
  501. data/lib/wx/doc/svg_file_dc.rb +6 -0
  502. data/lib/wx/doc/system_settings.rb +6 -0
  503. data/lib/wx/doc/text_validator.rb +18 -0
  504. data/lib/wx/doc/textctrl.rb +89 -0
  505. data/lib/wx/doc/tree_event.rb +20 -0
  506. data/lib/wx/doc/treebook.rb +6 -0
  507. data/lib/wx/doc/v_list_box.rb +6 -0
  508. data/lib/wx/doc/variant.rb +6 -0
  509. data/lib/wx/doc/vboxsizer.rb +33 -0
  510. data/lib/wx/doc/window.rb +6 -0
  511. data/lib/wx/doc/window_disabler.rb +6 -0
  512. data/lib/wx/doc/xml_resource.rb +8 -0
  513. data/lib/wx/global_const.rb +4 -1
  514. data/lib/wx/grid/grid.rb +23 -3
  515. data/lib/wx/grid/keyword_defs.rb +8 -1
  516. data/lib/wx/grid/require.rb +4 -1
  517. data/lib/wx/grid.rb +4 -1
  518. data/lib/wx/helpers.rb +8 -1
  519. data/lib/wx/html/htmlhelpcontroller.rb +29 -3
  520. data/lib/wx/html/htmlwindow.rb +23 -12
  521. data/lib/wx/html/keyword_defs.rb +8 -1
  522. data/lib/wx/html/require.rb +4 -1
  523. data/lib/wx/html/simple_html_listbox.rb +3 -0
  524. data/lib/wx/html.rb +4 -1
  525. data/lib/wx/keyword_ctors.rb +22 -3
  526. data/lib/wx/keyword_defs.rb +55 -3
  527. data/lib/wx/pg/events.rb +4 -1
  528. data/lib/wx/pg/keyword_defs.rb +8 -1
  529. data/lib/wx/pg/pg_editor.rb +3 -0
  530. data/lib/wx/pg/pg_properties.rb +4 -1
  531. data/lib/wx/pg/pg_property.rb +18 -5
  532. data/lib/wx/pg/property_grid.rb +4 -1
  533. data/lib/wx/pg/property_grid_interface.rb +3 -0
  534. data/lib/wx/pg/require.rb +4 -1
  535. data/lib/wx/pg.rb +4 -1
  536. data/lib/wx/prt/keyword_defs.rb +8 -1
  537. data/lib/wx/prt/page_setup_dialog.rb +3 -0
  538. data/lib/wx/prt/previewframe.rb +5 -0
  539. data/lib/wx/prt/require.rb +4 -1
  540. data/lib/wx/prt.rb +4 -1
  541. data/lib/wx/rbn/events.rb +4 -1
  542. data/lib/wx/rbn/keyword_defs.rb +8 -1
  543. data/lib/wx/rbn/require.rb +5 -1
  544. data/lib/wx/rbn/ribbon_art_provider.rb +3 -1
  545. data/lib/wx/rbn/ribbon_bar.rb +3 -0
  546. data/lib/wx/rbn/ribbon_button_bar.rb +3 -0
  547. data/lib/wx/rbn/ribbon_control.rb +3 -0
  548. data/lib/wx/rbn/ribbon_gallery.rb +10 -0
  549. data/lib/wx/rbn/ribbon_page.rb +3 -0
  550. data/lib/wx/rbn/ribbon_panel.rb +3 -0
  551. data/lib/wx/rbn/ribbon_tool_bar.rb +3 -0
  552. data/lib/wx/rbn.rb +4 -1
  553. data/lib/wx/rtc/ext.rb +4 -1
  554. data/lib/wx/rtc/keyword_defs.rb +18 -7
  555. data/lib/wx/rtc/require.rb +8 -1
  556. data/lib/wx/rtc/richtext_buffer.rb +36 -0
  557. data/lib/wx/rtc/richtext_formatting_dialog.rb +88 -0
  558. data/lib/wx/rtc/richtext_style_organiser_dialog.rb +46 -0
  559. data/lib/wx/rtc/symbol_picker_dialog.rb +47 -0
  560. data/lib/wx/rtc.rb +5 -1
  561. data/lib/wx/stc/keyword_defs.rb +8 -1
  562. data/lib/wx/stc/require.rb +4 -1
  563. data/lib/wx/stc.rb +4 -1
  564. data/lib/wx/version.rb +5 -1
  565. data/lib/wx/wxruby/base.rb +4 -1
  566. data/lib/wx/wxruby/cmd/sampler.rb +4 -1
  567. data/lib/wx/wxruby/cmd/test.rb +4 -1
  568. data/lib/wx.rb +4 -1
  569. data/lib/wxruby_aui.so +0 -0
  570. data/lib/wxruby_core.so +0 -0
  571. data/lib/wxruby_grid.so +0 -0
  572. data/lib/wxruby_html.so +0 -0
  573. data/lib/wxruby_pg.so +0 -0
  574. data/lib/wxruby_prt.so +0 -0
  575. data/lib/wxruby_rbn.so +0 -0
  576. data/lib/wxruby_rtc.so +0 -0
  577. data/lib/wxruby_stc.so +0 -0
  578. data/rakelib/install.rb +4 -1
  579. data/rakelib/lib/config/cygwin.rb +4 -1
  580. data/rakelib/lib/config/linux.rb +4 -1
  581. data/rakelib/lib/config/macosx.rb +5 -2
  582. data/rakelib/lib/config/mingw.rb +4 -1
  583. data/rakelib/lib/config/netbsd.rb +4 -1
  584. data/rakelib/lib/config/unixish.rb +10 -7
  585. data/rakelib/lib/config.rb +7 -2
  586. data/rakelib/lib/ext/enum_chain.rb +4 -1
  587. data/rakelib/prepost.rake +4 -1
  588. data/rakelib/prepost.rb +4 -1
  589. data/samples/aui/aui.rb +8 -3
  590. data/samples/bigdemo/bigdemo.rb +9 -2
  591. data/samples/bigdemo/run.rb +9 -2
  592. data/samples/bigdemo/utils.rb +9 -1
  593. data/samples/calendar/calendar.rb +9 -4
  594. data/samples/caret/caret.rb +8 -3
  595. data/samples/controls/books.rb +8 -2
  596. data/samples/controls/controls.rb +33 -77
  597. data/samples/controls/get_item_sample.rb +8 -2
  598. data/samples/controls/htlbox.rb +10 -3
  599. data/samples/dialogs/dialogs.rb +9 -4
  600. data/samples/dialogs/wizard.rb +8 -3
  601. data/samples/dragdrop/dragdrop.rb +8 -3
  602. data/samples/drawing/bitmap.rb +8 -3
  603. data/samples/drawing/bitmap_image.rb +8 -3
  604. data/samples/drawing/graphics_drawing.rb +44 -33
  605. data/samples/drawing/image_prt.rb +8 -2
  606. data/samples/drawing/maths_images.rb +8 -3
  607. data/samples/drawing/rmagic_bitmap_image.rb +8 -3
  608. data/samples/etc/choice.rb +8 -3
  609. data/samples/etc/miniframe.rb +8 -3
  610. data/samples/etc/sash.rb +8 -3
  611. data/samples/etc/scrollwin.rb +8 -3
  612. data/samples/etc/system_settings.rb +8 -3
  613. data/samples/event/activation.rb +8 -3
  614. data/samples/event/event.rb +8 -3
  615. data/samples/event/threaded.rb +8 -3
  616. data/samples/event/update_ui_event.rb +8 -3
  617. data/samples/grid/grid.rb +9 -3
  618. data/samples/grid/gridtablebase.rb +8 -3
  619. data/samples/html/html.rb +8 -3
  620. data/samples/mdi/mdi.rb +8 -3
  621. data/samples/minimal/minimal.rb +8 -3
  622. data/samples/minimal/nothing.rb +8 -3
  623. data/samples/printing/printing.rb +8 -3
  624. data/samples/printing/printing2.rb +8 -2
  625. data/samples/propgrid/propgrid.rb +4 -1
  626. data/samples/propgrid/propgrid_minimal.rb +4 -2
  627. data/samples/propgrid/sample_props.rb +4 -1
  628. data/samples/ribbon/ribbon.rb +4 -1
  629. data/samples/sampler/editor.rb +4 -1
  630. data/samples/sampler/ext.rb +4 -1
  631. data/samples/sampler/sample.rb +13 -4
  632. data/samples/sampler/stc_editor.rb +4 -1
  633. data/samples/sampler/txt_editor.rb +4 -1
  634. data/samples/sampler.rb +11 -3
  635. data/samples/splash/splash.rb +4 -2
  636. data/samples/text/art/richtext/alignleft.xpm +24 -0
  637. data/samples/text/art/richtext/alignright.xpm +24 -0
  638. data/samples/text/art/richtext/bold.xpm +24 -0
  639. data/samples/text/art/richtext/centre.xpm +24 -0
  640. data/samples/text/art/richtext/copy.xpm +45 -0
  641. data/samples/text/art/richtext/cut.xpm +47 -0
  642. data/samples/text/art/richtext/font.xpm +25 -0
  643. data/samples/text/art/richtext/idea.xpm +47 -0
  644. data/samples/text/art/richtext/indentless.xpm +25 -0
  645. data/samples/text/art/richtext/indentmore.xpm +25 -0
  646. data/samples/text/art/richtext/italic.xpm +25 -0
  647. data/samples/text/art/richtext/open.xpm +58 -0
  648. data/samples/text/art/richtext/paste.xpm +47 -0
  649. data/samples/text/art/richtext/redo.xpm +59 -0
  650. data/samples/text/art/richtext/save.xpm +43 -0
  651. data/samples/text/art/richtext/smiley.xpm +42 -0
  652. data/samples/text/art/richtext/underline.xpm +25 -0
  653. data/samples/text/art/richtext/undo.xpm +59 -0
  654. data/samples/text/art/richtext/zebra.xpm +409 -0
  655. data/samples/text/rich_textctrl.rb +8 -3
  656. data/samples/text/richtext.rb +1824 -0
  657. data/samples/text/scintilla.rb +8 -3
  658. data/samples/text/textctrl.rb +21 -4
  659. data/samples/text/tn_richtext.png +0 -0
  660. data/samples/text/unicode.rb +9 -4
  661. data/samples/treectrl/treectrl.rb +10 -5
  662. data/samples/xrc/custom_xrc_sample.rb +8 -3
  663. data/samples/xrc/xrc_sample.rb +8 -3
  664. data/tests/art/test_art/bitmap/wxruby-128x128.png +0 -0
  665. data/tests/art/test_art/bitmap/wxruby-256x256.png +0 -0
  666. data/tests/art/test_art/bitmap/wxruby-64x64.png +0 -0
  667. data/tests/lib/item_container_tests.rb +3 -0
  668. data/tests/lib/text_entry_tests.rb +3 -0
  669. data/tests/lib/wxapp_runner.rb +3 -0
  670. data/tests/lib/wxframe_runner.rb +81 -3
  671. data/tests/test_app_event_filter.rb +3 -0
  672. data/tests/test_app_traits.rb +33 -0
  673. data/tests/test_art.rb +31 -0
  674. data/tests/test_art_provider.rb +3 -0
  675. data/tests/test_aui.rb +65 -0
  676. data/tests/test_basic.rb +5 -1
  677. data/tests/test_box_sizer.rb +164 -0
  678. data/tests/test_clipboard.rb +3 -0
  679. data/tests/test_config.rb +150 -0
  680. data/tests/test_dc.rb +3 -0
  681. data/tests/test_dialog.rb +3 -0
  682. data/tests/test_event_handling.rb +3 -0
  683. data/tests/test_events.rb +3 -0
  684. data/tests/test_ext_controls.rb +286 -3
  685. data/tests/test_file_dialog.rb +55 -0
  686. data/tests/test_font.rb +8 -5
  687. data/tests/test_gdi_object.rb +3 -0
  688. data/tests/test_geometry.rb +4 -0
  689. data/tests/test_grid_sizer.rb +151 -0
  690. data/tests/test_intl.rb +3 -0
  691. data/tests/test_item_data.rb +3 -0
  692. data/tests/test_list_ctrl.rb +56 -0
  693. data/tests/test_log.rb +226 -0
  694. data/tests/test_proof_check.rb +52 -0
  695. data/tests/test_richtext.rb +204 -0
  696. data/tests/test_std_controls.rb +99 -31
  697. data/tests/test_timer.rb +98 -0
  698. data/tests/test_variant.rb +3 -0
  699. data/tests/test_window.rb +10 -8
  700. data/tests/testapp.rb +4 -0
  701. data/tests/testapp_noframe.rb +4 -0
  702. metadata +87 -3
  703. data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -15,7 +15,55 @@ module Wx::STC
15
15
  # == Index of the member groups
16
16
  #
17
17
  # Links for quick access to the various categories of {Wx::STC::StyledTextCtrl} functions:
18
- # - Constructors and related methods- Text retrieval and modification- Searching and replacing- Overtype- Cut copy and paste- Error handling- Undo and Redo- Selection and information- Multiple Selection and Virtual Space- Scrolling and automatic scrolling- White space- Cursor- Mouse capture- Line endings- Words- Styling- Style definition- Caret selection and hotspot styles- Character representations- Margins- Annotations- Other settings- Brace highlighting- Tabs and Indentation Guides- Markers- Indicators- Autocompletion- User lists- Call tips- Keyboard commands- Key bindings- Popup edit menu- Macro recording- Printing- Direct access- Multiple views- Background loading and saving- Folding- Line wrapping- Zooming- Long lines- Lexer- Event related items- Deprecated items- Additional {Wx::STC::StyledTextCtrl} methods- Raw variants- Text entry methods- Text area methods
18
+ #
19
+ # - Constructors and related methods
20
+ # - Text retrieval and modification
21
+ # - Searching and replacing
22
+ # - Overtype
23
+ # - Cut copy and paste
24
+ # - Error handling
25
+ # - Undo and Redo
26
+ # - Selection and information
27
+ # - Multiple Selection and Virtual Space
28
+ # - Scrolling and automatic scrolling
29
+ # - White space
30
+ # - Cursor
31
+ # - Mouse capture
32
+ # - Line endings
33
+ # - Words
34
+ # - Styling
35
+ # - Style definition
36
+ # - Caret selection and hotspot styles
37
+ # - Character representations
38
+ # - Margins
39
+ # - Annotations
40
+ # - Other settings
41
+ # - Brace highlighting
42
+ # - Tabs and Indentation Guides
43
+ # - Markers
44
+ # - Indicators
45
+ # - Autocompletion
46
+ # - User lists
47
+ # - Call tips
48
+ # - Keyboard commands
49
+ # - Key bindings
50
+ # - Popup edit menu
51
+ # - Macro recording
52
+ # - Printing
53
+ # - Direct access
54
+ # - Multiple views
55
+ # - Background loading and saving
56
+ # - Folding
57
+ # - Line wrapping
58
+ # - Zooming
59
+ # - Long lines
60
+ # - Lexer
61
+ # - Event related items
62
+ # - Deprecated items
63
+ # - Additional {Wx::STC::StyledTextCtrl} methods
64
+ # - Raw variants
65
+ # - Text entry methods
66
+ # - Text area methods
19
67
  #
20
68
  # ===
21
69
  #
@@ -35,10 +83,10 @@ module Wx::STC
35
83
  # @param size [Array(Integer, Integer), Wx::Size]
36
84
  # @param style [Integer]
37
85
  # @param name [String]
38
- # @return [StyledTextCtrl]
86
+ # @return [Wx::STC::StyledTextCtrl]
39
87
  # @overload initialize()
40
88
  # Default ctor.
41
- # @return [StyledTextCtrl]
89
+ # @return [Wx::STC::StyledTextCtrl]
42
90
  def initialize(*args) end
43
91
 
44
92
  # Create the UI elements for a STC that was created with the default ctor.
@@ -49,7 +97,7 @@ module Wx::STC
49
97
  # @param size [Array(Integer, Integer), Wx::Size]
50
98
  # @param style [Integer]
51
99
  # @param name [String]
52
- # @return [true,false]
100
+ # @return [Boolean]
53
101
  def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=Wx::STCNameStr) end
54
102
 
55
103
  # Add text to the document at current position.
@@ -57,11 +105,6 @@ module Wx::STC
57
105
  # @return [void]
58
106
  def add_text(text) end
59
107
 
60
- # Add array of cells to document.
61
- # @param data [Wx::MemoryBuffer]
62
- # @return [void]
63
- def add_styled_text(data) end
64
-
65
108
  # Insert string at a position.
66
109
  # @param pos [Integer]
67
110
  # @param text [String]
@@ -104,15 +147,8 @@ module Wx::STC
104
147
  # @return [void]
105
148
  def set_save_point; end
106
149
 
107
- # Retrieve a buffer of cells.
108
- # @param startPos [Integer]
109
- # @param endPos [Integer]
110
- # @return [Wx::MemoryBuffer]
111
- def get_styled_text(startPos, endPos) end
112
- alias_method :styled_text, :get_styled_text
113
-
114
150
  # In read-only mode?
115
- # @return [true,false]
151
+ # @return [Boolean]
116
152
  def get_read_only; end
117
153
  alias_method :read_only, :get_read_only
118
154
 
@@ -135,7 +171,7 @@ module Wx::STC
135
171
  def replace_selection(text) end
136
172
 
137
173
  # Set to read only or read write.
138
- # @param readOnly [true,false]
174
+ # @param readOnly [Boolean]
139
175
  # @return [void]
140
176
  def set_read_only(readOnly) end
141
177
  alias_method :read_only=, :set_read_only
@@ -278,18 +314,18 @@ module Wx::STC
278
314
  def search_prev(searchFlags, text) end
279
315
 
280
316
  # Set to overtype (true) or insert mode.
281
- # @param overType [true,false]
317
+ # @param overType [Boolean]
282
318
  # @return [void]
283
319
  def set_overtype(overType) end
284
320
  alias_method :overtype=, :set_overtype
285
321
 
286
322
  # Returns true if overtype mode is active otherwise false is returned.
287
- # @return [true,false]
323
+ # @return [Boolean]
288
324
  def get_overtype; end
289
325
  alias_method :overtype, :get_overtype
290
326
 
291
327
  # Will a paste succeed?
292
- # @return [true,false]
328
+ # @return [Boolean]
293
329
  def can_paste; end
294
330
  alias_method :can_paste?, :can_paste
295
331
 
@@ -323,13 +359,13 @@ module Wx::STC
323
359
  def copy_text(length, text) end
324
360
 
325
361
  # Enable/Disable convert-on-paste for line endings.
326
- # @param convert [true,false]
362
+ # @param convert [Boolean]
327
363
  # @return [void]
328
364
  def set_paste_convert_endings(convert) end
329
365
  alias_method :paste_convert_endings=, :set_paste_convert_endings
330
366
 
331
367
  # Get convert-on-paste setting.
332
- # @return [true,false]
368
+ # @return [Boolean]
333
369
  def get_paste_convert_endings; end
334
370
  alias_method :paste_convert_endings, :get_paste_convert_endings
335
371
 
@@ -355,18 +391,18 @@ module Wx::STC
355
391
  def redo_; end
356
392
 
357
393
  # Choose between collecting actions into the undo history and discarding them.
358
- # @param collectUndo [true,false]
394
+ # @param collectUndo [Boolean]
359
395
  # @return [void]
360
396
  def set_undo_collection(collectUndo) end
361
397
  alias_method :undo_collection=, :set_undo_collection
362
398
 
363
399
  # Are there any redoable actions in the undo history?
364
- # @return [true,false]
400
+ # @return [Boolean]
365
401
  def can_redo; end
366
402
  alias_method :can_redo?, :can_redo
367
403
 
368
404
  # Is undo history being collected?
369
- # @return [true,false]
405
+ # @return [Boolean]
370
406
  def get_undo_collection; end
371
407
  alias_method :undo_collection, :get_undo_collection
372
408
 
@@ -380,7 +416,7 @@ module Wx::STC
380
416
  def end_undo_action; end
381
417
 
382
418
  # Are there any undoable actions in the undo history?
383
- # @return [true,false]
419
+ # @return [Boolean]
384
420
  def can_undo; end
385
421
  alias_method :can_undo?, :can_undo
386
422
 
@@ -511,7 +547,7 @@ module Wx::STC
511
547
  alias_method :line_count, :get_line_count
512
548
 
513
549
  # Is the document different from when it was last saved?
514
- # @return [true,false]
550
+ # @return [Boolean]
515
551
  def get_modify; end
516
552
  alias_method :modify, :get_modify
517
553
 
@@ -521,7 +557,7 @@ module Wx::STC
521
557
  alias_method :selected_text, :get_selected_text
522
558
 
523
559
  # Draw the selection in normal style or with selection highlighted.
524
- # @param hide [true,false]
560
+ # @param hide [Boolean]
525
561
  # @return [void]
526
562
  def hide_selection(hide) end
527
563
 
@@ -571,7 +607,7 @@ module Wx::STC
571
607
  def lines_on_screen; end
572
608
 
573
609
  # Is the selection rectangular? The alternative is the more common stream selection.
574
- # @return [true,false]
610
+ # @return [Boolean]
575
611
  def selection_is_rectangle; end
576
612
 
577
613
  # Set the last x chosen value to be the caret x position.
@@ -642,13 +678,13 @@ module Wx::STC
642
678
  def char_position_from_point_close(x, y) end
643
679
 
644
680
  # Set whether switching to rectangular mode while selecting with the mouse is allowed.
645
- # @param mouseSelectionRectangularSwitch [true,false]
681
+ # @param mouseSelectionRectangularSwitch [Boolean]
646
682
  # @return [void]
647
683
  def set_mouse_selection_rectangular_switch(mouseSelectionRectangularSwitch) end
648
684
  alias_method :mouse_selection_rectangular_switch=, :set_mouse_selection_rectangular_switch
649
685
 
650
686
  # Whether switching to rectangular mode while selecting with the mouse is allowed.
651
- # @return [true,false]
687
+ # @return [Boolean]
652
688
  def get_mouse_selection_rectangular_switch; end
653
689
  alias_method :mouse_selection_rectangular_switch, :get_mouse_selection_rectangular_switch
654
690
 
@@ -674,46 +710,46 @@ module Wx::STC
674
710
  alias_method :multi_paste, :get_multi_paste
675
711
 
676
712
  # Set whether multiple selections can be made.
677
- # @param multipleSelection [true,false]
713
+ # @param multipleSelection [Boolean]
678
714
  # @return [void]
679
715
  def set_multiple_selection(multipleSelection) end
680
716
  alias_method :multiple_selection=, :set_multiple_selection
681
717
 
682
718
  # Whether multiple selections can be made.
683
- # @return [true,false]
719
+ # @return [Boolean]
684
720
  def get_multiple_selection; end
685
721
  alias_method :multiple_selection, :get_multiple_selection
686
722
 
687
723
  # Set whether typing can be performed into multiple selections.
688
- # @param additionalSelectionTyping [true,false]
724
+ # @param additionalSelectionTyping [Boolean]
689
725
  # @return [void]
690
726
  def set_additional_selection_typing(additionalSelectionTyping) end
691
727
  alias_method :additional_selection_typing=, :set_additional_selection_typing
692
728
 
693
729
  # Whether typing can be performed into multiple selections.
694
- # @return [true,false]
730
+ # @return [Boolean]
695
731
  def get_additional_selection_typing; end
696
732
  alias_method :additional_selection_typing, :get_additional_selection_typing
697
733
 
698
734
  # Set whether additional carets will blink.
699
- # @param additionalCaretsBlink [true,false]
735
+ # @param additionalCaretsBlink [Boolean]
700
736
  # @return [void]
701
737
  def set_additional_carets_blink(additionalCaretsBlink) end
702
738
  alias_method :additional_carets_blink=, :set_additional_carets_blink
703
739
 
704
740
  # Whether additional carets will blink.
705
- # @return [true,false]
741
+ # @return [Boolean]
706
742
  def get_additional_carets_blink; end
707
743
  alias_method :additional_carets_blink, :get_additional_carets_blink
708
744
 
709
745
  # Set whether additional carets are visible.
710
- # @param additionalCaretsVisible [true,false]
746
+ # @param additionalCaretsVisible [Boolean]
711
747
  # @return [void]
712
748
  def set_additional_carets_visible(additionalCaretsVisible) end
713
749
  alias_method :additional_carets_visible=, :set_additional_carets_visible
714
750
 
715
751
  # Whether additional carets are visible.
716
- # @return [true,false]
752
+ # @return [Boolean]
717
753
  def get_additional_carets_visible; end
718
754
  alias_method :additional_carets_visible, :get_additional_carets_visible
719
755
 
@@ -723,7 +759,7 @@ module Wx::STC
723
759
  alias_method :selections, :get_selections
724
760
 
725
761
  # Is every selected range empty?
726
- # @return [true,false]
762
+ # @return [Boolean]
727
763
  def get_selection_empty; end
728
764
  alias_method :selection_empty, :get_selection_empty
729
765
 
@@ -950,13 +986,13 @@ module Wx::STC
950
986
  def multiple_select_add_each; end
951
987
 
952
988
  # Show or hide the horizontal scroll bar.
953
- # @param visible [true,false]
989
+ # @param visible [Boolean]
954
990
  # @return [void]
955
991
  def set_use_horizontal_scroll_bar(visible) end
956
992
  alias_method :use_horizontal_scroll_bar=, :set_use_horizontal_scroll_bar
957
993
 
958
994
  # Is the horizontal scroll bar visible?
959
- # @return [true,false]
995
+ # @return [Boolean]
960
996
  def get_use_horizontal_scroll_bar; end
961
997
  alias_method :use_horizontal_scroll_bar, :get_use_horizontal_scroll_bar
962
998
 
@@ -994,36 +1030,36 @@ module Wx::STC
994
1030
  alias_method :scroll_width, :get_scroll_width
995
1031
 
996
1032
  # Sets whether the maximum width line displayed is used to set scroll width.
997
- # @param tracking [true,false]
1033
+ # @param tracking [Boolean]
998
1034
  # @return [void]
999
1035
  def set_scroll_width_tracking(tracking) end
1000
1036
  alias_method :scroll_width_tracking=, :set_scroll_width_tracking
1001
1037
 
1002
1038
  # Retrieve whether the scroll width tracks wide lines.
1003
- # @return [true,false]
1039
+ # @return [Boolean]
1004
1040
  def get_scroll_width_tracking; end
1005
1041
  alias_method :scroll_width_tracking, :get_scroll_width_tracking
1006
1042
 
1007
1043
  # Sets the scroll range so that maximum scroll position has the last line at the bottom of the view (default).
1008
1044
  # Setting this to false allows scrolling one page below the last line.
1009
- # @param endAtLastLine [true,false]
1045
+ # @param endAtLastLine [Boolean]
1010
1046
  # @return [void]
1011
1047
  def set_end_at_last_line(endAtLastLine) end
1012
1048
  alias_method :end_at_last_line=, :set_end_at_last_line
1013
1049
 
1014
1050
  # Retrieve whether the maximum scroll position has the last line at the bottom of the view.
1015
- # @return [true,false]
1051
+ # @return [Boolean]
1016
1052
  def get_end_at_last_line; end
1017
1053
  alias_method :end_at_last_line, :get_end_at_last_line
1018
1054
 
1019
1055
  # Show or hide the vertical scroll bar.
1020
- # @param visible [true,false]
1056
+ # @param visible [Boolean]
1021
1057
  # @return [void]
1022
1058
  def set_use_vertical_scroll_bar(visible) end
1023
1059
  alias_method :use_vertical_scroll_bar=, :set_use_vertical_scroll_bar
1024
1060
 
1025
1061
  # Is the vertical scroll bar visible?
1026
- # @return [true,false]
1062
+ # @return [Boolean]
1027
1063
  def get_use_vertical_scroll_bar; end
1028
1064
  alias_method :use_vertical_scroll_bar, :get_use_vertical_scroll_bar
1029
1065
 
@@ -1093,13 +1129,13 @@ module Wx::STC
1093
1129
  alias_method :tab_draw_mode=, :set_tab_draw_mode
1094
1130
 
1095
1131
  # Set the foreground colour of all whitespace and whether to use this setting.
1096
- # @param useSetting [true,false]
1132
+ # @param useSetting [Boolean]
1097
1133
  # @param fore [Wx::Colour,String,Symbol]
1098
1134
  # @return [void]
1099
1135
  def set_whitespace_foreground(useSetting, fore) end
1100
1136
 
1101
1137
  # Set the background colour of all whitespace and whether to use this setting.
1102
- # @param useSetting [true,false]
1138
+ # @param useSetting [Boolean]
1103
1139
  # @param back [Wx::Colour,String,Symbol]
1104
1140
  # @return [void]
1105
1141
  def set_whitespace_background(useSetting, back) end
@@ -1150,24 +1186,24 @@ module Wx::STC
1150
1186
  alias_method :stc_cursor, :get_stc_cursor
1151
1187
 
1152
1188
  # Set whether the mouse is captured when its button is pressed.
1153
- # @param captures [true,false]
1189
+ # @param captures [Boolean]
1154
1190
  # @return [void]
1155
1191
  def set_mouse_down_captures(captures) end
1156
1192
  alias_method :mouse_down_captures=, :set_mouse_down_captures
1157
1193
 
1158
1194
  # Get whether mouse gets captured.
1159
- # @return [true,false]
1195
+ # @return [Boolean]
1160
1196
  def get_mouse_down_captures; end
1161
1197
  alias_method :mouse_down_captures, :get_mouse_down_captures
1162
1198
 
1163
1199
  # Set whether the mouse wheel can be active outside the window.
1164
- # @param captures [true,false]
1200
+ # @param captures [Boolean]
1165
1201
  # @return [void]
1166
1202
  def set_mouse_wheel_captures(captures) end
1167
1203
  alias_method :mouse_wheel_captures=, :set_mouse_wheel_captures
1168
1204
 
1169
1205
  # Get whether mouse wheel can be active outside the window.
1170
- # @return [true,false]
1206
+ # @return [Boolean]
1171
1207
  def get_mouse_wheel_captures; end
1172
1208
  alias_method :mouse_wheel_captures, :get_mouse_wheel_captures
1173
1209
 
@@ -1189,12 +1225,12 @@ module Wx::STC
1189
1225
  alias_method :eol_mode=, :set_eol_mode
1190
1226
 
1191
1227
  # Are the end of line characters visible?
1192
- # @return [true,false]
1228
+ # @return [Boolean]
1193
1229
  def get_view_eol; end
1194
1230
  alias_method :view_eol, :get_view_eol
1195
1231
 
1196
1232
  # Make the end of line characters visible or invisible.
1197
- # @param visible [true,false]
1233
+ # @param visible [Boolean]
1198
1234
  # @return [void]
1199
1235
  def set_view_eol(visible) end
1200
1236
  alias_method :view_eol=, :set_view_eol
@@ -1240,20 +1276,20 @@ module Wx::STC
1240
1276
 
1241
1277
  # Get position of start of word.
1242
1278
  # @param pos [Integer]
1243
- # @param onlyWordCharacters [true,false]
1279
+ # @param onlyWordCharacters [Boolean]
1244
1280
  # @return [Integer]
1245
1281
  def word_start_position(pos, onlyWordCharacters) end
1246
1282
 
1247
1283
  # Get position of end of word.
1248
1284
  # @param pos [Integer]
1249
- # @param onlyWordCharacters [true,false]
1285
+ # @param onlyWordCharacters [Boolean]
1250
1286
  # @return [Integer]
1251
1287
  def word_end_position(pos, onlyWordCharacters) end
1252
1288
 
1253
1289
  # Is the range start..end considered a word?
1254
1290
  # @param start [Integer]
1255
1291
  # @param end_ [Integer]
1256
- # @return [true,false]
1292
+ # @return [Boolean]
1257
1293
  def is_range_word(start, end_) end
1258
1294
  alias_method :range_word?, :is_range_word
1259
1295
 
@@ -1348,13 +1384,13 @@ module Wx::STC
1348
1384
 
1349
1385
  # Set a style to be bold or not.
1350
1386
  # @param style [Integer]
1351
- # @param bold [true,false]
1387
+ # @param bold [Boolean]
1352
1388
  # @return [void]
1353
1389
  def style_set_bold(style, bold) end
1354
1390
 
1355
1391
  # Set a style to be italic or not.
1356
1392
  # @param style [Integer]
1357
- # @param italic [true,false]
1393
+ # @param italic [Boolean]
1358
1394
  # @return [void]
1359
1395
  def style_set_italic(style, italic) end
1360
1396
 
@@ -1372,7 +1408,7 @@ module Wx::STC
1372
1408
 
1373
1409
  # Set a style to have its end of line filled or not.
1374
1410
  # @param style [Integer]
1375
- # @param eolFilled [true,false]
1411
+ # @param eolFilled [Boolean]
1376
1412
  # @return [void]
1377
1413
  def style_set_eol_filled(style, eolFilled) end
1378
1414
 
@@ -1382,7 +1418,7 @@ module Wx::STC
1382
1418
 
1383
1419
  # Set a style to be underlined or not.
1384
1420
  # @param style [Integer]
1385
- # @param underline [true,false]
1421
+ # @param underline [Boolean]
1386
1422
  # @return [void]
1387
1423
  def style_set_underline(style, underline) end
1388
1424
 
@@ -1398,12 +1434,12 @@ module Wx::STC
1398
1434
 
1399
1435
  # Get is a style bold or not.
1400
1436
  # @param style [Integer]
1401
- # @return [true,false]
1437
+ # @return [Boolean]
1402
1438
  def style_get_bold(style) end
1403
1439
 
1404
1440
  # Get is a style italic or not.
1405
1441
  # @param style [Integer]
1406
- # @return [true,false]
1442
+ # @return [Boolean]
1407
1443
  def style_get_italic(style) end
1408
1444
 
1409
1445
  # Get the size of characters of a style.
@@ -1418,12 +1454,12 @@ module Wx::STC
1418
1454
 
1419
1455
  # Get is a style to have its end of line filled or not.
1420
1456
  # @param style [Integer]
1421
- # @return [true,false]
1457
+ # @return [Boolean]
1422
1458
  def style_get_eol_filled(style) end
1423
1459
 
1424
1460
  # Get is a style underlined or not.
1425
1461
  # @param style [Integer]
1426
- # @return [true,false]
1462
+ # @return [Boolean]
1427
1463
  def style_get_underline(style) end
1428
1464
 
1429
1465
  # Get is a style mixed case, or to force upper or lower case.
@@ -1439,18 +1475,18 @@ module Wx::STC
1439
1475
 
1440
1476
  # Get is a style visible or not.
1441
1477
  # @param style [Integer]
1442
- # @return [true,false]
1478
+ # @return [Boolean]
1443
1479
  def style_get_visible(style) end
1444
1480
 
1445
1481
  # Get is a style changeable or not (read only).
1446
1482
  # Experimental feature, currently buggy.
1447
1483
  # @param style [Integer]
1448
- # @return [true,false]
1484
+ # @return [Boolean]
1449
1485
  def style_get_changeable(style) end
1450
1486
 
1451
1487
  # Get is a style a hotspot or not.
1452
1488
  # @param style [Integer]
1453
- # @return [true,false]
1489
+ # @return [Boolean]
1454
1490
  def style_get_hot_spot(style) end
1455
1491
 
1456
1492
  # Set a style to be mixed case, or to force upper or lower case.
@@ -1494,31 +1530,31 @@ module Wx::STC
1494
1530
 
1495
1531
  # Set a style to be a hotspot or not.
1496
1532
  # @param style [Integer]
1497
- # @param hotspot [true,false]
1533
+ # @param hotspot [Boolean]
1498
1534
  # @return [void]
1499
1535
  def style_set_hot_spot(style, hotspot) end
1500
1536
 
1501
1537
  # Set a style to be visible or not.
1502
1538
  # @param style [Integer]
1503
- # @param visible [true,false]
1539
+ # @param visible [Boolean]
1504
1540
  # @return [void]
1505
1541
  def style_set_visible(style, visible) end
1506
1542
 
1507
1543
  # Set a style to be changeable or not (read only).
1508
1544
  # Experimental feature, currently buggy.
1509
1545
  # @param style [Integer]
1510
- # @param changeable [true,false]
1546
+ # @param changeable [Boolean]
1511
1547
  # @return [void]
1512
1548
  def style_set_changeable(style, changeable) end
1513
1549
 
1514
1550
  # Set the foreground colour of the main and additional selections and whether to use this setting.
1515
- # @param useSetting [true,false]
1551
+ # @param useSetting [Boolean]
1516
1552
  # @param fore [Wx::Colour,String,Symbol]
1517
1553
  # @return [void]
1518
1554
  def set_sel_foreground(useSetting, fore) end
1519
1555
 
1520
1556
  # Set the background colour of the main and additional selections and whether to use this setting.
1521
- # @param useSetting [true,false]
1557
+ # @param useSetting [Boolean]
1522
1558
  # @param back [Wx::Colour,String,Symbol]
1523
1559
  # @return [void]
1524
1560
  def set_sel_background(useSetting, back) end
@@ -1535,12 +1571,12 @@ module Wx::STC
1535
1571
  alias_method :sel_alpha=, :set_sel_alpha
1536
1572
 
1537
1573
  # Is the selection end of line filled?
1538
- # @return [true,false]
1574
+ # @return [Boolean]
1539
1575
  def get_sel_eol_filled; end
1540
1576
  alias_method :sel_eol_filled, :get_sel_eol_filled
1541
1577
 
1542
1578
  # Set the selection to have its end of line filled or not.
1543
- # @param filled [true,false]
1579
+ # @param filled [Boolean]
1544
1580
  # @return [void]
1545
1581
  def set_sel_eol_filled(filled) end
1546
1582
  alias_method :sel_eol_filled=, :set_sel_eol_filled
@@ -1564,12 +1600,12 @@ module Wx::STC
1564
1600
  alias_method :caret_period=, :set_caret_period
1565
1601
 
1566
1602
  # Is the background of the line containing the caret in a different colour?
1567
- # @return [true,false]
1603
+ # @return [Boolean]
1568
1604
  def get_caret_line_visible; end
1569
1605
  alias_method :caret_line_visible, :get_caret_line_visible
1570
1606
 
1571
1607
  # Display the background of the line containing the caret in a different colour.
1572
- # @param show [true,false]
1608
+ # @param show [Boolean]
1573
1609
  # @return [void]
1574
1610
  def set_caret_line_visible(show) end
1575
1611
  alias_method :caret_line_visible=, :set_caret_line_visible
@@ -1602,7 +1638,7 @@ module Wx::STC
1602
1638
  alias_method :caret_width, :get_caret_width
1603
1639
 
1604
1640
  # Set a fore colour for active hotspots.
1605
- # @param useSetting [true,false]
1641
+ # @param useSetting [Boolean]
1606
1642
  # @param fore [Wx::Colour,String,Symbol]
1607
1643
  # @return [void]
1608
1644
  def set_hotspot_active_foreground(useSetting, fore) end
@@ -1613,7 +1649,7 @@ module Wx::STC
1613
1649
  alias_method :hotspot_active_foreground, :get_hotspot_active_foreground
1614
1650
 
1615
1651
  # Set a back colour for active hotspots.
1616
- # @param useSetting [true,false]
1652
+ # @param useSetting [Boolean]
1617
1653
  # @param back [Wx::Colour,String,Symbol]
1618
1654
  # @return [void]
1619
1655
  def set_hotspot_active_background(useSetting, back) end
@@ -1624,24 +1660,24 @@ module Wx::STC
1624
1660
  alias_method :hotspot_active_background, :get_hotspot_active_background
1625
1661
 
1626
1662
  # Enable / Disable underlining active hotspots.
1627
- # @param underline [true,false]
1663
+ # @param underline [Boolean]
1628
1664
  # @return [void]
1629
1665
  def set_hotspot_active_underline(underline) end
1630
1666
  alias_method :hotspot_active_underline=, :set_hotspot_active_underline
1631
1667
 
1632
1668
  # Get whether underlining for active hotspots.
1633
- # @return [true,false]
1669
+ # @return [Boolean]
1634
1670
  def get_hotspot_active_underline; end
1635
1671
  alias_method :hotspot_active_underline, :get_hotspot_active_underline
1636
1672
 
1637
1673
  # Limit hotspots to single line so hotspots on two lines don't merge.
1638
- # @param singleLine [true,false]
1674
+ # @param singleLine [Boolean]
1639
1675
  # @return [void]
1640
1676
  def set_hotspot_single_line(singleLine) end
1641
1677
  alias_method :hotspot_single_line=, :set_hotspot_single_line
1642
1678
 
1643
1679
  # Get the HotspotSingleLine property.
1644
- # @return [true,false]
1680
+ # @return [Boolean]
1645
1681
  def get_hotspot_single_line; end
1646
1682
  alias_method :hotspot_single_line, :get_hotspot_single_line
1647
1683
 
@@ -1687,12 +1723,12 @@ module Wx::STC
1687
1723
  alias_method :caret_style, :get_caret_style
1688
1724
 
1689
1725
  # Is the caret line always visible?
1690
- # @return [true,false]
1726
+ # @return [Boolean]
1691
1727
  def get_caret_line_visible_always; end
1692
1728
  alias_method :caret_line_visible_always, :get_caret_line_visible_always
1693
1729
 
1694
1730
  # Sets the caret line to always visible.
1695
- # @param alwaysVisible [true,false]
1731
+ # @param alwaysVisible [Boolean]
1696
1732
  # @return [void]
1697
1733
  def set_caret_line_visible_always(alwaysVisible) end
1698
1734
  alias_method :caret_line_visible_always=, :set_caret_line_visible_always
@@ -1765,13 +1801,13 @@ module Wx::STC
1765
1801
 
1766
1802
  # Make a margin sensitive or insensitive to mouse clicks.
1767
1803
  # @param margin [Integer]
1768
- # @param sensitive [true,false]
1804
+ # @param sensitive [Boolean]
1769
1805
  # @return [void]
1770
1806
  def set_margin_sensitive(margin, sensitive) end
1771
1807
 
1772
1808
  # Retrieve the mouse click sensitivity of a margin.
1773
1809
  # @param margin [Integer]
1774
- # @return [true,false]
1810
+ # @return [Boolean]
1775
1811
  def get_margin_sensitive(margin) end
1776
1812
  alias_method :margin_sensitive, :get_margin_sensitive
1777
1813
 
@@ -1836,13 +1872,13 @@ module Wx::STC
1836
1872
  alias_method :margin_right, :get_margin_right
1837
1873
 
1838
1874
  # Set one of the colours used as a chequerboard pattern in the fold margin.
1839
- # @param useSetting [true,false]
1875
+ # @param useSetting [Boolean]
1840
1876
  # @param back [Wx::Colour,String,Symbol]
1841
1877
  # @return [void]
1842
1878
  def set_fold_margin_colour(useSetting, back) end
1843
1879
 
1844
1880
  # Set the other colour used as a chequerboard pattern in the fold margin.
1845
- # @param useSetting [true,false]
1881
+ # @param useSetting [Boolean]
1846
1882
  # @param fore [Wx::Colour,String,Symbol]
1847
1883
  # @return [void]
1848
1884
  def set_fold_margin_hi_colour(useSetting, fore) end
@@ -1969,12 +2005,12 @@ module Wx::STC
1969
2005
  def annotation_get_style_offset; end
1970
2006
 
1971
2007
  # Is drawing done first into a buffer or direct to the screen?
1972
- # @return [true,false]
2008
+ # @return [Boolean]
1973
2009
  def get_buffered_draw; end
1974
2010
  alias_method :buffered_draw, :get_buffered_draw
1975
2011
 
1976
2012
  # If drawing is buffered then each line of text is drawn into a bitmap buffer before drawing it to the screen to avoid flicker.
1977
- # @param buffered [true,false]
2013
+ # @param buffered [Boolean]
1978
2014
  # @return [void]
1979
2015
  def set_buffered_draw(buffered) end
1980
2016
  alias_method :buffered_draw=, :set_buffered_draw
@@ -2011,13 +2047,13 @@ module Wx::STC
2011
2047
  alias_method :layout_cache=, :set_layout_cache
2012
2048
 
2013
2049
  # Is drawing done in two phases with backgrounds drawn before foregrounds?
2014
- # @return [true,false]
2050
+ # @return [Boolean]
2015
2051
  def get_two_phase_draw; end
2016
2052
  alias_method :two_phase_draw, :get_two_phase_draw
2017
2053
 
2018
2054
  # In twoPhaseDraw mode, drawing is performed in two phases, first the background and then the foreground.
2019
2055
  # This avoids chopping off characters that overlap the next run.
2020
- # @param twoPhase [true,false]
2056
+ # @param twoPhase [Boolean]
2021
2057
  # @return [void]
2022
2058
  def set_two_phase_draw(twoPhase) end
2023
2059
  alias_method :two_phase_draw=, :set_two_phase_draw
@@ -2037,7 +2073,7 @@ module Wx::STC
2037
2073
  alias_method :phases_draw=, :set_phases_draw
2038
2074
 
2039
2075
  # Choose the quality level for text.
2040
- # The input should be one of the wxSTC_EFF_QUALITY_* constants. This method only has any effect with the {Wx::MSW} port and when technology has been set to {Wx::STC::STC_TECHNOLOGY_DIRECTWRITE}.
2076
+ # The input should be one of the wxSTC_EFF_QUALITY_* constants. This method only has any effect with the wxMSW port and when technology has been set to {Wx::STC::STC_TECHNOLOGY_DIRECTWRITE}.
2041
2077
  # @param fontQuality [Integer]
2042
2078
  # @return [void]
2043
2079
  def set_font_quality(fontQuality) end
@@ -2050,18 +2086,18 @@ module Wx::STC
2050
2086
  alias_method :font_quality, :get_font_quality
2051
2087
 
2052
2088
  # Change internal focus flag.
2053
- # @param focus [true,false]
2089
+ # @param focus [Boolean]
2054
2090
  # @return [void]
2055
2091
  def set_stc_focus(focus) end
2056
2092
  alias_method :stc_focus=, :set_stc_focus
2057
2093
 
2058
2094
  # Get internal focus flag.
2059
- # @return [true,false]
2095
+ # @return [Boolean]
2060
2096
  def get_stc_focus; end
2061
2097
  alias_method :stc_focus, :get_stc_focus
2062
2098
 
2063
2099
  # Set the technology used.
2064
- # For the {Wx::MSW} port, the input can be either {Wx::STC::STC_TECHNOLOGY_DEFAULT} or {Wx::STC::STC_TECHNOLOGY_DIRECTWRITE}. With other ports, this method has no effect.
2100
+ # For the wxMSW port, the input can be either {Wx::STC::STC_TECHNOLOGY_DEFAULT} or {Wx::STC::STC_TECHNOLOGY_DIRECTWRITE}. With other ports, this method has no effect.
2065
2101
  # @param technology [Integer]
2066
2102
  # @return [void]
2067
2103
  def set_technology(technology) end
@@ -2080,7 +2116,7 @@ module Wx::STC
2080
2116
  def brace_highlight(posA, posB) end
2081
2117
 
2082
2118
  # Use specified indicator to highlight matching braces instead of changing their style.
2083
- # @param useSetting [true,false]
2119
+ # @param useSetting [Boolean]
2084
2120
  # @param indicator [Integer]
2085
2121
  # @return [void]
2086
2122
  def brace_highlight_indicator(useSetting, indicator) end
@@ -2091,7 +2127,7 @@ module Wx::STC
2091
2127
  def brace_bad_light(pos) end
2092
2128
 
2093
2129
  # Use specified indicator to highlight non matching brace instead of changing its style.
2094
- # @param useSetting [true,false]
2130
+ # @param useSetting [Boolean]
2095
2131
  # @param indicator [Integer]
2096
2132
  # @return [void]
2097
2133
  def brace_bad_light_indicator(useSetting, indicator) end
@@ -2144,13 +2180,13 @@ module Wx::STC
2144
2180
  alias_method :indent, :get_indent
2145
2181
 
2146
2182
  # Indentation will only use space characters if useTabs is false, otherwise it will use a combination of tabs and spaces.
2147
- # @param useTabs [true,false]
2183
+ # @param useTabs [Boolean]
2148
2184
  # @return [void]
2149
2185
  def set_use_tabs(useTabs) end
2150
2186
  alias_method :use_tabs=, :set_use_tabs
2151
2187
 
2152
2188
  # Retrieve whether tabs will be used in indentation.
2153
- # @return [true,false]
2189
+ # @return [Boolean]
2154
2190
  def get_use_tabs; end
2155
2191
  alias_method :use_tabs, :get_use_tabs
2156
2192
 
@@ -2198,24 +2234,24 @@ module Wx::STC
2198
2234
  alias_method :highlight_guide, :get_highlight_guide
2199
2235
 
2200
2236
  # Sets whether a tab pressed when caret is within indentation indents.
2201
- # @param tabIndents [true,false]
2237
+ # @param tabIndents [Boolean]
2202
2238
  # @return [void]
2203
2239
  def set_tab_indents(tabIndents) end
2204
2240
  alias_method :tab_indents=, :set_tab_indents
2205
2241
 
2206
2242
  # Does a tab pressed when caret is within indentation indent?
2207
- # @return [true,false]
2243
+ # @return [Boolean]
2208
2244
  def get_tab_indents; end
2209
2245
  alias_method :tab_indents, :get_tab_indents
2210
2246
 
2211
2247
  # Sets whether a backspace pressed when caret is within indentation unindents.
2212
- # @param bsUnIndents [true,false]
2248
+ # @param bsUnIndents [Boolean]
2213
2249
  # @return [void]
2214
2250
  def set_back_space_un_indents(bsUnIndents) end
2215
2251
  alias_method :back_space_un_indents=, :set_back_space_un_indents
2216
2252
 
2217
2253
  # Does a backspace pressed when caret is within indentation unindent?
2218
- # @return [true,false]
2254
+ # @return [Boolean]
2219
2255
  def get_back_space_un_indents; end
2220
2256
  alias_method :back_space_un_indents, :get_back_space_un_indents
2221
2257
 
@@ -2257,7 +2293,7 @@ module Wx::STC
2257
2293
  def marker_set_background_selected(markerNumber, back) end
2258
2294
 
2259
2295
  # Enable/disable highlight for current folding block (smallest one that contains the caret)
2260
- # @param enabled [true,false]
2296
+ # @param enabled [Boolean]
2261
2297
  # @return [void]
2262
2298
  def marker_enable_highlight(enabled) end
2263
2299
 
@@ -2296,12 +2332,6 @@ module Wx::STC
2296
2332
  # @return [Integer]
2297
2333
  def marker_previous(lineStart, markerMask) end
2298
2334
 
2299
- # Define a marker from a bitmap.
2300
- # @param markerNumber [Integer]
2301
- # @param xpmData [char]
2302
- # @return [void]
2303
- def marker_define_pixmap(markerNumber, xpmData) end
2304
-
2305
2335
  # Add a set of markers to a line.
2306
2336
  # @param line [Integer]
2307
2337
  # @param markerSet [Integer]
@@ -2336,13 +2366,6 @@ module Wx::STC
2336
2366
  # @return [void]
2337
2367
  def rgba_image_set_scale(scalePercent) end
2338
2368
 
2339
- # Define a marker from RGBA data.
2340
- # It has the width and height from RGBAImageSetWidth/Height
2341
- # @param markerNumber [Integer]
2342
- # @param pixels [unsigned char]
2343
- # @return [void]
2344
- def marker_define_rgba_image(markerNumber, pixels) end
2345
-
2346
2369
  # Set an indicator to plain, squiggle or TT.
2347
2370
  # The second argument should be one of the wxSTC_INDIC_* constants.
2348
2371
  # @param indicator [Integer]
@@ -2369,13 +2392,13 @@ module Wx::STC
2369
2392
 
2370
2393
  # Set an indicator to draw under text or over(default).
2371
2394
  # @param indicator [Integer]
2372
- # @param under [true,false]
2395
+ # @param under [Boolean]
2373
2396
  # @return [void]
2374
2397
  def indicator_set_under(indicator, under) end
2375
2398
 
2376
2399
  # Retrieve whether indicator drawn under or over text.
2377
2400
  # @param indicator [Integer]
2378
- # @return [true,false]
2401
+ # @return [Boolean]
2379
2402
  def indicator_get_under(indicator) end
2380
2403
 
2381
2404
  # Set a hover indicator to plain, squiggle or TT.
@@ -2504,7 +2527,7 @@ module Wx::STC
2504
2527
  def auto_comp_cancel; end
2505
2528
 
2506
2529
  # Is there an auto-completion list visible?
2507
- # @return [true,false]
2530
+ # @return [Boolean]
2508
2531
  def auto_comp_active; end
2509
2532
 
2510
2533
  # Retrieve the position of the caret when the auto-completion list was displayed.
@@ -2536,12 +2559,12 @@ module Wx::STC
2536
2559
  def auto_comp_select(select) end
2537
2560
 
2538
2561
  # Should the auto-completion list be cancelled if the user backspaces to a position before where the box was created.
2539
- # @param cancel [true,false]
2562
+ # @param cancel [Boolean]
2540
2563
  # @return [void]
2541
2564
  def auto_comp_set_cancel_at_start(cancel) end
2542
2565
 
2543
2566
  # Retrieve whether auto-completion cancelled by backspacing before start.
2544
- # @return [true,false]
2567
+ # @return [Boolean]
2545
2568
  def auto_comp_get_cancel_at_start; end
2546
2569
 
2547
2570
  # Define a set of characters that when typed will cause the autocompletion to choose the selected item.
@@ -2550,39 +2573,39 @@ module Wx::STC
2550
2573
  def auto_comp_set_fill_ups(characterSet) end
2551
2574
 
2552
2575
  # Should a single item auto-completion list automatically choose the item.
2553
- # @param chooseSingle [true,false]
2576
+ # @param chooseSingle [Boolean]
2554
2577
  # @return [void]
2555
2578
  def auto_comp_set_choose_single(chooseSingle) end
2556
2579
 
2557
2580
  # Retrieve whether a single item auto-completion list automatically choose the item.
2558
- # @return [true,false]
2581
+ # @return [Boolean]
2559
2582
  def auto_comp_get_choose_single; end
2560
2583
 
2561
2584
  # Set whether case is significant when performing auto-completion searches.
2562
- # @param ignoreCase [true,false]
2585
+ # @param ignoreCase [Boolean]
2563
2586
  # @return [void]
2564
2587
  def auto_comp_set_ignore_case(ignoreCase) end
2565
2588
 
2566
2589
  # Retrieve state of ignore case flag.
2567
- # @return [true,false]
2590
+ # @return [Boolean]
2568
2591
  def auto_comp_get_ignore_case; end
2569
2592
 
2570
2593
  # Set whether or not autocompletion is hidden automatically when nothing matches.
2571
- # @param autoHide [true,false]
2594
+ # @param autoHide [Boolean]
2572
2595
  # @return [void]
2573
2596
  def auto_comp_set_auto_hide(autoHide) end
2574
2597
 
2575
2598
  # Retrieve whether or not autocompletion is hidden automatically when nothing matches.
2576
- # @return [true,false]
2599
+ # @return [Boolean]
2577
2600
  def auto_comp_get_auto_hide; end
2578
2601
 
2579
2602
  # Set whether or not autocompletion deletes any word characters after the inserted text upon completion.
2580
- # @param dropRestOfWord [true,false]
2603
+ # @param dropRestOfWord [Boolean]
2581
2604
  # @return [void]
2582
2605
  def auto_comp_set_drop_rest_of_word(dropRestOfWord) end
2583
2606
 
2584
2607
  # Retrieve whether or not autocompletion deletes any word characters after the inserted text upon completion.
2585
- # @return [true,false]
2608
+ # @return [Boolean]
2586
2609
  def auto_comp_get_drop_rest_of_word; end
2587
2610
 
2588
2611
  # Register an image for use in autocompletion lists.
@@ -2666,13 +2689,6 @@ module Wx::STC
2666
2689
  # @return [Integer]
2667
2690
  def auto_comp_get_order; end
2668
2691
 
2669
- # Register an RGBA image for use in autocompletion lists.
2670
- # It has the width and height from RGBAImageSetWidth/Height
2671
- # @param type [Integer]
2672
- # @param pixels [unsigned char]
2673
- # @return [void]
2674
- def register_rgba_image(type, pixels) end
2675
-
2676
2692
  # Display a list of strings and send notification when user chooses one.
2677
2693
  # @param listType [Integer]
2678
2694
  # @param itemList [String]
@@ -2690,7 +2706,7 @@ module Wx::STC
2690
2706
  def call_tip_cancel; end
2691
2707
 
2692
2708
  # Is there an active call tip?
2693
- # @return [true,false]
2709
+ # @return [Boolean]
2694
2710
  def call_tip_active; end
2695
2711
 
2696
2712
  # Retrieve the position where the caret was before displaying the call tip.
@@ -2729,7 +2745,7 @@ module Wx::STC
2729
2745
  def call_tip_use_style(tabSize) end
2730
2746
 
2731
2747
  # Set position of calltip, above or below text.
2732
- # @param above [true,false]
2748
+ # @param above [Boolean]
2733
2749
  # @return [void]
2734
2750
  def call_tip_set_position(above) end
2735
2751
 
@@ -3153,7 +3169,7 @@ module Wx::STC
3153
3169
  alias_method :print_colour_mode, :get_print_colour_mode
3154
3170
 
3155
3171
  # On Windows, will draw the document into a display context such as a printer.
3156
- # @param doDraw [true,false]
3172
+ # @param doDraw [Boolean]
3157
3173
  # @param startPos [Integer]
3158
3174
  # @param endPos [Integer]
3159
3175
  # @param draw [Wx::DC]
@@ -3230,24 +3246,24 @@ module Wx::STC
3230
3246
 
3231
3247
  # Is a line visible?
3232
3248
  # @param line [Integer]
3233
- # @return [true,false]
3249
+ # @return [Boolean]
3234
3250
  def get_line_visible(line) end
3235
3251
  alias_method :line_visible, :get_line_visible
3236
3252
 
3237
3253
  # Are all lines visible?
3238
- # @return [true,false]
3254
+ # @return [Boolean]
3239
3255
  def get_all_lines_visible; end
3240
3256
  alias_method :all_lines_visible, :get_all_lines_visible
3241
3257
 
3242
3258
  # Show the children of a header line.
3243
3259
  # @param line [Integer]
3244
- # @param expanded [true,false]
3260
+ # @param expanded [Boolean]
3245
3261
  # @return [void]
3246
3262
  def set_fold_expanded(line, expanded) end
3247
3263
 
3248
3264
  # Is a header line expanded?
3249
3265
  # @param line [Integer]
3250
- # @return [true,false]
3266
+ # @return [Boolean]
3251
3267
  def get_fold_expanded(line) end
3252
3268
  alias_method :fold_expanded, :get_fold_expanded
3253
3269
 
@@ -3698,16 +3714,16 @@ module Wx::STC
3698
3714
  # @param styleNum [Integer]
3699
3715
  # @param size [Integer]
3700
3716
  # @param faceName [String]
3701
- # @param bold [true,false]
3702
- # @param italic [true,false]
3703
- # @param underline [true,false]
3704
- # @param encoding [FontEncoding]
3717
+ # @param bold [Boolean]
3718
+ # @param italic [Boolean]
3719
+ # @param underline [Boolean]
3720
+ # @param encoding [Wx::FontEncoding]
3705
3721
  # @return [void]
3706
3722
  def style_set_font_attr(styleNum, size, faceName, bold, italic, underline, encoding=Wx::FontEncoding::FONTENCODING_DEFAULT) end
3707
3723
 
3708
3724
  # Set the font encoding to be used by a style.
3709
3725
  # @param style [Integer]
3710
- # @param encoding [FontEncoding]
3726
+ # @param encoding [Wx::FontEncoding]
3711
3727
  # @return [void]
3712
3728
  def style_set_font_encoding(style, encoding) end
3713
3729
 
@@ -3752,38 +3768,38 @@ module Wx::STC
3752
3768
  alias_method :h_scroll_bar=, :set_h_scroll_bar
3753
3769
 
3754
3770
  # Can be used to prevent the EVT_CHAR handler from adding the char.
3755
- # @return [true,false]
3771
+ # @return [Boolean]
3756
3772
  def get_last_keydown_processed; end
3757
3773
  alias_method :last_keydown_processed, :get_last_keydown_processed
3758
3774
 
3759
3775
  # Returns the line number of the line with the caret.
3760
- # @param val [true,false]
3776
+ # @param val [Boolean]
3761
3777
  # @return [void]
3762
3778
  def set_last_keydown_processed(val) end
3763
3779
  alias_method :last_keydown_processed=, :set_last_keydown_processed
3764
3780
 
3765
3781
  # Write the contents of the editor to filename.
3766
3782
  # @param filename [String]
3767
- # @return [true,false]
3783
+ # @return [Boolean]
3768
3784
  def save_file(filename) end
3769
3785
 
3770
3786
  # Load the contents of filename into the editor.
3771
3787
  # @param filename [String]
3772
- # @return [true,false]
3788
+ # @return [Boolean]
3773
3789
  def load_file(filename) end
3774
3790
 
3775
3791
  # Allow for simulating a DnD DragEnter.
3776
3792
  # @param x [Integer]
3777
3793
  # @param y [Integer]
3778
- # @param defaultRes [DragResult]
3779
- # @return [DragResult]
3794
+ # @param defaultRes [Wx::DragResult]
3795
+ # @return [Wx::DragResult]
3780
3796
  def do_drag_enter(x, y, defaultRes) end
3781
3797
 
3782
3798
  # Allow for simulating a DnD DragOver.
3783
3799
  # @param x [Integer]
3784
3800
  # @param y [Integer]
3785
- # @param defaultRes [DragResult]
3786
- # @return [DragResult]
3801
+ # @param defaultRes [Wx::DragResult]
3802
+ # @return [Wx::DragResult]
3787
3803
  def do_drag_over(x, y, defaultRes) end
3788
3804
 
3789
3805
  # Allow for simulating a DnD DragLeave.
@@ -3794,18 +3810,18 @@ module Wx::STC
3794
3810
  # @param x [Integer]
3795
3811
  # @param y [Integer]
3796
3812
  # @param data [String]
3797
- # @return [true,false]
3813
+ # @return [Boolean]
3798
3814
  def do_drop_text(x, y, data) end
3799
3815
 
3800
3816
  # Specify whether anti-aliased fonts should be used.
3801
3817
  # This will have no effect on some platforms, but on some ({Wx::Mac} for example) can greatly improve performance.
3802
- # @param useAA [true,false]
3818
+ # @param useAA [Boolean]
3803
3819
  # @return [void]
3804
3820
  def set_use_anti_aliasing(useAA) end
3805
3821
  alias_method :use_anti_aliasing=, :set_use_anti_aliasing
3806
3822
 
3807
3823
  # Returns the current UseAntiAliasing setting.
3808
- # @return [true,false]
3824
+ # @return [Boolean]
3809
3825
  def get_use_anti_aliasing; end
3810
3826
  alias_method :use_anti_aliasing, :get_use_anti_aliasing
3811
3827
 
@@ -3852,15 +3868,15 @@ module Wx::STC
3852
3868
  # Notice that insertion position is, in general, different from the index of the character the cursor position at in the string returned by {Wx::STC::StyledTextCtrl#get_value}. While this is always the case for the single line controls, multi-line controls can use two characters <code>"\\r\\n"</code> as line separator (this is notably the case under MSW) meaning that indices in the control and its string value are offset by 1 for every line.
3853
3869
  # Hence to correctly get the character at the current cursor position, taking into account that there can be none if the cursor is at the end of the string, you could do the following:
3854
3870
  #
3855
- # ```
3856
- # wxString GetCurrentChar(wxTextCtrl *tc)
3857
- # {
3858
- # long pos = tc->GetInsertionPoint();
3859
- # if ( pos == tc->GetLastPosition() )
3860
- # return wxString();
3861
- #
3862
- # return tc->GetRange(pos, pos + 1);
3863
- # }
3871
+ # ```ruby
3872
+ # def get_current_char(tc)
3873
+ # pos = tc.insertion_point
3874
+ # if pos == tc.last_position
3875
+ # nil
3876
+ # else
3877
+ # tc.get_range(pos, pos + 1)
3878
+ # end
3879
+ # end
3864
3880
  # ```
3865
3881
  # @return [Integer]
3866
3882
  def get_insertion_point; end
@@ -3892,14 +3908,14 @@ module Wx::STC
3892
3908
 
3893
3909
  # Returns true if the controls contents may be edited by user (note that it always can be changed by the program).
3894
3910
  # In other words, this functions returns true if the control hasn't been put in read-only mode by a previous call to {Wx::STC::StyledTextCtrl#set_editable}.
3895
- # @return [true,false]
3911
+ # @return [Boolean]
3896
3912
  def is_editable; end
3897
3913
  alias_method :editable?, :is_editable
3898
3914
 
3899
3915
  # Makes the text item editable or read-only, overriding the <b>{Wx::TE_READONLY}</b> flag.
3900
3916
  #
3901
3917
  # @see Wx::STC::StyledTextCtrl#is_editable
3902
- # @param editable [true,false] If true, the control is editable. If false, the control is read-only.
3918
+ # @param editable [Boolean] If true, the control is editable. If false, the control is read-only.
3903
3919
  # @return [void]
3904
3920
  def set_editable(editable) end
3905
3921
  alias_method :editable=, :set_editable
@@ -3918,7 +3934,7 @@ module Wx::STC
3918
3934
  alias_method :line_text, :get_line_text
3919
3935
 
3920
3936
  # Returns the number of lines in the text control buffer.
3921
- # The returned number is the number of logical lines, i.e. just the count of the number of newline characters in the control + 1, for {Wx::GTK} and {Wx::OSX}/Cocoa ports while it is the number of physical lines, i.e. the count of lines actually shown in the control, in {Wx::MSW}. Because of this discrepancy, it is not recommended to use this function.
3937
+ # The returned number is the number of logical lines, i.e. just the count of the number of newline characters in the control + 1, for wxGTK and wxOSX/Cocoa ports while it is the number of physical lines, i.e. the count of lines actually shown in the control, in wxMSW. Because of this discrepancy, it is not recommended to use this function.
3922
3938
  # Note that even empty text controls have one line (where the insertion point is), so {Wx::STC::StyledTextCtrl#get_number_of_lines} never returns 0.
3923
3939
  # @return [Integer]
3924
3940
  def get_number_of_lines; end
@@ -3927,7 +3943,7 @@ module Wx::STC
3927
3943
  # Returns true if the text has been modified by user.
3928
3944
  # Note that calling {Wx::STC::StyledTextCtrl#set_value} doesn't make the control modified.
3929
3945
  # @see Wx::STC::StyledTextCtrl#mark_dirty
3930
- # @return [true,false]
3946
+ # @return [Boolean]
3931
3947
  def is_modified; end
3932
3948
  alias_method :modified?, :is_modified
3933
3949
 
@@ -3945,19 +3961,19 @@ module Wx::STC
3945
3961
  # @param start [Integer]
3946
3962
  # @param end_ [Integer]
3947
3963
  # @param style [Wx::TextAttr]
3948
- # @return [true,false]
3964
+ # @return [Boolean]
3949
3965
  def set_style(start, end_, style) end
3950
3966
 
3951
3967
  # This method is inherited from {Wx::TextAreaBase} but is not implemented in {Wx::STC::StyledTextCtrl}.
3952
3968
  # @param position [Integer]
3953
3969
  # @param style [Wx::TextAttr]
3954
- # @return [true,false]
3970
+ # @return [Boolean]
3955
3971
  def get_style(position, style) end
3956
3972
  alias_method :style, :get_style
3957
3973
 
3958
3974
  # This method is inherited from {Wx::TextAreaBase} but is not implemented in {Wx::STC::StyledTextCtrl}.
3959
3975
  # @param style [Wx::TextAttr]
3960
- # @return [true,false]
3976
+ # @return [Boolean]
3961
3977
  def set_default_style(style) end
3962
3978
  alias_method :default_style=, :set_default_style
3963
3979
 
@@ -3972,7 +3988,7 @@ module Wx::STC
3972
3988
  # true on success, false on failure (most likely due to a too large position parameter).
3973
3989
  # @see Wx::STC::StyledTextCtrl#xy_to_position
3974
3990
  # @param pos [Integer] Position.
3975
- # @return [Array(true,false,Array(Integer, Integer))]
3991
+ # @return [Array(Boolean,Array(Integer, Integer))]
3976
3992
  def position_to_xy(pos) end
3977
3993
 
3978
3994
  # Makes the line containing the given position visible.
@@ -3982,11 +3998,11 @@ module Wx::STC
3982
3998
 
3983
3999
  # Finds the row and column of the character at the specified point.
3984
4000
  # If the return code is not {Wx::TextCtrlHitTestResult::TE_HT_UNKNOWN} the row and column of the character closest to this position are returned, otherwise the output parameters are not modified.
3985
- # Please note that this function is currently only implemented in {Wx::Univ}, {Wx::MSW} and {Wx::GTK2} ports and always returns {Wx::TextCtrlHitTestResult::TE_HT_UNKNOWN} in the other ports.
4001
+ # Please note that this function is currently only implemented in {Wx::Univ}, wxMSW and wxGTK2 ports and always returns {Wx::TextCtrlHitTestResult::TE_HT_UNKNOWN} in the other ports.
3986
4002
  # @see Wx::STC::StyledTextCtrl#position_to_xy
3987
4003
  # @see Wx::STC::StyledTextCtrl#xy_to_position
3988
4004
  # @param pt [Array(Integer, Integer), Wx::Point] The position of the point to check, in window device coordinates.
3989
- # @return [Array(TextCtrlHitTestResult,Array(Integer, Integer))]
4005
+ # @return [Array(Wx::TextCtrlHitTestResult,Array(Integer, Integer))]
3990
4006
  def hit_test(pt) end
3991
4007
 
3992
4008
  # Returns the version of the Scintilla library used by this control.