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
@@ -0,0 +1,98 @@
|
|
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
|
+
# A simple banner window showing either a bitmap or text.
|
10
|
+
# Banner windows can be used to present some overview of the current window contents to the user in an aesthetically pleasant way. They are typically positioned along the left or top edge of the window (although this class also supports right- and bottom-aligned banners) and show either a bitmap with a logo or a few lines of text on a gradient-filled background.
|
11
|
+
# Using this class is very simple, e.g.:
|
12
|
+
# ```
|
13
|
+
# MyFrame::MyFrame(...)
|
14
|
+
# {
|
15
|
+
# ... create the frame itself ...
|
16
|
+
#
|
17
|
+
# // Create and initialize the banner.
|
18
|
+
# wxBannerWindow* banner = new wxBannerWindow(this, wxTOP);
|
19
|
+
# banner->SetText("Welcome to my wonderful program",
|
20
|
+
# " Before doing anything else, you need to connect to "
|
21
|
+
# "the online server.\n"
|
22
|
+
# " Please enter your credentials in the controls below.");
|
23
|
+
#
|
24
|
+
# // And position it along the top edge of the window.
|
25
|
+
# wxSizer* sizer = new wxBoxSizer(wxVERTICAL);
|
26
|
+
# sizer->Add(banner, wxSizerFlags().Expand());
|
27
|
+
#
|
28
|
+
# ... add the rest of the window contents to the same sizer ...
|
29
|
+
#
|
30
|
+
# SetSizerAndFit(sizer);
|
31
|
+
# }
|
32
|
+
# ```
|
33
|
+
#
|
34
|
+
# This class is currently implemented generically and so looks the same under all platforms.
|
35
|
+
# ===
|
36
|
+
#
|
37
|
+
# Category: Miscellaneous Windows <div class='appearance'><span class='appearance'>Appearance:</span><table class='appearance'><tr><td> Generic Appearance
|
38
|
+
# </td></tr></table></div>
|
39
|
+
#
|
40
|
+
class BannerWindow < Window
|
41
|
+
|
42
|
+
# @overload initialize()
|
43
|
+
# Default constructor, use {Wx::BannerWindow#create} later.
|
44
|
+
# This constructor is only used for two-step creation, if possible, prefer using the constructor below directly instead of using this one and calling {Wx::BannerWindow#create} later.
|
45
|
+
# @return [Wx::BannerWindow]
|
46
|
+
# @overload initialize(parent, winid, dir=Wx::Direction::LEFT, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=Wx::BannerWindowNameStr)
|
47
|
+
# Full constructor provided for consistency with the other classes only.
|
48
|
+
# Prefer to use the shorter constructor documented above. You should rarely, if ever, need to use non-default values for any other parameters: as the banner window doesn't generate any events, its identifier is not particularly useful; its position and size will be almost always managed by the containing sizer and it doesn't have any specific styles. So only the parent and the banner direction need to be specified.
|
49
|
+
# @param parent [Wx::Window]
|
50
|
+
# @param winid [Integer]
|
51
|
+
# @param dir [Wx::Direction]
|
52
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
53
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
54
|
+
# @param style [Integer]
|
55
|
+
# @param name [String]
|
56
|
+
# @return [Wx::BannerWindow]
|
57
|
+
def initialize(*args) end
|
58
|
+
|
59
|
+
# Really create the banner window for the objects created using the default constructor.
|
60
|
+
# It's an error to call {Wx::BannerWindow#create} for the objects created using non-default constructor.
|
61
|
+
# @param parent [Wx::Window]
|
62
|
+
# @param winid [Integer]
|
63
|
+
# @param dir [Wx::Direction]
|
64
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
65
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
66
|
+
# @param style [Integer]
|
67
|
+
# @param name [String]
|
68
|
+
# @return [Boolean]
|
69
|
+
def create(parent, winid, dir=Wx::Direction::LEFT, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=Wx::BannerWindowNameStr) end
|
70
|
+
|
71
|
+
# Provide the bitmap to use as background.
|
72
|
+
# Notice that ideally the bitmap should be big enough to always cover the entire banner, e.g. for a horizontal banner with {Wx::Direction::TOP} style its width should be bigger than any reasonable window size. Otherwise the bitmap is extended to cover the entire window area with a solid colour taken from the bitmap pixel on the edge in which direction the extension occurs so all bitmap pixels on this edge (top for {Wx::Direction::LEFT}, right for {Wx::Direction::TOP} and {Wx::Direction::BOTTOM} and bottom for {Wx::Direction::RIGHT}) should have the same colour to avoid jarring discontinuity.
|
73
|
+
# If, on the other hand, the bitmap is bigger than the window size, then it is truncated. For {Wx::Direction::LEFT} orientation the bitmap is truncated from the top, for {Wx::Direction::TOP} and {Wx::Direction::BOTTOM} from the right and for {Wx::Direction::RIGHT} from the bottom, so put the most important part of the bitmap information in the opposite direction where it will never be truncated.
|
74
|
+
# If no valid background bitmap is specified, the banner draws gradient background but if a valid bitmap is given here, the gradient is not draw and the start and end colours specified for it are ignored.
|
75
|
+
# @param bmp [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Bitmap to use as background. May be invalid to indicate that no background bitmap should be used.
|
76
|
+
# @return [void]
|
77
|
+
def set_bitmap(bmp) end
|
78
|
+
alias_method :bitmap=, :set_bitmap
|
79
|
+
|
80
|
+
# Set the text to display.
|
81
|
+
# This is mutually exclusive with {Wx::BannerWindow#set_bitmap}.
|
82
|
+
# Title is rendered in bold and should be single line, message can have multiple lines but is not wrapped automatically, include explicit line breaks in the string if you want to have multiple lines.
|
83
|
+
# @param title [String]
|
84
|
+
# @param message [String]
|
85
|
+
# @return [void]
|
86
|
+
def set_text(title, message) end
|
87
|
+
|
88
|
+
# Set the colours between which the gradient runs.
|
89
|
+
# The gradient colours are ignored if {Wx::BannerWindow#set_bitmap} is used.
|
90
|
+
# @param start [Wx::Colour,String,Symbol]
|
91
|
+
# @param end_ [Wx::Colour,String,Symbol]
|
92
|
+
# @return [void]
|
93
|
+
def set_gradient(start, end_) end
|
94
|
+
|
95
|
+
end # BannerWindow
|
96
|
+
|
97
|
+
|
98
|
+
end
|
data/lib/wx/doc/gen/bitmap.rb
CHANGED
@@ -16,7 +16,11 @@ module Wx
|
|
16
16
|
# This class encapsulates the concept of a platform-dependent bitmap, either monochrome or colour or colour with alpha channel support.
|
17
17
|
# If you need direct access the bitmap data instead going through drawing to it using {Wx::MemoryDC} you need to use the {Wx::PixelData} class (either {Wx::NativePixelData} for RGB bitmaps or {Wx::AlphaPixelData} for bitmaps with an additionally alpha channel).
|
18
18
|
# Note that many {Wx::Bitmap} functions take a type parameter, which is a value of the {Wx::BitmapType} enumeration. The validity of those values depends however on the platform where your program is running and from the wxWidgets configuration. If all possible wxWidgets settings are used:
|
19
|
-
#
|
19
|
+
#
|
20
|
+
# - wxMSW supports BMP and ICO files, BMP and ICO resources;
|
21
|
+
# - wxGTK supports any file supported by gdk-pixbuf;
|
22
|
+
# - {Wx::Mac} supports PICT resources;
|
23
|
+
# - wxX11 supports XPM files, XPM data, XBM data;
|
20
24
|
#
|
21
25
|
# In addition, {Wx::Bitmap} can load and save all formats that {Wx::Image} can; see {Wx::Image} for more info. Of course, you must have loaded the {Wx::Image} handlers (see {init_all_image_handlers} and {Wx::Image.add_handler}). Note that all available {Wx::BitmapHandlers} for a given wxWidgets port are automatically loaded at startup so you won't need to use {Wx::Bitmap.add_handler}.
|
22
26
|
# More on the difference between {Wx::Image} and {Wx::Bitmap}: {Wx::Image} is just a buffer of RGB bytes with an optional buffer for the alpha bytes. It is all generic, platform independent and image file format independent code. It includes generic code for scaling, resizing, clipping, and other manipulations of the image data. OTOH, {Wx::Bitmap} is intended to be a wrapper of whatever is the native image format that is quickest/easiest to draw to a DC or to be the target of the drawing operations performed on a {Wx::MemoryDC}. By splitting the responsibilities between {Wx::Image}/{Wx::Bitmap} like this then it's easier to use generic code shared by all platforms and image types for generic operations and platform specific code where performance or compatibility is needed.
|
@@ -41,7 +45,7 @@ module Wx
|
|
41
45
|
# @overload initialize()
|
42
46
|
# Default constructor.
|
43
47
|
# Constructs a bitmap object with no data; an assignment or another member function such as {Wx::Bitmap#create} or {Wx::Bitmap#load_file} must be called subsequently.
|
44
|
-
# @return [Bitmap]
|
48
|
+
# @return [Wx::Bitmap]
|
45
49
|
# @overload initialize(bitmap)
|
46
50
|
# Copy constructor, uses reference counting.
|
47
51
|
# To make a real copy, you can use:
|
@@ -50,7 +54,7 @@ module Wx
|
|
50
54
|
# Wx::Rect.new(0, 0, oldBitmap.width, oldBitmap.height))
|
51
55
|
# ```
|
52
56
|
# @param bitmap [Wx::Bitmap]
|
53
|
-
# @return [Bitmap]
|
57
|
+
# @return [Wx::Bitmap]
|
54
58
|
# @overload initialize(width, height, depth=Wx::BITMAP_SCREEN_DEPTH)
|
55
59
|
# Creates a new bitmap.
|
56
60
|
# A depth of {Wx::BITMAP_SCREEN_DEPTH} indicates the depth of the current screen or visual.
|
@@ -59,25 +63,25 @@ module Wx
|
|
59
63
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
60
64
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
61
65
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
62
|
-
# @return [Bitmap]
|
66
|
+
# @return [Wx::Bitmap]
|
63
67
|
# @overload initialize(sz, depth=Wx::BITMAP_SCREEN_DEPTH)
|
64
68
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
65
69
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
66
70
|
# @param depth [Integer]
|
67
|
-
# @return [Bitmap]
|
71
|
+
# @return [Wx::Bitmap]
|
68
72
|
# @overload initialize(width, height, dc)
|
69
73
|
# Create a bitmap compatible with the given DC, inheriting its magnification factor.
|
70
74
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
71
75
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
72
76
|
# @param dc [Wx::DC] DC from which the scaling factor is inherited
|
73
|
-
# @return [Bitmap]
|
77
|
+
# @return [Wx::Bitmap]
|
74
78
|
# @overload initialize(name, type=Wx::BITMAP_DEFAULT_TYPE)
|
75
79
|
# Loads a bitmap from a file or resource.
|
76
80
|
#
|
77
81
|
# @see Wx::Bitmap#load_file
|
78
82
|
# @param name [String] This can refer to a resource name or a filename under MS Windows and X. Its meaning is determined by the type parameter.
|
79
|
-
# @param type [BitmapType] May be one of the {Wx::BitmapType} values and indicates which type of bitmap should be loaded. See the note in the class detailed description. Note that the {Wx::BITMAP_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the bitmap.h header for the value it takes for a specific port.
|
80
|
-
# @return [Bitmap]
|
83
|
+
# @param type [Wx::BitmapType] May be one of the {Wx::BitmapType} values and indicates which type of bitmap should be loaded. See the note in the class detailed description. Note that the {Wx::BITMAP_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the bitmap.h header for the value it takes for a specific port.
|
84
|
+
# @return [Wx::Bitmap]
|
81
85
|
# @overload initialize(img, depth=Wx::BITMAP_SCREEN_DEPTH)
|
82
86
|
# Creates this bitmap object from the given image.
|
83
87
|
# This has to be done to actually display an image as you cannot draw an image directly on a window.
|
@@ -85,18 +89,18 @@ module Wx
|
|
85
89
|
# On Windows, if there is a palette present (set with SetPalette), it will be used when creating the {Wx::Bitmap} (most useful in 8-bit display mode). On other platforms, the palette is currently ignored.
|
86
90
|
# @param img [Wx::Image] Platform-independent {Wx::Image} object.
|
87
91
|
# @param depth [Integer] Specifies the depth of the bitmap. If this is omitted, the display depth of the screen is used.
|
88
|
-
# @return [Bitmap]
|
92
|
+
# @return [Wx::Bitmap]
|
89
93
|
# @overload initialize(img, dc)
|
90
94
|
# Creates a bitmap compatible with the given DC from the given image.
|
91
95
|
# This constructor initializes the bitmap with the data of the given image, which must be valid, but inherits the scaling factor from the given device context instead of simply using the default factor of 1.
|
92
96
|
# @param img [Wx::Image] Platform-independent {Wx::Image} object.
|
93
97
|
# @param dc [Wx::DC] DC from which the scaling factor is inherited
|
94
|
-
# @return [Bitmap]
|
98
|
+
# @return [Wx::Bitmap]
|
95
99
|
# @overload initialize(cursor)
|
96
100
|
# Creates bitmap corresponding to the given cursor.
|
97
101
|
# This can be useful to display a cursor as it cannot be drawn directly on a window.
|
98
102
|
# @param cursor [Wx::Cursor] A valid {Wx::Cursor}.
|
99
|
-
# @return [Bitmap]
|
103
|
+
# @return [Wx::Bitmap]
|
100
104
|
def initialize(*args) end
|
101
105
|
|
102
106
|
# Returns disabled (dimmed) version of the bitmap.
|
@@ -112,7 +116,7 @@ module Wx
|
|
112
116
|
|
113
117
|
# Creates the bitmap from an icon.
|
114
118
|
# @param icon [Wx::Icon]
|
115
|
-
# @return [
|
119
|
+
# @return [Boolean]
|
116
120
|
def copy_from_icon(icon) end
|
117
121
|
|
118
122
|
# @overload create(width, height, depth=Wx::BITMAP_SCREEN_DEPTH)
|
@@ -123,19 +127,19 @@ module Wx
|
|
123
127
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
124
128
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
125
129
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
126
|
-
# @return [
|
130
|
+
# @return [Boolean]
|
127
131
|
# @overload create(sz, depth=Wx::BITMAP_SCREEN_DEPTH)
|
128
132
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
129
133
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
130
134
|
# @param depth [Integer]
|
131
|
-
# @return [
|
135
|
+
# @return [Boolean]
|
132
136
|
# @overload create(width, height, dc)
|
133
137
|
# Create a bitmap compatible with the given DC, inheriting its magnification factor.
|
134
138
|
# true if the creation was successful.
|
135
139
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
136
140
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
137
141
|
# @param dc [Wx::DC] DC from which the scaling factor is inherited
|
138
|
-
# @return [
|
142
|
+
# @return [Boolean]
|
139
143
|
def create(*args) end
|
140
144
|
|
141
145
|
# @overload create_with_dip_size(size, scale, depth=Wx::BITMAP_SCREEN_DEPTH)
|
@@ -143,20 +147,22 @@ module Wx
|
|
143
147
|
# The physical size of the bitmap is obtained by multiplying the given size by scale and rounding it to the closest integer.
|
144
148
|
# After using this function the following postconditions are true:
|
145
149
|
#
|
146
|
-
# - {Wx::Bitmap#get_size} returns size multiplied by scale
|
150
|
+
# - {Wx::Bitmap#get_size} returns size multiplied by scale
|
151
|
+
# - {Wx::Bitmap#get_dip_size} returns size
|
152
|
+
# - {Wx::Bitmap#get_scale_factor} returns scale
|
147
153
|
#
|
148
154
|
# true if the creation was successful.
|
149
155
|
# @param size [Array(Integer, Integer), Wx::Size] The size of the bitmap in DPI-independent pixels. Both width and height must be strictly positive.
|
150
156
|
# @param scale [Float] Scale factor used by the bitmap, see {Wx::Bitmap#set_scale_factor}.
|
151
157
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
152
|
-
# @return [
|
158
|
+
# @return [Boolean]
|
153
159
|
# @overload create_with_dip_size(width, height, scale, depth=Wx::BITMAP_SCREEN_DEPTH)
|
154
160
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
155
161
|
# @param width [Integer]
|
156
162
|
# @param height [Integer]
|
157
163
|
# @param scale [Float]
|
158
164
|
# @param depth [Integer]
|
159
|
-
# @return [
|
165
|
+
# @return [Boolean]
|
160
166
|
def create_with_dip_size(*args) end
|
161
167
|
|
162
168
|
# Create a bitmap with a scale factor.
|
@@ -167,7 +173,7 @@ module Wx
|
|
167
173
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
168
174
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
169
175
|
# @param logicalScale [Float] Scale factor used by the bitmap, see {Wx::Bitmap#set_scale_factor}.
|
170
|
-
# @return [
|
176
|
+
# @return [Boolean]
|
171
177
|
def create_scaled(width, height, depth, logicalScale) end
|
172
178
|
|
173
179
|
# Gets the colour depth of the bitmap.
|
@@ -201,7 +207,7 @@ module Wx
|
|
201
207
|
alias_method :logical_height, :get_logical_height
|
202
208
|
|
203
209
|
# Returns the size of the bitmap in logical pixels.
|
204
|
-
# For the platforms using DPI-independent pixels, i.e. those where {Wx::HAS_DPI_INDEPENDENT_PIXELS} is defined, such as
|
210
|
+
# For the platforms using DPI-independent pixels, i.e. those where {Wx::HAS_DPI_INDEPENDENT_PIXELS} is defined, such as wxOSX or wxGTK 3, this function returns the physical size of the bitmap, as returned by {Wx::Bitmap#get_size}, divided by its scale factor, as returned by {Wx::Bitmap#get_scale_factor}, while for the other platforms, it simply returns the same thing as {Wx::Bitmap#get_size}.
|
205
211
|
# This ensures that the result of this function is always expressed in the pixel coordinates appropriate for the current platform, i.e. its return value is always in logical pixels, used for window and {Wx::DC} coordinates, whether these pixels are the same as physical pixels, which are returned by {Wx::Bitmap#get_size}, or not.
|
206
212
|
# @see Wx::Bitmap#get_logical_width
|
207
213
|
# @see Wx::Bitmap#get_logical_height
|
@@ -235,7 +241,7 @@ module Wx
|
|
235
241
|
|
236
242
|
# Returns the scale factor of this bitmap.
|
237
243
|
# Scale factor is 1 by default, but can be greater to indicate that the size of bitmap in logical, DPI-independent pixels is smaller than its actual size in physical pixels. Bitmaps with scale factor greater than 1 must be used in high DPI to appear sharp on the screen.
|
238
|
-
# Note that the scale factor is only used in the ports where logical pixels are not the same as physical ones, such as
|
244
|
+
# Note that the scale factor is only used in the ports where logical pixels are not the same as physical ones, such as wxOSX or wxGTK3, and this function always returns 1 under the other platforms.
|
239
245
|
# @see Wx::Bitmap#set_scale_factor
|
240
246
|
# @see Wx::Bitmap#get_logical_width
|
241
247
|
# @see Wx::Bitmap#get_logical_height
|
@@ -282,12 +288,12 @@ module Wx
|
|
282
288
|
|
283
289
|
# Returns true if the bitmap has an alpha channel.
|
284
290
|
# Note that the fact that a bitmap has an alpha channel doesn't necessarily mean that it has any transparency, as all of its pixels could be using {Wx::ALPHA_OPAQUE} value. To actually examine the alpha values, the bitmap can be converted to {Wx::Image}.
|
285
|
-
# @return [
|
291
|
+
# @return [Boolean]
|
286
292
|
def has_alpha; end
|
287
293
|
alias_method :has_alpha?, :has_alpha
|
288
294
|
|
289
295
|
# Returns true if bitmap data is present.
|
290
|
-
# @return [
|
296
|
+
# @return [Boolean]
|
291
297
|
def is_ok; end
|
292
298
|
alias_method :ok?, :is_ok
|
293
299
|
|
@@ -297,8 +303,8 @@ module Wx
|
|
297
303
|
# A palette may be associated with the bitmap if one exists (especially for colour Windows bitmaps), and if the code supports it. You can check if one has been created by using the {Wx::Bitmap#get_palette} member.
|
298
304
|
# @see Wx::Bitmap#save_file
|
299
305
|
# @param name [String] Either a filename or a Windows resource name. The meaning of name is determined by the type parameter.
|
300
|
-
# @param type [BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description. Note that the {Wx::BITMAP_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the bitmap.h header for the value it takes for a specific port.
|
301
|
-
# @return [
|
306
|
+
# @param type [Wx::BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description. Note that the {Wx::BITMAP_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the bitmap.h header for the value it takes for a specific port.
|
307
|
+
# @return [Boolean]
|
302
308
|
def load_file(name, type=Wx::BITMAP_DEFAULT_TYPE) end
|
303
309
|
|
304
310
|
# Remove alpha channel from the bitmap.
|
@@ -312,13 +318,13 @@ module Wx
|
|
312
318
|
# Depending on how wxWidgets has been configured, not all formats may be available.
|
313
319
|
# @see Wx::Bitmap#load_file
|
314
320
|
# @param name [String] A filename. The meaning of name is determined by the type parameter.
|
315
|
-
# @param type [BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description.
|
321
|
+
# @param type [Wx::BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description.
|
316
322
|
# @param palette [Wx::Palette] An optional palette used for saving the bitmap.
|
317
|
-
# @return [
|
323
|
+
# @return [Boolean]
|
318
324
|
def save_file(name, type, palette=nil) end
|
319
325
|
|
320
326
|
# Sets the bitmap scale factor.
|
321
|
-
# This doesn't change the bitmap actual size or its contents, but changes its scale factor, so that it appears in a smaller size when it is drawn on screen: e.g. setting scale to 2 means that the bitmap will be twice smaller (in each direction) when drawn on screen in the ports in which logical and physical pixels differ (i.e.
|
327
|
+
# This doesn't change the bitmap actual size or its contents, but changes its scale factor, so that it appears in a smaller size when it is drawn on screen: e.g. setting scale to 2 means that the bitmap will be twice smaller (in each direction) when drawn on screen in the ports in which logical and physical pixels differ (i.e. wxOSX and wxGTK3, but not wxMSW).
|
322
328
|
# When creating a new bitmap, {Wx::Bitmap#create_with_dip_size} can be used to specify the correct scale factor from the beginning.
|
323
329
|
# @param scale [Float]
|
324
330
|
# @return [void]
|
@@ -328,7 +334,7 @@ module Wx
|
|
328
334
|
# Sets the mask for this bitmap.
|
329
335
|
# The bitmap object owns the mask once this has been called.
|
330
336
|
#
|
331
|
-
# A mask can be set also for bitmap with an alpha channel but doing so under
|
337
|
+
# A mask can be set also for bitmap with an alpha channel but doing so under wxMSW is not recommended because performance of drawing such bitmap is not very good.
|
332
338
|
# @see Wx::Bitmap#get_mask
|
333
339
|
# @see Wx::Mask
|
334
340
|
# @param mask [Wx::Mask]
|
@@ -386,26 +392,26 @@ module Wx
|
|
386
392
|
# @overload initialize()
|
387
393
|
# Default constructor constructs an empty bundle.
|
388
394
|
# An empty bundle can't be used for anything, but can be assigned something else later.
|
389
|
-
# @return [BitmapBundle]
|
395
|
+
# @return [Wx::BitmapBundle]
|
390
396
|
# @overload initialize(bitmap)
|
391
397
|
# Conversion constructor from a single bitmap.
|
392
398
|
# This constructor does the same thing as {Wx::BitmapBundle.from_bitmap} and only exists for interoperability with the existing code using {Wx::Bitmap}.
|
393
399
|
# @param bitmap [Wx::Bitmap]
|
394
|
-
# @return [BitmapBundle]
|
400
|
+
# @return [Wx::BitmapBundle]
|
395
401
|
# @overload initialize(icon)
|
396
402
|
# Conversion constructor from a single icon.
|
397
403
|
# This constructor does the same thing as {Wx::BitmapBundle.from_bitmap} and only exists for interoperability with the existing code using {Wx::Icon}.
|
398
404
|
# @param icon [Wx::Icon]
|
399
|
-
# @return [BitmapBundle]
|
405
|
+
# @return [Wx::BitmapBundle]
|
400
406
|
# @overload initialize(image)
|
401
407
|
# Conversion constructor from a single image.
|
402
408
|
# Similarly to the constructor from {Wx::Bitmap}, this constructor only exists for interoperability with the existing code using {Wx::Image} and can be replaced with more readable {Wx::BitmapBundle.from_image} in the new code.
|
403
409
|
# @param image [Wx::Image]
|
404
|
-
# @return [BitmapBundle]
|
410
|
+
# @return [Wx::BitmapBundle]
|
405
411
|
# @overload initialize(other)
|
406
412
|
# Copy constructor creates a copy of another bundle.
|
407
413
|
# @param other [Wx::BitmapBundle]
|
408
|
-
# @return [BitmapBundle]
|
414
|
+
# @return [Wx::BitmapBundle]
|
409
415
|
def initialize(*args) end
|
410
416
|
|
411
417
|
# Clear the existing bundle contents.
|
@@ -416,7 +422,7 @@ module Wx
|
|
416
422
|
|
417
423
|
# Check if bitmap bundle is non-empty.
|
418
424
|
# Return true if the bundle contains any bitmaps or false if it is empty.
|
419
|
-
# @return [
|
425
|
+
# @return [Boolean]
|
420
426
|
def is_ok; end
|
421
427
|
alias_method :ok?, :is_ok
|
422
428
|
|
@@ -480,7 +486,7 @@ module Wx
|
|
480
486
|
# Check if the two bundles refer to the same object.
|
481
487
|
# Bundles are considered to be same only if they actually use the same underlying object, i.e. are copies of each other. If the two bundles were independently constructed, they're not considered to be the same, even if they were created from the same bitmap.
|
482
488
|
# @param other [Wx::BitmapBundle]
|
483
|
-
# @return [
|
489
|
+
# @return [Boolean]
|
484
490
|
def is_same_as(other) end
|
485
491
|
alias_method :same_as?, :is_same_as
|
486
492
|
|
@@ -516,21 +522,6 @@ module Wx
|
|
516
522
|
# @return [Wx::BitmapBundle]
|
517
523
|
def self.from_image(image) end
|
518
524
|
|
519
|
-
# Create a bundle from a custom bitmap bundle implementation.
|
520
|
-
# This function can be used to create bundles implementing custom logic for creating the bitmaps, e.g. creating them on the fly rather than using predefined bitmaps.
|
521
|
-
# See {Wx::BitmapBundleImpl}.
|
522
|
-
# @param impl [Wx::BitmapBundleImpl] A valid, i.e. non-null, pointer. This function takes ownership of it, so the caller must not call DecRef() on it.
|
523
|
-
# @return [Wx::BitmapBundle]
|
524
|
-
def self.from_impl(impl) end
|
525
|
-
|
526
|
-
# Create a bundle from the bitmaps in the application resources.
|
527
|
-
# This function can only be used on the platforms supporting storing bitmaps in resources, and currently only works under MSW and MacOS and returns an empty bundle on the other platforms.
|
528
|
-
# Under MSW, for this function to create a valid bundle, you must have RCDATA resource with the given name in your application resource file (with the extension <code></code>.rc) containing PNG file, and any other resources using name as prefix and suffix with the scale, e.g. "_2x" or "_1_5x" (for 150% DPI) will be also loaded as part of the bundle.
|
529
|
-
# @see Wx::BitmapBundle.from_svg_resource
|
530
|
-
# @param name [String]
|
531
|
-
# @return [Wx::BitmapBundle]
|
532
|
-
def self.from_resources(name) end
|
533
|
-
|
534
525
|
# @overload self.from_files(path, filename, extension=("png"))
|
535
526
|
# Create a bundle from bitmaps stored as files.
|
536
527
|
# Looking in path for files using filename as prefix and potentionally a suffix with scale, e.g. "_2x" or "@2x"
|
@@ -544,18 +535,11 @@ module Wx
|
|
544
535
|
# @return [Wx::BitmapBundle]
|
545
536
|
def self.from_files(*args) end
|
546
537
|
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
550
|
-
#
|
551
|
-
|
552
|
-
# @overload self.from_svg(data, len, sizeDef)
|
553
|
-
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
554
|
-
# @param data [Integer]
|
555
|
-
# @param len [Integer]
|
556
|
-
# @param sizeDef [Array(Integer, Integer), Wx::Size]
|
557
|
-
# @return [Wx::BitmapBundle]
|
558
|
-
def self.from_svg(*args) end
|
538
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
539
|
+
# @param data [String]
|
540
|
+
# @param sizeDef [Array(Integer, Integer), Wx::Size]
|
541
|
+
# @return [Wx::BitmapBundle]
|
542
|
+
def self.from_svg(data, sizeDef) end
|
559
543
|
|
560
544
|
# Create a bundle from the SVG image loaded from the given file.
|
561
545
|
# This function loads the SVG data from the given path and calls {Wx::BitmapBundle.from_svg} with it. As it is just a wrapper for {Wx::BitmapBundle.from_svg}, please see that function documentation for more information about SVG support.
|
@@ -564,20 +548,11 @@ module Wx
|
|
564
548
|
# @return [Wx::BitmapBundle]
|
565
549
|
def self.from_svg_file(path, sizeDef) end
|
566
550
|
|
567
|
-
# Create a bundle from the SVG image loaded from an application resource.
|
568
|
-
# Available only on the platforms supporting images in resources, i.e., MSW and MacOS.
|
569
|
-
# @see Wx::BitmapBundle.from_resources
|
570
|
-
# @see Wx::BitmapBundle.from_svg_file
|
571
|
-
# @param name [String] On MSW, it must be a resource with RT_RCDATA type. On MacOS, it must be a file with an extension "svg" placed in the "Resources" subdirectory of the application bundle.
|
572
|
-
# @param sizeDef [Array(Integer, Integer), Wx::Size] The default size to return from {Wx::BitmapBundle#get_default_size} for this bundle.
|
573
|
-
# @return [Wx::BitmapBundle]
|
574
|
-
def self.from_svg_resource(name, sizeDef) end
|
575
|
-
|
576
551
|
end # BitmapBundle
|
577
552
|
|
578
553
|
# This class encapsulates a monochrome mask bitmap, where the masked area is black and the unmasked area is white.
|
579
554
|
# When associated with a bitmap and drawn in a device context, the unmasked area of the bitmap will be drawn, and the masked area will not be drawn.
|
580
|
-
# A mask can be associated also with a bitmap with an alpha channel but drawing such bitmaps under
|
555
|
+
# A mask can be associated also with a bitmap with an alpha channel but drawing such bitmaps under wxMSW may be slow so using them should be avoided if drawing performance is an important factor.
|
581
556
|
#
|
582
557
|
# ===
|
583
558
|
#
|
@@ -591,22 +566,22 @@ module Wx
|
|
591
566
|
|
592
567
|
# @overload initialize()
|
593
568
|
# Default constructor.
|
594
|
-
# @return [Mask]
|
569
|
+
# @return [Wx::Mask]
|
595
570
|
# @overload initialize(bitmap, index)
|
596
571
|
# Constructs a mask from a bitmap and a palette index that indicates the background.
|
597
572
|
# Not implemented for GTK.
|
598
573
|
# @param bitmap [Wx::Bitmap] A valid bitmap.
|
599
574
|
# @param index [Integer] Index into a palette, specifying the transparency colour.
|
600
|
-
# @return [Mask]
|
575
|
+
# @return [Wx::Mask]
|
601
576
|
# @overload initialize(bitmap)
|
602
577
|
# Constructs a mask from a monochrome bitmap.
|
603
578
|
# @param bitmap [Wx::Bitmap]
|
604
|
-
# @return [Mask]
|
579
|
+
# @return [Wx::Mask]
|
605
580
|
# @overload initialize(bitmap, colour)
|
606
581
|
# Constructs a mask from a bitmap and a colour that indicates the background.
|
607
582
|
# @param bitmap [Wx::Bitmap]
|
608
583
|
# @param colour [Wx::Colour,String,Symbol]
|
609
|
-
# @return [Mask]
|
584
|
+
# @return [Wx::Mask]
|
610
585
|
def initialize(*args) end
|
611
586
|
|
612
587
|
# @overload create(bitmap, index)
|
@@ -614,20 +589,20 @@ module Wx
|
|
614
589
|
# Not implemented for GTK.
|
615
590
|
# @param bitmap [Wx::Bitmap] A valid bitmap.
|
616
591
|
# @param index [Integer] Index into a palette, specifying the transparency colour.
|
617
|
-
# @return [
|
592
|
+
# @return [Boolean]
|
618
593
|
# @overload create(bitmap)
|
619
594
|
# Constructs a mask from a monochrome bitmap.
|
620
595
|
# @param bitmap [Wx::Bitmap]
|
621
|
-
# @return [
|
596
|
+
# @return [Boolean]
|
622
597
|
# @overload create(bitmap, colour)
|
623
598
|
# Constructs a mask from a bitmap and a colour that indicates the background.
|
624
599
|
# @param bitmap [Wx::Bitmap]
|
625
600
|
# @param colour [Wx::Colour,String,Symbol]
|
626
|
-
# @return [
|
601
|
+
# @return [Boolean]
|
627
602
|
def create(*args) end
|
628
603
|
|
629
604
|
# Returns the mask as a monochrome bitmap.
|
630
|
-
# Currently this method is implemented in
|
605
|
+
# Currently this method is implemented in wxMSW, wxGTK and wxOSX.
|
631
606
|
# @return [Wx::Bitmap]
|
632
607
|
def get_bitmap; end
|
633
608
|
alias_method :bitmap, :get_bitmap
|
@@ -11,10 +11,13 @@ module Wx
|
|
11
11
|
# === Styles
|
12
12
|
#
|
13
13
|
# This class supports the following styles:
|
14
|
-
#
|
14
|
+
#
|
15
15
|
# - {Wx::BU_LEFT}: Left-justifies the bitmap label.
|
16
|
+
#
|
16
17
|
# - {Wx::BU_TOP}: Aligns the bitmap label to the top of the button.
|
18
|
+
#
|
17
19
|
# - {Wx::BU_RIGHT}: Right-justifies the bitmap label.
|
20
|
+
#
|
18
21
|
# - {Wx::BU_BOTTOM}: Aligns the bitmap label to the bottom of the button.
|
19
22
|
#
|
20
23
|
# Note that the {Wx::BU_EXACTFIT} style supported by {Wx::Button} is not used by this class as bitmap buttons don't have any minimal standard size by default.
|
@@ -22,13 +25,14 @@ module Wx
|
|
22
25
|
#
|
23
26
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
|
24
27
|
# Event handler methods for events emitted by this class:
|
28
|
+
#
|
25
29
|
# - {Wx::EvtHandler#evt_button}(id, meth = nil, &block): Process a {Wx::EVT_BUTTON} event, when the button is clicked.
|
26
30
|
#
|
27
31
|
# ===
|
28
32
|
#
|
29
|
-
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td>
|
30
|
-
# </td><td>
|
31
|
-
# </td><td>
|
33
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
|
34
|
+
# </td><td> wxGTK Appearance
|
35
|
+
# </td><td> wxOSX Appearance
|
32
36
|
# </td></tr></table></div>
|
33
37
|
# @see Wx::Button
|
34
38
|
#
|
@@ -37,7 +41,7 @@ module Wx
|
|
37
41
|
|
38
42
|
# @overload initialize()
|
39
43
|
# Default ctor.
|
40
|
-
# @return [BitmapButton]
|
44
|
+
# @return [Wx::BitmapButton]
|
41
45
|
# @overload initialize(parent, id, bitmap, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ButtonNameStr)
|
42
46
|
# Constructor, creating and showing a button.
|
43
47
|
# The bitmap parameter is normally the only bitmap you need to provide, and wxWidgets will draw the button correctly in its different states. If you want more control, call any of the functions {Wx::BitmapButton#set_bitmap_pressed}, {Wx::BitmapButton#set_bitmap_focus}, {Wx::BitmapButton#set_bitmap_disabled}.
|
@@ -51,11 +55,11 @@ module Wx
|
|
51
55
|
# @param style [Integer] Window style. See {Wx::BitmapButton}.
|
52
56
|
# @param validator [Wx::Validator] Window validator.
|
53
57
|
# @param name [String] Window name.
|
54
|
-
# @return [BitmapButton]
|
58
|
+
# @return [Wx::BitmapButton]
|
55
59
|
def initialize(*args) end
|
56
60
|
|
57
61
|
# Button creation function for two-step creation.
|
58
|
-
# For more details, see {Wx::BitmapButton#
|
62
|
+
# For more details, see {Wx::BitmapButton#initialize}.
|
59
63
|
# @param parent [Wx::Window]
|
60
64
|
# @param id [Integer]
|
61
65
|
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
@@ -64,7 +68,7 @@ module Wx
|
|
64
68
|
# @param style [Integer]
|
65
69
|
# @param validator [Wx::Validator]
|
66
70
|
# @param name [String]
|
67
|
-
# @return [
|
71
|
+
# @return [Boolean]
|
68
72
|
def create(parent, id, bitmap, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ButtonNameStr) end
|
69
73
|
|
70
74
|
# Creation function for two-step creation of "Close" button.
|
@@ -72,7 +76,7 @@ module Wx
|
|
72
76
|
# @param parent [Wx::Window] The button parent window, must be non-NULL.
|
73
77
|
# @param winid [Integer] The identifier for the new button.
|
74
78
|
# @param name [String] The name for the new button.
|
75
|
-
# @return [
|
79
|
+
# @return [Boolean]
|
76
80
|
def create_close_button(parent, winid, name=(())) end
|
77
81
|
|
78
82
|
# Helper function creating a standard-looking "Close" button.
|
@@ -13,9 +13,11 @@ module Wx
|
|
13
13
|
# === Styles
|
14
14
|
#
|
15
15
|
# This class supports the following styles:
|
16
|
-
#
|
16
|
+
#
|
17
17
|
# - {Wx::CB_READONLY}: Creates a combobox without a text editor. On some platforms the control may appear very different when this style is used.
|
18
|
+
#
|
18
19
|
# - {Wx::CB_SORT}: Sorts the entries in the list alphabetically.
|
20
|
+
#
|
19
21
|
# - {Wx::TE_PROCESS_ENTER}: The control will generate the event {Wx::EVT_TEXT_ENTER} (otherwise pressing Enter key is either processed internally by the control or used for navigation between dialog controls). Windows only.
|
20
22
|
#
|
21
23
|
# Todocreate {Wx::CB_PROCESS_ENTER} rather than reusing {Wx::TE_PROCESS_ENTER}!
|
@@ -24,15 +26,18 @@ module Wx
|
|
24
26
|
#
|
25
27
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CommandEvent} events.
|
26
28
|
# Event handler methods for events emitted by this class:
|
29
|
+
#
|
27
30
|
# - {Wx::EvtHandler#evt_combobox}(id, meth = nil, &block): Process a {Wx::EVT_COMBOBOX} event, when an item on the list is selected.
|
31
|
+
#
|
28
32
|
# - {Wx::EvtHandler#evt_text}(id, meth = nil, &block): Process a {Wx::EVT_TEXT} event, when the combobox text changes.
|
33
|
+
#
|
29
34
|
# - {Wx::EvtHandler#evt_text_enter}(id, meth = nil, &block): Process a {Wx::EVT_TEXT_ENTER} event, when RETURN is pressed in the combobox.
|
30
35
|
#
|
31
36
|
# ===
|
32
37
|
#
|
33
|
-
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td>
|
34
|
-
# </td><td>
|
35
|
-
# </td><td>
|
38
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
|
39
|
+
# </td><td> wxGTK Appearance
|
40
|
+
# </td><td> wxOSX Appearance
|
36
41
|
# </td></tr></table></div>
|
37
42
|
# @see Wx::ComboBox
|
38
43
|
# @see Wx::Choice
|
@@ -44,7 +49,7 @@ module Wx
|
|
44
49
|
|
45
50
|
# @overload initialize()
|
46
51
|
# Default ctor.
|
47
|
-
# @return [BitmapComboBox]
|
52
|
+
# @return [Wx::BitmapComboBox]
|
48
53
|
# @overload initialize(parent, id=Wx::StandardID::ID_ANY, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, choices=nil, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::BitmapComboBoxNameStr)
|
49
54
|
# Constructor, creating and showing a combobox.
|
50
55
|
#
|
@@ -59,7 +64,7 @@ module Wx
|
|
59
64
|
# @param style [Integer] The window style, see {Wx::CB_}* flags.
|
60
65
|
# @param validator [Wx::Validator] Validator which can be used for additional data checks.
|
61
66
|
# @param name [String] Control name.
|
62
|
-
# @return [BitmapComboBox]
|
67
|
+
# @return [Wx::BitmapComboBox]
|
63
68
|
# @overload initialize(parent, id, value, pos, size, choices, style, validator=Wx::DEFAULT_VALIDATOR, name=Wx::BitmapComboBoxNameStr)
|
64
69
|
# Constructor, creating and showing a combobox.
|
65
70
|
#
|
@@ -74,7 +79,7 @@ module Wx
|
|
74
79
|
# @param style [Integer] The window style, see {Wx::CB_}* flags.
|
75
80
|
# @param validator [Wx::Validator] Validator which can be used for additional data checks.
|
76
81
|
# @param name [String] Control name.
|
77
|
-
# @return [BitmapComboBox]
|
82
|
+
# @return [Wx::BitmapComboBox]
|
78
83
|
def initialize(*args) end
|
79
84
|
|
80
85
|
# @overload append(item, bitmap=Wx::NULL_BITMAP)
|
@@ -101,7 +106,7 @@ module Wx
|
|
101
106
|
# @param style [Integer]
|
102
107
|
# @param validator [Wx::Validator]
|
103
108
|
# @param name [String]
|
104
|
-
# @return [
|
109
|
+
# @return [Boolean]
|
105
110
|
# @overload create(parent, id, value, pos, size, choices, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::BitmapComboBoxNameStr)
|
106
111
|
# Creates the combobox for two-step construction.
|
107
112
|
# @param parent [Wx::Window]
|
@@ -113,7 +118,7 @@ module Wx
|
|
113
118
|
# @param style [Integer]
|
114
119
|
# @param validator [Wx::Validator]
|
115
120
|
# @param name [String]
|
116
|
-
# @return [
|
121
|
+
# @return [Boolean]
|
117
122
|
def create(*args) end
|
118
123
|
|
119
124
|
# Returns the size of the bitmaps used in the combo box.
|