wxruby3 0.9.0.pre.rc.3-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/README.md +1 -1
- 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 +7 -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 +16 -4
- data/lib/wx/core/imagelist.rb +8 -1
- data/lib/wx/core/listbox.rb +7 -0
- data/lib/wx/core/listctrl.rb +9 -0
- data/lib/wx/core/locale.rb +8 -0
- data/lib/wx/core/log.rb +24 -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 +12 -4
- 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 +6 -0
- data/lib/wx/doc/events.rb +6 -0
- data/lib/wx/doc/evthandler.rb +8 -0
- data/lib/wx/doc/extra/01_packages.md +52 -51
- 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 +1 -1
- data/lib/wx/doc/extra/10_art.md +18 -12
- data/lib/wx/doc/extra/11_drawing_and_dc.md +4 -4
- data/lib/wx/doc/font.rb +6 -0
- data/lib/wx/doc/font_data.rb +16 -0
- data/lib/wx/doc/functions.rb +9 -1
- data/lib/wx/doc/gc_dc.rb +6 -0
- data/lib/wx/doc/gdi_common.rb +8 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +9 -9
- data/lib/wx/doc/gen/accelerator.rb +4 -9
- data/lib/wx/doc/gen/accessible.rb +21 -21
- data/lib/wx/doc/gen/activity_indicator.rb +2 -2
- data/lib/wx/doc/gen/animation.rb +13 -13
- data/lib/wx/doc/gen/animation_ctrl.rb +7 -7
- data/lib/wx/doc/gen/any_button.rb +2 -2
- data/lib/wx/doc/gen/app.rb +16 -85
- data/lib/wx/doc/gen/app_traits.rb +381 -0
- data/lib/wx/doc/gen/art_provider.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_manager.rb +12 -14
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +5 -5
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +13 -14
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_notebook.rb +102 -19
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +44 -44
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +11 -11
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +28 -28
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +7 -7
- 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 +24 -55
- data/lib/wx/doc/gen/bitmap_button.rb +3 -3
- data/lib/wx/doc/gen/bitmap_combo_box.rb +2 -2
- data/lib/wx/doc/gen/book_ctrl_base.rb +13 -13
- data/lib/wx/doc/gen/book_ctrl_event.rb +1 -1
- data/lib/wx/doc/gen/brush.rb +8 -8
- data/lib/wx/doc/gen/button.rb +4 -4
- data/lib/wx/doc/gen/calendar_ctrl.rb +12 -12
- data/lib/wx/doc/gen/calendar_date_attr.rb +11 -11
- data/lib/wx/doc/gen/calendar_event.rb +2 -8
- data/lib/wx/doc/gen/caret.rb +4 -4
- data/lib/wx/doc/gen/check_box.rb +9 -9
- data/lib/wx/doc/gen/check_list_box.rb +4 -4
- data/lib/wx/doc/gen/choice.rb +3 -3
- data/lib/wx/doc/gen/choicebook.rb +1 -1
- data/lib/wx/doc/gen/clipboard.rb +9 -9
- data/lib/wx/doc/gen/collapsible_pane.rb +4 -4
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +26 -26
- data/lib/wx/doc/gen/colour_dialog.rb +6 -6
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/combo_box.rb +7 -7
- 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 +3 -3
- data/lib/wx/doc/gen/control.rb +3 -3
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +5 -5
- data/lib/wx/doc/gen/cursor.rb +3 -8
- data/lib/wx/doc/gen/data_format.rb +3 -3
- data/lib/wx/doc/gen/data_object.rb +13 -13
- data/lib/wx/doc/gen/date_event.rb +1 -1
- data/lib/wx/doc/gen/date_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/dc.rb +125 -62
- data/lib/wx/doc/gen/dialog.rb +46 -17
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +1 -1
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/drag_drop.rb +18 -44
- data/lib/wx/doc/gen/drag_image.rb +7 -32
- data/lib/wx/doc/gen/editable_list_box.rb +2 -2
- data/lib/wx/doc/gen/event.rb +15 -23
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_list.rb +103 -5
- data/lib/wx/doc/gen/events.rb +151 -151
- data/lib/wx/doc/gen/evt_handler.rb +7 -7
- data/lib/wx/doc/gen/ext_help_controller.rb +8 -8
- data/lib/wx/doc/gen/file_dialog.rb +4 -2
- 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 +1 -1
- data/lib/wx/doc/gen/file_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/file_system.rb +250 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +1 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +1 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +4 -4
- data/lib/wx/doc/gen/font.rb +60 -65
- data/lib/wx/doc/gen/font_data.rb +6 -6
- data/lib/wx/doc/gen/font_dialog.rb +2 -2
- data/lib/wx/doc/gen/font_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/frame.rb +6 -20
- data/lib/wx/doc/gen/fs_file.rb +61 -21
- data/lib/wx/doc/gen/gauge.rb +3 -3
- data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
- data/lib/wx/doc/gen/gdi_common.rb +8 -8
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +6 -6
- data/lib/wx/doc/gen/graphics_context.rb +291 -60
- data/lib/wx/doc/gen/graphics_object.rb +47 -101
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +36 -51
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +414 -171
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_event.rb +7 -7
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +9 -9
- data/lib/wx/doc/gen/grid/grid_size_event.rb +5 -5
- data/lib/wx/doc/gen/grid/grid_string_table.rb +6 -6
- data/lib/wx/doc/gen/grid/grid_table_base.rb +15 -15
- data/lib/wx/doc/gen/grid_bag_sizer.rb +10 -10
- data/lib/wx/doc/gen/gui_event_loop.rb +12 -12
- 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 +7 -7
- data/lib/wx/doc/gen/help_provider.rb +3 -3
- data/lib/wx/doc/gen/html/html_cell.rb +67 -44
- data/lib/wx/doc/gen/html/html_cell_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_easy_printing.rb +5 -5
- data/lib/wx/doc/gen/html/html_help_controller.rb +40 -52
- data/lib/wx/doc/gen/html/html_help_data.rb +2 -2
- data/lib/wx/doc/gen/html/html_help_window.rb +21 -27
- data/lib/wx/doc/gen/html/html_list_box.rb +6 -6
- data/lib/wx/doc/gen/html/html_printout.rb +1 -1
- data/lib/wx/doc/gen/html/html_window.rb +35 -31
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +10 -10
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +46 -51
- data/lib/wx/doc/gen/image_list.rb +14 -24
- data/lib/wx/doc/gen/info_bar.rb +152 -0
- data/lib/wx/doc/gen/keyboard_state.rb +17 -17
- data/lib/wx/doc/gen/list_box.rb +19 -19
- data/lib/wx/doc/gen/list_ctrl.rb +58 -93
- data/lib/wx/doc/gen/list_event.rb +2 -2
- data/lib/wx/doc/gen/listbook.rb +1 -1
- data/lib/wx/doc/gen/locale.rb +15 -39
- data/lib/wx/doc/gen/log.rb +17 -67
- data/lib/wx/doc/gen/mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/mdi_frame.rb +8 -8
- data/lib/wx/doc/gen/media_ctrl.rb +15 -15
- data/lib/wx/doc/gen/media_event.rb +1 -1
- data/lib/wx/doc/gen/memory_dc.rb +3 -6
- data/lib/wx/doc/gen/menu.rb +15 -16
- data/lib/wx/doc/gen/menu_bar.rb +9 -26
- data/lib/wx/doc/gen/menu_item.rb +12 -12
- data/lib/wx/doc/gen/message_dialog.rb +6 -6
- data/lib/wx/doc/gen/mini_frame.rb +2 -2
- data/lib/wx/doc/gen/mouse_state.rb +50 -10
- data/lib/wx/doc/gen/non_owned_window.rb +2 -2
- data/lib/wx/doc/gen/notebook.rb +7 -7
- data/lib/wx/doc/gen/number_entry_dialog.rb +1 -1
- data/lib/wx/doc/gen/object.rb +1 -12
- data/lib/wx/doc/gen/palette.rb +12 -14
- data/lib/wx/doc/gen/panel.rb +4 -4
- data/lib/wx/doc/gen/pen.rb +25 -25
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +2 -2
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +14 -14
- data/lib/wx/doc/gen/pg/pg_cell.rb +3 -6
- data/lib/wx/doc/gen/pg/pg_editor.rb +19 -19
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +61 -86
- data/lib/wx/doc/gen/pg/pg_properties.rb +210 -263
- data/lib/wx/doc/gen/pg/pg_property.rb +161 -257
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +2 -2
- data/lib/wx/doc/gen/pg/property_grid.rb +30 -30
- data/lib/wx/doc/gen/pg/property_grid_event.rb +7 -7
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +45 -51
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +39 -42
- data/lib/wx/doc/gen/pg/property_grid_page.rb +11 -20
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +10 -19
- data/lib/wx/doc/gen/picker_base.rb +5 -5
- data/lib/wx/doc/gen/platform_info.rb +173 -13
- data/lib/wx/doc/gen/popup_window.rb +2 -2
- data/lib/wx/doc/gen/progress_dialog.rb +2 -2
- data/lib/wx/doc/gen/property_sheet_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/preview_frame.rb +14 -1
- data/lib/wx/doc/gen/prt/print_data.rb +44 -44
- data/lib/wx/doc/gen/prt/printer.rb +22 -27
- data/lib/wx/doc/gen/query_layout_info_event.rb +4 -4
- data/lib/wx/doc/gen/radio_box.rb +9 -9
- data/lib/wx/doc/gen/radio_button.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +28 -28
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +8 -14
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +12 -16
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +2 -2
- 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 +26 -35
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +608 -1520
- 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 +435 -472
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +9 -9
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +12 -12
- 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 +14 -14
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +3 -16
- 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 +17 -17
- 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 +2 -2
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +32 -35
- data/lib/wx/doc/gen/sash_event.rb +5 -5
- data/lib/wx/doc/gen/sash_layout_window.rb +8 -8
- data/lib/wx/doc/gen/sash_window.rb +6 -6
- data/lib/wx/doc/gen/scroll_bar.rb +4 -4
- data/lib/wx/doc/gen/scrolled_canvas.rb +10 -16
- data/lib/wx/doc/gen/scrolled_control.rb +10 -16
- data/lib/wx/doc/gen/scrolled_window.rb +10 -16
- data/lib/wx/doc/gen/search_ctrl.rb +5 -5
- data/lib/wx/doc/gen/simplebook.rb +5 -5
- data/lib/wx/doc/gen/single_choice_dialog.rb +1 -2
- data/lib/wx/doc/gen/sizer.rb +40 -45
- data/lib/wx/doc/gen/sizer_item.rb +5 -5
- data/lib/wx/doc/gen/slider.rb +2 -2
- data/lib/wx/doc/gen/spin_button.rb +2 -2
- data/lib/wx/doc/gen/spin_ctrl.rb +3 -3
- 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 +1 -1
- data/lib/wx/doc/gen/splitter_event.rb +1 -1
- data/lib/wx/doc/gen/splitter_window.rb +16 -12
- data/lib/wx/doc/gen/static_bitmap.rb +4 -4
- data/lib/wx/doc/gen/static_box.rb +5 -5
- data/lib/wx/doc/gen/static_line.rb +3 -3
- data/lib/wx/doc/gen/static_text.rb +3 -3
- data/lib/wx/doc/gen/status_bar.rb +39 -5
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +145 -177
- data/lib/wx/doc/gen/stc/styled_text_event.rb +6 -6
- data/lib/wx/doc/gen/svg_file_dc.rb +5 -5
- data/lib/wx/doc/gen/system_options.rb +2 -2
- data/lib/wx/doc/gen/system_settings.rb +6 -6
- data/lib/wx/doc/gen/task_bar_icon.rb +7 -7
- data/lib/wx/doc/gen/task_bar_icon_event.rb +1 -1
- data/lib/wx/doc/gen/text_attr.rb +56 -54
- data/lib/wx/doc/gen/text_ctrl.rb +13 -37
- data/lib/wx/doc/gen/text_entry.rb +16 -16
- data/lib/wx/doc/gen/text_entry_dialog.rb +4 -4
- data/lib/wx/doc/gen/text_validator.rb +3 -8
- data/lib/wx/doc/gen/time_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/timer.rb +5 -5
- data/lib/wx/doc/gen/tip_provider.rb +2 -2
- data/lib/wx/doc/gen/toggle_button.rb +4 -4
- data/lib/wx/doc/gen/tool_bar.rb +30 -37
- data/lib/wx/doc/gen/tool_tip.rb +1 -9
- data/lib/wx/doc/gen/toolbook.rb +6 -6
- data/lib/wx/doc/gen/top_level_window.rb +25 -95
- data/lib/wx/doc/gen/tree_ctrl.rb +20 -20
- data/lib/wx/doc/gen/tree_event.rb +2 -2
- data/lib/wx/doc/gen/treebook.rb +14 -14
- data/lib/wx/doc/gen/ui_action_simulator.rb +19 -18
- data/lib/wx/doc/gen/utils.rb +11 -11
- data/lib/wx/doc/gen/v_list_box.rb +9 -9
- data/lib/wx/doc/gen/v_scrolled_window.rb +7 -7
- data/lib/wx/doc/gen/validator.rb +3 -3
- data/lib/wx/doc/gen/variant.rb +22 -22
- data/lib/wx/doc/gen/window.rb +157 -122
- data/lib/wx/doc/gen/with_images.rb +1 -1
- data/lib/wx/doc/gen/wizard.rb +4 -4
- data/lib/wx/doc/gen/wizard_event.rb +3 -3
- data/lib/wx/doc/gen/wizard_page.rb +2 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +1 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
- data/lib/wx/doc/gen/xml_node.rb +10 -10
- data/lib/wx/doc/gen/xml_resource.rb +12 -12
- 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 +12 -4
- data/lib/wx/doc/list_ctrl.rb +6 -0
- data/lib/wx/doc/log.rb +17 -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 +6 -0
- 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 +6 -0
- 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 +6 -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 +22 -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 +5 -2
- 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 +7 -4
- data/tests/test_intl.rb +3 -0
- data/tests/test_item_data.rb +3 -0
- data/tests/test_list_ctrl.rb +4 -1
- data/tests/test_log.rb +63 -0
- data/tests/test_proof_check.rb +52 -0
- data/tests/test_richtext.rb +204 -0
- data/tests/test_std_controls.rb +45 -35
- data/tests/test_timer.rb +3 -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 +76 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -75,7 +75,7 @@ module Wx::AUI
|
|
75
75
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
76
76
|
# @param size [Array(Integer, Integer), Wx::Size]
|
77
77
|
# @param style [Integer]
|
78
|
-
# @return [
|
78
|
+
# @return [Boolean]
|
79
79
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::AUI::AuiToolBarStyle::AUI_TB_DEFAULT_STYLE) end
|
80
80
|
|
81
81
|
# Sets the style of the window.
|
@@ -110,7 +110,7 @@ module Wx::AUI
|
|
110
110
|
# @see Wx::AUI::AuiToolBar#get_font
|
111
111
|
# @see Wx::AUI::AuiToolBar#inherit_attributes
|
112
112
|
# @param font [Wx::Font,Wx::FontInfo] Font to associate with this window, pass {Wx::NULL_FONT} to reset to the default font.
|
113
|
-
# @return [
|
113
|
+
# @return [Boolean]
|
114
114
|
def set_font(font) end
|
115
115
|
alias_method :font=, :set_font
|
116
116
|
|
@@ -119,14 +119,14 @@ module Wx::AUI
|
|
119
119
|
# @param label [String]
|
120
120
|
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
121
121
|
# @param short_help_string [String]
|
122
|
-
# @param kind [ItemKind]
|
122
|
+
# @param kind [Wx::ItemKind]
|
123
123
|
# @return [Wx::AUI::AuiToolBarItem]
|
124
124
|
# @overload add_tool(toolId, label, bitmap, disabled_bitmap, kind, short_help_string, long_help_string, client_data)
|
125
125
|
# @param toolId [Integer]
|
126
126
|
# @param label [String]
|
127
127
|
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
128
128
|
# @param disabled_bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
129
|
-
# @param kind [ItemKind]
|
129
|
+
# @param kind [Wx::ItemKind]
|
130
130
|
# @param short_help_string [String]
|
131
131
|
# @param long_help_string [String]
|
132
132
|
# @param client_data [Wx::Object]
|
@@ -135,7 +135,7 @@ module Wx::AUI
|
|
135
135
|
# @param toolId [Integer]
|
136
136
|
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
137
137
|
# @param disabled_bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
138
|
-
# @param toggle [
|
138
|
+
# @param toggle [Boolean]
|
139
139
|
# @param client_data [Wx::Object]
|
140
140
|
# @param short_help_string [String]
|
141
141
|
# @param long_help_string [String]
|
@@ -164,7 +164,7 @@ module Wx::AUI
|
|
164
164
|
# @return [Wx::AUI::AuiToolBarItem]
|
165
165
|
def add_stretch_spacer(proportion=1) end
|
166
166
|
|
167
|
-
# @return [
|
167
|
+
# @return [Boolean]
|
168
168
|
def realize; end
|
169
169
|
|
170
170
|
# @param window_id [Integer]
|
@@ -193,13 +193,13 @@ module Wx::AUI
|
|
193
193
|
# Destroys the tool with the given ID and its associated window, if any.
|
194
194
|
# true if the tool was destroyed or false otherwise, e.g. if the tool with the given ID was not found.
|
195
195
|
# @param toolId [Integer] ID of a previously added tool.
|
196
|
-
# @return [
|
196
|
+
# @return [Boolean]
|
197
197
|
def destroy_tool(toolId) end
|
198
198
|
|
199
199
|
# Destroys the tool at the given position and its associated window, if any.
|
200
200
|
# true if the tool was destroyed or false otherwise, e.g. if the provided index is out of range.
|
201
201
|
# @param idx [Integer] The index, or position, of a previously added tool.
|
202
|
-
# @return [
|
202
|
+
# @return [Boolean]
|
203
203
|
def destroy_tool_by_index(idx) end
|
204
204
|
|
205
205
|
# Removes the tool with the given ID from the toolbar.
|
@@ -207,7 +207,7 @@ module Wx::AUI
|
|
207
207
|
#
|
208
208
|
# true if the tool was removed or false otherwise, e.g. if the tool with the given ID was not found.
|
209
209
|
# @param toolId [Integer] ID of a previously added tool.
|
210
|
-
# @return [
|
210
|
+
# @return [Boolean]
|
211
211
|
def delete_tool(toolId) end
|
212
212
|
|
213
213
|
# Removes the tool at the given position from the toolbar.
|
@@ -215,7 +215,7 @@ module Wx::AUI
|
|
215
215
|
#
|
216
216
|
# true if the tool was removed or false otherwise, e.g. if the provided index is out of range.
|
217
217
|
# @param idx [Integer] The index, or position, of a previously added tool.
|
218
|
-
# @return [
|
218
|
+
# @return [Boolean]
|
219
219
|
def delete_by_index(idx) end
|
220
220
|
|
221
221
|
# @return [Integer]
|
@@ -233,7 +233,7 @@ module Wx::AUI
|
|
233
233
|
alias_method :tool_index, :get_tool_index
|
234
234
|
|
235
235
|
# @param toolId [Integer]
|
236
|
-
# @return [
|
236
|
+
# @return [Boolean]
|
237
237
|
def get_tool_fits(toolId) end
|
238
238
|
alias_method :tool_fits, :get_tool_fits
|
239
239
|
|
@@ -243,11 +243,11 @@ module Wx::AUI
|
|
243
243
|
alias_method :tool_rect, :get_tool_rect
|
244
244
|
|
245
245
|
# @param toolId [Integer]
|
246
|
-
# @return [
|
246
|
+
# @return [Boolean]
|
247
247
|
def get_tool_fits_by_index(toolId) end
|
248
248
|
alias_method :tool_fits_by_index, :get_tool_fits_by_index
|
249
249
|
|
250
|
-
# @return [
|
250
|
+
# @return [Boolean]
|
251
251
|
def get_tool_bar_fits; end
|
252
252
|
alias_method :tool_bar_fits, :get_tool_bar_fits
|
253
253
|
|
@@ -276,41 +276,41 @@ module Wx::AUI
|
|
276
276
|
def get_tool_bitmap_size; end
|
277
277
|
alias_method :tool_bitmap_size, :get_tool_bitmap_size
|
278
278
|
|
279
|
-
# @return [
|
279
|
+
# @return [Boolean]
|
280
280
|
def get_overflow_visible; end
|
281
281
|
alias_method :overflow_visible, :get_overflow_visible
|
282
282
|
|
283
|
-
# @param visible [
|
283
|
+
# @param visible [Boolean]
|
284
284
|
# @return [void]
|
285
285
|
def set_overflow_visible(visible) end
|
286
286
|
alias_method :overflow_visible=, :set_overflow_visible
|
287
287
|
|
288
|
-
# @return [
|
288
|
+
# @return [Boolean]
|
289
289
|
def get_gripper_visible; end
|
290
290
|
alias_method :gripper_visible, :get_gripper_visible
|
291
291
|
|
292
|
-
# @param visible [
|
292
|
+
# @param visible [Boolean]
|
293
293
|
# @return [void]
|
294
294
|
def set_gripper_visible(visible) end
|
295
295
|
alias_method :gripper_visible=, :set_gripper_visible
|
296
296
|
|
297
297
|
# @param toolId [Integer]
|
298
|
-
# @param state [
|
298
|
+
# @param state [Boolean]
|
299
299
|
# @return [void]
|
300
300
|
def toggle_tool(toolId, state) end
|
301
301
|
|
302
302
|
# @param toolId [Integer]
|
303
|
-
# @return [
|
303
|
+
# @return [Boolean]
|
304
304
|
def get_tool_toggled(toolId) end
|
305
305
|
alias_method :tool_toggled, :get_tool_toggled
|
306
306
|
|
307
307
|
# @param toolId [Integer]
|
308
|
-
# @param state [
|
308
|
+
# @param state [Boolean]
|
309
309
|
# @return [void]
|
310
310
|
def enable_tool(toolId, state) end
|
311
311
|
|
312
312
|
# @param toolId [Integer]
|
313
|
-
# @return [
|
313
|
+
# @return [Boolean]
|
314
314
|
def get_tool_enabled(toolId) end
|
315
315
|
alias_method :tool_enabled, :get_tool_enabled
|
316
316
|
|
@@ -318,7 +318,7 @@ module Wx::AUI
|
|
318
318
|
# This is only valid for {Wx::ItemKind::ITEM_NORMAL} tools.
|
319
319
|
# @see Wx::AUI::AuiToolBarItem#set_has_drop_down
|
320
320
|
# @param toolId [Integer]
|
321
|
-
# @param dropdown [
|
321
|
+
# @param dropdown [Boolean]
|
322
322
|
# @return [void]
|
323
323
|
def set_tool_drop_down(toolId, dropdown) end
|
324
324
|
|
@@ -326,7 +326,7 @@ module Wx::AUI
|
|
326
326
|
#
|
327
327
|
# @see Wx::AUI::AuiToolBarItem#has_drop_down
|
328
328
|
# @param toolId [Integer]
|
329
|
-
# @return [
|
329
|
+
# @return [Boolean]
|
330
330
|
def get_tool_drop_down(toolId) end
|
331
331
|
alias_method :tool_drop_down, :get_tool_drop_down
|
332
332
|
|
@@ -377,12 +377,12 @@ module Wx::AUI
|
|
377
377
|
alias_method :tool_separation, :get_tool_separation
|
378
378
|
|
379
379
|
# @param toolId [Integer]
|
380
|
-
# @param sticky [
|
380
|
+
# @param sticky [Boolean]
|
381
381
|
# @return [void]
|
382
382
|
def set_tool_sticky(toolId, sticky) end
|
383
383
|
|
384
384
|
# @param toolId [Integer]
|
385
|
-
# @return [
|
385
|
+
# @return [Boolean]
|
386
386
|
def get_tool_sticky(toolId) end
|
387
387
|
alias_method :tool_sticky, :get_tool_sticky
|
388
388
|
|
@@ -430,8 +430,8 @@ module Wx::AUI
|
|
430
430
|
# If there are custom items set, then the overflow menu will be displayed even if there are no items from the main toolbar that overflow.
|
431
431
|
#
|
432
432
|
# The toolbar must have the {Wx::AUI::AuiToolBarStyle::AUI_TB_OVERFLOW} style.
|
433
|
-
# @param prepend [Array<Wx::AUI::
|
434
|
-
# @param append [Array<Wx::AUI::
|
433
|
+
# @param prepend [Array<Wx::AUI::AuiToolBarItem>,nil] are the items to show before any overflow items
|
434
|
+
# @param append [Array<Wx::AUI::AuiToolBarItem>,nil] are the items to show after any overflow items
|
435
435
|
# @return [void]
|
436
436
|
def set_custom_overflow_items(prepend, append) end
|
437
437
|
|
@@ -442,7 +442,7 @@ module Wx::AUI
|
|
442
442
|
alias_method :hint_size, :get_hint_size
|
443
443
|
|
444
444
|
# @param pane [Wx::AUI::AuiPaneInfo]
|
445
|
-
# @return [
|
445
|
+
# @return [Boolean]
|
446
446
|
def is_pane_valid(pane) end
|
447
447
|
alias_method :pane_valid?, :is_pane_valid
|
448
448
|
|
@@ -131,7 +131,7 @@ module Wx::AUI
|
|
131
131
|
def set_element_size(element_id, size) end
|
132
132
|
|
133
133
|
# @param wnd [Wx::Window]
|
134
|
-
# @param items [Wx::
|
134
|
+
# @param items [Array<Wx::AUI::AuiToolBarItem>,nil]
|
135
135
|
# @return [Integer]
|
136
136
|
def show_drop_down(wnd, items) end
|
137
137
|
|
@@ -262,7 +262,7 @@ module Wx::AUI
|
|
262
262
|
def set_element_size(element_id, size) end
|
263
263
|
|
264
264
|
# @param wnd [Wx::Window]
|
265
|
-
# @param items [Wx::
|
265
|
+
# @param items [Array<Wx::AUI::AuiToolBarItem>,nil]
|
266
266
|
# @return [Integer]
|
267
267
|
def show_drop_down(wnd, items) end
|
268
268
|
|
@@ -141,7 +141,7 @@ module Wx::AUI
|
|
141
141
|
class AuiToolBarEvent < NotifyEvent
|
142
142
|
|
143
143
|
# @overload initialize(commandType=Wx::EVT_NULL, winId=0)
|
144
|
-
# @param commandType [Wx::
|
144
|
+
# @param commandType [Wx::CommandLinkButton::EventType]
|
145
145
|
# @param winId [Integer]
|
146
146
|
# @return [Wx::AUI::AuiToolBarEvent]
|
147
147
|
# @overload initialize(c)
|
@@ -150,7 +150,7 @@ module Wx::AUI
|
|
150
150
|
def initialize(*args) end
|
151
151
|
|
152
152
|
# Returns whether the drop down menu has been clicked.
|
153
|
-
# @return [
|
153
|
+
# @return [Boolean]
|
154
154
|
def is_drop_down_clicked; end
|
155
155
|
alias_method :drop_down_clicked?, :is_drop_down_clicked
|
156
156
|
|
@@ -169,7 +169,7 @@ module Wx::AUI
|
|
169
169
|
def get_tool_id; end
|
170
170
|
alias_method :tool_id, :get_tool_id
|
171
171
|
|
172
|
-
# @param c [
|
172
|
+
# @param c [Boolean]
|
173
173
|
# @return [void]
|
174
174
|
def set_drop_down_clicked(c) end
|
175
175
|
alias_method :drop_down_clicked=, :set_drop_down_clicked
|
@@ -165,33 +165,33 @@ module Wx::AUI
|
|
165
165
|
def get_proportion; end
|
166
166
|
alias_method :proportion, :get_proportion
|
167
167
|
|
168
|
-
# @param b [
|
168
|
+
# @param b [Boolean]
|
169
169
|
# @return [void]
|
170
170
|
def set_active(b) end
|
171
171
|
alias_method :active=, :set_active
|
172
172
|
|
173
|
-
# @return [
|
173
|
+
# @return [Boolean]
|
174
174
|
def is_active; end
|
175
175
|
alias_method :active?, :is_active
|
176
176
|
|
177
177
|
# Set whether this tool has a drop down button.
|
178
178
|
# This is only valid for {Wx::ItemKind::ITEM_NORMAL} tools.
|
179
|
-
# @param b [
|
179
|
+
# @param b [Boolean]
|
180
180
|
# @return [void]
|
181
181
|
def set_has_drop_down(b) end
|
182
182
|
alias_method :has_drop_down=, :set_has_drop_down
|
183
183
|
|
184
184
|
# Returns whether the toolbar item has an associated drop down button.
|
185
|
-
# @return [
|
185
|
+
# @return [Boolean]
|
186
186
|
def has_drop_down; end
|
187
187
|
alias_method :has_drop_down?, :has_drop_down
|
188
188
|
|
189
|
-
# @param b [
|
189
|
+
# @param b [Boolean]
|
190
190
|
# @return [void]
|
191
191
|
def set_sticky(b) end
|
192
192
|
alias_method :sticky=, :set_sticky
|
193
193
|
|
194
|
-
# @return [
|
194
|
+
# @return [Boolean]
|
195
195
|
def is_sticky; end
|
196
196
|
alias_method :sticky?, :is_sticky
|
197
197
|
|
@@ -214,7 +214,7 @@ module Wx::AUI
|
|
214
214
|
alias_method :alignment, :get_alignment
|
215
215
|
|
216
216
|
# Returns whether the toolbar item can be toggled.
|
217
|
-
# @return [
|
217
|
+
# @return [Boolean]
|
218
218
|
def can_be_toggled; end
|
219
219
|
alias_method :can_be_toggled?, :can_be_toggled
|
220
220
|
|
@@ -51,6 +51,7 @@ class Wx::EvtHandler
|
|
51
51
|
def evt_auinotebook_page_close(id, meth = nil, &block) end
|
52
52
|
|
53
53
|
# A page has been closed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_PAGE_CLOSED} event.
|
54
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
54
55
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
55
56
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
56
57
|
def evt_auinotebook_page_closed(winid, meth = nil, &block) end
|
@@ -98,31 +99,37 @@ class Wx::EvtHandler
|
|
98
99
|
def evt_auinotebook_allow_dnd(id, meth = nil, &block) end
|
99
100
|
|
100
101
|
# Notify that the tab has been dragged. Processes a {Wx::AUI::EVT_AUINOTEBOOK_DRAG_DONE} event.
|
102
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
101
103
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
102
104
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
103
105
|
def evt_auinotebook_drag_done(winid, meth = nil, &block) end
|
104
106
|
|
105
107
|
# The middle mouse button is pressed on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN} event.
|
108
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
106
109
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
107
110
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
108
111
|
def evt_auinotebook_tab_middle_down(winid, meth = nil, &block) end
|
109
112
|
|
110
113
|
# The middle mouse button is released on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_MIDDLE_UP} event.
|
114
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
111
115
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
112
116
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
113
117
|
def evt_auinotebook_tab_middle_up(winid, meth = nil, &block) end
|
114
118
|
|
115
119
|
# The right mouse button is pressed on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_RIGHT_DOWN} event.
|
120
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
116
121
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
117
122
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
118
123
|
def evt_auinotebook_tab_right_down(winid, meth = nil, &block) end
|
119
124
|
|
120
125
|
# The right mouse button is released on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_RIGHT_UP} event.
|
126
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
121
127
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
122
128
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
123
129
|
def evt_auinotebook_tab_right_up(winid, meth = nil, &block) end
|
124
130
|
|
125
131
|
# Double clicked on the tabs background area. Processes a {Wx::AUI::EVT_AUINOTEBOOK_BG_DCLICK} event.
|
132
|
+
# @param [Integer,Wx::Enum,Wx::Window,Wx::MenuItem,Wx::ToolBarTool,Wx::Timer] winid window/control id
|
126
133
|
# @param [String,Symbol,Method,Proc] meth (name of) method or handler proc
|
127
134
|
# @yieldparam [Wx::AUI::AuiNotebookEvent] event the event to handle
|
128
135
|
def evt_auinotebook_bg_dclick(winid, meth = nil, &block) end
|
@@ -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
@@ -80,7 +80,7 @@ module Wx
|
|
80
80
|
#
|
81
81
|
# @see Wx::Bitmap#load_file
|
82
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.
|
83
|
-
# @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.
|
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
84
|
# @return [Wx::Bitmap]
|
85
85
|
# @overload initialize(img, depth=Wx::BITMAP_SCREEN_DEPTH)
|
86
86
|
# Creates this bitmap object from the given image.
|
@@ -116,7 +116,7 @@ module Wx
|
|
116
116
|
|
117
117
|
# Creates the bitmap from an icon.
|
118
118
|
# @param icon [Wx::Icon]
|
119
|
-
# @return [
|
119
|
+
# @return [Boolean]
|
120
120
|
def copy_from_icon(icon) end
|
121
121
|
|
122
122
|
# @overload create(width, height, depth=Wx::BITMAP_SCREEN_DEPTH)
|
@@ -127,19 +127,19 @@ module Wx
|
|
127
127
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
128
128
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
129
129
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
130
|
-
# @return [
|
130
|
+
# @return [Boolean]
|
131
131
|
# @overload create(sz, depth=Wx::BITMAP_SCREEN_DEPTH)
|
132
132
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
133
133
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
134
134
|
# @param depth [Integer]
|
135
|
-
# @return [
|
135
|
+
# @return [Boolean]
|
136
136
|
# @overload create(width, height, dc)
|
137
137
|
# Create a bitmap compatible with the given DC, inheriting its magnification factor.
|
138
138
|
# true if the creation was successful.
|
139
139
|
# @param width [Integer] The width of the bitmap in pixels, must be strictly positive.
|
140
140
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
141
141
|
# @param dc [Wx::DC] DC from which the scaling factor is inherited
|
142
|
-
# @return [
|
142
|
+
# @return [Boolean]
|
143
143
|
def create(*args) end
|
144
144
|
|
145
145
|
# @overload create_with_dip_size(size, scale, depth=Wx::BITMAP_SCREEN_DEPTH)
|
@@ -155,14 +155,14 @@ module Wx
|
|
155
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.
|
156
156
|
# @param scale [Float] Scale factor used by the bitmap, see {Wx::Bitmap#set_scale_factor}.
|
157
157
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
158
|
-
# @return [
|
158
|
+
# @return [Boolean]
|
159
159
|
# @overload create_with_dip_size(width, height, scale, depth=Wx::BITMAP_SCREEN_DEPTH)
|
160
160
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
161
161
|
# @param width [Integer]
|
162
162
|
# @param height [Integer]
|
163
163
|
# @param scale [Float]
|
164
164
|
# @param depth [Integer]
|
165
|
-
# @return [
|
165
|
+
# @return [Boolean]
|
166
166
|
def create_with_dip_size(*args) end
|
167
167
|
|
168
168
|
# Create a bitmap with a scale factor.
|
@@ -173,7 +173,7 @@ module Wx
|
|
173
173
|
# @param height [Integer] The height of the bitmap in pixels, must be strictly positive.
|
174
174
|
# @param depth [Integer] The number of bits used to represent each bitmap pixel.
|
175
175
|
# @param logicalScale [Float] Scale factor used by the bitmap, see {Wx::Bitmap#set_scale_factor}.
|
176
|
-
# @return [
|
176
|
+
# @return [Boolean]
|
177
177
|
def create_scaled(width, height, depth, logicalScale) end
|
178
178
|
|
179
179
|
# Gets the colour depth of the bitmap.
|
@@ -288,12 +288,12 @@ module Wx
|
|
288
288
|
|
289
289
|
# Returns true if the bitmap has an alpha channel.
|
290
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}.
|
291
|
-
# @return [
|
291
|
+
# @return [Boolean]
|
292
292
|
def has_alpha; end
|
293
293
|
alias_method :has_alpha?, :has_alpha
|
294
294
|
|
295
295
|
# Returns true if bitmap data is present.
|
296
|
-
# @return [
|
296
|
+
# @return [Boolean]
|
297
297
|
def is_ok; end
|
298
298
|
alias_method :ok?, :is_ok
|
299
299
|
|
@@ -303,8 +303,8 @@ module Wx
|
|
303
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.
|
304
304
|
# @see Wx::Bitmap#save_file
|
305
305
|
# @param name [String] Either a filename or a Windows resource name. The meaning of name is determined by the type parameter.
|
306
|
-
# @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.
|
307
|
-
# @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]
|
308
308
|
def load_file(name, type=Wx::BITMAP_DEFAULT_TYPE) end
|
309
309
|
|
310
310
|
# Remove alpha channel from the bitmap.
|
@@ -318,9 +318,9 @@ module Wx
|
|
318
318
|
# Depending on how wxWidgets has been configured, not all formats may be available.
|
319
319
|
# @see Wx::Bitmap#load_file
|
320
320
|
# @param name [String] A filename. The meaning of name is determined by the type parameter.
|
321
|
-
# @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.
|
322
322
|
# @param palette [Wx::Palette] An optional palette used for saving the bitmap.
|
323
|
-
# @return [
|
323
|
+
# @return [Boolean]
|
324
324
|
def save_file(name, type, palette=nil) end
|
325
325
|
|
326
326
|
# Sets the bitmap scale factor.
|
@@ -422,7 +422,7 @@ module Wx
|
|
422
422
|
|
423
423
|
# Check if bitmap bundle is non-empty.
|
424
424
|
# Return true if the bundle contains any bitmaps or false if it is empty.
|
425
|
-
# @return [
|
425
|
+
# @return [Boolean]
|
426
426
|
def is_ok; end
|
427
427
|
alias_method :ok?, :is_ok
|
428
428
|
|
@@ -486,7 +486,7 @@ module Wx
|
|
486
486
|
# Check if the two bundles refer to the same object.
|
487
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.
|
488
488
|
# @param other [Wx::BitmapBundle]
|
489
|
-
# @return [
|
489
|
+
# @return [Boolean]
|
490
490
|
def is_same_as(other) end
|
491
491
|
alias_method :same_as?, :is_same_as
|
492
492
|
|
@@ -522,21 +522,6 @@ module Wx
|
|
522
522
|
# @return [Wx::BitmapBundle]
|
523
523
|
def self.from_image(image) end
|
524
524
|
|
525
|
-
# Create a bundle from a custom bitmap bundle implementation.
|
526
|
-
# 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.
|
527
|
-
# See {Wx::BitmapBundleImpl}.
|
528
|
-
# @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.
|
529
|
-
# @return [Wx::BitmapBundle]
|
530
|
-
def self.from_impl(impl) end
|
531
|
-
|
532
|
-
# Create a bundle from the bitmaps in the application resources.
|
533
|
-
# 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.
|
534
|
-
# 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.
|
535
|
-
# @see Wx::BitmapBundle.from_svg_resource
|
536
|
-
# @param name [String]
|
537
|
-
# @return [Wx::BitmapBundle]
|
538
|
-
def self.from_resources(name) end
|
539
|
-
|
540
525
|
# @overload self.from_files(path, filename, extension=("png"))
|
541
526
|
# Create a bundle from bitmaps stored as files.
|
542
527
|
# Looking in path for files using filename as prefix and potentionally a suffix with scale, e.g. "_2x" or "@2x"
|
@@ -550,18 +535,11 @@ module Wx
|
|
550
535
|
# @return [Wx::BitmapBundle]
|
551
536
|
def self.from_files(*args) end
|
552
537
|
|
553
|
-
#
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
|
558
|
-
# @overload self.from_svg(data, len, sizeDef)
|
559
|
-
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
560
|
-
# @param data [Integer]
|
561
|
-
# @param len [Integer]
|
562
|
-
# @param sizeDef [Array(Integer, Integer), Wx::Size]
|
563
|
-
# @return [Wx::BitmapBundle]
|
564
|
-
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
|
565
543
|
|
566
544
|
# Create a bundle from the SVG image loaded from the given file.
|
567
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.
|
@@ -570,15 +548,6 @@ module Wx
|
|
570
548
|
# @return [Wx::BitmapBundle]
|
571
549
|
def self.from_svg_file(path, sizeDef) end
|
572
550
|
|
573
|
-
# Create a bundle from the SVG image loaded from an application resource.
|
574
|
-
# Available only on the platforms supporting images in resources, i.e., MSW and MacOS.
|
575
|
-
# @see Wx::BitmapBundle.from_resources
|
576
|
-
# @see Wx::BitmapBundle.from_svg_file
|
577
|
-
# @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.
|
578
|
-
# @param sizeDef [Array(Integer, Integer), Wx::Size] The default size to return from {Wx::BitmapBundle#get_default_size} for this bundle.
|
579
|
-
# @return [Wx::BitmapBundle]
|
580
|
-
def self.from_svg_resource(name, sizeDef) end
|
581
|
-
|
582
551
|
end # BitmapBundle
|
583
552
|
|
584
553
|
# This class encapsulates a monochrome mask bitmap, where the masked area is black and the unmasked area is white.
|
@@ -620,16 +589,16 @@ module Wx
|
|
620
589
|
# Not implemented for GTK.
|
621
590
|
# @param bitmap [Wx::Bitmap] A valid bitmap.
|
622
591
|
# @param index [Integer] Index into a palette, specifying the transparency colour.
|
623
|
-
# @return [
|
592
|
+
# @return [Boolean]
|
624
593
|
# @overload create(bitmap)
|
625
594
|
# Constructs a mask from a monochrome bitmap.
|
626
595
|
# @param bitmap [Wx::Bitmap]
|
627
|
-
# @return [
|
596
|
+
# @return [Boolean]
|
628
597
|
# @overload create(bitmap, colour)
|
629
598
|
# Constructs a mask from a bitmap and a colour that indicates the background.
|
630
599
|
# @param bitmap [Wx::Bitmap]
|
631
600
|
# @param colour [Wx::Colour,String,Symbol]
|
632
|
-
# @return [
|
601
|
+
# @return [Boolean]
|
633
602
|
def create(*args) end
|
634
603
|
|
635
604
|
# Returns the mask as a monochrome bitmap.
|