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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (837) hide show
  1. checksums.yaml +7 -0
  2. data/.wxconfig +17 -0
  3. data/.yardopts +13 -0
  4. data/CREDITS.md +52 -0
  5. data/LICENSE +21 -0
  6. data/README.md +139 -0
  7. data/bin/wxruby +9 -0
  8. data/bin/wxruby.bat +20 -0
  9. data/ext/mkrf_conf_bingem.rb +18 -0
  10. data/ext/wxbase32u_gcc_custom.dll +0 -0
  11. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  12. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  20. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  21. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  22. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  23. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  24. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  25. data/lib/wx/accessors.rb +63 -0
  26. data/lib/wx/aui/auimanager.rb +17 -0
  27. data/lib/wx/aui/auinotebook.rb +9 -0
  28. data/lib/wx/aui/events/evt_list.rb +143 -0
  29. data/lib/wx/aui/require.rb +9 -0
  30. data/lib/wx/aui.rb +14 -0
  31. data/lib/wx/core/acceleratortable.rb +28 -0
  32. data/lib/wx/core/animation.rb +18 -0
  33. data/lib/wx/core/app.rb +89 -0
  34. data/lib/wx/core/artprovider.rb +31 -0
  35. data/lib/wx/core/bitmap.rb +59 -0
  36. data/lib/wx/core/busycursor.rb +12 -0
  37. data/lib/wx/core/choice.rb +4 -0
  38. data/lib/wx/core/choicedlg.rb +54 -0
  39. data/lib/wx/core/clientdc.rb +13 -0
  40. data/lib/wx/core/clipboard.rb +56 -0
  41. data/lib/wx/core/collapsible_pane.rb +12 -0
  42. data/lib/wx/core/colour.rb +34 -0
  43. data/lib/wx/core/combobox.rb +4 -0
  44. data/lib/wx/core/controlwithitems.rb +10 -0
  45. data/lib/wx/core/data_object.rb +10 -0
  46. data/lib/wx/core/dataformat.rb +26 -0
  47. data/lib/wx/core/dc.rb +68 -0
  48. data/lib/wx/core/dialog.rb +50 -0
  49. data/lib/wx/core/event.rb +16 -0
  50. data/lib/wx/core/events/evt_list.rb +1378 -0
  51. data/lib/wx/core/evthandler.rb +240 -0
  52. data/lib/wx/core/ext.rb +58 -0
  53. data/lib/wx/core/font/encoding.rb +113 -0
  54. data/lib/wx/core/font.rb +22 -0
  55. data/lib/wx/core/functions.rb +44 -0
  56. data/lib/wx/core/gauge.rb +12 -0
  57. data/lib/wx/core/genericdirctrl.rb +36 -0
  58. data/lib/wx/core/hboxsizer.rb +6 -0
  59. data/lib/wx/core/helpcontroller.rb +5 -0
  60. data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
  61. data/lib/wx/core/helpprovider.rb +15 -0
  62. data/lib/wx/core/icon.rb +40 -0
  63. data/lib/wx/core/image.rb +68 -0
  64. data/lib/wx/core/imagelist.rb +3 -0
  65. data/lib/wx/core/listbox.rb +4 -0
  66. data/lib/wx/core/listctrl.rb +33 -0
  67. data/lib/wx/core/locale.rb +73 -0
  68. data/lib/wx/core/log.rb +20 -0
  69. data/lib/wx/core/menu.rb +78 -0
  70. data/lib/wx/core/menu_bar.rb +20 -0
  71. data/lib/wx/core/menuitem.rb +7 -0
  72. data/lib/wx/core/notebook.rb +9 -0
  73. data/lib/wx/core/object.rb +14 -0
  74. data/lib/wx/core/pen_info.rb +11 -0
  75. data/lib/wx/core/platform_info.rb +13 -0
  76. data/lib/wx/core/point.rb +92 -0
  77. data/lib/wx/core/real_point.rb +92 -0
  78. data/lib/wx/core/rect.rb +57 -0
  79. data/lib/wx/core/simplehelpprovider.rb +38 -0
  80. data/lib/wx/core/size.rb +86 -0
  81. data/lib/wx/core/sizer.rb +43 -0
  82. data/lib/wx/core/splash_screen.rb +44 -0
  83. data/lib/wx/core/textctrl.rb +8 -0
  84. data/lib/wx/core/timer.rb +105 -0
  85. data/lib/wx/core/toolbar.rb +37 -0
  86. data/lib/wx/core/toolbartool.rb +4 -0
  87. data/lib/wx/core/treectrl.rb +46 -0
  88. data/lib/wx/core/validator.rb +8 -0
  89. data/lib/wx/core/variant.rb +62 -0
  90. data/lib/wx/core/vboxsizer.rb +6 -0
  91. data/lib/wx/core/window.rb +95 -0
  92. data/lib/wx/core/window_update_locker.rb +12 -0
  93. data/lib/wx/core/xmlresource.rb +56 -0
  94. data/lib/wx/core.rb +61 -0
  95. data/lib/wx/doc/aui/auimanager.rb +12 -0
  96. data/lib/wx/doc/aui/auinotebook.rb +9 -0
  97. data/lib/wx/doc/colour_dialog.rb +15 -0
  98. data/lib/wx/doc/dc.rb +49 -0
  99. data/lib/wx/doc/enum.rb +66 -0
  100. data/lib/wx/doc/evthandler.rb +84 -0
  101. data/lib/wx/doc/extra/00_starting.md +154 -0
  102. data/lib/wx/doc/extra/01_packages.md +179 -0
  103. data/lib/wx/doc/extra/02_lifecycles.md +116 -0
  104. data/lib/wx/doc/extra/03_dialogs.md +57 -0
  105. data/lib/wx/doc/extra/04_enums.md +143 -0
  106. data/lib/wx/doc/extra/05_event-handling.md +166 -0
  107. data/lib/wx/doc/extra/06_geometry.md +56 -0
  108. data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
  109. data/lib/wx/doc/extra/08_extensions.md +144 -0
  110. data/lib/wx/doc/extra/09_exceptions.md +54 -0
  111. data/lib/wx/doc/functions.rb +221 -0
  112. data/lib/wx/doc/gdi_common.rb +181 -0
  113. data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
  114. data/lib/wx/doc/gen/accelerator.rb +172 -0
  115. data/lib/wx/doc/gen/accessible.rb +817 -0
  116. data/lib/wx/doc/gen/animation.rb +253 -0
  117. data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
  118. data/lib/wx/doc/gen/any_button.rb +170 -0
  119. data/lib/wx/doc/gen/app.rb +363 -0
  120. data/lib/wx/doc/gen/art_provider.rb +497 -0
  121. data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
  122. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
  123. data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
  124. data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
  125. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
  126. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
  127. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
  128. data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
  129. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
  130. data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
  131. data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
  132. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
  133. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
  134. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
  135. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
  136. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
  137. data/lib/wx/doc/gen/aui/event_list.rb +162 -0
  138. data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
  139. data/lib/wx/doc/gen/bitmap.rb +638 -0
  140. data/lib/wx/doc/gen/bitmap_button.rb +91 -0
  141. data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
  142. data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
  143. data/lib/wx/doc/gen/box_sizer.rb +66 -0
  144. data/lib/wx/doc/gen/brush.rb +219 -0
  145. data/lib/wx/doc/gen/buffered_dc.rb +95 -0
  146. data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
  147. data/lib/wx/doc/gen/busy_info.rb +141 -0
  148. data/lib/wx/doc/gen/button.rb +133 -0
  149. data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
  150. data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
  151. data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
  152. data/lib/wx/doc/gen/calendar_event.rb +150 -0
  153. data/lib/wx/doc/gen/caret.rb +99 -0
  154. data/lib/wx/doc/gen/check_box.rb +145 -0
  155. data/lib/wx/doc/gen/check_list_box.rb +96 -0
  156. data/lib/wx/doc/gen/choice.rb +143 -0
  157. data/lib/wx/doc/gen/choicebook.rb +100 -0
  158. data/lib/wx/doc/gen/client_dc.rb +49 -0
  159. data/lib/wx/doc/gen/clipboard.rb +128 -0
  160. data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
  161. data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
  162. data/lib/wx/doc/gen/colour.rb +289 -0
  163. data/lib/wx/doc/gen/colour_data.rb +96 -0
  164. data/lib/wx/doc/gen/colour_dialog.rb +84 -0
  165. data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
  166. data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
  167. data/lib/wx/doc/gen/combo_box.rb +228 -0
  168. data/lib/wx/doc/gen/context_help_button.rb +34 -0
  169. data/lib/wx/doc/gen/control.rb +245 -0
  170. data/lib/wx/doc/gen/control_with_items.rb +339 -0
  171. data/lib/wx/doc/gen/core.rb +42 -0
  172. data/lib/wx/doc/gen/cursor.rb +127 -0
  173. data/lib/wx/doc/gen/data_format.rb +94 -0
  174. data/lib/wx/doc/gen/data_object.rb +439 -0
  175. data/lib/wx/doc/gen/date_event.rb +48 -0
  176. data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
  177. data/lib/wx/doc/gen/dc.rb +1278 -0
  178. data/lib/wx/doc/gen/defs.rb +2832 -0
  179. data/lib/wx/doc/gen/dialog.rb +426 -0
  180. data/lib/wx/doc/gen/dir_dialog.rb +134 -0
  181. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
  182. data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
  183. data/lib/wx/doc/gen/drag_drop.rb +292 -0
  184. data/lib/wx/doc/gen/drag_image.rb +123 -0
  185. data/lib/wx/doc/gen/editable_list_box.rb +89 -0
  186. data/lib/wx/doc/gen/event.rb +911 -0
  187. data/lib/wx/doc/gen/event_list.rb +1512 -0
  188. data/lib/wx/doc/gen/events.rb +2499 -0
  189. data/lib/wx/doc/gen/evt_handler.rb +224 -0
  190. data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
  191. data/lib/wx/doc/gen/file_dialog.rb +294 -0
  192. data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
  193. data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
  194. data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
  195. data/lib/wx/doc/gen/find_replace_data.rb +59 -0
  196. data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
  197. data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
  198. data/lib/wx/doc/gen/font.rb +1282 -0
  199. data/lib/wx/doc/gen/font_data.rb +132 -0
  200. data/lib/wx/doc/gen/font_dialog.rb +71 -0
  201. data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
  202. data/lib/wx/doc/gen/font_picker_event.rb +64 -0
  203. data/lib/wx/doc/gen/frame.rb +276 -0
  204. data/lib/wx/doc/gen/fs_file.rb +269 -0
  205. data/lib/wx/doc/gen/functions.rb +10 -0
  206. data/lib/wx/doc/gen/gauge.rb +127 -0
  207. data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
  208. data/lib/wx/doc/gen/gcdc.rb +61 -0
  209. data/lib/wx/doc/gen/gdi_common.rb +1108 -0
  210. data/lib/wx/doc/gen/gdi_object.rb +29 -0
  211. data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
  212. data/lib/wx/doc/gen/graphics_context.rb +764 -0
  213. data/lib/wx/doc/gen/graphics_object.rb +494 -0
  214. data/lib/wx/doc/gen/grid/event_list.rb +173 -0
  215. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
  216. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
  217. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
  218. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
  219. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
  220. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
  221. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
  222. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
  223. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
  224. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
  225. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
  226. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
  227. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
  228. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
  229. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
  230. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
  231. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
  232. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
  233. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
  234. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
  235. data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
  236. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
  237. data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
  238. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
  239. data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
  240. data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
  241. data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
  242. data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
  243. data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
  244. data/lib/wx/doc/gen/grid_sizer.rb +135 -0
  245. data/lib/wx/doc/gen/help_controller.rb +136 -0
  246. data/lib/wx/doc/gen/help_provider.rb +80 -0
  247. data/lib/wx/doc/gen/html/event_list.rb +46 -0
  248. data/lib/wx/doc/gen/html/html_cell.rb +441 -0
  249. data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
  250. data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
  251. data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
  252. data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
  253. data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
  254. data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
  255. data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
  256. data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
  257. data/lib/wx/doc/gen/html/html_printout.rb +87 -0
  258. data/lib/wx/doc/gen/html/html_window.rb +386 -0
  259. data/lib/wx/doc/gen/icon.rb +267 -0
  260. data/lib/wx/doc/gen/icon_location.rb +38 -0
  261. data/lib/wx/doc/gen/image.rb +1144 -0
  262. data/lib/wx/doc/gen/image_list.rb +181 -0
  263. data/lib/wx/doc/gen/keyboard_state.rb +124 -0
  264. data/lib/wx/doc/gen/list_box.rb +260 -0
  265. data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
  266. data/lib/wx/doc/gen/list_event.rb +177 -0
  267. data/lib/wx/doc/gen/listbook.rb +100 -0
  268. data/lib/wx/doc/gen/locale.rb +4143 -0
  269. data/lib/wx/doc/gen/log.rb +505 -0
  270. data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
  271. data/lib/wx/doc/gen/mdi_frame.rb +235 -0
  272. data/lib/wx/doc/gen/media_ctrl.rb +225 -0
  273. data/lib/wx/doc/gen/media_event.rb +109 -0
  274. data/lib/wx/doc/gen/memory_dc.rb +95 -0
  275. data/lib/wx/doc/gen/menu.rb +493 -0
  276. data/lib/wx/doc/gen/menu_bar.rb +247 -0
  277. data/lib/wx/doc/gen/menu_item.rb +333 -0
  278. data/lib/wx/doc/gen/message_dialog.rb +195 -0
  279. data/lib/wx/doc/gen/mini_frame.rb +72 -0
  280. data/lib/wx/doc/gen/mirror_dc.rb +29 -0
  281. data/lib/wx/doc/gen/mouse_state.rb +108 -0
  282. data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
  283. data/lib/wx/doc/gen/non_owned_window.rb +46 -0
  284. data/lib/wx/doc/gen/notebook.rb +220 -0
  285. data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
  286. data/lib/wx/doc/gen/object.rb +69 -0
  287. data/lib/wx/doc/gen/paint_dc.rb +34 -0
  288. data/lib/wx/doc/gen/palette.rb +90 -0
  289. data/lib/wx/doc/gen/panel.rb +96 -0
  290. data/lib/wx/doc/gen/pen.rb +484 -0
  291. data/lib/wx/doc/gen/pg/event_list.rb +102 -0
  292. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
  293. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
  294. data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
  295. data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
  296. data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
  297. data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
  298. data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
  299. data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
  300. data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
  301. data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
  302. data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
  303. data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
  304. data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
  305. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
  306. data/lib/wx/doc/gen/picker_base.rb +143 -0
  307. data/lib/wx/doc/gen/platform_info.rb +379 -0
  308. data/lib/wx/doc/gen/popup_window.rb +93 -0
  309. data/lib/wx/doc/gen/progress_dialog.rb +106 -0
  310. data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
  311. data/lib/wx/doc/gen/prt/event_list.rb +13 -0
  312. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
  313. data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
  314. data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
  315. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
  316. data/lib/wx/doc/gen/prt/print_data.rb +598 -0
  317. data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
  318. data/lib/wx/doc/gen/prt/printer.rb +428 -0
  319. data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
  320. data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
  321. data/lib/wx/doc/gen/radio_box.rb +258 -0
  322. data/lib/wx/doc/gen/radio_button.rb +128 -0
  323. data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
  324. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
  325. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
  326. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
  327. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
  328. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
  329. data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
  330. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
  331. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
  332. data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
  333. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
  334. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
  335. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
  336. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
  337. data/lib/wx/doc/gen/region.rb +299 -0
  338. data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
  339. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
  340. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
  341. data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
  342. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
  343. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
  344. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
  345. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
  346. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
  347. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
  348. data/lib/wx/doc/gen/sash_event.rb +133 -0
  349. data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
  350. data/lib/wx/doc/gen/sash_window.rb +154 -0
  351. data/lib/wx/doc/gen/screen_dc.rb +27 -0
  352. data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
  353. data/lib/wx/doc/gen/scrolled_control.rb +317 -0
  354. data/lib/wx/doc/gen/scrolled_window.rb +337 -0
  355. data/lib/wx/doc/gen/simplebook.rb +93 -0
  356. data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
  357. data/lib/wx/doc/gen/sizer.rb +847 -0
  358. data/lib/wx/doc/gen/sizer_item.rb +227 -0
  359. data/lib/wx/doc/gen/slider.rb +316 -0
  360. data/lib/wx/doc/gen/spin_button.rb +124 -0
  361. data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
  362. data/lib/wx/doc/gen/spin_event.rb +47 -0
  363. data/lib/wx/doc/gen/splash_screen.rb +83 -0
  364. data/lib/wx/doc/gen/splitter_event.rb +87 -0
  365. data/lib/wx/doc/gen/splitter_window.rb +357 -0
  366. data/lib/wx/doc/gen/static_bitmap.rb +126 -0
  367. data/lib/wx/doc/gen/static_box.rb +123 -0
  368. data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
  369. data/lib/wx/doc/gen/static_line.rb +66 -0
  370. data/lib/wx/doc/gen/static_text.rb +98 -0
  371. data/lib/wx/doc/gen/status_bar.rb +203 -0
  372. data/lib/wx/doc/gen/stc/event_list.rb +217 -0
  373. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
  374. data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
  375. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
  376. data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
  377. data/lib/wx/doc/gen/system_options.rb +109 -0
  378. data/lib/wx/doc/gen/system_settings.rb +481 -0
  379. data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
  380. data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
  381. data/lib/wx/doc/gen/text_attr.rb +645 -0
  382. data/lib/wx/doc/gen/text_ctrl.rb +841 -0
  383. data/lib/wx/doc/gen/text_entry.rb +389 -0
  384. data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
  385. data/lib/wx/doc/gen/text_validator.rb +212 -0
  386. data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
  387. data/lib/wx/doc/gen/timer.rb +103 -0
  388. data/lib/wx/doc/gen/timer_event.rb +73 -0
  389. data/lib/wx/doc/gen/tip_provider.rb +60 -0
  390. data/lib/wx/doc/gen/toggle_button.rb +84 -0
  391. data/lib/wx/doc/gen/tool_bar.rb +744 -0
  392. data/lib/wx/doc/gen/tool_tip.rb +73 -0
  393. data/lib/wx/doc/gen/toolbook.rb +103 -0
  394. data/lib/wx/doc/gen/top_level_window.rb +462 -0
  395. data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
  396. data/lib/wx/doc/gen/tree_event.rb +101 -0
  397. data/lib/wx/doc/gen/treebook.rb +154 -0
  398. data/lib/wx/doc/gen/utils.rb +257 -0
  399. data/lib/wx/doc/gen/v_list_box.rb +224 -0
  400. data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
  401. data/lib/wx/doc/gen/validator.rb +73 -0
  402. data/lib/wx/doc/gen/variant.rb +340 -0
  403. data/lib/wx/doc/gen/window.rb +2414 -0
  404. data/lib/wx/doc/gen/window_dc.rb +35 -0
  405. data/lib/wx/doc/gen/window_disabler.rb +24 -0
  406. data/lib/wx/doc/gen/with_images.rb +73 -0
  407. data/lib/wx/doc/gen/wizard.rb +197 -0
  408. data/lib/wx/doc/gen/wizard_event.rb +105 -0
  409. data/lib/wx/doc/gen/wizard_page.rb +61 -0
  410. data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
  411. data/lib/wx/doc/gen/xml_node.rb +282 -0
  412. data/lib/wx/doc/gen/xml_resource.rb +304 -0
  413. data/lib/wx/doc/grid/grid.rb +20 -0
  414. data/lib/wx/doc/help_controller.rb +14 -0
  415. data/lib/wx/doc/html/html_help_controller.rb +8 -0
  416. data/lib/wx/doc/pg/events.rb +15 -0
  417. data/lib/wx/doc/pg/pg_property.rb +8 -0
  418. data/lib/wx/doc/pg/pgeditor.rb +21 -0
  419. data/lib/wx/doc/pg/property_grid.rb +48 -0
  420. data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
  421. data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
  422. data/lib/wx/doc/prt/print_data.rb +9 -0
  423. data/lib/wx/doc/prt/print_dialog.rb +26 -0
  424. data/lib/wx/doc/prt/printer.rb +15 -0
  425. data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
  426. data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
  427. data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
  428. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
  429. data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
  430. data/lib/wx/doc/screen_dc.rb +10 -0
  431. data/lib/wx/doc/stock_objects.rb +98 -0
  432. data/lib/wx/doc/stream.rb +38 -0
  433. data/lib/wx/doc/system_settings.rb +29 -0
  434. data/lib/wx/doc/treebook.rb +9 -0
  435. data/lib/wx/doc/variant.rb +163 -0
  436. data/lib/wx/doc/xml_resource.rb +19 -0
  437. data/lib/wx/global_const.rb +84 -0
  438. data/lib/wx/grid/events/evt_list.rb +156 -0
  439. data/lib/wx/grid/grid.rb +7 -0
  440. data/lib/wx/grid/keyword_defs.rb +10 -0
  441. data/lib/wx/grid/require.rb +9 -0
  442. data/lib/wx/grid.rb +14 -0
  443. data/lib/wx/helpers.rb +65 -0
  444. data/lib/wx/html/events/evt_list.rb +37 -0
  445. data/lib/wx/html/htmlhelpcontroller.rb +6 -0
  446. data/lib/wx/html/htmlwindow.rb +19 -0
  447. data/lib/wx/html/keyword_defs.rb +22 -0
  448. data/lib/wx/html/require.rb +10 -0
  449. data/lib/wx/html.rb +15 -0
  450. data/lib/wx/keyword_ctors.rb +226 -0
  451. data/lib/wx/keyword_defs.rb +487 -0
  452. data/lib/wx/pg/events/evt_list.rb +73 -0
  453. data/lib/wx/pg/events.rb +14 -0
  454. data/lib/wx/pg/keyword_defs.rb +15 -0
  455. data/lib/wx/pg/pg_editor.rb +13 -0
  456. data/lib/wx/pg/pg_properties.rb +24 -0
  457. data/lib/wx/pg/pg_property.rb +26 -0
  458. data/lib/wx/pg/property_grid.rb +56 -0
  459. data/lib/wx/pg/property_grid_interface.rb +33 -0
  460. data/lib/wx/pg/require.rb +12 -0
  461. data/lib/wx/pg.rb +14 -0
  462. data/lib/wx/prt/keyword_defs.rb +8 -0
  463. data/lib/wx/prt/page_setup_dialog.rb +15 -0
  464. data/lib/wx/prt/previewframe.rb +13 -0
  465. data/lib/wx/prt/require.rb +8 -0
  466. data/lib/wx/prt.rb +14 -0
  467. data/lib/wx/rbn/events/evt_list.rb +102 -0
  468. data/lib/wx/rbn/events.rb +4 -0
  469. data/lib/wx/rbn/keyword_defs.rb +43 -0
  470. data/lib/wx/rbn/require.rb +12 -0
  471. data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
  472. data/lib/wx/rbn/ribbon_bar.rb +12 -0
  473. data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
  474. data/lib/wx/rbn/ribbon_control.rb +25 -0
  475. data/lib/wx/rbn/ribbon_gallery.rb +26 -0
  476. data/lib/wx/rbn/ribbon_page.rb +15 -0
  477. data/lib/wx/rbn/ribbon_panel.rb +15 -0
  478. data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
  479. data/lib/wx/rbn.rb +14 -0
  480. data/lib/wx/rtc/events/evt_list.rb +98 -0
  481. data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
  482. data/lib/wx/rtc/ext.rb +15 -0
  483. data/lib/wx/rtc/keyword_defs.rb +17 -0
  484. data/lib/wx/rtc/require.rb +8 -0
  485. data/lib/wx/rtc.rb +15 -0
  486. data/lib/wx/stc/events/evt_list.rb +178 -0
  487. data/lib/wx/stc/keyword_defs.rb +8 -0
  488. data/lib/wx/stc/require.rb +7 -0
  489. data/lib/wx/stc.rb +14 -0
  490. data/lib/wx/version.rb +3 -0
  491. data/lib/wx/wxruby/base.rb +87 -0
  492. data/lib/wx/wxruby/cmd/sampler.rb +68 -0
  493. data/lib/wx/wxruby/cmd/test.rb +27 -0
  494. data/lib/wx.rb +14 -0
  495. data/lib/wxruby_aui.so +0 -0
  496. data/lib/wxruby_core.so +0 -0
  497. data/lib/wxruby_grid.so +0 -0
  498. data/lib/wxruby_html.so +0 -0
  499. data/lib/wxruby_pg.so +0 -0
  500. data/lib/wxruby_prt.so +0 -0
  501. data/lib/wxruby_rbn.so +0 -0
  502. data/lib/wxruby_rtc.so +0 -0
  503. data/lib/wxruby_stc.so +0 -0
  504. data/rakelib/install.rb +220 -0
  505. data/rakelib/lib/config/cygwin.rb +6 -0
  506. data/rakelib/lib/config/linux.rb +78 -0
  507. data/rakelib/lib/config/macosx.rb +6 -0
  508. data/rakelib/lib/config/mingw.rb +133 -0
  509. data/rakelib/lib/config/netbsd.rb +6 -0
  510. data/rakelib/lib/config/unixish.rb +187 -0
  511. data/rakelib/lib/config.rb +673 -0
  512. data/rakelib/lib/ext/enum_chain.rb +22 -0
  513. data/rakelib/prepost.rake +91 -0
  514. data/rakelib/prepost.rb +26 -0
  515. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
  516. data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
  517. data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
  518. data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
  519. data/rakelib/yard/yard-custom-templates.rb +2 -0
  520. data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
  521. data/samples/art/wxruby-128x128.png +0 -0
  522. data/samples/art/wxruby-256x256.png +0 -0
  523. data/samples/art/wxruby-64x64.png +0 -0
  524. data/samples/art/wxruby.ico +0 -0
  525. data/samples/art/wxruby.png +0 -0
  526. data/samples/aui/aui.rb +1321 -0
  527. data/samples/aui/tn_aui.png +0 -0
  528. data/samples/bigdemo/About.rbw +39 -0
  529. data/samples/bigdemo/ColorPanel.rbw +23 -0
  530. data/samples/bigdemo/GridSimple.rbw +78 -0
  531. data/samples/bigdemo/MDIDemo.rbw +57 -0
  532. data/samples/bigdemo/PopupMenu.rbw +146 -0
  533. data/samples/bigdemo/ShapedWindow.rbw +128 -0
  534. data/samples/bigdemo/Sizers.rbw +541 -0
  535. data/samples/bigdemo/bigdemo.rb +810 -0
  536. data/samples/bigdemo/demoTemplate.rbw +33 -0
  537. data/samples/bigdemo/helpfile.htb +0 -0
  538. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  539. data/samples/bigdemo/icons/Test 015.png +0 -0
  540. data/samples/bigdemo/icons/choice.bmp +0 -0
  541. data/samples/bigdemo/icons/choice.xpm +27 -0
  542. data/samples/bigdemo/icons/combo.bmp +0 -0
  543. data/samples/bigdemo/icons/combo.xpm +27 -0
  544. data/samples/bigdemo/icons/copy.xpm +25 -0
  545. data/samples/bigdemo/icons/cut.xpm +24 -0
  546. data/samples/bigdemo/icons/gauge.bmp +0 -0
  547. data/samples/bigdemo/icons/gauge.xpm +27 -0
  548. data/samples/bigdemo/icons/help.xpm +25 -0
  549. data/samples/bigdemo/icons/list.bmp +0 -0
  550. data/samples/bigdemo/icons/list.xpm +27 -0
  551. data/samples/bigdemo/icons/mondrian.ico +0 -0
  552. data/samples/bigdemo/icons/mondrian.xpm +44 -0
  553. data/samples/bigdemo/icons/new.xpm +24 -0
  554. data/samples/bigdemo/icons/ogl.ico +0 -0
  555. data/samples/bigdemo/icons/ogl.xpm +45 -0
  556. data/samples/bigdemo/icons/open.xpm +26 -0
  557. data/samples/bigdemo/icons/paste.bmp +0 -0
  558. data/samples/bigdemo/icons/paste.xpm +38 -0
  559. data/samples/bigdemo/icons/pointy.png +0 -0
  560. data/samples/bigdemo/icons/preview.xpm +26 -0
  561. data/samples/bigdemo/icons/print.xpm +26 -0
  562. data/samples/bigdemo/icons/radio.bmp +0 -0
  563. data/samples/bigdemo/icons/radio.xpm +27 -0
  564. data/samples/bigdemo/icons/robert.xpm +415 -0
  565. data/samples/bigdemo/icons/sashtest.ico +0 -0
  566. data/samples/bigdemo/icons/save.xpm +25 -0
  567. data/samples/bigdemo/icons/smiles.bmp +0 -0
  568. data/samples/bigdemo/icons/smiles.xpm +39 -0
  569. data/samples/bigdemo/icons/smiley.ico +0 -0
  570. data/samples/bigdemo/icons/smiley.xpm +42 -0
  571. data/samples/bigdemo/icons/stattext.xpm +24 -0
  572. data/samples/bigdemo/icons/test2.bmp +0 -0
  573. data/samples/bigdemo/icons/test2.png +0 -0
  574. data/samples/bigdemo/icons/test2.xpm +79 -0
  575. data/samples/bigdemo/icons/text.bmp +0 -0
  576. data/samples/bigdemo/icons/text.xpm +27 -0
  577. data/samples/bigdemo/icons/tog1.bmp +0 -0
  578. data/samples/bigdemo/icons/tog1.xpm +38 -0
  579. data/samples/bigdemo/icons/tog2.bmp +0 -0
  580. data/samples/bigdemo/icons/tog2.xpm +38 -0
  581. data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
  582. data/samples/bigdemo/icons/wxwin.ico +0 -0
  583. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  584. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
  585. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  586. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  587. data/samples/bigdemo/run.rb +91 -0
  588. data/samples/bigdemo/tips.txt +7 -0
  589. data/samples/bigdemo/utils.rb +12 -0
  590. data/samples/bigdemo/wxArtProvider.rbw +281 -0
  591. data/samples/bigdemo/wxBitmapButton.rbw +65 -0
  592. data/samples/bigdemo/wxButton.rbw +64 -0
  593. data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
  594. data/samples/bigdemo/wxCheckBox.rbw +50 -0
  595. data/samples/bigdemo/wxCheckListBox.rbw +65 -0
  596. data/samples/bigdemo/wxChoice.rbw +47 -0
  597. data/samples/bigdemo/wxChoicebook.rbw +78 -0
  598. data/samples/bigdemo/wxColourDialog.rbw +33 -0
  599. data/samples/bigdemo/wxComboBox.rbw +77 -0
  600. data/samples/bigdemo/wxCursor.rbw +136 -0
  601. data/samples/bigdemo/wxDialog.rbw +74 -0
  602. data/samples/bigdemo/wxDirDialog.rbw +29 -0
  603. data/samples/bigdemo/wxDragImage.rbw +70 -0
  604. data/samples/bigdemo/wxFileDialog.rbw +37 -0
  605. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
  606. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
  607. data/samples/bigdemo/wxFontDialog.rbw +200 -0
  608. data/samples/bigdemo/wxFrame.rbw +53 -0
  609. data/samples/bigdemo/wxGauge.rbw +65 -0
  610. data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
  611. data/samples/bigdemo/wxGrid.rbw +66 -0
  612. data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
  613. data/samples/bigdemo/wxListBox.rbw +140 -0
  614. data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
  615. data/samples/bigdemo/wxMDIWindows.rbw +50 -0
  616. data/samples/bigdemo/wxMenu.rbw +247 -0
  617. data/samples/bigdemo/wxMessageDialog.rbw +27 -0
  618. data/samples/bigdemo/wxMiniFrame.rbw +70 -0
  619. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
  620. data/samples/bigdemo/wxNotebook.rbw +136 -0
  621. data/samples/bigdemo/wxProgressDialog.rbw +43 -0
  622. data/samples/bigdemo/wxRadioBox.rbw +72 -0
  623. data/samples/bigdemo/wxRadioButton.rbw +125 -0
  624. data/samples/bigdemo/wxSashWindow.rbw +141 -0
  625. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
  626. data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
  627. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
  628. data/samples/bigdemo/wxSlider.rbw +42 -0
  629. data/samples/bigdemo/wxSpinButton.rbw +50 -0
  630. data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
  631. data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
  632. data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
  633. data/samples/bigdemo/wxStaticText.rbw +55 -0
  634. data/samples/bigdemo/wxStatusBar.rbw +126 -0
  635. data/samples/bigdemo/wxTextCtrl.rbw +149 -0
  636. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
  637. data/samples/bigdemo/wxToggleButton.rbw +49 -0
  638. data/samples/bigdemo/wxToolBar.rbw +131 -0
  639. data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
  640. data/samples/calendar/calendar.rb +363 -0
  641. data/samples/calendar/tn_calendar.png +0 -0
  642. data/samples/caret/caret.rb +293 -0
  643. data/samples/caret/mondrian.xpm +44 -0
  644. data/samples/caret/tn_caret.png +0 -0
  645. data/samples/controls/books.rb +183 -0
  646. data/samples/controls/controls.rb +1143 -0
  647. data/samples/controls/get_item_sample.rb +117 -0
  648. data/samples/controls/icons/choice.xpm +27 -0
  649. data/samples/controls/icons/combo.xpm +27 -0
  650. data/samples/controls/icons/gauge.xpm +27 -0
  651. data/samples/controls/icons/list.xpm +27 -0
  652. data/samples/controls/icons/radio.xpm +27 -0
  653. data/samples/controls/icons/stattext.xpm +24 -0
  654. data/samples/controls/icons/text.xpm +27 -0
  655. data/samples/controls/mondrian.ico +0 -0
  656. data/samples/controls/mondrian.xpm +44 -0
  657. data/samples/controls/test2.bmp +0 -0
  658. data/samples/controls/tn_books.png +0 -0
  659. data/samples/controls/tn_controls.png +0 -0
  660. data/samples/controls/tn_get_item_sample.png +0 -0
  661. data/samples/dialogs/dialogs.rb +879 -0
  662. data/samples/dialogs/tips.txt +18 -0
  663. data/samples/dialogs/tn_dialogs.png +0 -0
  664. data/samples/dialogs/tn_wizard.png +0 -0
  665. data/samples/dialogs/wizard.rb +89 -0
  666. data/samples/dragdrop/dragdrop.rb +200 -0
  667. data/samples/dragdrop/tn_dragdrop.png +0 -0
  668. data/samples/drawing/SVGlogo24.xpm +310 -0
  669. data/samples/drawing/bitmap.rb +76 -0
  670. data/samples/drawing/bitmap_image.rb +131 -0
  671. data/samples/drawing/graphics_drawing.rb +257 -0
  672. data/samples/drawing/maths_images.rb +327 -0
  673. data/samples/drawing/rmagic_bitmap_image.rb +139 -0
  674. data/samples/drawing/ruby-logo.jpg +0 -0
  675. data/samples/drawing/svgtest.rb +373 -0
  676. data/samples/drawing/tn_bitmap.png +0 -0
  677. data/samples/drawing/tn_bitmap_image.png +0 -0
  678. data/samples/drawing/tn_graphics_drawing.png +0 -0
  679. data/samples/drawing/tn_maths_images.png +0 -0
  680. data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
  681. data/samples/drawing/tn_svgtest.png +0 -0
  682. data/samples/etc/choice.rb +82 -0
  683. data/samples/etc/miniframe.rb +92 -0
  684. data/samples/etc/sash.rb +140 -0
  685. data/samples/etc/scrollwin.rb +120 -0
  686. data/samples/etc/system_settings.rb +263 -0
  687. data/samples/etc/tn_choice.png +0 -0
  688. data/samples/etc/tn_miniframe.png +0 -0
  689. data/samples/etc/tn_sash.png +0 -0
  690. data/samples/etc/tn_scrollwin.png +0 -0
  691. data/samples/etc/tn_system_settings.png +0 -0
  692. data/samples/event/activation.rb +129 -0
  693. data/samples/event/event.rb +220 -0
  694. data/samples/event/threaded.rb +141 -0
  695. data/samples/event/tn_activation.png +0 -0
  696. data/samples/event/tn_event.png +0 -0
  697. data/samples/event/tn_threaded.png +0 -0
  698. data/samples/event/tn_update_ui_event.png +0 -0
  699. data/samples/event/update_ui_event.rb +91 -0
  700. data/samples/grid/grid.rb +224 -0
  701. data/samples/grid/gridtablebase.rb +178 -0
  702. data/samples/grid/tn_grid.png +0 -0
  703. data/samples/grid/tn_gridtablebase.png +0 -0
  704. data/samples/html/8859_2.htm +14 -0
  705. data/samples/html/cp1250.htm +19 -0
  706. data/samples/html/foo.png +0 -0
  707. data/samples/html/html.rb +278 -0
  708. data/samples/html/i18n.gif +0 -0
  709. data/samples/html/imagemap.htm +20 -0
  710. data/samples/html/imagemap.png +0 -0
  711. data/samples/html/listtest.htm +28 -0
  712. data/samples/html/pic.png +0 -0
  713. data/samples/html/pic2.bmp +0 -0
  714. data/samples/html/regres.htm +20 -0
  715. data/samples/html/subsup.html +42 -0
  716. data/samples/html/tables.htm +255 -0
  717. data/samples/html/test.htm +375 -0
  718. data/samples/html/tn_html.png +0 -0
  719. data/samples/mdi/mdi.rb +118 -0
  720. data/samples/mdi/tn_mdi.png +0 -0
  721. data/samples/minimal/minimal.rb +95 -0
  722. data/samples/minimal/mondrian.ico +0 -0
  723. data/samples/minimal/mondrian.png +0 -0
  724. data/samples/minimal/nothing.rb +38 -0
  725. data/samples/minimal/tn_minimal.png +0 -0
  726. data/samples/minimal/tn_nothing.png +0 -0
  727. data/samples/printing/mondrian.ico +0 -0
  728. data/samples/printing/mondrian.xpm +44 -0
  729. data/samples/printing/printing.rb +499 -0
  730. data/samples/printing/printing2.rb +251 -0
  731. data/samples/printing/sample-text.txt +213 -0
  732. data/samples/printing/tn_printing.png +0 -0
  733. data/samples/printing/tn_printing2.png +0 -0
  734. data/samples/propgrid/propgrid.rb +2707 -0
  735. data/samples/propgrid/propgrid_minimal.rb +106 -0
  736. data/samples/propgrid/sample_props.rb +434 -0
  737. data/samples/propgrid/tn_propgrid.png +0 -0
  738. data/samples/propgrid/tn_propgrid_minimal.png +0 -0
  739. data/samples/ribbon/align_center.xpm +21 -0
  740. data/samples/ribbon/align_left.xpm +21 -0
  741. data/samples/ribbon/align_right.xpm +21 -0
  742. data/samples/ribbon/aui_style.xpm +53 -0
  743. data/samples/ribbon/auto_crop_selection.xpm +55 -0
  744. data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
  745. data/samples/ribbon/circle.xpm +38 -0
  746. data/samples/ribbon/circle_small.xpm +22 -0
  747. data/samples/ribbon/colours.xpm +25 -0
  748. data/samples/ribbon/cross.xpm +38 -0
  749. data/samples/ribbon/empty.xpm +23 -0
  750. data/samples/ribbon/expand_selection_h.xpm +46 -0
  751. data/samples/ribbon/expand_selection_v.xpm +46 -0
  752. data/samples/ribbon/eye.xpm +26 -0
  753. data/samples/ribbon/hexagon.xpm +38 -0
  754. data/samples/ribbon/msw_style.xpm +65 -0
  755. data/samples/ribbon/position_left.xpm +22 -0
  756. data/samples/ribbon/position_top.xpm +22 -0
  757. data/samples/ribbon/ribbon.rb +900 -0
  758. data/samples/ribbon/ribbon.xpm +54 -0
  759. data/samples/ribbon/selection_panel.xpm +23 -0
  760. data/samples/ribbon/square.xpm +38 -0
  761. data/samples/ribbon/tn_ribbon.png +0 -0
  762. data/samples/ribbon/triangle.xpm +38 -0
  763. data/samples/sample.xpm +475 -0
  764. data/samples/sampler/back.xpm +21 -0
  765. data/samples/sampler/copy.xpm +44 -0
  766. data/samples/sampler/cut.xpm +46 -0
  767. data/samples/sampler/editor.rb +534 -0
  768. data/samples/sampler/ext.rb +51 -0
  769. data/samples/sampler/filesave.xpm +42 -0
  770. data/samples/sampler/find.xpm +62 -0
  771. data/samples/sampler/findrepl.xpm +63 -0
  772. data/samples/sampler/forward.xpm +21 -0
  773. data/samples/sampler/paste.xpm +46 -0
  774. data/samples/sampler/play.xpm +24 -0
  775. data/samples/sampler/redo.xpm +58 -0
  776. data/samples/sampler/sample.rb +337 -0
  777. data/samples/sampler/stc_editor.rb +326 -0
  778. data/samples/sampler/txt_editor.rb +135 -0
  779. data/samples/sampler/undo.xpm +58 -0
  780. data/samples/sampler.rb +401 -0
  781. data/samples/splash/mobile.xpm +1835 -0
  782. data/samples/splash/splash.png +0 -0
  783. data/samples/splash/splash.rb +164 -0
  784. data/samples/splash/tn_splash.png +0 -0
  785. data/samples/text/document-open.png +0 -0
  786. data/samples/text/document-save.png +0 -0
  787. data/samples/text/edit-copy.png +0 -0
  788. data/samples/text/edit-cut.png +0 -0
  789. data/samples/text/edit-paste.png +0 -0
  790. data/samples/text/edit-redo.png +0 -0
  791. data/samples/text/edit-undo.png +0 -0
  792. data/samples/text/format-text-bold.png +0 -0
  793. data/samples/text/format-text-italic.png +0 -0
  794. data/samples/text/format-text-underline.png +0 -0
  795. data/samples/text/mondrian.ico +0 -0
  796. data/samples/text/mondrian.xpm +44 -0
  797. data/samples/text/preferences-desktop-font.png +0 -0
  798. data/samples/text/rich_textctrl.rb +326 -0
  799. data/samples/text/scintilla.rb +179 -0
  800. data/samples/text/textctrl.rb +124 -0
  801. data/samples/text/tn_rich_textctrl.png +0 -0
  802. data/samples/text/tn_scintilla.png +0 -0
  803. data/samples/text/tn_textctrl.png +0 -0
  804. data/samples/text/tn_unicode.png +0 -0
  805. data/samples/text/unicode.rb +238 -0
  806. data/samples/text/utf8.txt +15 -0
  807. data/samples/treectrl/checked.xpm +54 -0
  808. data/samples/treectrl/icon1.xpm +79 -0
  809. data/samples/treectrl/icon2.xpm +53 -0
  810. data/samples/treectrl/icon3.xpm +79 -0
  811. data/samples/treectrl/icon4.xpm +43 -0
  812. data/samples/treectrl/icon5.xpm +79 -0
  813. data/samples/treectrl/state1.xpm +145 -0
  814. data/samples/treectrl/state2.xpm +144 -0
  815. data/samples/treectrl/state3.xpm +142 -0
  816. data/samples/treectrl/state4.xpm +145 -0
  817. data/samples/treectrl/state5.xpm +85 -0
  818. data/samples/treectrl/tn_treectrl.png +0 -0
  819. data/samples/treectrl/treectrl.rb +1720 -0
  820. data/samples/treectrl/unchecked.xpm +30 -0
  821. data/samples/xrc/custom_dialog.xrc +46 -0
  822. data/samples/xrc/custom_xrc_sample.rb +84 -0
  823. data/samples/xrc/samples.xrc +46 -0
  824. data/samples/xrc/tn_xrc_sample.png +0 -0
  825. data/samples/xrc/xrc_sample.rb +86 -0
  826. data/tests/test_basic.rb +20 -0
  827. data/tests/test_clipboard.rb +241 -0
  828. data/tests/test_dialog.rb +28 -0
  829. data/tests/test_event_handling.rb +103 -0
  830. data/tests/test_events.rb +45 -0
  831. data/tests/test_geometry.rb +141 -0
  832. data/tests/test_intl.rb +107 -0
  833. data/tests/test_item_data.rb +120 -0
  834. data/tests/test_variant.rb +151 -0
  835. data/tests/testapp.rb +40 -0
  836. data/tests/testapp_noframe.rb +28 -0
  837. metadata +928 -0
@@ -0,0 +1,2052 @@
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::RTC
8
+
9
+ #
10
+ RICHTEXT_FIXED_WIDTH = 1
11
+
12
+ #
13
+ RICHTEXT_FIXED_HEIGHT = 2
14
+
15
+ #
16
+ RICHTEXT_VARIABLE_WIDTH = 4
17
+
18
+ #
19
+ RICHTEXT_VARIABLE_HEIGHT = 8
20
+
21
+ #
22
+ RICHTEXT_LAYOUT_SPECIFIED_RECT = 16
23
+
24
+ #
25
+ RICHTEXT_DRAW_IGNORE_CACHE = 1
26
+
27
+ #
28
+ RICHTEXT_DRAW_SELECTED = 2
29
+
30
+ #
31
+ RICHTEXT_DRAW_PRINT = 4
32
+
33
+ #
34
+ RICHTEXT_DRAW_GUIDELINES = 8
35
+
36
+ #
37
+ RICHTEXT_FORMATTED = 1
38
+
39
+ #
40
+ RICHTEXT_UNFORMATTED = 2
41
+
42
+ #
43
+ RICHTEXT_CACHE_SIZE = 4
44
+
45
+ #
46
+ RICHTEXT_HEIGHT_ONLY = 8
47
+
48
+ #
49
+ RICHTEXT_SETSTYLE_NONE = 0
50
+
51
+ #
52
+ RICHTEXT_SETSTYLE_WITH_UNDO = 1
53
+
54
+ #
55
+ RICHTEXT_SETSTYLE_OPTIMIZE = 2
56
+
57
+ #
58
+ RICHTEXT_SETSTYLE_PARAGRAPHS_ONLY = 4
59
+
60
+ #
61
+ RICHTEXT_SETSTYLE_CHARACTERS_ONLY = 8
62
+
63
+ #
64
+ RICHTEXT_SETSTYLE_RENUMBER = 16
65
+
66
+ #
67
+ RICHTEXT_SETSTYLE_SPECIFY_LEVEL = 32
68
+
69
+ #
70
+ RICHTEXT_SETSTYLE_RESET = 64
71
+
72
+ #
73
+ RICHTEXT_SETSTYLE_REMOVE = 128
74
+
75
+ #
76
+ RICHTEXT_SETPROPERTIES_NONE = 0
77
+
78
+ #
79
+ RICHTEXT_SETPROPERTIES_WITH_UNDO = 1
80
+
81
+ #
82
+ RICHTEXT_SETPROPERTIES_PARAGRAPHS_ONLY = 2
83
+
84
+ #
85
+ RICHTEXT_SETPROPERTIES_CHARACTERS_ONLY = 4
86
+
87
+ #
88
+ RICHTEXT_SETPROPERTIES_RESET = 8
89
+
90
+ #
91
+ RICHTEXT_SETPROPERTIES_REMOVE = 16
92
+
93
+ #
94
+ RICHTEXT_INSERT_NONE = 0
95
+
96
+ #
97
+ RICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE = 1
98
+
99
+ #
100
+ RICHTEXT_INSERT_INTERACTIVE = 2
101
+
102
+ #
103
+ TEXT_ATTR_KEEP_FIRST_PARA_STYLE = 268435456
104
+
105
+ #
106
+ SCRIPT_MUL_FACTOR = 1.5
107
+
108
+ #
109
+ RICHTEXT_HANDLER_INCLUDE_STYLESHEET = 1
110
+
111
+ #
112
+ RICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY = 16
113
+
114
+ #
115
+ RICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES = 32
116
+
117
+ #
118
+ RICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 = 64
119
+
120
+ #
121
+ RICHTEXT_HANDLER_NO_HEADER_FOOTER = 128
122
+
123
+ #
124
+ RICHTEXT_HANDLER_CONVERT_FACENAMES = 256
125
+
126
+ #
127
+ RICHTEXT_HANDLER_USE_CSS = 4096
128
+
129
+ # File types in {Wx::RichText} context.
130
+ #
131
+ #
132
+ #
133
+ class RichTextFileType < Wx::Enum
134
+
135
+ #
136
+ #
137
+ RICHTEXT_TYPE_ANY = Wx::RTC::RichTextFileType.new(0)
138
+
139
+ #
140
+ #
141
+ RICHTEXT_TYPE_TEXT = Wx::RTC::RichTextFileType.new(1)
142
+
143
+ #
144
+ #
145
+ RICHTEXT_TYPE_XML = Wx::RTC::RichTextFileType.new(2)
146
+
147
+ #
148
+ #
149
+ RICHTEXT_TYPE_HTML = Wx::RTC::RichTextFileType.new(3)
150
+
151
+ #
152
+ #
153
+ RICHTEXT_TYPE_RTF = Wx::RTC::RichTextFileType.new(4)
154
+
155
+ #
156
+ #
157
+ RICHTEXT_TYPE_PDF = Wx::RTC::RichTextFileType.new(5)
158
+
159
+ end # RichTextFileType
160
+
161
+ # Flags returned from hit-testing, or passed to hit-test function.
162
+ #
163
+ #
164
+ #
165
+ class RichTextHitTestFlags < Wx::Enum
166
+
167
+ #
168
+ #
169
+ RICHTEXT_HITTEST_NONE = Wx::RTC::RichTextHitTestFlags.new(1)
170
+
171
+ #
172
+ #
173
+ RICHTEXT_HITTEST_BEFORE = Wx::RTC::RichTextHitTestFlags.new(2)
174
+
175
+ #
176
+ #
177
+ RICHTEXT_HITTEST_AFTER = Wx::RTC::RichTextHitTestFlags.new(4)
178
+
179
+ #
180
+ #
181
+ RICHTEXT_HITTEST_ON = Wx::RTC::RichTextHitTestFlags.new(8)
182
+
183
+ #
184
+ #
185
+ RICHTEXT_HITTEST_OUTSIDE = Wx::RTC::RichTextHitTestFlags.new(16)
186
+
187
+ #
188
+ #
189
+ RICHTEXT_HITTEST_NO_NESTED_OBJECTS = Wx::RTC::RichTextHitTestFlags.new(32)
190
+
191
+ #
192
+ #
193
+ RICHTEXT_HITTEST_NO_FLOATING_OBJECTS = Wx::RTC::RichTextHitTestFlags.new(64)
194
+
195
+ #
196
+ #
197
+ RICHTEXT_HITTEST_HONOUR_ATOMIC = Wx::RTC::RichTextHitTestFlags.new(128)
198
+
199
+ end # RichTextHitTestFlags
200
+
201
+ # Miscellaneous text box flags.
202
+ #
203
+ #
204
+ #
205
+ class TextBoxAttrFlags < Wx::Enum
206
+
207
+ #
208
+ #
209
+ TEXT_BOX_ATTR_FLOAT = Wx::RTC::TextBoxAttrFlags.new(1)
210
+
211
+ #
212
+ #
213
+ TEXT_BOX_ATTR_CLEAR = Wx::RTC::TextBoxAttrFlags.new(2)
214
+
215
+ #
216
+ #
217
+ TEXT_BOX_ATTR_COLLAPSE_BORDERS = Wx::RTC::TextBoxAttrFlags.new(4)
218
+
219
+ #
220
+ #
221
+ TEXT_BOX_ATTR_VERTICAL_ALIGNMENT = Wx::RTC::TextBoxAttrFlags.new(8)
222
+
223
+ #
224
+ #
225
+ TEXT_BOX_ATTR_BOX_STYLE_NAME = Wx::RTC::TextBoxAttrFlags.new(16)
226
+
227
+ #
228
+ #
229
+ TEXT_BOX_ATTR_WHITESPACE = Wx::RTC::TextBoxAttrFlags.new(32)
230
+
231
+ #
232
+ #
233
+ TEXT_BOX_ATTR_CORNER_RADIUS = Wx::RTC::TextBoxAttrFlags.new(64)
234
+
235
+ end # TextBoxAttrFlags
236
+
237
+ # Whether a value is present, used in dimension flags.
238
+ #
239
+ #
240
+ #
241
+ class TextAttrValueFlags < Wx::Enum
242
+
243
+ #
244
+ #
245
+ TEXT_ATTR_VALUE_VALID = Wx::RTC::TextAttrValueFlags.new(4096)
246
+
247
+ #
248
+ #
249
+ TEXT_ATTR_VALUE_VALID_MASK = Wx::RTC::TextAttrValueFlags.new(4096)
250
+
251
+ end # TextAttrValueFlags
252
+
253
+ # Units, included in the dimension value.
254
+ #
255
+ #
256
+ #
257
+ class TextAttrUnits < Wx::Enum
258
+
259
+ #
260
+ #
261
+ TEXT_ATTR_UNITS_TENTHS_MM = Wx::RTC::TextAttrUnits.new(1)
262
+
263
+ #
264
+ #
265
+ TEXT_ATTR_UNITS_PIXELS = Wx::RTC::TextAttrUnits.new(2)
266
+
267
+ #
268
+ #
269
+ TEXT_ATTR_UNITS_PERCENTAGE = Wx::RTC::TextAttrUnits.new(4)
270
+
271
+ #
272
+ #
273
+ TEXT_ATTR_UNITS_POINTS = Wx::RTC::TextAttrUnits.new(8)
274
+
275
+ #
276
+ #
277
+ TEXT_ATTR_UNITS_HUNDREDTHS_POINT = Wx::RTC::TextAttrUnits.new(256)
278
+
279
+ #
280
+ #
281
+ TEXT_ATTR_UNITS_MASK = Wx::RTC::TextAttrUnits.new(271)
282
+
283
+ end # TextAttrUnits
284
+
285
+ # Position alternatives, included in the dimension flags.
286
+ #
287
+ #
288
+ #
289
+ class TextBoxAttrPosition < Wx::Enum
290
+
291
+ #
292
+ #
293
+ TEXT_BOX_ATTR_POSITION_STATIC = Wx::RTC::TextBoxAttrPosition.new(0)
294
+
295
+ #
296
+ #
297
+ TEXT_BOX_ATTR_POSITION_RELATIVE = Wx::RTC::TextBoxAttrPosition.new(16)
298
+
299
+ #
300
+ #
301
+ TEXT_BOX_ATTR_POSITION_ABSOLUTE = Wx::RTC::TextBoxAttrPosition.new(32)
302
+
303
+ #
304
+ #
305
+ TEXT_BOX_ATTR_POSITION_FIXED = Wx::RTC::TextBoxAttrPosition.new(64)
306
+
307
+ #
308
+ #
309
+ TEXT_BOX_ATTR_POSITION_MASK = Wx::RTC::TextBoxAttrPosition.new(240)
310
+
311
+ end # TextBoxAttrPosition
312
+
313
+ # Border styles, used with {Wx::RTC::TextAttrBorder}.
314
+ #
315
+ #
316
+ #
317
+ class TextAttrBorderStyle < Wx::Enum
318
+
319
+ #
320
+ #
321
+ TEXT_BOX_ATTR_BORDER_NONE = Wx::RTC::TextAttrBorderStyle.new(0)
322
+
323
+ #
324
+ #
325
+ TEXT_BOX_ATTR_BORDER_SOLID = Wx::RTC::TextAttrBorderStyle.new(1)
326
+
327
+ #
328
+ #
329
+ TEXT_BOX_ATTR_BORDER_DOTTED = Wx::RTC::TextAttrBorderStyle.new(2)
330
+
331
+ #
332
+ #
333
+ TEXT_BOX_ATTR_BORDER_DASHED = Wx::RTC::TextAttrBorderStyle.new(3)
334
+
335
+ #
336
+ #
337
+ TEXT_BOX_ATTR_BORDER_DOUBLE = Wx::RTC::TextAttrBorderStyle.new(4)
338
+
339
+ #
340
+ #
341
+ TEXT_BOX_ATTR_BORDER_GROOVE = Wx::RTC::TextAttrBorderStyle.new(5)
342
+
343
+ #
344
+ #
345
+ TEXT_BOX_ATTR_BORDER_RIDGE = Wx::RTC::TextAttrBorderStyle.new(6)
346
+
347
+ #
348
+ #
349
+ TEXT_BOX_ATTR_BORDER_INSET = Wx::RTC::TextAttrBorderStyle.new(7)
350
+
351
+ #
352
+ #
353
+ TEXT_BOX_ATTR_BORDER_OUTSET = Wx::RTC::TextAttrBorderStyle.new(8)
354
+
355
+ end # TextAttrBorderStyle
356
+
357
+ # Border style presence flags, used with {Wx::RTC::TextAttrBorder}.
358
+ #
359
+ #
360
+ #
361
+ class TextAttrBorderFlags < Wx::Enum
362
+
363
+ #
364
+ #
365
+ TEXT_BOX_ATTR_BORDER_STYLE = Wx::RTC::TextAttrBorderFlags.new(1)
366
+
367
+ #
368
+ #
369
+ TEXT_BOX_ATTR_BORDER_COLOUR = Wx::RTC::TextAttrBorderFlags.new(2)
370
+
371
+ end # TextAttrBorderFlags
372
+
373
+ # Border width symbols for qualitative widths, used with {Wx::RTC::TextAttrBorder}.
374
+ #
375
+ #
376
+ #
377
+ class TextAttrBorderWidth < Wx::Enum
378
+
379
+ #
380
+ #
381
+ TEXT_BOX_ATTR_BORDER_THIN = Wx::RTC::TextAttrBorderWidth.new(-1)
382
+
383
+ #
384
+ #
385
+ TEXT_BOX_ATTR_BORDER_MEDIUM = Wx::RTC::TextAttrBorderWidth.new(-2)
386
+
387
+ #
388
+ #
389
+ TEXT_BOX_ATTR_BORDER_THICK = Wx::RTC::TextAttrBorderWidth.new(-3)
390
+
391
+ end # TextAttrBorderWidth
392
+
393
+ # Float styles.
394
+ #
395
+ #
396
+ #
397
+ class TextBoxAttrFloatStyle < Wx::Enum
398
+
399
+ #
400
+ #
401
+ TEXT_BOX_ATTR_FLOAT_NONE = Wx::RTC::TextBoxAttrFloatStyle.new(0)
402
+
403
+ #
404
+ #
405
+ TEXT_BOX_ATTR_FLOAT_LEFT = Wx::RTC::TextBoxAttrFloatStyle.new(1)
406
+
407
+ #
408
+ #
409
+ TEXT_BOX_ATTR_FLOAT_RIGHT = Wx::RTC::TextBoxAttrFloatStyle.new(2)
410
+
411
+ end # TextBoxAttrFloatStyle
412
+
413
+ # Clear styles.
414
+ #
415
+ #
416
+ #
417
+ class TextBoxAttrClearStyle < Wx::Enum
418
+
419
+ #
420
+ #
421
+ TEXT_BOX_ATTR_CLEAR_NONE = Wx::RTC::TextBoxAttrClearStyle.new(0)
422
+
423
+ #
424
+ #
425
+ TEXT_BOX_ATTR_CLEAR_LEFT = Wx::RTC::TextBoxAttrClearStyle.new(1)
426
+
427
+ #
428
+ #
429
+ TEXT_BOX_ATTR_CLEAR_RIGHT = Wx::RTC::TextBoxAttrClearStyle.new(2)
430
+
431
+ #
432
+ #
433
+ TEXT_BOX_ATTR_CLEAR_BOTH = Wx::RTC::TextBoxAttrClearStyle.new(3)
434
+
435
+ end # TextBoxAttrClearStyle
436
+
437
+ # Collapse mode styles.
438
+ #
439
+ #
440
+ #
441
+ class TextBoxAttrCollapseMode < Wx::Enum
442
+
443
+ #
444
+ #
445
+ TEXT_BOX_ATTR_COLLAPSE_NONE = Wx::RTC::TextBoxAttrCollapseMode.new(0)
446
+
447
+ #
448
+ #
449
+ TEXT_BOX_ATTR_COLLAPSE_FULL = Wx::RTC::TextBoxAttrCollapseMode.new(1)
450
+
451
+ end # TextBoxAttrCollapseMode
452
+
453
+ # Vertical alignment values.
454
+ #
455
+ #
456
+ #
457
+ class TextBoxAttrVerticalAlignment < Wx::Enum
458
+
459
+ #
460
+ #
461
+ TEXT_BOX_ATTR_VERTICAL_ALIGNMENT_NONE = Wx::RTC::TextBoxAttrVerticalAlignment.new(0)
462
+
463
+ #
464
+ #
465
+ TEXT_BOX_ATTR_VERTICAL_ALIGNMENT_TOP = Wx::RTC::TextBoxAttrVerticalAlignment.new(1)
466
+
467
+ #
468
+ #
469
+ TEXT_BOX_ATTR_VERTICAL_ALIGNMENT_CENTRE = Wx::RTC::TextBoxAttrVerticalAlignment.new(2)
470
+
471
+ #
472
+ #
473
+ TEXT_BOX_ATTR_VERTICAL_ALIGNMENT_BOTTOM = Wx::RTC::TextBoxAttrVerticalAlignment.new(3)
474
+
475
+ end # TextBoxAttrVerticalAlignment
476
+
477
+ # Whitespace values mirroring the CSS white-space attribute.
478
+ #
479
+ # Only {Wx::RTC::TextBoxAttrWhitespaceMode::TEXT_BOX_ATTR_WHITESPACE_NO_WRAP} is currently implemented, in table cells.
480
+ #
481
+ class TextBoxAttrWhitespaceMode < Wx::Enum
482
+
483
+ #
484
+ #
485
+ TEXT_BOX_ATTR_WHITESPACE_NONE = Wx::RTC::TextBoxAttrWhitespaceMode.new(0)
486
+
487
+ #
488
+ #
489
+ TEXT_BOX_ATTR_WHITESPACE_NORMAL = Wx::RTC::TextBoxAttrWhitespaceMode.new(1)
490
+
491
+ #
492
+ #
493
+ TEXT_BOX_ATTR_WHITESPACE_NO_WRAP = Wx::RTC::TextBoxAttrWhitespaceMode.new(2)
494
+
495
+ #
496
+ #
497
+ TEXT_BOX_ATTR_WHITESPACE_PREFORMATTED = Wx::RTC::TextBoxAttrWhitespaceMode.new(3)
498
+
499
+ #
500
+ #
501
+ TEXT_BOX_ATTR_WHITESPACE_PREFORMATTED_LINE = Wx::RTC::TextBoxAttrWhitespaceMode.new(4)
502
+
503
+ #
504
+ #
505
+ TEXT_BOX_ATTR_WHITESPACE_PREFORMATTED_WRAP = Wx::RTC::TextBoxAttrWhitespaceMode.new(5)
506
+
507
+ end # TextBoxAttrWhitespaceMode
508
+
509
+ # The command identifiers for Do/Undo.
510
+ #
511
+ #
512
+ #
513
+ class RichTextCommandId < Wx::Enum
514
+
515
+ #
516
+ #
517
+ RICHTEXT_INSERT = Wx::RTC::RichTextCommandId.new(0)
518
+
519
+ #
520
+ #
521
+ RICHTEXT_DELETE = Wx::RTC::RichTextCommandId.new(1)
522
+
523
+ #
524
+ #
525
+ RICHTEXT_CHANGE_ATTRIBUTES = Wx::RTC::RichTextCommandId.new(2)
526
+
527
+ #
528
+ #
529
+ RICHTEXT_CHANGE_STYLE = Wx::RTC::RichTextCommandId.new(3)
530
+
531
+ #
532
+ #
533
+ RICHTEXT_CHANGE_OBJECT = Wx::RTC::RichTextCommandId.new(5)
534
+
535
+ end # RichTextCommandId
536
+
537
+ # The line break character that can be embedded in content.
538
+ #
539
+ RICH_TEXT_LINE_BREAK_CHAR = "\u001D"
540
+
541
+ # A class representing a rich text object border.
542
+ # ===
543
+ #
544
+ # Category: Rich Text
545
+ # @see Wx::RTC::RichTextAttr
546
+ # @see Wx::RTC::RichTextCtrl
547
+ # @see wxRichTextAttrBorders
548
+ #
549
+ #
550
+ class TextAttrBorder < ::Object
551
+
552
+ # Default constructor.
553
+ # @return [TextAttrBorder]
554
+ def initialize; end
555
+
556
+ # Equality operator.
557
+ # @param border [Wx::TextAttrBorder]
558
+ # @return [true,false]
559
+ def ==(border) end
560
+
561
+ # Resets the border style, colour, width and flags.
562
+ # @return [void]
563
+ def reset; end
564
+
565
+ # Partial equality test.
566
+ # If weakTest is true, attributes of this object do not have to be present if those attributes of border are present. If weakTest is false, the function will fail if an attribute is present in border but not in this object.
567
+ # @param border [Wx::TextAttrBorder]
568
+ # @param weakTest [true,false]
569
+ # @return [true,false]
570
+ def eq_partial(border, weakTest=true) end
571
+
572
+ # Applies the border to this object, but not if the same as compareWith.
573
+ # @param border [Wx::TextAttrBorder]
574
+ # @param compareWith [Wx::TextAttrBorder]
575
+ # @return [true,false]
576
+ def apply(border, compareWith=nil) end
577
+
578
+ # Removes the specified attributes from this object.
579
+ # @param attr [Wx::TextAttrBorder]
580
+ # @return [true,false]
581
+ def remove_style(attr) end
582
+
583
+ # Collects the attributes that are common to a range of content, building up a note of which attributes are absent in some objects and which clash in some objects.
584
+ # @param attr [Wx::TextAttrBorder]
585
+ # @param clashingAttr [Wx::TextAttrBorder]
586
+ # @param absentAttr [Wx::TextAttrBorder]
587
+ # @return [void]
588
+ def collect_common_attributes(attr, clashingAttr, absentAttr) end
589
+
590
+ # Sets the border style.
591
+ # @param style [Integer]
592
+ # @return [void]
593
+ def set_style(style) end
594
+ alias_method :style=, :set_style
595
+
596
+ # Gets the border style.
597
+ # @return [Integer]
598
+ def get_style; end
599
+ alias_method :style, :get_style
600
+
601
+ # @overload set_colour(colour)
602
+ # Sets the border colour.
603
+ # @param colour [Integer]
604
+ # @return [void]
605
+ # @overload set_colour(colour)
606
+ # Sets the border colour.
607
+ # @param colour [Wx::Colour,String,Symbol]
608
+ # @return [void]
609
+ def set_colour(*args) end
610
+ alias_method :colour=, :set_colour
611
+
612
+ # Gets the colour as a long.
613
+ # @return [Integer]
614
+ def get_colour_long; end
615
+ alias_method :colour_long, :get_colour_long
616
+
617
+ # Gets the colour.
618
+ # @return [Wx::Colour]
619
+ def get_colour; end
620
+ alias_method :colour, :get_colour
621
+
622
+ # @overload get_width()
623
+ # Gets the border width.
624
+ # @return [Wx::TextAttrDimension]
625
+ # @overload get_width()
626
+ # @return [Wx::TextAttrDimension]
627
+ def get_width(*args) end
628
+ alias_method :width, :get_width
629
+
630
+ # @overload set_width(width)
631
+ # Sets the border width.
632
+ # @param width [Wx::TextAttrDimension]
633
+ # @return [void]
634
+ # @overload set_width(value, units=Wx::TEXT_ATTR_UNITS_TENTHS_MM)
635
+ # Sets the border width.
636
+ # @param value [Integer]
637
+ # @param units [TextAttrUnits]
638
+ # @return [void]
639
+ def set_width(*args) end
640
+ alias_method :width=, :set_width
641
+
642
+ # True if the border has a valid style.
643
+ # @return [true,false]
644
+ def has_style; end
645
+ alias_method :has_style?, :has_style
646
+
647
+ # True if the border has a valid colour.
648
+ # @return [true,false]
649
+ def has_colour; end
650
+ alias_method :has_colour?, :has_colour
651
+
652
+ # True if the border has a valid width.
653
+ # @return [true,false]
654
+ def has_width; end
655
+ alias_method :has_width?, :has_width
656
+
657
+ # True if the border is valid.
658
+ # @return [true,false]
659
+ def is_valid; end
660
+ alias_method :valid?, :is_valid
661
+
662
+ # True if the border has no attributes set.
663
+ # @return [true,false]
664
+ def is_default; end
665
+ alias_method :default?, :is_default
666
+
667
+ # Set the valid flag for this border.
668
+ # @return [void]
669
+ def make_valid; end
670
+
671
+ # Returns the border flags.
672
+ # @return [Integer]
673
+ def get_flags; end
674
+ alias_method :flags, :get_flags
675
+
676
+ # Sets the border flags.
677
+ # @param flags [Integer]
678
+ # @return [void]
679
+ def set_flags(flags) end
680
+ alias_method :flags=, :set_flags
681
+
682
+ # Adds a border flag.
683
+ # @param flag [Integer]
684
+ # @return [void]
685
+ def add_flag(flag) end
686
+
687
+ # Removes a border flag.
688
+ # @param flag [Integer]
689
+ # @return [void]
690
+ def remove_flag(flag) end
691
+
692
+ end # TextAttrBorder
693
+
694
+ # A class representing a rich text object's borders.
695
+ # ===
696
+ #
697
+ # Category: Rich Text
698
+ # @see Wx::RTC::RichTextAttr
699
+ # @see Wx::RTC::RichTextCtrl
700
+ # @see wxRichTextAttrBorder
701
+ #
702
+ #
703
+ class TextAttrBorders < ::Object
704
+
705
+ # Default constructor.
706
+ # @return [TextAttrBorders]
707
+ def initialize; end
708
+
709
+ # Equality operator.
710
+ # @param borders [Wx::TextAttrBorders]
711
+ # @return [true,false]
712
+ def ==(borders) end
713
+
714
+ # Sets the style of all borders.
715
+ # @param style [Integer]
716
+ # @return [void]
717
+ def set_style(style) end
718
+ alias_method :style=, :set_style
719
+
720
+ # @overload set_colour(colour)
721
+ # Sets colour of all borders.
722
+ # @param colour [Integer]
723
+ # @return [void]
724
+ # @overload set_colour(colour)
725
+ # Sets the colour for all borders.
726
+ # @param colour [Wx::Colour,String,Symbol]
727
+ # @return [void]
728
+ def set_colour(*args) end
729
+ alias_method :colour=, :set_colour
730
+
731
+ # @overload set_width(width)
732
+ # Sets the width of all borders.
733
+ # @param width [Wx::TextAttrDimension]
734
+ # @return [void]
735
+ # @overload set_width(value, units=Wx::TEXT_ATTR_UNITS_TENTHS_MM)
736
+ # Sets the width of all borders.
737
+ # @param value [Integer]
738
+ # @param units [TextAttrUnits]
739
+ # @return [void]
740
+ def set_width(*args) end
741
+ alias_method :width=, :set_width
742
+
743
+ # Resets all borders.
744
+ # @return [void]
745
+ def reset; end
746
+
747
+ # Partial equality test.
748
+ # If weakTest is true, attributes of this object do not have to be present if those attributes of borders are present. If weakTest is false, the function will fail if an attribute is present in borders but not in this object.
749
+ # @param borders [Wx::TextAttrBorders]
750
+ # @param weakTest [true,false]
751
+ # @return [true,false]
752
+ def eq_partial(borders, weakTest=true) end
753
+
754
+ # Applies border to this object, but not if the same as compareWith.
755
+ # @param borders [Wx::TextAttrBorders]
756
+ # @param compareWith [Wx::TextAttrBorders]
757
+ # @return [true,false]
758
+ def apply(borders, compareWith=nil) end
759
+
760
+ # Removes the specified attributes from this object.
761
+ # @param attr [Wx::TextAttrBorders]
762
+ # @return [true,false]
763
+ def remove_style(attr) end
764
+
765
+ # Collects the attributes that are common to a range of content, building up a note of which attributes are absent in some objects and which clash in some objects.
766
+ # @param attr [Wx::TextAttrBorders]
767
+ # @param clashingAttr [Wx::TextAttrBorders]
768
+ # @param absentAttr [Wx::TextAttrBorders]
769
+ # @return [void]
770
+ def collect_common_attributes(attr, clashingAttr, absentAttr) end
771
+
772
+ # Returns true if at least one border is valid.
773
+ # @return [true,false]
774
+ def is_valid; end
775
+ alias_method :valid?, :is_valid
776
+
777
+ # @overload get_left()
778
+ # Returns the left border.
779
+ # @return [Wx::TextAttrBorder]
780
+ # @overload get_left()
781
+ # @return [Wx::TextAttrBorder]
782
+ def get_left(*args) end
783
+ alias_method :left, :get_left
784
+
785
+ # @overload get_right()
786
+ # Returns the right border.
787
+ # @return [Wx::TextAttrBorder]
788
+ # @overload get_right()
789
+ # @return [Wx::TextAttrBorder]
790
+ def get_right(*args) end
791
+ alias_method :right, :get_right
792
+
793
+ # @overload get_top()
794
+ # Returns the top border.
795
+ # @return [Wx::TextAttrBorder]
796
+ # @overload get_top()
797
+ # @return [Wx::TextAttrBorder]
798
+ def get_top(*args) end
799
+ alias_method :top, :get_top
800
+
801
+ # @overload get_bottom()
802
+ # Returns the bottom border.
803
+ # @return [Wx::TextAttrBorder]
804
+ # @overload get_bottom()
805
+ # @return [Wx::TextAttrBorder]
806
+ def get_bottom(*args) end
807
+ alias_method :bottom, :get_bottom
808
+
809
+ end # TextAttrBorders
810
+
811
+ # A class representing the box attributes of a rich text object.
812
+ # ===
813
+ #
814
+ # Category: Rich Text
815
+ # @see Wx::RTC::RichTextAttr
816
+ # @see Wx::RTC::RichTextCtrl
817
+ #
818
+ #
819
+ class TextBoxAttr < ::Object
820
+
821
+ # @overload initialize()
822
+ # Default constructor.
823
+ # @return [TextBoxAttr]
824
+ # @overload initialize(attr)
825
+ # Copy constructor.
826
+ # @param attr [Wx::TextBoxAttr]
827
+ # @return [TextBoxAttr]
828
+ def initialize(*args) end
829
+
830
+ # Initialises this object.
831
+ # @return [void]
832
+ def init; end
833
+
834
+ # Resets this object.
835
+ # @return [void]
836
+ def reset; end
837
+
838
+ # Equality test.
839
+ # @param attr [Wx::TextBoxAttr]
840
+ # @return [true,false]
841
+ def ==(attr) end
842
+
843
+ # Partial equality test, ignoring unset attributes.
844
+ # If weakTest is true, attributes of this object do not have to be present if those attributes of attr are present. If weakTest is false, the function will fail if an attribute is present in attr but not in this object.
845
+ # @param attr [Wx::TextBoxAttr]
846
+ # @param weakTest [true,false]
847
+ # @return [true,false]
848
+ def eq_partial(attr, weakTest=true) end
849
+
850
+ # Merges the given attributes.
851
+ # If compareWith is non-NULL, then it will be used to mask out those attributes that are the same in style and compareWith, for situations where we don't want to explicitly set inherited attributes.
852
+ # @param style [Wx::TextBoxAttr]
853
+ # @param compareWith [Wx::TextBoxAttr]
854
+ # @return [true,false]
855
+ def apply(style, compareWith=nil) end
856
+
857
+ # Collects the attributes that are common to a range of content, building up a note of which attributes are absent in some objects and which clash in some objects.
858
+ # @param attr [Wx::TextBoxAttr]
859
+ # @param clashingAttr [Wx::TextBoxAttr]
860
+ # @param absentAttr [Wx::TextBoxAttr]
861
+ # @return [void]
862
+ def collect_common_attributes(attr, clashingAttr, absentAttr) end
863
+
864
+ # Removes the specified attributes from this object.
865
+ # @param attr [Wx::TextBoxAttr]
866
+ # @return [true,false]
867
+ def remove_style(attr) end
868
+
869
+ # Sets the flags.
870
+ # @param flags [Integer]
871
+ # @return [void]
872
+ def set_flags(flags) end
873
+ alias_method :flags=, :set_flags
874
+
875
+ # Returns the flags.
876
+ # @return [Integer]
877
+ def get_flags; end
878
+ alias_method :flags, :get_flags
879
+
880
+ # Is this flag present?
881
+ # @param flag [TextBoxAttrFlags]
882
+ # @return [true,false]
883
+ def has_flag(flag) end
884
+ alias_method :has_flag?, :has_flag
885
+
886
+ # Removes this flag.
887
+ # @param flag [TextBoxAttrFlags]
888
+ # @return [void]
889
+ def remove_flag(flag) end
890
+
891
+ # Adds this flag.
892
+ # @param flag [TextBoxAttrFlags]
893
+ # @return [void]
894
+ def add_flag(flag) end
895
+
896
+ # Returns true if no attributes are set.
897
+ # @return [true,false]
898
+ def is_default; end
899
+ alias_method :default?, :is_default
900
+
901
+ # Returns the float mode.
902
+ # @return [TextBoxAttrFloatStyle]
903
+ def get_float_mode; end
904
+ alias_method :float_mode, :get_float_mode
905
+
906
+ # Sets the float mode.
907
+ # @param mode [TextBoxAttrFloatStyle]
908
+ # @return [void]
909
+ def set_float_mode(mode) end
910
+ alias_method :float_mode=, :set_float_mode
911
+
912
+ # Returns true if float mode is active.
913
+ # @return [true,false]
914
+ def has_float_mode; end
915
+ alias_method :has_float_mode?, :has_float_mode
916
+
917
+ # Returns true if this object is floating.
918
+ # @return [true,false]
919
+ def is_floating; end
920
+ alias_method :floating?, :is_floating
921
+
922
+ # Returns the clear mode - whether to wrap text after object.
923
+ # Currently unimplemented.
924
+ # @return [TextBoxAttrClearStyle]
925
+ def get_clear_mode; end
926
+ alias_method :clear_mode, :get_clear_mode
927
+
928
+ # Set the clear mode.
929
+ # Currently unimplemented.
930
+ # @param mode [TextBoxAttrClearStyle]
931
+ # @return [void]
932
+ def set_clear_mode(mode) end
933
+ alias_method :clear_mode=, :set_clear_mode
934
+
935
+ # Returns true if we have a clear flag.
936
+ # @return [true,false]
937
+ def has_clear_mode; end
938
+ alias_method :has_clear_mode?, :has_clear_mode
939
+
940
+ # Returns the collapse mode - whether to collapse borders.
941
+ # @return [TextBoxAttrCollapseMode]
942
+ def get_collapse_borders; end
943
+ alias_method :collapse_borders, :get_collapse_borders
944
+
945
+ # Sets the collapse mode - whether to collapse borders.
946
+ # @param collapse [TextBoxAttrCollapseMode]
947
+ # @return [void]
948
+ def set_collapse_borders(collapse) end
949
+ alias_method :collapse_borders=, :set_collapse_borders
950
+
951
+ # Returns true if the collapse borders flag is present.
952
+ # @return [true,false]
953
+ def has_collapse_borders; end
954
+ alias_method :has_collapse_borders?, :has_collapse_borders
955
+
956
+ # Returns the whitespace mode.
957
+ # @return [TextBoxAttrWhitespaceMode]
958
+ def get_whitespace_mode; end
959
+ alias_method :whitespace_mode, :get_whitespace_mode
960
+
961
+ # Sets the whitespace mode.
962
+ # @param whitespace [TextBoxAttrWhitespaceMode]
963
+ # @return [void]
964
+ def set_whitespace_mode(whitespace) end
965
+ alias_method :whitespace_mode=, :set_whitespace_mode
966
+
967
+ # Returns true if the whitespace flag is present.
968
+ # @return [true,false]
969
+ def has_whitespace_mode; end
970
+ alias_method :has_whitespace_mode?, :has_whitespace_mode
971
+
972
+ # Returns true if the corner radius flag is present.
973
+ # @return [true,false]
974
+ def has_corner_radius; end
975
+ alias_method :has_corner_radius?, :has_corner_radius
976
+
977
+ # @overload get_corner_radius()
978
+ # Returns the corner radius value.
979
+ # @return [Wx::TextAttrDimension]
980
+ # @overload get_corner_radius()
981
+ # @return [Wx::TextAttrDimension]
982
+ def get_corner_radius(*args) end
983
+ alias_method :corner_radius, :get_corner_radius
984
+
985
+ # Sets the corner radius value.
986
+ # @param dim [Wx::TextAttrDimension]
987
+ # @return [void]
988
+ def set_corner_radius(dim) end
989
+ alias_method :corner_radius=, :set_corner_radius
990
+
991
+ # Returns the vertical alignment.
992
+ # @return [TextBoxAttrVerticalAlignment]
993
+ def get_vertical_alignment; end
994
+ alias_method :vertical_alignment, :get_vertical_alignment
995
+
996
+ # Sets the vertical alignment.
997
+ # @param verticalAlignment [TextBoxAttrVerticalAlignment]
998
+ # @return [void]
999
+ def set_vertical_alignment(verticalAlignment) end
1000
+ alias_method :vertical_alignment=, :set_vertical_alignment
1001
+
1002
+ # Returns true if a vertical alignment flag is present.
1003
+ # @return [true,false]
1004
+ def has_vertical_alignment; end
1005
+ alias_method :has_vertical_alignment?, :has_vertical_alignment
1006
+
1007
+ # @overload get_margins()
1008
+ # Returns the margin values.
1009
+ # @return [Wx::TextAttrDimensions]
1010
+ # @overload get_margins()
1011
+ # @return [Wx::TextAttrDimensions]
1012
+ def get_margins(*args) end
1013
+ alias_method :margins, :get_margins
1014
+
1015
+ # @overload get_left_margin()
1016
+ # Returns the left margin.
1017
+ # @return [Wx::TextAttrDimension]
1018
+ # @overload get_left_margin()
1019
+ # @return [Wx::TextAttrDimension]
1020
+ def get_left_margin(*args) end
1021
+ alias_method :left_margin, :get_left_margin
1022
+
1023
+ # @overload get_right_margin()
1024
+ # Returns the right margin.
1025
+ # @return [Wx::TextAttrDimension]
1026
+ # @overload get_right_margin()
1027
+ # @return [Wx::TextAttrDimension]
1028
+ def get_right_margin(*args) end
1029
+ alias_method :right_margin, :get_right_margin
1030
+
1031
+ # @overload get_top_margin()
1032
+ # Returns the top margin.
1033
+ # @return [Wx::TextAttrDimension]
1034
+ # @overload get_top_margin()
1035
+ # @return [Wx::TextAttrDimension]
1036
+ def get_top_margin(*args) end
1037
+ alias_method :top_margin, :get_top_margin
1038
+
1039
+ # @overload get_bottom_margin()
1040
+ # Returns the bottom margin.
1041
+ # @return [Wx::TextAttrDimension]
1042
+ # @overload get_bottom_margin()
1043
+ # @return [Wx::TextAttrDimension]
1044
+ def get_bottom_margin(*args) end
1045
+ alias_method :bottom_margin, :get_bottom_margin
1046
+
1047
+ # @overload get_position()
1048
+ # Returns the position.
1049
+ # @return [Wx::TextAttrDimensions]
1050
+ # @overload get_position()
1051
+ # @return [Wx::TextAttrDimensions]
1052
+ def get_position(*args) end
1053
+ alias_method :position, :get_position
1054
+
1055
+ # @overload get_left()
1056
+ # Returns the left position.
1057
+ # @return [Wx::TextAttrDimension]
1058
+ # @overload get_left()
1059
+ # @return [Wx::TextAttrDimension]
1060
+ def get_left(*args) end
1061
+ alias_method :left, :get_left
1062
+
1063
+ # @overload get_right()
1064
+ # Returns the right position.
1065
+ # @return [Wx::TextAttrDimension]
1066
+ # @overload get_right()
1067
+ # @return [Wx::TextAttrDimension]
1068
+ def get_right(*args) end
1069
+ alias_method :right, :get_right
1070
+
1071
+ # @overload get_top()
1072
+ # Returns the top position.
1073
+ # @return [Wx::TextAttrDimension]
1074
+ # @overload get_top()
1075
+ # @return [Wx::TextAttrDimension]
1076
+ def get_top(*args) end
1077
+ alias_method :top, :get_top
1078
+
1079
+ # @overload get_bottom()
1080
+ # Returns the bottom position.
1081
+ # @return [Wx::TextAttrDimension]
1082
+ # @overload get_bottom()
1083
+ # @return [Wx::TextAttrDimension]
1084
+ def get_bottom(*args) end
1085
+ alias_method :bottom, :get_bottom
1086
+
1087
+ # @overload get_padding()
1088
+ # Returns the padding values.
1089
+ # @return [Wx::TextAttrDimensions]
1090
+ # @overload get_padding()
1091
+ # @return [Wx::TextAttrDimensions]
1092
+ def get_padding(*args) end
1093
+ alias_method :padding, :get_padding
1094
+
1095
+ # @overload get_left_padding()
1096
+ # Returns the left padding value.
1097
+ # @return [Wx::TextAttrDimension]
1098
+ # @overload get_left_padding()
1099
+ # @return [Wx::TextAttrDimension]
1100
+ def get_left_padding(*args) end
1101
+ alias_method :left_padding, :get_left_padding
1102
+
1103
+ # @overload get_right_padding()
1104
+ # Returns the right padding value.
1105
+ # @return [Wx::TextAttrDimension]
1106
+ # @overload get_right_padding()
1107
+ # @return [Wx::TextAttrDimension]
1108
+ def get_right_padding(*args) end
1109
+ alias_method :right_padding, :get_right_padding
1110
+
1111
+ # @overload get_top_padding()
1112
+ # Returns the top padding value.
1113
+ # @return [Wx::TextAttrDimension]
1114
+ # @overload get_top_padding()
1115
+ # @return [Wx::TextAttrDimension]
1116
+ def get_top_padding(*args) end
1117
+ alias_method :top_padding, :get_top_padding
1118
+
1119
+ # @overload get_bottom_padding()
1120
+ # Returns the bottom padding value.
1121
+ # @return [Wx::TextAttrDimension]
1122
+ # @overload get_bottom_padding()
1123
+ # @return [Wx::TextAttrDimension]
1124
+ def get_bottom_padding(*args) end
1125
+ alias_method :bottom_padding, :get_bottom_padding
1126
+
1127
+ # @overload get_border()
1128
+ # Returns the borders.
1129
+ # @return [Wx::TextAttrBorders]
1130
+ # @overload get_border()
1131
+ # @return [Wx::TextAttrBorders]
1132
+ def get_border(*args) end
1133
+ alias_method :border, :get_border
1134
+
1135
+ # @overload get_left_border()
1136
+ # Returns the left border.
1137
+ # @return [Wx::TextAttrBorder]
1138
+ # @overload get_left_border()
1139
+ # @return [Wx::TextAttrBorder]
1140
+ def get_left_border(*args) end
1141
+ alias_method :left_border, :get_left_border
1142
+
1143
+ # @overload get_top_border()
1144
+ # Returns the top border.
1145
+ # @return [Wx::TextAttrBorder]
1146
+ # @overload get_top_border()
1147
+ # @return [Wx::TextAttrBorder]
1148
+ def get_top_border(*args) end
1149
+ alias_method :top_border, :get_top_border
1150
+
1151
+ # @overload get_right_border()
1152
+ # Returns the right border.
1153
+ # @return [Wx::TextAttrBorder]
1154
+ # @overload get_right_border()
1155
+ # @return [Wx::TextAttrBorder]
1156
+ def get_right_border(*args) end
1157
+ alias_method :right_border, :get_right_border
1158
+
1159
+ # @overload get_bottom_border()
1160
+ # Returns the bottom border.
1161
+ # @return [Wx::TextAttrBorder]
1162
+ # @overload get_bottom_border()
1163
+ # @return [Wx::TextAttrBorder]
1164
+ def get_bottom_border(*args) end
1165
+ alias_method :bottom_border, :get_bottom_border
1166
+
1167
+ # @overload get_outline()
1168
+ # Returns the outline.
1169
+ # @return [Wx::TextAttrBorders]
1170
+ # @overload get_outline()
1171
+ # @return [Wx::TextAttrBorders]
1172
+ def get_outline(*args) end
1173
+ alias_method :outline, :get_outline
1174
+
1175
+ # @overload get_left_outline()
1176
+ # Returns the left outline.
1177
+ # @return [Wx::TextAttrBorder]
1178
+ # @overload get_left_outline()
1179
+ # @return [Wx::TextAttrBorder]
1180
+ def get_left_outline(*args) end
1181
+ alias_method :left_outline, :get_left_outline
1182
+
1183
+ # @overload get_top_outline()
1184
+ # Returns the top outline.
1185
+ # @return [Wx::TextAttrBorder]
1186
+ # @overload get_top_outline()
1187
+ # @return [Wx::TextAttrBorder]
1188
+ def get_top_outline(*args) end
1189
+ alias_method :top_outline, :get_top_outline
1190
+
1191
+ # @overload get_right_outline()
1192
+ # Returns the right outline.
1193
+ # @return [Wx::TextAttrBorder]
1194
+ # @overload get_right_outline()
1195
+ # @return [Wx::TextAttrBorder]
1196
+ def get_right_outline(*args) end
1197
+ alias_method :right_outline, :get_right_outline
1198
+
1199
+ # @overload get_bottom_outline()
1200
+ # Returns the bottom outline.
1201
+ # @return [Wx::TextAttrBorder]
1202
+ # @overload get_bottom_outline()
1203
+ # @return [Wx::TextAttrBorder]
1204
+ def get_bottom_outline(*args) end
1205
+ alias_method :bottom_outline, :get_bottom_outline
1206
+
1207
+ # @overload get_size()
1208
+ # Returns the object size.
1209
+ # @return [Wx::TextAttrSize]
1210
+ # @overload get_size()
1211
+ # @return [Wx::TextAttrSize]
1212
+ def get_size(*args) end
1213
+ alias_method :size, :get_size
1214
+
1215
+ # @overload get_min_size()
1216
+ # Returns the object minimum size.
1217
+ # @return [Wx::TextAttrSize]
1218
+ # @overload get_min_size()
1219
+ # @return [Wx::TextAttrSize]
1220
+ def get_min_size(*args) end
1221
+ alias_method :min_size, :get_min_size
1222
+
1223
+ # @overload get_max_size()
1224
+ # Returns the object maximum size.
1225
+ # @return [Wx::TextAttrSize]
1226
+ # @overload get_max_size()
1227
+ # @return [Wx::TextAttrSize]
1228
+ def get_max_size(*args) end
1229
+ alias_method :max_size, :get_max_size
1230
+
1231
+ # Sets the object size.
1232
+ # @param sz [Wx::TextAttrSize]
1233
+ # @return [void]
1234
+ def set_size(sz) end
1235
+ alias_method :size=, :set_size
1236
+
1237
+ # Sets the object minimum size.
1238
+ # @param sz [Wx::TextAttrSize]
1239
+ # @return [void]
1240
+ def set_min_size(sz) end
1241
+ alias_method :min_size=, :set_min_size
1242
+
1243
+ # Sets the object maximum size.
1244
+ # @param sz [Wx::TextAttrSize]
1245
+ # @return [void]
1246
+ def set_max_size(sz) end
1247
+ alias_method :max_size=, :set_max_size
1248
+
1249
+ # @overload get_width()
1250
+ # Returns the object width.
1251
+ # @return [Wx::TextAttrDimension]
1252
+ # @overload get_width()
1253
+ # @return [Wx::TextAttrDimension]
1254
+ def get_width(*args) end
1255
+ alias_method :width, :get_width
1256
+
1257
+ # @overload get_height()
1258
+ # Returns the object height.
1259
+ # @return [Wx::TextAttrDimension]
1260
+ # @overload get_height()
1261
+ # @return [Wx::TextAttrDimension]
1262
+ def get_height(*args) end
1263
+ alias_method :height, :get_height
1264
+
1265
+ # Returns the box style name.
1266
+ # @return [Wx::String]
1267
+ def get_box_style_name; end
1268
+ alias_method :box_style_name, :get_box_style_name
1269
+
1270
+ # Sets the box style name.
1271
+ # @param name [String]
1272
+ # @return [void]
1273
+ def set_box_style_name(name) end
1274
+ alias_method :box_style_name=, :set_box_style_name
1275
+
1276
+ # Returns true if the box style name is present.
1277
+ # @return [true,false]
1278
+ def has_box_style_name; end
1279
+ alias_method :has_box_style_name?, :has_box_style_name
1280
+
1281
+ # @overload get_shadow()
1282
+ # Returns the box shadow attributes.
1283
+ # @return [Wx::TextAttrShadow]
1284
+ # @overload get_shadow()
1285
+ # @return [Wx::TextAttrShadow]
1286
+ def get_shadow(*args) end
1287
+ alias_method :shadow, :get_shadow
1288
+
1289
+ end # TextBoxAttr
1290
+
1291
+ # A class representing enhanced attributes for rich text objects.
1292
+ # This adds a {Wx::RTC::TextBoxAttr} member to the basic {Wx::TextAttr} class.
1293
+ # ===
1294
+ #
1295
+ # Category: Rich Text
1296
+ # @see Wx::TextAttr
1297
+ # @see Wx::RTC::TextBoxAttr
1298
+ # @see Wx::RTC::RichTextCtrl
1299
+ #
1300
+ #
1301
+ class RichTextAttr < TextAttr
1302
+
1303
+ # @overload initialize(attr)
1304
+ # Constructor taking a {Wx::TextAttr}.
1305
+ # @param attr [Wx::TextAttr]
1306
+ # @return [RichTextAttr]
1307
+ # @overload initialize(attr)
1308
+ # Copy constructor.
1309
+ # @param attr [Wx::RichTextAttr]
1310
+ # @return [RichTextAttr]
1311
+ # @overload initialize()
1312
+ # Default constructor.
1313
+ # @return [RichTextAttr]
1314
+ def initialize(*args) end
1315
+
1316
+ # Copy function.
1317
+ # @param attr [Wx::RichTextAttr]
1318
+ # @return [void]
1319
+ def copy(attr) end
1320
+
1321
+ # Equality test.
1322
+ # @param attr [Wx::RichTextAttr]
1323
+ # @return [true,false]
1324
+ def ==(attr) end
1325
+
1326
+ # Partial equality test.
1327
+ # If weakTest is true, attributes of this object do not have to be present if those attributes of attr are present. If weakTest is false, the function will fail if an attribute is present in attr but not in this object.
1328
+ # @param attr [Wx::RichTextAttr]
1329
+ # @param weakTest [true,false]
1330
+ # @return [true,false]
1331
+ def eq_partial(attr, weakTest=true) end
1332
+
1333
+ # Merges the given attributes.
1334
+ # If compareWith is non-NULL, then it will be used to mask out those attributes that are the same in style and compareWith, for situations where we don't want to explicitly set inherited attributes.
1335
+ # @param style [Wx::RichTextAttr]
1336
+ # @param compareWith [Wx::RichTextAttr]
1337
+ # @return [true,false]
1338
+ def apply(style, compareWith=nil) end
1339
+
1340
+ # Collects the attributes that are common to a range of content, building up a note of which attributes are absent in some objects and which clash in some objects.
1341
+ # @param attr [Wx::RichTextAttr]
1342
+ # @param clashingAttr [Wx::RichTextAttr]
1343
+ # @param absentAttr [Wx::RichTextAttr]
1344
+ # @return [void]
1345
+ def collect_common_attributes(attr, clashingAttr, absentAttr) end
1346
+
1347
+ # Removes the specified attributes from this object.
1348
+ # @param attr [Wx::RichTextAttr]
1349
+ # @return [true,false]
1350
+ def remove_style(attr) end
1351
+
1352
+ # @overload get_text_box_attr()
1353
+ # Returns the text box attributes.
1354
+ # @return [Wx::TextBoxAttr]
1355
+ # @overload get_text_box_attr()
1356
+ # @return [Wx::TextBoxAttr]
1357
+ def get_text_box_attr(*args) end
1358
+ alias_method :text_box_attr, :get_text_box_attr
1359
+
1360
+ # Set the text box attributes.
1361
+ # @param attr [Wx::TextBoxAttr]
1362
+ # @return [void]
1363
+ def set_text_box_attr(attr) end
1364
+ alias_method :text_box_attr=, :set_text_box_attr
1365
+
1366
+ # Returns true if no attributes are set.
1367
+ # @return [true,false]
1368
+ def is_default; end
1369
+ alias_method :default?, :is_default
1370
+
1371
+ end # RichTextAttr
1372
+
1373
+ # This is a kind of paragraph layout box, used to represent the whole buffer.
1374
+ # ===
1375
+ #
1376
+ # Category: Rich Text
1377
+ # @see Wx::RichTextParagraphLayoutBox
1378
+ # @see Wx::RTC::RichTextCtrl
1379
+ #
1380
+ #
1381
+ class RichTextBuffer < Object
1382
+
1383
+ # @overload initialize()
1384
+ # Default constructor.
1385
+ # @return [RichTextBuffer]
1386
+ # @overload initialize(obj)
1387
+ # Copy constructor.
1388
+ # @param obj [Wx::RichTextBuffer]
1389
+ # @return [RichTextBuffer]
1390
+ def initialize(*args) end
1391
+
1392
+ # Sets style sheet, if any.
1393
+ # This will allow the application to use named character and paragraph styles found in the style sheet.
1394
+ # Neither the buffer nor the control owns the style sheet so must be deleted by the application.
1395
+ # @param styleSheet [Wx::RichTextStyleSheet]
1396
+ # @return [void]
1397
+ def set_style_sheet(styleSheet) end
1398
+ alias_method :style_sheet=, :set_style_sheet
1399
+
1400
+ # Returns the style sheet.
1401
+ # @return [Wx::RichTextStyleSheet]
1402
+ def get_style_sheet; end
1403
+ alias_method :style_sheet, :get_style_sheet
1404
+
1405
+ # Sets the style sheet and sends a notification of the change.
1406
+ # @param sheet [Wx::RichTextStyleSheet]
1407
+ # @return [true,false]
1408
+ def set_style_sheet_and_notify(sheet) end
1409
+ alias_method :style_sheet_and_notify=, :set_style_sheet_and_notify
1410
+
1411
+ # Pushes the style sheet to the top of the style sheet stack.
1412
+ # @param styleSheet [Wx::RichTextStyleSheet]
1413
+ # @return [true,false]
1414
+ def push_style_sheet(styleSheet) end
1415
+
1416
+ # Pops the style sheet from the top of the style sheet stack.
1417
+ # @return [Wx::RichTextStyleSheet]
1418
+ def pop_style_sheet; end
1419
+
1420
+ # @overload get_font_table()
1421
+ # Returns the table storing fonts, for quick access and font reuse.
1422
+ # @return [Wx::RichTextFontTable]
1423
+ # @overload get_font_table()
1424
+ # Returns the table storing fonts, for quick access and font reuse.
1425
+ # @return [Wx::RichTextFontTable]
1426
+ def get_font_table(*args) end
1427
+ alias_method :font_table, :get_font_table
1428
+
1429
+ # Sets table storing fonts, for quick access and font reuse.
1430
+ # @param table [Wx::RichTextFontTable]
1431
+ # @return [void]
1432
+ def set_font_table(table) end
1433
+ alias_method :font_table=, :set_font_table
1434
+
1435
+ # Sets the scale factor for displaying fonts, for example for more comfortable editing.
1436
+ # @param fontScale [Float]
1437
+ # @return [void]
1438
+ def set_font_scale(fontScale) end
1439
+ alias_method :font_scale=, :set_font_scale
1440
+
1441
+ # Returns the scale factor for displaying fonts, for example for more comfortable editing.
1442
+ # @return [Float]
1443
+ def get_font_scale; end
1444
+ alias_method :font_scale, :get_font_scale
1445
+
1446
+ # Sets the scale factor for displaying certain dimensions such as indentation and inter-paragraph spacing.
1447
+ # This can be useful when editing in a small control where you still want legible text, but a minimum of wasted white space.
1448
+ # @param dimScale [Float]
1449
+ # @return [void]
1450
+ def set_dimension_scale(dimScale) end
1451
+ alias_method :dimension_scale=, :set_dimension_scale
1452
+
1453
+ # Returns the scale factor for displaying certain dimensions such as indentation and inter-paragraph spacing.
1454
+ # @return [Float]
1455
+ def get_dimension_scale; end
1456
+ alias_method :dimension_scale, :get_dimension_scale
1457
+
1458
+ # Initialisation.
1459
+ # @return [void]
1460
+ def init; end
1461
+
1462
+ # Clears the buffer, adds an empty paragraph, and clears the command processor.
1463
+ # @return [void]
1464
+ def reset_and_clear_commands; end
1465
+
1466
+ # @overload load_file(filename, type=Wx::RICHTEXT_TYPE_ANY)
1467
+ # Loads content from a stream or file.
1468
+ # Not all handlers will implement file loading.
1469
+ # @param filename [String]
1470
+ # @param type [RichTextFileType]
1471
+ # @return [true,false]
1472
+ # @overload load_file(stream, type=Wx::RICHTEXT_TYPE_ANY)
1473
+ # @param stream [IO,Wx::InputStream]
1474
+ # @param type [RichTextFileType]
1475
+ # @return [true,false]
1476
+ def load_file(*args) end
1477
+
1478
+ # @overload save_file(filename, type=Wx::RICHTEXT_TYPE_ANY)
1479
+ # Saves content to a stream or file.
1480
+ # Not all handlers will implement file saving.
1481
+ # @param filename [String]
1482
+ # @param type [RichTextFileType]
1483
+ # @return [true,false]
1484
+ # @overload save_file(stream, type=Wx::RICHTEXT_TYPE_ANY)
1485
+ # @param stream [IO,Wx::OutputStream]
1486
+ # @param type [RichTextFileType]
1487
+ # @return [true,false]
1488
+ def save_file(*args) end
1489
+
1490
+ # Sets the handler flags, controlling loading and saving.
1491
+ # @param flags [Integer]
1492
+ # @return [void]
1493
+ def set_handler_flags(flags) end
1494
+ alias_method :handler_flags=, :set_handler_flags
1495
+
1496
+ # Gets the handler flags, controlling loading and saving.
1497
+ # @return [Integer]
1498
+ def get_handler_flags; end
1499
+ alias_method :handler_flags, :get_handler_flags
1500
+
1501
+ # Convenience function to add a paragraph of text.
1502
+ # @param text [String]
1503
+ # @param paraStyle [Wx::RichTextAttr]
1504
+ # @return [Range]
1505
+ def add_paragraph(text, paraStyle=nil) end
1506
+
1507
+ # Begin collapsing undo/redo commands.
1508
+ # Note that this may not work properly if combining commands that delete or insert content, changing ranges for subsequent actions.
1509
+ # cmdName should be the name of the combined command that will appear next to Undo and Redo in the edit menu.
1510
+ # @param cmdName [String]
1511
+ # @return [true,false]
1512
+ def begin_batch_undo(cmdName) end
1513
+
1514
+ # End collapsing undo/redo commands.
1515
+ # @return [true,false]
1516
+ def end_batch_undo; end
1517
+
1518
+ # Returns true if we are collapsing commands.
1519
+ # @return [true,false]
1520
+ def batching_undo; end
1521
+
1522
+ # Submit the action immediately, or delay according to whether collapsing is on.
1523
+ # @param action [Wx::RichTextAction]
1524
+ # @return [true,false]
1525
+ def submit_action(action) end
1526
+
1527
+ # Begin suppressing undo/redo commands.
1528
+ # The way undo is suppressed may be implemented differently by each command. If not dealt with by a command implementation, then it will be implemented automatically by not storing the command in the undo history when the action is submitted to the command processor.
1529
+ # @return [true,false]
1530
+ def begin_suppress_undo; end
1531
+
1532
+ # End suppressing undo/redo commands.
1533
+ # @return [true,false]
1534
+ def end_suppress_undo; end
1535
+
1536
+ # Are we suppressing undo??
1537
+ # @return [true,false]
1538
+ def suppressing_undo; end
1539
+
1540
+ # Copy the range to the clipboard.
1541
+ # @param range [Range]
1542
+ # @return [true,false]
1543
+ def copy_to_clipboard(range) end
1544
+
1545
+ # Paste the clipboard content to the buffer.
1546
+ # @param position [Integer]
1547
+ # @return [true,false]
1548
+ def paste_from_clipboard(position) end
1549
+
1550
+ # Returns true if we can paste from the clipboard.
1551
+ # @return [true,false]
1552
+ def can_paste_from_clipboard; end
1553
+ alias_method :can_paste_from_clipboard?, :can_paste_from_clipboard
1554
+
1555
+ # Begin using a style.
1556
+ # @param style [Wx::RichTextAttr]
1557
+ # @return [true,false]
1558
+ def begin_style(style) end
1559
+
1560
+ # End the style.
1561
+ # @return [true,false]
1562
+ def end_style; end
1563
+
1564
+ # End all styles.
1565
+ # @return [true,false]
1566
+ def end_all_styles; end
1567
+
1568
+ # Clears the style stack.
1569
+ # @return [void]
1570
+ def clear_style_stack; end
1571
+
1572
+ # Returns the size of the style stack, for example to check correct nesting.
1573
+ # @return [Integer]
1574
+ def get_style_stack_size; end
1575
+ alias_method :style_stack_size, :get_style_stack_size
1576
+
1577
+ # Begins using bold.
1578
+ # @return [true,false]
1579
+ def begin_bold; end
1580
+
1581
+ # Ends using bold.
1582
+ # @return [true,false]
1583
+ def end_bold; end
1584
+
1585
+ # Begins using italic.
1586
+ # @return [true,false]
1587
+ def begin_italic; end
1588
+
1589
+ # Ends using italic.
1590
+ # @return [true,false]
1591
+ def end_italic; end
1592
+
1593
+ # Begins using underline.
1594
+ # @return [true,false]
1595
+ def begin_underline; end
1596
+
1597
+ # Ends using underline.
1598
+ # @return [true,false]
1599
+ def end_underline; end
1600
+
1601
+ # Begins using point size.
1602
+ # @param pointSize [Integer]
1603
+ # @return [true,false]
1604
+ def begin_font_size(pointSize) end
1605
+
1606
+ # Ends using point size.
1607
+ # @return [true,false]
1608
+ def end_font_size; end
1609
+
1610
+ # Begins using this font.
1611
+ # @param font [Wx::Font,Wx::FontInfo]
1612
+ # @return [true,false]
1613
+ def begin_font(font) end
1614
+
1615
+ # Ends using a font.
1616
+ # @return [true,false]
1617
+ def end_font; end
1618
+
1619
+ # Begins using this colour.
1620
+ # @param colour [Wx::Colour,String,Symbol]
1621
+ # @return [true,false]
1622
+ def begin_text_colour(colour) end
1623
+
1624
+ # Ends using a colour.
1625
+ # @return [true,false]
1626
+ def end_text_colour; end
1627
+
1628
+ # Begins using alignment.
1629
+ # @param alignment [TextAttrAlignment]
1630
+ # @return [true,false]
1631
+ def begin_alignment(alignment) end
1632
+
1633
+ # Ends alignment.
1634
+ # @return [true,false]
1635
+ def end_alignment; end
1636
+
1637
+ # Begins using leftIndent for the left indent, and optionally leftSubIndent for the sub-indent.
1638
+ # Both are expressed in tenths of a millimetre.
1639
+ # The sub-indent is an offset from the left of the paragraph, and is used for all but the first line in a paragraph. A positive value will cause the first line to appear to the left of the subsequent lines, and a negative value will cause the first line to be indented relative to the subsequent lines.
1640
+ # @param leftIndent [Integer]
1641
+ # @param leftSubIndent [Integer]
1642
+ # @return [true,false]
1643
+ def begin_left_indent(leftIndent, leftSubIndent=0) end
1644
+
1645
+ # Ends left indent.
1646
+ # @return [true,false]
1647
+ def end_left_indent; end
1648
+
1649
+ # Begins a right indent, specified in tenths of a millimetre.
1650
+ # @param rightIndent [Integer]
1651
+ # @return [true,false]
1652
+ def begin_right_indent(rightIndent) end
1653
+
1654
+ # Ends right indent.
1655
+ # @return [true,false]
1656
+ def end_right_indent; end
1657
+
1658
+ # Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing in tenths of a millimetre.
1659
+ # @param before [Integer]
1660
+ # @param after [Integer]
1661
+ # @return [true,false]
1662
+ def begin_paragraph_spacing(before, after) end
1663
+
1664
+ # Ends paragraph spacing.
1665
+ # @return [true,false]
1666
+ def end_paragraph_spacing; end
1667
+
1668
+ # Begins line spacing using the specified value.
1669
+ # spacing is a multiple, where 10 means single-spacing, 15 means 1.5 spacing, and 20 means double spacing.
1670
+ # The {Wx::TextAttrLineSpacing} enumeration values are defined for convenience.
1671
+ # @param lineSpacing [Integer]
1672
+ # @return [true,false]
1673
+ def begin_line_spacing(lineSpacing) end
1674
+
1675
+ # Ends line spacing.
1676
+ # @return [true,false]
1677
+ def end_line_spacing; end
1678
+
1679
+ # Begins numbered bullet.
1680
+ # This call will be needed for each item in the list, and the application should take care of incrementing the numbering.
1681
+ # bulletNumber is a number, usually starting with 1. leftIndent and leftSubIndent are values in tenths of a millimetre. bulletStyle is a bitlist of the following values:
1682
+ # {Wx::RTC::RichTextBuffer} uses indentation to render a bulleted item. The left indent is the distance between the margin and the bullet. The content of the paragraph, including the first line, starts at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the left of the actual paragraph is leftSubIndent.
1683
+ # @param bulletNumber [Integer]
1684
+ # @param leftIndent [Integer]
1685
+ # @param leftSubIndent [Integer]
1686
+ # @param bulletStyle [Integer]
1687
+ # @return [true,false]
1688
+ def begin_numbered_bullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle=(Wx::TEXT_ATTR_BULLET_STYLE_ARABIC|Wx::TEXT_ATTR_BULLET_STYLE_PERIOD)) end
1689
+
1690
+ # Ends numbered bullet.
1691
+ # @return [true,false]
1692
+ def end_numbered_bullet; end
1693
+
1694
+ # Begins applying a symbol bullet, using a character from the current font.
1695
+ # See {Wx::RTC::RichTextBuffer#begin_numbered_bullet} for an explanation of how indentation is used to render the bulleted paragraph.
1696
+ # @param symbol [String]
1697
+ # @param leftIndent [Integer]
1698
+ # @param leftSubIndent [Integer]
1699
+ # @param bulletStyle [Integer]
1700
+ # @return [true,false]
1701
+ def begin_symbol_bullet(symbol, leftIndent, leftSubIndent, bulletStyle=Wx::TEXT_ATTR_BULLET_STYLE_SYMBOL) end
1702
+
1703
+ # Ends symbol bullet.
1704
+ # @return [true,false]
1705
+ def end_symbol_bullet; end
1706
+
1707
+ # Begins applying a standard bullet, using one of the standard bullet names (currently <code>standard/circle</code> or <code>standard/square</code>.
1708
+ # See {Wx::RTC::RichTextBuffer#begin_numbered_bullet} for an explanation of how indentation is used to render the bulleted paragraph.
1709
+ # @param bulletName [String]
1710
+ # @param leftIndent [Integer]
1711
+ # @param leftSubIndent [Integer]
1712
+ # @param bulletStyle [Integer]
1713
+ # @return [true,false]
1714
+ def begin_standard_bullet(bulletName, leftIndent, leftSubIndent, bulletStyle=Wx::TEXT_ATTR_BULLET_STYLE_STANDARD) end
1715
+
1716
+ # Ends standard bullet.
1717
+ # @return [true,false]
1718
+ def end_standard_bullet; end
1719
+
1720
+ # Begins named character style.
1721
+ # @param characterStyle [String]
1722
+ # @return [true,false]
1723
+ def begin_character_style(characterStyle) end
1724
+
1725
+ # Ends named character style.
1726
+ # @return [true,false]
1727
+ def end_character_style; end
1728
+
1729
+ # Begins named paragraph style.
1730
+ # @param paragraphStyle [String]
1731
+ # @return [true,false]
1732
+ def begin_paragraph_style(paragraphStyle) end
1733
+
1734
+ # Ends named character style.
1735
+ # @return [true,false]
1736
+ def end_paragraph_style; end
1737
+
1738
+ # Begins named list style.
1739
+ # Optionally, you can also pass a level and a number.
1740
+ # @param listStyle [String]
1741
+ # @param level [Integer]
1742
+ # @param number [Integer]
1743
+ # @return [true,false]
1744
+ def begin_list_style(listStyle, level=1, number=1) end
1745
+
1746
+ # Ends named character style.
1747
+ # @return [true,false]
1748
+ def end_list_style; end
1749
+
1750
+ # Begins applying {Wx::TextAttrFlags::TEXT_ATTR_URL} to the content.
1751
+ # Pass a URL and optionally, a character style to apply, since it is common to mark a URL with a familiar style such as blue text with underlining.
1752
+ # @param url [String]
1753
+ # @param characterStyle [String]
1754
+ # @return [true,false]
1755
+ def begin_url(url, characterStyle=Wx::EMPTY_STRING) end
1756
+
1757
+ # Ends URL.
1758
+ # @return [true,false]
1759
+ def end_url; end
1760
+
1761
+ # Adds an event handler.
1762
+ # A buffer associated with a control has the control as the only event handler, but the application is free to add more if further notification is required. All handlers are notified of an event originating from the buffer, such as the replacement of a style sheet during loading.
1763
+ # The buffer never deletes any of the event handlers, unless {Wx::RTC::RichTextBuffer#remove_event_handler} is called with true as the second argument.
1764
+ # @param handler [Wx::EvtHandler]
1765
+ # @return [true,false]
1766
+ def add_event_handler(handler) end
1767
+
1768
+ # Removes an event handler from the buffer's list of handlers, deleting the object if deleteHandler is true.
1769
+ # @param handler [Wx::EvtHandler]
1770
+ # @param deleteHandler [true,false]
1771
+ # @return [true,false]
1772
+ def remove_event_handler(handler, deleteHandler=false) end
1773
+
1774
+ # Clear event handlers.
1775
+ # @return [void]
1776
+ def clear_event_handlers; end
1777
+
1778
+ # Send event to event handlers.
1779
+ # If sendToAll is true, will send to all event handlers, otherwise will stop at the first successful one.
1780
+ # @param event [Wx::Event]
1781
+ # @param sendToAll [true,false]
1782
+ # @return [true,false]
1783
+ def send_event(event, sendToAll=true) end
1784
+
1785
+ # Hit-testing: returns a flag indicating hit test details, plus information about position.
1786
+ # contextObj is returned to specify what object position is relevant to, since otherwise there's an ambiguity. @ obj might not be a child of contextObj, since we may be referring to the container itself if we have no hit on a child - for example if we click outside an object.
1787
+ # The function puts the position in textPosition if one is found. pt is in logical units (a zero y position is at the beginning of the buffer).
1788
+ # One of the {Wx::RTC::RichTextHitTestFlags} values.
1789
+ # @param dc [Wx::DC]
1790
+ # @param context [Wx::RichTextDrawingContext]
1791
+ # @param pt [Array(Integer, Integer), Wx::Point]
1792
+ # @param textPosition [long]
1793
+ # @param obj [Wx::RichTextObject]
1794
+ # @param contextObj [Wx::RichTextObject]
1795
+ # @param flags [Integer]
1796
+ # @return [Integer]
1797
+ def hit_test(dc, context, pt, textPosition, obj, contextObj, flags=0) end
1798
+
1799
+ # Copies the buffer.
1800
+ # @param obj [Wx::RichTextBuffer]
1801
+ # @return [void]
1802
+ def copy(obj) end
1803
+
1804
+ # Clones the buffer.
1805
+ # @return [Wx::RichTextObject]
1806
+ def clone; end
1807
+
1808
+ # Submits a command to insert paragraphs.
1809
+ # @param pos [Integer]
1810
+ # @param paragraphs [Wx::RichTextParagraphLayoutBox]
1811
+ # @param ctrl [Wx::RichTextCtrl]
1812
+ # @param flags [Integer]
1813
+ # @return [true,false]
1814
+ def insert_paragraphs_with_undo(pos, paragraphs, ctrl, flags=0) end
1815
+
1816
+ # Submits a command to insert the given text.
1817
+ # @param pos [Integer]
1818
+ # @param text [String]
1819
+ # @param ctrl [Wx::RichTextCtrl]
1820
+ # @param flags [Integer]
1821
+ # @return [true,false]
1822
+ def insert_text_with_undo(pos, text, ctrl, flags=0) end
1823
+
1824
+ # Submits a command to insert a newline.
1825
+ # @param pos [Integer]
1826
+ # @param ctrl [Wx::RichTextCtrl]
1827
+ # @param flags [Integer]
1828
+ # @return [true,false]
1829
+ def insert_newline_with_undo(pos, ctrl, flags=0) end
1830
+
1831
+ # Submits a command to insert the given image.
1832
+ # @param pos [Integer]
1833
+ # @param imageBlock [Wx::RichTextImageBlock]
1834
+ # @param ctrl [Wx::RichTextCtrl]
1835
+ # @param flags [Integer]
1836
+ # @param textAttr [Wx::RichTextAttr]
1837
+ # @return [true,false]
1838
+ def insert_image_with_undo(pos, imageBlock, ctrl, flags=0, textAttr=(Wx::RichTextAttr.new())) end
1839
+
1840
+ # Submits a command to insert an object.
1841
+ # @param pos [Integer]
1842
+ # @param object [Wx::RichTextObject]
1843
+ # @param ctrl [Wx::RichTextCtrl]
1844
+ # @param flags [Integer]
1845
+ # @return [Wx::RichTextObject]
1846
+ def insert_object_with_undo(pos, object, ctrl, flags) end
1847
+
1848
+ # Submits a command to delete this range.
1849
+ # @param range [Range]
1850
+ # @param ctrl [Wx::RichTextCtrl]
1851
+ # @return [true,false]
1852
+ def delete_range_with_undo(range, ctrl) end
1853
+
1854
+ # Mark modified.
1855
+ # @param modify [true,false]
1856
+ # @return [void]
1857
+ def modify(modify=true) end
1858
+
1859
+ # Returns true if the buffer was modified.
1860
+ # @return [true,false]
1861
+ def is_modified; end
1862
+ alias_method :modified?, :is_modified
1863
+
1864
+ # @overload dump()
1865
+ # Dumps contents of buffer for debugging purposes.
1866
+ # @return [void]
1867
+ # @overload dump(stream)
1868
+ # Dump object data to the given output stream for debugging.
1869
+ # @param stream [Wx::TextOutputStream]
1870
+ # @return [void]
1871
+ def dump(*args) end
1872
+
1873
+ # Returns the scale factor for calculating dimensions.
1874
+ # @return [Float]
1875
+ def get_scale; end
1876
+ alias_method :scale, :get_scale
1877
+
1878
+ # Sets the scale factor for calculating dimensions.
1879
+ # @param scale [Float]
1880
+ # @return [void]
1881
+ def set_scale(scale) end
1882
+ alias_method :scale=, :set_scale
1883
+
1884
+ # Returns the file handlers.
1885
+ # @return [Wx::List]
1886
+ def self.get_handlers; end
1887
+
1888
+ # Adds a file handler to the end.
1889
+ # @param handler [Wx::RichTextFileHandler]
1890
+ # @return [void]
1891
+ def self.add_handler(handler) end
1892
+
1893
+ # Inserts a file handler at the front.
1894
+ # @param handler [Wx::RichTextFileHandler]
1895
+ # @return [void]
1896
+ def self.insert_handler(handler) end
1897
+
1898
+ # Removes a file handler.
1899
+ # @param name [String]
1900
+ # @return [true,false]
1901
+ def self.remove_handler(name) end
1902
+
1903
+ # @overload self.find_handler(name)
1904
+ # Finds a file handler by name.
1905
+ # @param name [String]
1906
+ # @return [Wx::RichTextFileHandler]
1907
+ # @overload self.find_handler(extension, imageType)
1908
+ # Finds a file handler by extension and type.
1909
+ # @param extension [String]
1910
+ # @param imageType [RichTextFileType]
1911
+ # @return [Wx::RichTextFileHandler]
1912
+ # @overload self.find_handler(imageType)
1913
+ # Finds a handler by type.
1914
+ # @param imageType [RichTextFileType]
1915
+ # @return [Wx::RichTextFileHandler]
1916
+ def self.find_handler(*args) end
1917
+
1918
+ # Finds a handler by filename or, if supplied, type.
1919
+ # @param filename [String]
1920
+ # @param imageType [RichTextFileType]
1921
+ # @return [Wx::RichTextFileHandler]
1922
+ def self.find_handler_filename_or_type(filename, imageType) end
1923
+
1924
+ # Gets a wildcard incorporating all visible handlers.
1925
+ # If types is present, it will be filled with the file type corresponding to each filter. This can be used to determine the type to pass to LoadFile given a selected filter.
1926
+ # @param combine [true,false]
1927
+ # @param save [true,false]
1928
+ # @param types [Wx::ArrayInt]
1929
+ # @return [String]
1930
+ def self.get_ext_wildcard(combine=false, save=false, types=nil) end
1931
+
1932
+ # Clean up file handlers.
1933
+ # @return [void]
1934
+ def self.clean_up_handlers; end
1935
+
1936
+ # Initialise the standard file handlers.
1937
+ # Currently, only the plain text loading/saving handler is initialised by default.
1938
+ # @return [void]
1939
+ def self.init_standard_handlers; end
1940
+
1941
+ # Returns the drawing handlers.
1942
+ # @return [Wx::List]
1943
+ def self.get_drawing_handlers; end
1944
+
1945
+ # Adds a drawing handler to the end.
1946
+ # @param handler [Wx::RichTextDrawingHandler]
1947
+ # @return [void]
1948
+ def self.add_drawing_handler(handler) end
1949
+
1950
+ # Inserts a drawing handler at the front.
1951
+ # @param handler [Wx::RichTextDrawingHandler]
1952
+ # @return [void]
1953
+ def self.insert_drawing_handler(handler) end
1954
+
1955
+ # Removes a drawing handler.
1956
+ # @param name [String]
1957
+ # @return [true,false]
1958
+ def self.remove_drawing_handler(name) end
1959
+
1960
+ # Finds a drawing handler by name.
1961
+ # @param name [String]
1962
+ # @return [Wx::RichTextDrawingHandler]
1963
+ def self.find_drawing_handler(name) end
1964
+
1965
+ # Clean up drawing handlers.
1966
+ # @return [void]
1967
+ def self.clean_up_drawing_handlers; end
1968
+
1969
+ # Returns the field types.
1970
+ # @return [Wx::RichTextFieldTypeHashMap]
1971
+ def self.get_field_types; end
1972
+
1973
+ # Adds a field type.
1974
+ #
1975
+ # @see Wx::RTC::RichTextBuffer.remove_field_type
1976
+ # @see Wx::RTC::RichTextBuffer.find_field_type
1977
+ # @see Wx::RichTextField
1978
+ # @see Wx::RichTextFieldType
1979
+ # @see Wx::RichTextFieldTypeStandard
1980
+ # @param fieldType [Wx::RichTextFieldType]
1981
+ # @return [void]
1982
+ def self.add_field_type(fieldType) end
1983
+
1984
+ # Removes a field type by name.
1985
+ #
1986
+ # @see Wx::RTC::RichTextBuffer.add_field_type
1987
+ # @see Wx::RTC::RichTextBuffer.find_field_type
1988
+ # @see Wx::RichTextField
1989
+ # @see Wx::RichTextFieldType
1990
+ # @see Wx::RichTextFieldTypeStandard
1991
+ # @param name [String]
1992
+ # @return [true,false]
1993
+ def self.remove_field_type(name) end
1994
+
1995
+ # Finds a field type by name.
1996
+ #
1997
+ # @see Wx::RTC::RichTextBuffer.remove_field_type
1998
+ # @see Wx::RTC::RichTextBuffer.add_field_type
1999
+ # @see Wx::RichTextField
2000
+ # @see Wx::RichTextFieldType
2001
+ # @see Wx::RichTextFieldTypeStandard
2002
+ # @param name [String]
2003
+ # @return [Wx::RichTextFieldType]
2004
+ def self.find_field_type(name) end
2005
+
2006
+ # Cleans up field types.
2007
+ # @return [void]
2008
+ def self.clean_up_field_types; end
2009
+
2010
+ # Returns the renderer object.
2011
+ # @return [Wx::RichTextRenderer]
2012
+ def self.get_renderer; end
2013
+
2014
+ # Sets renderer as the object to be used to render certain aspects of the content, such as bullets.
2015
+ # You can override default rendering by deriving a new class from {Wx::RichTextRenderer} or {Wx::RichTextStdRenderer}, overriding one or more virtual functions, and setting an instance of the class using this function.
2016
+ # @param renderer [Wx::RichTextRenderer]
2017
+ # @return [void]
2018
+ def self.set_renderer(renderer) end
2019
+
2020
+ # Returns the minimum margin between bullet and paragraph in 10ths of a mm.
2021
+ # @return [Integer]
2022
+ def self.get_bullet_right_margin; end
2023
+
2024
+ # Sets the minimum margin between bullet and paragraph in 10ths of a mm.
2025
+ # @param margin [Integer]
2026
+ # @return [void]
2027
+ def self.set_bullet_right_margin(margin) end
2028
+
2029
+ # Returns the factor to multiply by character height to get a reasonable bullet size.
2030
+ # @return [Float]
2031
+ def self.get_bullet_proportion; end
2032
+
2033
+ # Sets the factor to multiply by character height to get a reasonable bullet size.
2034
+ # @param prop [Float]
2035
+ # @return [void]
2036
+ def self.set_bullet_proportion(prop) end
2037
+
2038
+ # Returns the floating layout mode.
2039
+ # The default is true, where objects are laid out according to their floating status.
2040
+ # @return [true,false]
2041
+ def self.get_floating_layout_mode; end
2042
+
2043
+ # Sets the floating layout mode.
2044
+ # Pass false to speed up editing by not performing floating layout. This setting affects all buffers.
2045
+ # @param mode [true,false]
2046
+ # @return [void]
2047
+ def self.set_floating_layout_mode(mode) end
2048
+
2049
+ end # RichTextBuffer
2050
+
2051
+
2052
+ end