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