wxruby3 0.9.1-x64-mingw-ucrt → 0.9.3-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/.yardopts +1 -0
- data/INSTALL.md +35 -29
- data/README.md +24 -15
- 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/aui/aui_tab_ctrl.rb +18 -0
- data/lib/wx/aui/auinotebook.rb +6 -2
- data/lib/wx/aui/require.rb +1 -0
- data/lib/wx/core/app.rb +2 -2
- data/lib/wx/core/bitmap_combobox.rb +17 -21
- data/lib/wx/core/collapsible_pane.rb +1 -1
- data/lib/wx/core/combobox.rb +13 -3
- data/lib/wx/core/controlwithitems.rb +40 -128
- data/lib/wx/core/enum.rb +17 -1
- data/lib/wx/core/event.rb +6 -1
- data/lib/wx/core/events/evt_list.rb +5 -4
- data/lib/wx/core/evthandler.rb +8 -2
- data/lib/wx/core/generic_validator.rb +312 -0
- data/lib/wx/core/listbox.rb +2 -2
- data/lib/wx/core/log.rb +1 -1
- data/lib/wx/core/menu.rb +10 -0
- data/lib/wx/core/notebook.rb +6 -2
- data/lib/wx/core/owner_drawn_combobox.rb +45 -0
- data/lib/wx/core/size.rb +4 -0
- data/lib/wx/core/sizer.rb +12 -2
- data/lib/wx/core/standard_paths.rb +22 -0
- data/lib/wx/core/task_bar_button.rb +19 -0
- data/lib/wx/core/text_entry.rb +4 -1
- data/lib/wx/core/textctrl.rb +11 -1
- data/lib/wx/core/{treectrl.rb → tree_ctrl.rb} +31 -12
- data/lib/wx/core/validator.rb +70 -5
- data/lib/wx/core/window.rb +13 -7
- data/lib/wx/doc/app.rb +48 -38
- data/lib/wx/doc/art_locator.rb +48 -43
- data/lib/wx/doc/aui/auimanager.rb +16 -8
- data/lib/wx/doc/aui/auinotebook.rb +20 -5
- data/lib/wx/doc/clipboard.rb +11 -7
- data/lib/wx/doc/colour_dialog.rb +14 -10
- data/lib/wx/doc/comboctrl.rb +18 -0
- data/lib/wx/doc/controlwithitems.rb +34 -8
- data/lib/wx/doc/data_object.rb +2 -2
- data/lib/wx/doc/date_picker_ctrl.rb +23 -0
- data/lib/wx/doc/editable_listbox.rb +44 -0
- data/lib/wx/doc/enum.rb +15 -0
- data/lib/wx/doc/event.rb +12 -0
- data/lib/wx/doc/evthandler.rb +113 -108
- data/lib/wx/doc/extra/12_client_data.md +89 -0
- data/lib/wx/doc/extra/13_validators.md +139 -0
- data/lib/wx/doc/font.rb +1 -0
- data/lib/wx/doc/gc_dc.rb +6 -1
- data/lib/wx/doc/gdi_common.rb +4 -0
- data/lib/wx/doc/gen/about_dialog_info.rb +26 -2
- data/lib/wx/doc/gen/accelerator.rb +19 -4
- data/lib/wx/doc/gen/accessible.rb +48 -47
- data/lib/wx/doc/gen/activity_indicator.rb +10 -4
- data/lib/wx/doc/gen/animation.rb +19 -3
- data/lib/wx/doc/gen/animation_ctrl.rb +16 -7
- data/lib/wx/doc/gen/any_button.rb +22 -1
- data/lib/wx/doc/gen/app.rb +41 -5
- data/lib/wx/doc/gen/app_traits.rb +65 -15
- data/lib/wx/doc/gen/art_provider.rb +33 -7
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +18 -3
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +2 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +35 -8
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +11 -4
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +4 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +3 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +8 -1
- data/lib/wx/doc/gen/aui/aui_notebook.rb +31 -7
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +5 -4
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +38 -2
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +9 -3
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +2 -1
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +20 -6
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +4 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +5 -7
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +5 -1
- data/lib/wx/doc/gen/aui/event_list.rb +164 -160
- data/lib/wx/doc/gen/banner_window.rb +8 -1
- data/lib/wx/doc/gen/bitmap.rb +94 -16
- data/lib/wx/doc/gen/bitmap_button.rb +16 -8
- data/lib/wx/doc/gen/bitmap_combo_box.rb +20 -10
- data/lib/wx/doc/gen/book_ctrl_base.rb +31 -4
- data/lib/wx/doc/gen/book_ctrl_event.rb +9 -3
- data/lib/wx/doc/gen/box_sizer.rb +5 -1
- data/lib/wx/doc/gen/brush.rb +20 -2
- data/lib/wx/doc/gen/busy_info.rb +10 -2
- data/lib/wx/doc/gen/button.rb +31 -11
- data/lib/wx/doc/gen/calculate_layout_event.rb +5 -3
- data/lib/wx/doc/gen/calendar_ctrl.rb +38 -13
- data/lib/wx/doc/gen/calendar_date_attr.rb +2 -1
- data/lib/wx/doc/gen/calendar_event.rb +5 -2
- data/lib/wx/doc/gen/caret.rb +3 -1
- data/lib/wx/doc/gen/check_box.rb +17 -7
- data/lib/wx/doc/gen/check_list_box.rb +8 -6
- data/lib/wx/doc/gen/choice.rb +28 -9
- data/lib/wx/doc/gen/choicebook.rb +7 -7
- data/lib/wx/doc/gen/client_dc.rb +6 -2
- data/lib/wx/doc/gen/clipboard.rb +16 -3
- data/lib/wx/doc/gen/collapsible_pane.rb +9 -7
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +28 -4
- data/lib/wx/doc/gen/colour_dialog.rb +15 -7
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +13 -10
- data/lib/wx/doc/gen/colour_picker_event.rb +5 -5
- data/lib/wx/doc/gen/combo_box.rb +36 -14
- data/lib/wx/doc/gen/combo_ctrl.rb +117 -295
- data/lib/wx/doc/gen/command_link_button.rb +12 -5
- data/lib/wx/doc/gen/context_help_button.rb +13 -3
- data/lib/wx/doc/gen/control.rb +22 -8
- data/lib/wx/doc/gen/control_with_items.rb +45 -10
- data/lib/wx/doc/gen/core.rb +4 -4
- data/lib/wx/doc/gen/cursor.rb +10 -8
- data/lib/wx/doc/gen/data_format.rb +7 -1
- data/lib/wx/doc/gen/data_object.rb +42 -18
- data/lib/wx/doc/gen/date_event.rb +3 -2
- data/lib/wx/doc/gen/date_picker_ctrl.rb +18 -8
- data/lib/wx/doc/gen/dc.rb +238 -36
- data/lib/wx/doc/gen/defs.rb +51 -51
- data/lib/wx/doc/gen/dial_up_event.rb +2 -1
- data/lib/wx/doc/gen/dial_up_manager.rb +25 -5
- data/lib/wx/doc/gen/dialog.rb +72 -13
- data/lib/wx/doc/gen/dir_dialog.rb +22 -5
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +2 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +14 -10
- data/lib/wx/doc/gen/drag_drop.rb +28 -7
- data/lib/wx/doc/gen/drag_image.rb +13 -2
- data/lib/wx/doc/gen/editable_list_box.rb +7 -5
- data/lib/wx/doc/gen/event.rb +57 -26
- data/lib/wx/doc/gen/event_blocker.rb +2 -3
- data/lib/wx/doc/gen/event_filter.rb +3 -0
- data/lib/wx/doc/gen/event_list.rb +1656 -1652
- data/lib/wx/doc/gen/events.rb +305 -173
- data/lib/wx/doc/gen/evt_handler.rb +49 -3
- data/lib/wx/doc/gen/ext_help_controller.rb +10 -1
- data/lib/wx/doc/gen/file_ctrl.rb +28 -10
- data/lib/wx/doc/gen/file_ctrl_event.rb +7 -4
- data/lib/wx/doc/gen/file_dialog.rb +44 -14
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +19 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +11 -3
- data/lib/wx/doc/gen/file_dir_picker_event.rb +4 -4
- data/lib/wx/doc/gen/file_picker_ctrl.rb +12 -9
- data/lib/wx/doc/gen/file_system.rb +54 -15
- data/lib/wx/doc/gen/find_dialog_event.rb +6 -4
- data/lib/wx/doc/gen/find_replace_data.rb +2 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +4 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +13 -1
- data/lib/wx/doc/gen/font.rb +103 -20
- data/lib/wx/doc/gen/font_data.rb +16 -3
- data/lib/wx/doc/gen/font_dialog.rb +6 -1
- data/lib/wx/doc/gen/font_picker_ctrl.rb +14 -7
- data/lib/wx/doc/gen/font_picker_event.rb +3 -3
- data/lib/wx/doc/gen/frame.rb +73 -15
- data/lib/wx/doc/gen/fs_file.rb +39 -10
- data/lib/wx/doc/gen/gauge.rb +19 -8
- data/lib/wx/doc/gen/gb_sizer_item.rb +5 -1
- data/lib/wx/doc/gen/gcdc.rb +3 -2
- data/lib/wx/doc/gen/gdi_common.rb +80 -11
- data/lib/wx/doc/gen/gdi_object.rb +1 -1
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +13 -7
- data/lib/wx/doc/gen/graphics_context.rb +86 -10
- data/lib/wx/doc/gen/graphics_object.rb +35 -6
- data/lib/wx/doc/gen/grid/event_list.rb +168 -164
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +3 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +16 -3
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +10 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +7 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +256 -12
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_size_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +28 -3
- data/lib/wx/doc/gen/grid/grid_table_message.rb +2 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +21 -7
- data/lib/wx/doc/gen/grid_sizer.rb +11 -1
- data/lib/wx/doc/gen/gui_event_loop.rb +13 -3
- data/lib/wx/doc/gen/header_ctrl.rb +110 -11
- data/lib/wx/doc/gen/header_ctrl_event.rb +4 -2
- data/lib/wx/doc/gen/help_controller.rb +14 -3
- data/lib/wx/doc/gen/help_provider.rb +22 -4
- data/lib/wx/doc/gen/html/event_list.rb +41 -37
- data/lib/wx/doc/gen/html/html_cell.rb +48 -6
- data/lib/wx/doc/gen/html/html_cell_event.rb +5 -4
- data/lib/wx/doc/gen/html/html_easy_printing.rb +20 -3
- data/lib/wx/doc/gen/html/html_help_controller.rb +26 -2
- data/lib/wx/doc/gen/html/html_help_data.rb +8 -1
- data/lib/wx/doc/gen/html/html_help_window.rb +9 -1
- data/lib/wx/doc/gen/html/html_link_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_list_box.rb +54 -16
- data/lib/wx/doc/gen/html/html_printout.rb +7 -1
- data/lib/wx/doc/gen/html/html_window.rb +43 -6
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +9 -8
- data/lib/wx/doc/gen/hyperlink_event.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +23 -29
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +143 -20
- data/lib/wx/doc/gen/image_list.rb +25 -6
- data/lib/wx/doc/gen/info_bar.rb +14 -2
- data/lib/wx/doc/gen/keyboard_state.rb +11 -1
- data/lib/wx/doc/gen/list_box.rb +46 -17
- data/lib/wx/doc/gen/list_ctrl.rb +165 -29
- data/lib/wx/doc/gen/list_event.rb +13 -4
- data/lib/wx/doc/gen/listbook.rb +7 -7
- data/lib/wx/doc/gen/locale.rb +68 -4
- data/lib/wx/doc/gen/log.rb +58 -12
- data/lib/wx/doc/gen/mdi_client_window.rb +11 -2
- data/lib/wx/doc/gen/mdi_frame.rb +51 -7
- data/lib/wx/doc/gen/media_ctrl.rb +43 -18
- data/lib/wx/doc/gen/media_event.rb +6 -4
- data/lib/wx/doc/gen/memory_dc.rb +16 -6
- data/lib/wx/doc/gen/menu.rb +81 -26
- data/lib/wx/doc/gen/menu_bar.rb +74 -15
- data/lib/wx/doc/gen/menu_item.rb +67 -19
- data/lib/wx/doc/gen/message_dialog.rb +17 -8
- data/lib/wx/doc/gen/mini_frame.rb +14 -5
- data/lib/wx/doc/gen/mirror_dc.rb +1 -2
- data/lib/wx/doc/gen/mouse_state.rb +1 -1
- data/lib/wx/doc/gen/multi_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/non_owned_window.rb +4 -1
- data/lib/wx/doc/gen/notebook.rb +27 -9
- data/lib/wx/doc/gen/num_validator.rb +37 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +5 -1
- data/lib/wx/doc/gen/object.rb +3 -1
- data/lib/wx/doc/gen/owner_drawn_combo_box.rb +340 -0
- data/lib/wx/doc/gen/paint_dc.rb +1 -1
- data/lib/wx/doc/gen/palette.rb +5 -1
- data/lib/wx/doc/gen/panel.rb +25 -8
- data/lib/wx/doc/gen/pen.rb +46 -8
- data/lib/wx/doc/gen/pg/event_list.rb +97 -93
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +4 -1
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +12 -1
- data/lib/wx/doc/gen/pg/pg_cell.rb +11 -3
- data/lib/wx/doc/gen/pg/pg_editor.rb +161 -16
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +3 -2
- data/lib/wx/doc/gen/pg/pg_properties.rb +632 -83
- data/lib/wx/doc/gen/pg/pg_property.rb +381 -77
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +11 -4
- data/lib/wx/doc/gen/pg/property_grid.rb +123 -20
- data/lib/wx/doc/gen/pg/property_grid_event.rb +41 -9
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +273 -34
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +62 -10
- data/lib/wx/doc/gen/pg/property_grid_page.rb +33 -8
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +18 -4
- data/lib/wx/doc/gen/picker_base.rb +22 -5
- data/lib/wx/doc/gen/platform_info.rb +35 -9
- data/lib/wx/doc/gen/popup_window.rb +7 -5
- data/lib/wx/doc/gen/progress_dialog.rb +5 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -4
- data/lib/wx/doc/gen/prt/event_list.rb +8 -4
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +3 -1
- data/lib/wx/doc/gen/prt/post_script_dc.rb +3 -2
- data/lib/wx/doc/gen/prt/preview_frame.rb +5 -1
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +4 -0
- data/lib/wx/doc/gen/prt/print_data.rb +31 -3
- data/lib/wx/doc/gen/prt/print_dialog.rb +5 -1
- data/lib/wx/doc/gen/prt/printer.rb +87 -11
- data/lib/wx/doc/gen/prt/printer_dc.rb +3 -1
- data/lib/wx/doc/gen/query_layout_info_event.rb +10 -3
- data/lib/wx/doc/gen/radio_box.rb +28 -10
- data/lib/wx/doc/gen/radio_button.rb +22 -9
- data/lib/wx/doc/gen/rbn/event_list.rb +127 -123
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +82 -3
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +26 -4
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +50 -12
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -1
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +21 -11
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -1
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +16 -4
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +3 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +27 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +3 -1
- data/lib/wx/doc/gen/rearrange_ctrl.rb +5 -2
- data/lib/wx/doc/gen/rearrange_list.rb +12 -4
- data/lib/wx/doc/gen/region.rb +104 -17
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/event_list.rb +116 -112
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +27 -9
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +45 -11
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +23 -14
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +84 -7
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +8 -4
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +8 -2
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +8 -3
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +4 -2
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +6 -3
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +7 -2
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +82 -17
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +54 -11
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +15 -2
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +14 -9
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +4 -1
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +4 -3
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +2 -2
- data/lib/wx/doc/gen/sash_event.rb +13 -4
- data/lib/wx/doc/gen/sash_layout_window.rb +21 -4
- data/lib/wx/doc/gen/sash_window.rb +6 -4
- data/lib/wx/doc/gen/screen_dc.rb +1 -1
- data/lib/wx/doc/gen/scroll_bar.rb +28 -10
- data/lib/wx/doc/gen/scrolled_canvas.rb +48 -10
- data/lib/wx/doc/gen/scrolled_control.rb +48 -10
- data/lib/wx/doc/gen/scrolled_window.rb +48 -10
- data/lib/wx/doc/gen/search_ctrl.rb +14 -9
- data/lib/wx/doc/gen/simplebook.rb +8 -1
- data/lib/wx/doc/gen/single_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/sizer.rb +91 -16
- data/lib/wx/doc/gen/sizer_item.rb +21 -4
- data/lib/wx/doc/gen/slider.rb +50 -17
- data/lib/wx/doc/gen/spin_button.rb +24 -10
- data/lib/wx/doc/gen/spin_ctrl.rb +35 -9
- data/lib/wx/doc/gen/spin_ctrl_double.rb +13 -7
- data/lib/wx/doc/gen/spin_double_event.rb +6 -4
- data/lib/wx/doc/gen/spin_event.rb +4 -3
- data/lib/wx/doc/gen/splash_screen.rb +3 -2
- data/lib/wx/doc/gen/splitter_event.rb +12 -4
- data/lib/wx/doc/gen/splitter_window.rb +100 -18
- data/lib/wx/doc/gen/static_bitmap.rb +109 -7
- data/lib/wx/doc/gen/static_box.rb +15 -7
- data/lib/wx/doc/gen/static_box_sizer.rb +3 -2
- data/lib/wx/doc/gen/static_line.rb +7 -4
- data/lib/wx/doc/gen/static_text.rb +10 -6
- data/lib/wx/doc/gen/status_bar.rb +32 -8
- data/lib/wx/doc/gen/stc/event_list.rb +212 -208
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +207 -13
- data/lib/wx/doc/gen/stc/styled_text_event.rb +31 -6
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +7 -1
- data/lib/wx/doc/gen/svg_file_dc.rb +15 -7
- data/lib/wx/doc/gen/system_options.rb +14 -6
- data/lib/wx/doc/gen/system_settings.rb +9 -3
- data/lib/wx/doc/gen/task_bar_button.rb +324 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +26 -8
- data/lib/wx/doc/gen/task_bar_icon_event.rb +5 -3
- data/lib/wx/doc/gen/text_attr.rb +47 -5
- data/lib/wx/doc/gen/text_ctrl.rb +114 -25
- data/lib/wx/doc/gen/text_entry.rb +69 -11
- data/lib/wx/doc/gen/text_entry_dialog.rb +14 -2
- data/lib/wx/doc/gen/text_validator.rb +58 -9
- data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -6
- data/lib/wx/doc/gen/timer.rb +14 -2
- data/lib/wx/doc/gen/timer_event.rb +2 -2
- data/lib/wx/doc/gen/tip_provider.rb +6 -1
- data/lib/wx/doc/gen/toggle_button.rb +73 -6
- data/lib/wx/doc/gen/tool_bar.rb +141 -25
- data/lib/wx/doc/gen/tool_tip.rb +41 -5
- data/lib/wx/doc/gen/toolbook.rb +6 -4
- data/lib/wx/doc/gen/top_level_window.rb +100 -23
- data/lib/wx/doc/gen/tree_ctrl.rb +89 -16
- data/lib/wx/doc/gen/tree_event.rb +9 -4
- data/lib/wx/doc/gen/treebook.rb +16 -4
- data/lib/wx/doc/gen/ui_action_simulator.rb +10 -2
- data/lib/wx/doc/gen/utils.rb +94 -7
- data/lib/wx/doc/gen/v_list_box.rb +27 -2
- data/lib/wx/doc/gen/v_scrolled_window.rb +21 -4
- data/lib/wx/doc/gen/validator.rb +10 -14
- data/lib/wx/doc/gen/variant.rb +7 -0
- data/lib/wx/doc/gen/window.rb +415 -57
- data/lib/wx/doc/gen/window_dc.rb +2 -1
- data/lib/wx/doc/gen/window_disabler.rb +6 -2
- data/lib/wx/doc/gen/with_images.rb +13 -2
- data/lib/wx/doc/gen/wizard.rb +22 -4
- data/lib/wx/doc/gen/wizard_event.rb +5 -4
- data/lib/wx/doc/gen/wizard_page.rb +7 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +5 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +5 -1
- data/lib/wx/doc/gen/xml_node.rb +33 -4
- data/lib/wx/doc/gen/xml_resource.rb +40 -5
- data/lib/wx/doc/generic_validator.rb +95 -0
- data/lib/wx/doc/graphics_context.rb +1 -0
- data/lib/wx/doc/grid/grid.rb +22 -1
- data/lib/wx/doc/help_controller.rb +11 -7
- data/lib/wx/doc/html/html_help_controller.rb +12 -4
- data/lib/wx/doc/html/simple_html_listbox.rb +22 -0
- data/lib/wx/doc/list_ctrl.rb +33 -29
- data/lib/wx/doc/menu.rb +20 -0
- data/lib/wx/doc/notebook.rb +21 -0
- data/lib/wx/doc/num_validator.rb +387 -0
- data/lib/wx/doc/owner_drawn_combobox.rb +96 -0
- data/lib/wx/doc/pg/events.rb +13 -9
- data/lib/wx/doc/pg/numeric_property_validator.rb +33 -0
- data/lib/wx/doc/pg/pg_property.rb +18 -0
- data/lib/wx/doc/progress_dialog.rb +36 -32
- data/lib/wx/doc/prt/page_setup_dialog.rb +20 -12
- data/lib/wx/doc/prt/print_data.rb +13 -5
- data/lib/wx/doc/prt/print_dialog.rb +31 -23
- data/lib/wx/doc/prt/printer.rb +20 -12
- data/lib/wx/doc/radio_box.rb +19 -15
- data/lib/wx/doc/rbn/ribbon_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_gallery.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +13 -5
- data/lib/wx/doc/region_iterator.rb +32 -28
- data/lib/wx/doc/rtc/rich_text_composite_object.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_ctrl.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_paragraph.rb +24 -0
- data/lib/wx/doc/rtc/richtext_buffer.rb +27 -19
- data/lib/wx/doc/rtc/richtext_printing.rb +17 -9
- data/lib/wx/doc/rtc/richtext_style_sheet.rb +17 -9
- data/lib/wx/doc/sizer.rb +20 -0
- data/lib/wx/doc/static_bitmap.rb +25 -0
- data/lib/wx/doc/stc/styled_text_ctrl.rb +24 -0
- data/lib/wx/doc/stream.rb +39 -35
- data/lib/wx/doc/system_settings.rb +30 -26
- data/lib/wx/doc/text_validator.rb +23 -9
- data/lib/wx/doc/textctrl.rb +16 -0
- data/lib/wx/doc/tree_ctrl.rb +95 -0
- data/lib/wx/doc/treebook.rb +9 -5
- data/lib/wx/doc/v_list_box.rb +9 -5
- data/lib/wx/doc/validator.rb +113 -0
- data/lib/wx/doc/variant.rb +164 -160
- data/lib/wx/doc/window.rb +87 -47
- data/lib/wx/doc/window_disabler.rb +10 -6
- data/lib/wx/grid/grid.rb +27 -4
- data/lib/wx/html/events/evt_list.rb +0 -10
- data/lib/wx/html/simple_html_listbox.rb +24 -91
- data/lib/wx/keyword_defs.rb +34 -2
- data/lib/wx/pg/pg_property.rb +22 -0
- data/lib/wx/rbn/ribbon_gallery.rb +0 -21
- data/lib/wx/rtc/require.rb +3 -0
- data/lib/wx/rtc/rich_text_composite_object.rb +25 -0
- data/lib/wx/rtc/rich_text_ctrl.rb +25 -0
- data/lib/wx/rtc/rich_text_paragraph.rb +25 -0
- data/lib/wx/stc/require.rb +1 -0
- data/lib/wx/stc/styled_text_ctrl.rb +25 -0
- data/lib/wx/version.rb +1 -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/lib/config/linux.rb +0 -3
- data/rakelib/lib/config/macosx.rb +2 -2
- data/rakelib/lib/config/mingw.rb +13 -1
- data/rakelib/lib/config/unixish.rb +1 -1
- data/rakelib/lib/config.rb +14 -4
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +74 -2
- data/rakelib/yard/templates/default/fulldoc/html/full_list.erb +38 -0
- data/rakelib/yard/templates/default/fulldoc/html/setup.rb +39 -0
- data/rakelib/yard/templates/default/tags/html/wxrb_require.erb +10 -0
- data/rakelib/yard/templates/default/tags/setup.rb +16 -0
- data/rakelib/yard/yard-custom-templates.rb +3 -0
- data/samples/aui/aui.rb +1237 -1233
- data/samples/calendar/calendar.rb +293 -289
- data/samples/controls/get_item_sample.rb +83 -79
- data/samples/controls/htlbox.rb +331 -327
- data/samples/dialogs/dialogs.rb +682 -694
- data/samples/dialogs/wizard.rb +52 -55
- data/samples/dragdrop/dragdrop.rb +146 -142
- data/samples/drawing/bitmap.rb +29 -26
- data/samples/drawing/bitmap_image.rb +84 -80
- data/samples/drawing/graphics_drawing.rb +209 -205
- data/samples/drawing/image_prt.rb +344 -340
- data/samples/drawing/maths_images.rb +18 -1
- data/samples/drawing/rmagic_bitmap_image.rb +88 -84
- data/samples/etc/caret.rb +306 -0
- data/samples/etc/miniframe.rb +65 -60
- data/samples/etc/sash.rb +109 -105
- data/samples/etc/scrollwin.rb +86 -80
- data/samples/etc/system_settings.rb +216 -209
- data/samples/event/activation.rb +72 -67
- data/samples/event/event.rb +160 -153
- data/samples/event/threaded.rb +8 -1
- data/samples/event/update_ui_event.rb +67 -60
- data/samples/grid/grid.rb +188 -181
- data/samples/grid/gridtablebase.rb +136 -129
- data/samples/html/html.rb +208 -204
- data/samples/mdi/mdi.rb +59 -54
- data/samples/minimal/minimal.rb +54 -51
- data/samples/minimal/nothing.rb +1 -0
- data/samples/printing/printing.rb +367 -377
- data/samples/printing/printing2.rb +203 -198
- data/samples/propgrid/propgrid.rb +2312 -2308
- data/samples/propgrid/propgrid_minimal.rb +57 -50
- data/samples/ribbon/ribbon.rb +780 -774
- data/samples/sampler/ext.rb +0 -33
- data/samples/sampler/sample.rb +4 -9
- data/samples/sampler.rb +1 -1
- data/samples/splash/splash.rb +118 -116
- data/samples/text/rich_textctrl.rb +207 -201
- data/samples/text/richtext.rb +1409 -1405
- data/samples/text/scintilla.rb +137 -128
- data/samples/text/textctrl.rb +89 -83
- data/samples/text/unicode.rb +175 -168
- data/samples/treectrl/treectrl.rb +1430 -1426
- data/samples/widgets/activityindicator.rb +95 -0
- data/samples/widgets/art/widgets/activityindicator.xpm +278 -0
- data/samples/widgets/art/widgets/bmpbtn.xpm +37 -0
- data/samples/widgets/art/widgets/bmpcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/button.xpm +54 -0
- data/samples/widgets/art/widgets/checkbox.xpm +54 -0
- data/samples/{bigdemo/icons → widgets/art/widgets}/choice.xpm +1 -1
- data/samples/widgets/art/widgets/choicebk.xpm +54 -0
- data/samples/widgets/art/widgets/clrpicker.xpm +193 -0
- data/samples/widgets/art/widgets/combobox.xpm +54 -0
- data/samples/widgets/art/widgets/datepick.xpm +200 -0
- data/samples/widgets/art/widgets/dirctrl.xpm +54 -0
- data/samples/widgets/art/widgets/dirpicker.xpm +213 -0
- data/samples/widgets/art/widgets/filepicker.xpm +214 -0
- data/samples/widgets/art/widgets/fontpicker.xpm +185 -0
- data/samples/widgets/art/widgets/gauge.xpm +54 -0
- data/samples/widgets/art/widgets/header.xpm +54 -0
- data/samples/widgets/art/widgets/hyperlnk.xpm +54 -0
- data/samples/widgets/art/widgets/listbook.xpm +54 -0
- data/samples/widgets/art/widgets/listbox.xpm +54 -0
- data/samples/widgets/art/widgets/native.xpm +81 -0
- data/samples/widgets/art/widgets/notebook.xpm +54 -0
- data/samples/widgets/art/widgets/odcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/radiobox.xpm +54 -0
- data/samples/widgets/art/widgets/scrolbar.xpm +54 -0
- data/samples/widgets/art/widgets/slider.xpm +54 -0
- data/samples/widgets/art/widgets/spinbtn.xpm +40 -0
- data/samples/widgets/art/widgets/statbmp.xpm +40 -0
- data/samples/widgets/art/widgets/statbox.xpm +54 -0
- data/samples/widgets/art/widgets/stattext.xpm +54 -0
- data/samples/widgets/art/widgets/text.xpm +54 -0
- data/samples/widgets/art/widgets/timepick.xpm +207 -0
- data/samples/widgets/art/widgets/toggle.xpm +54 -0
- data/samples/widgets/art/widgets/toucan.png +0 -0
- data/samples/widgets/bmpcombobox.rb +651 -0
- data/samples/widgets/button.rb +462 -0
- data/samples/widgets/checkbox.rb +211 -0
- data/samples/widgets/choice.rb +287 -0
- data/samples/widgets/clrpicker.rb +156 -0
- data/samples/widgets/combobox.rb +516 -0
- data/samples/widgets/datepick.rb +215 -0
- data/samples/widgets/dirctrl.rb +265 -0
- data/samples/widgets/dirpicker.rb +158 -0
- data/samples/widgets/editlbox.rb +122 -0
- data/samples/widgets/filectrl.rb +216 -0
- data/samples/widgets/filepicker.rb +214 -0
- data/samples/widgets/fontpicker.rb +135 -0
- data/samples/widgets/gauge.rb +311 -0
- data/samples/widgets/headerctrl.rb +236 -0
- data/samples/widgets/hyperlink.rb +203 -0
- data/samples/widgets/itemcontainer.rb +185 -0
- data/samples/widgets/listbox.rb +473 -0
- data/samples/widgets/notebook.rb +488 -0
- data/samples/widgets/odcombobox.rb +608 -0
- data/samples/widgets/radiobox.rb +328 -0
- data/samples/widgets/searchctrl.rb +159 -0
- data/samples/widgets/slider.rb +594 -0
- data/samples/widgets/spinbtn.rb +443 -0
- data/samples/widgets/statbmp.rb +130 -0
- data/samples/widgets/static.rb +436 -0
- data/samples/widgets/textctrl.rb +700 -0
- data/samples/widgets/timepick.rb +148 -0
- data/samples/widgets/tn_widgets.png +0 -0
- data/samples/widgets/toggle.rb +385 -0
- data/samples/widgets/widgets.rb +1233 -0
- data/samples/xrc/custom_xrc_sample.rb +47 -41
- data/samples/xrc/xrc_sample.rb +53 -47
- data/tests/media/beep_lo.wav +0 -0
- data/tests/test_event_handling.rb +52 -34
- data/tests/test_events.rb +7 -0
- data/tests/test_item_data.rb +24 -0
- data/tests/test_list_ctrl.rb +1 -1
- data/tests/test_media_ctrl.rb +38 -0
- data/tests/test_menu.rb +69 -0
- data/tests/test_pg.rb +27 -0
- data/tests/test_richtext.rb +45 -0
- data/tests/test_sizer.rb +59 -0
- data/tests/test_std_controls.rb +42 -1
- data/tests/test_styled_text_ctrl.rb +46 -0
- data/tests/test_tree_ctrl.rb +138 -0
- data/tests/test_validators.rb +805 -0
- data/tests/test_window.rb +12 -0
- data/tests/testapp_noframe.rb +1 -1
- metadata +113 -138
- data/lib/wx/core/choice.rb +0 -14
- data/lib/wx/core/combo_ctrl.rb +0 -110
- data/samples/bigdemo/About.rbw +0 -39
- data/samples/bigdemo/ColorPanel.rbw +0 -23
- data/samples/bigdemo/GridSimple.rbw +0 -78
- data/samples/bigdemo/MDIDemo.rbw +0 -57
- data/samples/bigdemo/PopupMenu.rbw +0 -146
- data/samples/bigdemo/ShapedWindow.rbw +0 -128
- data/samples/bigdemo/Sizers.rbw +0 -541
- data/samples/bigdemo/bigdemo.rb +0 -817
- data/samples/bigdemo/demoTemplate.rbw +0 -33
- 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/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +0 -27
- data/samples/bigdemo/icons/copy.xpm +0 -25
- data/samples/bigdemo/icons/cut.xpm +0 -24
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +0 -27
- data/samples/bigdemo/icons/help.xpm +0 -25
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +0 -27
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +0 -44
- data/samples/bigdemo/icons/new.xpm +0 -24
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +0 -45
- data/samples/bigdemo/icons/open.xpm +0 -26
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +0 -38
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +0 -26
- data/samples/bigdemo/icons/print.xpm +0 -26
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +0 -27
- data/samples/bigdemo/icons/robert.xpm +0 -415
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +0 -25
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +0 -39
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +0 -42
- data/samples/bigdemo/icons/stattext.xpm +0 -24
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +0 -79
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +0 -27
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +0 -38
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +0 -38
- 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 +0 -25
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +0 -98
- data/samples/bigdemo/tips.txt +0 -7
- data/samples/bigdemo/utils.rb +0 -20
- data/samples/bigdemo/wxArtProvider.rbw +0 -282
- data/samples/bigdemo/wxBitmapButton.rbw +0 -65
- data/samples/bigdemo/wxButton.rbw +0 -64
- data/samples/bigdemo/wxCalendarCtrl.rbw +0 -59
- data/samples/bigdemo/wxCheckBox.rbw +0 -50
- data/samples/bigdemo/wxCheckListBox.rbw +0 -65
- data/samples/bigdemo/wxChoice.rbw +0 -47
- data/samples/bigdemo/wxChoicebook.rbw +0 -78
- data/samples/bigdemo/wxColourDialog.rbw +0 -33
- data/samples/bigdemo/wxComboBox.rbw +0 -77
- data/samples/bigdemo/wxCursor.rbw +0 -136
- data/samples/bigdemo/wxDialog.rbw +0 -74
- data/samples/bigdemo/wxDirDialog.rbw +0 -29
- data/samples/bigdemo/wxDragImage.rbw +0 -70
- data/samples/bigdemo/wxFileDialog.rbw +0 -37
- data/samples/bigdemo/wxFileDialog_Save.rbw +0 -35
- data/samples/bigdemo/wxFindReplaceDialog.rbw +0 -82
- data/samples/bigdemo/wxFontDialog.rbw +0 -200
- data/samples/bigdemo/wxFrame.rbw +0 -53
- data/samples/bigdemo/wxGauge.rbw +0 -65
- data/samples/bigdemo/wxGenericDirCtrl.rbw +0 -74
- data/samples/bigdemo/wxGrid.rbw +0 -66
- data/samples/bigdemo/wxHtmlHelpController.rbw +0 -52
- data/samples/bigdemo/wxListBox.rbw +0 -140
- data/samples/bigdemo/wxListCtrl_virtual.rbw +0 -112
- data/samples/bigdemo/wxMDIWindows.rbw +0 -50
- data/samples/bigdemo/wxMenu.rbw +0 -247
- data/samples/bigdemo/wxMessageDialog.rbw +0 -27
- data/samples/bigdemo/wxMiniFrame.rbw +0 -70
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +0 -29
- data/samples/bigdemo/wxNotebook.rbw +0 -136
- data/samples/bigdemo/wxProgressDialog.rbw +0 -43
- data/samples/bigdemo/wxRadioBox.rbw +0 -72
- data/samples/bigdemo/wxRadioButton.rbw +0 -125
- data/samples/bigdemo/wxSashWindow.rbw +0 -141
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +0 -57
- data/samples/bigdemo/wxScrolledWindow.rbw +0 -199
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +0 -33
- data/samples/bigdemo/wxSlider.rbw +0 -42
- data/samples/bigdemo/wxSpinButton.rbw +0 -50
- data/samples/bigdemo/wxSpinCtrl.rbw +0 -51
- data/samples/bigdemo/wxSplitterWindow.rbw +0 -63
- data/samples/bigdemo/wxStaticBitmap.rbw +0 -47
- data/samples/bigdemo/wxStaticText.rbw +0 -55
- data/samples/bigdemo/wxStatusBar.rbw +0 -126
- data/samples/bigdemo/wxTextCtrl.rbw +0 -149
- data/samples/bigdemo/wxTextEntryDialog.rbw +0 -31
- data/samples/bigdemo/wxToggleButton.rbw +0 -49
- data/samples/bigdemo/wxToolBar.rbw +0 -131
- data/samples/bigdemo/wxTreeCtrl.rbw +0 -191
- data/samples/caret/caret.rb +0 -298
- data/samples/caret/mondrian.xpm +0 -44
- data/samples/controls/books.rb +0 -189
- data/samples/controls/choice.xpm +0 -27
- data/samples/controls/combo.xpm +0 -27
- data/samples/controls/controls.rb +0 -1099
- data/samples/controls/gauge.xpm +0 -27
- data/samples/controls/list.xpm +0 -27
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +0 -44
- data/samples/controls/radio.xpm +0 -27
- data/samples/controls/stattext.xpm +0 -24
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +0 -27
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/etc/choice.rb +0 -87
- data/samples/etc/tn_choice.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +0 -44
- /data/samples/{caret → etc}/tn_caret.png +0 -0
@@ -14,42 +14,19 @@ module Wx
|
|
14
14
|
#
|
15
15
|
CC_STD_BUTTON = 512
|
16
16
|
|
17
|
-
#
|
18
|
-
#
|
19
|
-
#
|
20
|
-
#
|
21
|
-
class OwnerDrawnComboBoxPaintingFlags < Wx::Enum
|
22
|
-
|
23
|
-
# Combo control is being painted, instead of a list item.
|
24
|
-
#
|
25
|
-
ODCB_PAINTING_CONTROL = Wx::OwnerDrawnComboBoxPaintingFlags.new(1)
|
26
|
-
|
27
|
-
# An item with selection background is being painted.
|
28
|
-
#
|
29
|
-
ODCB_PAINTING_SELECTED = Wx::OwnerDrawnComboBoxPaintingFlags.new(2)
|
30
|
-
|
31
|
-
end # OwnerDrawnComboBoxPaintingFlags
|
32
|
-
|
33
|
-
# Double-clicking cycles item if {Wx::CB_READONLY} is also used.
|
34
|
-
#
|
35
|
-
ODCB_DCLICK_CYCLES = 256
|
36
|
-
|
37
|
-
# If used, control itself is not custom paint using callback.
|
38
|
-
#
|
39
|
-
ODCB_STD_CONTROL_PAINT = 4096
|
40
|
-
|
41
17
|
# A combo control is a generic combobox that allows totally custom popup.
|
18
|
+
#
|
42
19
|
# In addition it has other customization features. For instance, position and size of the dropdown button can be changed.
|
43
20
|
#
|
44
|
-
#
|
21
|
+
# ## Setting Custom Popup for wxComboCtrl
|
45
22
|
#
|
46
23
|
# {Wx::ComboCtrl} needs to be told somehow which control to use and this is done by {Wx::ComboCtrl#set_popup_control}. However, we need something more than just a {Wx::Control} in this method as, for example, we need to call SetStringValue("initial text value") and {Wx::Control} doesn't have such method. So we also need a {Wx::ComboPopup} which is an interface which must be implemented by a control to be usable as a popup.
|
47
24
|
# We couldn't derive {Wx::ComboPopup} from {Wx::Control} as this would make it impossible to have a class deriving from a wxWidgets control and from it, so instead it is just a mix-in.
|
48
25
|
# Here's a minimal sample of {Wx::ListView} popup:
|
49
26
|
#
|
50
27
|
# ```
|
51
|
-
#
|
52
|
-
#
|
28
|
+
# \#include <wx/combo.h>
|
29
|
+
# \#include <wx/listctrl.h>
|
53
30
|
#
|
54
31
|
# class wxListViewComboPopup : public wxListView, public wxComboPopup
|
55
32
|
# {
|
@@ -131,7 +108,7 @@ module Wx
|
|
131
108
|
# popupCtrl->InsertItem(popupCtrl->GetItemCount(), "Third Item");
|
132
109
|
# ```
|
133
110
|
#
|
134
|
-
#
|
111
|
+
# ### Styles
|
135
112
|
#
|
136
113
|
# This class supports the following styles:
|
137
114
|
#
|
@@ -145,7 +122,7 @@ module Wx
|
|
145
122
|
#
|
146
123
|
# - {Wx::CC_STD_BUTTON}: Drop button will behave more like a standard push button.
|
147
124
|
#
|
148
|
-
#
|
125
|
+
# ### Events emitted by this class
|
149
126
|
#
|
150
127
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
|
151
128
|
# Event handler methods for events emitted by this class:
|
@@ -158,11 +135,9 @@ module Wx
|
|
158
135
|
#
|
159
136
|
# - {Wx::EvtHandler#evt_combobox_closeup}(id, meth = nil, &block): Process a {Wx::EVT_COMBOBOX_CLOSEUP} event, which is generated when the popup window of the combo control disappears (closes up). You should avoid adding or deleting items in this event.
|
160
137
|
#
|
161
|
-
#
|
162
|
-
#
|
163
|
-
#
|
164
|
-
# </td><td> wxGTK Appearance
|
165
|
-
# </td><td> wxOSX Appearance
|
138
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> WXMSW Appearance
|
139
|
+
# </td><td> WXGTK Appearance
|
140
|
+
# </td><td> WXOSX Appearance
|
166
141
|
# </td></tr></table></div>
|
167
142
|
# @see Wx::ComboBox
|
168
143
|
# @see Wx::Choice
|
@@ -171,18 +146,21 @@ module Wx
|
|
171
146
|
# @see Wx::CommandEvent
|
172
147
|
#
|
173
148
|
#
|
149
|
+
# @wxrb_require USE_COMBOCTRL
|
174
150
|
class ComboCtrl < Control
|
175
151
|
|
176
152
|
include Wx::TextEntry
|
177
153
|
|
178
154
|
# @overload set_margins(pt)
|
179
155
|
# Attempts to set the control margins.
|
156
|
+
#
|
180
157
|
# When margins are given as {Wx::Point}, x indicates the left and y the top margin. Use -1 to indicate that an existing value should be used.
|
181
158
|
# true if setting of all requested margins was successful.
|
182
159
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
183
160
|
# @return [Boolean]
|
184
161
|
# @overload set_margins(left, top=-1)
|
185
162
|
# Attempts to set the control margins.
|
163
|
+
#
|
186
164
|
# When margins are given as {Wx::Point}, x indicates the left and y the top margin. Use -1 to indicate that an existing value should be used.
|
187
165
|
# true if setting of all requested margins was successful.
|
188
166
|
# @param left [Integer]
|
@@ -197,6 +175,7 @@ module Wx
|
|
197
175
|
# @overload initialize(parent, id=Wx::StandardID::ID_ANY, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR)
|
198
176
|
# Constructor, creating and showing a combo control.
|
199
177
|
#
|
178
|
+
#
|
200
179
|
# @see Wx::ComboCtrl#create
|
201
180
|
# @see Wx::Validator
|
202
181
|
# @param parent [Wx::Window] Parent window. Must not be NULL.
|
@@ -215,6 +194,7 @@ module Wx
|
|
215
194
|
def copy; end
|
216
195
|
|
217
196
|
# Creates the combo control for two-step construction.
|
197
|
+
#
|
218
198
|
# Derived classes should call or replace this function. See {Wx::ComboCtrl#initialize} for further details.
|
219
199
|
# @param parent [Wx::Window]
|
220
200
|
# @param id [Integer]
|
@@ -232,6 +212,7 @@ module Wx
|
|
232
212
|
def cut; end
|
233
213
|
|
234
214
|
# Dismisses the popup window.
|
215
|
+
#
|
235
216
|
# Notice that calling this function will generate a {Wx::EVT_COMBOBOX_CLOSEUP} event.
|
236
217
|
# @return [void]
|
237
218
|
def dismiss; end
|
@@ -248,6 +229,7 @@ module Wx
|
|
248
229
|
alias_method :key_popup_toggle?, :is_key_popup_toggle
|
249
230
|
|
250
231
|
# Prepare background of combo control or an item in a dropdown list in a way typical on platform.
|
232
|
+
#
|
251
233
|
# This includes painting the focus/disabled background and setting the clipping region.
|
252
234
|
# Unless you plan to paint your own focus indicator, you should always call this in your {Wx::ComboPopup#paint_combo_control} implementation. In addition, it sets pen and text colour to what looks good and proper against the background.
|
253
235
|
# flags: {Wx::RendererNative} flags: {Wx::CONTROL_ISSUBMENU}: is drawing a list item instead of combo control {Wx::CONTROL_SELECTED}: list item is selected {Wx::CONTROL_DISABLED}: control/item is disabled
|
@@ -262,24 +244,28 @@ module Wx
|
|
262
244
|
def should_draw_focus; end
|
263
245
|
|
264
246
|
# Returns disabled button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
|
247
|
+
#
|
265
248
|
# The disabled state bitmap.
|
266
249
|
# @return [Wx::Bitmap]
|
267
250
|
def get_bitmap_disabled; end
|
268
251
|
alias_method :bitmap_disabled, :get_bitmap_disabled
|
269
252
|
|
270
253
|
# Returns button mouse hover bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
|
254
|
+
#
|
271
255
|
# The mouse hover state bitmap.
|
272
256
|
# @return [Wx::Bitmap]
|
273
257
|
def get_bitmap_hover; end
|
274
258
|
alias_method :bitmap_hover, :get_bitmap_hover
|
275
259
|
|
276
260
|
# Returns default button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
|
261
|
+
#
|
277
262
|
# The normal state bitmap.
|
278
263
|
# @return [Wx::Bitmap]
|
279
264
|
def get_bitmap_normal; end
|
280
265
|
alias_method :bitmap_normal, :get_bitmap_normal
|
281
266
|
|
282
267
|
# Returns depressed button bitmap that has been set with {Wx::ComboCtrl#set_button_bitmaps}.
|
268
|
+
#
|
283
269
|
# The depressed state bitmap.
|
284
270
|
# @return [Wx::Bitmap]
|
285
271
|
def get_bitmap_pressed; end
|
@@ -292,19 +278,26 @@ module Wx
|
|
292
278
|
|
293
279
|
# Returns custom painted area in control.
|
294
280
|
#
|
281
|
+
#
|
295
282
|
# @see Wx::ComboCtrl#set_custom_paint_width.
|
296
283
|
# @return [Integer]
|
297
284
|
def get_custom_paint_width; end
|
298
285
|
alias_method :custom_paint_width, :get_custom_paint_width
|
299
286
|
|
300
287
|
# Returns the current hint string.
|
288
|
+
#
|
301
289
|
# See {Wx::ComboCtrl#set_hint} for more information about hints.
|
302
290
|
# @return [String]
|
303
291
|
def get_hint; end
|
304
292
|
alias_method :hint, :get_hint
|
305
293
|
|
306
294
|
# Returns the insertion point for the combo control's text field.
|
307
|
-
#
|
295
|
+
#
|
296
|
+
# <div class="wxrb-note">
|
297
|
+
# <b>Note:</b>
|
298
|
+
# <p>Under Windows, this function always returns 0 if the combo control doesn't have the focus.
|
299
|
+
# </p>
|
300
|
+
# </div>
|
308
301
|
# @return [Integer]
|
309
302
|
def get_insertion_point; end
|
310
303
|
alias_method :insertion_point, :get_insertion_point
|
@@ -315,8 +308,14 @@ module Wx
|
|
315
308
|
alias_method :last_position, :get_last_position
|
316
309
|
|
317
310
|
# Returns the margins used by the control.
|
311
|
+
#
|
318
312
|
# The x field of the returned point is the horizontal margin and the y field is the vertical one.
|
319
|
-
#
|
313
|
+
#
|
314
|
+
# <div class="wxrb-remark">
|
315
|
+
# <b>Remark:</b>
|
316
|
+
# <p>If given margin cannot be accurately determined, its value will be set to -1.
|
317
|
+
# </p>
|
318
|
+
# </div>
|
320
319
|
# @see Wx::ComboCtrl#set_margins
|
321
320
|
# @return [Wx::Point]
|
322
321
|
def get_margins; end
|
@@ -343,6 +342,7 @@ module Wx
|
|
343
342
|
alias_method :text_rect, :get_text_rect
|
344
343
|
|
345
344
|
# Returns text representation of the current value.
|
345
|
+
#
|
346
346
|
# For writable combo control it always returns the value in the text field.
|
347
347
|
# @return [String]
|
348
348
|
def get_value; end
|
@@ -354,6 +354,7 @@ module Wx
|
|
354
354
|
alias_method :popup_shown?, :is_popup_shown
|
355
355
|
|
356
356
|
# Returns true if the popup window is in the given state.
|
357
|
+
#
|
357
358
|
# Possible values are:
|
358
359
|
#
|
359
360
|
# {Wx::ComboCtrl::Hidden}
|
@@ -370,8 +371,14 @@ module Wx
|
|
370
371
|
alias_method :popup_window_state?, :is_popup_window_state
|
371
372
|
|
372
373
|
# Implement in a derived class to define what happens on dropdown button click.
|
374
|
+
#
|
373
375
|
# Default action is to show the popup.
|
374
|
-
#
|
376
|
+
#
|
377
|
+
# <div class="wxrb-note">
|
378
|
+
# <b>Note:</b>
|
379
|
+
# <p>If you implement this to do something else than show the popup, you must then also implement {Wx::ComboCtrl#do_set_popup_control} to always return NULL.
|
380
|
+
# </p>
|
381
|
+
# </div>
|
375
382
|
# @return [void]
|
376
383
|
def on_button_click; end
|
377
384
|
|
@@ -380,6 +387,7 @@ module Wx
|
|
380
387
|
def paste; end
|
381
388
|
|
382
389
|
# Shows the popup portion of the combo control.
|
390
|
+
#
|
383
391
|
# Notice that calling this function will generate a {Wx::EVT_COMBOBOX_DROPDOWN} event.
|
384
392
|
# @return [void]
|
385
393
|
def popup; end
|
@@ -417,6 +425,7 @@ module Wx
|
|
417
425
|
alias_method :button_position=, :set_button_position
|
418
426
|
|
419
427
|
# Set width, in pixels, of custom painted area in control without {Wx::CB_READONLY} style.
|
428
|
+
#
|
420
429
|
# In read-only {Wx::OwnerDrawnComboBox}, this is used to indicate area that is not covered by the focus rectangle.
|
421
430
|
# @param width [Integer]
|
422
431
|
# @return [void]
|
@@ -424,6 +433,7 @@ module Wx
|
|
424
433
|
alias_method :custom_paint_width=, :set_custom_paint_width
|
425
434
|
|
426
435
|
# Sets a hint shown in an empty unfocused combo control.
|
436
|
+
#
|
427
437
|
# Notice that hints are known as cue banners under MSW or placeholder strings under macOS.
|
428
438
|
# @see Wx::TextEntry#set_hint
|
429
439
|
# @param hint [String]
|
@@ -442,6 +452,7 @@ module Wx
|
|
442
452
|
def set_insertion_point_end; end
|
443
453
|
|
444
454
|
# Uses the given window instead of the default text control as the main window of the combo control.
|
455
|
+
#
|
445
456
|
# By default, combo controls without {Wx::CB_READONLY} style create a {Wx::TextCtrl} which shows the current value and allows to edit it. This method allows to use some other window instead of this {Wx::TextCtrl}.
|
446
457
|
# This method can be called after creating the combo fully, however in this case a {Wx::TextCtrl} is unnecessarily created just to be immediately destroyed when it's replaced by a custom window. If you wish to avoid this, you can use the following approach, also shown in the combo sample:
|
447
458
|
#
|
@@ -471,6 +482,7 @@ module Wx
|
|
471
482
|
alias_method :main_control=, :set_main_control
|
472
483
|
|
473
484
|
# Set side of the control to which the popup will align itself.
|
485
|
+
#
|
474
486
|
# Valid values are {Wx::Direction::LEFT}, {Wx::Direction::RIGHT} and 0. The default value 0 means that the most appropriate side is used (which, currently, is always {Wx::Direction::LEFT}).
|
475
487
|
# @param anchorSide [Integer]
|
476
488
|
# @return [void]
|
@@ -478,6 +490,7 @@ module Wx
|
|
478
490
|
alias_method :popup_anchor=, :set_popup_anchor
|
479
491
|
|
480
492
|
# Set popup interface class derived from {Wx::ComboPopup}.
|
493
|
+
#
|
481
494
|
# This method should be called as soon as possible after the control has been created, unless {Wx::ComboCtrl#on_button_click} has been overridden.
|
482
495
|
# @param popup [Wx::ComboPopup]
|
483
496
|
# @return [void]
|
@@ -485,22 +498,38 @@ module Wx
|
|
485
498
|
alias_method :popup_control=, :set_popup_control
|
486
499
|
|
487
500
|
# Extends popup size horizontally, relative to the edges of the combo control.
|
488
|
-
#
|
501
|
+
#
|
502
|
+
# <div class="wxrb-remark">
|
503
|
+
# <b>Remark:</b>
|
504
|
+
# <p>Popup minimum width may override arguments. It is up to the popup to fully take this into account.
|
505
|
+
# </p>
|
506
|
+
# </div>
|
489
507
|
# @param extLeft [Integer] How many pixel to extend beyond the left edge of the control. Default is 0.
|
490
508
|
# @param extRight [Integer] How many pixel to extend beyond the right edge of the control. Default is 0.
|
491
509
|
# @return [void]
|
492
510
|
def set_popup_extents(extLeft, extRight) end
|
493
511
|
|
494
512
|
# Sets preferred maximum height of the popup.
|
495
|
-
#
|
513
|
+
#
|
514
|
+
# <div class="wxrb-remark">
|
515
|
+
# <b>Remark:</b>
|
516
|
+
# <p>Value -1 indicates the default.
|
517
|
+
# </p>
|
518
|
+
# </div>
|
496
519
|
# @param height [Integer]
|
497
520
|
# @return [void]
|
498
521
|
def set_popup_max_height(height) end
|
499
522
|
alias_method :popup_max_height=, :set_popup_max_height
|
500
523
|
|
501
524
|
# Sets minimum width of the popup.
|
525
|
+
#
|
502
526
|
# If wider than combo control, it will extend to the left.
|
503
|
-
#
|
527
|
+
#
|
528
|
+
# <div class="wxrb-remark">
|
529
|
+
# <b>Remark:</b>
|
530
|
+
# <p>Value -1 indicates the default. Also, popup implementation may choose to ignore this.
|
531
|
+
# </p>
|
532
|
+
# </div>
|
504
533
|
# @param width [Integer]
|
505
534
|
# @return [void]
|
506
535
|
def set_popup_min_width(width) end
|
@@ -513,6 +542,7 @@ module Wx
|
|
513
542
|
def set_selection(from, to) end
|
514
543
|
|
515
544
|
# Sets the text for the text field without affecting the popup.
|
545
|
+
#
|
516
546
|
# Thus, unlike {Wx::ComboCtrl#set_value}, it works equally well with combo control using {Wx::CB_READONLY} style.
|
517
547
|
# @param value [String]
|
518
548
|
# @return [void]
|
@@ -520,6 +550,7 @@ module Wx
|
|
520
550
|
alias_method :text=, :set_text
|
521
551
|
|
522
552
|
# Set a custom window style for the embedded {Wx::TextCtrl}.
|
553
|
+
#
|
523
554
|
# Usually you will need to use this during two-step creation, just before {Wx::ComboCtrl#create}. For example:
|
524
555
|
#
|
525
556
|
# ```
|
@@ -536,7 +567,12 @@ module Wx
|
|
536
567
|
alias_method :text_ctrl_style=, :set_text_ctrl_style
|
537
568
|
|
538
569
|
# Sets the text for the combo control text field.
|
539
|
-
#
|
570
|
+
#
|
571
|
+
# <div class="wxrb-note">
|
572
|
+
# <b>Note:</b>
|
573
|
+
# <p>For a combo control with {Wx::CB_READONLY} style the string must be accepted by the popup (for instance, exist in the dropdown list), otherwise the call to {Wx::ComboCtrl#set_value} is ignored.
|
574
|
+
# </p>
|
575
|
+
# </div>
|
540
576
|
# @param value [String]
|
541
577
|
# @return [void]
|
542
578
|
def set_value(value) end
|
@@ -549,17 +585,20 @@ module Wx
|
|
549
585
|
alias_method :value_by_user=, :set_value_by_user
|
550
586
|
|
551
587
|
# Undoes the last edit in the text field.
|
588
|
+
#
|
552
589
|
# Windows only.
|
553
590
|
# @return [void]
|
554
591
|
def undo; end
|
555
592
|
|
556
593
|
# Enable or disable usage of an alternative popup window, which guarantees ability to focus the popup control, and allows common native controls to function normally.
|
594
|
+
#
|
557
595
|
# This alternative popup window is usually a {Wx::Dialog}, and as such, when it is shown, its parent top-level window will appear as if the focus has been lost from it.
|
558
596
|
# @param enable [Boolean]
|
559
597
|
# @return [void]
|
560
598
|
def use_alt_popup_window(enable=true) end
|
561
599
|
|
562
600
|
# Returns features supported by {Wx::ComboCtrl}.
|
601
|
+
#
|
563
602
|
# If needed feature is missing, you need to instead use {Wx::GenericComboCtrl}, which however may lack a native look and feel (but otherwise sports identical API).
|
564
603
|
# Value returned is a combination of the flags defined in {Wx::ComboCtrlFeatures}.
|
565
604
|
# @return [Integer]
|
@@ -569,6 +608,7 @@ module Wx
|
|
569
608
|
protected
|
570
609
|
|
571
610
|
# This member function is not normally called in application code.
|
611
|
+
#
|
572
612
|
# Instead, it can be implemented in a derived class to create a custom popup animation.
|
573
613
|
# The parameters are the same as those for {Wx::ComboCtrl#do_show_popup}.
|
574
614
|
# true if animation finishes before the function returns, false otherwise. In the latter case you need to manually call {Wx::ComboCtrl#do_show_popup} after the animation ends.
|
@@ -578,13 +618,20 @@ module Wx
|
|
578
618
|
def animate_show(rect, flags) end
|
579
619
|
|
580
620
|
# This member function is not normally called in application code.
|
621
|
+
#
|
581
622
|
# Instead, it can be implemented in a derived class to return default {Wx::ComboPopup}, in case popup is NULL.
|
582
|
-
#
|
623
|
+
#
|
624
|
+
# <div class="wxrb-note">
|
625
|
+
# <b>Note:</b>
|
626
|
+
# <p>If you have implemented {Wx::ComboCtrl#on_button_click} to do something else than show the popup, then {Wx::ComboCtrl#do_set_popup_control} must always set popup to NULL.
|
627
|
+
# </p>
|
628
|
+
# </div>
|
583
629
|
# @param popup [Wx::ComboPopup]
|
584
630
|
# @return [void]
|
585
631
|
def do_set_popup_control(popup) end
|
586
632
|
|
587
633
|
# This member function is not normally called in application code.
|
634
|
+
#
|
588
635
|
# Instead, it must be called in a derived class to make sure popup is properly shown after a popup animation has finished (but only if {Wx::ComboCtrl#animate_show} did not finish the animation within its function scope).
|
589
636
|
# @param rect [Wx::Rect] Position to show the popup window at, in screen coordinates.
|
590
637
|
# @param flags [Integer] Combination of any of the following: {Wx::ComboCtrl::ShowAbove}, and {Wx::ComboCtrl::CanDeferShow}.
|
@@ -594,8 +641,8 @@ module Wx
|
|
594
641
|
end # ComboCtrl
|
595
642
|
|
596
643
|
# In order to use a custom popup with {Wx::ComboCtrl}, an interface class must be derived from {Wx::ComboPopup}.
|
644
|
+
#
|
597
645
|
# For more information on how to use it, see Setting Custom Popup for wxComboCtrl.
|
598
|
-
# ===
|
599
646
|
#
|
600
647
|
# Category: {Wx::Controls}
|
601
648
|
# @see Wx::ComboCtrl
|
@@ -603,20 +650,24 @@ module Wx
|
|
603
650
|
#
|
604
651
|
#
|
605
652
|
# @note In wxRuby this is a mixin module instead of a (base) class.
|
653
|
+
# @wxrb_require USE_COMBOCTRL
|
606
654
|
module ComboPopup
|
607
655
|
|
608
656
|
# Default constructor.
|
657
|
+
#
|
609
658
|
# It is recommended that internal variables are prepared in {Wx::ComboPopup#init} instead (because m_combo is not valid in constructor).
|
610
659
|
# @return [Wx::ComboPopup]
|
611
660
|
def initialize; end
|
612
661
|
|
613
662
|
# The derived class must implement this to create the popup control.
|
663
|
+
#
|
614
664
|
# true if the call succeeded, false otherwise.
|
615
665
|
# @param parent [Wx::Window]
|
616
666
|
# @return [Boolean]
|
617
667
|
def create(parent) end
|
618
668
|
|
619
669
|
# You only need to implement this member function if you create your popup class in non-standard way.
|
670
|
+
#
|
620
671
|
# The default implementation can handle both multiple-inherited popup control (as seen in {Wx::ComboCtrl} samples) and one allocated separately in heap.
|
621
672
|
# If you do completely re-implement this function, make sure it calls Destroy() for the popup control and also deletes this object (usually as the last thing).
|
622
673
|
# @return [void]
|
@@ -627,14 +678,24 @@ module Wx
|
|
627
678
|
def dismiss; end
|
628
679
|
|
629
680
|
# Implement to customize matching of value string to an item container entry.
|
630
|
-
#
|
681
|
+
#
|
682
|
+
# <div class="wxrb-remark">
|
683
|
+
# <b>Remark:</b>
|
684
|
+
# <p>Default implementation always return true and does not alter trueItem.
|
685
|
+
# </p>
|
686
|
+
# </div>
|
631
687
|
# @param item [String] String entered, usually by user or from SetValue() call.
|
632
688
|
# @param trueItem [String] When item matches an entry, but the entry's string representation is not exactly the same (case mismatch, for example), then the true item string should be written back to here, if it is not a NULL pointer.
|
633
689
|
# @return [Boolean]
|
634
690
|
def find_item(item, trueItem=nil) end
|
635
691
|
|
636
692
|
# The derived class may implement this to return adjusted size for the popup control, according to the variables given.
|
637
|
-
#
|
693
|
+
#
|
694
|
+
# <div class="wxrb-remark">
|
695
|
+
# <b>Remark:</b>
|
696
|
+
# <p>This function is called each time popup is about to be shown.
|
697
|
+
# </p>
|
698
|
+
# </div>
|
638
699
|
# @param minWidth [Integer] Preferred minimum width.
|
639
700
|
# @param prefHeight [Integer] Preferred height. May be -1 to indicate no preference.
|
640
701
|
# @param maxHeight [Integer] Max height for window, as limited by screen size.
|
@@ -658,19 +719,27 @@ module Wx
|
|
658
719
|
alias_method :string_value, :get_string_value
|
659
720
|
|
660
721
|
# The derived class must implement this to initialize its internal variables.
|
722
|
+
#
|
661
723
|
# This method is called immediately after construction finishes. m_combo member variable has been initialized before the call.
|
662
724
|
# @return [void]
|
663
725
|
def init; end
|
664
726
|
|
665
727
|
# Utility method that returns true if Create has been called.
|
728
|
+
#
|
666
729
|
# Useful in conjunction with {Wx::ComboPopup#lazy_create}.
|
667
730
|
# @return [Boolean]
|
668
731
|
def is_created; end
|
669
732
|
alias_method :created?, :is_created
|
670
733
|
|
671
734
|
# The derived class may implement this to return true if it wants to delay call to {Wx::ComboPopup#create} until the popup is shown for the first time.
|
735
|
+
#
|
672
736
|
# It is more efficient, but on the other hand it is often more convenient to have the control created immediately.
|
673
|
-
#
|
737
|
+
#
|
738
|
+
# <div class="wxrb-remark">
|
739
|
+
# <b>Remark:</b>
|
740
|
+
# <p>Base implementation returns false.
|
741
|
+
# </p>
|
742
|
+
# </div>
|
674
743
|
# @return [Boolean]
|
675
744
|
def lazy_create; end
|
676
745
|
|
@@ -679,6 +748,7 @@ module Wx
|
|
679
748
|
def on_combo_double_click; end
|
680
749
|
|
681
750
|
# The derived class may implement this to receive key events from the parent {Wx::ComboCtrl}.
|
751
|
+
#
|
682
752
|
# Events not handled should be skipped, as usual.
|
683
753
|
# @param event [Wx::KeyEvent]
|
684
754
|
# @return [void]
|
@@ -693,6 +763,7 @@ module Wx
|
|
693
763
|
def on_popup; end
|
694
764
|
|
695
765
|
# The derived class may implement this to paint the parent {Wx::ComboCtrl}.
|
766
|
+
#
|
696
767
|
# Default implementation draws value as string.
|
697
768
|
# @param dc [Wx::DC]
|
698
769
|
# @param rect [Wx::Rect]
|
@@ -707,254 +778,5 @@ module Wx
|
|
707
778
|
|
708
779
|
end # ComboPopup
|
709
780
|
|
710
|
-
# {Wx::OwnerDrawnComboBox} is a combobox with owner-drawn list items.
|
711
|
-
# In essence, it is a {Wx::ComboCtrl} with {Wx::VListBox} popup and {Wx::ControlWithItems} interface.
|
712
|
-
# Implementing item drawing and measuring is similar to {Wx::VListBox}. Application needs to subclass {Wx::OwnerDrawnComboBox} and implement {Wx::OwnerDrawnComboBox#on_draw_item}, {Wx::OwnerDrawnComboBox#on_measure_item} and {Wx::OwnerDrawnComboBox#on_measure_item_width}.
|
713
|
-
# === Styles
|
714
|
-
#
|
715
|
-
# This class supports the following styles:
|
716
|
-
#
|
717
|
-
# - {Wx::ODCB_DCLICK_CYCLES}: Double-clicking cycles item if {Wx::CB_READONLY} is also used. Synonymous with {Wx::CC_SPECIAL_DCLICK}.
|
718
|
-
#
|
719
|
-
# - {Wx::ODCB_STD_CONTROL_PAINT}: Control itself is not custom painted using OnDrawItem. Even if this style is not used, writable {Wx::OwnerDrawnComboBox} is never custom painted unless {Wx::OwnerDrawnComboBox#set_custom_paint_width} is called.
|
720
|
-
#
|
721
|
-
# === Events emitted by this class
|
722
|
-
#
|
723
|
-
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
|
724
|
-
# Event handler methods for events emitted by this class:
|
725
|
-
#
|
726
|
-
# - {Wx::EvtHandler#evt_combobox}(id, meth = nil, &block): Process a {Wx::EVT_COMBOBOX} event, when an item on the list is selected. Note that calling {Wx::OwnerDrawnComboBox#get_value} returns the new value of selection.
|
727
|
-
#
|
728
|
-
# ===
|
729
|
-
#
|
730
|
-
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
|
731
|
-
# </td><td> wxGTK Appearance
|
732
|
-
# </td><td> wxOSX Appearance
|
733
|
-
# </td></tr></table></div>
|
734
|
-
# @see Wx::ComboCtrl window styles and Window Styles.
|
735
|
-
#
|
736
|
-
# @see Events emitted by Wx::ComboCtrl.
|
737
|
-
#
|
738
|
-
# @see Wx::ComboCtrl
|
739
|
-
# @see Wx::ComboBox
|
740
|
-
# @see Wx::VListBox
|
741
|
-
# @see Wx::CommandEvent
|
742
|
-
#
|
743
|
-
#
|
744
|
-
class OwnerDrawnComboBox < ComboCtrl
|
745
|
-
|
746
|
-
# @overload create(parent, id, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR)
|
747
|
-
# Creates the combobox for two-step construction.
|
748
|
-
# See {Wx::OwnerDrawnComboBox#initialize} for further details.
|
749
|
-
# Derived classes should call or replace this function.
|
750
|
-
# @param parent [Wx::Window]
|
751
|
-
# @param id [Integer]
|
752
|
-
# @param value [String]
|
753
|
-
# @param pos [Array(Integer, Integer), Wx::Point]
|
754
|
-
# @param size [Array(Integer, Integer), Wx::Size]
|
755
|
-
# @param style [Integer]
|
756
|
-
# @param validator [Wx::Validator]
|
757
|
-
# @param name [String]
|
758
|
-
# @return [Boolean]
|
759
|
-
# @overload create(parent, id, value, pos, size, choices, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::COMBO_BOX_NAME_STR)
|
760
|
-
# Creates the combobox for two-step construction.
|
761
|
-
# See {Wx::OwnerDrawnComboBox#initialize} for further details.
|
762
|
-
# Derived classes should call or replace this function.
|
763
|
-
# @param parent [Wx::Window]
|
764
|
-
# @param id [Integer]
|
765
|
-
# @param value [String]
|
766
|
-
# @param pos [Array(Integer, Integer), Wx::Point]
|
767
|
-
# @param size [Array(Integer, Integer), Wx::Size]
|
768
|
-
# @param choices [Array<String>]
|
769
|
-
# @param style [Integer]
|
770
|
-
# @param validator [Wx::Validator]
|
771
|
-
# @param name [String]
|
772
|
-
# @return [Boolean]
|
773
|
-
def create(*args) end
|
774
|
-
|
775
|
-
# @overload initialize()
|
776
|
-
# Default constructor.
|
777
|
-
# @return [Wx::OwnerDrawnComboBox]
|
778
|
-
# @overload initialize(parent, id, value, pos, size, choices, style=0, validator=Wx::DEFAULT_VALIDATOR, name=("COMBO_BOX"))
|
779
|
-
# Constructor, creating and showing a owner-drawn combobox.
|
780
|
-
#
|
781
|
-
# @see Wx::OwnerDrawnComboBox#create
|
782
|
-
# @see Wx::Validator
|
783
|
-
# @param parent [Wx::Window] Parent window. Must not be NULL.
|
784
|
-
# @param id [Integer] Window identifier. The value {Wx::StandardID::ID_ANY} indicates a default value.
|
785
|
-
# @param value [String] Initial selection string. An empty string indicates no selection.
|
786
|
-
# @param pos [Array(Integer, Integer), Wx::Point] Window position.
|
787
|
-
# @param size [Array(Integer, Integer), Wx::Size] Window size. If {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
|
788
|
-
# @param choices [Array<String>] An array of strings with which to initialise the control.
|
789
|
-
# @param style [Integer] Window style. See {Wx::OwnerDrawnComboBox}.
|
790
|
-
# @param validator [Wx::Validator] Window validator.
|
791
|
-
# @param name [String] Window name.
|
792
|
-
# @return [Wx::OwnerDrawnComboBox]
|
793
|
-
def initialize(*args) end
|
794
|
-
|
795
|
-
# {Wx::OwnerDrawnComboBox#is_empty} is not available in this class.
|
796
|
-
# This method is documented here only to notice that it can't be used with this class because of the ambiguity between the methods with the same name inherited from {Wx::ItemContainer} and {Wx::TextEntry} base classes.
|
797
|
-
# Because of this, any attempt to call it results in a compilation error and you should use either {Wx::OwnerDrawnComboBox#is_list_empty} or {Wx::OwnerDrawnComboBox#is_text_empty} depending on what exactly do you want to test.
|
798
|
-
# @return [Boolean]
|
799
|
-
def is_empty; end
|
800
|
-
alias_method :empty?, :is_empty
|
801
|
-
|
802
|
-
# Returns true if the list of combobox choices is empty.
|
803
|
-
# Use this method instead of (not available in this class) {Wx::OwnerDrawnComboBox#is_empty} to test if the list of items is empty.
|
804
|
-
# @return [Boolean]
|
805
|
-
def is_list_empty; end
|
806
|
-
alias_method :list_empty?, :is_list_empty
|
807
|
-
|
808
|
-
# Returns true if the text of the combobox is empty.
|
809
|
-
# Use this method instead of (not available in this class) {Wx::OwnerDrawnComboBox#is_empty} to test if the text currently entered into the combobox is empty.
|
810
|
-
# @return [Boolean]
|
811
|
-
def is_text_empty; end
|
812
|
-
alias_method :text_empty?, :is_text_empty
|
813
|
-
|
814
|
-
# Returns index to the widest item in the list.
|
815
|
-
# @return [Integer]
|
816
|
-
def get_widest_item; end
|
817
|
-
alias_method :widest_item, :get_widest_item
|
818
|
-
|
819
|
-
# Returns width of the widest item in the list.
|
820
|
-
# @return [Integer]
|
821
|
-
def get_widest_item_width; end
|
822
|
-
alias_method :widest_item_width, :get_widest_item_width
|
823
|
-
|
824
|
-
# @overload append(item)
|
825
|
-
# Appends item into the control.
|
826
|
-
# The return value is the index of the newly inserted item. Note that this may be different from the last one if the control is sorted (e.g. has {Wx::LB_SORT} or {Wx::CB_SORT} style).
|
827
|
-
# @param item [String] String to add.
|
828
|
-
# @return [Integer]
|
829
|
-
# @overload append(item, clientData)
|
830
|
-
# Appends item into the control.
|
831
|
-
# The return value is the index of the newly inserted item. Note that this may be different from the last one if the control is sorted (e.g. has {Wx::LB_SORT} or {Wx::CB_SORT} style).
|
832
|
-
# @param item [String] String to add.
|
833
|
-
# @param clientData [Object] Pointer to client data to associate with the new item.
|
834
|
-
# @return [Integer]
|
835
|
-
# @overload append(items)
|
836
|
-
# Appends several items at once into the control.
|
837
|
-
# Notice that calling this method is usually much faster than appending them one by one if you need to add a lot of items.
|
838
|
-
# @param items [Array<String>] Array of strings to insert.
|
839
|
-
# @return [Integer]
|
840
|
-
# @overload append(items, clientData)
|
841
|
-
# Appends several items at once into the control.
|
842
|
-
# Notice that calling this method is usually much faster than appending them one by one if you need to add a lot of items.
|
843
|
-
# @param items [Array<String>] Array of strings to insert.
|
844
|
-
# @param clientData [Array] Array of client data pointers of the same size as items to associate with the new items.
|
845
|
-
# @return [Integer]
|
846
|
-
def append(*args) end
|
847
|
-
|
848
|
-
# Returns a pointer to the client data associated with the given item (if any).
|
849
|
-
# It is an error to call this function for a control which doesn't have untyped client data at all although it is OK to call it even if the given item doesn't have any client data associated with it (but other items do).
|
850
|
-
#
|
851
|
-
# A pointer to the client data, or NULL if not present.
|
852
|
-
# @param n [Integer] The zero-based position of the item.
|
853
|
-
# @return [Object]
|
854
|
-
def get_client_data(n) end
|
855
|
-
alias_method :client_data, :get_client_data
|
856
|
-
|
857
|
-
# Associates the given untyped client data pointer with the given item.
|
858
|
-
# Note that it is an error to call this function if any typed client data pointers had been associated with the control items before.
|
859
|
-
# @param n [Integer] The zero-based item index.
|
860
|
-
# @param data [Object] The client data to associate with the item.
|
861
|
-
# @return [void]
|
862
|
-
def set_client_data(n, data) end
|
863
|
-
|
864
|
-
# @overload insert(item, pos)
|
865
|
-
# Inserts item into the control.
|
866
|
-
# The return value is the index of the newly inserted item. If the insertion failed for some reason, -1 is returned.
|
867
|
-
# @param item [String] String to add.
|
868
|
-
# @param pos [Integer] Position to insert item before, zero based.
|
869
|
-
# @return [Integer]
|
870
|
-
# @overload insert(item, pos, clientData)
|
871
|
-
# Inserts item into the control.
|
872
|
-
# The return value is the index of the newly inserted item. If the insertion failed for some reason, -1 is returned.
|
873
|
-
# @param item [String] String to add.
|
874
|
-
# @param pos [Integer] Position to insert item before, zero based.
|
875
|
-
# @param clientData [Object] Pointer to client data to associate with the new item.
|
876
|
-
# @return [Integer]
|
877
|
-
# @overload insert(items, pos)
|
878
|
-
# Inserts several items at once into the control.
|
879
|
-
# Notice that calling this method is usually much faster than inserting them one by one if you need to insert a lot of items.
|
880
|
-
#
|
881
|
-
# The return value is the index of the last inserted item. If the insertion failed for some reason, -1 is returned.
|
882
|
-
# @param items [Array<String>] Array of strings to insert.
|
883
|
-
# @param pos [Integer] Position to insert the items before, zero based.
|
884
|
-
# @return [Integer]
|
885
|
-
# @overload insert(items, pos, clientData)
|
886
|
-
# Inserts several items at once into the control.
|
887
|
-
# Notice that calling this method is usually much faster than inserting them one by one if you need to insert a lot of items.
|
888
|
-
#
|
889
|
-
# The return value is the index of the last inserted item. If the insertion failed for some reason, -1 is returned.
|
890
|
-
# @param items [Array<String>] Array of strings to insert.
|
891
|
-
# @param pos [Integer] Position to insert the items before, zero based.
|
892
|
-
# @param clientData [Array] Array of client data pointers of the same size as items to associate with the new items.
|
893
|
-
# @return [Integer]
|
894
|
-
def insert(*args) end
|
895
|
-
|
896
|
-
# @overload set(items)
|
897
|
-
# Replaces the current control contents with the given items.
|
898
|
-
# Notice that calling this method is usually much faster than appending them one by one if you need to add a lot of items.
|
899
|
-
# @param items [Array<String>] Array of strings to insert.
|
900
|
-
# @return [void]
|
901
|
-
# @overload set(items, clientData)
|
902
|
-
# Replaces the current control contents with the given items.
|
903
|
-
# Notice that calling this method is usually much faster than appending them one by one if you need to add a lot of items.
|
904
|
-
# @param items [Array<String>] Array of strings to insert.
|
905
|
-
# @param clientData [Array] Array of client data pointers of the same size as items to associate with the new items.
|
906
|
-
# @return [void]
|
907
|
-
def set(*args) end
|
908
|
-
|
909
|
-
# Deletes an item from the control.
|
910
|
-
# The client data associated with the item will be also deleted if it is owned by the control. Note that it is an error (signalled by an assert failure in debug builds) to remove an item with the index negative or greater or equal than the number of items in the control.
|
911
|
-
# If there is a currently selected item below the item being deleted, i.e. if {Wx::OwnerDrawnComboBox#get_selection} returns a valid index greater than or equal to n, the selection is invalidated when this function is called. However if the selected item appears before the item being deleted, the selection is preserved unchanged.
|
912
|
-
# @see Wx::OwnerDrawnComboBox#clear
|
913
|
-
# @param n [Integer] The zero-based item index.
|
914
|
-
# @return [void]
|
915
|
-
def delete(n) end
|
916
|
-
|
917
|
-
# Returns true, if either untyped data (<code>void*</code>) or object data ({Wx::ClientData}*) is associated with the items of the control.
|
918
|
-
# @return [Boolean]
|
919
|
-
def has_client_data; end
|
920
|
-
alias_method :has_client_data?, :has_client_data
|
921
|
-
|
922
|
-
|
923
|
-
protected
|
924
|
-
|
925
|
-
# This method is used to draw the items background and, maybe, a border around it.
|
926
|
-
# The base class version implements a reasonable default behaviour which consists in drawing the selected item with the standard background colour and drawing a border around the item if it is either selected or current.
|
927
|
-
# flags has the same meaning as with {Wx::OwnerDrawnComboBox#on_draw_item}.
|
928
|
-
# @param dc [Wx::DC]
|
929
|
-
# @param rect [Wx::Rect]
|
930
|
-
# @param item [Integer]
|
931
|
-
# @param flags [Integer]
|
932
|
-
# @return [void]
|
933
|
-
def on_draw_background(dc, rect, item, flags) end
|
934
|
-
|
935
|
-
# The derived class may implement this function to actually draw the item with the given index on the provided DC.
|
936
|
-
# If function is not implemented, the item text is simply drawn, as if the control was a normal combobox.
|
937
|
-
# @param dc [Wx::DC] The device context to use for drawing
|
938
|
-
# @param rect [Wx::Rect] The bounding rectangle for the item being drawn (DC clipping region is set to this rectangle before calling this function)
|
939
|
-
# @param item [Integer] The index of the item to be drawn
|
940
|
-
# @param flags [Integer] A combination of the {Wx::OwnerDrawnComboBoxPaintingFlags} enumeration values.
|
941
|
-
# @return [void]
|
942
|
-
def on_draw_item(dc, rect, item, flags) end
|
943
|
-
|
944
|
-
# The derived class may implement this method to return the height of the specified item (in pixels).
|
945
|
-
# The default implementation returns text height, as if this control was a normal combobox.
|
946
|
-
# @param item [Integer]
|
947
|
-
# @return [Integer]
|
948
|
-
def on_measure_item(item) end
|
949
|
-
|
950
|
-
# The derived class may implement this method to return the width of the specified item (in pixels).
|
951
|
-
# If -1 is returned, then the item text width is used.
|
952
|
-
# The default implementation returns -1.
|
953
|
-
# @param item [Integer]
|
954
|
-
# @return [Integer]
|
955
|
-
def on_measure_item_width(item) end
|
956
|
-
|
957
|
-
end # OwnerDrawnComboBox
|
958
|
-
|
959
781
|
|
960
782
|
end
|