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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +30 -8
  3. data/README.md +3 -3
  4. data/ext/mkrf_conf_bingem.rb +4 -1
  5. data/ext/wxbase32u_gcc_custom.dll +0 -0
  6. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  7. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  8. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  9. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  10. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  11. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  12. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  20. data/lib/wx/accessors.rb +10 -2
  21. data/lib/wx/aui/auifloatframe.rb +20 -0
  22. data/lib/wx/aui/auimanager.rb +3 -0
  23. data/lib/wx/aui/auinotebook.rb +17 -0
  24. data/lib/wx/aui/events/evt_list.rb +7 -7
  25. data/lib/wx/aui/require.rb +5 -1
  26. data/lib/wx/aui.rb +4 -1
  27. data/lib/wx/core/acceleratortable.rb +8 -0
  28. data/lib/wx/core/animation.rb +8 -0
  29. data/lib/wx/core/app.rb +8 -0
  30. data/lib/wx/core/array_ext.rb +7 -0
  31. data/lib/wx/core/art_locator.rb +7 -0
  32. data/lib/wx/core/artprovider.rb +9 -0
  33. data/lib/wx/core/bitmap.rb +16 -4
  34. data/lib/wx/core/bitmap_combobox.rb +7 -0
  35. data/lib/wx/core/brush.rb +7 -0
  36. data/lib/wx/core/busycursor.rb +9 -0
  37. data/lib/wx/core/choice.rb +7 -0
  38. data/lib/wx/core/choicedlg.rb +7 -0
  39. data/lib/wx/core/clientdc.rb +9 -0
  40. data/lib/wx/core/clipboard.rb +8 -0
  41. data/lib/wx/core/collapsible_pane.rb +8 -1
  42. data/lib/wx/core/colour.rb +8 -0
  43. data/lib/wx/core/combo_ctrl.rb +110 -0
  44. data/lib/wx/core/combobox.rb +7 -0
  45. data/lib/wx/core/config.rb +303 -0
  46. data/lib/wx/core/controlwithitems.rb +12 -1
  47. data/lib/wx/core/cursor.rb +14 -4
  48. data/lib/wx/core/data_object.rb +7 -0
  49. data/lib/wx/core/dataformat.rb +9 -0
  50. data/lib/wx/core/datetime.rb +14 -0
  51. data/lib/wx/core/dc.rb +7 -0
  52. data/lib/wx/core/dialog.rb +18 -1
  53. data/lib/wx/core/enum.rb +7 -0
  54. data/lib/wx/core/event.rb +7 -0
  55. data/lib/wx/core/event_blocker.rb +7 -0
  56. data/lib/wx/core/event_loop.rb +14 -0
  57. data/lib/wx/core/events/evt_list.rb +76 -0
  58. data/lib/wx/core/evthandler.rb +8 -0
  59. data/lib/wx/core/ext.rb +7 -0
  60. data/lib/wx/core/file_dialog.rb +23 -0
  61. data/lib/wx/core/find_replace_dialog.rb +7 -0
  62. data/lib/wx/core/functions.rb +8 -0
  63. data/lib/wx/core/gauge.rb +10 -1
  64. data/lib/wx/core/genericdirctrl.rb +9 -0
  65. data/lib/wx/core/hboxsizer.rb +16 -0
  66. data/lib/wx/core/helpcontroller.rb +8 -0
  67. data/lib/wx/core/helpcontrollerhelpprovider.rb +9 -0
  68. data/lib/wx/core/helpprovider.rb +10 -1
  69. data/lib/wx/core/icon.rb +17 -6
  70. data/lib/wx/core/id_helper.rb +7 -0
  71. data/lib/wx/core/image.rb +49 -4
  72. data/lib/wx/core/imagelist.rb +8 -1
  73. data/lib/wx/core/listbox.rb +7 -0
  74. data/lib/wx/core/listctrl.rb +26 -13
  75. data/lib/wx/core/locale.rb +8 -0
  76. data/lib/wx/core/log.rb +114 -0
  77. data/lib/wx/core/menu.rb +9 -0
  78. data/lib/wx/core/menu_bar.rb +7 -0
  79. data/lib/wx/core/menuitem.rb +9 -0
  80. data/lib/wx/core/notebook.rb +9 -0
  81. data/lib/wx/core/object.rb +9 -0
  82. data/lib/wx/core/paintdc.rb +7 -0
  83. data/lib/wx/core/pen.rb +7 -0
  84. data/lib/wx/core/pen_info.rb +7 -0
  85. data/lib/wx/core/platform_info.rb +7 -0
  86. data/lib/wx/core/point.rb +8 -0
  87. data/lib/wx/core/real_point.rb +8 -0
  88. data/lib/wx/core/rect.rb +9 -0
  89. data/lib/wx/core/region_iterator.rb +7 -0
  90. data/lib/wx/core/simplehelpprovider.rb +9 -0
  91. data/lib/wx/core/size.rb +8 -0
  92. data/lib/wx/core/sizer.rb +9 -0
  93. data/lib/wx/core/splash_screen.rb +22 -2
  94. data/lib/wx/core/text_entry.rb +7 -0
  95. data/lib/wx/core/textctrl.rb +86 -5
  96. data/lib/wx/core/timer.rb +9 -0
  97. data/lib/wx/core/toolbar.rb +9 -0
  98. data/lib/wx/core/toolbartool.rb +8 -0
  99. data/lib/wx/core/treectrl.rb +9 -0
  100. data/lib/wx/core/v_list_box.rb +7 -0
  101. data/lib/wx/core/validator.rb +7 -0
  102. data/lib/wx/core/variant.rb +7 -0
  103. data/lib/wx/core/vboxsizer.rb +16 -0
  104. data/lib/wx/core/window.rb +8 -0
  105. data/lib/wx/core/window_update_locker.rb +9 -0
  106. data/lib/wx/core/xmlresource.rb +8 -0
  107. data/lib/wx/core.rb +4 -1
  108. data/lib/wx/doc/app.rb +7 -1
  109. data/lib/wx/doc/array_ext.rb +6 -0
  110. data/lib/wx/doc/art_locator.rb +7 -0
  111. data/lib/wx/doc/aui/auimanager.rb +6 -0
  112. data/lib/wx/doc/aui/auinotebook.rb +6 -0
  113. data/lib/wx/doc/bitmap.rb +19 -15
  114. data/lib/wx/doc/brush.rb +6 -0
  115. data/lib/wx/doc/busy_info.rb +6 -0
  116. data/lib/wx/doc/client_dc.rb +6 -0
  117. data/lib/wx/doc/clipboard.rb +6 -0
  118. data/lib/wx/doc/colour_dialog.rb +6 -0
  119. data/lib/wx/doc/config.rb +190 -0
  120. data/lib/wx/doc/const.rb +7 -0
  121. data/lib/wx/doc/controlwithitems.rb +6 -0
  122. data/lib/wx/doc/core.rb +6 -0
  123. data/lib/wx/doc/cursor.rb +13 -5
  124. data/lib/wx/doc/data_object.rb +6 -0
  125. data/lib/wx/doc/datetime.rb +16 -0
  126. data/lib/wx/doc/dc.rb +6 -0
  127. data/lib/wx/doc/enum.rb +8 -1
  128. data/lib/wx/doc/event.rb +12 -0
  129. data/lib/wx/doc/event_blocker.rb +6 -0
  130. data/lib/wx/doc/event_loop.rb +13 -0
  131. data/lib/wx/doc/events.rb +6 -0
  132. data/lib/wx/doc/evthandler.rb +8 -0
  133. data/lib/wx/doc/extra/00_starting.md +6 -6
  134. data/lib/wx/doc/extra/01_packages.md +52 -51
  135. data/lib/wx/doc/extra/02_lifecycles.md +9 -8
  136. data/lib/wx/doc/extra/05_event-handling.md +37 -12
  137. data/lib/wx/doc/extra/06_geometry.md +5 -5
  138. data/lib/wx/doc/extra/07_colour_and_font.md +2 -2
  139. data/lib/wx/doc/extra/09_exceptions.md +2 -2
  140. data/lib/wx/doc/extra/10_art.md +18 -12
  141. data/lib/wx/doc/extra/11_drawing_and_dc.md +8 -8
  142. data/lib/wx/doc/font.rb +7 -1
  143. data/lib/wx/doc/font_data.rb +16 -0
  144. data/lib/wx/doc/functions.rb +60 -24
  145. data/lib/wx/doc/gc_dc.rb +7 -1
  146. data/lib/wx/doc/gdi_common.rb +8 -1
  147. data/lib/wx/doc/gen/about_dialog_info.rb +10 -10
  148. data/lib/wx/doc/gen/accelerator.rb +8 -13
  149. data/lib/wx/doc/gen/accessible.rb +27 -23
  150. data/lib/wx/doc/gen/activity_indicator.rb +7 -7
  151. data/lib/wx/doc/gen/animation.rb +20 -20
  152. data/lib/wx/doc/gen/animation_ctrl.rb +14 -13
  153. data/lib/wx/doc/gen/any_button.rb +3 -3
  154. data/lib/wx/doc/gen/app.rb +25 -88
  155. data/lib/wx/doc/gen/app_traits.rb +381 -0
  156. data/lib/wx/doc/gen/art_provider.rb +64 -4
  157. data/lib/wx/doc/gen/aui/aui_dock_art.rb +12 -12
  158. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +6 -6
  159. data/lib/wx/doc/gen/aui/aui_manager.rb +57 -41
  160. data/lib/wx/doc/gen/aui/aui_manager_event.rb +16 -10
  161. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +19 -20
  162. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +7 -7
  163. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +12 -12
  164. data/lib/wx/doc/gen/aui/aui_notebook.rb +136 -26
  165. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +17 -2
  166. data/lib/wx/doc/gen/aui/aui_pane_info.rb +95 -95
  167. data/lib/wx/doc/gen/aui/aui_tab_art.rb +17 -17
  168. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +61 -46
  169. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +18 -18
  170. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +6 -6
  171. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +11 -11
  172. data/lib/wx/doc/gen/aui/event_list.rb +7 -0
  173. data/lib/wx/doc/gen/banner_window.rb +98 -0
  174. data/lib/wx/doc/gen/bitmap.rb +56 -81
  175. data/lib/wx/doc/gen/bitmap_button.rb +13 -9
  176. data/lib/wx/doc/gen/bitmap_combo_box.rb +14 -9
  177. data/lib/wx/doc/gen/book_ctrl_base.rb +20 -16
  178. data/lib/wx/doc/gen/book_ctrl_event.rb +2 -2
  179. data/lib/wx/doc/gen/box_sizer.rb +1 -1
  180. data/lib/wx/doc/gen/brush.rb +24 -12
  181. data/lib/wx/doc/gen/busy_info.rb +1 -1
  182. data/lib/wx/doc/gen/button.rb +23 -11
  183. data/lib/wx/doc/gen/calculate_layout_event.rb +2 -1
  184. data/lib/wx/doc/gen/calendar_ctrl.rb +34 -22
  185. data/lib/wx/doc/gen/calendar_date_attr.rb +13 -13
  186. data/lib/wx/doc/gen/calendar_event.rb +4 -10
  187. data/lib/wx/doc/gen/caret.rb +6 -6
  188. data/lib/wx/doc/gen/check_box.rb +19 -15
  189. data/lib/wx/doc/gen/check_list_box.rb +10 -9
  190. data/lib/wx/doc/gen/choice.rb +10 -9
  191. data/lib/wx/doc/gen/choicebook.rb +13 -7
  192. data/lib/wx/doc/gen/client_dc.rb +1 -1
  193. data/lib/wx/doc/gen/clipboard.rb +10 -10
  194. data/lib/wx/doc/gen/collapsible_pane.rb +13 -10
  195. data/lib/wx/doc/gen/collapsible_pane_event.rb +5 -4
  196. data/lib/wx/doc/gen/colour.rb +42 -32
  197. data/lib/wx/doc/gen/colour_dialog.rb +12 -12
  198. data/lib/wx/doc/gen/colour_picker_ctrl.rb +16 -10
  199. data/lib/wx/doc/gen/colour_picker_event.rb +7 -4
  200. data/lib/wx/doc/gen/combo_box.rb +29 -20
  201. data/lib/wx/doc/gen/combo_ctrl.rb +960 -0
  202. data/lib/wx/doc/gen/command_link_button.rb +110 -0
  203. data/lib/wx/doc/gen/config_base.rb +10 -0
  204. data/lib/wx/doc/gen/context_help_button.rb +7 -6
  205. data/lib/wx/doc/gen/control.rb +12 -9
  206. data/lib/wx/doc/gen/control_with_items.rb +5 -5
  207. data/lib/wx/doc/gen/core.rb +8 -5
  208. data/lib/wx/doc/gen/cursor.rb +18 -18
  209. data/lib/wx/doc/gen/data_format.rb +5 -5
  210. data/lib/wx/doc/gen/data_object.rb +32 -25
  211. data/lib/wx/doc/gen/date_event.rb +3 -3
  212. data/lib/wx/doc/gen/date_picker_ctrl.rb +16 -11
  213. data/lib/wx/doc/gen/dc.rb +162 -74
  214. data/lib/wx/doc/gen/defs.rb +16 -16
  215. data/lib/wx/doc/gen/dialog.rb +65 -22
  216. data/lib/wx/doc/gen/dir_dialog.rb +6 -2
  217. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +3 -3
  218. data/lib/wx/doc/gen/dir_picker_ctrl.rb +17 -12
  219. data/lib/wx/doc/gen/drag_drop.rb +26 -52
  220. data/lib/wx/doc/gen/drag_image.rb +13 -38
  221. data/lib/wx/doc/gen/editable_list_box.rb +9 -5
  222. data/lib/wx/doc/gen/event.rb +55 -32
  223. data/lib/wx/doc/gen/event_blocker.rb +1 -1
  224. data/lib/wx/doc/gen/event_filter.rb +5 -2
  225. data/lib/wx/doc/gen/event_list.rb +117 -19
  226. data/lib/wx/doc/gen/events.rb +351 -215
  227. data/lib/wx/doc/gen/evt_handler.rb +8 -8
  228. data/lib/wx/doc/gen/ext_help_controller.rb +9 -9
  229. data/lib/wx/doc/gen/file_dialog.rb +20 -9
  230. data/lib/wx/doc/gen/file_dialog_custom_control.rb +146 -0
  231. data/lib/wx/doc/gen/file_dialog_customize_hook.rb +159 -0
  232. data/lib/wx/doc/gen/file_dir_picker_event.rb +5 -3
  233. data/lib/wx/doc/gen/file_picker_ctrl.rb +19 -11
  234. data/lib/wx/doc/gen/file_system.rb +250 -0
  235. data/lib/wx/doc/gen/find_dialog_event.rb +7 -2
  236. data/lib/wx/doc/gen/find_replace_data.rb +1 -1
  237. data/lib/wx/doc/gen/find_replace_dialog.rb +2 -2
  238. data/lib/wx/doc/gen/flex_grid_sizer.rb +16 -10
  239. data/lib/wx/doc/gen/font.rb +90 -94
  240. data/lib/wx/doc/gen/font_data.rb +15 -11
  241. data/lib/wx/doc/gen/font_dialog.rb +5 -5
  242. data/lib/wx/doc/gen/font_picker_ctrl.rb +11 -7
  243. data/lib/wx/doc/gen/font_picker_event.rb +2 -1
  244. data/lib/wx/doc/gen/frame.rb +36 -27
  245. data/lib/wx/doc/gen/fs_file.rb +65 -38
  246. data/lib/wx/doc/gen/gauge.rb +14 -10
  247. data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
  248. data/lib/wx/doc/gen/gcdc.rb +5 -1
  249. data/lib/wx/doc/gen/gdi_common.rb +43 -41
  250. data/lib/wx/doc/gen/gdi_object.rb +1 -1
  251. data/lib/wx/doc/gen/generic_dir_ctrl.rb +19 -13
  252. data/lib/wx/doc/gen/graphics_context.rb +320 -88
  253. data/lib/wx/doc/gen/graphics_object.rb +48 -102
  254. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +4 -2
  255. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +41 -56
  256. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +3 -1
  257. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +3 -1
  258. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +4 -2
  259. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +3 -1
  260. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
  261. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +3 -1
  262. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +3 -1
  263. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +3 -1
  264. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +19 -14
  265. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +3 -1
  266. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +3 -1
  267. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +3 -1
  268. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +3 -1
  269. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +3 -1
  270. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +3 -1
  271. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +15 -13
  272. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +3 -1
  273. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +3 -1
  274. data/lib/wx/doc/gen/grid/grid_ctrl.rb +446 -189
  275. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +5 -3
  276. data/lib/wx/doc/gen/grid/grid_event.rb +26 -9
  277. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +15 -11
  278. data/lib/wx/doc/gen/grid/grid_size_event.rb +13 -7
  279. data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -8
  280. data/lib/wx/doc/gen/grid/grid_table_base.rb +21 -21
  281. data/lib/wx/doc/gen/grid/grid_table_message.rb +5 -5
  282. data/lib/wx/doc/gen/grid_bag_sizer.rb +15 -15
  283. data/lib/wx/doc/gen/grid_sizer.rb +4 -4
  284. data/lib/wx/doc/gen/gui_event_loop.rb +132 -0
  285. data/lib/wx/doc/gen/header_ctrl.rb +755 -0
  286. data/lib/wx/doc/gen/header_ctrl_event.rb +131 -0
  287. data/lib/wx/doc/gen/help_controller.rb +25 -19
  288. data/lib/wx/doc/gen/help_provider.rb +3 -3
  289. data/lib/wx/doc/gen/html/html_cell.rb +100 -59
  290. data/lib/wx/doc/gen/html/html_cell_event.rb +7 -5
  291. data/lib/wx/doc/gen/html/html_easy_printing.rb +14 -9
  292. data/lib/wx/doc/gen/html/html_help_controller.rb +60 -46
  293. data/lib/wx/doc/gen/html/html_help_data.rb +5 -5
  294. data/lib/wx/doc/gen/html/html_help_window.rb +33 -35
  295. data/lib/wx/doc/gen/html/html_link_event.rb +4 -3
  296. data/lib/wx/doc/gen/html/html_list_box.rb +21 -13
  297. data/lib/wx/doc/gen/html/html_printout.rb +16 -6
  298. data/lib/wx/doc/gen/html/html_window.rb +54 -39
  299. data/lib/wx/doc/gen/hyperlink_ctrl.rb +15 -10
  300. data/lib/wx/doc/gen/hyperlink_event.rb +2 -1
  301. data/lib/wx/doc/gen/icon.rb +24 -24
  302. data/lib/wx/doc/gen/icon_location.rb +1 -1
  303. data/lib/wx/doc/gen/image.rb +164 -114
  304. data/lib/wx/doc/gen/image_list.rb +24 -30
  305. data/lib/wx/doc/gen/info_bar.rb +152 -0
  306. data/lib/wx/doc/gen/keyboard_state.rb +24 -24
  307. data/lib/wx/doc/gen/list_box.rb +40 -31
  308. data/lib/wx/doc/gen/list_ctrl.rb +223 -167
  309. data/lib/wx/doc/gen/list_event.rb +25 -3
  310. data/lib/wx/doc/gen/listbook.rb +13 -7
  311. data/lib/wx/doc/gen/locale.rb +22 -71
  312. data/lib/wx/doc/gen/log.rb +133 -106
  313. data/lib/wx/doc/gen/mdi_client_window.rb +3 -3
  314. data/lib/wx/doc/gen/mdi_frame.rb +23 -17
  315. data/lib/wx/doc/gen/media_ctrl.rb +22 -19
  316. data/lib/wx/doc/gen/media_event.rb +8 -2
  317. data/lib/wx/doc/gen/memory_dc.rb +26 -33
  318. data/lib/wx/doc/gen/menu.rb +24 -25
  319. data/lib/wx/doc/gen/menu_bar.rb +11 -28
  320. data/lib/wx/doc/gen/menu_item.rb +127 -46
  321. data/lib/wx/doc/gen/message_dialog.rb +54 -36
  322. data/lib/wx/doc/gen/mini_frame.rb +14 -5
  323. data/lib/wx/doc/gen/mouse_state.rb +51 -11
  324. data/lib/wx/doc/gen/multi_choice_dialog.rb +4 -2
  325. data/lib/wx/doc/gen/non_owned_window.rb +8 -9
  326. data/lib/wx/doc/gen/notebook.rb +27 -22
  327. data/lib/wx/doc/gen/number_entry_dialog.rb +3 -3
  328. data/lib/wx/doc/gen/object.rb +3 -14
  329. data/lib/wx/doc/gen/palette.rb +15 -17
  330. data/lib/wx/doc/gen/panel.rb +8 -7
  331. data/lib/wx/doc/gen/pen.rb +50 -37
  332. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +3 -3
  333. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +17 -17
  334. data/lib/wx/doc/gen/pg/pg_cell.rb +13 -16
  335. data/lib/wx/doc/gen/pg/pg_editor.rb +95 -93
  336. data/lib/wx/doc/gen/pg/pg_multi_button.rb +64 -89
  337. data/lib/wx/doc/gen/pg/pg_properties.rb +379 -349
  338. data/lib/wx/doc/gen/pg/pg_property.rb +260 -307
  339. data/lib/wx/doc/gen/pg/pg_validation_info.rb +3 -3
  340. data/lib/wx/doc/gen/pg/property_grid.rb +49 -49
  341. data/lib/wx/doc/gen/pg/property_grid_event.rb +24 -11
  342. data/lib/wx/doc/gen/pg/property_grid_interface.rb +75 -69
  343. data/lib/wx/doc/gen/pg/property_grid_manager.rb +51 -54
  344. data/lib/wx/doc/gen/pg/property_grid_page.rb +22 -30
  345. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +17 -26
  346. data/lib/wx/doc/gen/picker_base.rb +17 -16
  347. data/lib/wx/doc/gen/platform_info.rb +180 -20
  348. data/lib/wx/doc/gen/popup_window.rb +8 -8
  349. data/lib/wx/doc/gen/progress_dialog.rb +3 -3
  350. data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -18
  351. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +2 -2
  352. data/lib/wx/doc/gen/prt/preview_frame.rb +18 -2
  353. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
  354. data/lib/wx/doc/gen/prt/print_data.rb +68 -62
  355. data/lib/wx/doc/gen/prt/print_dialog.rb +4 -4
  356. data/lib/wx/doc/gen/prt/printer.rb +44 -49
  357. data/lib/wx/doc/gen/query_layout_info_event.rb +6 -5
  358. data/lib/wx/doc/gen/radio_box.rb +21 -19
  359. data/lib/wx/doc/gen/radio_button.rb +13 -11
  360. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +67 -67
  361. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +38 -20
  362. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +5 -5
  363. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +22 -15
  364. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +6 -6
  365. data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -11
  366. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +14 -16
  367. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +5 -5
  368. data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -12
  369. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +24 -22
  370. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +5 -5
  371. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +17 -15
  372. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +6 -6
  373. data/lib/wx/doc/gen/rearrange_ctrl.rb +60 -0
  374. data/lib/wx/doc/gen/rearrange_list.rb +99 -0
  375. data/lib/wx/doc/gen/region.rb +35 -43
  376. data/lib/wx/doc/gen/region_iterator.rb +3 -3
  377. data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
  378. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +626 -1538
  379. data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +37 -0
  380. data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +525 -0
  381. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +488 -503
  382. data/lib/wx/doc/gen/rtc/rich_text_event.rb +31 -12
  383. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +18 -18
  384. data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +282 -0
  385. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +23 -19
  386. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +9 -18
  387. data/lib/wx/doc/gen/rtc/rich_text_image.rb +328 -0
  388. data/lib/wx/doc/gen/rtc/rich_text_object.rb +2849 -0
  389. data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1174 -0
  390. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +29 -29
  391. data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
  392. data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
  393. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +3 -3
  394. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +34 -37
  395. data/lib/wx/doc/gen/sash_event.rb +8 -6
  396. data/lib/wx/doc/gen/sash_layout_window.rb +13 -11
  397. data/lib/wx/doc/gen/sash_window.rb +14 -9
  398. data/lib/wx/doc/gen/scroll_bar.rb +33 -12
  399. data/lib/wx/doc/gen/scrolled_canvas.rb +49 -37
  400. data/lib/wx/doc/gen/scrolled_control.rb +49 -37
  401. data/lib/wx/doc/gen/scrolled_window.rb +49 -37
  402. data/lib/wx/doc/gen/search_ctrl.rb +20 -13
  403. data/lib/wx/doc/gen/simplebook.rb +7 -7
  404. data/lib/wx/doc/gen/single_choice_dialog.rb +5 -4
  405. data/lib/wx/doc/gen/sizer.rb +69 -73
  406. data/lib/wx/doc/gen/sizer_item.rb +5 -5
  407. data/lib/wx/doc/gen/slider.rb +51 -18
  408. data/lib/wx/doc/gen/spin_button.rb +17 -11
  409. data/lib/wx/doc/gen/spin_ctrl.rb +15 -9
  410. data/lib/wx/doc/gen/spin_ctrl_double.rb +146 -0
  411. data/lib/wx/doc/gen/spin_double_event.rb +53 -0
  412. data/lib/wx/doc/gen/spin_event.rb +5 -2
  413. data/lib/wx/doc/gen/splash_screen.rb +16 -12
  414. data/lib/wx/doc/gen/splitter_event.rb +6 -2
  415. data/lib/wx/doc/gen/splitter_window.rb +36 -16
  416. data/lib/wx/doc/gen/static_bitmap.rb +9 -9
  417. data/lib/wx/doc/gen/static_box.rb +41 -37
  418. data/lib/wx/doc/gen/static_box_sizer.rb +13 -10
  419. data/lib/wx/doc/gen/static_line.rb +8 -7
  420. data/lib/wx/doc/gen/static_text.rb +15 -9
  421. data/lib/wx/doc/gen/status_bar.rb +53 -10
  422. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +200 -184
  423. data/lib/wx/doc/gen/stc/styled_text_event.rb +229 -54
  424. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +11 -2
  425. data/lib/wx/doc/gen/svg_file_dc.rb +8 -8
  426. data/lib/wx/doc/gen/system_options.rb +13 -3
  427. data/lib/wx/doc/gen/system_settings.rb +9 -9
  428. data/lib/wx/doc/gen/task_bar_icon.rb +17 -9
  429. data/lib/wx/doc/gen/task_bar_icon_event.rb +3 -3
  430. data/lib/wx/doc/gen/text_attr.rb +67 -61
  431. data/lib/wx/doc/gen/text_ctrl.rb +58 -113
  432. data/lib/wx/doc/gen/text_entry.rb +44 -56
  433. data/lib/wx/doc/gen/text_entry_dialog.rb +23 -23
  434. data/lib/wx/doc/gen/text_validator.rb +3 -19
  435. data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -10
  436. data/lib/wx/doc/gen/timer.rb +13 -9
  437. data/lib/wx/doc/gen/timer_event.rb +19 -26
  438. data/lib/wx/doc/gen/tip_provider.rb +3 -3
  439. data/lib/wx/doc/gen/toggle_button.rb +10 -9
  440. data/lib/wx/doc/gen/tool_bar.rb +71 -61
  441. data/lib/wx/doc/gen/tool_tip.rb +2 -10
  442. data/lib/wx/doc/gen/toolbook.rb +12 -9
  443. data/lib/wx/doc/gen/top_level_window.rb +53 -113
  444. data/lib/wx/doc/gen/tree_ctrl.rb +83 -33
  445. data/lib/wx/doc/gen/tree_event.rb +24 -3
  446. data/lib/wx/doc/gen/treebook.rb +20 -16
  447. data/lib/wx/doc/gen/ui_action_simulator.rb +20 -19
  448. data/lib/wx/doc/gen/utils.rb +20 -14
  449. data/lib/wx/doc/gen/v_list_box.rb +11 -11
  450. data/lib/wx/doc/gen/v_scrolled_window.rb +9 -9
  451. data/lib/wx/doc/gen/validator.rb +10 -8
  452. data/lib/wx/doc/gen/variant.rb +56 -119
  453. data/lib/wx/doc/gen/window.rb +314 -224
  454. data/lib/wx/doc/gen/window_dc.rb +1 -1
  455. data/lib/wx/doc/gen/with_images.rb +2 -2
  456. data/lib/wx/doc/gen/wizard.rb +21 -8
  457. data/lib/wx/doc/gen/wizard_event.rb +11 -4
  458. data/lib/wx/doc/gen/wizard_page.rb +3 -3
  459. data/lib/wx/doc/gen/wizard_page_simple.rb +8 -8
  460. data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
  461. data/lib/wx/doc/gen/xml_node.rb +13 -13
  462. data/lib/wx/doc/gen/xml_resource.rb +24 -21
  463. data/lib/wx/doc/graphics_context.rb +59 -39
  464. data/lib/wx/doc/grid/grid.rb +16 -1
  465. data/lib/wx/doc/hboxsizer.rb +33 -0
  466. data/lib/wx/doc/help_controller.rb +6 -0
  467. data/lib/wx/doc/html/html_help_controller.rb +6 -0
  468. data/lib/wx/doc/icon.rb +13 -5
  469. data/lib/wx/doc/id_helper.rb +6 -0
  470. data/lib/wx/doc/image.rb +50 -12
  471. data/lib/wx/doc/list_ctrl.rb +38 -0
  472. data/lib/wx/doc/log.rb +45 -0
  473. data/lib/wx/doc/memory_dc.rb +6 -0
  474. data/lib/wx/doc/mirror_dc.rb +6 -0
  475. data/lib/wx/doc/pen.rb +6 -0
  476. data/lib/wx/doc/pg/events.rb +6 -0
  477. data/lib/wx/doc/pg/pg_property.rb +17 -0
  478. data/lib/wx/doc/pg/pgeditor.rb +6 -0
  479. data/lib/wx/doc/pg/property_grid.rb +6 -0
  480. data/lib/wx/doc/pg/property_grid_interface.rb +6 -0
  481. data/lib/wx/doc/progress_dialog.rb +6 -0
  482. data/lib/wx/doc/prt/page_setup_dialog.rb +6 -0
  483. data/lib/wx/doc/prt/print_data.rb +6 -0
  484. data/lib/wx/doc/prt/print_dialog.rb +6 -0
  485. data/lib/wx/doc/prt/printer.rb +6 -0
  486. data/lib/wx/doc/prt/printer_dc.rb +8 -2
  487. data/lib/wx/doc/radio_box.rb +6 -0
  488. data/lib/wx/doc/rbn/ribbon_bar.rb +6 -0
  489. data/lib/wx/doc/rbn/ribbon_button_bar.rb +6 -0
  490. data/lib/wx/doc/rbn/ribbon_gallery.rb +6 -0
  491. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +6 -0
  492. data/lib/wx/doc/region_iterator.rb +6 -0
  493. data/lib/wx/doc/rtc/richtext_buffer.rb +28 -0
  494. data/lib/wx/doc/rtc/richtext_formatting_dialog.rb +68 -0
  495. data/lib/wx/doc/rtc/richtext_printing.rb +6 -0
  496. data/lib/wx/doc/rtc/richtext_style_sheet.rb +20 -0
  497. data/lib/wx/doc/scaled_dc.rb +7 -1
  498. data/lib/wx/doc/screen_dc.rb +6 -0
  499. data/lib/wx/doc/stock_objects.rb +6 -0
  500. data/lib/wx/doc/stream.rb +6 -0
  501. data/lib/wx/doc/svg_file_dc.rb +6 -0
  502. data/lib/wx/doc/system_settings.rb +6 -0
  503. data/lib/wx/doc/text_validator.rb +18 -0
  504. data/lib/wx/doc/textctrl.rb +89 -0
  505. data/lib/wx/doc/tree_event.rb +20 -0
  506. data/lib/wx/doc/treebook.rb +6 -0
  507. data/lib/wx/doc/v_list_box.rb +6 -0
  508. data/lib/wx/doc/variant.rb +6 -0
  509. data/lib/wx/doc/vboxsizer.rb +33 -0
  510. data/lib/wx/doc/window.rb +6 -0
  511. data/lib/wx/doc/window_disabler.rb +6 -0
  512. data/lib/wx/doc/xml_resource.rb +8 -0
  513. data/lib/wx/global_const.rb +4 -1
  514. data/lib/wx/grid/grid.rb +23 -3
  515. data/lib/wx/grid/keyword_defs.rb +8 -1
  516. data/lib/wx/grid/require.rb +4 -1
  517. data/lib/wx/grid.rb +4 -1
  518. data/lib/wx/helpers.rb +8 -1
  519. data/lib/wx/html/htmlhelpcontroller.rb +29 -3
  520. data/lib/wx/html/htmlwindow.rb +23 -12
  521. data/lib/wx/html/keyword_defs.rb +8 -1
  522. data/lib/wx/html/require.rb +4 -1
  523. data/lib/wx/html/simple_html_listbox.rb +3 -0
  524. data/lib/wx/html.rb +4 -1
  525. data/lib/wx/keyword_ctors.rb +22 -3
  526. data/lib/wx/keyword_defs.rb +55 -3
  527. data/lib/wx/pg/events.rb +4 -1
  528. data/lib/wx/pg/keyword_defs.rb +8 -1
  529. data/lib/wx/pg/pg_editor.rb +3 -0
  530. data/lib/wx/pg/pg_properties.rb +4 -1
  531. data/lib/wx/pg/pg_property.rb +18 -5
  532. data/lib/wx/pg/property_grid.rb +4 -1
  533. data/lib/wx/pg/property_grid_interface.rb +3 -0
  534. data/lib/wx/pg/require.rb +4 -1
  535. data/lib/wx/pg.rb +4 -1
  536. data/lib/wx/prt/keyword_defs.rb +8 -1
  537. data/lib/wx/prt/page_setup_dialog.rb +3 -0
  538. data/lib/wx/prt/previewframe.rb +5 -0
  539. data/lib/wx/prt/require.rb +4 -1
  540. data/lib/wx/prt.rb +4 -1
  541. data/lib/wx/rbn/events.rb +4 -1
  542. data/lib/wx/rbn/keyword_defs.rb +8 -1
  543. data/lib/wx/rbn/require.rb +5 -1
  544. data/lib/wx/rbn/ribbon_art_provider.rb +3 -1
  545. data/lib/wx/rbn/ribbon_bar.rb +3 -0
  546. data/lib/wx/rbn/ribbon_button_bar.rb +3 -0
  547. data/lib/wx/rbn/ribbon_control.rb +3 -0
  548. data/lib/wx/rbn/ribbon_gallery.rb +10 -0
  549. data/lib/wx/rbn/ribbon_page.rb +3 -0
  550. data/lib/wx/rbn/ribbon_panel.rb +3 -0
  551. data/lib/wx/rbn/ribbon_tool_bar.rb +3 -0
  552. data/lib/wx/rbn.rb +4 -1
  553. data/lib/wx/rtc/ext.rb +4 -1
  554. data/lib/wx/rtc/keyword_defs.rb +18 -7
  555. data/lib/wx/rtc/require.rb +8 -1
  556. data/lib/wx/rtc/richtext_buffer.rb +36 -0
  557. data/lib/wx/rtc/richtext_formatting_dialog.rb +88 -0
  558. data/lib/wx/rtc/richtext_style_organiser_dialog.rb +46 -0
  559. data/lib/wx/rtc/symbol_picker_dialog.rb +47 -0
  560. data/lib/wx/rtc.rb +5 -1
  561. data/lib/wx/stc/keyword_defs.rb +8 -1
  562. data/lib/wx/stc/require.rb +4 -1
  563. data/lib/wx/stc.rb +4 -1
  564. data/lib/wx/version.rb +5 -1
  565. data/lib/wx/wxruby/base.rb +4 -1
  566. data/lib/wx/wxruby/cmd/sampler.rb +4 -1
  567. data/lib/wx/wxruby/cmd/test.rb +4 -1
  568. data/lib/wx.rb +4 -1
  569. data/lib/wxruby_aui.so +0 -0
  570. data/lib/wxruby_core.so +0 -0
  571. data/lib/wxruby_grid.so +0 -0
  572. data/lib/wxruby_html.so +0 -0
  573. data/lib/wxruby_pg.so +0 -0
  574. data/lib/wxruby_prt.so +0 -0
  575. data/lib/wxruby_rbn.so +0 -0
  576. data/lib/wxruby_rtc.so +0 -0
  577. data/lib/wxruby_stc.so +0 -0
  578. data/rakelib/install.rb +4 -1
  579. data/rakelib/lib/config/cygwin.rb +4 -1
  580. data/rakelib/lib/config/linux.rb +4 -1
  581. data/rakelib/lib/config/macosx.rb +5 -2
  582. data/rakelib/lib/config/mingw.rb +4 -1
  583. data/rakelib/lib/config/netbsd.rb +4 -1
  584. data/rakelib/lib/config/unixish.rb +10 -7
  585. data/rakelib/lib/config.rb +7 -2
  586. data/rakelib/lib/ext/enum_chain.rb +4 -1
  587. data/rakelib/prepost.rake +4 -1
  588. data/rakelib/prepost.rb +4 -1
  589. data/samples/aui/aui.rb +8 -3
  590. data/samples/bigdemo/bigdemo.rb +9 -2
  591. data/samples/bigdemo/run.rb +9 -2
  592. data/samples/bigdemo/utils.rb +9 -1
  593. data/samples/calendar/calendar.rb +9 -4
  594. data/samples/caret/caret.rb +8 -3
  595. data/samples/controls/books.rb +8 -2
  596. data/samples/controls/controls.rb +33 -77
  597. data/samples/controls/get_item_sample.rb +8 -2
  598. data/samples/controls/htlbox.rb +10 -3
  599. data/samples/dialogs/dialogs.rb +9 -4
  600. data/samples/dialogs/wizard.rb +8 -3
  601. data/samples/dragdrop/dragdrop.rb +8 -3
  602. data/samples/drawing/bitmap.rb +8 -3
  603. data/samples/drawing/bitmap_image.rb +8 -3
  604. data/samples/drawing/graphics_drawing.rb +44 -33
  605. data/samples/drawing/image_prt.rb +8 -2
  606. data/samples/drawing/maths_images.rb +8 -3
  607. data/samples/drawing/rmagic_bitmap_image.rb +8 -3
  608. data/samples/etc/choice.rb +8 -3
  609. data/samples/etc/miniframe.rb +8 -3
  610. data/samples/etc/sash.rb +8 -3
  611. data/samples/etc/scrollwin.rb +8 -3
  612. data/samples/etc/system_settings.rb +8 -3
  613. data/samples/event/activation.rb +8 -3
  614. data/samples/event/event.rb +8 -3
  615. data/samples/event/threaded.rb +8 -3
  616. data/samples/event/update_ui_event.rb +8 -3
  617. data/samples/grid/grid.rb +9 -3
  618. data/samples/grid/gridtablebase.rb +8 -3
  619. data/samples/html/html.rb +8 -3
  620. data/samples/mdi/mdi.rb +8 -3
  621. data/samples/minimal/minimal.rb +8 -3
  622. data/samples/minimal/nothing.rb +8 -3
  623. data/samples/printing/printing.rb +8 -3
  624. data/samples/printing/printing2.rb +8 -2
  625. data/samples/propgrid/propgrid.rb +4 -1
  626. data/samples/propgrid/propgrid_minimal.rb +4 -2
  627. data/samples/propgrid/sample_props.rb +4 -1
  628. data/samples/ribbon/ribbon.rb +4 -1
  629. data/samples/sampler/editor.rb +4 -1
  630. data/samples/sampler/ext.rb +4 -1
  631. data/samples/sampler/sample.rb +13 -4
  632. data/samples/sampler/stc_editor.rb +4 -1
  633. data/samples/sampler/txt_editor.rb +4 -1
  634. data/samples/sampler.rb +11 -3
  635. data/samples/splash/splash.rb +4 -2
  636. data/samples/text/art/richtext/alignleft.xpm +24 -0
  637. data/samples/text/art/richtext/alignright.xpm +24 -0
  638. data/samples/text/art/richtext/bold.xpm +24 -0
  639. data/samples/text/art/richtext/centre.xpm +24 -0
  640. data/samples/text/art/richtext/copy.xpm +45 -0
  641. data/samples/text/art/richtext/cut.xpm +47 -0
  642. data/samples/text/art/richtext/font.xpm +25 -0
  643. data/samples/text/art/richtext/idea.xpm +47 -0
  644. data/samples/text/art/richtext/indentless.xpm +25 -0
  645. data/samples/text/art/richtext/indentmore.xpm +25 -0
  646. data/samples/text/art/richtext/italic.xpm +25 -0
  647. data/samples/text/art/richtext/open.xpm +58 -0
  648. data/samples/text/art/richtext/paste.xpm +47 -0
  649. data/samples/text/art/richtext/redo.xpm +59 -0
  650. data/samples/text/art/richtext/save.xpm +43 -0
  651. data/samples/text/art/richtext/smiley.xpm +42 -0
  652. data/samples/text/art/richtext/underline.xpm +25 -0
  653. data/samples/text/art/richtext/undo.xpm +59 -0
  654. data/samples/text/art/richtext/zebra.xpm +409 -0
  655. data/samples/text/rich_textctrl.rb +8 -3
  656. data/samples/text/richtext.rb +1824 -0
  657. data/samples/text/scintilla.rb +8 -3
  658. data/samples/text/textctrl.rb +21 -4
  659. data/samples/text/tn_richtext.png +0 -0
  660. data/samples/text/unicode.rb +9 -4
  661. data/samples/treectrl/treectrl.rb +10 -5
  662. data/samples/xrc/custom_xrc_sample.rb +8 -3
  663. data/samples/xrc/xrc_sample.rb +8 -3
  664. data/tests/art/test_art/bitmap/wxruby-128x128.png +0 -0
  665. data/tests/art/test_art/bitmap/wxruby-256x256.png +0 -0
  666. data/tests/art/test_art/bitmap/wxruby-64x64.png +0 -0
  667. data/tests/lib/item_container_tests.rb +3 -0
  668. data/tests/lib/text_entry_tests.rb +3 -0
  669. data/tests/lib/wxapp_runner.rb +3 -0
  670. data/tests/lib/wxframe_runner.rb +81 -3
  671. data/tests/test_app_event_filter.rb +3 -0
  672. data/tests/test_app_traits.rb +33 -0
  673. data/tests/test_art.rb +31 -0
  674. data/tests/test_art_provider.rb +3 -0
  675. data/tests/test_aui.rb +65 -0
  676. data/tests/test_basic.rb +5 -1
  677. data/tests/test_box_sizer.rb +164 -0
  678. data/tests/test_clipboard.rb +3 -0
  679. data/tests/test_config.rb +150 -0
  680. data/tests/test_dc.rb +3 -0
  681. data/tests/test_dialog.rb +3 -0
  682. data/tests/test_event_handling.rb +3 -0
  683. data/tests/test_events.rb +3 -0
  684. data/tests/test_ext_controls.rb +286 -3
  685. data/tests/test_file_dialog.rb +55 -0
  686. data/tests/test_font.rb +8 -5
  687. data/tests/test_gdi_object.rb +3 -0
  688. data/tests/test_geometry.rb +4 -0
  689. data/tests/test_grid_sizer.rb +151 -0
  690. data/tests/test_intl.rb +3 -0
  691. data/tests/test_item_data.rb +3 -0
  692. data/tests/test_list_ctrl.rb +56 -0
  693. data/tests/test_log.rb +226 -0
  694. data/tests/test_proof_check.rb +52 -0
  695. data/tests/test_richtext.rb +204 -0
  696. data/tests/test_std_controls.rb +99 -31
  697. data/tests/test_timer.rb +98 -0
  698. data/tests/test_variant.rb +3 -0
  699. data/tests/test_window.rb +10 -8
  700. data/tests/testapp.rb +4 -0
  701. data/tests/testapp_noframe.rb +4 -0
  702. metadata +87 -3
  703. data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -312,6 +312,7 @@ module Wx::PG
312
312
  # In sections below we cover few related topics.
313
313
  #
314
314
  # - Supplied Ready-to-use Property Classes
315
+ #
315
316
  # - Creating Custom Properties
316
317
  #
317
318
  # == Supplied Ready-to-use Property Classes
@@ -319,24 +320,43 @@ module Wx::PG
319
320
  # Here is a list and short description of supplied fully-functional property classes. They are located in either {Wx::props.h} or {Wx::advprops.h}.
320
321
  #
321
322
  # - {Wx::PG::ArrayStringProperty}
323
+ #
322
324
  # - {Wx::PG::BoolProperty}
325
+ #
323
326
  # - {Wx::PG::ColourProperty}
327
+ #
324
328
  # - {Wx::PG::CursorProperty}
329
+ #
325
330
  # - {Wx::PG::DateProperty}
331
+ #
326
332
  # - {Wx::PG::DirProperty}
333
+ #
327
334
  # - {Wx::PG::EditEnumProperty}
335
+ #
328
336
  # - {Wx::PG::EnumProperty}
337
+ #
329
338
  # - {Wx::PG::FileProperty}
339
+ #
330
340
  # - {Wx::PG::FlagsProperty}
341
+ #
331
342
  # - {Wx::PG::FloatProperty}
343
+ #
332
344
  # - {Wx::PG::FontProperty}
345
+ #
333
346
  # - {Wx::PG::ImageFileProperty}
347
+ #
334
348
  # - {Wx::PG::IntProperty}
349
+ #
335
350
  # - {Wx::PG::LongStringProperty}
351
+ #
336
352
  # - {Wx::PG::MultiChoiceProperty}
353
+ #
337
354
  # - {Wx::PG::PropertyCategory}
355
+ #
338
356
  # - {Wx::PG::StringProperty}
357
+ #
339
358
  # - {Wx::PG::SystemColourProperty}
359
+ #
340
360
  # - {Wx::PG::UIntProperty}
341
361
  #
342
362
  # == wxPropertyCategory
@@ -347,52 +367,28 @@ module Wx::PG
347
367
  #
348
368
  # Simple string property.
349
369
  # Supported special attributes:
350
- # - {Wx::PG::PG_STRING_PASSWORD}: Set to true in order to echo value as asterisks and to use {Wx::TE_PASSWORD} on the editor ({Wx::TextCtrl}).- {Wx::PG::PG_ATTR_AUTOCOMPLETE}: Set to true to enable auto-completion (use a {Wx::ArrayString} value), and is also supported by any property that happens to use a {Wx::TextCtrl}-based editor.
370
+ #
371
+ # - {Wx::PG::PG_STRING_PASSWORD}: Set to true in order to echo value as asterisks and to use {Wx::TE_PASSWORD} on the editor ({Wx::TextCtrl}).
372
+ # - {Wx::PG::PG_ATTR_AUTOCOMPLETE}: Set to true to enable auto-completion (use a {Wx::ArrayString} value), and is also supported by any property that happens to use a {Wx::TextCtrl}-based editor.
351
373
  # {Wx::PG::StringProperty} has a special trait: if it has value of "<composed>", and also has child properties, then its displayed value becomes composition of child property values, similar as with {Wx::PG::FontProperty}, for instance.
352
374
  #
353
375
  # == wxIntProperty
354
376
  #
355
- # It derives from {Wx::PG::NumericProperty} and displays value as a signed long integer. {Wx::PG::IntProperty} seamlessly supports 64-bit integers (i.e. {Wx::LongLong}) on overflow. To safely convert variant to integer, use code like this:
356
- #
357
- # ```
358
- # wxLongLong ll;
359
- # ll << property->GetValue();
360
- #
361
- # // or
362
- # wxLongLong ll = propertyGrid->GetPropertyValueAsLong(property);
363
- # ```
364
- #
365
- # Getting 64-bit value:
366
- # ```
367
- # wxLongLong_t value = pg->GetPropertyValueAsLongLong();
368
- #
369
- # // or
370
- #
371
- # wxLongLong value;
372
- # wxVariant variant = property->GetValue();
373
- # if ( variant.IsType(wxPG_VARIANT_TYPE_LONGLONG) )
374
- # value = variant.GetLongLong();
375
- # else
376
- # value = variant.GetLong();
377
- # ```
378
- #
379
- # Setting 64-bit value:
380
- # ```
381
- # pg->SetPropertyValue(longLongVal);
382
- #
383
- # // or
384
- #
385
- # property->SetValue(WXVARIANT(longLongVal));
386
- # ```
387
- #
377
+ # It derives from {Wx::PG::NumericProperty} and displays value as a signed long integer.
388
378
  # Supported special attributes:
389
- # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX} to specify acceptable value range.- {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
379
+ #
380
+ # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX} to specify acceptable value range.
381
+ # - {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
390
382
  #
391
383
  # == wxUIntProperty
392
384
  #
393
385
  # Like {Wx::PG::IntProperty}, but displays value as unsigned int. To set the prefix used globally, manipulate {Wx::PG::PG_UINT_PREFIX} string attribute. To set the globally used base, manipulate {Wx::PG::PG_UINT_BASE} int attribute. Regardless of current prefix, understands (hex) values starting with both "0x" and "$" (apart from edit mode). Like {Wx::PG::IntProperty}, {Wx::PG::UIntProperty} seamlessly supports 64-bit unsigned integers (i.e. {Wx::ULongLong}). Same {Wx::Variant} safety rules apply.
394
386
  # Supported special attributes:
395
- # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}: Specifies acceptable value range.- {Wx::PG::PG_UINT_BASE}: Defines base. Valid constants are {Wx::PG::PG_BASE_OCT}, {Wx::PG::PG_BASE_DEC}, {Wx::PG::PG_BASE_HEX} and {Wx::PG::PG_BASE_HEXL} (lowercase characters). Arbitrary bases are <b>not</b> supported.- {Wx::PG::PG_UINT_PREFIX}: Defines displayed prefix. Possible values are {Wx::PG::PG_PREFIX_NONE}, {Wx::PG::PG_PREFIX_0x} and {Wx::PG::PG_PREFIX_DOLLAR_SIGN}. Only {Wx::PG::PG_PREFIX_NONE} works with decimal and octal numbers.- {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
387
+ #
388
+ # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}: Specifies acceptable value range.
389
+ # - {Wx::PG::PG_UINT_BASE}: Defines base. Valid constants are {Wx::PG::PG_BASE_OCT}, {Wx::PG::PG_BASE_DEC}, {Wx::PG::PG_BASE_HEX} and {Wx::PG::PG_BASE_HEXL} (lowercase characters). Arbitrary bases are <b>not</b> supported.
390
+ # - {Wx::PG::PG_UINT_PREFIX}: Defines displayed prefix. Possible values are {Wx::PG::PG_PREFIX_NONE}, {Wx::PG::PG_PREFIX_0x} and {Wx::PG::PG_PREFIX_DOLLAR_SIGN}. Only {Wx::PG::PG_PREFIX_NONE} works with decimal and octal numbers.
391
+ # - {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
396
392
  # For example how to use seamless 64-bit integer support, see {Wx::PG::IntProperty} documentation (just use {Wx::ULongLong} instead of {Wx::LongLong}).
397
393
  #
398
394
  # == wxFloatProperty
@@ -400,13 +396,18 @@ module Wx::PG
400
396
  # Like {Wx::PG::StringProperty}, but converts text to a double-precision floating point. Default float-to-text precision is 6 decimals, but this can be changed by modifying {Wx::PG::PG_FLOAT_PRECISION} attribute.
401
397
  # Note that when displaying the value, sign is omitted if the resulting textual representation is effectively zero (for example, -0.0001 with precision of 3 will become 0.0 instead of -0.0). This behaviour is unlike what C standard library does, but should result in better end-user experience in almost all cases.
402
398
  # Supported special attributes:
403
- # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}: Specifies acceptable value range.- {Wx::PG::PG_FLOAT_PRECISION}: Sets the (max) precision used when floating point value is rendered as text. The default -1 means shortest floating-point 6-digit representation.- {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
399
+ #
400
+ # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}: Specifies acceptable value range.
401
+ # - {Wx::PG::PG_FLOAT_PRECISION}: Sets the (max) precision used when floating point value is rendered as text. The default -1 means shortest floating-point 6-digit representation.
402
+ # - {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Sets SpinCtrl editor parameters.
404
403
  #
405
404
  # == wxBoolProperty
406
405
  #
407
406
  # Represents a boolean value. {Wx::Choice} is used as editor control, by the default. {Wx::PG::PG_BOOL_USE_CHECKBOX} attribute can be set to true in order to use check box instead.
408
407
  # Supported special attributes:
409
- # - {Wx::PG::PG_BOOL_USE_CHECKBOX}: If set to true uses check box editor instead of combo box.- {Wx::PG::PG_BOOL_USE_DOUBLE_CLICK_CYCLING}: If set to true cycles combo box instead showing the list.
408
+ #
409
+ # - {Wx::PG::PG_BOOL_USE_CHECKBOX}: If set to true uses check box editor instead of combo box.
410
+ # - {Wx::PG::PG_BOOL_USE_DOUBLE_CLICK_CYCLING}: If set to true cycles combo box instead showing the list.
410
411
  #
411
412
  # == wxLongStringProperty
412
413
  #
@@ -543,129 +544,89 @@ module Wx::PG
543
544
  # - ::{Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the file dialog.
544
545
  # - ::{Wx::PG::PG_FILE_DIALOG_STYLE}: Sets a specific {Wx::FileDialog} style for the file dialog.
545
546
  # - ::{Wx::PG::PG_FILE_WILDCARD}: Sets wildcard (see {Wx::FileDialog} for format details), "All files..." is default.
546
- # - {Wx::PG::PG_FILE_SHOW_FULL_PATH}: Default true. When false, only the file name is shown (i.e. drive and directory are hidden).- {Wx::PG::PG_FILE_SHOW_RELATIVE_PATH}: If set, then the filename is shown relative to the given path string.- {Wx::PG::PG_FILE_INITIAL_PATH}: Sets the initial path of where to look for files.
547
+ #
548
+ # - {Wx::PG::PG_FILE_SHOW_FULL_PATH}: Default true. When false, only the file name is shown (i.e. drive and directory are hidden).
549
+ # - {Wx::PG::PG_FILE_SHOW_RELATIVE_PATH}: If set, then the filename is shown relative to the given path string.
550
+ # - {Wx::PG::PG_FILE_INITIAL_PATH}: Sets the initial path of where to look for files.
547
551
  #
548
552
  # == wxColourProperty
549
553
  #
550
554
  # <b>Useful alternate editor:</b> Choice.
551
555
  # Represents {Wx::Colour}. {Wx::Button} is used to trigger a colour picker dialog. There are various sub-classing opportunities with this class. See below in {Wx::PG::SystemColourProperty} section for details.
552
556
  # Supported special attributes:
557
+ #
553
558
  # - {Wx::PG::PG_COLOUR_HAS_ALPHA}: If set to true allows user to edit the alpha colour component.
554
559
  #
555
560
  # == wxFontProperty
556
561
  #
557
562
  # Represents {Wx::Font}. Various sub-properties are used to edit individual subvalues.
558
563
  # Supported special attributes:
564
+ #
559
565
  # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the font dialog.
560
566
  #
561
567
  # == wxSystemColourProperty
562
568
  #
563
569
  # Represents {Wx::Colour} and a system colour index. {Wx::Choice} is used to edit the value. Drop-down list has color images. Note that value type is {Wx::PG::ColourPropertyValue} instead of {Wx::Colour} (which {Wx::PG::ColourProperty} uses).
564
570
  #
565
- # ```
566
- # class wxColourPropertyValue : public wxObject
567
- # {
568
- # public:
569
- # // An integer value relating to the colour, and which exact
570
- # // meaning depends on the property with which it is used.
571
- # //
572
- # // For wxSystemColourProperty:
573
- # // Any of wxSYS_COLOUR_XXX, or any web-colour ( use wxPG_TO_WEB_COLOUR
574
- # // macro - (currently unsupported) ), or wxPG_COLOUR_CUSTOM.
575
- # wxUint32 m_type;
576
- #
577
- # // Resulting colour. Should be correct regardless of type.
578
- # wxColour m_colour;
579
- # };
580
- # ```
581
- #
582
571
  # In {Wx::PG::SystemColourProperty}, and its derived class {Wx::PG::ColourProperty}, there are various sub-classing features. To set a basic list of colour names, call {Wx::PG::PGProperty#set_choices}.
583
572
  #
584
- # ```
585
- # // Override in derived class to customize how colours are translated
586
- # // to strings.
587
- # virtual wxString ColourToString( const wxColour& col, int index ) const;
588
- #
589
- # // Returns index of entry that triggers colour picker dialog
590
- # // (default is last).
591
- # virtual int GetCustomColourIndex() const;
592
- #
593
- # // Helper function to show the colour dialog
594
- # bool QueryColourFromUser( wxVariant& variant ) const;
595
- #
596
- # // Returns colour for given choice.
597
- # // Default function returns wxSystemSettings::GetColour(index).
598
- # virtual wxColour GetColour( int index ) const;
573
+ # ```ruby
574
+ # # Override in derived class to customize how colours are translated
575
+ # # to strings.
576
+ # def colour_to_string(col, index) end
577
+ #
578
+ # # Returns index of entry that triggers colour picker dialog
579
+ # # (default is last).
580
+ # def get_custom_colour_index; end
581
+ #
582
+ # # Helper function to show the colour dialog
583
+ # def query_colour_from_user(variant) end
584
+ #
585
+ # # Returns colour for given choice.
586
+ # # Default function returns Wx::SystemSettings.get_colour(index).
587
+ # def get_colour(index) end
599
588
  # ```
600
589
  #
601
590
  # == wxCursorProperty
602
591
  #
603
- # Represents a {Wx::Cursor}. {Wx::Choice} is used to edit the value. Drop-down list has cursor images under some ({Wx::MSW}) platforms.
592
+ # Represents a {Wx::Cursor}. {Wx::Choice} is used to edit the value. Drop-down list has cursor images under some (wxMSW) platforms.
604
593
  #
605
594
  # == Creating Custom Properties
606
595
  #
607
596
  # New properties can be created by subclassing {Wx::PG::PGProperty} or one of the provided property classes, and (re)implementing necessary member functions. Below, each virtual member function has ample documentation about its purpose and any odd details which to keep in mind.
608
597
  # Here is a very simple 'template' code:
609
598
  #
610
- # ```
611
- # class MyProperty : public wxPGProperty
612
- # {
613
- # public:
614
- # // Default constructor
615
- # MyProperty() { }
616
- #
617
- # // All arguments of this ctor must have a default value -
618
- # // use wxPG_LABEL for label and name
619
- # MyProperty( const wxString& label = wxPG_LABEL,
620
- # const wxString& name = wxPG_LABEL,
621
- # const wxString& value = wxEmptyString )
622
- # : wxPGProperty(label, name)
623
- # {
624
- # // m_value is wxVariant
625
- # m_value = value;
626
- # }
599
+ # ``` ruby
600
+ # class MyProperty < Wx::PG::PGProperty
627
601
  #
628
- # virtual ~MyProperty() { }
602
+ # # All arguments of this ctor must have a default value -
603
+ # # use Wx::PG::PG_LABEL for label and name
604
+ # def initialize(label = Wx::PG::PG_LABEL, name = Wx::PG::PG_LABEL, value = '')
605
+ # super(label, name)
606
+ # # self.value is Wx::Variant
607
+ # self.value = value
608
+ # end
629
609
  #
630
- # const wxPGEditor* DoGetEditorClass() const
631
- # {
632
- # // Determines editor used by property.
633
- # // You can replace 'TextCtrl' below with any of these
634
- # // builtin-in property editor identifiers: Choice, ComboBox,
635
- # // TextCtrlAndButton, ChoiceAndButton, CheckBox, SpinCtrl,
636
- # // DatePickerCtrl.
637
- # return wxPGEditor_TextCtrl;
638
- # }
610
+ # def do_get_editor_class
611
+ # # Determines editor used by property.
612
+ # # You can replace 'TEXT_CTRL' below with any of these
613
+ # # builtin-in property editor identifiers: CHOICE, COMBO_BOX,
614
+ # # TEXT_CTRL_AND_BUTTON, CHOICE_AND_BUTTON, CHECK_BOX, SPIN_CTRL,
615
+ # # DATE_PICKER_CTRL.
616
+ # return Wx::PG::PG_EDITOR_TEXT_CTRL
617
+ # end
639
618
  #
640
- # virtual wxString ValueToString( wxVariant& value,
641
- # int argFlags ) const
642
- # {
643
- # // TODO: Convert given property value to a string
644
- # }
619
+ # def value_to_string(value, argFlags)
620
+ # # TODO: Convert given property value to a string
621
+ # end
645
622
  #
646
- # virtual bool StringToValue( wxVariant& variant, const wxString& text, int argFlags )
647
- # {
648
- # // TODO: Adapt string to property value.
649
- # }
623
+ # def string_to_value(variant, text, argFlags)
624
+ # # TODO: Adapt string to property value.
625
+ # end
650
626
  #
651
- # protected:
652
- # };
653
- # ```
654
- #
655
- # Since {Wx::PG::PGProperty} derives from {Wx::Object}, you can use standard {Wx::DECLARE_DYNAMIC_CLASS} and {Wx::IMPLEMENT_DYNAMIC_CLASS} macros. From the above example they were omitted for sake of simplicity, and besides, they are only really needed if you need to use {Wx::RTTI} with your property class.
656
- # You can change the 'value type' of a property by simply assigning different type of variant with SetValue. <b>It is mandatory to implement {Wx::VariantData} class for all data types used as property values.</b> You can use macros declared in {Wx::PG::PropertyGrid} headers. For instance:
657
- #
658
- # ```
659
- # // In header file:
660
- # // (If you need to have export declaration, use version of macros
661
- # // with _EXPORTED postfix)
662
- # WX_PG_DECLARE_VARIANT_DATA(MyDataClass)
663
- #
664
- # // In sources file:
665
- # WX_PG_IMPLEMENT_VARIANT_DATA(MyDataClass)
666
- #
667
- # // Or, if you don't have valid == operator:
668
- # WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(MyDataClass)
627
+ # protected
628
+ # # ...
629
+ # end
669
630
  # ```
670
631
  #
671
632
  # ===
@@ -689,7 +650,9 @@ module Wx::PG
689
650
  class PGProperty < Object
690
651
 
691
652
  # This virtual function is called after m_value has been set.
692
- # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::PGProperty#on_set_value} will not be called.- m_value may be of any variant type. Typically properties internally support only one variant type, and as such {Wx::PG::PGProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
653
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::PGProperty#on_set_value} will not be called.
654
+ # - m_value may be of any variant type. Typically properties internally support only one variant type, and as such {Wx::PG::PGProperty#on_set_value} provides a good opportunity to convert supported values into internal type.
655
+ # - Default implementation does nothing.
693
656
  # @return [void]
694
657
  def on_set_value; end
695
658
 
@@ -702,8 +665,8 @@ module Wx::PG
702
665
  #
703
666
  # - Default implementation always returns true.
704
667
  # @param value [Wx::Variant]
705
- # @param validationInfo [Wx::PGValidationInfo]
706
- # @return [true,false]
668
+ # @param validationInfo [Wx::PG::PGValidationInfo]
669
+ # @return [Boolean]
707
670
  def validate_value(value, validationInfo) end
708
671
 
709
672
  # Converts text into {Wx::Variant} value appropriate for this property.
@@ -715,17 +678,20 @@ module Wx::PG
715
678
  # @param variant [Wx::Variant] On function entry this is the old value (should not be {Wx::NullVariant} in normal cases). Translated value must be assigned back to it.
716
679
  # @param text [String] Text to be translated into variant.
717
680
  # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one (they may be different). If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, text is interpreted as a part of composite property string value (as generated by {Wx::PG::PGProperty#value_to_string} called with this same flag).
718
- # @return [true,false]
681
+ # @return [Boolean]
719
682
  def string_to_value(variant, text, argFlags=0) end
720
683
 
721
684
  # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
722
685
  # Returns true if resulting {Wx::Variant} value was different.
723
686
  #
724
- # - If property is not supposed to use choice or spinctrl or other editor with int-based value, it is not necessary to implement this method.- Default implementation simply assign given int to m_value.- If property uses choice control, and displays a dialog on some choice items, then it is preferred to display that dialog in IntToValue instead of OnEvent.- You might want to take into account that m_value is Mull variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
687
+ # - If property is not supposed to use choice or spinctrl or other editor with int-based value, it is not necessary to implement this method.
688
+ # - Default implementation simply assign given int to m_value.
689
+ # - If property uses choice control, and displays a dialog on some choice items, then it is preferred to display that dialog in IntToValue instead of OnEvent.
690
+ # - You might want to take into account that m_value is Mull variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
725
691
  # @param variant [Wx::Variant] On function entry this is the old value (should not be {Wx::NullVariant} in normal cases). Translated value must be assigned back to it.
726
692
  # @param number [Integer] Integer to be translated into variant.
727
693
  # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
728
- # @return [true,false]
694
+ # @return [Boolean]
729
695
  def int_to_value(variant, number, argFlags=0) end
730
696
 
731
697
  # Converts property value into a text representation.
@@ -741,7 +707,7 @@ module Wx::PG
741
707
  # true if value was changed.
742
708
  # @param text [String] String to get the value from.
743
709
  # @param flags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, the function sets complete, storable value instead of displayable one (they may be different). {Wx::PG::PG_MISC_ARG_FLAGS::PG_PROGRAMMATIC_VALUE} flag is used to indicate that value is being set programmatically (i.e. operation is not caused by user input). If {Wx::PG::PG_MISC_ARG_FLAGS::PG_REPORT_ERROR} is set, a special action should be performed if string couldn't have been successfully converted to the valid value (e.g. a special value can be set in this case).
744
- # @return [true,false]
710
+ # @return [Boolean]
745
711
  def set_value_from_string(text, flags=Wx::PG::PG_MISC_ARG_FLAGS::PG_PROGRAMMATIC_VALUE) end
746
712
  alias_method :value_from_string=, :set_value_from_string
747
713
 
@@ -751,14 +717,16 @@ module Wx::PG
751
717
  # true if value was changed.
752
718
  # @param value [Integer] Int to get the value from.
753
719
  # @param flags [Integer] If has {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE}, then the value given is an actual value and not an index.
754
- # @return [true,false]
720
+ # @return [Boolean]
755
721
  def set_value_from_int(value, flags=0) end
756
722
  alias_method :value_from_int=, :set_value_from_int
757
723
 
758
724
  # Returns size of the custom painted image in front of property.
759
725
  # This method must be overridden to return non-default value if OnCustomPaint is to be called.
760
726
  #
761
- # - Default behaviour is to return {size(0,0)}, which means no image.- Default image width or height is indicated with dimension -1.- You can also return {Wx::PG::PG_DEFAULT_IMAGE_SIZE} which equals {Wx::DEFAULT_SIZE}.
727
+ # - Default behaviour is to return {size(0,0)}, which means no image.
728
+ # - Default image width or height is indicated with dimension -1.
729
+ # - You can also return {Wx::PG::PG_DEFAULT_IMAGE_SIZE} which equals {Wx::DEFAULT_SIZE}.
762
730
  # @param item [Integer] Normally -1, but can be an index to the property's list of items.
763
731
  # @return [Wx::Size]
764
732
  def on_measure_image(item=-1) end
@@ -773,10 +741,10 @@ module Wx::PG
773
741
  # return true if any changes in value should be reported.
774
742
  #
775
743
  # - If property uses choice control, and displays a dialog on some choice items, then it is preferred to display that dialog in IntToValue instead of OnEvent.
776
- # @param propgrid [Wx::PropertyGrid]
744
+ # @param propgrid [Wx::PG::PropertyGrid]
777
745
  # @param wnd_primary [Wx::Window]
778
746
  # @param event [Wx::Event]
779
- # @return [true,false]
747
+ # @return [Boolean]
780
748
  def on_event(propgrid, wnd_primary, event) end
781
749
 
782
750
  # Called after value of a child property has been altered.
@@ -784,31 +752,24 @@ module Wx::PG
784
752
  # Note that this function is usually called at the time that value of this property, or given child property, is still pending for change, and as such, result of {Wx::PG::PGProperty#get_value} or m_value should not be relied on.
785
753
  # Sample pseudo-code implementation:
786
754
  #
787
- # ```
788
- # wxVariant MyProperty::ChildChanged( wxVariant& thisValue,
789
- # int childIndex,
790
- # wxVariant& childValue ) const
791
- # {
792
- # // Acquire reference to actual type of data stored in variant
793
- # // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
794
- # // were used to create the variant class).
795
- # T& data = TFromVariant(thisValue);
796
- #
797
- # // Copy childValue into data.
798
- # switch ( childIndex )
799
- # {
800
- # case 0:
801
- # data.SetSubProp1( childvalue.GetLong() );
802
- # break;
803
- # case 1:
804
- # data.SetSubProp2( childvalue.GetString() );
805
- # break;
806
- # ...
807
- # }
808
- #
809
- # // Return altered data
810
- # return data;
811
- # }
755
+ # ```ruby
756
+ # class MyProperty < Wx::PG::FlagsProperty
757
+ #
758
+ # def child_changed(thisValue, childIndex, childValue)
759
+ # # Acquire reference to actual type of data stored in variant
760
+ # flags = thisValue.object;
761
+ # case childIndex
762
+ # when 0
763
+ # flags.sub_prop1 = childValue.to_i
764
+ # when 1
765
+ # flags.sub_prop2 = childValue.to_s
766
+ # # ...
767
+ # end
768
+ # # return altered data
769
+ # Wx::Variant.new(flags)
770
+ # end
771
+ #
772
+ # end
812
773
  # ```
813
774
  #
814
775
  # Modified value of the whole property.
@@ -819,24 +780,31 @@ module Wx::PG
819
780
  def child_changed(thisValue, childIndex, childValue) end
820
781
 
821
782
  # Returns pointer to an instance of used editor.
822
- # @return [Wx::PGEditor]
783
+ # @return [Wx::PG::PGEditor]
823
784
  def do_get_editor_class; end
824
785
 
825
786
  # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
826
- # Setting validator explicitly via SetPropertyValidator will override this.
827
- # In most situations, code like this should work well (macros are used to maintain one actual validator instance, so on the second call the function exits within the first macro):
787
+ # Setting validator explicitly via #set_property_validator will override this.
788
+ # In most situations, code like this should work well:
828
789
  #
829
- # ```
830
- # wxValidator* wxMyPropertyClass::DoGetValidator () const
831
- # {
832
- # WX_PG_DOGETVALIDATOR_ENTRY()
833
- #
834
- # wxMyValidator* validator = new wxMyValidator(...);
835
- #
836
- # ... prepare validator...
837
- #
838
- # WX_PG_DOGETVALIDATOR_EXIT(validator)
839
- # }
790
+ # ```ruby
791
+ # class MyPropertyClass < Wx::PG::IntProperty
792
+ #
793
+ # class << self
794
+ # def validator
795
+ # @validator ||= MyValidator.new(...)
796
+ # end
797
+ # end
798
+ #
799
+ # # ...
800
+ #
801
+ # def do_get_validator
802
+ # MyPropertyClass.validator
803
+ # end
804
+ #
805
+ # # ...
806
+ #
807
+ # end
840
808
  # ```
841
809
  #
842
810
  # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
@@ -847,27 +815,14 @@ module Wx::PG
847
815
  # If property's {Wx::PG::PGProperty#on_measure_image} returns size that has height != 0 but less than row height ( < 0 has special meanings), {Wx::PG::PropertyGrid} calls this method to draw a custom image in a limited area in front of the editor control or value text/graphics, and if control has drop-down list, then the image is drawn there as well (even in the case {Wx::PG::PGProperty#on_measure_image} returned higher height than row height).
848
816
  # NOTE: Following applies when {Wx::PG::PGProperty#on_measure_image} returns a "flexible" height ( using <code>wxPG_FLEXIBLE_SIZE(W,H)</code> macro), which implies variable height items: If (rect.x+rect.width) is < 0, then this is a measure item call, which means that dc is invalid and only thing that should be done is to set paintdata.m_drawnHeight to the height of the image of item at index paintdata.m_choiceItem. This call may be done even as often as once every drop-down popup show.
849
817
  #
850
- # - You can actually exceed rect width, but if you do so then paintdata.m_drawnWidth must be set to the full width drawn in pixels.- Due to technical reasons, rect's height will be default even if custom height was reported during measure call.- Brush is guaranteed to be default background colour. It has been already used to clear the background of area being painted. It can be modified.- Pen is guaranteed to be 1-wide 'black' (or whatever is the proper colour) pen for drawing framing rectangle. It can be changed as well.
818
+ # - You can actually exceed rect width, but if you do so then paintdata.m_drawnWidth must be set to the full width drawn in pixels.
819
+ # - Due to technical reasons, rect's height will be default even if custom height was reported during measure call.
820
+ # - Brush is guaranteed to be default background colour. It has been already used to clear the background of area being painted. It can be modified.
821
+ # - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper colour) pen for drawing framing rectangle. It can be changed as well.
851
822
  # @see Wx::PG::PGProperty#value_to_string
852
823
  # @param dc [Wx::DC] {Wx::DC} to paint on.
853
824
  # @param rect [Wx::Rect] Box reserved for custom graphics. Includes surrounding rectangle, if any. If x+width is < 0, then this is a measure item call (see above).
854
- # @param paintdata [Wx::PGPaintData] {Wx::PG::PGPaintData} structure with much useful data about painted item.
855
- # ```
856
- # struct wxPGPaintData
857
- # {
858
- # // wxPropertyGrid.
859
- # const wxPropertyGrid* m_parent;
860
- #
861
- # // Normally -1, otherwise index to drop-down list item that has to be drawn.
862
- # int m_choiceItem;
863
- #
864
- # // Set to drawn width in OnCustomPaint (optional).
865
- # int m_drawnWidth;
866
- #
867
- # // In a measure item call, set this to the height of item at m_choiceItem index
868
- # int m_drawnHeight;
869
- # };
870
- # ```
825
+ # @param paintdata [Wx::PG::PGPaintData] {Wx::PG::PGPaintData} structure with much useful data about painted item.
871
826
  # @return [void]
872
827
  def on_custom_paint(dc, rect, paintdata) end
873
828
 
@@ -889,7 +844,7 @@ module Wx::PG
889
844
  # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
890
845
  # @param name [String]
891
846
  # @param value [Wx::Variant]
892
- # @return [true,false]
847
+ # @return [Boolean]
893
848
  def do_set_attribute(name, value) end
894
849
 
895
850
  # Returns value of an attribute.
@@ -901,7 +856,7 @@ module Wx::PG
901
856
 
902
857
  # Returns instance of a new {Wx::PG::PGEditorDialogAdapter} instance, which is used when user presses the (optional) button next to the editor control;.
903
858
  # Default implementation returns NULL (i.e. no action is generated when button is pressed).
904
- # @return [Wx::PGEditorDialogAdapter]
859
+ # @return [Wx::PG::PGEditorDialogAdapter]
905
860
  def get_editor_dialog; end
906
861
  alias_method :editor_dialog, :get_editor_dialog
907
862
 
@@ -920,7 +875,7 @@ module Wx::PG
920
875
 
921
876
  # Adds a private child property.
922
877
  # If you use this instead of {Wx::PG::PropertyGridInterface#insert} or {Wx::PG::PropertyGridInterface#append_in}, then property's parental type will automatically be set up to {Wx::PG::PGPropertyFlags::PG_PROP_AGGREGATE}. In other words, all properties of this property will become private.
923
- # @param prop [Wx::PGProperty]
878
+ # @param prop [Wx::PG::PGProperty]
924
879
  # @return [void]
925
880
  def add_private_child(prop) end
926
881
 
@@ -937,30 +892,30 @@ module Wx::PG
937
892
  # {Wx::PG::PropertyGrid} is not automatically refreshed by this function.
938
893
  # @see Wx::PG::PGProperty#insert_child
939
894
  # @see Wx::PG::PGProperty#add_private_child
940
- # @param childProperty [Wx::PGProperty]
895
+ # @param childProperty [Wx::PG::PGProperty]
941
896
  # @return [Wx::PG::PGProperty]
942
897
  def append_child(childProperty) end
943
898
 
944
899
  # Determines, recursively, if all children are not unspecified.
945
900
  # @param pendingList [Wx::Variant] Assumes members in this {Wx::Variant} list as pending replacement values.
946
- # @return [true,false]
901
+ # @return [Boolean]
947
902
  def are_all_children_specified(pendingList=nil) end
948
903
 
949
904
  # Returns true if children of this property are component values (for instance, points size, face name, and is_underlined are component values of a font).
950
- # @return [true,false]
905
+ # @return [Boolean]
951
906
  def are_children_components; end
952
907
 
953
908
  # Sets or clears given property flag.
954
909
  # Mainly for internal use.
955
910
  # Setting a property flag never has any side-effect, and is intended almost exclusively for internal use. So, for example, if you want to disable a property, call
956
- # ```
957
- # Enable(false)
911
+ # ```ruby
912
+ # enable(false)
958
913
  # ```
959
914
  # instead of setting {Wx::PG::PGPropertyFlags::PG_PROP_DISABLED} flag.
960
915
  # @see Wx::PG::PGProperty#has_flag
961
916
  # @see GetFlags()
962
- # @param flag [PGPropertyFlags]
963
- # @param set [true,false]
917
+ # @param flag [Wx::PGPropertyFlags]
918
+ # @param set [Boolean]
964
919
  # @return [void]
965
920
  def change_flag(flag, set) end
966
921
 
@@ -977,13 +932,13 @@ module Wx::PG
977
932
  # Enables or disables the property.
978
933
  # Disabled property usually appears as having grey text.
979
934
  # @see Wx::PG::PropertyGridInterface#enable_property
980
- # @param enable [true,false] If false, property is disabled instead.
935
+ # @param enable [Boolean] If false, property is disabled instead.
981
936
  # @return [void]
982
937
  def enable(enable=true) end
983
938
 
984
939
  # Call to enable or disable usage of common value (integer value that can be selected for properties instead of their normal values) for this property.
985
940
  # Common values are disabled by the default for all properties.
986
- # @param enable [true,false]
941
+ # @param enable [Boolean]
987
942
  # @return [void]
988
943
  def enable_common_value(enable=true) end
989
944
 
@@ -1029,6 +984,12 @@ module Wx::PG
1029
984
  def get_attribute_as_double(name, defVal) end
1030
985
  alias_method :attribute_as_double, :get_attribute_as_double
1031
986
 
987
+ # Returns map-like storage of property's attributes.
988
+ # If extra style {Wx::PG::PG_EX_WINDOW_STYLES::PG_EX_WRITEONLY_BUILTIN_ATTRIBUTES} is set, then builtin-attributes are not included in the storage.
989
+ # @return [Wx::PGAttributeStorage]
990
+ def get_attributes; end
991
+ alias_method :attributes, :get_attributes
992
+
1032
993
  # Returns attributes as list {Wx::Variant}.
1033
994
  # If extra style {Wx::PG::PG_EX_WINDOW_STYLES::PG_EX_WRITEONLY_BUILTIN_ATTRIBUTES} is set, then builtin-attributes are not included in the list.
1034
995
  # @return [Wx::Variant]
@@ -1038,7 +999,7 @@ module Wx::PG
1038
999
  # Returns editor used for given column.
1039
1000
  # NULL for no editor.
1040
1001
  # @param column [Integer]
1041
- # @return [Wx::PGEditor]
1002
+ # @return [Wx::PG::PGEditor]
1042
1003
  def get_column_editor(column) end
1043
1004
  alias_method :column_editor, :get_column_editor
1044
1005
 
@@ -1051,7 +1012,7 @@ module Wx::PG
1051
1012
  # Returns {Wx::PG::PGCell} of given column.
1052
1013
  # const version of this member function returns 'default' {Wx::PG::PGCell} object if the property itself didn't hold cell data.
1053
1014
  # @param column [Integer]
1054
- # @return [Wx::PGCell]
1015
+ # @return [Wx::PG::PGCell]
1055
1016
  def get_cell_or_default(column) end
1056
1017
  alias_method :cell_or_default, :get_cell_or_default
1057
1018
 
@@ -1074,7 +1035,7 @@ module Wx::PG
1074
1035
  alias_method :children_height, :get_children_height
1075
1036
 
1076
1037
  # Returns read-only reference to property's list of choices.
1077
- # @return [Wx::PGChoices]
1038
+ # @return [Wx::PG::PGChoices]
1078
1039
  def get_choices; end
1079
1040
  alias_method :choices, :get_choices
1080
1041
 
@@ -1111,7 +1072,7 @@ module Wx::PG
1111
1072
 
1112
1073
  # Returns {Wx::PG::PGEditor} that will be used and created when property becomes selected.
1113
1074
  # Returns more accurate value than {Wx::PG::PGProperty#do_get_editor_class}.
1114
- # @return [Wx::PGEditor]
1075
+ # @return [Wx::PG::PGEditor]
1115
1076
  def get_editor_class; end
1116
1077
  alias_method :editor_class, :get_editor_class
1117
1078
 
@@ -1121,12 +1082,12 @@ module Wx::PG
1121
1082
  alias_method :hint_text, :get_hint_text
1122
1083
 
1123
1084
  # Returns property grid where property lies.
1124
- # @return [Wx::PropertyGrid]
1085
+ # @return [Wx::PG::PropertyGrid]
1125
1086
  def get_grid; end
1126
1087
  alias_method :grid, :get_grid
1127
1088
 
1128
1089
  # Returns owner {Wx::PG::PropertyGrid}, but only if one is currently on a page displaying this property.
1129
- # @return [Wx::PropertyGrid]
1090
+ # @return [Wx::PG::PropertyGrid]
1130
1091
  def get_grid_if_displayed; end
1131
1092
  alias_method :grid_if_displayed, :get_grid_if_displayed
1132
1093
 
@@ -1139,7 +1100,7 @@ module Wx::PG
1139
1100
 
1140
1101
  # Gets flags as a'|' delimited string.
1141
1102
  # Note that flag names are not prepended with '{Wx::PG_PROP_}'.
1142
- # @param flagsMask [FlagType] String will only be made to include flags combined by this parameter.
1103
+ # @param flagsMask [Integer] String will only be made to include flags combined by this parameter.
1143
1104
  # @return [String]
1144
1105
  def get_flags_as_string(flagsMask) end
1145
1106
  alias_method :flags_as_string, :get_flags_as_string
@@ -1150,7 +1111,7 @@ module Wx::PG
1150
1111
  alias_method :index_in_parent, :get_index_in_parent
1151
1112
 
1152
1113
  # Returns last visible child property, recursively.
1153
- # @return [Wx::PGProperty]
1114
+ # @return [Wx::PG::PGProperty]
1154
1115
  def get_last_visible_sub_item; end
1155
1116
  alias_method :last_visible_sub_item, :get_last_visible_sub_item
1156
1117
 
@@ -1233,35 +1194,35 @@ module Wx::PG
1233
1194
  # Returns true if property has given flag set.
1234
1195
  #
1235
1196
  # @see propgrid_propflags
1236
- # @param flag [PGPropertyFlags]
1237
- # @return [true,false]
1197
+ # @param flag [Wx::PGPropertyFlags]
1198
+ # @return [Boolean]
1238
1199
  # @overload has_flag(flag)
1239
1200
  # Returns true if property has given flag set.
1240
- # @param flag [FlagType]
1241
- # @return [true,false]
1201
+ # @param flag [Integer]
1202
+ # @return [Boolean]
1242
1203
  def has_flag(*args) end
1243
1204
  alias_method :has_flag?, :has_flag
1244
1205
 
1245
1206
  # Returns true if property has all given flags set.
1246
- # @param flags [FlagType]
1247
- # @return [true,false]
1207
+ # @param flags [Integer]
1208
+ # @return [Boolean]
1248
1209
  def has_flags_exact(flags) end
1249
1210
  alias_method :has_flags_exact?, :has_flags_exact
1250
1211
 
1251
1212
  # Returns true if property has even one visible child.
1252
- # @return [true,false]
1213
+ # @return [Boolean]
1253
1214
  def has_visible_children; end
1254
1215
  alias_method :has_visible_children?, :has_visible_children
1255
1216
 
1256
1217
  # Hides or reveals the property.
1257
- # @param hide [true,false] true for hide, false for reveal.
1218
+ # @param hide [Boolean] true for hide, false for reveal.
1258
1219
  # @param flags [Integer] By default changes are applied recursively. Set this parameter to {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_DONT_RECURSE} to prevent this.
1259
- # @return [true,false]
1220
+ # @return [Boolean]
1260
1221
  def hide(hide, flags=Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_RECURSE) end
1261
1222
 
1262
1223
  # Returns index of given child property.
1263
1224
  # {Wx::NOT_FOUND} if given property is not child of this.
1264
- # @param p [Wx::PGProperty]
1225
+ # @param p [Wx::PG::PGProperty]
1265
1226
  # @return [Integer]
1266
1227
  def index(p) end
1267
1228
 
@@ -1273,7 +1234,7 @@ module Wx::PG
1273
1234
  # @see Wx::PG::PGProperty#append_child
1274
1235
  # @see Wx::PG::PGProperty#add_private_child
1275
1236
  # @param index [Integer]
1276
- # @param childProperty [Wx::PGProperty]
1237
+ # @param childProperty [Wx::PG::PGProperty]
1277
1238
  # @return [Wx::PG::PGProperty]
1278
1239
  def insert_child(index, childProperty) end
1279
1240
 
@@ -1285,51 +1246,51 @@ module Wx::PG
1285
1246
  def insert_choice(label, index, value=Wx::PG::PG_INVALID_VALUE) end
1286
1247
 
1287
1248
  # Returns true if this property is actually a {Wx::PG::PropertyCategory}.
1288
- # @return [true,false]
1249
+ # @return [Boolean]
1289
1250
  def is_category; end
1290
1251
  alias_method :category?, :is_category
1291
1252
 
1292
1253
  # Returns true if property is enabled.
1293
- # @return [true,false]
1254
+ # @return [Boolean]
1294
1255
  def is_enabled; end
1295
1256
  alias_method :enabled?, :is_enabled
1296
1257
 
1297
1258
  # Returns true if property has visible children.
1298
- # @return [true,false]
1259
+ # @return [Boolean]
1299
1260
  def is_expanded; end
1300
1261
  alias_method :expanded?, :is_expanded
1301
1262
 
1302
1263
  # Returns true if this property is actually a {Wx::RootProperty}.
1303
- # @return [true,false]
1264
+ # @return [Boolean]
1304
1265
  def is_root; end
1305
1266
  alias_method :root?, :is_root
1306
1267
 
1307
1268
  # Returns true if this is a sub-property.
1308
- # @return [true,false]
1269
+ # @return [Boolean]
1309
1270
  def is_sub_property; end
1310
1271
  alias_method :sub_property?, :is_sub_property
1311
1272
 
1312
1273
  # Returns true if candidateParent is some parent of this property.
1313
1274
  # Use, for example, to detect if item is inside collapsed section.
1314
- # @param candidateParent [Wx::PGProperty]
1315
- # @return [true,false]
1275
+ # @param candidateParent [Wx::PG::PGProperty]
1276
+ # @return [Boolean]
1316
1277
  def is_some_parent(candidateParent) end
1317
1278
  alias_method :some_parent?, :is_some_parent
1318
1279
 
1319
1280
  # Returns true if property has editable {Wx::TextCtrl} when selected.
1320
1281
  # Although disabled properties do not displayed editor, they still return true here as being disabled is considered a temporary condition (unlike being read-only or having limited editing enabled).
1321
- # @return [true,false]
1282
+ # @return [Boolean]
1322
1283
  def is_text_editable; end
1323
1284
  alias_method :text_editable?, :is_text_editable
1324
1285
 
1325
1286
  # Returns true if property's value is considered unspecified.
1326
1287
  # This usually means that value is Null variant.
1327
- # @return [true,false]
1288
+ # @return [Boolean]
1328
1289
  def is_value_unspecified; end
1329
1290
  alias_method :value_unspecified?, :is_value_unspecified
1330
1291
 
1331
1292
  # Returns true if all parents expanded.
1332
- # @return [true,false]
1293
+ # @return [Boolean]
1333
1294
  def is_visible; end
1334
1295
  alias_method :visible?, :is_visible
1335
1296
 
@@ -1344,7 +1305,7 @@ module Wx::PG
1344
1305
 
1345
1306
  # If property's editor is created this forces its recreation.
1346
1307
  # Useful in SetAttribute etc. Returns true if actually did anything.
1347
- # @return [true,false]
1308
+ # @return [Boolean]
1348
1309
  def recreate_editor; end
1349
1310
 
1350
1311
  # If property's editor is active, then update it's value.
@@ -1365,7 +1326,7 @@ module Wx::PG
1365
1326
 
1366
1327
  # Set if user can change the property's value to unspecified by modifying the value of the editor control (usually by clearing it).
1367
1328
  # Currently, this can work with following properties: {Wx::PG::IntProperty}, {Wx::PG::UIntProperty}, {Wx::PG::FloatProperty}, {Wx::PG::EditEnumProperty}.
1368
- # @param enable [true,false] Whether to enable or disable this behaviour (it is disabled by default).
1329
+ # @param enable [Boolean] Whether to enable or disable this behaviour (it is disabled by default).
1369
1330
  # @return [void]
1370
1331
  def set_auto_unspecified(enable=true) end
1371
1332
  alias_method :auto_unspecified=, :set_auto_unspecified
@@ -1381,7 +1342,7 @@ module Wx::PG
1381
1342
  # @overload set_editor(editor)
1382
1343
  # Sets editor for a property.
1383
1344
  # For custom editors, use pointer you received from {Wx::PG::PropertyGrid.register_editor_class}.
1384
- # @param editor [Wx::PGEditor] For builtin editors, use {Wx::PGEditor_X}, where X is builtin editor's name (TextCtrl, Choice, etc. see {Wx::PG::PGEditor} documentation for full list).
1345
+ # @param editor [Wx::PG::PGEditor] For builtin editors, use {Wx::PGEditor_X}, where X is builtin editor's name (TextCtrl, Choice, etc. see {Wx::PG::PGEditor} documentation for full list).
1385
1346
  # @return [void]
1386
1347
  # @overload set_editor(editorName)
1387
1348
  # Sets editor for a property, by editor name.
@@ -1392,7 +1353,7 @@ module Wx::PG
1392
1353
 
1393
1354
  # Sets cell information for given column.
1394
1355
  # @param column [Integer]
1395
- # @param cell [Wx::PGCell]
1356
+ # @param cell [Wx::PG::PGCell]
1396
1357
  # @return [void]
1397
1358
  def set_cell(column, cell) end
1398
1359
 
@@ -1405,8 +1366,8 @@ module Wx::PG
1405
1366
 
1406
1367
  # Sets new set of choices for the property.
1407
1368
  # This operation deselects the property and clears its value.
1408
- # @param choices [Wx::PGChoices]
1409
- # @return [true,false]
1369
+ # @param choices [Wx::PG::PGChoices]
1370
+ # @return [Boolean]
1410
1371
  def set_choices(choices) end
1411
1372
  alias_method :choices=, :set_choices
1412
1373
 
@@ -1427,15 +1388,15 @@ module Wx::PG
1427
1388
  # Set default value of a property.
1428
1389
  # Synonymous to
1429
1390
  #
1430
- # ```
1431
- # SetAttribute("DefaultValue", value);
1391
+ # ```ruby
1392
+ # set_attribute('DefaultValue', value)
1432
1393
  # ```
1433
1394
  # @param value [Wx::Variant]
1434
1395
  # @return [void]
1435
1396
  def set_default_value(value) end
1436
1397
  alias_method :default_value=, :set_default_value
1437
1398
 
1438
- # @param expanded [true,false]
1399
+ # @param expanded [Boolean]
1439
1400
  # @return [void]
1440
1401
  def set_expanded(expanded) end
1441
1402
  alias_method :expanded=, :set_expanded
@@ -1450,8 +1411,8 @@ module Wx::PG
1450
1411
  # Sets or clears given property flag, recursively.
1451
1412
  # This function is primarily intended for internal use.
1452
1413
  # @see Wx::PG::PGProperty#change_flag
1453
- # @param flag [PGPropertyFlags]
1454
- # @param set [true,false]
1414
+ # @param flag [Wx::PGPropertyFlags]
1415
+ # @param set [Boolean]
1455
1416
  # @return [void]
1456
1417
  def set_flag_recursively(flag, set) end
1457
1418
 
@@ -1462,7 +1423,8 @@ module Wx::PG
1462
1423
  alias_method :help_string=, :set_help_string
1463
1424
 
1464
1425
  # Sets property's label.
1465
- # - Properties under same parent may have same labels. However, property names must still remain unique.- Unlike {Wx::PG::PropertyGridInterface#set_property_label}, this does not automatically update the display.
1426
+ # - Properties under same parent may have same labels. However, property names must still remain unique.
1427
+ # - Unlike {Wx::PG::PropertyGridInterface#set_property_label}, this does not automatically update the display.
1466
1428
  # @param label [String]
1467
1429
  # @return [void]
1468
1430
  def set_label(label) end
@@ -1472,13 +1434,13 @@ module Wx::PG
1472
1434
  # If it is 0, the length is not limited and the text can be as long as it is supported by the underlying native text control widget.
1473
1435
  # Returns true if maximum length was set.
1474
1436
  # @param maxLen [Integer]
1475
- # @return [true,false]
1437
+ # @return [Boolean]
1476
1438
  def set_max_length(maxLen) end
1477
1439
  alias_method :max_length=, :set_max_length
1478
1440
 
1479
1441
  # Sets property's "is it modified?" flag.
1480
1442
  # Affects children recursively.
1481
- # @param modified [true,false]
1443
+ # @param modified [Boolean]
1482
1444
  # @return [void]
1483
1445
  def set_modified_status(modified) end
1484
1446
  alias_method :modified_status=, :set_modified_status
@@ -1551,7 +1513,7 @@ module Wx::PG
1551
1513
 
1552
1514
  # Call with false in {Wx::PG::PGProperty#on_set_value} to cancel value changes after all (i.e.
1553
1515
  # cancel true returned by {Wx::PG::PGProperty#string_to_value} or {Wx::PG::PGProperty#int_to_value}).
1554
- # @param set [true,false]
1516
+ # @param set [Boolean]
1555
1517
  # @return [void]
1556
1518
  def set_was_modified(set=true) end
1557
1519
  alias_method :was_modified=, :set_was_modified
@@ -1563,12 +1525,12 @@ module Wx::PG
1563
1525
  def update_parent_values; end
1564
1526
 
1565
1527
  # Returns true if containing grid uses {Wx::PG::PG_EX_WINDOW_STYLES::PG_EX_AUTO_UNSPECIFIED_VALUES}.
1566
- # @return [true,false]
1528
+ # @return [Boolean]
1567
1529
  def uses_auto_unspecified; end
1568
1530
 
1569
1531
  # Clear cells associated with property.
1570
- # @param ignoreWithFlags [FlagType] Cells will not be cleared for properties having these flags set.
1571
- # @param recursively [true,false] If true, apply this operation recursively in child properties.
1532
+ # @param ignoreWithFlags [Integer] Cells will not be cleared for properties having these flags set.
1533
+ # @param recursively [Boolean] If true, apply this operation recursively in child properties.
1572
1534
  # @return [void]
1573
1535
  def clear_cells(ignoreWithFlags, recursively) end
1574
1536
 
@@ -1590,8 +1552,8 @@ module Wx::PG
1590
1552
  def empty; end
1591
1553
 
1592
1554
  # Returns true if child property is selected.
1593
- # @param recursive [true,false]
1594
- # @return [true,false]
1555
+ # @param recursive [Boolean]
1556
+ # @return [Boolean]
1595
1557
  def is_child_selected(recursive=false) end
1596
1558
  alias_method :child_selected?, :is_child_selected
1597
1559
 
@@ -1609,31 +1571,32 @@ module Wx::PG
1609
1571
  # @overload initialize()
1610
1572
  # Default constructor.
1611
1573
  # It is protected because {Wx::PG::PGProperty} is only a base class for other property classes.
1612
- # @return [PGProperty]
1574
+ # @return [Wx::PG::PGProperty]
1613
1575
  # @overload initialize(label, name)
1614
1576
  # Constructor.
1615
1577
  # It is protected because {Wx::PG::PGProperty} is only a base class for other property classes. Non-abstract property classes should have constructor of this style:
1616
1578
  #
1617
- # ```
1618
- # MyProperty( const wxString& label, const wxString& name, const T& value )
1619
- # : wxPGProperty(label, name)
1620
- # {
1621
- # // Generally recommended way to set the initial value
1622
- # // (as it should work in pretty much 100% of cases).
1623
- # wxVariant variant;
1624
- # variant << value;
1625
- # SetValue(variant);
1626
- #
1627
- # // If has private child properties then create them here.
1628
- # // For example:
1629
- # // AddPrivateChild( new wxStringProperty("Subprop 1",
1630
- # // wxPG_LABEL,
1631
- # // value.GetSubProp1()));
1632
- # }
1579
+ # ```ruby
1580
+ # class WxPointProperty < Wx::PG::PGProperty
1581
+ #
1582
+ # def initialize(label = Wx::PG::PG_LABEL, name = Wx::PG::PG_LABEL, value = Wx::Point.new)
1583
+ # super(label, name)
1584
+ #
1585
+ # # should work in pretty much 100% of cases
1586
+ # self.value = value
1587
+ #
1588
+ # # add private child properties
1589
+ # add_private_child( Wx::PG::IntProperty.new("X", Wx::PG::PG_LABEL,value.x))
1590
+ # add_private_child( Wx::PG::IntProperty.new("Y", Wx::PG::PG_LABEL,value.y))
1591
+ # end
1592
+ #
1593
+ # # ...
1594
+ #
1595
+ # end
1633
1596
  # ```
1634
1597
  # @param label [String]
1635
1598
  # @param name [String]
1636
- # @return [PGProperty]
1599
+ # @return [Wx::PG::PGProperty]
1637
1600
  def initialize(*args) end
1638
1601
 
1639
1602
  end # PGProperty
@@ -1653,17 +1616,17 @@ module Wx::PG
1653
1616
 
1654
1617
  # @overload initialize()
1655
1618
  # Default constructor.
1656
- # @return [PGChoices]
1619
+ # @return [Wx::PG::PGChoices]
1657
1620
  # @overload initialize(a)
1658
1621
  # Copy constructor, uses reference counting.
1659
1622
  # To create a real copy, use {Wx::PG::PGChoices#copy} member function instead.
1660
- # @param a [Wx::PGChoices]
1661
- # @return [PGChoices]
1623
+ # @param a [Wx::PG::PGChoices]
1624
+ # @return [Wx::PG::PGChoices]
1662
1625
  # @overload initialize(labels, values=(Wx::ArrayInt.new()))
1663
1626
  # Constructor.
1664
1627
  # @param labels [Array<String>] Labels for choices.
1665
1628
  # @param values [Array<Integer>] Values for choices. If empty, indexes are used. Otherwise must have at least the same size as labels.
1666
- # @return [PGChoices]
1629
+ # @return [Wx::PG::PGChoices]
1667
1630
  def initialize(*args) end
1668
1631
 
1669
1632
  # @overload add(arr, arrint)
@@ -1675,28 +1638,28 @@ module Wx::PG
1675
1638
  # Adds a single choice item.
1676
1639
  # @param label [String] Label for added choice.
1677
1640
  # @param value [Integer] Value for added choice. If unspecified, index is used.
1678
- # @return [Wx::PGChoiceEntry]
1641
+ # @return [Wx::PG::PGChoiceEntry]
1679
1642
  # @overload add(label, bitmap, value=Wx::PG::PG_INVALID_VALUE)
1680
1643
  # Adds a single item, with bitmap.
1681
1644
  # @param label [String]
1682
1645
  # @param bitmap [Wx::Bitmap]
1683
1646
  # @param value [Integer]
1684
- # @return [Wx::PGChoiceEntry]
1647
+ # @return [Wx::PG::PGChoiceEntry]
1685
1648
  # @overload add(entry)
1686
1649
  # Adds a single item with full entry information.
1687
- # @param entry [Wx::PGChoiceEntry]
1688
- # @return [Wx::PGChoiceEntry]
1650
+ # @param entry [Wx::PG::PGChoiceEntry]
1651
+ # @return [Wx::PG::PGChoiceEntry]
1689
1652
  def add(*args) end
1690
1653
 
1691
1654
  # Adds a single item, sorted.
1692
1655
  # @param label [String]
1693
1656
  # @param value [Integer]
1694
- # @return [Wx::PGChoiceEntry]
1657
+ # @return [Wx::PG::PGChoiceEntry]
1695
1658
  def add_as_sorted(label, value=Wx::PG::PG_INVALID_VALUE) end
1696
1659
 
1697
1660
  # Assigns choices data, using reference counting.
1698
1661
  # To create a real copy, use {Wx::PG::PGChoices#copy} member function instead.
1699
- # @param a [Wx::PGChoices]
1662
+ # @param a [Wx::PG::PGChoices]
1700
1663
  # @return [void]
1701
1664
  def assign(a) end
1702
1665
 
@@ -1705,17 +1668,12 @@ module Wx::PG
1705
1668
  def clear; end
1706
1669
 
1707
1670
  # Returns a real copy of the choices.
1708
- # @return [Wx::PGChoices]
1671
+ # @return [Wx::PG::PGChoices]
1709
1672
  def copy; end
1710
1673
 
1711
1674
  # @return [void]
1712
1675
  def ensure_data; end
1713
1676
 
1714
- # Gets an unsigned number identifying this list.
1715
- # @return [Wx::PGChoicesId]
1716
- def get_id; end
1717
- alias_method :id, :get_id
1718
-
1719
1677
  # Returns label of item.
1720
1678
  # @param ind [Integer]
1721
1679
  # @return [Wx::String]
@@ -1743,7 +1701,7 @@ module Wx::PG
1743
1701
  # Returns array of indices matching given strings.
1744
1702
  # Unmatching strings are added to 'unmatched', if not NULL.
1745
1703
  # @param strings [Array<String>]
1746
- # @param unmatched [Wx::ArrayString]
1704
+ # @param unmatched [Array,nil]
1747
1705
  # @return [Array<Integer>]
1748
1706
  def get_indices_for_strings(strings, unmatched=nil) end
1749
1707
  alias_method :indices_for_strings, :get_indices_for_strings
@@ -1763,28 +1721,23 @@ module Wx::PG
1763
1721
  # @param label [String]
1764
1722
  # @param index [Integer]
1765
1723
  # @param value [Integer]
1766
- # @return [Wx::PGChoiceEntry]
1724
+ # @return [Wx::PG::PGChoiceEntry]
1767
1725
  # @overload insert(entry, index)
1768
1726
  # Inserts a single item with full entry information.
1769
- # @param entry [Wx::PGChoiceEntry]
1727
+ # @param entry [Wx::PG::PGChoiceEntry]
1770
1728
  # @param index [Integer]
1771
- # @return [Wx::PGChoiceEntry]
1729
+ # @return [Wx::PG::PGChoiceEntry]
1772
1730
  def insert(*args) end
1773
1731
 
1774
1732
  # Returns false if this is a constant empty set of choices, which should not be modified.
1775
- # @return [true,false]
1733
+ # @return [Boolean]
1776
1734
  def is_ok; end
1777
1735
  alias_method :ok?, :is_ok
1778
1736
 
1779
- # @overload item(i)
1780
- # Returns item at given index.
1781
- # @param i [Integer]
1782
- # @return [Wx::PGChoiceEntry]
1783
- # @overload item(i)
1784
- # Returns item at given index.
1785
- # @param i [Integer]
1786
- # @return [Wx::PGChoiceEntry]
1787
- def item(*args) end
1737
+ # Returns item at given index.
1738
+ # @param i [Integer]
1739
+ # @return [Wx::PG::PGChoiceEntry]
1740
+ def item(i) end
1788
1741
 
1789
1742
  # Removes count items starting at position nIndex.
1790
1743
  # @param nIndex [Integer]
@@ -1809,10 +1762,10 @@ module Wx::PG
1809
1762
 
1810
1763
  # @overload [](i)
1811
1764
  # @param i [Integer]
1812
- # @return [Wx::PGChoiceEntry]
1765
+ # @return [Wx::PG::PGChoiceEntry]
1813
1766
  # @overload [](i)
1814
1767
  # @param i [Integer]
1815
- # @return [Wx::PGChoiceEntry]
1768
+ # @return [Wx::PG::PGChoiceEntry]
1816
1769
  def [](*args) end
1817
1770
 
1818
1771
  end # PGChoices
@@ -1827,12 +1780,12 @@ module Wx::PG
1827
1780
  # {Wx::PG::PropertyGrid}
1828
1781
  #
1829
1782
  #
1830
- # @return [Wx::PropertyGrid]
1783
+ # @return [Wx::PG::PropertyGrid]
1831
1784
  def parent; end
1832
1785
  # {Wx::PG::PropertyGrid}
1833
1786
  #
1834
1787
  #
1835
- # @param val [Wx::PropertyGrid]
1788
+ # @param val [Wx::PG::PropertyGrid]
1836
1789
  # @return [void]
1837
1790
  def parent=(val); end
1838
1791