wxruby3 0.9.0.pre.beta.8-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.wxconfig +17 -0
- data/.yardopts +13 -0
- data/CREDITS.md +52 -0
- data/LICENSE +21 -0
- data/README.md +139 -0
- data/bin/wxruby +9 -0
- data/bin/wxruby.bat +20 -0
- data/ext/mkrf_conf_bingem.rb +18 -0
- data/ext/wxbase32u_gcc_custom.dll +0 -0
- data/ext/wxbase32u_net_gcc_custom.dll +0 -0
- data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
- data/lib/wx/accessors.rb +63 -0
- data/lib/wx/aui/auimanager.rb +17 -0
- data/lib/wx/aui/auinotebook.rb +9 -0
- data/lib/wx/aui/events/evt_list.rb +143 -0
- data/lib/wx/aui/require.rb +9 -0
- data/lib/wx/aui.rb +14 -0
- data/lib/wx/core/acceleratortable.rb +28 -0
- data/lib/wx/core/animation.rb +18 -0
- data/lib/wx/core/app.rb +89 -0
- data/lib/wx/core/artprovider.rb +31 -0
- data/lib/wx/core/bitmap.rb +59 -0
- data/lib/wx/core/busycursor.rb +12 -0
- data/lib/wx/core/choice.rb +4 -0
- data/lib/wx/core/choicedlg.rb +54 -0
- data/lib/wx/core/clientdc.rb +13 -0
- data/lib/wx/core/clipboard.rb +56 -0
- data/lib/wx/core/collapsible_pane.rb +12 -0
- data/lib/wx/core/colour.rb +34 -0
- data/lib/wx/core/combobox.rb +4 -0
- data/lib/wx/core/controlwithitems.rb +10 -0
- data/lib/wx/core/data_object.rb +10 -0
- data/lib/wx/core/dataformat.rb +26 -0
- data/lib/wx/core/dc.rb +68 -0
- data/lib/wx/core/dialog.rb +50 -0
- data/lib/wx/core/enum.rb +28 -0
- data/lib/wx/core/event.rb +16 -0
- data/lib/wx/core/events/evt_list.rb +1378 -0
- data/lib/wx/core/evthandler.rb +253 -0
- data/lib/wx/core/ext.rb +58 -0
- data/lib/wx/core/font/encoding.rb +113 -0
- data/lib/wx/core/font.rb +22 -0
- data/lib/wx/core/functions.rb +44 -0
- data/lib/wx/core/gauge.rb +12 -0
- data/lib/wx/core/genericdirctrl.rb +36 -0
- data/lib/wx/core/hboxsizer.rb +6 -0
- data/lib/wx/core/helpcontroller.rb +5 -0
- data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
- data/lib/wx/core/helpprovider.rb +15 -0
- data/lib/wx/core/icon.rb +40 -0
- data/lib/wx/core/image.rb +68 -0
- data/lib/wx/core/imagelist.rb +3 -0
- data/lib/wx/core/listbox.rb +4 -0
- data/lib/wx/core/listctrl.rb +33 -0
- data/lib/wx/core/locale.rb +73 -0
- data/lib/wx/core/log.rb +20 -0
- data/lib/wx/core/menu.rb +78 -0
- data/lib/wx/core/menu_bar.rb +20 -0
- data/lib/wx/core/menuitem.rb +7 -0
- data/lib/wx/core/notebook.rb +9 -0
- data/lib/wx/core/object.rb +14 -0
- data/lib/wx/core/pen_info.rb +11 -0
- data/lib/wx/core/platform_info.rb +13 -0
- data/lib/wx/core/point.rb +92 -0
- data/lib/wx/core/real_point.rb +92 -0
- data/lib/wx/core/rect.rb +57 -0
- data/lib/wx/core/simplehelpprovider.rb +38 -0
- data/lib/wx/core/size.rb +86 -0
- data/lib/wx/core/sizer.rb +43 -0
- data/lib/wx/core/splash_screen.rb +44 -0
- data/lib/wx/core/textctrl.rb +8 -0
- data/lib/wx/core/timer.rb +104 -0
- data/lib/wx/core/toolbar.rb +37 -0
- data/lib/wx/core/toolbartool.rb +4 -0
- data/lib/wx/core/treectrl.rb +46 -0
- data/lib/wx/core/validator.rb +8 -0
- data/lib/wx/core/variant.rb +62 -0
- data/lib/wx/core/vboxsizer.rb +6 -0
- data/lib/wx/core/window.rb +95 -0
- data/lib/wx/core/window_update_locker.rb +12 -0
- data/lib/wx/core/xmlresource.rb +56 -0
- data/lib/wx/core.rb +61 -0
- data/lib/wx/doc/aui/auimanager.rb +12 -0
- data/lib/wx/doc/aui/auinotebook.rb +9 -0
- data/lib/wx/doc/colour_dialog.rb +15 -0
- data/lib/wx/doc/core.rb +11 -0
- data/lib/wx/doc/dc.rb +49 -0
- data/lib/wx/doc/enum.rb +88 -0
- data/lib/wx/doc/evthandler.rb +87 -0
- data/lib/wx/doc/extra/00_starting.md +154 -0
- data/lib/wx/doc/extra/01_packages.md +179 -0
- data/lib/wx/doc/extra/02_lifecycles.md +116 -0
- data/lib/wx/doc/extra/03_dialogs.md +57 -0
- data/lib/wx/doc/extra/04_enums.md +143 -0
- data/lib/wx/doc/extra/05_event-handling.md +166 -0
- data/lib/wx/doc/extra/06_geometry.md +56 -0
- data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
- data/lib/wx/doc/extra/08_extensions.md +144 -0
- data/lib/wx/doc/extra/09_exceptions.md +54 -0
- data/lib/wx/doc/functions.rb +221 -0
- data/lib/wx/doc/gdi_common.rb +181 -0
- data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
- data/lib/wx/doc/gen/accelerator.rb +172 -0
- data/lib/wx/doc/gen/accessible.rb +817 -0
- data/lib/wx/doc/gen/animation.rb +253 -0
- data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
- data/lib/wx/doc/gen/any_button.rb +170 -0
- data/lib/wx/doc/gen/app.rb +363 -0
- data/lib/wx/doc/gen/art_provider.rb +497 -0
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
- data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
- data/lib/wx/doc/gen/aui/event_list.rb +162 -0
- data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
- data/lib/wx/doc/gen/bitmap.rb +638 -0
- data/lib/wx/doc/gen/bitmap_button.rb +91 -0
- data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
- data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
- data/lib/wx/doc/gen/box_sizer.rb +66 -0
- data/lib/wx/doc/gen/brush.rb +219 -0
- data/lib/wx/doc/gen/buffered_dc.rb +95 -0
- data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
- data/lib/wx/doc/gen/busy_info.rb +141 -0
- data/lib/wx/doc/gen/button.rb +133 -0
- data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
- data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
- data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
- data/lib/wx/doc/gen/calendar_event.rb +150 -0
- data/lib/wx/doc/gen/caret.rb +99 -0
- data/lib/wx/doc/gen/check_box.rb +145 -0
- data/lib/wx/doc/gen/check_list_box.rb +96 -0
- data/lib/wx/doc/gen/choice.rb +143 -0
- data/lib/wx/doc/gen/choicebook.rb +100 -0
- data/lib/wx/doc/gen/client_dc.rb +49 -0
- data/lib/wx/doc/gen/clipboard.rb +128 -0
- data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
- data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
- data/lib/wx/doc/gen/colour.rb +289 -0
- data/lib/wx/doc/gen/colour_data.rb +96 -0
- data/lib/wx/doc/gen/colour_dialog.rb +84 -0
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
- data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
- data/lib/wx/doc/gen/combo_box.rb +228 -0
- data/lib/wx/doc/gen/context_help_button.rb +34 -0
- data/lib/wx/doc/gen/control.rb +245 -0
- data/lib/wx/doc/gen/control_with_items.rb +339 -0
- data/lib/wx/doc/gen/core.rb +42 -0
- data/lib/wx/doc/gen/cursor.rb +127 -0
- data/lib/wx/doc/gen/data_format.rb +94 -0
- data/lib/wx/doc/gen/data_object.rb +439 -0
- data/lib/wx/doc/gen/date_event.rb +48 -0
- data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
- data/lib/wx/doc/gen/dc.rb +1278 -0
- data/lib/wx/doc/gen/defs.rb +2832 -0
- data/lib/wx/doc/gen/dialog.rb +426 -0
- data/lib/wx/doc/gen/dir_dialog.rb +134 -0
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
- data/lib/wx/doc/gen/drag_drop.rb +292 -0
- data/lib/wx/doc/gen/drag_image.rb +123 -0
- data/lib/wx/doc/gen/editable_list_box.rb +89 -0
- data/lib/wx/doc/gen/event.rb +911 -0
- data/lib/wx/doc/gen/event_list.rb +1512 -0
- data/lib/wx/doc/gen/events.rb +2499 -0
- data/lib/wx/doc/gen/evt_handler.rb +224 -0
- data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
- data/lib/wx/doc/gen/file_dialog.rb +294 -0
- data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
- data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
- data/lib/wx/doc/gen/find_replace_data.rb +59 -0
- data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
- data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
- data/lib/wx/doc/gen/font.rb +1282 -0
- data/lib/wx/doc/gen/font_data.rb +132 -0
- data/lib/wx/doc/gen/font_dialog.rb +71 -0
- data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
- data/lib/wx/doc/gen/font_picker_event.rb +64 -0
- data/lib/wx/doc/gen/frame.rb +276 -0
- data/lib/wx/doc/gen/fs_file.rb +269 -0
- data/lib/wx/doc/gen/functions.rb +10 -0
- data/lib/wx/doc/gen/gauge.rb +127 -0
- data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
- data/lib/wx/doc/gen/gcdc.rb +61 -0
- data/lib/wx/doc/gen/gdi_common.rb +1108 -0
- data/lib/wx/doc/gen/gdi_object.rb +29 -0
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
- data/lib/wx/doc/gen/graphics_context.rb +764 -0
- data/lib/wx/doc/gen/graphics_object.rb +494 -0
- data/lib/wx/doc/gen/grid/event_list.rb +173 -0
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
- data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
- data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
- data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
- data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
- data/lib/wx/doc/gen/grid_sizer.rb +135 -0
- data/lib/wx/doc/gen/help_controller.rb +136 -0
- data/lib/wx/doc/gen/help_provider.rb +80 -0
- data/lib/wx/doc/gen/html/event_list.rb +46 -0
- data/lib/wx/doc/gen/html/html_cell.rb +441 -0
- data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
- data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
- data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
- data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
- data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
- data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
- data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
- data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
- data/lib/wx/doc/gen/html/html_printout.rb +87 -0
- data/lib/wx/doc/gen/html/html_window.rb +386 -0
- data/lib/wx/doc/gen/icon.rb +267 -0
- data/lib/wx/doc/gen/icon_location.rb +38 -0
- data/lib/wx/doc/gen/image.rb +1144 -0
- data/lib/wx/doc/gen/image_list.rb +181 -0
- data/lib/wx/doc/gen/keyboard_state.rb +124 -0
- data/lib/wx/doc/gen/list_box.rb +260 -0
- data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
- data/lib/wx/doc/gen/list_event.rb +177 -0
- data/lib/wx/doc/gen/listbook.rb +100 -0
- data/lib/wx/doc/gen/locale.rb +4143 -0
- data/lib/wx/doc/gen/log.rb +505 -0
- data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
- data/lib/wx/doc/gen/mdi_frame.rb +235 -0
- data/lib/wx/doc/gen/media_ctrl.rb +225 -0
- data/lib/wx/doc/gen/media_event.rb +109 -0
- data/lib/wx/doc/gen/memory_dc.rb +95 -0
- data/lib/wx/doc/gen/menu.rb +493 -0
- data/lib/wx/doc/gen/menu_bar.rb +247 -0
- data/lib/wx/doc/gen/menu_item.rb +333 -0
- data/lib/wx/doc/gen/message_dialog.rb +195 -0
- data/lib/wx/doc/gen/mini_frame.rb +72 -0
- data/lib/wx/doc/gen/mirror_dc.rb +29 -0
- data/lib/wx/doc/gen/mouse_state.rb +108 -0
- data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
- data/lib/wx/doc/gen/non_owned_window.rb +46 -0
- data/lib/wx/doc/gen/notebook.rb +220 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
- data/lib/wx/doc/gen/object.rb +69 -0
- data/lib/wx/doc/gen/paint_dc.rb +34 -0
- data/lib/wx/doc/gen/palette.rb +90 -0
- data/lib/wx/doc/gen/panel.rb +96 -0
- data/lib/wx/doc/gen/pen.rb +484 -0
- data/lib/wx/doc/gen/pg/event_list.rb +102 -0
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
- data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
- data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
- data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
- data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
- data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
- data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
- data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
- data/lib/wx/doc/gen/picker_base.rb +143 -0
- data/lib/wx/doc/gen/platform_info.rb +379 -0
- data/lib/wx/doc/gen/popup_window.rb +93 -0
- data/lib/wx/doc/gen/progress_dialog.rb +106 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
- data/lib/wx/doc/gen/prt/event_list.rb +13 -0
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
- data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
- data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
- data/lib/wx/doc/gen/prt/print_data.rb +598 -0
- data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
- data/lib/wx/doc/gen/prt/printer.rb +428 -0
- data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
- data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
- data/lib/wx/doc/gen/radio_box.rb +258 -0
- data/lib/wx/doc/gen/radio_button.rb +128 -0
- data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
- data/lib/wx/doc/gen/region.rb +299 -0
- data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
- data/lib/wx/doc/gen/sash_event.rb +133 -0
- data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
- data/lib/wx/doc/gen/sash_window.rb +154 -0
- data/lib/wx/doc/gen/screen_dc.rb +27 -0
- data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
- data/lib/wx/doc/gen/scrolled_control.rb +317 -0
- data/lib/wx/doc/gen/scrolled_window.rb +337 -0
- data/lib/wx/doc/gen/simplebook.rb +93 -0
- data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
- data/lib/wx/doc/gen/sizer.rb +847 -0
- data/lib/wx/doc/gen/sizer_item.rb +227 -0
- data/lib/wx/doc/gen/slider.rb +316 -0
- data/lib/wx/doc/gen/spin_button.rb +124 -0
- data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
- data/lib/wx/doc/gen/spin_event.rb +47 -0
- data/lib/wx/doc/gen/splash_screen.rb +83 -0
- data/lib/wx/doc/gen/splitter_event.rb +87 -0
- data/lib/wx/doc/gen/splitter_window.rb +357 -0
- data/lib/wx/doc/gen/static_bitmap.rb +126 -0
- data/lib/wx/doc/gen/static_box.rb +123 -0
- data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
- data/lib/wx/doc/gen/static_line.rb +66 -0
- data/lib/wx/doc/gen/static_text.rb +98 -0
- data/lib/wx/doc/gen/status_bar.rb +203 -0
- data/lib/wx/doc/gen/stc/event_list.rb +217 -0
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
- data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
- data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
- data/lib/wx/doc/gen/system_options.rb +109 -0
- data/lib/wx/doc/gen/system_settings.rb +481 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
- data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
- data/lib/wx/doc/gen/text_attr.rb +645 -0
- data/lib/wx/doc/gen/text_ctrl.rb +841 -0
- data/lib/wx/doc/gen/text_entry.rb +389 -0
- data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
- data/lib/wx/doc/gen/text_validator.rb +212 -0
- data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
- data/lib/wx/doc/gen/timer.rb +103 -0
- data/lib/wx/doc/gen/timer_event.rb +73 -0
- data/lib/wx/doc/gen/tip_provider.rb +60 -0
- data/lib/wx/doc/gen/toggle_button.rb +84 -0
- data/lib/wx/doc/gen/tool_bar.rb +744 -0
- data/lib/wx/doc/gen/tool_tip.rb +73 -0
- data/lib/wx/doc/gen/toolbook.rb +103 -0
- data/lib/wx/doc/gen/top_level_window.rb +462 -0
- data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
- data/lib/wx/doc/gen/tree_event.rb +101 -0
- data/lib/wx/doc/gen/treebook.rb +154 -0
- data/lib/wx/doc/gen/utils.rb +257 -0
- data/lib/wx/doc/gen/v_list_box.rb +224 -0
- data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
- data/lib/wx/doc/gen/validator.rb +73 -0
- data/lib/wx/doc/gen/variant.rb +340 -0
- data/lib/wx/doc/gen/window.rb +2414 -0
- data/lib/wx/doc/gen/window_dc.rb +35 -0
- data/lib/wx/doc/gen/window_disabler.rb +24 -0
- data/lib/wx/doc/gen/with_images.rb +73 -0
- data/lib/wx/doc/gen/wizard.rb +197 -0
- data/lib/wx/doc/gen/wizard_event.rb +105 -0
- data/lib/wx/doc/gen/wizard_page.rb +61 -0
- data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
- data/lib/wx/doc/gen/xml_node.rb +282 -0
- data/lib/wx/doc/gen/xml_resource.rb +304 -0
- data/lib/wx/doc/grid/grid.rb +20 -0
- data/lib/wx/doc/help_controller.rb +14 -0
- data/lib/wx/doc/html/html_help_controller.rb +8 -0
- data/lib/wx/doc/pg/events.rb +15 -0
- data/lib/wx/doc/pg/pg_property.rb +8 -0
- data/lib/wx/doc/pg/pgeditor.rb +21 -0
- data/lib/wx/doc/pg/property_grid.rb +48 -0
- data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
- data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/doc/prt/print_data.rb +9 -0
- data/lib/wx/doc/prt/print_dialog.rb +26 -0
- data/lib/wx/doc/prt/printer.rb +15 -0
- data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
- data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
- data/lib/wx/doc/screen_dc.rb +10 -0
- data/lib/wx/doc/stock_objects.rb +98 -0
- data/lib/wx/doc/stream.rb +38 -0
- data/lib/wx/doc/system_settings.rb +29 -0
- data/lib/wx/doc/treebook.rb +9 -0
- data/lib/wx/doc/variant.rb +163 -0
- data/lib/wx/doc/xml_resource.rb +19 -0
- data/lib/wx/global_const.rb +84 -0
- data/lib/wx/grid/events/evt_list.rb +156 -0
- data/lib/wx/grid/grid.rb +7 -0
- data/lib/wx/grid/keyword_defs.rb +10 -0
- data/lib/wx/grid/require.rb +9 -0
- data/lib/wx/grid.rb +14 -0
- data/lib/wx/helpers.rb +65 -0
- data/lib/wx/html/events/evt_list.rb +37 -0
- data/lib/wx/html/htmlhelpcontroller.rb +6 -0
- data/lib/wx/html/htmlwindow.rb +19 -0
- data/lib/wx/html/keyword_defs.rb +22 -0
- data/lib/wx/html/require.rb +10 -0
- data/lib/wx/html.rb +15 -0
- data/lib/wx/keyword_ctors.rb +226 -0
- data/lib/wx/keyword_defs.rb +487 -0
- data/lib/wx/pg/events/evt_list.rb +73 -0
- data/lib/wx/pg/events.rb +14 -0
- data/lib/wx/pg/keyword_defs.rb +15 -0
- data/lib/wx/pg/pg_editor.rb +13 -0
- data/lib/wx/pg/pg_properties.rb +24 -0
- data/lib/wx/pg/pg_property.rb +27 -0
- data/lib/wx/pg/property_grid.rb +71 -0
- data/lib/wx/pg/property_grid_interface.rb +46 -0
- data/lib/wx/pg/require.rb +12 -0
- data/lib/wx/pg.rb +14 -0
- data/lib/wx/prt/keyword_defs.rb +8 -0
- data/lib/wx/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/prt/previewframe.rb +13 -0
- data/lib/wx/prt/require.rb +8 -0
- data/lib/wx/prt.rb +14 -0
- data/lib/wx/rbn/events/evt_list.rb +102 -0
- data/lib/wx/rbn/events.rb +4 -0
- data/lib/wx/rbn/keyword_defs.rb +43 -0
- data/lib/wx/rbn/require.rb +12 -0
- data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
- data/lib/wx/rbn/ribbon_bar.rb +12 -0
- data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
- data/lib/wx/rbn/ribbon_control.rb +25 -0
- data/lib/wx/rbn/ribbon_gallery.rb +26 -0
- data/lib/wx/rbn/ribbon_page.rb +15 -0
- data/lib/wx/rbn/ribbon_panel.rb +15 -0
- data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
- data/lib/wx/rbn.rb +14 -0
- data/lib/wx/rtc/events/evt_list.rb +98 -0
- data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
- data/lib/wx/rtc/ext.rb +15 -0
- data/lib/wx/rtc/keyword_defs.rb +17 -0
- data/lib/wx/rtc/require.rb +8 -0
- data/lib/wx/rtc.rb +15 -0
- data/lib/wx/stc/events/evt_list.rb +178 -0
- data/lib/wx/stc/keyword_defs.rb +8 -0
- data/lib/wx/stc/require.rb +7 -0
- data/lib/wx/stc.rb +14 -0
- data/lib/wx/version.rb +3 -0
- data/lib/wx/wxruby/base.rb +87 -0
- data/lib/wx/wxruby/cmd/sampler.rb +68 -0
- data/lib/wx/wxruby/cmd/test.rb +27 -0
- data/lib/wx.rb +14 -0
- data/lib/wxruby_aui.so +0 -0
- data/lib/wxruby_core.so +0 -0
- data/lib/wxruby_grid.so +0 -0
- data/lib/wxruby_html.so +0 -0
- data/lib/wxruby_pg.so +0 -0
- data/lib/wxruby_prt.so +0 -0
- data/lib/wxruby_rbn.so +0 -0
- data/lib/wxruby_rtc.so +0 -0
- data/lib/wxruby_stc.so +0 -0
- data/rakelib/install.rb +220 -0
- data/rakelib/lib/config/cygwin.rb +6 -0
- data/rakelib/lib/config/linux.rb +78 -0
- data/rakelib/lib/config/macosx.rb +6 -0
- data/rakelib/lib/config/mingw.rb +133 -0
- data/rakelib/lib/config/netbsd.rb +6 -0
- data/rakelib/lib/config/unixish.rb +187 -0
- data/rakelib/lib/config.rb +673 -0
- data/rakelib/lib/ext/enum_chain.rb +22 -0
- data/rakelib/prepost.rake +91 -0
- data/rakelib/prepost.rb +26 -0
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
- data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
- data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
- data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
- data/rakelib/yard/yard-custom-templates.rb +2 -0
- data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
- data/samples/art/wxruby-128x128.png +0 -0
- data/samples/art/wxruby-256x256.png +0 -0
- data/samples/art/wxruby-64x64.png +0 -0
- data/samples/art/wxruby.ico +0 -0
- data/samples/art/wxruby.png +0 -0
- data/samples/aui/aui.rb +1321 -0
- data/samples/aui/tn_aui.png +0 -0
- data/samples/bigdemo/About.rbw +39 -0
- data/samples/bigdemo/ColorPanel.rbw +23 -0
- data/samples/bigdemo/GridSimple.rbw +78 -0
- data/samples/bigdemo/MDIDemo.rbw +57 -0
- data/samples/bigdemo/PopupMenu.rbw +146 -0
- data/samples/bigdemo/ShapedWindow.rbw +128 -0
- data/samples/bigdemo/Sizers.rbw +541 -0
- data/samples/bigdemo/bigdemo.rb +810 -0
- data/samples/bigdemo/demoTemplate.rbw +33 -0
- data/samples/bigdemo/helpfile.htb +0 -0
- data/samples/bigdemo/icons/Test 015.jpg +0 -0
- data/samples/bigdemo/icons/Test 015.png +0 -0
- data/samples/bigdemo/icons/choice.bmp +0 -0
- data/samples/bigdemo/icons/choice.xpm +27 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +27 -0
- data/samples/bigdemo/icons/copy.xpm +25 -0
- data/samples/bigdemo/icons/cut.xpm +24 -0
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +27 -0
- data/samples/bigdemo/icons/help.xpm +25 -0
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +27 -0
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +44 -0
- data/samples/bigdemo/icons/new.xpm +24 -0
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +45 -0
- data/samples/bigdemo/icons/open.xpm +26 -0
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +38 -0
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +26 -0
- data/samples/bigdemo/icons/print.xpm +26 -0
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +27 -0
- data/samples/bigdemo/icons/robert.xpm +415 -0
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +25 -0
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +39 -0
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +42 -0
- data/samples/bigdemo/icons/stattext.xpm +24 -0
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +79 -0
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +27 -0
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +38 -0
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +38 -0
- data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
- data/samples/bigdemo/icons/wxwin.ico +0 -0
- data/samples/bigdemo/icons/wxwin16x16.png +0 -0
- data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +91 -0
- data/samples/bigdemo/tips.txt +7 -0
- data/samples/bigdemo/utils.rb +12 -0
- data/samples/bigdemo/wxArtProvider.rbw +281 -0
- data/samples/bigdemo/wxBitmapButton.rbw +65 -0
- data/samples/bigdemo/wxButton.rbw +64 -0
- data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
- data/samples/bigdemo/wxCheckBox.rbw +50 -0
- data/samples/bigdemo/wxCheckListBox.rbw +65 -0
- data/samples/bigdemo/wxChoice.rbw +47 -0
- data/samples/bigdemo/wxChoicebook.rbw +78 -0
- data/samples/bigdemo/wxColourDialog.rbw +33 -0
- data/samples/bigdemo/wxComboBox.rbw +77 -0
- data/samples/bigdemo/wxCursor.rbw +136 -0
- data/samples/bigdemo/wxDialog.rbw +74 -0
- data/samples/bigdemo/wxDirDialog.rbw +29 -0
- data/samples/bigdemo/wxDragImage.rbw +70 -0
- data/samples/bigdemo/wxFileDialog.rbw +37 -0
- data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
- data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
- data/samples/bigdemo/wxFontDialog.rbw +200 -0
- data/samples/bigdemo/wxFrame.rbw +53 -0
- data/samples/bigdemo/wxGauge.rbw +65 -0
- data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
- data/samples/bigdemo/wxGrid.rbw +66 -0
- data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
- data/samples/bigdemo/wxListBox.rbw +140 -0
- data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
- data/samples/bigdemo/wxMDIWindows.rbw +50 -0
- data/samples/bigdemo/wxMenu.rbw +247 -0
- data/samples/bigdemo/wxMessageDialog.rbw +27 -0
- data/samples/bigdemo/wxMiniFrame.rbw +70 -0
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
- data/samples/bigdemo/wxNotebook.rbw +136 -0
- data/samples/bigdemo/wxProgressDialog.rbw +43 -0
- data/samples/bigdemo/wxRadioBox.rbw +72 -0
- data/samples/bigdemo/wxRadioButton.rbw +125 -0
- data/samples/bigdemo/wxSashWindow.rbw +141 -0
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
- data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
- data/samples/bigdemo/wxSlider.rbw +42 -0
- data/samples/bigdemo/wxSpinButton.rbw +50 -0
- data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
- data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
- data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
- data/samples/bigdemo/wxStaticText.rbw +55 -0
- data/samples/bigdemo/wxStatusBar.rbw +126 -0
- data/samples/bigdemo/wxTextCtrl.rbw +149 -0
- data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
- data/samples/bigdemo/wxToggleButton.rbw +49 -0
- data/samples/bigdemo/wxToolBar.rbw +131 -0
- data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
- data/samples/calendar/calendar.rb +363 -0
- data/samples/calendar/tn_calendar.png +0 -0
- data/samples/caret/caret.rb +293 -0
- data/samples/caret/mondrian.xpm +44 -0
- data/samples/caret/tn_caret.png +0 -0
- data/samples/controls/books.rb +183 -0
- data/samples/controls/choice.xpm +27 -0
- data/samples/controls/combo.xpm +27 -0
- data/samples/controls/controls.rb +1143 -0
- data/samples/controls/gauge.xpm +27 -0
- data/samples/controls/get_item_sample.rb +117 -0
- data/samples/controls/list.xpm +27 -0
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +44 -0
- data/samples/controls/radio.xpm +27 -0
- data/samples/controls/stattext.xpm +24 -0
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +27 -0
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/controls/tn_get_item_sample.png +0 -0
- data/samples/dialogs/dialogs.rb +879 -0
- data/samples/dialogs/tips.txt +18 -0
- data/samples/dialogs/tn_dialogs.png +0 -0
- data/samples/dialogs/tn_wizard.png +0 -0
- data/samples/dialogs/wizard.rb +89 -0
- data/samples/dragdrop/dragdrop.rb +200 -0
- data/samples/dragdrop/tn_dragdrop.png +0 -0
- data/samples/drawing/SVGlogo24.xpm +310 -0
- data/samples/drawing/bitmap.rb +76 -0
- data/samples/drawing/bitmap_image.rb +131 -0
- data/samples/drawing/graphics_drawing.rb +257 -0
- data/samples/drawing/maths_images.rb +327 -0
- data/samples/drawing/rmagic_bitmap_image.rb +139 -0
- data/samples/drawing/ruby-logo.jpg +0 -0
- data/samples/drawing/svgtest.rb +373 -0
- data/samples/drawing/tn_bitmap.png +0 -0
- data/samples/drawing/tn_bitmap_image.png +0 -0
- data/samples/drawing/tn_graphics_drawing.png +0 -0
- data/samples/drawing/tn_maths_images.png +0 -0
- data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
- data/samples/drawing/tn_svgtest.png +0 -0
- data/samples/etc/choice.rb +82 -0
- data/samples/etc/miniframe.rb +92 -0
- data/samples/etc/sash.rb +140 -0
- data/samples/etc/scrollwin.rb +120 -0
- data/samples/etc/system_settings.rb +263 -0
- data/samples/etc/tn_choice.png +0 -0
- data/samples/etc/tn_miniframe.png +0 -0
- data/samples/etc/tn_sash.png +0 -0
- data/samples/etc/tn_scrollwin.png +0 -0
- data/samples/etc/tn_system_settings.png +0 -0
- data/samples/event/activation.rb +129 -0
- data/samples/event/event.rb +220 -0
- data/samples/event/threaded.rb +141 -0
- data/samples/event/tn_activation.png +0 -0
- data/samples/event/tn_event.png +0 -0
- data/samples/event/tn_threaded.png +0 -0
- data/samples/event/tn_update_ui_event.png +0 -0
- data/samples/event/update_ui_event.rb +91 -0
- data/samples/grid/grid.rb +224 -0
- data/samples/grid/gridtablebase.rb +178 -0
- data/samples/grid/tn_grid.png +0 -0
- data/samples/grid/tn_gridtablebase.png +0 -0
- data/samples/html/8859_2.htm +14 -0
- data/samples/html/cp1250.htm +19 -0
- data/samples/html/foo.png +0 -0
- data/samples/html/html.rb +278 -0
- data/samples/html/i18n.gif +0 -0
- data/samples/html/imagemap.htm +20 -0
- data/samples/html/imagemap.png +0 -0
- data/samples/html/listtest.htm +28 -0
- data/samples/html/pic.png +0 -0
- data/samples/html/pic2.bmp +0 -0
- data/samples/html/regres.htm +20 -0
- data/samples/html/subsup.html +42 -0
- data/samples/html/tables.htm +255 -0
- data/samples/html/test.htm +375 -0
- data/samples/html/tn_html.png +0 -0
- data/samples/mdi/mdi.rb +118 -0
- data/samples/mdi/tn_mdi.png +0 -0
- data/samples/minimal/minimal.rb +95 -0
- data/samples/minimal/mondrian.ico +0 -0
- data/samples/minimal/mondrian.png +0 -0
- data/samples/minimal/nothing.rb +38 -0
- data/samples/minimal/tn_minimal.png +0 -0
- data/samples/minimal/tn_nothing.png +0 -0
- data/samples/printing/mondrian.ico +0 -0
- data/samples/printing/mondrian.xpm +44 -0
- data/samples/printing/printing.rb +499 -0
- data/samples/printing/printing2.rb +251 -0
- data/samples/printing/sample-text.txt +213 -0
- data/samples/printing/tn_printing.png +0 -0
- data/samples/printing/tn_printing2.png +0 -0
- data/samples/propgrid/propgrid.rb +2711 -0
- data/samples/propgrid/propgrid_minimal.rb +107 -0
- data/samples/propgrid/sample_props.rb +434 -0
- data/samples/propgrid/tn_propgrid.png +0 -0
- data/samples/propgrid/tn_propgrid_minimal.png +0 -0
- data/samples/ribbon/align_center.xpm +21 -0
- data/samples/ribbon/align_left.xpm +21 -0
- data/samples/ribbon/align_right.xpm +21 -0
- data/samples/ribbon/aui_style.xpm +53 -0
- data/samples/ribbon/auto_crop_selection.xpm +55 -0
- data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
- data/samples/ribbon/circle.xpm +38 -0
- data/samples/ribbon/circle_small.xpm +22 -0
- data/samples/ribbon/colours.xpm +25 -0
- data/samples/ribbon/cross.xpm +38 -0
- data/samples/ribbon/empty.xpm +23 -0
- data/samples/ribbon/expand_selection_h.xpm +46 -0
- data/samples/ribbon/expand_selection_v.xpm +46 -0
- data/samples/ribbon/eye.xpm +26 -0
- data/samples/ribbon/hexagon.xpm +38 -0
- data/samples/ribbon/msw_style.xpm +65 -0
- data/samples/ribbon/position_left.xpm +22 -0
- data/samples/ribbon/position_top.xpm +22 -0
- data/samples/ribbon/ribbon.rb +900 -0
- data/samples/ribbon/ribbon.xpm +54 -0
- data/samples/ribbon/selection_panel.xpm +23 -0
- data/samples/ribbon/square.xpm +38 -0
- data/samples/ribbon/tn_ribbon.png +0 -0
- data/samples/ribbon/triangle.xpm +38 -0
- data/samples/sample.xpm +475 -0
- data/samples/sampler/back.xpm +21 -0
- data/samples/sampler/copy.xpm +44 -0
- data/samples/sampler/cut.xpm +46 -0
- data/samples/sampler/editor.rb +560 -0
- data/samples/sampler/ext.rb +51 -0
- data/samples/sampler/filesave.xpm +42 -0
- data/samples/sampler/find.xpm +62 -0
- data/samples/sampler/findrepl.xpm +63 -0
- data/samples/sampler/forward.xpm +21 -0
- data/samples/sampler/paste.xpm +46 -0
- data/samples/sampler/play.xpm +24 -0
- data/samples/sampler/redo.xpm +58 -0
- data/samples/sampler/sample.rb +347 -0
- data/samples/sampler/stc_editor.rb +321 -0
- data/samples/sampler/txt_editor.rb +130 -0
- data/samples/sampler/undo.xpm +58 -0
- data/samples/sampler.rb +394 -0
- data/samples/splash/mobile.xpm +1835 -0
- data/samples/splash/splash.png +0 -0
- data/samples/splash/splash.rb +164 -0
- data/samples/splash/tn_splash.png +0 -0
- data/samples/text/document-open.png +0 -0
- data/samples/text/document-save.png +0 -0
- data/samples/text/edit-copy.png +0 -0
- data/samples/text/edit-cut.png +0 -0
- data/samples/text/edit-paste.png +0 -0
- data/samples/text/edit-redo.png +0 -0
- data/samples/text/edit-undo.png +0 -0
- data/samples/text/format-text-bold.png +0 -0
- data/samples/text/format-text-italic.png +0 -0
- data/samples/text/format-text-underline.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +44 -0
- data/samples/text/preferences-desktop-font.png +0 -0
- data/samples/text/rich_textctrl.rb +326 -0
- data/samples/text/scintilla.rb +179 -0
- data/samples/text/textctrl.rb +124 -0
- data/samples/text/tn_rich_textctrl.png +0 -0
- data/samples/text/tn_scintilla.png +0 -0
- data/samples/text/tn_textctrl.png +0 -0
- data/samples/text/tn_unicode.png +0 -0
- data/samples/text/unicode.rb +238 -0
- data/samples/text/utf8.txt +15 -0
- data/samples/treectrl/checked.xpm +54 -0
- data/samples/treectrl/icon1.xpm +79 -0
- data/samples/treectrl/icon2.xpm +53 -0
- data/samples/treectrl/icon3.xpm +79 -0
- data/samples/treectrl/icon4.xpm +43 -0
- data/samples/treectrl/icon5.xpm +79 -0
- data/samples/treectrl/state1.xpm +145 -0
- data/samples/treectrl/state2.xpm +144 -0
- data/samples/treectrl/state3.xpm +142 -0
- data/samples/treectrl/state4.xpm +145 -0
- data/samples/treectrl/state5.xpm +85 -0
- data/samples/treectrl/tn_treectrl.png +0 -0
- data/samples/treectrl/treectrl.rb +1720 -0
- data/samples/treectrl/unchecked.xpm +30 -0
- data/samples/xrc/custom_dialog.xrc +46 -0
- data/samples/xrc/custom_xrc_sample.rb +84 -0
- data/samples/xrc/samples.xrc +46 -0
- data/samples/xrc/tn_xrc_sample.png +0 -0
- data/samples/xrc/xrc_sample.rb +86 -0
- data/tests/test_basic.rb +20 -0
- data/tests/test_clipboard.rb +241 -0
- data/tests/test_dialog.rb +28 -0
- data/tests/test_event_handling.rb +103 -0
- data/tests/test_events.rb +45 -0
- data/tests/test_geometry.rb +141 -0
- data/tests/test_intl.rb +107 -0
- data/tests/test_item_data.rb +120 -0
- data/tests/test_variant.rb +151 -0
- data/tests/testapp.rb +40 -0
- data/tests/testapp_noframe.rb +28 -0
- metadata +930 -0
@@ -0,0 +1,847 @@
|
|
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
|
+
# Most of the shared property manipulation interface shared by {Wx::PG::PropertyGrid}, {Wx::PG::PropertyGridPage}, and {Wx::PG::PropertyGridManager} is defined in this class.
|
10
|
+
# - In separate {Wx::PG::PropertyGrid} component this class was known as {Wx::PropertyContainerMethods}.- {Wx::PG::PropertyGridInterface}'s property operation member functions all accept a special {Wx::PGPropArg} id argument, using which you can refer to properties either by their pointer (for performance) or by their name (for conveniency).
|
11
|
+
#
|
12
|
+
# ===
|
13
|
+
#
|
14
|
+
# Category: {Wx::PG::PropertyGrid}
|
15
|
+
#
|
16
|
+
#
|
17
|
+
# @note In wxRuby this is a mixin module instead of a (base) class.
|
18
|
+
module PropertyGridInterface
|
19
|
+
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# Flags for {Wx::PG::PropertyGridInterface#save_editable_state} and {Wx::PG::PropertyGridInterface#restore_editable_state}.
|
23
|
+
#
|
24
|
+
class EditableStateFlags < Wx::Enum
|
25
|
+
|
26
|
+
# Include selected property.
|
27
|
+
#
|
28
|
+
SelectionState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(1)
|
29
|
+
|
30
|
+
# Include expanded/collapsed property information.
|
31
|
+
#
|
32
|
+
ExpandedState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(2)
|
33
|
+
|
34
|
+
# Include scrolled position.
|
35
|
+
#
|
36
|
+
ScrollPosState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(4)
|
37
|
+
|
38
|
+
# Include selected page information.
|
39
|
+
#
|
40
|
+
PageState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(8)
|
41
|
+
|
42
|
+
# Include splitter position.
|
43
|
+
#
|
44
|
+
SplitterPosState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(16)
|
45
|
+
|
46
|
+
# Include description box size.
|
47
|
+
#
|
48
|
+
DescBoxState = Wx::PG::PropertyGridInterface::EditableStateFlags.new(32)
|
49
|
+
|
50
|
+
# Include all supported user editable state information.
|
51
|
+
#
|
52
|
+
AllStates = Wx::PG::PropertyGridInterface::EditableStateFlags.new(63)
|
53
|
+
|
54
|
+
end # EditableStateFlags
|
55
|
+
|
56
|
+
# Appends property to the list.
|
57
|
+
# {Wx::PG::PropertyGrid} assumes ownership of the object. Becomes child of most recently added category.
|
58
|
+
#
|
59
|
+
# - {Wx::PG::PropertyGrid} takes the ownership of the property pointer.- If appending a category with name identical to a category already in the {Wx::PG::PropertyGrid}, then newly created category is deleted, and most recently added category (under which properties are appended) is set to the one with same name. This allows easier adding of items to same categories in multiple passes.- Does not automatically redraw the control, so you may need to call Refresh() when calling this function after control has been shown for the first time.- This functions deselects selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
60
|
+
# @param property [Wx::PGProperty]
|
61
|
+
# @return [Wx::PG::PGProperty]
|
62
|
+
def append(property) end
|
63
|
+
|
64
|
+
# Same as {Wx::PG::PropertyGridInterface#append}, but appends under given parent property.
|
65
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer to parent property.
|
66
|
+
# @param newProperty [Wx::PGProperty] Property to be added.
|
67
|
+
# @return [Wx::PG::PGProperty]
|
68
|
+
def append_in(id, newProperty) end
|
69
|
+
|
70
|
+
# In order to add new items into a property with private children (for instance, {Wx::PG::FlagsProperty}), you need to call this method.
|
71
|
+
# After populating has been finished, you need to call {Wx::PG::PropertyGridInterface#end_add_children}.
|
72
|
+
# @see Wx::PG::PropertyGridInterface#end_add_children
|
73
|
+
# @param id [String,Wx::PG::PGProperty]
|
74
|
+
# @return [void]
|
75
|
+
def begin_add_children(id) end
|
76
|
+
|
77
|
+
# Deletes all properties.
|
78
|
+
# This functions deselects selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
79
|
+
# @return [void]
|
80
|
+
def clear; end
|
81
|
+
|
82
|
+
# Clears current selection, if any.
|
83
|
+
# Returns true if successful or if there was no selection. May fail if validation was enabled and active editor had invalid value.
|
84
|
+
#
|
85
|
+
# In wxWidgets 2.9 and later, this function no longer sends {Wx::PG_EVT_SELECTED}.
|
86
|
+
# @see Wx::PG::PropertyGrid#select_property
|
87
|
+
# @param validation [true,false] If set to false, deselecting the property will always work, even if its editor had invalid value in it.
|
88
|
+
# @return [true,false]
|
89
|
+
def clear_selection(validation=false) end
|
90
|
+
|
91
|
+
# Resets modified status of all properties.
|
92
|
+
# @return [void]
|
93
|
+
def clear_modified_status; end
|
94
|
+
|
95
|
+
# Collapses given category or property with children.
|
96
|
+
# Returns true if actually collapsed.
|
97
|
+
#
|
98
|
+
# This function may deselect selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
99
|
+
# @param id [String,Wx::PG::PGProperty]
|
100
|
+
# @return [true,false]
|
101
|
+
def collapse(id) end
|
102
|
+
|
103
|
+
# Collapses all items that can be collapsed.
|
104
|
+
# Return false if failed (may fail if editor value cannot be validated).
|
105
|
+
#
|
106
|
+
# This functions clears selection. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
107
|
+
# @return [true,false]
|
108
|
+
def collapse_all; end
|
109
|
+
|
110
|
+
# Changes value of a property, as if by user.
|
111
|
+
# Use this instead of {Wx::PG::PropertyGridInterface#set_property_value} if you need the value to run through validation process, and also send {Wx::PG::EVT_PG_CHANGED}.
|
112
|
+
# Since this function sends {Wx::PG::EVT_PG_CHANGED}, it should not be called from EVT_PG_CHANGED handler.
|
113
|
+
#
|
114
|
+
# Returns true if value was successfully changed.
|
115
|
+
# @param id [String,Wx::PG::PGProperty]
|
116
|
+
# @param newValue [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
|
117
|
+
# @return [true,false]
|
118
|
+
def change_property_value(id, newValue) end
|
119
|
+
|
120
|
+
# Removes and deletes a property and any children.
|
121
|
+
# If you delete a property in a {Wx::PG::PropertyGrid} event handler, the actual deletion is postponed until the next idle event.
|
122
|
+
#
|
123
|
+
# This functions deselects selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
124
|
+
# @param id [String,Wx::PG::PGProperty] Pointer or name of a property.
|
125
|
+
# @return [void]
|
126
|
+
def delete_property(id) end
|
127
|
+
|
128
|
+
# Disables a property.
|
129
|
+
# Property is refreshed with new settings.
|
130
|
+
# @see Wx::PG::PropertyGridInterface#enable_property
|
131
|
+
# @see Wx::PG::PGProperty#enable
|
132
|
+
# @param id [String,Wx::PG::PGProperty]
|
133
|
+
# @return [true,false]
|
134
|
+
def disable_property(id) end
|
135
|
+
|
136
|
+
# Returns true if all property grid data changes have been committed.
|
137
|
+
# Usually only returns false if value in active editor has been invalidated by a {Wx::Validator}.
|
138
|
+
# @return [true,false]
|
139
|
+
def editor_validate; end
|
140
|
+
|
141
|
+
# Enables or disables property.
|
142
|
+
# Disabled property usually appears as having grey text.
|
143
|
+
#
|
144
|
+
# Property is refreshed with new settings.
|
145
|
+
# @see Wx::PG::PGProperty#enable
|
146
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer to a property.
|
147
|
+
# @param enable [true,false] If false, property is disabled instead.
|
148
|
+
# @return [true,false]
|
149
|
+
def enable_property(id, enable=true) end
|
150
|
+
|
151
|
+
# Called after population of property with fixed children has finished.
|
152
|
+
#
|
153
|
+
# @see Wx::PG::PropertyGridInterface#begin_add_children
|
154
|
+
# @param id [String,Wx::PG::PGProperty]
|
155
|
+
# @return [void]
|
156
|
+
def end_add_children(id) end
|
157
|
+
|
158
|
+
# Expands given category or property with children.
|
159
|
+
# Returns true if actually expanded.
|
160
|
+
#
|
161
|
+
# This function may deselect selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
162
|
+
# @param id [String,Wx::PG::PGProperty]
|
163
|
+
# @return [true,false]
|
164
|
+
def expand(id) end
|
165
|
+
|
166
|
+
# Expands all items that can be expanded.
|
167
|
+
# This functions clears selection. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
168
|
+
# @param expand [true,false]
|
169
|
+
# @return [true,false]
|
170
|
+
def expand_all(expand=true) end
|
171
|
+
|
172
|
+
# Returns auto-resize proportion of the given column.
|
173
|
+
#
|
174
|
+
# @see Wx::PG::PropertyGridInterface#set_column_proportion
|
175
|
+
# @param column [Integer]
|
176
|
+
# @return [Integer]
|
177
|
+
def get_column_proportion(column) end
|
178
|
+
alias_method :column_proportion, :get_column_proportion
|
179
|
+
|
180
|
+
# Returns id of first child of given property.
|
181
|
+
# Does not return private children!
|
182
|
+
# @param id [String,Wx::PG::PGProperty]
|
183
|
+
# @return [Wx::PG::PGProperty]
|
184
|
+
def get_first_child(id) end
|
185
|
+
alias_method :first_child, :get_first_child
|
186
|
+
|
187
|
+
# @overload get_first(flags=Wx::PG_ITERATE_ALL)
|
188
|
+
# Returns id of first item that matches given criteria.
|
189
|
+
# @param flags [Integer] See wxPropertyGridIterator Flags.
|
190
|
+
# @return [Wx::PG::PGProperty]
|
191
|
+
# @overload get_first(flags=Wx::PG_ITERATE_ALL)
|
192
|
+
# @param flags [Integer]
|
193
|
+
# @return [Wx::PGProperty]
|
194
|
+
def get_first(*args) end
|
195
|
+
alias_method :first, :get_first
|
196
|
+
|
197
|
+
# Returns pointer to a property with given name (case-sensitive).
|
198
|
+
# If there is no property with such name, NULL pointer is returned.
|
199
|
+
# Properties which have non-category, non-root parent cannot be accessed globally by their name. Instead, use "<property>.<subproperty>" instead of "<subproperty>".
|
200
|
+
# @param name [String]
|
201
|
+
# @return [Wx::PG::PGProperty]
|
202
|
+
def get_property(name) end
|
203
|
+
alias_method :property, :get_property
|
204
|
+
|
205
|
+
# Adds to targetArr pointers to properties that have given flags set.
|
206
|
+
# However, if inverse is set to true, then only properties without given flags are stored.
|
207
|
+
# @param flags [Wx::PGProperty::FlagType] Property flags to use.
|
208
|
+
# @param inverse [true,false] If false, properties that have given flags are stored, otherwise there are stored only properties without given flags.
|
209
|
+
# @param iterFlags [Integer] Iterator flags to use. Default is everything expect private children. See wxPropertyGridIterator Flags.
|
210
|
+
# @return [Array<Wx::PG::PGProperty>]
|
211
|
+
def get_properties_with_flag(flags, inverse=false, iterFlags=((Wx::PG_ITERATE_PROPERTIES|Wx::PG_ITERATE_HIDDEN|Wx::PG_ITERATE_CATEGORIES))) end
|
212
|
+
alias_method :properties_with_flag, :get_properties_with_flag
|
213
|
+
|
214
|
+
# Returns value of given attribute.
|
215
|
+
# If none found, returns {Wx::NullVariant}.
|
216
|
+
# @param id [String,Wx::PG::PGProperty]
|
217
|
+
# @param attrName [String]
|
218
|
+
# @return [Wx::Variant]
|
219
|
+
def get_property_attribute(id, attrName) end
|
220
|
+
alias_method :property_attribute, :get_property_attribute
|
221
|
+
|
222
|
+
# Returns background colour of first cell of a property.
|
223
|
+
# @param id [String,Wx::PG::PGProperty]
|
224
|
+
# @return [Wx::Colour]
|
225
|
+
def get_property_background_colour(id) end
|
226
|
+
alias_method :property_background_colour, :get_property_background_colour
|
227
|
+
|
228
|
+
# Returns pointer of property's nearest parent category.
|
229
|
+
# If no category found, returns NULL.
|
230
|
+
# @param id [String,Wx::PG::PGProperty]
|
231
|
+
# @return [Wx::PropertyCategory]
|
232
|
+
def get_property_category(id) end
|
233
|
+
alias_method :property_category, :get_property_category
|
234
|
+
|
235
|
+
# Returns client data (void*) of a property.
|
236
|
+
# @param id [String,Wx::PG::PGProperty]
|
237
|
+
# @return [Object]
|
238
|
+
def get_property_client_data(id) end
|
239
|
+
alias_method :property_client_data, :get_property_client_data
|
240
|
+
|
241
|
+
# Returns first property which label matches given string.
|
242
|
+
# NULL if none found. Note that this operation is very slow when compared to {Wx::PG::PropertyGridInterface#get_property_by_name}.
|
243
|
+
# @param label [String]
|
244
|
+
# @return [Wx::PG::PGProperty]
|
245
|
+
def get_property_by_label(label) end
|
246
|
+
alias_method :property_by_label, :get_property_by_label
|
247
|
+
|
248
|
+
# @overload get_property_by_name(name)
|
249
|
+
# Returns pointer to a property with given name (case-sensitive).
|
250
|
+
# If there is no property with such name, NULL pointer is returned.
|
251
|
+
# Properties which have non-category, non-root parent cannot be accessed globally by their name. Instead, use "<property>.<subproperty>" instead of "<subproperty>".
|
252
|
+
# @param name [String]
|
253
|
+
# @return [Wx::PG::PGProperty]
|
254
|
+
# @overload get_property_by_name(name, subname)
|
255
|
+
# Returns child property subname of property name.
|
256
|
+
# Same as calling GetPropertyByName("name.subname"), albeit slightly faster.
|
257
|
+
# @param name [String]
|
258
|
+
# @param subname [String]
|
259
|
+
# @return [Wx::PG::PGProperty]
|
260
|
+
def get_property_by_name(*args) end
|
261
|
+
alias_method :property_by_name, :get_property_by_name
|
262
|
+
|
263
|
+
# Returns property's editor.
|
264
|
+
# @param id [String,Wx::PG::PGProperty]
|
265
|
+
# @return [Wx::PGEditor]
|
266
|
+
def get_property_editor(id) end
|
267
|
+
alias_method :property_editor, :get_property_editor
|
268
|
+
|
269
|
+
# Returns help string associated with a property.
|
270
|
+
# @param id [String,Wx::PG::PGProperty]
|
271
|
+
# @return [String]
|
272
|
+
def get_property_help_string(id) end
|
273
|
+
alias_method :property_help_string, :get_property_help_string
|
274
|
+
|
275
|
+
# Returns property's custom value image (NULL of none).
|
276
|
+
# @param id [String,Wx::PG::PGProperty]
|
277
|
+
# @return [Wx::Bitmap]
|
278
|
+
def get_property_image(id) end
|
279
|
+
alias_method :property_image, :get_property_image
|
280
|
+
|
281
|
+
# Returns label of a property.
|
282
|
+
# @param id [String,Wx::PG::PGProperty]
|
283
|
+
# @return [Wx::String]
|
284
|
+
def get_property_label(id) end
|
285
|
+
alias_method :property_label, :get_property_label
|
286
|
+
|
287
|
+
# Returns property's name, by which it is globally accessible.
|
288
|
+
# @param property [Wx::PGProperty]
|
289
|
+
# @return [String]
|
290
|
+
def get_property_name(property) end
|
291
|
+
alias_method :property_name, :get_property_name
|
292
|
+
|
293
|
+
# Returns parent item of a property.
|
294
|
+
# @param id [String,Wx::PG::PGProperty]
|
295
|
+
# @return [Wx::PG::PGProperty]
|
296
|
+
def get_property_parent(id) end
|
297
|
+
alias_method :property_parent, :get_property_parent
|
298
|
+
|
299
|
+
# Returns text colour of first cell of a property.
|
300
|
+
# @param id [String,Wx::PG::PGProperty]
|
301
|
+
# @return [Wx::Colour]
|
302
|
+
def get_property_text_colour(id) end
|
303
|
+
alias_method :property_text_colour, :get_property_text_colour
|
304
|
+
|
305
|
+
# Returns validator of a property as a reference, which you can pass to any number of SetPropertyValidator.
|
306
|
+
# @param id [String,Wx::PG::PGProperty]
|
307
|
+
# @return [Wx::Validator]
|
308
|
+
def get_property_validator(id) end
|
309
|
+
alias_method :property_validator, :get_property_validator
|
310
|
+
|
311
|
+
# Returns property's value as {Wx::Variant}.
|
312
|
+
# If property value is unspecified, {Wx::NullVariant} is returned.
|
313
|
+
# @param id [String,Wx::PG::PGProperty]
|
314
|
+
# @return [Wx::Variant]
|
315
|
+
def get_property_value(id) end
|
316
|
+
alias_method :property_value, :get_property_value
|
317
|
+
|
318
|
+
# Return's property's value as {Wx::ArrayInt}.
|
319
|
+
# @param id [String,Wx::PG::PGProperty]
|
320
|
+
# @return [Array<Integer>]
|
321
|
+
def get_property_value_as_array_int(id) end
|
322
|
+
alias_method :property_value_as_array_int, :get_property_value_as_array_int
|
323
|
+
|
324
|
+
# Returns property's value as {Wx::ArrayString}.
|
325
|
+
# @param id [String,Wx::PG::PGProperty]
|
326
|
+
# @return [Array<String>]
|
327
|
+
def get_property_value_as_array_string(id) end
|
328
|
+
alias_method :property_value_as_array_string, :get_property_value_as_array_string
|
329
|
+
|
330
|
+
# Returns property's value as bool.
|
331
|
+
# @param id [String,Wx::PG::PGProperty]
|
332
|
+
# @return [true,false]
|
333
|
+
def get_property_value_as_bool(id) end
|
334
|
+
alias_method :property_value_as_bool, :get_property_value_as_bool
|
335
|
+
|
336
|
+
# Return's property's value as {Wx::DateTime}.
|
337
|
+
# @param id [String,Wx::PG::PGProperty]
|
338
|
+
# @return [Time,Date,DateTime]
|
339
|
+
def get_property_value_as_date_time(id) end
|
340
|
+
alias_method :property_value_as_date_time, :get_property_value_as_date_time
|
341
|
+
|
342
|
+
# Returns property's value as double-precision floating point number.
|
343
|
+
# @param id [String,Wx::PG::PGProperty]
|
344
|
+
# @return [Float]
|
345
|
+
def get_property_value_as_double(id) end
|
346
|
+
alias_method :property_value_as_double, :get_property_value_as_double
|
347
|
+
|
348
|
+
# Returns property's value as integer.
|
349
|
+
# @param id [String,Wx::PG::PGProperty]
|
350
|
+
# @return [Integer]
|
351
|
+
def get_property_value_as_int(id) end
|
352
|
+
alias_method :property_value_as_int, :get_property_value_as_int
|
353
|
+
|
354
|
+
# Returns property's value as integer.
|
355
|
+
# @param id [String,Wx::PG::PGProperty]
|
356
|
+
# @return [Integer]
|
357
|
+
def get_property_value_as_long(id) end
|
358
|
+
alias_method :property_value_as_long, :get_property_value_as_long
|
359
|
+
|
360
|
+
# Returns property's value as native signed 64-bit integer.
|
361
|
+
# @param id [String,Wx::PG::PGProperty]
|
362
|
+
# @return [Integer]
|
363
|
+
def get_property_value_as_long_long(id) end
|
364
|
+
alias_method :property_value_as_long_long, :get_property_value_as_long_long
|
365
|
+
|
366
|
+
# Returns property's value as {Wx::String}.
|
367
|
+
# If property does not use string value type, then its value is converted using {Wx::PG::PGProperty#get_value_as_string}.
|
368
|
+
# @param id [String,Wx::PG::PGProperty]
|
369
|
+
# @return [String]
|
370
|
+
def get_property_value_as_string(id) end
|
371
|
+
alias_method :property_value_as_string, :get_property_value_as_string
|
372
|
+
|
373
|
+
# Returns property's value as unsigned integer.
|
374
|
+
# @param id [String,Wx::PG::PGProperty]
|
375
|
+
# @return [Integer]
|
376
|
+
def get_property_value_as_u_long(id) end
|
377
|
+
alias_method :property_value_as_u_long, :get_property_value_as_u_long
|
378
|
+
|
379
|
+
# Returns property's value as native unsigned 64-bit integer.
|
380
|
+
# @param id [String,Wx::PG::PGProperty]
|
381
|
+
# @return [Integer]
|
382
|
+
def get_property_value_as_u_long_long(id) end
|
383
|
+
alias_method :property_value_as_u_long_long, :get_property_value_as_u_long_long
|
384
|
+
|
385
|
+
# Returns a {Wx::Variant} list containing {Wx::Variant} versions of all property values.
|
386
|
+
# Order is not guaranteed.
|
387
|
+
# @param listname [String] Name of the returned {Wx::Variant} list.
|
388
|
+
# @param baseparent [Wx::PGProperty] The base property which children properties will be queried for values.
|
389
|
+
# @param flags [Integer] Use {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_KEEP_STRUCTURE} to retain category structure; each sub category will be its own {Wx::VariantList} of {Wx::Variant}. Use {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_INC_ATTRIBUTES} to include property attributes as well. Each attribute will be stored as list variant named "@<propname>@attr."
|
390
|
+
# @return [Wx::Variant]
|
391
|
+
def get_property_values(listname=Wx::EMPTY_STRING, baseparent=nil, flags=0) end
|
392
|
+
alias_method :property_values, :get_property_values
|
393
|
+
|
394
|
+
# Returns list of currently selected properties.
|
395
|
+
# {Wx::ArrayPGProperty} should be compatible with std::vector API.
|
396
|
+
# @return [Wx::ArrayPGProperty]
|
397
|
+
def get_selected_properties; end
|
398
|
+
alias_method :selected_properties, :get_selected_properties
|
399
|
+
|
400
|
+
# Returns currently selected property.
|
401
|
+
# NULL if none.
|
402
|
+
# When {Wx::PG::PG_EX_WINDOW_STYLES::PG_EX_MULTIPLE_SELECTION} extra style is used, this member function returns the focused property, that is the one which can have active editor.
|
403
|
+
# @return [Wx::PG::PGProperty]
|
404
|
+
def get_selection; end
|
405
|
+
alias_method :selection, :get_selection
|
406
|
+
|
407
|
+
# Hides or reveals a property.
|
408
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer to a property.
|
409
|
+
# @param hide [true,false] If true, hides property, otherwise reveals it.
|
410
|
+
# @param flags [Integer] By default changes are applied recursively. Set this parameter {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_DONT_RECURSE} to prevent this.
|
411
|
+
# @return [true,false]
|
412
|
+
def hide_property(id, hide=true, flags=Wx::PG_RECURSE) end
|
413
|
+
|
414
|
+
# @overload insert(priorThis, newProperty)
|
415
|
+
# Inserts property to the property container.
|
416
|
+
# Returns newProperty.
|
417
|
+
#
|
418
|
+
# - {Wx::PG::PropertyGrid} takes the ownership of the property pointer.- While Append may be faster way to add items, make note that when both types of data storage (categoric and non-categoric) are active, Insert becomes even more slow. This is especially true if current mode is non-categoric.- This functions deselects selected property, if any. Validation failure option {Wx::PG::PG_VALIDATION_FAILURE_BEHAVIOR_FLAGS::PG_VFB_STAY_IN_PROPERTY} is not respected, i.e. selection is cleared even if editor had invalid value.
|
419
|
+
#
|
420
|
+
# Example of use:
|
421
|
+
#
|
422
|
+
# // append category
|
423
|
+
# wxPGProperty* my_cat_id = propertygrid->Append( new wxPropertyCategory("My Category") );
|
424
|
+
#
|
425
|
+
# ...
|
426
|
+
#
|
427
|
+
# // insert into category - using second variant
|
428
|
+
# wxPGProperty* my_item_id_1 = propertygrid->Insert( my_cat_id, 0, new wxStringProperty("My String 1") );
|
429
|
+
#
|
430
|
+
# // insert before to first item - using first variant
|
431
|
+
# wxPGProperty* my_item_id_2 = propertygrid->Insert( my_item_id, new wxStringProperty("My String 2") );
|
432
|
+
# @param priorThis [String,Wx::PG::PGProperty] New property is inserted just prior to this. Available only in the first variant. There are two versions of this function to allow this parameter to be either an id or name to a property.
|
433
|
+
# @param newProperty [Wx::PGProperty] Pointer to the inserted property. {Wx::PG::PropertyGrid} will take ownership of this object.
|
434
|
+
# @return [Wx::PG::PGProperty]
|
435
|
+
# @overload insert(parent, index, newProperty)
|
436
|
+
# Inserts property to the property container.
|
437
|
+
# See the other overload for more details.
|
438
|
+
#
|
439
|
+
# Returns newProperty.
|
440
|
+
# @param parent [String,Wx::PG::PGProperty] New property is inserted under this category. Available only in the second variant. There are two versions of this function to allow this parameter to be either an id or name to a property.
|
441
|
+
# @param index [Integer] Index under category. Available only in the second variant. If index is < 0, property is appended in category.
|
442
|
+
# @param newProperty [Wx::PGProperty] Pointer to the inserted property. {Wx::PG::PropertyGrid} will take ownership of this object.
|
443
|
+
# @return [Wx::PG::PGProperty]
|
444
|
+
def insert(*args) end
|
445
|
+
|
446
|
+
# Returns true if property is a category.
|
447
|
+
# @param id [String,Wx::PG::PGProperty]
|
448
|
+
# @return [true,false]
|
449
|
+
def is_property_category(id) end
|
450
|
+
alias_method :property_category?, :is_property_category
|
451
|
+
|
452
|
+
# Returns true if property is enabled.
|
453
|
+
# @param id [String,Wx::PG::PGProperty]
|
454
|
+
# @return [true,false]
|
455
|
+
def is_property_enabled(id) end
|
456
|
+
alias_method :property_enabled?, :is_property_enabled
|
457
|
+
|
458
|
+
# Returns true if given property is expanded.
|
459
|
+
# Naturally, always returns false for properties that cannot be expanded.
|
460
|
+
# @param id [String,Wx::PG::PGProperty]
|
461
|
+
# @return [true,false]
|
462
|
+
def is_property_expanded(id) end
|
463
|
+
alias_method :property_expanded?, :is_property_expanded
|
464
|
+
|
465
|
+
# Returns true if property has been modified after value set or modify flag clear by software.
|
466
|
+
# @param id [String,Wx::PG::PGProperty]
|
467
|
+
# @return [true,false]
|
468
|
+
def is_property_modified(id) end
|
469
|
+
alias_method :property_modified?, :is_property_modified
|
470
|
+
|
471
|
+
# Returns true if property is selected.
|
472
|
+
# @param id [String,Wx::PG::PGProperty]
|
473
|
+
# @return [true,false]
|
474
|
+
def is_property_selected(id) end
|
475
|
+
alias_method :property_selected?, :is_property_selected
|
476
|
+
|
477
|
+
# Returns true if property is shown (i.e.
|
478
|
+
# {Wx::PG::PropertyGridInterface#hide_property} with true not called for it).
|
479
|
+
# @param id [String,Wx::PG::PGProperty]
|
480
|
+
# @return [true,false]
|
481
|
+
def is_property_shown(id) end
|
482
|
+
alias_method :property_shown?, :is_property_shown
|
483
|
+
|
484
|
+
# Returns true if property value is set to unspecified.
|
485
|
+
# @param id [String,Wx::PG::PGProperty]
|
486
|
+
# @return [true,false]
|
487
|
+
def is_property_value_unspecified(id) end
|
488
|
+
alias_method :property_value_unspecified?, :is_property_value_unspecified
|
489
|
+
|
490
|
+
# Disables (limit = true) or enables (limit = false) {Wx::TextCtrl} editor of a property, if it is not the sole mean to edit the value.
|
491
|
+
# Property is refreshed with new settings.
|
492
|
+
# @param id [String,Wx::PG::PGProperty]
|
493
|
+
# @param limit [true,false]
|
494
|
+
# @return [void]
|
495
|
+
def limit_property_editing(id, limit=true) end
|
496
|
+
|
497
|
+
# If state is shown in its grid, refresh it now.
|
498
|
+
# @param state [Wx::PG::PropertyGridPage,Wx::PG::PropertyGridPageState]
|
499
|
+
# @return [void]
|
500
|
+
def refresh_grid(state=nil) end
|
501
|
+
|
502
|
+
# Replaces property with id with newly created one.
|
503
|
+
# For example, this code replaces existing property named "Flags" with one that will have different set of items:
|
504
|
+
#
|
505
|
+
# pg->ReplaceProperty("Flags",
|
506
|
+
# wxFlagsProperty("Flags", wxPG_LABEL, newItems))
|
507
|
+
# @see Wx::PG::PropertyGridInterface#insert
|
508
|
+
# @param id [String,Wx::PG::PGProperty]
|
509
|
+
# @param property [Wx::PGProperty]
|
510
|
+
# @return [Wx::PG::PGProperty]
|
511
|
+
def replace_property(id, property) end
|
512
|
+
|
513
|
+
# Restores user-editable state.
|
514
|
+
# See also {Wx::PG::PropertyGridInterface#save_editable_state}.
|
515
|
+
#
|
516
|
+
# Returns false if there was problem reading the string.
|
517
|
+
#
|
518
|
+
# If some parts of state (such as scrolled or splitter position) fail to restore correctly, please make sure that you call this function after {Wx::PG::PropertyGrid} size has been set (this may sometimes be tricky when sizers are used).
|
519
|
+
# @param src [String] String generated by SaveEditableState.
|
520
|
+
# @param restoreStates [Integer] Which parts to restore from source string. See list of editable state flags.
|
521
|
+
# @return [true,false]
|
522
|
+
def restore_editable_state(src, restoreStates=Wx::ALL_STATES) end
|
523
|
+
|
524
|
+
# Used to acquire user-editable state (selected property, expanded properties, scrolled position, splitter positions).
|
525
|
+
# @param includedStates [Integer] Which parts of state to include. See list of editable state flags.
|
526
|
+
# @return [String]
|
527
|
+
def save_editable_state(includedStates=Wx::ALL_STATES) end
|
528
|
+
|
529
|
+
# Set proportion of an auto-stretchable column.
|
530
|
+
# {Wx::PG::PG_WINDOW_STYLES::PG_SPLITTER_AUTO_CENTER} window style needs to be used to indicate that columns are auto- resizable.
|
531
|
+
# Returns false on failure.
|
532
|
+
#
|
533
|
+
# You should call this for individual pages of {Wx::PG::PropertyGridManager} (if used).
|
534
|
+
# @see Wx::PG::PropertyGridInterface#get_column_proportion
|
535
|
+
# @param column [Integer]
|
536
|
+
# @param proportion [Integer]
|
537
|
+
# @return [true,false]
|
538
|
+
def set_column_proportion(column, proportion) end
|
539
|
+
|
540
|
+
# Sets an attribute for this property.
|
541
|
+
# - Setting attribute's value to {Wx::NullVariant} will simply remove it from property's set of attributes.- Property is refreshed with new settings.
|
542
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer to a property.
|
543
|
+
# @param attrName [String] Text identifier of attribute. See wxPropertyGrid Property Attribute Identifiers.
|
544
|
+
# @param value [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue] Value of attribute.
|
545
|
+
# @param argFlags [Integer] Optional. Use {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_RECURSE} to set the attribute to child properties recursively.
|
546
|
+
# @return [void]
|
547
|
+
def set_property_attribute(id, attrName, value, argFlags=0) end
|
548
|
+
|
549
|
+
# Sets property attribute for all applicable properties.
|
550
|
+
# Be sure to use this method only after all properties have been added to the grid.
|
551
|
+
# Properties are refreshed with new settings.
|
552
|
+
# @param attrName [String]
|
553
|
+
# @param value [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
|
554
|
+
# @return [void]
|
555
|
+
def set_property_attribute_all(attrName, value) end
|
556
|
+
|
557
|
+
# Sets background colour of given property.
|
558
|
+
# - If category is tried to set recursively, only its children are affected.- Property is redrawn with new colour.
|
559
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer.
|
560
|
+
# @param colour [Wx::Colour,String,Symbol] New background colour.
|
561
|
+
# @param flags [Integer] Default is {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_RECURSE} which causes colour to be set recursively. Omit this flag to only set colour for the property in question and not any of its children.
|
562
|
+
# @return [void]
|
563
|
+
def set_property_background_colour(id, colour, flags=Wx::PG_RECURSE) end
|
564
|
+
|
565
|
+
# Sets text, bitmap, and colours for given column's cell.
|
566
|
+
# - You can set label cell by using column 0.- You can use {Wx::PG::PG_LABEL} as text to use default text for column.
|
567
|
+
# @param id [String,Wx::PG::PGProperty]
|
568
|
+
# @param column [Integer]
|
569
|
+
# @param text [String]
|
570
|
+
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
571
|
+
# @param fgCol [Wx::Colour,String,Symbol]
|
572
|
+
# @param bgCol [Wx::Colour,String,Symbol]
|
573
|
+
# @return [void]
|
574
|
+
def set_property_cell(id, column, text=Wx::EMPTY_STRING, bitmap=(Wx::BitmapBundle.new()), fgCol=Wx::NULL_COLOUR, bgCol=Wx::NULL_COLOUR) end
|
575
|
+
|
576
|
+
# Sets client data (void*) of a property.
|
577
|
+
# This untyped client data has to be deleted manually.
|
578
|
+
# @param id [String,Wx::PG::PGProperty]
|
579
|
+
# @param clientData [Object]
|
580
|
+
# @return [void]
|
581
|
+
def set_property_client_data(id, clientData) end
|
582
|
+
|
583
|
+
# Resets text and background colours of given property.
|
584
|
+
# - If category is tried to set recursively, only its children are affected.- Property is redrawn with new colours.
|
585
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer.
|
586
|
+
# @param flags [Integer] Default is {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_DONT_RECURSE} which causes colour to be reset only for the property in question (for backward compatibility).
|
587
|
+
# @return [void]
|
588
|
+
def set_property_colours_to_default(id, flags=Wx::PG_DONT_RECURSE) end
|
589
|
+
alias_method :property_colours_to_default=, :set_property_colours_to_default
|
590
|
+
|
591
|
+
# @overload set_property_editor(id, editor)
|
592
|
+
# Sets editor for a property.
|
593
|
+
# For custom editors, use pointer you received from {Wx::PG::PropertyGrid.register_editor_class}.
|
594
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer to a property.
|
595
|
+
# @param editor [Wx::PGEditor] For builtin editors, use {Wx::PGEditor_X}, where X is builtin editor's name (TextCtrl, Choice, etc. see {Wx::PG::PGEditor} documentation for full list).
|
596
|
+
# @return [void]
|
597
|
+
# @overload set_property_editor(id, editorName)
|
598
|
+
# Sets editor control of a property.
|
599
|
+
# As editor argument, use editor name string, such as "TextCtrl" or "Choice".
|
600
|
+
# @param id [String,Wx::PG::PGProperty]
|
601
|
+
# @param editorName [String]
|
602
|
+
# @return [void]
|
603
|
+
def set_property_editor(*args) end
|
604
|
+
|
605
|
+
# Sets label of a property.
|
606
|
+
# - Properties under same parent may have same labels. However, property names must still remain unique.
|
607
|
+
# @param id [String,Wx::PG::PGProperty]
|
608
|
+
# @param newproplabel [String]
|
609
|
+
# @return [void]
|
610
|
+
def set_property_label(id, newproplabel) end
|
611
|
+
|
612
|
+
# Sets name of a property.
|
613
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer of property which name to change.
|
614
|
+
# @param newName [String] New name for property.
|
615
|
+
# @return [void]
|
616
|
+
def set_property_name(id, newName) end
|
617
|
+
|
618
|
+
# Sets property (and, recursively, its children) to have read-only value.
|
619
|
+
# In other words, user cannot change the value in the editor, but they can still copy it.
|
620
|
+
#
|
621
|
+
# - This is mainly for use with textctrl editor. Only some other editors fully support it.- Property is refreshed with new settings.
|
622
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer.
|
623
|
+
# @param set [true,false] Use true to enable read-only, false to disable it.
|
624
|
+
# @param flags [Integer] By default changes are applied recursively. Set this parameter to {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_DONT_RECURSE} to prevent this.
|
625
|
+
# @return [void]
|
626
|
+
def set_property_read_only(id, set=true, flags=Wx::PG_RECURSE) end
|
627
|
+
alias_method :property_read_only=, :set_property_read_only
|
628
|
+
|
629
|
+
# Sets property's value to unspecified.
|
630
|
+
# If it has children (it may be category), then the same thing is done to them.
|
631
|
+
# @param id [String,Wx::PG::PGProperty]
|
632
|
+
# @return [void]
|
633
|
+
def set_property_value_unspecified(id) end
|
634
|
+
alias_method :property_value_unspecified=, :set_property_value_unspecified
|
635
|
+
|
636
|
+
# @overload set_property_values(list, defaultCategory=Wx::NULL_PROPERTY)
|
637
|
+
# Sets property values from a list of {Wx::Variants}.
|
638
|
+
# @param list [Wx::VariantList]
|
639
|
+
# @param defaultCategory [String,Wx::PG::PGProperty]
|
640
|
+
# @return [void]
|
641
|
+
# @overload set_property_values(list, defaultCategory=Wx::NULL_PROPERTY)
|
642
|
+
# Sets property values from a list of {Wx::Variants}.
|
643
|
+
# @param list [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
|
644
|
+
# @param defaultCategory [String,Wx::PG::PGProperty]
|
645
|
+
# @return [void]
|
646
|
+
def set_property_values(*args) end
|
647
|
+
alias_method :property_values=, :set_property_values
|
648
|
+
|
649
|
+
# Associates the help string with property.
|
650
|
+
# By default, text is shown either in the manager's "description" text box or in the status bar. If extra window style {Wx::PG::PG_EX_WINDOW_STYLES::PG_EX_HELP_AS_TOOLTIPS} is used, then the text will appear as a tooltip.
|
651
|
+
# @param id [String,Wx::PG::PGProperty]
|
652
|
+
# @param helpString [String]
|
653
|
+
# @return [void]
|
654
|
+
def set_property_help_string(id, helpString) end
|
655
|
+
|
656
|
+
# Set {Wx::Bitmap} taken from {Wx::BitmapBundle} in front of the value.
|
657
|
+
# Bitmap will be scaled to a size returned by {Wx::PG::PropertyGrid#get_image_size};
|
658
|
+
# @param id [String,Wx::PG::PGProperty]
|
659
|
+
# @param bmp [Wx::BitmapBundle]
|
660
|
+
# @return [void]
|
661
|
+
def set_property_image(id, bmp) end
|
662
|
+
|
663
|
+
# Sets maximum length of text in property text editor.
|
664
|
+
# Returns true if maximum length was set.
|
665
|
+
# @see Wx::PG::PGProperty#set_max_length.
|
666
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer.
|
667
|
+
# @param maxLen [Integer] Maximum number of characters of the text the user can enter in the text editor. If it is 0, the length is not limited and the text can be as long as it is supported by the underlying native text control widget.
|
668
|
+
# @return [true,false]
|
669
|
+
def set_property_max_length(id, maxLen) end
|
670
|
+
|
671
|
+
# Sets text colour of given property.
|
672
|
+
# - If category is tried to set recursively, only its children are affected.- Property is redrawn with new colour.
|
673
|
+
# @param id [String,Wx::PG::PGProperty] Property name or pointer.
|
674
|
+
# @param colour [Wx::Colour,String,Symbol] New text colour.
|
675
|
+
# @param flags [Integer] Default is {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_RECURSE} which causes colour to be set recursively. Omit this flag to only set colour for the property in question and not any of its children.
|
676
|
+
# @return [void]
|
677
|
+
def set_property_text_colour(id, colour, flags=Wx::PG_RECURSE) end
|
678
|
+
|
679
|
+
# Sets validator of a property.
|
680
|
+
# @param id [String,Wx::PG::PGProperty]
|
681
|
+
# @param validator [Wx::Validator]
|
682
|
+
# @return [void]
|
683
|
+
def set_property_validator(id, validator) end
|
684
|
+
|
685
|
+
# @overload set_property_value(id, value)
|
686
|
+
# Sets value (long integer) of a property.
|
687
|
+
# @param id [String,Wx::PG::PGProperty]
|
688
|
+
# @param value [Integer]
|
689
|
+
# @return [void]
|
690
|
+
# @overload set_property_value(id, value)
|
691
|
+
# Sets value (integer) of a property.
|
692
|
+
# @param id [String,Wx::PG::PGProperty]
|
693
|
+
# @param value [Integer]
|
694
|
+
# @return [void]
|
695
|
+
# @overload set_property_value(id, value)
|
696
|
+
# Sets value (floating point) of a property.
|
697
|
+
# @param id [String,Wx::PG::PGProperty]
|
698
|
+
# @param value [Float]
|
699
|
+
# @return [void]
|
700
|
+
# @overload set_property_value(id, value)
|
701
|
+
# Sets value (bool) of a property.
|
702
|
+
# @param id [String,Wx::PG::PGProperty]
|
703
|
+
# @param value [true,false]
|
704
|
+
# @return [void]
|
705
|
+
# @overload set_property_value(id, value)
|
706
|
+
# Sets value (wchar_t*) of a property.
|
707
|
+
# @param id [String,Wx::PG::PGProperty]
|
708
|
+
# @param value [String]
|
709
|
+
# @return [void]
|
710
|
+
# @overload set_property_value(id, value)
|
711
|
+
# Sets value (char*) of a property.
|
712
|
+
# @param id [String,Wx::PG::PGProperty]
|
713
|
+
# @param value [String]
|
714
|
+
# @return [void]
|
715
|
+
# @overload set_property_value(id, value)
|
716
|
+
# Sets value (string) of a property.
|
717
|
+
# @param id [String,Wx::PG::PGProperty]
|
718
|
+
# @param value [String]
|
719
|
+
# @return [void]
|
720
|
+
# @overload set_property_value(id, value)
|
721
|
+
# Sets value ({Wx::ArrayString}) of a property.
|
722
|
+
# @param id [String,Wx::PG::PGProperty]
|
723
|
+
# @param value [Array<String>]
|
724
|
+
# @return [void]
|
725
|
+
# @overload set_property_value(id, value)
|
726
|
+
# Sets value ({Wx::DateTime}) of a property.
|
727
|
+
# @param id [String,Wx::PG::PGProperty]
|
728
|
+
# @param value [Time,Date,DateTime]
|
729
|
+
# @return [void]
|
730
|
+
# @overload set_property_value(id, value)
|
731
|
+
# Sets value ({Wx::Object}*) of a property.
|
732
|
+
# @param id [String,Wx::PG::PGProperty]
|
733
|
+
# @param value [Wx::Object]
|
734
|
+
# @return [void]
|
735
|
+
# @overload set_property_value(id, value)
|
736
|
+
# Sets value ({Wx::Object}&) of a property.
|
737
|
+
# @param id [String,Wx::PG::PGProperty]
|
738
|
+
# @param value [Wx::Object]
|
739
|
+
# @return [void]
|
740
|
+
# @overload set_property_value(id, value)
|
741
|
+
# Sets value (native 64-bit int) of a property.
|
742
|
+
# @param id [String,Wx::PG::PGProperty]
|
743
|
+
# @param value [Integer]
|
744
|
+
# @return [void]
|
745
|
+
# @overload set_property_value(id, value)
|
746
|
+
# Sets value ({Wx::LongLong}) of a property.
|
747
|
+
# @param id [String,Wx::PG::PGProperty]
|
748
|
+
# @param value [Wx::LongLong]
|
749
|
+
# @return [void]
|
750
|
+
# @overload set_property_value(id, value)
|
751
|
+
# Sets value (native 64-bit unsigned int) of a property.
|
752
|
+
# @param id [String,Wx::PG::PGProperty]
|
753
|
+
# @param value [Integer]
|
754
|
+
# @return [void]
|
755
|
+
# @overload set_property_value(id, value)
|
756
|
+
# Sets value ({Wx::ULongLong}) of a property.
|
757
|
+
# @param id [String,Wx::PG::PGProperty]
|
758
|
+
# @param value [Wx::ULongLong]
|
759
|
+
# @return [void]
|
760
|
+
# @overload set_property_value(id, value)
|
761
|
+
# Sets value ({Wx::ArrayInt}&) of a property.
|
762
|
+
# @param id [String,Wx::PG::PGProperty]
|
763
|
+
# @param value [Array<Integer>]
|
764
|
+
# @return [void]
|
765
|
+
# @overload set_property_value(id, value)
|
766
|
+
# Sets value ({Wx::Variant}) of a property.
|
767
|
+
# Use {Wx::PG::PropertyGridInterface#change_property_value} instead if you need to run through validation process and send property change event.
|
768
|
+
# @param id [String,Wx::PG::PGProperty]
|
769
|
+
# @param value [nil,String,Integer,Float,Time,Wx::Font,Wx::Colour,Wx::Variant,Array<WxVariant>,Array<String>,ObjectWx::PG::ColourPropertyValue]
|
770
|
+
# @return [void]
|
771
|
+
def set_property_value(*args) end
|
772
|
+
|
773
|
+
# Sets value ({Wx::String}) of a property.
|
774
|
+
# This method uses {Wx::PG::PGProperty#set_value_from_string}, which all properties should implement. This means that there should not be a type error, and instead the string is converted to property's actual value type.
|
775
|
+
# @param id [String,Wx::PG::PGProperty]
|
776
|
+
# @param value [String]
|
777
|
+
# @return [void]
|
778
|
+
def set_property_value_string(id, value) end
|
779
|
+
|
780
|
+
# Sets value ({Wx::Variant}&) of a property.
|
781
|
+
# Same as SetPropertyValue, but accepts reference.
|
782
|
+
# @param id [String,Wx::PG::PGProperty]
|
783
|
+
# @param value [Wx::Variant]
|
784
|
+
# @return [void]
|
785
|
+
def set_prop_val(id, value) end
|
786
|
+
|
787
|
+
# Adjusts how {Wx::PG::PropertyGrid} behaves when invalid value is entered in a property.
|
788
|
+
# @param vfbFlags [Integer] See wxPropertyGrid Validation Failure behaviour Flags for possible values.
|
789
|
+
# @return [void]
|
790
|
+
def set_validation_failure_behavior(vfbFlags) end
|
791
|
+
alias_method :validation_failure_behavior=, :set_validation_failure_behavior
|
792
|
+
|
793
|
+
# Sorts all properties recursively.
|
794
|
+
#
|
795
|
+
# @see Wx::PG::PropertyGridInterface#sort_children
|
796
|
+
# @see Wx::PG::PropertyGrid#set_sort_function
|
797
|
+
# @param flags [Integer] This can contain any of the following options: {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_SORT_TOP_LEVEL_ONLY}: Only sort categories and their immediate children. Sorting done by {Wx::PG::PG_WINDOW_STYLES::PG_AUTO_SORT} option uses this.
|
798
|
+
# @return [void]
|
799
|
+
def sort(flags=0) end
|
800
|
+
|
801
|
+
# Sorts children of a property.
|
802
|
+
#
|
803
|
+
# @see Wx::PG::PropertyGridInterface#sort
|
804
|
+
# @see Wx::PG::PropertyGrid#set_sort_function
|
805
|
+
# @param id [String,Wx::PG::PGProperty] Name or pointer to a property.
|
806
|
+
# @param flags [Integer] This can contain any of the following options: {Wx::PG::PG_GETPROPERTYVALUES_FLAGS::PG_RECURSE}: Sorts recursively.
|
807
|
+
# @return [void]
|
808
|
+
def sort_children(id, flags=0) end
|
809
|
+
|
810
|
+
# {Wx::PG::PropertyGridInterface#get_property_by_name} with assertion error message.
|
811
|
+
# @param name [String]
|
812
|
+
# @return [Wx::PG::PGProperty]
|
813
|
+
def get_property_by_name_a(name) end
|
814
|
+
alias_method :property_by_name_a, :get_property_by_name_a
|
815
|
+
|
816
|
+
#
|
817
|
+
# This function reselects the property and may cause excess flicker, so to just call Refresh() on a rect of single property, call DrawItem() instead.
|
818
|
+
# @param p [Wx::PGProperty]
|
819
|
+
# @return [void]
|
820
|
+
def refresh_property(p) end
|
821
|
+
|
822
|
+
# Initializes all property types.
|
823
|
+
# Causes references to most object files in the library, so calling this may cause significant increase in executable size when linking with static library.
|
824
|
+
# @return [void]
|
825
|
+
def self.init_all_type_handlers; end
|
826
|
+
|
827
|
+
# Initializes additional property editors (SpinCtrl etc.).
|
828
|
+
# Causes references to most object files in the library, so calling this may cause significant increase in executable size when linking with static library.
|
829
|
+
# @return [void]
|
830
|
+
def self.register_additional_editors; end
|
831
|
+
|
832
|
+
# Sets strings listed in the choice dropdown of a {Wx::PG::BoolProperty}.
|
833
|
+
# Defaults are "True" and "False", so changing them to, say, "Yes" and "No" may be useful in some less technical applications.
|
834
|
+
# @param trueChoice [String]
|
835
|
+
# @param falseChoice [String]
|
836
|
+
# @return [void]
|
837
|
+
def self.set_bool_choices(trueChoice, falseChoice) end
|
838
|
+
|
839
|
+
# Returns editor pointer of editor with given name.
|
840
|
+
# @param editorName [String]
|
841
|
+
# @return [Wx::PG::PGEditor]
|
842
|
+
def self.get_editor_by_name(editorName) end
|
843
|
+
|
844
|
+
end # PropertyGridInterface
|
845
|
+
|
846
|
+
|
847
|
+
end
|