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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (837) hide show
  1. checksums.yaml +7 -0
  2. data/.wxconfig +17 -0
  3. data/.yardopts +13 -0
  4. data/CREDITS.md +52 -0
  5. data/LICENSE +21 -0
  6. data/README.md +139 -0
  7. data/bin/wxruby +9 -0
  8. data/bin/wxruby.bat +20 -0
  9. data/ext/mkrf_conf_bingem.rb +18 -0
  10. data/ext/wxbase32u_gcc_custom.dll +0 -0
  11. data/ext/wxbase32u_net_gcc_custom.dll +0 -0
  12. data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
  13. data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
  14. data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
  15. data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
  16. data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
  17. data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
  18. data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
  19. data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
  20. data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
  21. data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
  22. data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
  23. data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
  24. data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
  25. data/lib/wx/accessors.rb +63 -0
  26. data/lib/wx/aui/auimanager.rb +17 -0
  27. data/lib/wx/aui/auinotebook.rb +9 -0
  28. data/lib/wx/aui/events/evt_list.rb +143 -0
  29. data/lib/wx/aui/require.rb +9 -0
  30. data/lib/wx/aui.rb +14 -0
  31. data/lib/wx/core/acceleratortable.rb +28 -0
  32. data/lib/wx/core/animation.rb +18 -0
  33. data/lib/wx/core/app.rb +89 -0
  34. data/lib/wx/core/artprovider.rb +31 -0
  35. data/lib/wx/core/bitmap.rb +59 -0
  36. data/lib/wx/core/busycursor.rb +12 -0
  37. data/lib/wx/core/choice.rb +4 -0
  38. data/lib/wx/core/choicedlg.rb +54 -0
  39. data/lib/wx/core/clientdc.rb +13 -0
  40. data/lib/wx/core/clipboard.rb +56 -0
  41. data/lib/wx/core/collapsible_pane.rb +12 -0
  42. data/lib/wx/core/colour.rb +34 -0
  43. data/lib/wx/core/combobox.rb +4 -0
  44. data/lib/wx/core/controlwithitems.rb +10 -0
  45. data/lib/wx/core/data_object.rb +10 -0
  46. data/lib/wx/core/dataformat.rb +26 -0
  47. data/lib/wx/core/dc.rb +68 -0
  48. data/lib/wx/core/dialog.rb +50 -0
  49. data/lib/wx/core/event.rb +16 -0
  50. data/lib/wx/core/events/evt_list.rb +1378 -0
  51. data/lib/wx/core/evthandler.rb +240 -0
  52. data/lib/wx/core/ext.rb +58 -0
  53. data/lib/wx/core/font/encoding.rb +113 -0
  54. data/lib/wx/core/font.rb +22 -0
  55. data/lib/wx/core/functions.rb +44 -0
  56. data/lib/wx/core/gauge.rb +12 -0
  57. data/lib/wx/core/genericdirctrl.rb +36 -0
  58. data/lib/wx/core/hboxsizer.rb +6 -0
  59. data/lib/wx/core/helpcontroller.rb +5 -0
  60. data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
  61. data/lib/wx/core/helpprovider.rb +15 -0
  62. data/lib/wx/core/icon.rb +40 -0
  63. data/lib/wx/core/image.rb +68 -0
  64. data/lib/wx/core/imagelist.rb +3 -0
  65. data/lib/wx/core/listbox.rb +4 -0
  66. data/lib/wx/core/listctrl.rb +33 -0
  67. data/lib/wx/core/locale.rb +73 -0
  68. data/lib/wx/core/log.rb +20 -0
  69. data/lib/wx/core/menu.rb +78 -0
  70. data/lib/wx/core/menu_bar.rb +20 -0
  71. data/lib/wx/core/menuitem.rb +7 -0
  72. data/lib/wx/core/notebook.rb +9 -0
  73. data/lib/wx/core/object.rb +14 -0
  74. data/lib/wx/core/pen_info.rb +11 -0
  75. data/lib/wx/core/platform_info.rb +13 -0
  76. data/lib/wx/core/point.rb +92 -0
  77. data/lib/wx/core/real_point.rb +92 -0
  78. data/lib/wx/core/rect.rb +57 -0
  79. data/lib/wx/core/simplehelpprovider.rb +38 -0
  80. data/lib/wx/core/size.rb +86 -0
  81. data/lib/wx/core/sizer.rb +43 -0
  82. data/lib/wx/core/splash_screen.rb +44 -0
  83. data/lib/wx/core/textctrl.rb +8 -0
  84. data/lib/wx/core/timer.rb +105 -0
  85. data/lib/wx/core/toolbar.rb +37 -0
  86. data/lib/wx/core/toolbartool.rb +4 -0
  87. data/lib/wx/core/treectrl.rb +46 -0
  88. data/lib/wx/core/validator.rb +8 -0
  89. data/lib/wx/core/variant.rb +62 -0
  90. data/lib/wx/core/vboxsizer.rb +6 -0
  91. data/lib/wx/core/window.rb +95 -0
  92. data/lib/wx/core/window_update_locker.rb +12 -0
  93. data/lib/wx/core/xmlresource.rb +56 -0
  94. data/lib/wx/core.rb +61 -0
  95. data/lib/wx/doc/aui/auimanager.rb +12 -0
  96. data/lib/wx/doc/aui/auinotebook.rb +9 -0
  97. data/lib/wx/doc/colour_dialog.rb +15 -0
  98. data/lib/wx/doc/dc.rb +49 -0
  99. data/lib/wx/doc/enum.rb +66 -0
  100. data/lib/wx/doc/evthandler.rb +84 -0
  101. data/lib/wx/doc/extra/00_starting.md +154 -0
  102. data/lib/wx/doc/extra/01_packages.md +179 -0
  103. data/lib/wx/doc/extra/02_lifecycles.md +116 -0
  104. data/lib/wx/doc/extra/03_dialogs.md +57 -0
  105. data/lib/wx/doc/extra/04_enums.md +143 -0
  106. data/lib/wx/doc/extra/05_event-handling.md +166 -0
  107. data/lib/wx/doc/extra/06_geometry.md +56 -0
  108. data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
  109. data/lib/wx/doc/extra/08_extensions.md +144 -0
  110. data/lib/wx/doc/extra/09_exceptions.md +54 -0
  111. data/lib/wx/doc/functions.rb +221 -0
  112. data/lib/wx/doc/gdi_common.rb +181 -0
  113. data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
  114. data/lib/wx/doc/gen/accelerator.rb +172 -0
  115. data/lib/wx/doc/gen/accessible.rb +817 -0
  116. data/lib/wx/doc/gen/animation.rb +253 -0
  117. data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
  118. data/lib/wx/doc/gen/any_button.rb +170 -0
  119. data/lib/wx/doc/gen/app.rb +363 -0
  120. data/lib/wx/doc/gen/art_provider.rb +497 -0
  121. data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
  122. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
  123. data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
  124. data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
  125. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
  126. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
  127. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
  128. data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
  129. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
  130. data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
  131. data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
  132. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
  133. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
  134. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
  135. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
  136. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
  137. data/lib/wx/doc/gen/aui/event_list.rb +162 -0
  138. data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
  139. data/lib/wx/doc/gen/bitmap.rb +638 -0
  140. data/lib/wx/doc/gen/bitmap_button.rb +91 -0
  141. data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
  142. data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
  143. data/lib/wx/doc/gen/box_sizer.rb +66 -0
  144. data/lib/wx/doc/gen/brush.rb +219 -0
  145. data/lib/wx/doc/gen/buffered_dc.rb +95 -0
  146. data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
  147. data/lib/wx/doc/gen/busy_info.rb +141 -0
  148. data/lib/wx/doc/gen/button.rb +133 -0
  149. data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
  150. data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
  151. data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
  152. data/lib/wx/doc/gen/calendar_event.rb +150 -0
  153. data/lib/wx/doc/gen/caret.rb +99 -0
  154. data/lib/wx/doc/gen/check_box.rb +145 -0
  155. data/lib/wx/doc/gen/check_list_box.rb +96 -0
  156. data/lib/wx/doc/gen/choice.rb +143 -0
  157. data/lib/wx/doc/gen/choicebook.rb +100 -0
  158. data/lib/wx/doc/gen/client_dc.rb +49 -0
  159. data/lib/wx/doc/gen/clipboard.rb +128 -0
  160. data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
  161. data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
  162. data/lib/wx/doc/gen/colour.rb +289 -0
  163. data/lib/wx/doc/gen/colour_data.rb +96 -0
  164. data/lib/wx/doc/gen/colour_dialog.rb +84 -0
  165. data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
  166. data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
  167. data/lib/wx/doc/gen/combo_box.rb +228 -0
  168. data/lib/wx/doc/gen/context_help_button.rb +34 -0
  169. data/lib/wx/doc/gen/control.rb +245 -0
  170. data/lib/wx/doc/gen/control_with_items.rb +339 -0
  171. data/lib/wx/doc/gen/core.rb +42 -0
  172. data/lib/wx/doc/gen/cursor.rb +127 -0
  173. data/lib/wx/doc/gen/data_format.rb +94 -0
  174. data/lib/wx/doc/gen/data_object.rb +439 -0
  175. data/lib/wx/doc/gen/date_event.rb +48 -0
  176. data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
  177. data/lib/wx/doc/gen/dc.rb +1278 -0
  178. data/lib/wx/doc/gen/defs.rb +2832 -0
  179. data/lib/wx/doc/gen/dialog.rb +426 -0
  180. data/lib/wx/doc/gen/dir_dialog.rb +134 -0
  181. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
  182. data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
  183. data/lib/wx/doc/gen/drag_drop.rb +292 -0
  184. data/lib/wx/doc/gen/drag_image.rb +123 -0
  185. data/lib/wx/doc/gen/editable_list_box.rb +89 -0
  186. data/lib/wx/doc/gen/event.rb +911 -0
  187. data/lib/wx/doc/gen/event_list.rb +1512 -0
  188. data/lib/wx/doc/gen/events.rb +2499 -0
  189. data/lib/wx/doc/gen/evt_handler.rb +224 -0
  190. data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
  191. data/lib/wx/doc/gen/file_dialog.rb +294 -0
  192. data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
  193. data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
  194. data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
  195. data/lib/wx/doc/gen/find_replace_data.rb +59 -0
  196. data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
  197. data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
  198. data/lib/wx/doc/gen/font.rb +1282 -0
  199. data/lib/wx/doc/gen/font_data.rb +132 -0
  200. data/lib/wx/doc/gen/font_dialog.rb +71 -0
  201. data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
  202. data/lib/wx/doc/gen/font_picker_event.rb +64 -0
  203. data/lib/wx/doc/gen/frame.rb +276 -0
  204. data/lib/wx/doc/gen/fs_file.rb +269 -0
  205. data/lib/wx/doc/gen/functions.rb +10 -0
  206. data/lib/wx/doc/gen/gauge.rb +127 -0
  207. data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
  208. data/lib/wx/doc/gen/gcdc.rb +61 -0
  209. data/lib/wx/doc/gen/gdi_common.rb +1108 -0
  210. data/lib/wx/doc/gen/gdi_object.rb +29 -0
  211. data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
  212. data/lib/wx/doc/gen/graphics_context.rb +764 -0
  213. data/lib/wx/doc/gen/graphics_object.rb +494 -0
  214. data/lib/wx/doc/gen/grid/event_list.rb +173 -0
  215. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
  216. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
  217. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
  218. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
  219. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
  220. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
  221. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
  222. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
  223. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
  224. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
  225. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
  226. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
  227. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
  228. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
  229. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
  230. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
  231. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
  232. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
  233. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
  234. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
  235. data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
  236. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
  237. data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
  238. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
  239. data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
  240. data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
  241. data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
  242. data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
  243. data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
  244. data/lib/wx/doc/gen/grid_sizer.rb +135 -0
  245. data/lib/wx/doc/gen/help_controller.rb +136 -0
  246. data/lib/wx/doc/gen/help_provider.rb +80 -0
  247. data/lib/wx/doc/gen/html/event_list.rb +46 -0
  248. data/lib/wx/doc/gen/html/html_cell.rb +441 -0
  249. data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
  250. data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
  251. data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
  252. data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
  253. data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
  254. data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
  255. data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
  256. data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
  257. data/lib/wx/doc/gen/html/html_printout.rb +87 -0
  258. data/lib/wx/doc/gen/html/html_window.rb +386 -0
  259. data/lib/wx/doc/gen/icon.rb +267 -0
  260. data/lib/wx/doc/gen/icon_location.rb +38 -0
  261. data/lib/wx/doc/gen/image.rb +1144 -0
  262. data/lib/wx/doc/gen/image_list.rb +181 -0
  263. data/lib/wx/doc/gen/keyboard_state.rb +124 -0
  264. data/lib/wx/doc/gen/list_box.rb +260 -0
  265. data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
  266. data/lib/wx/doc/gen/list_event.rb +177 -0
  267. data/lib/wx/doc/gen/listbook.rb +100 -0
  268. data/lib/wx/doc/gen/locale.rb +4143 -0
  269. data/lib/wx/doc/gen/log.rb +505 -0
  270. data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
  271. data/lib/wx/doc/gen/mdi_frame.rb +235 -0
  272. data/lib/wx/doc/gen/media_ctrl.rb +225 -0
  273. data/lib/wx/doc/gen/media_event.rb +109 -0
  274. data/lib/wx/doc/gen/memory_dc.rb +95 -0
  275. data/lib/wx/doc/gen/menu.rb +493 -0
  276. data/lib/wx/doc/gen/menu_bar.rb +247 -0
  277. data/lib/wx/doc/gen/menu_item.rb +333 -0
  278. data/lib/wx/doc/gen/message_dialog.rb +195 -0
  279. data/lib/wx/doc/gen/mini_frame.rb +72 -0
  280. data/lib/wx/doc/gen/mirror_dc.rb +29 -0
  281. data/lib/wx/doc/gen/mouse_state.rb +108 -0
  282. data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
  283. data/lib/wx/doc/gen/non_owned_window.rb +46 -0
  284. data/lib/wx/doc/gen/notebook.rb +220 -0
  285. data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
  286. data/lib/wx/doc/gen/object.rb +69 -0
  287. data/lib/wx/doc/gen/paint_dc.rb +34 -0
  288. data/lib/wx/doc/gen/palette.rb +90 -0
  289. data/lib/wx/doc/gen/panel.rb +96 -0
  290. data/lib/wx/doc/gen/pen.rb +484 -0
  291. data/lib/wx/doc/gen/pg/event_list.rb +102 -0
  292. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
  293. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
  294. data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
  295. data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
  296. data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
  297. data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
  298. data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
  299. data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
  300. data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
  301. data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
  302. data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
  303. data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
  304. data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
  305. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
  306. data/lib/wx/doc/gen/picker_base.rb +143 -0
  307. data/lib/wx/doc/gen/platform_info.rb +379 -0
  308. data/lib/wx/doc/gen/popup_window.rb +93 -0
  309. data/lib/wx/doc/gen/progress_dialog.rb +106 -0
  310. data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
  311. data/lib/wx/doc/gen/prt/event_list.rb +13 -0
  312. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
  313. data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
  314. data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
  315. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
  316. data/lib/wx/doc/gen/prt/print_data.rb +598 -0
  317. data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
  318. data/lib/wx/doc/gen/prt/printer.rb +428 -0
  319. data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
  320. data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
  321. data/lib/wx/doc/gen/radio_box.rb +258 -0
  322. data/lib/wx/doc/gen/radio_button.rb +128 -0
  323. data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
  324. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
  325. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
  326. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
  327. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
  328. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
  329. data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
  330. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
  331. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
  332. data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
  333. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
  334. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
  335. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
  336. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
  337. data/lib/wx/doc/gen/region.rb +299 -0
  338. data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
  339. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
  340. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
  341. data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
  342. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
  343. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
  344. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
  345. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
  346. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
  347. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
  348. data/lib/wx/doc/gen/sash_event.rb +133 -0
  349. data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
  350. data/lib/wx/doc/gen/sash_window.rb +154 -0
  351. data/lib/wx/doc/gen/screen_dc.rb +27 -0
  352. data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
  353. data/lib/wx/doc/gen/scrolled_control.rb +317 -0
  354. data/lib/wx/doc/gen/scrolled_window.rb +337 -0
  355. data/lib/wx/doc/gen/simplebook.rb +93 -0
  356. data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
  357. data/lib/wx/doc/gen/sizer.rb +847 -0
  358. data/lib/wx/doc/gen/sizer_item.rb +227 -0
  359. data/lib/wx/doc/gen/slider.rb +316 -0
  360. data/lib/wx/doc/gen/spin_button.rb +124 -0
  361. data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
  362. data/lib/wx/doc/gen/spin_event.rb +47 -0
  363. data/lib/wx/doc/gen/splash_screen.rb +83 -0
  364. data/lib/wx/doc/gen/splitter_event.rb +87 -0
  365. data/lib/wx/doc/gen/splitter_window.rb +357 -0
  366. data/lib/wx/doc/gen/static_bitmap.rb +126 -0
  367. data/lib/wx/doc/gen/static_box.rb +123 -0
  368. data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
  369. data/lib/wx/doc/gen/static_line.rb +66 -0
  370. data/lib/wx/doc/gen/static_text.rb +98 -0
  371. data/lib/wx/doc/gen/status_bar.rb +203 -0
  372. data/lib/wx/doc/gen/stc/event_list.rb +217 -0
  373. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
  374. data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
  375. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
  376. data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
  377. data/lib/wx/doc/gen/system_options.rb +109 -0
  378. data/lib/wx/doc/gen/system_settings.rb +481 -0
  379. data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
  380. data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
  381. data/lib/wx/doc/gen/text_attr.rb +645 -0
  382. data/lib/wx/doc/gen/text_ctrl.rb +841 -0
  383. data/lib/wx/doc/gen/text_entry.rb +389 -0
  384. data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
  385. data/lib/wx/doc/gen/text_validator.rb +212 -0
  386. data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
  387. data/lib/wx/doc/gen/timer.rb +103 -0
  388. data/lib/wx/doc/gen/timer_event.rb +73 -0
  389. data/lib/wx/doc/gen/tip_provider.rb +60 -0
  390. data/lib/wx/doc/gen/toggle_button.rb +84 -0
  391. data/lib/wx/doc/gen/tool_bar.rb +744 -0
  392. data/lib/wx/doc/gen/tool_tip.rb +73 -0
  393. data/lib/wx/doc/gen/toolbook.rb +103 -0
  394. data/lib/wx/doc/gen/top_level_window.rb +462 -0
  395. data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
  396. data/lib/wx/doc/gen/tree_event.rb +101 -0
  397. data/lib/wx/doc/gen/treebook.rb +154 -0
  398. data/lib/wx/doc/gen/utils.rb +257 -0
  399. data/lib/wx/doc/gen/v_list_box.rb +224 -0
  400. data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
  401. data/lib/wx/doc/gen/validator.rb +73 -0
  402. data/lib/wx/doc/gen/variant.rb +340 -0
  403. data/lib/wx/doc/gen/window.rb +2414 -0
  404. data/lib/wx/doc/gen/window_dc.rb +35 -0
  405. data/lib/wx/doc/gen/window_disabler.rb +24 -0
  406. data/lib/wx/doc/gen/with_images.rb +73 -0
  407. data/lib/wx/doc/gen/wizard.rb +197 -0
  408. data/lib/wx/doc/gen/wizard_event.rb +105 -0
  409. data/lib/wx/doc/gen/wizard_page.rb +61 -0
  410. data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
  411. data/lib/wx/doc/gen/xml_node.rb +282 -0
  412. data/lib/wx/doc/gen/xml_resource.rb +304 -0
  413. data/lib/wx/doc/grid/grid.rb +20 -0
  414. data/lib/wx/doc/help_controller.rb +14 -0
  415. data/lib/wx/doc/html/html_help_controller.rb +8 -0
  416. data/lib/wx/doc/pg/events.rb +15 -0
  417. data/lib/wx/doc/pg/pg_property.rb +8 -0
  418. data/lib/wx/doc/pg/pgeditor.rb +21 -0
  419. data/lib/wx/doc/pg/property_grid.rb +48 -0
  420. data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
  421. data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
  422. data/lib/wx/doc/prt/print_data.rb +9 -0
  423. data/lib/wx/doc/prt/print_dialog.rb +26 -0
  424. data/lib/wx/doc/prt/printer.rb +15 -0
  425. data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
  426. data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
  427. data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
  428. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
  429. data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
  430. data/lib/wx/doc/screen_dc.rb +10 -0
  431. data/lib/wx/doc/stock_objects.rb +98 -0
  432. data/lib/wx/doc/stream.rb +38 -0
  433. data/lib/wx/doc/system_settings.rb +29 -0
  434. data/lib/wx/doc/treebook.rb +9 -0
  435. data/lib/wx/doc/variant.rb +163 -0
  436. data/lib/wx/doc/xml_resource.rb +19 -0
  437. data/lib/wx/global_const.rb +84 -0
  438. data/lib/wx/grid/events/evt_list.rb +156 -0
  439. data/lib/wx/grid/grid.rb +7 -0
  440. data/lib/wx/grid/keyword_defs.rb +10 -0
  441. data/lib/wx/grid/require.rb +9 -0
  442. data/lib/wx/grid.rb +14 -0
  443. data/lib/wx/helpers.rb +65 -0
  444. data/lib/wx/html/events/evt_list.rb +37 -0
  445. data/lib/wx/html/htmlhelpcontroller.rb +6 -0
  446. data/lib/wx/html/htmlwindow.rb +19 -0
  447. data/lib/wx/html/keyword_defs.rb +22 -0
  448. data/lib/wx/html/require.rb +10 -0
  449. data/lib/wx/html.rb +15 -0
  450. data/lib/wx/keyword_ctors.rb +226 -0
  451. data/lib/wx/keyword_defs.rb +487 -0
  452. data/lib/wx/pg/events/evt_list.rb +73 -0
  453. data/lib/wx/pg/events.rb +14 -0
  454. data/lib/wx/pg/keyword_defs.rb +15 -0
  455. data/lib/wx/pg/pg_editor.rb +13 -0
  456. data/lib/wx/pg/pg_properties.rb +24 -0
  457. data/lib/wx/pg/pg_property.rb +26 -0
  458. data/lib/wx/pg/property_grid.rb +56 -0
  459. data/lib/wx/pg/property_grid_interface.rb +33 -0
  460. data/lib/wx/pg/require.rb +12 -0
  461. data/lib/wx/pg.rb +14 -0
  462. data/lib/wx/prt/keyword_defs.rb +8 -0
  463. data/lib/wx/prt/page_setup_dialog.rb +15 -0
  464. data/lib/wx/prt/previewframe.rb +13 -0
  465. data/lib/wx/prt/require.rb +8 -0
  466. data/lib/wx/prt.rb +14 -0
  467. data/lib/wx/rbn/events/evt_list.rb +102 -0
  468. data/lib/wx/rbn/events.rb +4 -0
  469. data/lib/wx/rbn/keyword_defs.rb +43 -0
  470. data/lib/wx/rbn/require.rb +12 -0
  471. data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
  472. data/lib/wx/rbn/ribbon_bar.rb +12 -0
  473. data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
  474. data/lib/wx/rbn/ribbon_control.rb +25 -0
  475. data/lib/wx/rbn/ribbon_gallery.rb +26 -0
  476. data/lib/wx/rbn/ribbon_page.rb +15 -0
  477. data/lib/wx/rbn/ribbon_panel.rb +15 -0
  478. data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
  479. data/lib/wx/rbn.rb +14 -0
  480. data/lib/wx/rtc/events/evt_list.rb +98 -0
  481. data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
  482. data/lib/wx/rtc/ext.rb +15 -0
  483. data/lib/wx/rtc/keyword_defs.rb +17 -0
  484. data/lib/wx/rtc/require.rb +8 -0
  485. data/lib/wx/rtc.rb +15 -0
  486. data/lib/wx/stc/events/evt_list.rb +178 -0
  487. data/lib/wx/stc/keyword_defs.rb +8 -0
  488. data/lib/wx/stc/require.rb +7 -0
  489. data/lib/wx/stc.rb +14 -0
  490. data/lib/wx/version.rb +3 -0
  491. data/lib/wx/wxruby/base.rb +87 -0
  492. data/lib/wx/wxruby/cmd/sampler.rb +68 -0
  493. data/lib/wx/wxruby/cmd/test.rb +27 -0
  494. data/lib/wx.rb +14 -0
  495. data/lib/wxruby_aui.so +0 -0
  496. data/lib/wxruby_core.so +0 -0
  497. data/lib/wxruby_grid.so +0 -0
  498. data/lib/wxruby_html.so +0 -0
  499. data/lib/wxruby_pg.so +0 -0
  500. data/lib/wxruby_prt.so +0 -0
  501. data/lib/wxruby_rbn.so +0 -0
  502. data/lib/wxruby_rtc.so +0 -0
  503. data/lib/wxruby_stc.so +0 -0
  504. data/rakelib/install.rb +220 -0
  505. data/rakelib/lib/config/cygwin.rb +6 -0
  506. data/rakelib/lib/config/linux.rb +78 -0
  507. data/rakelib/lib/config/macosx.rb +6 -0
  508. data/rakelib/lib/config/mingw.rb +133 -0
  509. data/rakelib/lib/config/netbsd.rb +6 -0
  510. data/rakelib/lib/config/unixish.rb +187 -0
  511. data/rakelib/lib/config.rb +673 -0
  512. data/rakelib/lib/ext/enum_chain.rb +22 -0
  513. data/rakelib/prepost.rake +91 -0
  514. data/rakelib/prepost.rb +26 -0
  515. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
  516. data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
  517. data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
  518. data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
  519. data/rakelib/yard/yard-custom-templates.rb +2 -0
  520. data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
  521. data/samples/art/wxruby-128x128.png +0 -0
  522. data/samples/art/wxruby-256x256.png +0 -0
  523. data/samples/art/wxruby-64x64.png +0 -0
  524. data/samples/art/wxruby.ico +0 -0
  525. data/samples/art/wxruby.png +0 -0
  526. data/samples/aui/aui.rb +1321 -0
  527. data/samples/aui/tn_aui.png +0 -0
  528. data/samples/bigdemo/About.rbw +39 -0
  529. data/samples/bigdemo/ColorPanel.rbw +23 -0
  530. data/samples/bigdemo/GridSimple.rbw +78 -0
  531. data/samples/bigdemo/MDIDemo.rbw +57 -0
  532. data/samples/bigdemo/PopupMenu.rbw +146 -0
  533. data/samples/bigdemo/ShapedWindow.rbw +128 -0
  534. data/samples/bigdemo/Sizers.rbw +541 -0
  535. data/samples/bigdemo/bigdemo.rb +810 -0
  536. data/samples/bigdemo/demoTemplate.rbw +33 -0
  537. data/samples/bigdemo/helpfile.htb +0 -0
  538. data/samples/bigdemo/icons/Test 015.jpg +0 -0
  539. data/samples/bigdemo/icons/Test 015.png +0 -0
  540. data/samples/bigdemo/icons/choice.bmp +0 -0
  541. data/samples/bigdemo/icons/choice.xpm +27 -0
  542. data/samples/bigdemo/icons/combo.bmp +0 -0
  543. data/samples/bigdemo/icons/combo.xpm +27 -0
  544. data/samples/bigdemo/icons/copy.xpm +25 -0
  545. data/samples/bigdemo/icons/cut.xpm +24 -0
  546. data/samples/bigdemo/icons/gauge.bmp +0 -0
  547. data/samples/bigdemo/icons/gauge.xpm +27 -0
  548. data/samples/bigdemo/icons/help.xpm +25 -0
  549. data/samples/bigdemo/icons/list.bmp +0 -0
  550. data/samples/bigdemo/icons/list.xpm +27 -0
  551. data/samples/bigdemo/icons/mondrian.ico +0 -0
  552. data/samples/bigdemo/icons/mondrian.xpm +44 -0
  553. data/samples/bigdemo/icons/new.xpm +24 -0
  554. data/samples/bigdemo/icons/ogl.ico +0 -0
  555. data/samples/bigdemo/icons/ogl.xpm +45 -0
  556. data/samples/bigdemo/icons/open.xpm +26 -0
  557. data/samples/bigdemo/icons/paste.bmp +0 -0
  558. data/samples/bigdemo/icons/paste.xpm +38 -0
  559. data/samples/bigdemo/icons/pointy.png +0 -0
  560. data/samples/bigdemo/icons/preview.xpm +26 -0
  561. data/samples/bigdemo/icons/print.xpm +26 -0
  562. data/samples/bigdemo/icons/radio.bmp +0 -0
  563. data/samples/bigdemo/icons/radio.xpm +27 -0
  564. data/samples/bigdemo/icons/robert.xpm +415 -0
  565. data/samples/bigdemo/icons/sashtest.ico +0 -0
  566. data/samples/bigdemo/icons/save.xpm +25 -0
  567. data/samples/bigdemo/icons/smiles.bmp +0 -0
  568. data/samples/bigdemo/icons/smiles.xpm +39 -0
  569. data/samples/bigdemo/icons/smiley.ico +0 -0
  570. data/samples/bigdemo/icons/smiley.xpm +42 -0
  571. data/samples/bigdemo/icons/stattext.xpm +24 -0
  572. data/samples/bigdemo/icons/test2.bmp +0 -0
  573. data/samples/bigdemo/icons/test2.png +0 -0
  574. data/samples/bigdemo/icons/test2.xpm +79 -0
  575. data/samples/bigdemo/icons/text.bmp +0 -0
  576. data/samples/bigdemo/icons/text.xpm +27 -0
  577. data/samples/bigdemo/icons/tog1.bmp +0 -0
  578. data/samples/bigdemo/icons/tog1.xpm +38 -0
  579. data/samples/bigdemo/icons/tog2.bmp +0 -0
  580. data/samples/bigdemo/icons/tog2.xpm +38 -0
  581. data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
  582. data/samples/bigdemo/icons/wxwin.ico +0 -0
  583. data/samples/bigdemo/icons/wxwin16x16.png +0 -0
  584. data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
  585. data/samples/bigdemo/icons/wxwin32x32.png +0 -0
  586. data/samples/bigdemo/icons/wxwin48x48.png +0 -0
  587. data/samples/bigdemo/run.rb +91 -0
  588. data/samples/bigdemo/tips.txt +7 -0
  589. data/samples/bigdemo/utils.rb +12 -0
  590. data/samples/bigdemo/wxArtProvider.rbw +281 -0
  591. data/samples/bigdemo/wxBitmapButton.rbw +65 -0
  592. data/samples/bigdemo/wxButton.rbw +64 -0
  593. data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
  594. data/samples/bigdemo/wxCheckBox.rbw +50 -0
  595. data/samples/bigdemo/wxCheckListBox.rbw +65 -0
  596. data/samples/bigdemo/wxChoice.rbw +47 -0
  597. data/samples/bigdemo/wxChoicebook.rbw +78 -0
  598. data/samples/bigdemo/wxColourDialog.rbw +33 -0
  599. data/samples/bigdemo/wxComboBox.rbw +77 -0
  600. data/samples/bigdemo/wxCursor.rbw +136 -0
  601. data/samples/bigdemo/wxDialog.rbw +74 -0
  602. data/samples/bigdemo/wxDirDialog.rbw +29 -0
  603. data/samples/bigdemo/wxDragImage.rbw +70 -0
  604. data/samples/bigdemo/wxFileDialog.rbw +37 -0
  605. data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
  606. data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
  607. data/samples/bigdemo/wxFontDialog.rbw +200 -0
  608. data/samples/bigdemo/wxFrame.rbw +53 -0
  609. data/samples/bigdemo/wxGauge.rbw +65 -0
  610. data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
  611. data/samples/bigdemo/wxGrid.rbw +66 -0
  612. data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
  613. data/samples/bigdemo/wxListBox.rbw +140 -0
  614. data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
  615. data/samples/bigdemo/wxMDIWindows.rbw +50 -0
  616. data/samples/bigdemo/wxMenu.rbw +247 -0
  617. data/samples/bigdemo/wxMessageDialog.rbw +27 -0
  618. data/samples/bigdemo/wxMiniFrame.rbw +70 -0
  619. data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
  620. data/samples/bigdemo/wxNotebook.rbw +136 -0
  621. data/samples/bigdemo/wxProgressDialog.rbw +43 -0
  622. data/samples/bigdemo/wxRadioBox.rbw +72 -0
  623. data/samples/bigdemo/wxRadioButton.rbw +125 -0
  624. data/samples/bigdemo/wxSashWindow.rbw +141 -0
  625. data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
  626. data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
  627. data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
  628. data/samples/bigdemo/wxSlider.rbw +42 -0
  629. data/samples/bigdemo/wxSpinButton.rbw +50 -0
  630. data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
  631. data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
  632. data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
  633. data/samples/bigdemo/wxStaticText.rbw +55 -0
  634. data/samples/bigdemo/wxStatusBar.rbw +126 -0
  635. data/samples/bigdemo/wxTextCtrl.rbw +149 -0
  636. data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
  637. data/samples/bigdemo/wxToggleButton.rbw +49 -0
  638. data/samples/bigdemo/wxToolBar.rbw +131 -0
  639. data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
  640. data/samples/calendar/calendar.rb +363 -0
  641. data/samples/calendar/tn_calendar.png +0 -0
  642. data/samples/caret/caret.rb +293 -0
  643. data/samples/caret/mondrian.xpm +44 -0
  644. data/samples/caret/tn_caret.png +0 -0
  645. data/samples/controls/books.rb +183 -0
  646. data/samples/controls/controls.rb +1143 -0
  647. data/samples/controls/get_item_sample.rb +117 -0
  648. data/samples/controls/icons/choice.xpm +27 -0
  649. data/samples/controls/icons/combo.xpm +27 -0
  650. data/samples/controls/icons/gauge.xpm +27 -0
  651. data/samples/controls/icons/list.xpm +27 -0
  652. data/samples/controls/icons/radio.xpm +27 -0
  653. data/samples/controls/icons/stattext.xpm +24 -0
  654. data/samples/controls/icons/text.xpm +27 -0
  655. data/samples/controls/mondrian.ico +0 -0
  656. data/samples/controls/mondrian.xpm +44 -0
  657. data/samples/controls/test2.bmp +0 -0
  658. data/samples/controls/tn_books.png +0 -0
  659. data/samples/controls/tn_controls.png +0 -0
  660. data/samples/controls/tn_get_item_sample.png +0 -0
  661. data/samples/dialogs/dialogs.rb +879 -0
  662. data/samples/dialogs/tips.txt +18 -0
  663. data/samples/dialogs/tn_dialogs.png +0 -0
  664. data/samples/dialogs/tn_wizard.png +0 -0
  665. data/samples/dialogs/wizard.rb +89 -0
  666. data/samples/dragdrop/dragdrop.rb +200 -0
  667. data/samples/dragdrop/tn_dragdrop.png +0 -0
  668. data/samples/drawing/SVGlogo24.xpm +310 -0
  669. data/samples/drawing/bitmap.rb +76 -0
  670. data/samples/drawing/bitmap_image.rb +131 -0
  671. data/samples/drawing/graphics_drawing.rb +257 -0
  672. data/samples/drawing/maths_images.rb +327 -0
  673. data/samples/drawing/rmagic_bitmap_image.rb +139 -0
  674. data/samples/drawing/ruby-logo.jpg +0 -0
  675. data/samples/drawing/svgtest.rb +373 -0
  676. data/samples/drawing/tn_bitmap.png +0 -0
  677. data/samples/drawing/tn_bitmap_image.png +0 -0
  678. data/samples/drawing/tn_graphics_drawing.png +0 -0
  679. data/samples/drawing/tn_maths_images.png +0 -0
  680. data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
  681. data/samples/drawing/tn_svgtest.png +0 -0
  682. data/samples/etc/choice.rb +82 -0
  683. data/samples/etc/miniframe.rb +92 -0
  684. data/samples/etc/sash.rb +140 -0
  685. data/samples/etc/scrollwin.rb +120 -0
  686. data/samples/etc/system_settings.rb +263 -0
  687. data/samples/etc/tn_choice.png +0 -0
  688. data/samples/etc/tn_miniframe.png +0 -0
  689. data/samples/etc/tn_sash.png +0 -0
  690. data/samples/etc/tn_scrollwin.png +0 -0
  691. data/samples/etc/tn_system_settings.png +0 -0
  692. data/samples/event/activation.rb +129 -0
  693. data/samples/event/event.rb +220 -0
  694. data/samples/event/threaded.rb +141 -0
  695. data/samples/event/tn_activation.png +0 -0
  696. data/samples/event/tn_event.png +0 -0
  697. data/samples/event/tn_threaded.png +0 -0
  698. data/samples/event/tn_update_ui_event.png +0 -0
  699. data/samples/event/update_ui_event.rb +91 -0
  700. data/samples/grid/grid.rb +224 -0
  701. data/samples/grid/gridtablebase.rb +178 -0
  702. data/samples/grid/tn_grid.png +0 -0
  703. data/samples/grid/tn_gridtablebase.png +0 -0
  704. data/samples/html/8859_2.htm +14 -0
  705. data/samples/html/cp1250.htm +19 -0
  706. data/samples/html/foo.png +0 -0
  707. data/samples/html/html.rb +278 -0
  708. data/samples/html/i18n.gif +0 -0
  709. data/samples/html/imagemap.htm +20 -0
  710. data/samples/html/imagemap.png +0 -0
  711. data/samples/html/listtest.htm +28 -0
  712. data/samples/html/pic.png +0 -0
  713. data/samples/html/pic2.bmp +0 -0
  714. data/samples/html/regres.htm +20 -0
  715. data/samples/html/subsup.html +42 -0
  716. data/samples/html/tables.htm +255 -0
  717. data/samples/html/test.htm +375 -0
  718. data/samples/html/tn_html.png +0 -0
  719. data/samples/mdi/mdi.rb +118 -0
  720. data/samples/mdi/tn_mdi.png +0 -0
  721. data/samples/minimal/minimal.rb +95 -0
  722. data/samples/minimal/mondrian.ico +0 -0
  723. data/samples/minimal/mondrian.png +0 -0
  724. data/samples/minimal/nothing.rb +38 -0
  725. data/samples/minimal/tn_minimal.png +0 -0
  726. data/samples/minimal/tn_nothing.png +0 -0
  727. data/samples/printing/mondrian.ico +0 -0
  728. data/samples/printing/mondrian.xpm +44 -0
  729. data/samples/printing/printing.rb +499 -0
  730. data/samples/printing/printing2.rb +251 -0
  731. data/samples/printing/sample-text.txt +213 -0
  732. data/samples/printing/tn_printing.png +0 -0
  733. data/samples/printing/tn_printing2.png +0 -0
  734. data/samples/propgrid/propgrid.rb +2707 -0
  735. data/samples/propgrid/propgrid_minimal.rb +106 -0
  736. data/samples/propgrid/sample_props.rb +434 -0
  737. data/samples/propgrid/tn_propgrid.png +0 -0
  738. data/samples/propgrid/tn_propgrid_minimal.png +0 -0
  739. data/samples/ribbon/align_center.xpm +21 -0
  740. data/samples/ribbon/align_left.xpm +21 -0
  741. data/samples/ribbon/align_right.xpm +21 -0
  742. data/samples/ribbon/aui_style.xpm +53 -0
  743. data/samples/ribbon/auto_crop_selection.xpm +55 -0
  744. data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
  745. data/samples/ribbon/circle.xpm +38 -0
  746. data/samples/ribbon/circle_small.xpm +22 -0
  747. data/samples/ribbon/colours.xpm +25 -0
  748. data/samples/ribbon/cross.xpm +38 -0
  749. data/samples/ribbon/empty.xpm +23 -0
  750. data/samples/ribbon/expand_selection_h.xpm +46 -0
  751. data/samples/ribbon/expand_selection_v.xpm +46 -0
  752. data/samples/ribbon/eye.xpm +26 -0
  753. data/samples/ribbon/hexagon.xpm +38 -0
  754. data/samples/ribbon/msw_style.xpm +65 -0
  755. data/samples/ribbon/position_left.xpm +22 -0
  756. data/samples/ribbon/position_top.xpm +22 -0
  757. data/samples/ribbon/ribbon.rb +900 -0
  758. data/samples/ribbon/ribbon.xpm +54 -0
  759. data/samples/ribbon/selection_panel.xpm +23 -0
  760. data/samples/ribbon/square.xpm +38 -0
  761. data/samples/ribbon/tn_ribbon.png +0 -0
  762. data/samples/ribbon/triangle.xpm +38 -0
  763. data/samples/sample.xpm +475 -0
  764. data/samples/sampler/back.xpm +21 -0
  765. data/samples/sampler/copy.xpm +44 -0
  766. data/samples/sampler/cut.xpm +46 -0
  767. data/samples/sampler/editor.rb +534 -0
  768. data/samples/sampler/ext.rb +51 -0
  769. data/samples/sampler/filesave.xpm +42 -0
  770. data/samples/sampler/find.xpm +62 -0
  771. data/samples/sampler/findrepl.xpm +63 -0
  772. data/samples/sampler/forward.xpm +21 -0
  773. data/samples/sampler/paste.xpm +46 -0
  774. data/samples/sampler/play.xpm +24 -0
  775. data/samples/sampler/redo.xpm +58 -0
  776. data/samples/sampler/sample.rb +337 -0
  777. data/samples/sampler/stc_editor.rb +326 -0
  778. data/samples/sampler/txt_editor.rb +135 -0
  779. data/samples/sampler/undo.xpm +58 -0
  780. data/samples/sampler.rb +401 -0
  781. data/samples/splash/mobile.xpm +1835 -0
  782. data/samples/splash/splash.png +0 -0
  783. data/samples/splash/splash.rb +164 -0
  784. data/samples/splash/tn_splash.png +0 -0
  785. data/samples/text/document-open.png +0 -0
  786. data/samples/text/document-save.png +0 -0
  787. data/samples/text/edit-copy.png +0 -0
  788. data/samples/text/edit-cut.png +0 -0
  789. data/samples/text/edit-paste.png +0 -0
  790. data/samples/text/edit-redo.png +0 -0
  791. data/samples/text/edit-undo.png +0 -0
  792. data/samples/text/format-text-bold.png +0 -0
  793. data/samples/text/format-text-italic.png +0 -0
  794. data/samples/text/format-text-underline.png +0 -0
  795. data/samples/text/mondrian.ico +0 -0
  796. data/samples/text/mondrian.xpm +44 -0
  797. data/samples/text/preferences-desktop-font.png +0 -0
  798. data/samples/text/rich_textctrl.rb +326 -0
  799. data/samples/text/scintilla.rb +179 -0
  800. data/samples/text/textctrl.rb +124 -0
  801. data/samples/text/tn_rich_textctrl.png +0 -0
  802. data/samples/text/tn_scintilla.png +0 -0
  803. data/samples/text/tn_textctrl.png +0 -0
  804. data/samples/text/tn_unicode.png +0 -0
  805. data/samples/text/unicode.rb +238 -0
  806. data/samples/text/utf8.txt +15 -0
  807. data/samples/treectrl/checked.xpm +54 -0
  808. data/samples/treectrl/icon1.xpm +79 -0
  809. data/samples/treectrl/icon2.xpm +53 -0
  810. data/samples/treectrl/icon3.xpm +79 -0
  811. data/samples/treectrl/icon4.xpm +43 -0
  812. data/samples/treectrl/icon5.xpm +79 -0
  813. data/samples/treectrl/state1.xpm +145 -0
  814. data/samples/treectrl/state2.xpm +144 -0
  815. data/samples/treectrl/state3.xpm +142 -0
  816. data/samples/treectrl/state4.xpm +145 -0
  817. data/samples/treectrl/state5.xpm +85 -0
  818. data/samples/treectrl/tn_treectrl.png +0 -0
  819. data/samples/treectrl/treectrl.rb +1720 -0
  820. data/samples/treectrl/unchecked.xpm +30 -0
  821. data/samples/xrc/custom_dialog.xrc +46 -0
  822. data/samples/xrc/custom_xrc_sample.rb +84 -0
  823. data/samples/xrc/samples.xrc +46 -0
  824. data/samples/xrc/tn_xrc_sample.png +0 -0
  825. data/samples/xrc/xrc_sample.rb +86 -0
  826. data/tests/test_basic.rb +20 -0
  827. data/tests/test_clipboard.rb +241 -0
  828. data/tests/test_dialog.rb +28 -0
  829. data/tests/test_event_handling.rb +103 -0
  830. data/tests/test_events.rb +45 -0
  831. data/tests/test_geometry.rb +141 -0
  832. data/tests/test_intl.rb +107 -0
  833. data/tests/test_item_data.rb +120 -0
  834. data/tests/test_variant.rb +151 -0
  835. data/tests/testapp.rb +40 -0
  836. data/tests/testapp_noframe.rb +28 -0
  837. metadata +928 -0
@@ -0,0 +1,2193 @@
1
+ # :stopdoc:
2
+ # This file is automatically generated by the WXRuby3 documentation
3
+ # generator. Do not alter this file.
4
+ # :startdoc:
5
+
6
+
7
+ module Wx::PG
8
+
9
+ # Basic property with boolean value.
10
+ # <b>Supported special attributes:</b>
11
+ # - {Wx::PG::PG_BOOL_USE_CHECKBOX}: Set to true to use check box editor instead of combo box.- {Wx::PG::PG_BOOL_USE_DOUBLE_CLICK_CYCLING}: Set to true to cycle combo box instead showing the list.
12
+ #
13
+ class BoolProperty < PGProperty
14
+
15
+ # @param label [String]
16
+ # @param name [String]
17
+ # @param value [true,false]
18
+ # @return [BoolProperty]
19
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=false) end
20
+
21
+ # Converts property value into a text representation.
22
+ # Default implementation calls {Wx::PG::BoolProperty#generate_composed_value}.
23
+ # @param value [Wx::Variant] Value to be converted.
24
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
25
+ # @return [String]
26
+ def value_to_string(value, argFlags=0) end
27
+
28
+ # Converts text into {Wx::Variant} value appropriate for this property.
29
+ # Returns true if resulting {Wx::Variant} value was different.
30
+ #
31
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
32
+ #
33
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
34
+ # @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.
35
+ # @param text [String] Text to be translated into variant.
36
+ # @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::BoolProperty#value_to_string} called with this same flag).
37
+ # @return [void]
38
+ def string_to_value(variant, text, argFlags=0) end
39
+
40
+ # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
41
+ # Returns true if resulting {Wx::Variant} value was different.
42
+ #
43
+ # - 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).
44
+ # @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.
45
+ # @param number [Integer] Integer to be translated into variant.
46
+ # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
47
+ # @return [void]
48
+ def int_to_value(variant, number, argFlags=0) end
49
+
50
+ # Reimplement this member function to add special handling for attributes of this property.
51
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
52
+ #
53
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
54
+ # @param name [String]
55
+ # @param value [Wx::Variant]
56
+ # @return [void]
57
+ def do_set_attribute(name, value) end
58
+
59
+ #
60
+ # @return [Wx::Variant]
61
+ def value_; end
62
+ #
63
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
64
+ # @return [void]
65
+ def value_=(val); end
66
+
67
+ end # BoolProperty
68
+
69
+ # Property representing {Wx::DateTime}.
70
+ # <b>Supported special attributes:</b>
71
+ # - {Wx::PG::PG_DATE_FORMAT}: Determines displayed date format.- {Wx::PG::PG_DATE_PICKER_STYLE}: Determines window style used with {Wx::DatePickerCtrl}. Default is {Wx::DP_DEFAULT} | {Wx::DP_SHOWCENTURY}. Using {Wx::DP_ALLOWNONE} enables additional support for unspecified property value.
72
+ #
73
+ class DateProperty < PGProperty
74
+
75
+ # @param label [String]
76
+ # @param name [String]
77
+ # @param value [Time,Date,DateTime]
78
+ # @return [DateProperty]
79
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=(Wx::DateTime.new())) end
80
+
81
+ # This virtual function is called after m_value has been set.
82
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::DateProperty#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::DateProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
83
+ # @return [void]
84
+ def on_set_value; end
85
+
86
+ # Converts property value into a text representation.
87
+ # Default implementation calls {Wx::PG::DateProperty#generate_composed_value}.
88
+ # @param value [Wx::Variant] Value to be converted.
89
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
90
+ # @return [String]
91
+ def value_to_string(value, argFlags=0) end
92
+
93
+ # Converts text into {Wx::Variant} value appropriate for this property.
94
+ # Returns true if resulting {Wx::Variant} value was different.
95
+ #
96
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
97
+ #
98
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
99
+ # @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.
100
+ # @param text [String] Text to be translated into variant.
101
+ # @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::DateProperty#value_to_string} called with this same flag).
102
+ # @return [void]
103
+ def string_to_value(variant, text, argFlags=0) end
104
+
105
+ # Reimplement this member function to add special handling for attributes of this property.
106
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
107
+ #
108
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
109
+ # @param name [String]
110
+ # @param value [Wx::Variant]
111
+ # @return [void]
112
+ def do_set_attribute(name, value) end
113
+
114
+ # @param format [String]
115
+ # @return [void]
116
+ def set_format(format) end
117
+ alias_method :format=, :set_format
118
+
119
+ # @return [Wx::String]
120
+ def get_format; end
121
+ alias_method :format, :get_format
122
+
123
+ # @param dt [Time,Date,DateTime]
124
+ # @return [void]
125
+ def set_date_value(dt) end
126
+ alias_method :date_value=, :set_date_value
127
+
128
+ # @return [Time,Date,DateTime]
129
+ def get_date_value; end
130
+ alias_method :date_value, :get_date_value
131
+
132
+ # @return [Integer]
133
+ def get_date_picker_style; end
134
+ alias_method :date_picker_style, :get_date_picker_style
135
+
136
+ #
137
+ #
138
+ #
139
+ # @return [String]
140
+ def format_; end
141
+ #
142
+ #
143
+ #
144
+ # @param val [String]
145
+ # @return [void]
146
+ def format_=(val); end
147
+
148
+ #
149
+ #
150
+ #
151
+ # @return [Integer]
152
+ def dp_style_; end
153
+ #
154
+ #
155
+ #
156
+ # @param val [Integer]
157
+ # @return [void]
158
+ def dp_style_=(val); end
159
+
160
+ #
161
+ # @return [Wx::Variant]
162
+ def value_; end
163
+ #
164
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
165
+ # @return [void]
166
+ def value_=(val); end
167
+
168
+ end # DateProperty
169
+
170
+ # Represents a bit set that fits in a long integer.
171
+ # {Wx::PG::BoolProperty} sub-properties are created for editing individual bits. Textctrl is created to manually edit the flags as a text; a continuous sequence of spaces, commas and semicolons is considered as a flag id separator. <b>Note:</b> When changing "choices" (ie. flag labels) of {Wx::PG::FlagsProperty}, you will need to use SetPropertyChoices - otherwise they will not get updated properly.
172
+ #
173
+ class FlagsProperty < PGProperty
174
+
175
+ # @overload initialize(label, name, choices, value=0)
176
+ # @param label [String]
177
+ # @param name [String]
178
+ # @param choices [Wx::PGChoices]
179
+ # @param value [Integer]
180
+ # @return [FlagsProperty]
181
+ # @overload initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, labels=(Wx::ArrayString.new()), values=(Wx::ArrayInt.new()), value=0)
182
+ # @param label [String]
183
+ # @param name [String]
184
+ # @param labels [Array<String>]
185
+ # @param values [Array<Integer>]
186
+ # @param value [Integer]
187
+ # @return [FlagsProperty]
188
+ def initialize(*args) end
189
+
190
+ # This virtual function is called after m_value has been set.
191
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::FlagsProperty#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::FlagsProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
192
+ # @return [void]
193
+ def on_set_value; end
194
+
195
+ # Converts property value into a text representation.
196
+ # Default implementation calls {Wx::PG::FlagsProperty#generate_composed_value}.
197
+ # @param value [Wx::Variant] Value to be converted.
198
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
199
+ # @return [String]
200
+ def value_to_string(value, argFlags=0) end
201
+
202
+ # Converts text into {Wx::Variant} value appropriate for this property.
203
+ # Returns true if resulting {Wx::Variant} value was different.
204
+ #
205
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
206
+ #
207
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
208
+ # @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.
209
+ # @param text [String] Text to be translated into variant.
210
+ # @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::FlagsProperty#value_to_string} called with this same flag).
211
+ # @return [void]
212
+ def string_to_value(variant, text, argFlags) end
213
+
214
+ # Called after value of a child property has been altered.
215
+ # Must return new value of the whole property (after any alterations warranted by child's new value).
216
+ # 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::FlagsProperty#get_value} or m_value should not be relied on.
217
+ # Sample pseudo-code implementation:
218
+ #
219
+ # wxVariant MyProperty::ChildChanged( wxVariant& thisValue,
220
+ # int childIndex,
221
+ # wxVariant& childValue ) const
222
+ # {
223
+ # // Acquire reference to actual type of data stored in variant
224
+ # // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
225
+ # // were used to create the variant class).
226
+ # T& data = TFromVariant(thisValue);
227
+ #
228
+ # // Copy childValue into data.
229
+ # switch ( childIndex )
230
+ # {
231
+ # case 0:
232
+ # data.SetSubProp1( childvalue.GetLong() );
233
+ # break;
234
+ # case 1:
235
+ # data.SetSubProp2( childvalue.GetString() );
236
+ # break;
237
+ # ...
238
+ # }
239
+ #
240
+ # // Return altered data
241
+ # return data;
242
+ # }
243
+ #
244
+ # Modified value of the whole property.
245
+ # @param thisValue [Wx::Variant] Value of this property. Changed value should be returned (in previous versions of {Wx::PG::PropertyGrid} it was only necessary to write value back to this argument).
246
+ # @param childIndex [Integer] Index of child changed (you can use Item(childIndex) to get child property).
247
+ # @param childValue [Wx::Variant] (Pending) value of the child property.
248
+ # @return [Wx::Variant]
249
+ def child_changed(thisValue, childIndex, childValue) end
250
+
251
+ # Refresh values of child properties.
252
+ # Automatically called after value is set.
253
+ # @return [void]
254
+ def refresh_children; end
255
+
256
+ # Reimplement this member function to add special handling for attributes of this property.
257
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
258
+ #
259
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
260
+ # @param name [String]
261
+ # @param value [Wx::Variant]
262
+ # @return [void]
263
+ def do_set_attribute(name, value) end
264
+
265
+ # Returns which choice is currently selected.
266
+ # Only applies to properties which have choices.
267
+ # Needs to reimplemented in derived class if property value does not map directly to a choice. Integer as index, bool, and string usually do.
268
+ # @return [Integer]
269
+ def get_choice_selection; end
270
+ alias_method :choice_selection, :get_choice_selection
271
+
272
+ # @return [Integer]
273
+ def get_item_count; end
274
+ alias_method :item_count, :get_item_count
275
+
276
+ # @param ind [Integer]
277
+ # @return [Wx::String]
278
+ def get_item_label(ind) end
279
+ alias_method :item_label, :get_item_label
280
+
281
+ #
282
+ # @return [Wx::Variant]
283
+ def value_; end
284
+ #
285
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
286
+ # @return [void]
287
+ def value_=(val); end
288
+
289
+ end # FlagsProperty
290
+
291
+ # Basic property with string value.
292
+ # <b>Supported special attributes:</b>
293
+ # - {Wx::PG::PG_STRING_PASSWORD}: set to true in order to enable {Wx::TE_PASSWORD} on the editor.
294
+ #
295
+ # - If value "<composed>" is set, then actual value is formed (or composed) from values of child properties.
296
+ #
297
+ class StringProperty < PGProperty
298
+
299
+ # @param label [String]
300
+ # @param name [String]
301
+ # @param value [String]
302
+ # @return [StringProperty]
303
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::EMPTY_STRING) end
304
+
305
+ # Converts property value into a text representation.
306
+ # Default implementation calls {Wx::PG::StringProperty#generate_composed_value}.
307
+ # @param value [Wx::Variant] Value to be converted.
308
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
309
+ # @return [String]
310
+ def value_to_string(value, argFlags=0) end
311
+
312
+ # Converts text into {Wx::Variant} value appropriate for this property.
313
+ # Returns true if resulting {Wx::Variant} value was different.
314
+ #
315
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
316
+ #
317
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
318
+ # @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.
319
+ # @param text [String] Text to be translated into variant.
320
+ # @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::StringProperty#value_to_string} called with this same flag).
321
+ # @return [void]
322
+ def string_to_value(variant, text, argFlags=0) end
323
+
324
+ # Reimplement this member function to add special handling for attributes of this property.
325
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
326
+ #
327
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
328
+ # @param name [String]
329
+ # @param value [Wx::Variant]
330
+ # @return [void]
331
+ def do_set_attribute(name, value) end
332
+
333
+ # This is updated so "<composed>" special value can be handled.
334
+ # @return [void]
335
+ def on_set_value; end
336
+
337
+ #
338
+ # @return [Wx::Variant]
339
+ def value_; end
340
+ #
341
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
342
+ # @return [void]
343
+ def value_=(val); end
344
+
345
+ end # StringProperty
346
+
347
+ # Category (caption) property.
348
+ #
349
+ #
350
+ class PropertyCategory < PGProperty
351
+
352
+ # @overload initialize()
353
+ # Default constructor is only used in special cases.
354
+ # @return [PropertyCategory]
355
+ # @overload initialize(label, name=Wx::PG_LABEL)
356
+ # @param label [String]
357
+ # @param name [String]
358
+ # @return [PropertyCategory]
359
+ def initialize(*args) end
360
+
361
+ # @param wnd [Wx::Window]
362
+ # @param font [Wx::Font,Wx::FontInfo]
363
+ # @return [Integer]
364
+ def get_text_extent(wnd, font) end
365
+ alias_method :text_extent, :get_text_extent
366
+
367
+ # Converts property value into a text representation.
368
+ # Default implementation calls {Wx::PG::PropertyCategory#generate_composed_value}.
369
+ # @param value [Wx::Variant] Value to be converted.
370
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
371
+ # @return [String]
372
+ def value_to_string(value, argFlags) end
373
+
374
+ # Returns text representation of property's value.
375
+ # In older versions, this function used to be overridden to convert property's value into a string representation. This function is now handled by {Wx::PG::PropertyCategory#value_to_string}, and overriding this function now will result in run-time assertion failure.
376
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
377
+ # @return [String]
378
+ def get_value_as_string(argFlags=0) end
379
+ alias_method :value_as_string, :get_value_as_string
380
+
381
+ #
382
+ # @return [Wx::Variant]
383
+ def value_; end
384
+ #
385
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
386
+ # @return [void]
387
+ def value_=(val); end
388
+
389
+ end # PropertyCategory
390
+
391
+ # This is an abstract class which serves as a base class for the properties having a button triggering an editor dialog, like e.g.
392
+ # {Wx::PG::LongStringProperty}, {Wx::PG::DirProperty}, {Wx::PG::FileProperty}.
393
+ # <b>Supported special attributes:</b>
394
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the editor dialog.
395
+ #
396
+ class EditorDialogProperty < PGProperty
397
+
398
+ # Returns instance of a new {Wx::PG::PGEditorDialogAdapter} instance, which is used when user presses the (optional) button next to the editor control;.
399
+ # Default implementation returns NULL (i.e. no action is generated when button is pressed).
400
+ # @return [Wx::PGEditorDialogAdapter]
401
+ def get_editor_dialog; end
402
+ alias_method :editor_dialog, :get_editor_dialog
403
+
404
+ # Reimplement this member function to add special handling for attributes of this property.
405
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
406
+ #
407
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
408
+ # @param name [String]
409
+ # @param value [Wx::Variant]
410
+ # @return [void]
411
+ def do_set_attribute(name, value) end
412
+
413
+ #
414
+ #
415
+ #
416
+ # @return [String]
417
+ def dlg_title_; end
418
+ #
419
+ #
420
+ #
421
+ # @param val [String]
422
+ # @return [void]
423
+ def dlg_title_=(val); end
424
+
425
+ #
426
+ #
427
+ #
428
+ # @return [Integer]
429
+ def dlg_style_; end
430
+ #
431
+ #
432
+ #
433
+ # @param val [Integer]
434
+ # @return [void]
435
+ def dlg_style_=(val); end
436
+
437
+ #
438
+ # @return [Wx::Variant]
439
+ def value_; end
440
+ #
441
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
442
+ # @return [void]
443
+ def value_=(val); end
444
+
445
+
446
+ protected
447
+
448
+ # Constructor is protected because {Wx::PG::EditorDialogProperty} is only the base class for other property classes.
449
+ # @param label [String]
450
+ # @param name [String]
451
+ # @return [EditorDialogProperty]
452
+ def initialize(label, name) end
453
+
454
+ # Shows editor dialog.
455
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
456
+ #
457
+ # Returns true if editor dialog was not cancelled and value was updated.
458
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
459
+ # @param value [Wx::Variant] Value to be edited.
460
+ # @return [void]
461
+ def display_editor_dialog(pg, value) end
462
+
463
+ end # EditorDialogProperty
464
+
465
+ # Property that manages a list of strings.
466
+ # <b>Supported special attributes:</b>
467
+ # - {Wx::PG::PG_ARRAY_DELIMITER}: Sets string delimiter character.- {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the editor dialog (since 3.1.3).
468
+ #
469
+ class ArrayStringProperty < EditorDialogProperty
470
+
471
+ #
472
+ #
473
+ #
474
+ #
475
+ class ConversionFlags < Wx::Enum
476
+
477
+ #
478
+ #
479
+ Escape = Wx::PG::ArrayStringProperty::ConversionFlags.new(1)
480
+
481
+ #
482
+ #
483
+ QuoteStrings = Wx::PG::ArrayStringProperty::ConversionFlags.new(2)
484
+
485
+ end # ConversionFlags
486
+
487
+ # @param label [String]
488
+ # @param name [String]
489
+ # @param value [Array<String>]
490
+ # @return [ArrayStringProperty]
491
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=(Wx::ArrayString.new())) end
492
+
493
+ # This virtual function is called after m_value has been set.
494
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::ArrayStringProperty#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::ArrayStringProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
495
+ # @return [void]
496
+ def on_set_value; end
497
+
498
+ # Converts property value into a text representation.
499
+ # Default implementation calls {Wx::PG::ArrayStringProperty#generate_composed_value}.
500
+ # @param value [Wx::Variant] Value to be converted.
501
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
502
+ # @return [String]
503
+ def value_to_string(value, argFlags=0) end
504
+
505
+ # Converts text into {Wx::Variant} value appropriate for this property.
506
+ # Returns true if resulting {Wx::Variant} value was different.
507
+ #
508
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
509
+ #
510
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
511
+ # @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.
512
+ # @param text [String] Text to be translated into variant.
513
+ # @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::ArrayStringProperty#value_to_string} called with this same flag).
514
+ # @return [void]
515
+ def string_to_value(variant, text, argFlags=0) end
516
+
517
+ # Reimplement this member function to add special handling for attributes of this property.
518
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
519
+ #
520
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
521
+ # @param name [String]
522
+ # @param value [Wx::Variant]
523
+ # @return [void]
524
+ def do_set_attribute(name, value) end
525
+
526
+ # Implement in derived class for custom array-to-string conversion.
527
+ # @param arr [Array<String>]
528
+ # @param delimiter [String]
529
+ # @return [String]
530
+ def convert_array_to_string(arr, delimiter) end
531
+
532
+ # Shows string editor dialog to edit the individual item.
533
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned if that was the case.
534
+ # @param parent [Wx::Window]
535
+ # @return [String]
536
+ def on_custom_string_edit(parent) end
537
+
538
+ # Creates {Wx::PG::PGArrayEditorDialog} for string editing.
539
+ # @return [Wx::PGArrayEditorDialog]
540
+ def create_editor_dialog; end
541
+
542
+ # Generates string based on the contents of {Wx::ArrayString} src.
543
+ # @param src [Array<String>]
544
+ # @param delimiter [String]
545
+ # @param flags [Integer]
546
+ # @return [String]
547
+ def self.array_string_to_string(src, delimiter, flags) end
548
+
549
+ #
550
+ #
551
+ #
552
+ # @return [String]
553
+ def display_; end
554
+ #
555
+ #
556
+ #
557
+ # @param val [String]
558
+ # @return [void]
559
+ def display_=(val); end
560
+
561
+ #
562
+ #
563
+ #
564
+ # @return [String]
565
+ def delimiter_; end
566
+ #
567
+ #
568
+ #
569
+ # @param val [String]
570
+ # @return [void]
571
+ def delimiter_=(val); end
572
+
573
+ #
574
+ #
575
+ #
576
+ # @return [String]
577
+ def custom_btn_text_; end
578
+ #
579
+ #
580
+ #
581
+ # @param val [String]
582
+ # @return [void]
583
+ def custom_btn_text_=(val); end
584
+
585
+ #
586
+ # @return [Wx::Variant]
587
+ def value_; end
588
+ #
589
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
590
+ # @return [void]
591
+ def value_=(val); end
592
+
593
+
594
+ protected
595
+
596
+ # Shows editor dialog.
597
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
598
+ #
599
+ # Returns true if editor dialog was not cancelled and value was updated.
600
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
601
+ # @param value [Wx::Variant] Value to be edited.
602
+ # @return [void]
603
+ def display_editor_dialog(pg, value) end
604
+
605
+ end # ArrayStringProperty
606
+
607
+ # Like {Wx::PG::LongStringProperty}, but the button triggers directory selector instead.
608
+ # <b>Supported special attributes:</b>
609
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the file dialog (since 3.1.3).
610
+ #
611
+ class DirProperty < EditorDialogProperty
612
+
613
+ # @param label [String]
614
+ # @param name [String]
615
+ # @param value [String]
616
+ # @return [DirProperty]
617
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::EMPTY_STRING) end
618
+
619
+ # Converts property value into a text representation.
620
+ # Default implementation calls {Wx::PG::DirProperty#generate_composed_value}.
621
+ # @param value [Wx::Variant] Value to be converted.
622
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
623
+ # @return [String]
624
+ def value_to_string(value, argFlags=0) end
625
+
626
+ # Converts text into {Wx::Variant} value appropriate for this property.
627
+ # Returns true if resulting {Wx::Variant} value was different.
628
+ #
629
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
630
+ #
631
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
632
+ # @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.
633
+ # @param text [String] Text to be translated into variant.
634
+ # @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::DirProperty#value_to_string} called with this same flag).
635
+ # @return [void]
636
+ def string_to_value(variant, text, argFlags=0) end
637
+
638
+ # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
639
+ # Setting validator explicitly via SetPropertyValidator will override this.
640
+ # 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):
641
+ #
642
+ # wxValidator* wxMyPropertyClass::DoGetValidator () const
643
+ # {
644
+ # WX_PG_DOGETVALIDATOR_ENTRY()
645
+ #
646
+ # wxMyValidator* validator = new wxMyValidator(...);
647
+ #
648
+ # ... prepare validator...
649
+ #
650
+ # WX_PG_DOGETVALIDATOR_EXIT(validator)
651
+ # }
652
+ #
653
+ # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
654
+ # @return [Wx::Validator]
655
+ def do_get_validator; end
656
+
657
+ #
658
+ # @return [Wx::Variant]
659
+ def value_; end
660
+ #
661
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
662
+ # @return [void]
663
+ def value_=(val); end
664
+
665
+
666
+ protected
667
+
668
+ # Shows editor dialog.
669
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
670
+ #
671
+ # Returns true if editor dialog was not cancelled and value was updated.
672
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
673
+ # @param value [Wx::Variant] Value to be edited.
674
+ # @return [void]
675
+ def display_editor_dialog(pg, value) end
676
+
677
+ end # DirProperty
678
+
679
+ # Like {Wx::PG::LongStringProperty}, but the button triggers file selector instead.
680
+ # <b>Supported special attributes:</b>
681
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the file dialog (since 3.1.3).- {Wx::PG::PG_FILE_DIALOG_STYLE}: Sets a specific {Wx::FileDialog} style for the file dialog (since 2.9.4).- {Wx::PG::PG_FILE_WILDCARD}: Sets wildcard (see {Wx::FileDialog} for format details), "All files..." is default.- {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.
682
+ #
683
+ class FileProperty < EditorDialogProperty
684
+
685
+ # @param label [String]
686
+ # @param name [String]
687
+ # @param value [String]
688
+ # @return [FileProperty]
689
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::EMPTY_STRING) end
690
+
691
+ # 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::FileProperty#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::FileProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
693
+ # @return [void]
694
+ def on_set_value; end
695
+
696
+ # Converts property value into a text representation.
697
+ # Default implementation calls {Wx::PG::FileProperty#generate_composed_value}.
698
+ # @param value [Wx::Variant] Value to be converted.
699
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
700
+ # @return [String]
701
+ def value_to_string(value, argFlags=0) end
702
+
703
+ # Converts text into {Wx::Variant} value appropriate for this property.
704
+ # Returns true if resulting {Wx::Variant} value was different.
705
+ #
706
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
707
+ #
708
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
709
+ # @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.
710
+ # @param text [String] Text to be translated into variant.
711
+ # @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::FileProperty#value_to_string} called with this same flag).
712
+ # @return [void]
713
+ def string_to_value(variant, text, argFlags=0) end
714
+
715
+ # Reimplement this member function to add special handling for attributes of this property.
716
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
717
+ #
718
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
719
+ # @param name [String]
720
+ # @param value [Wx::Variant]
721
+ # @return [void]
722
+ def do_set_attribute(name, value) end
723
+
724
+ # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
725
+ # Setting validator explicitly via SetPropertyValidator will override this.
726
+ # 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):
727
+ #
728
+ # wxValidator* wxMyPropertyClass::DoGetValidator () const
729
+ # {
730
+ # WX_PG_DOGETVALIDATOR_ENTRY()
731
+ #
732
+ # wxMyValidator* validator = new wxMyValidator(...);
733
+ #
734
+ # ... prepare validator...
735
+ #
736
+ # WX_PG_DOGETVALIDATOR_EXIT(validator)
737
+ # }
738
+ #
739
+ # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
740
+ # @return [Wx::Validator]
741
+ def do_get_validator; end
742
+
743
+ # Returns filename to file represented by current value.
744
+ # @return [Wx::FileName]
745
+ def get_file_name; end
746
+ alias_method :file_name, :get_file_name
747
+
748
+ # @return [Wx::Validator]
749
+ def self.get_class_validator; end
750
+
751
+ #
752
+ #
753
+ #
754
+ # @return [String]
755
+ def m_wildcard; end
756
+ #
757
+ #
758
+ #
759
+ # @param val [String]
760
+ # @return [void]
761
+ def m_wildcard=(val); end
762
+
763
+ #
764
+ #
765
+ #
766
+ # @return [String]
767
+ def m_base_path; end
768
+ #
769
+ #
770
+ #
771
+ # @param val [String]
772
+ # @return [void]
773
+ def m_base_path=(val); end
774
+
775
+ #
776
+ #
777
+ #
778
+ # @return [String]
779
+ def m_initial_path; end
780
+ #
781
+ #
782
+ #
783
+ # @param val [String]
784
+ # @return [void]
785
+ def m_initial_path=(val); end
786
+
787
+ #
788
+ #
789
+ #
790
+ # @return [Integer]
791
+ def m_ind_filter; end
792
+ #
793
+ #
794
+ #
795
+ # @param val [Integer]
796
+ # @return [void]
797
+ def m_ind_filter=(val); end
798
+
799
+ #
800
+ # @return [Wx::Variant]
801
+ def value_; end
802
+ #
803
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
804
+ # @return [void]
805
+ def value_=(val); end
806
+
807
+
808
+ protected
809
+
810
+ # Shows editor dialog.
811
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
812
+ #
813
+ # Returns true if editor dialog was not cancelled and value was updated.
814
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
815
+ # @param value [Wx::Variant] Value to be edited.
816
+ # @return [void]
817
+ def display_editor_dialog(pg, value) end
818
+
819
+ end # FileProperty
820
+
821
+ # Property representing image file(name).
822
+ # <b>Supported special attributes:</b>
823
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the file dialog (since 3.1.3).- {Wx::PG::PG_FILE_DIALOG_STYLE}: Sets a specific {Wx::FileDialog} style for the file dialog.- {Wx::PG::PG_FILE_WILDCARD}: Sets wildcard (see {Wx::FileDialog} for format details), "All
824
+ # files..." is default.- {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.
825
+ #
826
+ class ImageFileProperty < FileProperty
827
+
828
+ # @param label [String]
829
+ # @param name [String]
830
+ # @param value [String]
831
+ # @return [ImageFileProperty]
832
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::EMPTY_STRING) end
833
+
834
+ # This virtual function is called after m_value has been set.
835
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::ImageFileProperty#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::ImageFileProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
836
+ # @return [void]
837
+ def on_set_value; end
838
+
839
+ # Returns size of the custom painted image in front of property.
840
+ # This method must be overridden to return non-default value if OnCustomPaint is to be called.
841
+ #
842
+ # - 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}.
843
+ # @param item [Integer] Normally -1, but can be an index to the property's list of items.
844
+ # @return [Wx::Size]
845
+ def on_measure_image(item) end
846
+
847
+ # Override to paint an image in front of the property value text or drop-down list item (but only if {Wx::PG::PGProperty#on_measure_image} is overridden as well).
848
+ # If property's {Wx::PG::ImageFileProperty#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::ImageFileProperty#on_measure_image} returned higher height than row height).
849
+ # NOTE: Following applies when {Wx::PG::ImageFileProperty#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.
850
+ #
851
+ # - 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.
852
+ # @see Wx::PG::ImageFileProperty#value_to_string
853
+ # @param dc [Wx::DC] {Wx::DC} to paint on.
854
+ # @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).
855
+ # @param paintdata [Wx::PGPaintData] {Wx::PG::PGPaintData} structure with much useful data about painted item.
856
+ #
857
+ # struct wxPGPaintData
858
+ # {
859
+ # // wxPropertyGrid.
860
+ # const wxPropertyGrid* m_parent;
861
+ #
862
+ # // Normally -1, otherwise index to drop-down list item that has to be drawn.
863
+ # int m_choiceItem;
864
+ #
865
+ # // Set to drawn width in OnCustomPaint (optional).
866
+ # int m_drawnWidth;
867
+ #
868
+ # // In a measure item call, set this to the height of item at m_choiceItem index
869
+ # int m_drawnHeight;
870
+ # };
871
+ # @return [void]
872
+ def on_custom_paint(dc, rect, paintdata) end
873
+
874
+ #
875
+ # @return [Wx::Variant]
876
+ def value_; end
877
+ #
878
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
879
+ # @return [void]
880
+ def value_=(val); end
881
+
882
+ end # ImageFileProperty
883
+
884
+ # Property representing {Wx::Font}.
885
+ # <b>Supported special attributes:</b>
886
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the font dialog (since 3.1.3).
887
+ #
888
+ class FontProperty < EditorDialogProperty
889
+
890
+ # @param label [String]
891
+ # @param name [String]
892
+ # @param value [Wx::Font,Wx::FontInfo]
893
+ # @return [FontProperty]
894
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=(Wx::Font.new())) end
895
+
896
+ # This virtual function is called after m_value has been set.
897
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::FontProperty#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::FontProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
898
+ # @return [void]
899
+ def on_set_value; end
900
+
901
+ # Converts property value into a text representation.
902
+ # Default implementation calls {Wx::PG::FontProperty#generate_composed_value}.
903
+ # @param value [Wx::Variant] Value to be converted.
904
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
905
+ # @return [String]
906
+ def value_to_string(value, argFlags=0) end
907
+
908
+ # Called after value of a child property has been altered.
909
+ # Must return new value of the whole property (after any alterations warranted by child's new value).
910
+ # 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::FontProperty#get_value} or m_value should not be relied on.
911
+ # Sample pseudo-code implementation:
912
+ #
913
+ # wxVariant MyProperty::ChildChanged( wxVariant& thisValue,
914
+ # int childIndex,
915
+ # wxVariant& childValue ) const
916
+ # {
917
+ # // Acquire reference to actual type of data stored in variant
918
+ # // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
919
+ # // were used to create the variant class).
920
+ # T& data = TFromVariant(thisValue);
921
+ #
922
+ # // Copy childValue into data.
923
+ # switch ( childIndex )
924
+ # {
925
+ # case 0:
926
+ # data.SetSubProp1( childvalue.GetLong() );
927
+ # break;
928
+ # case 1:
929
+ # data.SetSubProp2( childvalue.GetString() );
930
+ # break;
931
+ # ...
932
+ # }
933
+ #
934
+ # // Return altered data
935
+ # return data;
936
+ # }
937
+ #
938
+ # Modified value of the whole property.
939
+ # @param thisValue [Wx::Variant] Value of this property. Changed value should be returned (in previous versions of {Wx::PG::PropertyGrid} it was only necessary to write value back to this argument).
940
+ # @param childIndex [Integer] Index of child changed (you can use Item(childIndex) to get child property).
941
+ # @param childValue [Wx::Variant] (Pending) value of the child property.
942
+ # @return [Wx::Variant]
943
+ def child_changed(thisValue, childIndex, childValue) end
944
+
945
+ # Refresh values of child properties.
946
+ # Automatically called after value is set.
947
+ # @return [void]
948
+ def refresh_children; end
949
+
950
+ #
951
+ # @return [Wx::Variant]
952
+ def value_; end
953
+ #
954
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
955
+ # @return [void]
956
+ def value_=(val); end
957
+
958
+
959
+ protected
960
+
961
+ # Shows editor dialog.
962
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
963
+ #
964
+ # Returns true if editor dialog was not cancelled and value was updated.
965
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
966
+ # @param value [Wx::Variant] Value to be edited.
967
+ # @return [void]
968
+ def display_editor_dialog(pg, value) end
969
+
970
+ end # FontProperty
971
+
972
+ # Like {Wx::PG::StringProperty}, but has a button that triggers a small text editor dialog.
973
+ # <b>Supported special attributes:</b>
974
+ # - {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the text editor dialog (since 3.1.3).
975
+ #
976
+ class LongStringProperty < EditorDialogProperty
977
+
978
+ # @param label [String]
979
+ # @param name [String]
980
+ # @param value [String]
981
+ # @return [LongStringProperty]
982
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::EMPTY_STRING) end
983
+
984
+ # Converts property value into a text representation.
985
+ # Default implementation calls {Wx::PG::LongStringProperty#generate_composed_value}.
986
+ # @param value [Wx::Variant] Value to be converted.
987
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
988
+ # @return [String]
989
+ def value_to_string(value, argFlags=0) end
990
+
991
+ # Converts text into {Wx::Variant} value appropriate for this property.
992
+ # Returns true if resulting {Wx::Variant} value was different.
993
+ #
994
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
995
+ #
996
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
997
+ # @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.
998
+ # @param text [String] Text to be translated into variant.
999
+ # @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::LongStringProperty#value_to_string} called with this same flag).
1000
+ # @return [void]
1001
+ def string_to_value(variant, text, argFlags=0) end
1002
+
1003
+ #
1004
+ # @return [Wx::Variant]
1005
+ def value_; end
1006
+ #
1007
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1008
+ # @return [void]
1009
+ def value_=(val); end
1010
+
1011
+
1012
+ protected
1013
+
1014
+ # Shows editor dialog.
1015
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
1016
+ #
1017
+ # Returns true if editor dialog was not cancelled and value was updated.
1018
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
1019
+ # @param value [Wx::Variant] Value to be edited.
1020
+ # @return [void]
1021
+ def display_editor_dialog(pg, value) end
1022
+
1023
+ end # LongStringProperty
1024
+
1025
+ # Property that manages a value resulting from {Wx::MultiChoiceDialog}.
1026
+ # Value is array of strings. You can get value as array of choice values/indices by calling {Wx::PG::MultiChoiceProperty#get_value_as_array_int}.
1027
+ # <b>Supported special attributes:</b>
1028
+ # - {Wx::PG::PG_ATTR_MULTICHOICE_USERSTRINGMODE}: If > 0, allow user to manually enter strings that are not in the list of choices. If this value is 1, user strings are preferably placed in front of valid choices. If value is 2, then those strings will placed behind valid choices.- {Wx::PG::PG_DIALOG_TITLE}: Sets a specific title for the editor dialog (since 3.1.3).
1029
+ #
1030
+ class MultiChoiceProperty < EditorDialogProperty
1031
+
1032
+ # @overload initialize(label, name, strings, value)
1033
+ # @param label [String]
1034
+ # @param name [String]
1035
+ # @param strings [Array<String>]
1036
+ # @param value [Array<String>]
1037
+ # @return [MultiChoiceProperty]
1038
+ # @overload initialize(label, name, choices, value=(Wx::ArrayString.new()))
1039
+ # @param label [String]
1040
+ # @param name [String]
1041
+ # @param choices [Wx::PGChoices]
1042
+ # @param value [Array<String>]
1043
+ # @return [MultiChoiceProperty]
1044
+ # @overload initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=(Wx::ArrayString.new()))
1045
+ # @param label [String]
1046
+ # @param name [String]
1047
+ # @param value [Array<String>]
1048
+ # @return [MultiChoiceProperty]
1049
+ def initialize(*args) end
1050
+
1051
+ # This virtual function is called after m_value has been set.
1052
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::MultiChoiceProperty#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::MultiChoiceProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
1053
+ # @return [void]
1054
+ def on_set_value; end
1055
+
1056
+ # Converts property value into a text representation.
1057
+ # Default implementation calls {Wx::PG::MultiChoiceProperty#generate_composed_value}.
1058
+ # @param value [Wx::Variant] Value to be converted.
1059
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1060
+ # @return [String]
1061
+ def value_to_string(value, argFlags=0) end
1062
+
1063
+ # Converts text into {Wx::Variant} value appropriate for this property.
1064
+ # Returns true if resulting {Wx::Variant} value was different.
1065
+ #
1066
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1067
+ #
1068
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1069
+ # @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.
1070
+ # @param text [String] Text to be translated into variant.
1071
+ # @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::MultiChoiceProperty#value_to_string} called with this same flag).
1072
+ # @return [void]
1073
+ def string_to_value(variant, text, argFlags=0) end
1074
+
1075
+ # @return [Array<Integer>]
1076
+ def get_value_as_array_int; end
1077
+ alias_method :value_as_array_int, :get_value_as_array_int
1078
+
1079
+ #
1080
+ #
1081
+ #
1082
+ # @return [String]
1083
+ def display_; end
1084
+ #
1085
+ #
1086
+ #
1087
+ # @param val [String]
1088
+ # @return [void]
1089
+ def display_=(val); end
1090
+
1091
+ #
1092
+ #
1093
+ #
1094
+ # @return [Integer]
1095
+ def user_string_mode_; end
1096
+ #
1097
+ #
1098
+ #
1099
+ # @param val [Integer]
1100
+ # @return [void]
1101
+ def user_string_mode_=(val); end
1102
+
1103
+ # @param value [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1104
+ # @return [String]
1105
+ def generate_value_as_string(value) end
1106
+
1107
+ # @return [Array<Integer>]
1108
+ def get_value_as_indices; end
1109
+ alias_method :value_as_indices, :get_value_as_indices
1110
+
1111
+ #
1112
+ # @return [Wx::Variant]
1113
+ def value_; end
1114
+ #
1115
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1116
+ # @return [void]
1117
+ def value_=(val); end
1118
+
1119
+
1120
+ protected
1121
+
1122
+ # Shows editor dialog.
1123
+ # Value to be edited should be read from value, and if dialog is not cancelled, it should be stored back and true should be returned.
1124
+ #
1125
+ # Returns true if editor dialog was not cancelled and value was updated.
1126
+ # @param pg [Wx::PropertyGrid] Property grid in which property is displayed.
1127
+ # @param value [Wx::Variant] Value to be edited.
1128
+ # @return [void]
1129
+ def display_editor_dialog(pg, value) end
1130
+
1131
+ end # MultiChoiceProperty
1132
+
1133
+ # This is an abstract class which serves as a base class for numeric properties, like {Wx::PG::IntProperty}, {Wx::PG::UIntProperty}, {Wx::PG::FloatProperty}.
1134
+ # <b>Supported special attributes:</b>
1135
+ # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}: Specify acceptable value range.- {Wx::PG::PG_ATTR_SPINCTRL_STEP}: How much number changes when SpinCtrl editor button is pressed (or up/down on keyboard).- {Wx::PG::PG_ATTR_SPINCTRL_WRAP}: Specify if value modified with SpinCtrl editor wraps at Min/Max.- {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: Specify if value can also by changed with SpinCtrl editor by moving mouse when left mouse button is being pressed.
1136
+ #
1137
+ class NumericProperty < PGProperty
1138
+
1139
+ # Reimplement this member function to add special handling for attributes of this property.
1140
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
1141
+ #
1142
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
1143
+ # @param name [String]
1144
+ # @param value [Wx::Variant]
1145
+ # @return [void]
1146
+ def do_set_attribute(name, value) end
1147
+
1148
+ # Returns what would be the new value of the property after adding SpinCtrl editor step to the current value.
1149
+ # Current value range and wrapping (if enabled) are taken into account. This member has to be implemented in derived properties.
1150
+ #
1151
+ # Value which property would have after adding SpinCtrl editor step.
1152
+ #
1153
+ # Current property value is not changed.
1154
+ # @param stepScale [Integer] SpinCtrl editor step is first multiplied by this factor and next added to the current value.
1155
+ # @return [Wx::Variant]
1156
+ def add_spin_step_value(stepScale) end
1157
+
1158
+ # Return true if value can be changed with SpinCtrl editor by moving the mouse.
1159
+ # @return [void]
1160
+ def use_spin_motion; end
1161
+
1162
+ #
1163
+ #
1164
+ #
1165
+ # @return [Wx::Variant]
1166
+ def min_val_; end
1167
+ #
1168
+ #
1169
+ #
1170
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1171
+ # @return [void]
1172
+ def min_val_=(val); end
1173
+
1174
+ #
1175
+ #
1176
+ #
1177
+ # @return [Wx::Variant]
1178
+ def max_val_; end
1179
+ #
1180
+ #
1181
+ #
1182
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1183
+ # @return [void]
1184
+ def max_val_=(val); end
1185
+
1186
+ #
1187
+ #
1188
+ #
1189
+ # @return []
1190
+ def spin_motion_; end
1191
+ #
1192
+ #
1193
+ #
1194
+ # @param val [true,false]
1195
+ # @return [void]
1196
+ def spin_motion_=(val); end
1197
+
1198
+ #
1199
+ #
1200
+ #
1201
+ # @return [Wx::Variant]
1202
+ def spin_step_; end
1203
+ #
1204
+ #
1205
+ #
1206
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1207
+ # @return [void]
1208
+ def spin_step_=(val); end
1209
+
1210
+ #
1211
+ #
1212
+ #
1213
+ # @return []
1214
+ def spin_wrap_; end
1215
+ #
1216
+ #
1217
+ #
1218
+ # @param val [true,false]
1219
+ # @return [void]
1220
+ def spin_wrap_=(val); end
1221
+
1222
+ #
1223
+ # @return [Wx::Variant]
1224
+ def value_; end
1225
+ #
1226
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1227
+ # @return [void]
1228
+ def value_=(val); end
1229
+
1230
+
1231
+ protected
1232
+
1233
+ # Constructor is protected because {Wx::PG::NumericProperty} is only a base class for other numeric property classes.
1234
+ # @param label [String]
1235
+ # @param name [String]
1236
+ # @return [NumericProperty]
1237
+ def initialize(label, name) end
1238
+
1239
+ end # NumericProperty
1240
+
1241
+ # Basic property with integer value.
1242
+ # Seamlessly supports 64-bit integer ({Wx::LongLong}) on overflow.
1243
+ # <b>Example how to use seamless 64-bit integer support</b>
1244
+ # Getting value:
1245
+ #
1246
+ # wxLongLong_t value = pg->GetPropertyValueAsLongLong();
1247
+ #
1248
+ # or
1249
+ #
1250
+ # wxLongLong_t value;
1251
+ # wxVariant variant = property->GetValue();
1252
+ # if ( variant.GetType() == "wxLongLong" )
1253
+ # value = wxLongLongFromVariant(variant);
1254
+ # else
1255
+ # value = variant.GetLong();
1256
+ #
1257
+ # Setting value:
1258
+ #
1259
+ # pg->SetPropertyValue(longLongVal);
1260
+ #
1261
+ # or
1262
+ #
1263
+ # property->SetValue(WXVARIANT(longLongVal));
1264
+ #
1265
+ # <b>Supported special attributes:</b>
1266
+ # - {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}, {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: like in {Wx::PG::NumericProperty}.
1267
+ #
1268
+ class IntProperty < NumericProperty
1269
+
1270
+ # @overload initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=0)
1271
+ # @param label [String]
1272
+ # @param name [String]
1273
+ # @param value [Integer]
1274
+ # @return [IntProperty]
1275
+ # @overload initialize(label, name, value)
1276
+ # @param label [String]
1277
+ # @param name [String]
1278
+ # @param value [Integer]
1279
+ # @return [IntProperty]
1280
+ def initialize(*args) end
1281
+
1282
+ # Converts property value into a text representation.
1283
+ # Default implementation calls {Wx::PG::IntProperty#generate_composed_value}.
1284
+ # @param value [Wx::Variant] Value to be converted.
1285
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1286
+ # @return [String]
1287
+ def value_to_string(value, argFlags=0) end
1288
+
1289
+ # Converts text into {Wx::Variant} value appropriate for this property.
1290
+ # Returns true if resulting {Wx::Variant} value was different.
1291
+ #
1292
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1293
+ #
1294
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1295
+ # @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.
1296
+ # @param text [String] Text to be translated into variant.
1297
+ # @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::IntProperty#value_to_string} called with this same flag).
1298
+ # @return [void]
1299
+ def string_to_value(variant, text, argFlags=0) end
1300
+
1301
+ # Implement this function in derived class to check the value.
1302
+ # Return true if it is ok. Returning false prevents property change events from occurring.
1303
+ #
1304
+ # - Default implementation always returns true.
1305
+ # @param value [Wx::Variant]
1306
+ # @param validationInfo [Wx::PGValidationInfo]
1307
+ # @return [void]
1308
+ def validate_value(value, validationInfo) end
1309
+
1310
+ # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
1311
+ # Returns true if resulting {Wx::Variant} value was different.
1312
+ #
1313
+ # - 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).
1314
+ # @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.
1315
+ # @param number [Integer] Integer to be translated into variant.
1316
+ # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
1317
+ # @return [void]
1318
+ def int_to_value(variant, number, argFlags=0) end
1319
+
1320
+ # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
1321
+ # Setting validator explicitly via SetPropertyValidator will override this.
1322
+ # 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):
1323
+ #
1324
+ # wxValidator* wxMyPropertyClass::DoGetValidator () const
1325
+ # {
1326
+ # WX_PG_DOGETVALIDATOR_ENTRY()
1327
+ #
1328
+ # wxMyValidator* validator = new wxMyValidator(...);
1329
+ #
1330
+ # ... prepare validator...
1331
+ #
1332
+ # WX_PG_DOGETVALIDATOR_EXIT(validator)
1333
+ # }
1334
+ #
1335
+ # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
1336
+ # @return [Wx::Validator]
1337
+ def do_get_validator; end
1338
+
1339
+ # Returns what would be the new value of the property after adding SpinCtrl editor step to the current value.
1340
+ # Current value range and wrapping (if enabled) are taken into account. This member has to be implemented in derived properties.
1341
+ #
1342
+ # Value which property would have after adding SpinCtrl editor step.
1343
+ #
1344
+ # Current property value is not changed.
1345
+ # @param stepScale [Integer] SpinCtrl editor step is first multiplied by this factor and next added to the current value.
1346
+ # @return [Wx::Variant]
1347
+ def add_spin_step_value(stepScale) end
1348
+
1349
+ # @return [Wx::Validator]
1350
+ def self.get_class_validator; end
1351
+
1352
+ #
1353
+ # @return [Wx::Variant]
1354
+ def value_; end
1355
+ #
1356
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1357
+ # @return [void]
1358
+ def value_=(val); end
1359
+
1360
+ #
1361
+ # @return [Wx::Variant]
1362
+ def min_val_; end
1363
+ #
1364
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1365
+ # @return [void]
1366
+ def min_val_=(val); end
1367
+
1368
+ #
1369
+ # @return [Wx::Variant]
1370
+ def max_val_; end
1371
+ #
1372
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1373
+ # @return [void]
1374
+ def max_val_=(val); end
1375
+
1376
+ #
1377
+ # @return []
1378
+ def spin_motion_; end
1379
+ #
1380
+ # @param val [true,false]
1381
+ # @return [void]
1382
+ def spin_motion_=(val); end
1383
+
1384
+ #
1385
+ # @return [Wx::Variant]
1386
+ def spin_step_; end
1387
+ #
1388
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1389
+ # @return [void]
1390
+ def spin_step_=(val); end
1391
+
1392
+ #
1393
+ # @return []
1394
+ def spin_wrap_; end
1395
+ #
1396
+ # @param val [true,false]
1397
+ # @return [void]
1398
+ def spin_wrap_=(val); end
1399
+
1400
+ end # IntProperty
1401
+
1402
+ # Basic property with double-precision floating point value.
1403
+ # <b>Supported special attributes:</b>
1404
+ # - {Wx::PG::PG_FLOAT_PRECISION}: Sets the (max) precision used when floating point value is rendered as text. The default -1 means infinite precision.- {Wx::PG::PG_ATTR_MIN}, {Wx::PG::PG_ATTR_MAX}, {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: like in {Wx::PG::NumericProperty}.
1405
+ #
1406
+ class FloatProperty < NumericProperty
1407
+
1408
+ # @param label [String]
1409
+ # @param name [String]
1410
+ # @param value [Float]
1411
+ # @return [FloatProperty]
1412
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=0.0) end
1413
+
1414
+ # Converts property value into a text representation.
1415
+ # Default implementation calls {Wx::PG::FloatProperty#generate_composed_value}.
1416
+ # @param value [Wx::Variant] Value to be converted.
1417
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1418
+ # @return [String]
1419
+ def value_to_string(value, argFlags=0) end
1420
+
1421
+ # Converts text into {Wx::Variant} value appropriate for this property.
1422
+ # Returns true if resulting {Wx::Variant} value was different.
1423
+ #
1424
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1425
+ #
1426
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1427
+ # @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.
1428
+ # @param text [String] Text to be translated into variant.
1429
+ # @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::FloatProperty#value_to_string} called with this same flag).
1430
+ # @return [void]
1431
+ def string_to_value(variant, text, argFlags=0) end
1432
+
1433
+ # Reimplement this member function to add special handling for attributes of this property.
1434
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
1435
+ #
1436
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
1437
+ # @param name [String]
1438
+ # @param value [Wx::Variant]
1439
+ # @return [void]
1440
+ def do_set_attribute(name, value) end
1441
+
1442
+ # Implement this function in derived class to check the value.
1443
+ # Return true if it is ok. Returning false prevents property change events from occurring.
1444
+ #
1445
+ # - Default implementation always returns true.
1446
+ # @param value [Wx::Variant]
1447
+ # @param validationInfo [Wx::PGValidationInfo]
1448
+ # @return [void]
1449
+ def validate_value(value, validationInfo) end
1450
+
1451
+ # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
1452
+ # Setting validator explicitly via SetPropertyValidator will override this.
1453
+ # 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):
1454
+ #
1455
+ # wxValidator* wxMyPropertyClass::DoGetValidator () const
1456
+ # {
1457
+ # WX_PG_DOGETVALIDATOR_ENTRY()
1458
+ #
1459
+ # wxMyValidator* validator = new wxMyValidator(...);
1460
+ #
1461
+ # ... prepare validator...
1462
+ #
1463
+ # WX_PG_DOGETVALIDATOR_EXIT(validator)
1464
+ # }
1465
+ #
1466
+ # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
1467
+ # @return [Wx::Validator]
1468
+ def do_get_validator; end
1469
+
1470
+ # Returns what would be the new value of the property after adding SpinCtrl editor step to the current value.
1471
+ # Current value range and wrapping (if enabled) are taken into account. This member has to be implemented in derived properties.
1472
+ #
1473
+ # Value which property would have after adding SpinCtrl editor step.
1474
+ #
1475
+ # Current property value is not changed.
1476
+ # @param stepScale [Integer] SpinCtrl editor step is first multiplied by this factor and next added to the current value.
1477
+ # @return [Wx::Variant]
1478
+ def add_spin_step_value(stepScale) end
1479
+
1480
+ # @return [Wx::Validator]
1481
+ def self.get_class_validator; end
1482
+
1483
+ #
1484
+ #
1485
+ #
1486
+ # @return [Integer]
1487
+ def precision_; end
1488
+ #
1489
+ #
1490
+ #
1491
+ # @param val [Integer]
1492
+ # @return [void]
1493
+ def precision_=(val); end
1494
+
1495
+ #
1496
+ # @return [Wx::Variant]
1497
+ def value_; end
1498
+ #
1499
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1500
+ # @return [void]
1501
+ def value_=(val); end
1502
+
1503
+ #
1504
+ # @return [Wx::Variant]
1505
+ def min_val_; end
1506
+ #
1507
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1508
+ # @return [void]
1509
+ def min_val_=(val); end
1510
+
1511
+ #
1512
+ # @return [Wx::Variant]
1513
+ def max_val_; end
1514
+ #
1515
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1516
+ # @return [void]
1517
+ def max_val_=(val); end
1518
+
1519
+ #
1520
+ # @return []
1521
+ def spin_motion_; end
1522
+ #
1523
+ # @param val [true,false]
1524
+ # @return [void]
1525
+ def spin_motion_=(val); end
1526
+
1527
+ #
1528
+ # @return [Wx::Variant]
1529
+ def spin_step_; end
1530
+ #
1531
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1532
+ # @return [void]
1533
+ def spin_step_=(val); end
1534
+
1535
+ #
1536
+ # @return []
1537
+ def spin_wrap_; end
1538
+ #
1539
+ # @param val [true,false]
1540
+ # @return [void]
1541
+ def spin_wrap_=(val); end
1542
+
1543
+ end # FloatProperty
1544
+
1545
+ # Basic property with unsigned integer value.
1546
+ # Seamlessly supports 64-bit integer ({Wx::ULongLong}) on overflow.
1547
+ # <b>Supported special attributes:</b>
1548
+ # - {Wx::PG::PG_UINT_BASE}: Define 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}: 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_MIN}, {Wx::PG::PG_ATTR_MAX}, {Wx::PG::PG_ATTR_SPINCTRL_STEP}, {Wx::PG::PG_ATTR_SPINCTRL_WRAP}, {Wx::PG::PG_ATTR_SPINCTRL_MOTION}: like in {Wx::PG::NumericProperty}.
1549
+ #
1550
+ # - For example how to use seamless 64-bit integer support, see {Wx::PG::IntProperty} documentation (just use {Wx::ULongLong} instead of {Wx::LongLong}).
1551
+ #
1552
+ class UIntProperty < NumericProperty
1553
+
1554
+ # @overload initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=0)
1555
+ # @param label [String]
1556
+ # @param name [String]
1557
+ # @param value [Integer]
1558
+ # @return [UIntProperty]
1559
+ # @overload initialize(label, name, value)
1560
+ # @param label [String]
1561
+ # @param name [String]
1562
+ # @param value [Integer]
1563
+ # @return [UIntProperty]
1564
+ def initialize(*args) end
1565
+
1566
+ # Converts property value into a text representation.
1567
+ # Default implementation calls {Wx::PG::UIntProperty#generate_composed_value}.
1568
+ # @param value [Wx::Variant] Value to be converted.
1569
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1570
+ # @return [String]
1571
+ def value_to_string(value, argFlags=0) end
1572
+
1573
+ # Converts text into {Wx::Variant} value appropriate for this property.
1574
+ # Returns true if resulting {Wx::Variant} value was different.
1575
+ #
1576
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1577
+ #
1578
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1579
+ # @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.
1580
+ # @param text [String] Text to be translated into variant.
1581
+ # @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::UIntProperty#value_to_string} called with this same flag).
1582
+ # @return [void]
1583
+ def string_to_value(variant, text, argFlags=0) end
1584
+
1585
+ # Reimplement this member function to add special handling for attributes of this property.
1586
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
1587
+ #
1588
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
1589
+ # @param name [String]
1590
+ # @param value [Wx::Variant]
1591
+ # @return [void]
1592
+ def do_set_attribute(name, value) end
1593
+
1594
+ # Implement this function in derived class to check the value.
1595
+ # Return true if it is ok. Returning false prevents property change events from occurring.
1596
+ #
1597
+ # - Default implementation always returns true.
1598
+ # @param value [Wx::Variant]
1599
+ # @param validationInfo [Wx::PGValidationInfo]
1600
+ # @return [void]
1601
+ def validate_value(value, validationInfo) end
1602
+
1603
+ # Returns pointer to the {Wx::Validator} that should be used with the editor of this property (NULL for no validator).
1604
+ # Setting validator explicitly via SetPropertyValidator will override this.
1605
+ # 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):
1606
+ #
1607
+ # wxValidator* wxMyPropertyClass::DoGetValidator () const
1608
+ # {
1609
+ # WX_PG_DOGETVALIDATOR_ENTRY()
1610
+ #
1611
+ # wxMyValidator* validator = new wxMyValidator(...);
1612
+ #
1613
+ # ... prepare validator...
1614
+ #
1615
+ # WX_PG_DOGETVALIDATOR_EXIT(validator)
1616
+ # }
1617
+ #
1618
+ # You can get common filename validator by returning {Wx::PG::FileProperty.get_class_validator}. {Wx::PG::DirProperty}, for example, uses it.
1619
+ # @return [Wx::Validator]
1620
+ def do_get_validator; end
1621
+
1622
+ # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
1623
+ # Returns true if resulting {Wx::Variant} value was different.
1624
+ #
1625
+ # - 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).
1626
+ # @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.
1627
+ # @param number [Integer] Integer to be translated into variant.
1628
+ # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
1629
+ # @return [void]
1630
+ def int_to_value(variant, number, argFlags=0) end
1631
+
1632
+ # Returns what would be the new value of the property after adding SpinCtrl editor step to the current value.
1633
+ # Current value range and wrapping (if enabled) are taken into account. This member has to be implemented in derived properties.
1634
+ #
1635
+ # Value which property would have after adding SpinCtrl editor step.
1636
+ #
1637
+ # Current property value is not changed.
1638
+ # @param stepScale [Integer] SpinCtrl editor step is first multiplied by this factor and next added to the current value.
1639
+ # @return [Wx::Variant]
1640
+ def add_spin_step_value(stepScale) end
1641
+
1642
+ #
1643
+ #
1644
+ #
1645
+ # @return [Integer]
1646
+ def base_; end
1647
+ #
1648
+ #
1649
+ #
1650
+ # @param val [Integer]
1651
+ # @return [void]
1652
+ def base_=(val); end
1653
+
1654
+ #
1655
+ #
1656
+ #
1657
+ # @return [Integer]
1658
+ def real_base_; end
1659
+ #
1660
+ #
1661
+ #
1662
+ # @param val [Integer]
1663
+ # @return [void]
1664
+ def real_base_=(val); end
1665
+
1666
+ #
1667
+ #
1668
+ #
1669
+ # @return [Integer]
1670
+ def prefix_; end
1671
+ #
1672
+ #
1673
+ #
1674
+ # @param val [Integer]
1675
+ # @return [void]
1676
+ def prefix_=(val); end
1677
+
1678
+ #
1679
+ # @return [Wx::Variant]
1680
+ def value_; end
1681
+ #
1682
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1683
+ # @return [void]
1684
+ def value_=(val); end
1685
+
1686
+ #
1687
+ # @return [Wx::Variant]
1688
+ def min_val_; end
1689
+ #
1690
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1691
+ # @return [void]
1692
+ def min_val_=(val); end
1693
+
1694
+ #
1695
+ # @return [Wx::Variant]
1696
+ def max_val_; end
1697
+ #
1698
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1699
+ # @return [void]
1700
+ def max_val_=(val); end
1701
+
1702
+ #
1703
+ # @return []
1704
+ def spin_motion_; end
1705
+ #
1706
+ # @param val [true,false]
1707
+ # @return [void]
1708
+ def spin_motion_=(val); end
1709
+
1710
+ #
1711
+ # @return [Wx::Variant]
1712
+ def spin_step_; end
1713
+ #
1714
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1715
+ # @return [void]
1716
+ def spin_step_=(val); end
1717
+
1718
+ #
1719
+ # @return []
1720
+ def spin_wrap_; end
1721
+ #
1722
+ # @param val [true,false]
1723
+ # @return [void]
1724
+ def spin_wrap_=(val); end
1725
+
1726
+ end # UIntProperty
1727
+
1728
+ # You can derive custom properties with choices from this class.
1729
+ # See {Wx::BaseEnumProperty} for remarks.
1730
+ #
1731
+ # - Updating private index is important. You can do this either by calling {Wx::PG::EnumProperty#set_index} in IntToValue, and then letting Wx::BaseEnumProperty::OnSetValue be called (by not implementing it, or by calling super class function in it) -OR- you can just call SetIndex in OnSetValue.
1732
+ #
1733
+ class EnumProperty < PGProperty
1734
+
1735
+ # @overload initialize(label, name, choices, value=0)
1736
+ # @param label [String]
1737
+ # @param name [String]
1738
+ # @param choices [Wx::PGChoices]
1739
+ # @param value [Integer]
1740
+ # @return [EnumProperty]
1741
+ # @overload initialize(label, name, labels, values=(Wx::ArrayInt.new()), value=0)
1742
+ # @param label [String]
1743
+ # @param name [String]
1744
+ # @param labels [Array<String>]
1745
+ # @param values [Array<Integer>]
1746
+ # @param value [Integer]
1747
+ # @return [EnumProperty]
1748
+ def initialize(*args) end
1749
+
1750
+ # @return [Integer]
1751
+ def get_item_count; end
1752
+ alias_method :item_count, :get_item_count
1753
+
1754
+ # This virtual function is called after m_value has been set.
1755
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::EnumProperty#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::EnumProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
1756
+ # @return [void]
1757
+ def on_set_value; end
1758
+
1759
+ # Converts property value into a text representation.
1760
+ # Default implementation calls {Wx::PG::EnumProperty#generate_composed_value}.
1761
+ # @param value [Wx::Variant] Value to be converted.
1762
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1763
+ # @return [String]
1764
+ def value_to_string(value, argFlags=0) end
1765
+
1766
+ # Converts text into {Wx::Variant} value appropriate for this property.
1767
+ # Returns true if resulting {Wx::Variant} value was different.
1768
+ #
1769
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1770
+ #
1771
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1772
+ # @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.
1773
+ # @param text [String] Text to be translated into variant.
1774
+ # @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::EnumProperty#value_to_string} called with this same flag).
1775
+ # @return [void]
1776
+ def string_to_value(variant, text, argFlags=0) end
1777
+
1778
+ # Implement this function in derived class to check the value.
1779
+ # Return true if it is ok. Returning false prevents property change events from occurring.
1780
+ #
1781
+ # - Default implementation always returns true.
1782
+ # @param value [Wx::Variant]
1783
+ # @param validationInfo [Wx::PGValidationInfo]
1784
+ # @return [void]
1785
+ def validate_value(value, validationInfo) end
1786
+
1787
+ # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
1788
+ # Returns true if resulting {Wx::Variant} value was different.
1789
+ #
1790
+ # - 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).
1791
+ # @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.
1792
+ # @param number [Integer] Integer to be translated into variant.
1793
+ # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
1794
+ # @return [void]
1795
+ def int_to_value(variant, number, argFlags=0) end
1796
+
1797
+ # @param value [Integer]
1798
+ # @return [Integer]
1799
+ def get_index_for_value(value) end
1800
+ alias_method :index_for_value, :get_index_for_value
1801
+
1802
+ # Returns which choice is currently selected.
1803
+ # Only applies to properties which have choices.
1804
+ # Needs to reimplemented in derived class if property value does not map directly to a choice. Integer as index, bool, and string usually do.
1805
+ # @return [Integer]
1806
+ def get_choice_selection; end
1807
+ alias_method :choice_selection, :get_choice_selection
1808
+
1809
+ # @return [Integer]
1810
+ def get_index; end
1811
+ alias_method :index, :get_index
1812
+
1813
+ # @param index [Integer]
1814
+ # @return [void]
1815
+ def set_index(index) end
1816
+ alias_method :index=, :set_index
1817
+
1818
+ # @param value [Wx::Variant]
1819
+ # @param text [String]
1820
+ # @param argFlags [Integer]
1821
+ # @return [void]
1822
+ def value_from_string_(value, text, argFlags) end
1823
+
1824
+ # @param value [Wx::Variant]
1825
+ # @param intVal [Integer]
1826
+ # @param argFlags [Integer]
1827
+ # @return [void]
1828
+ def value_from_int_(value, intVal, argFlags) end
1829
+
1830
+ #
1831
+ # @return [Wx::Variant]
1832
+ def value_; end
1833
+ #
1834
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1835
+ # @return [void]
1836
+ def value_=(val); end
1837
+
1838
+ end # EnumProperty
1839
+
1840
+ # Property representing {Wx::Cursor}.
1841
+ #
1842
+ #
1843
+ class CursorProperty < EnumProperty
1844
+
1845
+ # @param label [String]
1846
+ # @param name [String]
1847
+ # @param value [Integer]
1848
+ # @return [CursorProperty]
1849
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=0) end
1850
+
1851
+ # Returns size of the custom painted image in front of property.
1852
+ # This method must be overridden to return non-default value if OnCustomPaint is to be called.
1853
+ #
1854
+ # - 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}.
1855
+ # @param item [Integer] Normally -1, but can be an index to the property's list of items.
1856
+ # @return [Wx::Size]
1857
+ def on_measure_image(item) end
1858
+
1859
+ # Override to paint an image in front of the property value text or drop-down list item (but only if {Wx::PG::PGProperty#on_measure_image} is overridden as well).
1860
+ # If property's {Wx::PG::CursorProperty#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::CursorProperty#on_measure_image} returned higher height than row height).
1861
+ # NOTE: Following applies when {Wx::PG::CursorProperty#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.
1862
+ #
1863
+ # - 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.
1864
+ # @see Wx::PG::CursorProperty#value_to_string
1865
+ # @param dc [Wx::DC] {Wx::DC} to paint on.
1866
+ # @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).
1867
+ # @param paintdata [Wx::PGPaintData] {Wx::PG::PGPaintData} structure with much useful data about painted item.
1868
+ #
1869
+ # struct wxPGPaintData
1870
+ # {
1871
+ # // wxPropertyGrid.
1872
+ # const wxPropertyGrid* m_parent;
1873
+ #
1874
+ # // Normally -1, otherwise index to drop-down list item that has to be drawn.
1875
+ # int m_choiceItem;
1876
+ #
1877
+ # // Set to drawn width in OnCustomPaint (optional).
1878
+ # int m_drawnWidth;
1879
+ #
1880
+ # // In a measure item call, set this to the height of item at m_choiceItem index
1881
+ # int m_drawnHeight;
1882
+ # };
1883
+ # @return [void]
1884
+ def on_custom_paint(dc, rect, paintdata) end
1885
+
1886
+ #
1887
+ # @return [Wx::Variant]
1888
+ def value_; end
1889
+ #
1890
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1891
+ # @return [void]
1892
+ def value_=(val); end
1893
+
1894
+ end # CursorProperty
1895
+
1896
+ # {Wx::PG::EnumProperty} with {Wx::String} value and writable combo box editor.
1897
+ # Uses int value, similar to {Wx::PG::EnumProperty}, unless text entered by user is not in choices (in which case string value is used).
1898
+ #
1899
+ class EditEnumProperty < EnumProperty
1900
+
1901
+ # @overload initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, labels=(Wx::ArrayString.new()), values=(Wx::ArrayInt.new()), value=Wx::EMPTY_STRING)
1902
+ # @param label [String]
1903
+ # @param name [String]
1904
+ # @param labels [Array<String>]
1905
+ # @param values [Array<Integer>]
1906
+ # @param value [String]
1907
+ # @return [EditEnumProperty]
1908
+ # @overload initialize(label, name, choices, value=Wx::EMPTY_STRING)
1909
+ # @param label [String]
1910
+ # @param name [String]
1911
+ # @param choices [Wx::PGChoices]
1912
+ # @param value [String]
1913
+ # @return [EditEnumProperty]
1914
+ def initialize(*args) end
1915
+
1916
+ #
1917
+ # @return [Wx::Variant]
1918
+ def value_; end
1919
+ #
1920
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
1921
+ # @return [void]
1922
+ def value_=(val); end
1923
+
1924
+ end # EditEnumProperty
1925
+
1926
+ # Has dropdown list of wxWidgets system colours.
1927
+ # Value used is of {Wx::PG::ColourPropertyValue} type.
1928
+ # <b>Supported special attributes:</b> {Wx::PG::PG_COLOUR_ALLOW_CUSTOM}, {Wx::PG::PG_COLOUR_HAS_ALPHA}
1929
+ #
1930
+ class SystemColourProperty < EnumProperty
1931
+
1932
+ # @param label [String]
1933
+ # @param name [String]
1934
+ # @param value [Wx::ColourPropertyValue]
1935
+ # @return [SystemColourProperty]
1936
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=(Wx::ColourPropertyValue.new())) end
1937
+
1938
+ # This virtual function is called after m_value has been set.
1939
+ # - If m_value was set to Null variant (i.e. unspecified value), {Wx::PG::SystemColourProperty#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::SystemColourProperty#on_set_value} provides a good opportunity to convert supported values into internal type.- Default implementation does nothing.
1940
+ # @return [void]
1941
+ def on_set_value; end
1942
+
1943
+ # Converts integer (possibly a choice selection) into {Wx::Variant} value appropriate for this property.
1944
+ # Returns true if resulting {Wx::Variant} value was different.
1945
+ #
1946
+ # - 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).
1947
+ # @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.
1948
+ # @param number [Integer] Integer to be translated into variant.
1949
+ # @param argFlags [Integer] If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable value instead of displayable one.
1950
+ # @return [void]
1951
+ def int_to_value(variant, number, argFlags=0) end
1952
+
1953
+ # Override in derived class to customize how colours are printed as strings.
1954
+ # @param col [Wx::Colour,String,Symbol]
1955
+ # @param index [Integer]
1956
+ # @param argFlags [Integer]
1957
+ # @return [String]
1958
+ def colour_to_string(col, index, argFlags=0) end
1959
+
1960
+ # Returns index of entry that triggers colour picker dialog (default is last).
1961
+ # @return [Integer]
1962
+ def get_custom_colour_index; end
1963
+ alias_method :custom_colour_index, :get_custom_colour_index
1964
+
1965
+ # Converts property value into a text representation.
1966
+ # Default implementation calls {Wx::PG::SystemColourProperty#generate_composed_value}.
1967
+ # @param value [Wx::Variant] Value to be converted.
1968
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
1969
+ # @return [String]
1970
+ def value_to_string(value, argFlags=0) end
1971
+
1972
+ # Converts text into {Wx::Variant} value appropriate for this property.
1973
+ # Returns true if resulting {Wx::Variant} value was different.
1974
+ #
1975
+ # Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
1976
+ #
1977
+ # You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
1978
+ # @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.
1979
+ # @param text [String] Text to be translated into variant.
1980
+ # @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::SystemColourProperty#value_to_string} called with this same flag).
1981
+ # @return [void]
1982
+ def string_to_value(variant, text, argFlags=0) end
1983
+
1984
+ # Events received by editor widgets are processed here.
1985
+ # Note that editor class usually processes most events. Some, such as button press events of TextCtrlAndButton class, can be handled here. Also, if custom handling for regular events is desired, then that can also be done (for example, {Wx::PG::SystemColourProperty} custom handles {Wx::EVT_CHOICE} to display colour picker dialog when 'custom' selection is made).
1986
+ # If the event causes value to be changed, {Wx::PG::SystemColourProperty#set_value_in_event} should be called to set the new value.
1987
+ # The parameter event is the associated {Wx::Event}.
1988
+ #
1989
+ # Should
1990
+ #
1991
+ # return true if any changes in value should be reported.
1992
+ #
1993
+ # - 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.
1994
+ # @param propgrid [Wx::PropertyGrid]
1995
+ # @param wnd_primary [Wx::Window]
1996
+ # @param event [Wx::Event]
1997
+ # @return [void]
1998
+ def on_event(propgrid, wnd_primary, event) end
1999
+
2000
+ # Reimplement this member function to add special handling for attributes of this property.
2001
+ # Return false to have the attribute automatically stored in m_attributes. Default implementation simply does that and nothing else.
2002
+ #
2003
+ # To actually set property attribute values from the application, use {Wx::PG::PGProperty#set_attribute} instead.
2004
+ # @param name [String]
2005
+ # @param value [Wx::Variant]
2006
+ # @return [void]
2007
+ def do_set_attribute(name, value) end
2008
+
2009
+ # Returns size of the custom painted image in front of property.
2010
+ # This method must be overridden to return non-default value if OnCustomPaint is to be called.
2011
+ #
2012
+ # - 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}.
2013
+ # @param item [Integer] Normally -1, but can be an index to the property's list of items.
2014
+ # @return [Wx::Size]
2015
+ def on_measure_image(item) end
2016
+
2017
+ # Override to paint an image in front of the property value text or drop-down list item (but only if {Wx::PG::PGProperty#on_measure_image} is overridden as well).
2018
+ # If property's {Wx::PG::SystemColourProperty#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::SystemColourProperty#on_measure_image} returned higher height than row height).
2019
+ # NOTE: Following applies when {Wx::PG::SystemColourProperty#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.
2020
+ #
2021
+ # - 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.
2022
+ # @see Wx::PG::SystemColourProperty#value_to_string
2023
+ # @param dc [Wx::DC] {Wx::DC} to paint on.
2024
+ # @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).
2025
+ # @param paintdata [Wx::PGPaintData] {Wx::PG::PGPaintData} structure with much useful data about painted item.
2026
+ #
2027
+ # struct wxPGPaintData
2028
+ # {
2029
+ # // wxPropertyGrid.
2030
+ # const wxPropertyGrid* m_parent;
2031
+ #
2032
+ # // Normally -1, otherwise index to drop-down list item that has to be drawn.
2033
+ # int m_choiceItem;
2034
+ #
2035
+ # // Set to drawn width in OnCustomPaint (optional).
2036
+ # int m_drawnWidth;
2037
+ #
2038
+ # // In a measure item call, set this to the height of item at m_choiceItem index
2039
+ # int m_drawnHeight;
2040
+ # };
2041
+ # @return [void]
2042
+ def on_custom_paint(dc, rect, paintdata) end
2043
+
2044
+ # @param variant [Wx::Variant]
2045
+ # @return [void]
2046
+ def query_colour_from_user(variant) end
2047
+
2048
+ # Default is to use {Wx::SystemSettings.get_colour(index)}.
2049
+ # Override to use custom colour tables etc.
2050
+ # @param index [Integer]
2051
+ # @return [Wx::Colour]
2052
+ def get_colour(index) end
2053
+ alias_method :colour, :get_colour
2054
+
2055
+ # @param pVariant [Wx::Variant]
2056
+ # @return [Wx::ColourPropertyValue]
2057
+ def get_val(pVariant=nil) end
2058
+ alias_method :val, :get_val
2059
+
2060
+ # @param type [Integer]
2061
+ # @param colour [Wx::Colour,String,Symbol]
2062
+ # @return [void]
2063
+ def init(type, colour) end
2064
+
2065
+ # @param colour [Wx::Colour,String,Symbol]
2066
+ # @return [Integer]
2067
+ def col_to_ind(colour) end
2068
+
2069
+ #
2070
+ # @return [Wx::Variant]
2071
+ def value_; end
2072
+ #
2073
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
2074
+ # @return [void]
2075
+ def value_=(val); end
2076
+
2077
+
2078
+ protected
2079
+
2080
+ # @param v [Wx::ColourPropertyValue]
2081
+ # @return [Wx::Variant]
2082
+ def do_translate_val(v) end
2083
+
2084
+ end # SystemColourProperty
2085
+
2086
+ # Allows to select a colour from the list or with colour dialog.
2087
+ # Value used is of {Wx::PG::ColourPropertyValue} type.
2088
+ # <b>Supported special attributes:</b> {Wx::PG::PG_COLOUR_ALLOW_CUSTOM}, {Wx::PG::PG_COLOUR_HAS_ALPHA}
2089
+ #
2090
+ class ColourProperty < SystemColourProperty
2091
+
2092
+ # @param label [String]
2093
+ # @param name [String]
2094
+ # @param value [Wx::Colour,String,Symbol]
2095
+ # @return [ColourProperty]
2096
+ def initialize(label=Wx::PG_LABEL, name=Wx::PG_LABEL, value=Wx::WHITE) end
2097
+
2098
+ # Converts property value into a text representation.
2099
+ # Default implementation calls {Wx::PG::ColourProperty#generate_composed_value}.
2100
+ # @param value [Wx::Variant] Value to be converted.
2101
+ # @param argFlags [Integer] If 0 (default value), then displayed string is returned. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_FULL_VALUE} is set, returns complete, storable string value instead of displayable. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_EDITABLE_VALUE} is set, returns string value that must be editable in textctrl. If {Wx::PG::PG_MISC_ARG_FLAGS::PG_COMPOSITE_FRAGMENT} is set, returns text that is appropriate to display as a part of string property's composite text representation.
2102
+ # @return [String]
2103
+ def value_to_string(value, argFlags=0) end
2104
+
2105
+ # Default is to use {Wx::SystemSettings.get_colour(index)}.
2106
+ # Override to use custom colour tables etc.
2107
+ # @param index [Integer]
2108
+ # @return [Wx::Colour]
2109
+ def get_colour(index) end
2110
+ alias_method :colour, :get_colour
2111
+
2112
+ #
2113
+ # @return [Wx::Variant]
2114
+ def value_; end
2115
+ #
2116
+ # @param val [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
2117
+ # @return [void]
2118
+ def value_=(val); end
2119
+
2120
+
2121
+ protected
2122
+
2123
+ # @param v [Wx::ColourPropertyValue]
2124
+ # @return [Wx::Variant]
2125
+ def do_translate_val(v) end
2126
+
2127
+ end # ColourProperty
2128
+
2129
+ # Because text, background and other colours tend to differ between platforms, {Wx::PG::SystemColourProperty} must be able to select between system colour and, when necessary, to pick a custom one.
2130
+ # {Wx::PG::SystemColourProperty} value makes this possible.
2131
+ #
2132
+ class ColourPropertyValue < Object
2133
+
2134
+ # An integer value relating to the colour, and which exact meaning depends on the property with which it is used.
2135
+ # For {Wx::PG::SystemColourProperty}:
2136
+ # Any of {Wx::SYS_COLOUR_XXX}, or any web-colour ( use {Wx::PG_TO_WEB_COLOUR} macro - (currently unsupported) ), or {Wx::PG::PG_COLOUR_CUSTOM}.
2137
+ # For custom colour properties without values array specified:
2138
+ # index or {Wx::PG::PG_COLOUR_CUSTOM}
2139
+ # For custom colour properties <b>with</b> values array specified:
2140
+ # m_arrValues[index] or {Wx::PG::PG_COLOUR_CUSTOM}
2141
+ #
2142
+ # @return [Integer]
2143
+ def type_; end
2144
+ # An integer value relating to the colour, and which exact meaning depends on the property with which it is used.
2145
+ # For {Wx::PG::SystemColourProperty}:
2146
+ # Any of {Wx::SYS_COLOUR_XXX}, or any web-colour ( use {Wx::PG_TO_WEB_COLOUR} macro - (currently unsupported) ), or {Wx::PG::PG_COLOUR_CUSTOM}.
2147
+ # For custom colour properties without values array specified:
2148
+ # index or {Wx::PG::PG_COLOUR_CUSTOM}
2149
+ # For custom colour properties <b>with</b> values array specified:
2150
+ # m_arrValues[index] or {Wx::PG::PG_COLOUR_CUSTOM}
2151
+ #
2152
+ # @param val [Integer]
2153
+ # @return [void]
2154
+ def type_=(val); end
2155
+
2156
+ # Resulting colour.
2157
+ # Should be correct regardless of type.
2158
+ #
2159
+ # @return [Wx::Colour]
2160
+ def colour_; end
2161
+ # Resulting colour.
2162
+ # Should be correct regardless of type.
2163
+ #
2164
+ # @param val [Wx::Colour]
2165
+ # @return [void]
2166
+ def colour_=(val); end
2167
+
2168
+ # @overload initialize()
2169
+ # @return [ColourPropertyValue]
2170
+ # @overload initialize(v)
2171
+ # @param v [Wx::ColourPropertyValue]
2172
+ # @return [ColourPropertyValue]
2173
+ # @overload initialize(colour)
2174
+ # @param colour [Wx::Colour,String,Symbol]
2175
+ # @return [ColourPropertyValue]
2176
+ # @overload initialize(type)
2177
+ # @param type [Integer]
2178
+ # @return [ColourPropertyValue]
2179
+ # @overload initialize(type, colour)
2180
+ # @param type [Integer]
2181
+ # @param colour [Wx::Colour,String,Symbol]
2182
+ # @return [ColourPropertyValue]
2183
+ def initialize(*args) end
2184
+
2185
+ # @param type [Integer]
2186
+ # @param colour [Wx::Colour,String,Symbol]
2187
+ # @return [void]
2188
+ def init(type, colour) end
2189
+
2190
+ end # ColourPropertyValue
2191
+
2192
+
2193
+ end