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
@@ -45,16 +45,16 @@ module Wx
|
|
45
45
|
|
46
46
|
# @overload initialize()
|
47
47
|
# Default ctor.
|
48
|
-
# @return [ImageList]
|
48
|
+
# @return [Wx::ImageList]
|
49
49
|
# @overload initialize(width, height, mask=true, initialCount=1)
|
50
50
|
# Constructor specifying the image size, whether image masks should be created, and the initial size of the list.
|
51
51
|
# Note that the size is specified in logical pixels.
|
52
52
|
# @see Wx::ImageList#create
|
53
53
|
# @param width [Integer] Width of the images in the list.
|
54
54
|
# @param height [Integer] Height of the images in the list.
|
55
|
-
# @param mask [
|
55
|
+
# @param mask [Boolean] If true, all images will have masks, with the mask being created from the light grey pixels if not specified otherwise, i.e. if the image doesn't have neither alpha channel nor mask and no mask is explicitly specified when adding it. Note that if an image does have alpha channel or mask, it will always be used, whether this parameter is true or false.
|
56
56
|
# @param initialCount [Integer] The initial size of the list.
|
57
|
-
# @return [ImageList]
|
57
|
+
# @return [Wx::ImageList]
|
58
58
|
def initialize(*args) end
|
59
59
|
|
60
60
|
# @overload add(bitmap, mask=Wx::NULL_BITMAP)
|
@@ -79,23 +79,23 @@ module Wx
|
|
79
79
|
#
|
80
80
|
# The new zero-based image index.
|
81
81
|
#
|
82
|
-
# Availability: only available for the
|
82
|
+
# Availability: only available for the wxMSW, wxOSX/Cocoa ports. {Wx::msw},{Wx::osx}
|
83
83
|
# @param icon [Wx::Icon] Icon to use as the image.
|
84
84
|
# @return [Integer]
|
85
85
|
def add(*args) end
|
86
86
|
|
87
87
|
# Initializes the list.
|
88
|
-
# See {Wx::ImageList#
|
88
|
+
# See {Wx::ImageList#initialize} for details.
|
89
89
|
# This function can be called only once after creating the object using its default ctor or after calling {Wx::ImageList#destroy}.
|
90
90
|
# @param width [Integer]
|
91
91
|
# @param height [Integer]
|
92
|
-
# @param mask [
|
92
|
+
# @param mask [Boolean]
|
93
93
|
# @param initialCount [Integer]
|
94
|
-
# @return [
|
94
|
+
# @return [Boolean]
|
95
95
|
def create(width, height, mask=true, initialCount=1) end
|
96
96
|
|
97
97
|
# Destroys the current list.
|
98
|
-
# This function resets the object to its initial state and does more than just {Wx::ImageList#remove_all} in the native
|
98
|
+
# This function resets the object to its initial state and does more than just {Wx::ImageList#remove_all} in the native wxMSW version.
|
99
99
|
# After calling it, {Wx::ImageList#create} may be called again to recreate the image list, e.g. using a different size.
|
100
100
|
# @return [void]
|
101
101
|
def destroy; end
|
@@ -106,9 +106,13 @@ module Wx
|
|
106
106
|
# @param x [Integer] X position on the device context.
|
107
107
|
# @param y [Integer] Y position on the device context.
|
108
108
|
# @param flags [Integer] How to draw the image. A bitlist of a selection of the following:
|
109
|
-
#
|
110
|
-
#
|
111
|
-
#
|
109
|
+
#
|
110
|
+
# - {Wx::IMAGELIST_DRAW_NORMAL}: Draw the image normally.
|
111
|
+
# - {Wx::IMAGELIST_DRAW_TRANSPARENT}: Draw the image with transparency.
|
112
|
+
# - {Wx::IMAGELIST_DRAW_SELECTED}: Draw the image in selected state.
|
113
|
+
# - {Wx::IMAGELIST_DRAW_FOCUSED}: Draw the image in a focused state.
|
114
|
+
# @param solidBackground [Boolean] For optimisation - drawing can be faster if the function is told that the background is solid.
|
115
|
+
# @return [Boolean]
|
112
116
|
def draw(index, dc, x, y, flags=Wx::IMAGELIST_DRAW_NORMAL, solidBackground=false) end
|
113
117
|
|
114
118
|
# Returns the bitmap corresponding to the given index.
|
@@ -128,29 +132,19 @@ module Wx
|
|
128
132
|
def get_image_count; end
|
129
133
|
alias_method :image_count, :get_image_count
|
130
134
|
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
|
135
|
-
# true if the function succeeded, false if it failed (for example, if the image list was not yet initialized).
|
136
|
-
# @param index [Integer] currently unused, should be 0
|
137
|
-
# @param width [int] receives the width of the images in the list
|
138
|
-
# @param height [int] receives the height of the images in the list
|
139
|
-
# @return [true,false]
|
140
|
-
# @overload get_size()
|
141
|
-
# Retrieves the size of the image list as passed to {Wx::ImageList#create}.
|
142
|
-
# the size of the image list, which may be zero if the image list was not yet initialised.
|
143
|
-
# @return [Wx::Size]
|
144
|
-
def get_size(*args) end
|
135
|
+
# Retrieves the size of the image list as passed to {Wx::ImageList#create}.
|
136
|
+
# the size of the image list, which may be zero if the image list was not yet initialised.
|
137
|
+
# @return [Wx::Size]
|
138
|
+
def get_size; end
|
145
139
|
alias_method :size, :get_size
|
146
140
|
|
147
141
|
# Removes the image at the given position.
|
148
142
|
# @param index [Integer]
|
149
|
-
# @return [
|
143
|
+
# @return [Boolean]
|
150
144
|
def remove(index) end
|
151
145
|
|
152
146
|
# Removes all the images in the list.
|
153
|
-
# @return [
|
147
|
+
# @return [Boolean]
|
154
148
|
def remove_all; end
|
155
149
|
|
156
150
|
# @overload replace(index, bitmap, mask=Wx::NULL_BITMAP)
|
@@ -161,17 +155,17 @@ module Wx
|
|
161
155
|
# @param index [Integer] The index of the bitmap to be replaced.
|
162
156
|
# @param bitmap [Wx::Bitmap] Bitmap representing the opaque areas of the image.
|
163
157
|
# @param mask [Wx::Bitmap] Monochrome mask bitmap, representing the transparent areas of the image.
|
164
|
-
# @return [
|
158
|
+
# @return [Boolean]
|
165
159
|
# @overload replace(index, icon)
|
166
160
|
# Replaces the existing image with the new image.
|
167
161
|
# true if the replacement was successful, false otherwise.
|
168
162
|
#
|
169
163
|
# The original bitmap or icon is not affected by the {Wx::ImageList#replace} operation, and can be deleted afterwards.
|
170
164
|
#
|
171
|
-
# Availability: only available for the
|
165
|
+
# Availability: only available for the wxMSW, wxOSX/Cocoa ports. {Wx::msw},{Wx::osx}
|
172
166
|
# @param index [Integer] The index of the bitmap to be replaced.
|
173
167
|
# @param icon [Wx::Icon] Icon to use as the image.
|
174
|
-
# @return [
|
168
|
+
# @return [Boolean]
|
175
169
|
def replace(*args) end
|
176
170
|
|
177
171
|
end # ImageList
|
@@ -0,0 +1,152 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# This file is automatically generated by the WXRuby3 documentation
|
3
|
+
# generator. Do not alter this file.
|
4
|
+
# :startdoc:
|
5
|
+
|
6
|
+
|
7
|
+
module Wx
|
8
|
+
|
9
|
+
# An info bar is a transient window shown at top or bottom of its parent window to display non-critical information to the user.
|
10
|
+
# This class provides another way to show messages to the user, intermediate between message boxes and status bar messages. The message boxes are modal and thus interrupt the users work flow and should be used sparingly for this reason. However status bar messages are often too easy not to notice at all. An info bar provides a way to present the messages which has a much higher chance to be noticed by the user but without being annoying.
|
11
|
+
# Info bar may show an icon (on the left), text message and, optionally, buttons allowing the user to react to the information presented. Unless a custom button was added to the info bar, it also has a close button at the right allowing the user to dismiss it so it isn't necessary to provide a button just to close it.
|
12
|
+
# {Wx::InfoBar} calls its parent {Wx::Window#layout} method and assumes that it will change the parent layout appropriately depending on whether the info bar itself is shown or hidden. Usually this is achieved by simply using a sizer for the parent window layout and adding {Wx::InfoBar} to this sizer as one of the items. Considering the usual placement of the info bars, normally this sizer should be a vertical {Wx::BoxSizer} and the bar its first or last element so the simplest possible example of using this class would be:
|
13
|
+
# ```
|
14
|
+
# class MyFrame : public wxFrame
|
15
|
+
# {
|
16
|
+
# ...
|
17
|
+
#
|
18
|
+
# wxInfoBar *m_infoBar;
|
19
|
+
# };
|
20
|
+
#
|
21
|
+
# MyFrame::MyFrame()
|
22
|
+
# {
|
23
|
+
# ...
|
24
|
+
# m_infoBar = new wxInfoBar(this);
|
25
|
+
#
|
26
|
+
# wxSizer *sizer = new wxBoxSizer(wxVERTICAL);
|
27
|
+
# sizer->Add(m_infoBar, wxSizerFlags().Expand());
|
28
|
+
# ... add other frame controls to the sizer ...
|
29
|
+
# SetSizer(sizer);
|
30
|
+
# }
|
31
|
+
#
|
32
|
+
# void MyFrame::SomeMethod()
|
33
|
+
# {
|
34
|
+
# m_infoBar->ShowMessage("Something happened", wxICON_INFORMATION);
|
35
|
+
# }
|
36
|
+
# ```
|
37
|
+
#
|
38
|
+
# See the dialogs sample for more sophisticated examples.
|
39
|
+
# Currently this class is implemented generically (i.e. in the same platform-independent way for all ports) and also natively in wxGTK but the native implementation requires GTK+ 2.18 version or later (this requirement should be satisfied by any desktop systems currently in use).
|
40
|
+
# ===
|
41
|
+
#
|
42
|
+
# Category: Miscellaneous Windows
|
43
|
+
# @see Wx::StatusBar
|
44
|
+
# @see Wx::MessageDialog
|
45
|
+
#
|
46
|
+
#
|
47
|
+
class InfoBar < Control
|
48
|
+
|
49
|
+
# Set the effects to use when showing and hiding the bar.
|
50
|
+
# Either or both of the parameters can be set to {Wx::ShowEffect::SHOW_EFFECT_NONE} to disable using effects entirely.
|
51
|
+
# By default, the info bar uses {Wx::ShowEffect::SHOW_EFFECT_SLIDE_TO_BOTTOM} effect for showing itself and {Wx::ShowEffect::SHOW_EFFECT_SLIDE_TO_TOP} for hiding if it is the first element of the containing sizer and reverse effects if it's the last one. If it is neither the first nor the last element, no effect is used to avoid the use of an inappropriate one and this function must be called if an effect is desired.
|
52
|
+
# @param showEffect [Wx::ShowEffect] The effect to use when showing the bar.
|
53
|
+
# @param hideEffect [Wx::ShowEffect] The effect to use when hiding the bar.
|
54
|
+
# @return [void]
|
55
|
+
def set_show_hide_effects(showEffect, hideEffect) end
|
56
|
+
|
57
|
+
# Return the effect currently used for showing the bar.
|
58
|
+
# @return [Wx::ShowEffect]
|
59
|
+
def get_show_effect; end
|
60
|
+
alias_method :show_effect, :get_show_effect
|
61
|
+
|
62
|
+
# Return the effect currently used for hiding the bar.
|
63
|
+
# @return [Wx::ShowEffect]
|
64
|
+
def get_hide_effect; end
|
65
|
+
alias_method :hide_effect, :get_hide_effect
|
66
|
+
|
67
|
+
# Set the duration of the animation used when showing or hiding the bar.
|
68
|
+
# By default, 500ms duration is used.
|
69
|
+
# @param duration [Integer] Duration of the animation, in milliseconds.
|
70
|
+
# @return [void]
|
71
|
+
def set_effect_duration(duration) end
|
72
|
+
alias_method :effect_duration=, :set_effect_duration
|
73
|
+
|
74
|
+
# Return the effect animation duration currently used.
|
75
|
+
# @return [Integer]
|
76
|
+
def get_effect_duration; end
|
77
|
+
alias_method :effect_duration, :get_effect_duration
|
78
|
+
|
79
|
+
# @overload initialize()
|
80
|
+
# Default constructor.
|
81
|
+
# Use {Wx::InfoBar#create} for the objects created using this constructor.
|
82
|
+
# @return [Wx::InfoBar]
|
83
|
+
# @overload initialize(parent, winid=Wx::StandardID::ID_ANY)
|
84
|
+
# Constructor creating the info bar window.
|
85
|
+
#
|
86
|
+
# @see Wx::InfoBar#create
|
87
|
+
# @param parent [Wx::Window]
|
88
|
+
# @param winid [Integer]
|
89
|
+
# @return [Wx::InfoBar]
|
90
|
+
def initialize(*args) end
|
91
|
+
|
92
|
+
# Create the info bar window.
|
93
|
+
# Notice that unlike most of the other {Wx::Window}-derived classes, {Wx::InfoBar} is created hidden and is only shown when {Wx::InfoBar#show_message} is called. This is more convenient as usually the info bar is created to be shown at some later time and not immediately and so creating it hidden avoids the need to call {Wx::InfoBar#hide} explicitly from the code using it.
|
94
|
+
# This should be only called if the object was created using its default constructor.
|
95
|
+
# @param parent [Wx::Window] A valid parent window pointer.
|
96
|
+
# @param winid [Integer] The id of the info bar window, usually unused as currently no events are generated by this class.
|
97
|
+
# @return [Boolean]
|
98
|
+
def create(parent, winid=Wx::StandardID::ID_ANY) end
|
99
|
+
|
100
|
+
# Add a button to be shown in the info bar.
|
101
|
+
# The button added by this method will be shown to the right of the text (in LTR layout), with each successive button being added to the right of the previous one. If any buttons are added to the info bar using this method, the default "Close" button is not shown as it is assumed that the extra buttons already allow the user to close it.
|
102
|
+
# Clicking the button will generate a normal EVT_COMMAND_BUTTON_CLICKED event which can be handled as usual. The default handler in {Wx::InfoBar} itself closes the window whenever a button in it is clicked so if you wish the info bar to be hidden when the button is clicked, simply call <code>event.Skip()</code> in the button handler to let the base class handler do it (calling {Wx::InfoBar#dismiss} explicitly works too, of course). On the other hand, if you don't skip the event, the info bar will remain opened so make sure to do it for at least some buttons to allow the user to close it.
|
103
|
+
# Notice that the generic {Wx::InfoBar} implementation handles the button events itself and so they are not propagated to the info bar parent and you need to either inherit from {Wx::InfoBar} and handle them in your derived class or use {Wx::EvtHandler#bind}, as is done in the dialogs sample, to handle the button events in the parent frame.
|
104
|
+
# @param btnid [Integer] Id of the button. It will be used in the button message clicking this button will generate.
|
105
|
+
# @param label [String] The label of the button. It may only be empty if btnid is one of the stock ids in which case the corresponding stock label (see {get_stock_label}) will be used.
|
106
|
+
# @return [void]
|
107
|
+
def add_button(btnid, label=(())) end
|
108
|
+
|
109
|
+
# Hide the info bar window.
|
110
|
+
# This method hides the window and lays out the parent window to account for its disappearance (unlike a simple {Wx::InfoBar#hide}).
|
111
|
+
# @return [void]
|
112
|
+
def dismiss; end
|
113
|
+
|
114
|
+
# Remove a button previously added by {Wx::InfoBar#add_button}.
|
115
|
+
# @param btnid [Integer] Id of the button to remove. If more than one button with the same id is used in the info bar (which is in any case not recommended), the last, i.e. most recently added, button with this id is removed.
|
116
|
+
# @return [void]
|
117
|
+
def remove_button(btnid) end
|
118
|
+
|
119
|
+
# Show a message in the bar.
|
120
|
+
# If the bar is currently hidden, it will be shown. Otherwise its message will be updated in place.
|
121
|
+
# @param msg [String] The text of the message.
|
122
|
+
# @param flags [Integer] One of {Wx::ICON_NONE}, {Wx::ICON_INFORMATION} (default), {Wx::ICON_QUESTION}, {Wx::ICON_WARNING} or {Wx::ICON_ERROR} values. These flags have the same meaning as in {Wx::MessageDialog} for the generic version, i.e. show (or not, in case of {Wx::ICON_NONE}) the corresponding icon in the bar but can be interpreted by the native versions. For example, the GTK+ native implementation doesn't show icons at all but uses this parameter to select the appropriate background colour for the notification.
|
123
|
+
# @return [void]
|
124
|
+
def show_message(msg, flags=Wx::ICON_INFORMATION) end
|
125
|
+
|
126
|
+
# Returns the number of currently shown buttons.
|
127
|
+
# This is simply the number of calls to {Wx::InfoBar#add_button} minus the number of calls to {Wx::InfoBar#remove_button} so far.
|
128
|
+
# The number of currently shown buttons, possibly 0.
|
129
|
+
# @return [Integer]
|
130
|
+
def get_button_count; end
|
131
|
+
alias_method :button_count, :get_button_count
|
132
|
+
|
133
|
+
# Returns the ID of the button at the given position.
|
134
|
+
# The positions of the buttons are counted in order of their addition.
|
135
|
+
#
|
136
|
+
# The ID of the button at the given position or {Wx::StandardID::ID_NONE} if it is out of range (this also results in an assertion failure).
|
137
|
+
# @param idx [Integer] The position of the button in 0 to {Wx::InfoBar#get_button_count} range.
|
138
|
+
# @return [Integer]
|
139
|
+
def get_button_id(idx) end
|
140
|
+
alias_method :button_id, :get_button_id
|
141
|
+
|
142
|
+
# Returns whether a button with the given ID is currently shown.
|
143
|
+
# true if the button with this ID is currently shown.
|
144
|
+
# @param btnid [Integer] ID of the button to check for.
|
145
|
+
# @return [Boolean]
|
146
|
+
def has_button_id(btnid) end
|
147
|
+
alias_method :has_button_id?, :has_button_id
|
148
|
+
|
149
|
+
end # InfoBar
|
150
|
+
|
151
|
+
|
152
|
+
end
|
@@ -22,27 +22,27 @@ module Wx
|
|
22
22
|
|
23
23
|
# Constructor initializes the modifier key settings.
|
24
24
|
# By default, no modifiers are active.
|
25
|
-
# @param controlDown [
|
26
|
-
# @param shiftDown [
|
27
|
-
# @param altDown [
|
28
|
-
# @param metaDown [
|
29
|
-
# @return [KeyboardState]
|
25
|
+
# @param controlDown [Boolean]
|
26
|
+
# @param shiftDown [Boolean]
|
27
|
+
# @param altDown [Boolean]
|
28
|
+
# @param metaDown [Boolean]
|
29
|
+
# @return [Wx::KeyboardState]
|
30
30
|
def initialize(controlDown=false, shiftDown=false, altDown=false, metaDown=false) end
|
31
31
|
|
32
32
|
# Return the bit mask of all pressed modifier keys.
|
33
33
|
# The return value is a combination of {Wx::KeyModifier::MOD_ALT}, {Wx::KeyModifier::MOD_CONTROL}, {Wx::KeyModifier::MOD_SHIFT} and {Wx::KeyModifier::MOD_META} bit masks. Additionally, {Wx::KeyModifier::MOD_NONE} is defined as 0, i.e. corresponds to no modifiers (see {Wx::KeyboardState#has_any_modifiers}) and {Wx::KeyModifier::MOD_CMD} is either {Wx::KeyModifier::MOD_CONTROL} (MSW and Unix) or {Wx::KeyModifier::MOD_META} (Mac), see {Wx::KeyboardState#cmd_down}. See {Wx::KeyModifier} for the full list of modifiers.
|
34
34
|
# Notice that this function is easier to use correctly than, for example, {Wx::KeyboardState#control_down} because when using the latter you also have to remember to test that none of the other modifiers is pressed:
|
35
35
|
#
|
36
|
-
# ```
|
37
|
-
# if
|
38
|
-
#
|
36
|
+
# ```ruby
|
37
|
+
# if control_down && !alt_down && !shift_down && !meta_down
|
38
|
+
# ... handle Ctrl-XXX ...
|
39
39
|
# ```
|
40
40
|
#
|
41
41
|
# and forgetting to do it can result in serious program bugs (e.g. program not working with European keyboard layout where AltGr key which is seen by the program as combination of CTRL and ALT is used). On the other hand, you can simply write:
|
42
42
|
#
|
43
|
-
# ```
|
44
|
-
# if
|
45
|
-
#
|
43
|
+
# ```ruby
|
44
|
+
# if get_modifiers == Wx::MOD_CONTROL
|
45
|
+
# ... handle Ctrl-XXX ...
|
46
46
|
# ```
|
47
47
|
#
|
48
48
|
# with this function.
|
@@ -53,73 +53,73 @@ module Wx
|
|
53
53
|
# Returns true if any modifiers at all are pressed.
|
54
54
|
# This is equivalent to <code>Wx::KeyboardState#get_modifiers</code> <code>!=</code> {Wx::KeyModifier::MOD_NONE}.
|
55
55
|
# Notice that this is different from {Wx::KeyboardState#has_modifiers} method which doesn't take e.g. Shift modifier into account. This method is most suitable for mouse events when any modifier, including Shift, can change the interpretation of the event.
|
56
|
-
# @return [
|
56
|
+
# @return [Boolean]
|
57
57
|
def has_any_modifiers; end
|
58
58
|
alias_method :has_any_modifiers?, :has_any_modifiers
|
59
59
|
|
60
60
|
# Returns true if Control or Alt are pressed.
|
61
61
|
# Checks if Control, Alt or, under macOS only, Command key are pressed (notice that the real Control key is still taken into account under OS X too).
|
62
62
|
# This method returns false if only Shift is pressed for compatibility reasons and also because pressing Shift usually doesn't change the interpretation of key events, see {Wx::KeyboardState#has_any_modifiers} if you want to take Shift into account as well.
|
63
|
-
# @return [
|
63
|
+
# @return [Boolean]
|
64
64
|
def has_modifiers; end
|
65
65
|
alias_method :has_modifiers?, :has_modifiers
|
66
66
|
|
67
67
|
# Returns true if the Control key or Apple/Command key under macOS is pressed.
|
68
68
|
# This function doesn't distinguish between right and left control keys.
|
69
69
|
# Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
70
|
-
# @return [
|
70
|
+
# @return [Boolean]
|
71
71
|
def control_down; end
|
72
72
|
|
73
73
|
# Returns true if the Control key (also under macOS).
|
74
74
|
# This function doesn't distinguish between right and left control keys.
|
75
75
|
# Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
76
|
-
# @return [
|
76
|
+
# @return [Boolean]
|
77
77
|
def raw_control_down; end
|
78
78
|
|
79
79
|
# Returns true if the Shift key is pressed.
|
80
80
|
# This function doesn't distinguish between right and left shift keys.
|
81
81
|
# Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
82
|
-
# @return [
|
82
|
+
# @return [Boolean]
|
83
83
|
def shift_down; end
|
84
84
|
|
85
85
|
# Returns true if the Meta/Windows/Apple key is pressed.
|
86
86
|
# This function tests the state of the key traditionally called Meta under Unix systems, Windows keys under MSW Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
87
87
|
# @see Wx::KeyboardState#cmd_down
|
88
|
-
# @return [
|
88
|
+
# @return [Boolean]
|
89
89
|
def meta_down; end
|
90
90
|
|
91
91
|
# Returns true if the Alt key is pressed.
|
92
92
|
# Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
93
|
-
# @return [
|
93
|
+
# @return [Boolean]
|
94
94
|
def alt_down; end
|
95
95
|
|
96
96
|
# Returns true if the key used for command accelerators is pressed.
|
97
97
|
# Same as {Wx::KeyboardState#control_down}. Deprecated.
|
98
98
|
# Notice that {Wx::KeyboardState#get_modifiers} should usually be used instead of this one.
|
99
|
-
# @return [
|
99
|
+
# @return [Boolean]
|
100
100
|
def cmd_down; end
|
101
101
|
|
102
|
-
# @param down [
|
102
|
+
# @param down [Boolean]
|
103
103
|
# @return [void]
|
104
104
|
def set_control_down(down) end
|
105
105
|
alias_method :control_down=, :set_control_down
|
106
106
|
|
107
|
-
# @param down [
|
107
|
+
# @param down [Boolean]
|
108
108
|
# @return [void]
|
109
109
|
def set_raw_control_down(down) end
|
110
110
|
alias_method :raw_control_down=, :set_raw_control_down
|
111
111
|
|
112
|
-
# @param down [
|
112
|
+
# @param down [Boolean]
|
113
113
|
# @return [void]
|
114
114
|
def set_shift_down(down) end
|
115
115
|
alias_method :shift_down=, :set_shift_down
|
116
116
|
|
117
|
-
# @param down [
|
117
|
+
# @param down [Boolean]
|
118
118
|
# @return [void]
|
119
119
|
def set_alt_down(down) end
|
120
120
|
alias_method :alt_down=, :set_alt_down
|
121
121
|
|
122
|
-
# @param down [
|
122
|
+
# @param down [Boolean]
|
123
123
|
# @return [void]
|
124
124
|
def set_meta_down(down) end
|
125
125
|
alias_method :meta_down=, :set_meta_down
|
data/lib/wx/doc/gen/list_box.rb
CHANGED
@@ -13,14 +13,21 @@ module Wx
|
|
13
13
|
# === Styles
|
14
14
|
#
|
15
15
|
# This class supports the following styles:
|
16
|
-
#
|
16
|
+
#
|
17
17
|
# - {Wx::LB_SINGLE}: Single-selection list.
|
18
|
-
#
|
18
|
+
#
|
19
|
+
# - {Wx::LB_MULTIPLE}: Multiple-selection list: the user can toggle multiple items on and off. This is the same as {Wx::LB_EXTENDED} in wxGTK2 port.
|
20
|
+
#
|
19
21
|
# - {Wx::LB_EXTENDED}: Extended-selection list: the user can extend the selection by using SHIFT or CTRL keys together with the cursor movement keys or the mouse.
|
22
|
+
#
|
20
23
|
# - {Wx::LB_HSCROLL}: Create horizontal scrollbar if contents are too wide (Windows only).
|
24
|
+
#
|
21
25
|
# - {Wx::LB_ALWAYS_SB}: Always show a vertical scrollbar.
|
26
|
+
#
|
22
27
|
# - {Wx::LB_NEEDED_SB}: Only create a vertical scrollbar if needed.
|
23
|
-
#
|
28
|
+
#
|
29
|
+
# - {Wx::LB_NO_SB}: Don't create vertical scrollbar (wxMSW and wxGTK only).
|
30
|
+
#
|
24
31
|
# - {Wx::LB_SORT}: The listbox contents are sorted in alphabetical order.
|
25
32
|
#
|
26
33
|
# Note that {Wx::LB_SINGLE}, {Wx::LB_MULTIPLE} and {Wx::LB_EXTENDED} styles are mutually exclusive and you can specify at most one of them (single selection is the default). See also Window Styles.
|
@@ -28,14 +35,16 @@ module Wx
|
|
28
35
|
#
|
29
36
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
|
30
37
|
# Event handler methods for events emitted by this class:
|
38
|
+
#
|
31
39
|
# - {Wx::EvtHandler#evt_listbox}(id, meth = nil, &block): Process a {Wx::EVT_LISTBOX} event, when an item on the list is selected or the selection changes.
|
32
|
-
#
|
40
|
+
#
|
41
|
+
# - {Wx::EvtHandler#evt_listbox_dclick}(id, meth = nil, &block): Process a {Wx::EVT_LISTBOX_DCLICK} event, when the listbox is double-clicked. On some platforms (notably wxGTK2) pressing the enter key is handled as an equivalent of a double-click.
|
33
42
|
#
|
34
43
|
# ===
|
35
44
|
#
|
36
|
-
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td>
|
37
|
-
# </td><td>
|
38
|
-
# </td><td>
|
45
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
|
46
|
+
# </td><td> wxGTK Appearance
|
47
|
+
# </td><td> wxOSX Appearance
|
39
48
|
# </td></tr></table></div>
|
40
49
|
# @see Wx::EditableListBox
|
41
50
|
# @see Wx::Choice
|
@@ -48,7 +57,7 @@ module Wx
|
|
48
57
|
|
49
58
|
# @overload create(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, choices=nil, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ListBoxNameStr)
|
50
59
|
# Creates the listbox for two-step construction.
|
51
|
-
# See {Wx::ListBox#
|
60
|
+
# See {Wx::ListBox#initialize} for further details.
|
52
61
|
# @param parent [Wx::Window]
|
53
62
|
# @param id [Integer]
|
54
63
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
@@ -57,10 +66,10 @@ module Wx
|
|
57
66
|
# @param style [Integer]
|
58
67
|
# @param validator [Wx::Validator]
|
59
68
|
# @param name [String]
|
60
|
-
# @return [
|
69
|
+
# @return [Boolean]
|
61
70
|
# @overload create(parent, id, pos, size, choices, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ListBoxNameStr)
|
62
71
|
# Creates the listbox for two-step construction.
|
63
|
-
# See {Wx::ListBox#
|
72
|
+
# See {Wx::ListBox#initialize} for further details.
|
64
73
|
# @param parent [Wx::Window]
|
65
74
|
# @param id [Integer]
|
66
75
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
@@ -69,12 +78,12 @@ module Wx
|
|
69
78
|
# @param style [Integer]
|
70
79
|
# @param validator [Wx::Validator]
|
71
80
|
# @param name [String]
|
72
|
-
# @return [
|
81
|
+
# @return [Boolean]
|
73
82
|
def create(*args) end
|
74
83
|
|
75
84
|
# @overload initialize()
|
76
85
|
# Default constructor.
|
77
|
-
# @return [ListBox]
|
86
|
+
# @return [Wx::ListBox]
|
78
87
|
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, choices=nil, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ListBoxNameStr)
|
79
88
|
# Constructor, creating and showing a list box.
|
80
89
|
# @param parent [Wx::Window] The parent window.
|
@@ -85,10 +94,10 @@ module Wx
|
|
85
94
|
# @param style [Integer] Window style. See {Wx::ListBox}.
|
86
95
|
# @param validator [Wx::Validator] The validator for this control.
|
87
96
|
# @param name [String] The name of this class.
|
88
|
-
# @return [ListBox]
|
97
|
+
# @return [Wx::ListBox]
|
89
98
|
# @overload initialize(parent, id, pos, size, choices, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ListBoxNameStr)
|
90
99
|
# Constructor, creating and showing a list box.
|
91
|
-
# See the other {Wx::ListBox#
|
100
|
+
# See the other {Wx::ListBox#initialize} constructor; the only difference is that this overload takes a {Wx::ArrayString} instead of a pointer to an array of {Wx::String}.
|
92
101
|
# @param parent [Wx::Window]
|
93
102
|
# @param id [Integer]
|
94
103
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
@@ -97,7 +106,7 @@ module Wx
|
|
97
106
|
# @param style [Integer]
|
98
107
|
# @param validator [Wx::Validator]
|
99
108
|
# @param name [String]
|
100
|
-
# @return [ListBox]
|
109
|
+
# @return [Wx::ListBox]
|
101
110
|
def initialize(*args) end
|
102
111
|
|
103
112
|
# Deselects an item in the list box.
|
@@ -121,17 +130,17 @@ module Wx
|
|
121
130
|
# This method can be used with single selection list boxes only, you must use {Wx::ListBox#get_selections} for the list boxes with {Wx::LB_MULTIPLE} style.
|
122
131
|
# @see Wx::ListBox#set_selection
|
123
132
|
# @see Wx::ListBox#get_string_selection
|
124
|
-
# @return [
|
133
|
+
# @return [Integer]
|
125
134
|
def get_selection; end
|
126
135
|
alias_method :selection, :get_selection
|
127
136
|
|
128
137
|
# @overload set_string_selection(s, select)
|
129
138
|
# @param s [String]
|
130
|
-
# @param select [
|
131
|
-
# @return [
|
139
|
+
# @param select [Boolean]
|
140
|
+
# @return [Boolean]
|
132
141
|
# @overload set_string_selection(s)
|
133
142
|
# @param s [String]
|
134
|
-
# @return [
|
143
|
+
# @return [Boolean]
|
135
144
|
def set_string_selection(*args) end
|
136
145
|
alias_method :string_selection=, :set_string_selection
|
137
146
|
|
@@ -148,16 +157,16 @@ module Wx
|
|
148
157
|
|
149
158
|
# @overload hit_test(point)
|
150
159
|
# Returns the item located at point, or {Wx::NOT_FOUND} if there is no item located at point.
|
151
|
-
# It is currently implemented for
|
160
|
+
# It is currently implemented for wxMSW, {Wx::Mac} and wxGTK2 ports.
|
152
161
|
#
|
153
162
|
# Item located at point, or {Wx::NOT_FOUND} if unimplemented or the item does not exist.
|
154
163
|
# @param point [Array(Integer, Integer), Wx::Point] Point of item (in client coordinates) to obtain
|
155
|
-
# @return [
|
164
|
+
# @return [Integer]
|
156
165
|
# @overload hit_test(x, y)
|
157
166
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
158
167
|
# @param x [Integer]
|
159
168
|
# @param y [Integer]
|
160
|
-
# @return [
|
169
|
+
# @return [Integer]
|
161
170
|
def hit_test(*args) end
|
162
171
|
|
163
172
|
# Insert the given number of strings before the specified position.
|
@@ -169,7 +178,7 @@ module Wx
|
|
169
178
|
# Determines whether an item is selected.
|
170
179
|
# true if the given item is selected, false otherwise.
|
171
180
|
# @param n [Integer] The zero-based item index.
|
172
|
-
# @return [
|
181
|
+
# @return [Boolean]
|
173
182
|
def is_selected(n) end
|
174
183
|
alias_method :selected?, :is_selected
|
175
184
|
|
@@ -191,14 +200,14 @@ module Wx
|
|
191
200
|
def ensure_visible(n) end
|
192
201
|
|
193
202
|
# Return the number of items that can fit vertically in the visible area of the listbox.
|
194
|
-
# Returns -1 if the number of items per page couldn't be determined. On
|
195
|
-
# @return [
|
203
|
+
# Returns -1 if the number of items per page couldn't be determined. On wxGTK this method can only determine the number of items per page if there is at least one item in the listbox.
|
204
|
+
# @return [Integer]
|
196
205
|
def get_count_per_page; end
|
197
206
|
alias_method :count_per_page, :get_count_per_page
|
198
207
|
|
199
208
|
# Return the index of the topmost visible item.
|
200
209
|
# Returns {Wx::NOT_FOUND} if the method is not implemented for the current platform.
|
201
|
-
# @return [
|
210
|
+
# @return [Integer]
|
202
211
|
def get_top_item; end
|
203
212
|
alias_method :top_item, :get_top_item
|
204
213
|
|
@@ -209,15 +218,15 @@ module Wx
|
|
209
218
|
#
|
210
219
|
# true if all specified tabs are set, false otherwise
|
211
220
|
#
|
212
|
-
# Availability: only available for the
|
221
|
+
# Availability: only available for the wxMSW port. {Wx::msw}
|
213
222
|
# @param tabStops [Wx::Vector< int >] If this argument is empty, tab stops are reset to their default value (every 32 dialog units). If it contains a single element, tab stops are set at each multiple of the given value. Otherwise tab stops are set at every element of the array, which must be in ascending order.
|
214
|
-
# @return [
|
223
|
+
# @return [Boolean]
|
215
224
|
def msw_set_tab_stops(tabStops) end
|
216
225
|
|
217
226
|
# Returns the number of items in the control.
|
218
227
|
#
|
219
228
|
# @see Wx::ListBox#is_empty
|
220
|
-
# @return [
|
229
|
+
# @return [Integer]
|
221
230
|
def get_count; end
|
222
231
|
alias_method :count, :get_count
|
223
232
|
|
@@ -239,8 +248,8 @@ module Wx
|
|
239
248
|
# Finds an item whose label matches the given string.
|
240
249
|
# The zero-based position of the item, or {Wx::NOT_FOUND} if the string was not found.
|
241
250
|
# @param string [String] String to find.
|
242
|
-
# @param caseSensitive [
|
243
|
-
# @return [
|
251
|
+
# @param caseSensitive [Boolean] Whether search is case sensitive (default is not).
|
252
|
+
# @return [Integer]
|
244
253
|
def find_string(string, caseSensitive=false) end
|
245
254
|
|
246
255
|
end # ListBox
|