wxruby3 0.9.0.pre.rc.3-x64-mingw-ucrt → 0.9.1-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/const.rb +83 -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 +100 -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 +73 -66
- 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 +6 -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 +18 -10
- 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 +4 -4
- data/lib/wx/doc/gen/animation.rb +13 -13
- data/lib/wx/doc/gen/animation_ctrl.rb +9 -9
- 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 +4 -4
- 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 +15 -16
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +4 -4
- 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 +26 -57
- data/lib/wx/doc/gen/bitmap_button.rb +5 -5
- data/lib/wx/doc/gen/bitmap_combo_box.rb +6 -6
- 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 +6 -6
- 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 +11 -11
- data/lib/wx/doc/gen/check_list_box.rb +7 -7
- data/lib/wx/doc/gen/choice.rb +5 -5
- 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 +6 -6
- 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 +3 -3
- data/lib/wx/doc/gen/combo_box.rb +11 -11
- 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 +5 -5
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +6 -6
- data/lib/wx/doc/gen/cursor.rb +4 -9
- data/lib/wx/doc/gen/data_format.rb +3 -3
- data/lib/wx/doc/gen/data_object.rb +14 -14
- 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 +127 -64
- data/lib/wx/doc/gen/defs.rb +3 -3
- data/lib/wx/doc/gen/dial_up_event.rb +42 -0
- data/lib/wx/doc/gen/dial_up_manager.rb +129 -0
- data/lib/wx/doc/gen/dialog.rb +48 -19
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +1 -1
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +5 -5
- 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 +4 -4
- data/lib/wx/doc/gen/event.rb +22 -24
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_list.rb +133 -7
- data/lib/wx/doc/gen/events.rb +162 -166
- 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_ctrl.rb +200 -0
- data/lib/wx/doc/gen/file_ctrl_event.rb +80 -0
- data/lib/wx/doc/gen/file_dialog.rb +5 -3
- 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 +5 -5
- 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 +61 -66
- 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 +3 -3
- data/lib/wx/doc/gen/frame.rb +10 -24
- data/lib/wx/doc/gen/fs_file.rb +61 -21
- data/lib/wx/doc/gen/gauge.rb +5 -5
- 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 +8 -8
- 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 +3 -1
- 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 +416 -173
- 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 +46 -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 +6 -6
- data/lib/wx/doc/gen/html/html_help_controller.rb +79 -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 +11 -11
- data/lib/wx/doc/gen/html/html_printout.rb +1 -1
- data/lib/wx/doc/gen/html/html_window.rb +36 -32
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +5 -5
- 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 +24 -24
- data/lib/wx/doc/gen/list_ctrl.rb +61 -96
- 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 +12 -12
- data/lib/wx/doc/gen/media_ctrl.rb +17 -17
- 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 +88 -88
- data/lib/wx/doc/gen/message_dialog.rb +6 -6
- data/lib/wx/doc/gen/mini_frame.rb +4 -4
- 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 +9 -9
- 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 +6 -6
- 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 +32 -32
- data/lib/wx/doc/gen/pg/property_grid_event.rb +7 -7
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +43 -49
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +41 -44
- 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 +174 -14
- 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 +3 -3
- data/lib/wx/doc/gen/prt/preview_frame.rb +14 -1
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/print_data.rb +44 -44
- data/lib/wx/doc/gen/prt/printer.rb +23 -28
- data/lib/wx/doc/gen/query_layout_info_event.rb +4 -4
- data/lib/wx/doc/gen/radio_box.rb +13 -13
- data/lib/wx/doc/gen/radio_button.rb +7 -7
- 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 +8 -8
- 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 +437 -474
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +9 -9
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +13 -13
- 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 +18 -18
- 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 -5
- data/lib/wx/doc/gen/sash_layout_window.rb +10 -10
- data/lib/wx/doc/gen/sash_window.rb +7 -7
- data/lib/wx/doc/gen/scroll_bar.rb +6 -6
- data/lib/wx/doc/gen/scrolled_canvas.rb +12 -18
- data/lib/wx/doc/gen/scrolled_control.rb +12 -18
- data/lib/wx/doc/gen/scrolled_window.rb +12 -18
- data/lib/wx/doc/gen/search_ctrl.rb +7 -7
- 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 +4 -4
- data/lib/wx/doc/gen/spin_button.rb +3 -3
- 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 +18 -14
- data/lib/wx/doc/gen/static_bitmap.rb +6 -6
- data/lib/wx/doc/gen/static_box.rb +11 -11
- data/lib/wx/doc/gen/static_line.rb +5 -5
- data/lib/wx/doc/gen/static_text.rb +5 -5
- data/lib/wx/doc/gen/status_bar.rb +41 -7
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +148 -180
- 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 +15 -39
- 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 +6 -6
- data/lib/wx/doc/gen/tool_bar.rb +32 -39
- 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 +27 -97
- data/lib/wx/doc/gen/tree_ctrl.rb +22 -22
- 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 +12 -12
- 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 +3 -3
- data/lib/wx/doc/gen/variant.rb +22 -22
- data/lib/wx/doc/gen/window.rb +162 -127
- 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 +11 -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 +96 -7
- 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 +6 -3
- 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 +1794 -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_exit_exception.rb +36 -0
- data/tests/test_app_init_exception.rb +20 -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_book_controls.rb +29 -0
- 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_exceptions.rb +41 -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_sizer.rb +43 -0
- data/tests/test_std_controls.rb +81 -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 +86 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
data/lib/wx/doc/gen/icon.rb
CHANGED
@@ -49,7 +49,7 @@ module Wx
|
|
49
49
|
#
|
50
50
|
# @see Wx::Icon#load_file
|
51
51
|
# @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.
|
52
|
-
# @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::ICON_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the {Wx::icon.h} header for the value it takes for a specific port.
|
52
|
+
# @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::ICON_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the {Wx::icon.h} header for the value it takes for a specific port.
|
53
53
|
# @param desiredWidth [Integer] Specifies the desired width of the icon. This parameter only has an effect in Windows where icon resources can contain several icons of different sizes.
|
54
54
|
# @param desiredHeight [Integer] Specifies the desired height of the icon. This parameter only has an effect in Windows where icon resources can contain several icons of different sizes.
|
55
55
|
# @return [Wx::Icon]
|
@@ -65,7 +65,7 @@ module Wx
|
|
65
65
|
#
|
66
66
|
# Availability: only available for the wxMSW port. {Wx::msw}
|
67
67
|
# @param icon [WXHICON]
|
68
|
-
# @return [
|
68
|
+
# @return [Boolean]
|
69
69
|
def create_from_hicon(icon) end
|
70
70
|
|
71
71
|
# Copies bmp bitmap to this icon.
|
@@ -129,17 +129,17 @@ module Wx
|
|
129
129
|
alias_method :width, :get_width
|
130
130
|
|
131
131
|
# Returns true if icon data is present.
|
132
|
-
# @return [
|
132
|
+
# @return [Boolean]
|
133
133
|
def is_ok; end
|
134
134
|
alias_method :ok?, :is_ok
|
135
135
|
|
136
136
|
# Loads an icon from a file or resource.
|
137
137
|
# true if the operation succeeded, false otherwise.
|
138
138
|
# @param name [String] Either a filename or a Windows resource name. The meaning of name is determined by the type parameter.
|
139
|
-
# @param type [BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description. Note that the {Wx::ICON_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the {Wx::icon.h} header for the value it takes for a specific port.
|
139
|
+
# @param type [Wx::BitmapType] One of the {Wx::BitmapType} values; see the note in the class detailed description. Note that the {Wx::ICON_DEFAULT_TYPE} constant has different value under different wxWidgets ports. See the {Wx::icon.h} header for the value it takes for a specific port.
|
140
140
|
# @param desiredWidth [Integer] Specifies the desired width of the icon. This parameter only has an effect in Windows where icon resources can contain several icons of different sizes.
|
141
141
|
# @param desiredHeight [Integer] Specifies the desired height of the icon. This parameter only has an effect in Windows where icon resources can contain several icons of different sizes.
|
142
|
-
# @return [
|
142
|
+
# @return [Boolean]
|
143
143
|
def load_file(name, type=Wx::ICON_DEFAULT_TYPE, desiredWidth=-1, desiredHeight=-1) end
|
144
144
|
|
145
145
|
end # Icon
|
@@ -173,13 +173,13 @@ module Wx
|
|
173
173
|
# @overload initialize(file, type=Wx::BitmapType::BITMAP_TYPE_ANY)
|
174
174
|
# Initializes the bundle with the icon(s) found in the file.
|
175
175
|
# @param file [String]
|
176
|
-
# @param type [BitmapType]
|
176
|
+
# @param type [Wx::BitmapType]
|
177
177
|
# @return [Wx::IconBundle]
|
178
178
|
# @overload initialize(stream, type=Wx::BitmapType::BITMAP_TYPE_ANY)
|
179
179
|
# Initializes the bundle with the icon(s) found in the stream.
|
180
180
|
# Notice that the stream must be seekable, at least if it contains more than one icon. The stream pointer is positioned after the last icon read from the stream when this function returns.
|
181
181
|
# @param stream [IO,Wx::InputStream]
|
182
|
-
# @param type [BitmapType]
|
182
|
+
# @param type [Wx::BitmapType]
|
183
183
|
# @return [Wx::IconBundle]
|
184
184
|
# @overload initialize(icon)
|
185
185
|
# Initializes the bundle with a single icon.
|
@@ -204,13 +204,13 @@ module Wx
|
|
204
204
|
# @overload add_icon(file, type=Wx::BitmapType::BITMAP_TYPE_ANY)
|
205
205
|
# Adds all the icons contained in the file to the bundle; if the collection already contains icons with the same width and height, they are replaced by the new ones.
|
206
206
|
# @param file [String]
|
207
|
-
# @param type [BitmapType]
|
207
|
+
# @param type [Wx::BitmapType]
|
208
208
|
# @return [void]
|
209
209
|
# @overload add_icon(stream, type=Wx::BitmapType::BITMAP_TYPE_ANY)
|
210
210
|
# Adds all the icons contained in the stream to the bundle; if the collection already contains icons with the same width and height, they are replaced by the new ones.
|
211
211
|
# Notice that, as well as in the constructor loading the icon bundle from stream, the stream must be seekable, at least if more than one icon is to be loaded from it.
|
212
212
|
# @param stream [IO,Wx::InputStream]
|
213
|
-
# @param type [BitmapType]
|
213
|
+
# @param type [Wx::BitmapType]
|
214
214
|
# @return [void]
|
215
215
|
# @overload add_icon(resourceName, module_)
|
216
216
|
# Loads all sizes of a group icon with resourceName stored as an MS Windows resource in module.
|
@@ -263,7 +263,7 @@ module Wx
|
|
263
263
|
alias_method :icon_by_index, :get_icon_by_index
|
264
264
|
|
265
265
|
# Returns true if the bundle doesn't contain any icons, false otherwise (in which case a call to {Wx::IconBundle#get_icon} with default parameter should return a valid icon).
|
266
|
-
# @return [
|
266
|
+
# @return [Boolean]
|
267
267
|
def is_empty; end
|
268
268
|
alias_method :empty?, :is_empty
|
269
269
|
|
data/lib/wx/doc/gen/image.rb
CHANGED
@@ -295,13 +295,13 @@ module Wx
|
|
295
295
|
# true if the call succeeded, false otherwise.
|
296
296
|
# @param width [Integer]
|
297
297
|
# @param height [Integer]
|
298
|
-
# @param clear [
|
299
|
-
# @return [
|
298
|
+
# @param clear [Boolean]
|
299
|
+
# @return [Boolean]
|
300
300
|
# @overload create(sz, clear=true)
|
301
301
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
302
302
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
303
|
-
# @param clear [
|
304
|
-
# @return [
|
303
|
+
# @param clear [Boolean]
|
304
|
+
# @return [Boolean]
|
305
305
|
# @overload create(width, height, data)
|
306
306
|
# Creates a fresh image.
|
307
307
|
# See wxImage::wxImage(int,int,unsigned char*,bool) for more info.
|
@@ -309,12 +309,12 @@ module Wx
|
|
309
309
|
# @param width [Integer]
|
310
310
|
# @param height [Integer]
|
311
311
|
# @param data [String]
|
312
|
-
# @return [
|
312
|
+
# @return [Boolean]
|
313
313
|
# @overload create(sz, data)
|
314
314
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
315
315
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
316
316
|
# @param data [String]
|
317
|
-
# @return [
|
317
|
+
# @return [Boolean]
|
318
318
|
# @overload create(width, height, data, alpha)
|
319
319
|
# Creates a fresh image.
|
320
320
|
# See wxImage::wxImage(int,int,unsigned char*,unsigned char*,bool) for more info.
|
@@ -323,13 +323,13 @@ module Wx
|
|
323
323
|
# @param height [Integer]
|
324
324
|
# @param data [String]
|
325
325
|
# @param alpha [String]
|
326
|
-
# @return [
|
326
|
+
# @return [Boolean]
|
327
327
|
# @overload create(sz, data, alpha)
|
328
328
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
329
329
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
330
330
|
# @param data [String]
|
331
331
|
# @param alpha [String]
|
332
|
-
# @return [
|
332
|
+
# @return [Boolean]
|
333
333
|
def create(*args) end
|
334
334
|
|
335
335
|
# Initialize the image data with zeroes (the default) or with the byte value given as value.
|
@@ -372,7 +372,7 @@ module Wx
|
|
372
372
|
|
373
373
|
# Returns a mirrored copy of the image.
|
374
374
|
# The parameter horizontally indicates the orientation.
|
375
|
-
# @param horizontally [
|
375
|
+
# @param horizontally [Boolean]
|
376
376
|
# @return [Wx::Image]
|
377
377
|
def mirror(horizontally=true) end
|
378
378
|
|
@@ -381,7 +381,7 @@ module Wx
|
|
381
381
|
# @param image [Wx::Image] The image containing the data to copy, must be valid.
|
382
382
|
# @param x [Integer] The horizontal position of the position to copy the data to.
|
383
383
|
# @param y [Integer] The vertical position of the position to copy the data to.
|
384
|
-
# @param alphaBlend [ImageAlphaBlendMode] This parameter (new in wx 3.1.5) determines whether the alpha values of the original image replace (default) or are composed with the alpha channel of this image. Notice that alpha blending overrides the mask handling.
|
384
|
+
# @param alphaBlend [Wx::ImageAlphaBlendMode] This parameter (new in wx 3.1.5) determines whether the alpha values of the original image replace (default) or are composed with the alpha channel of this image. Notice that alpha blending overrides the mask handling.
|
385
385
|
# @return [void]
|
386
386
|
def paste(image, x, y, alphaBlend=Wx::ImageAlphaBlendMode::IMAGE_ALPHA_BLEND_OVER) end
|
387
387
|
|
@@ -400,7 +400,7 @@ module Wx
|
|
400
400
|
# @see Wx::Image#scale
|
401
401
|
# @param width [Integer]
|
402
402
|
# @param height [Integer]
|
403
|
-
# @param quality [ImageResizeQuality]
|
403
|
+
# @param quality [Wx::ImageResizeQuality]
|
404
404
|
# @return [Wx::Image]
|
405
405
|
def rescale(width, height, quality=Wx::ImageResizeQuality::IMAGE_QUALITY_NORMAL) end
|
406
406
|
|
@@ -423,13 +423,13 @@ module Wx
|
|
423
423
|
# Returns the rotated image, leaving this image intact.
|
424
424
|
# @param angle [Float]
|
425
425
|
# @param rotationCentre [Array(Integer, Integer), Wx::Point]
|
426
|
-
# @param interpolating [
|
426
|
+
# @param interpolating [Boolean]
|
427
427
|
# @param offsetAfterRotation [Wx::Point]
|
428
428
|
# @return [Wx::Image]
|
429
429
|
def rotate(angle, rotationCentre, interpolating=true, offsetAfterRotation=nil) end
|
430
430
|
|
431
431
|
# Returns a copy of the image rotated 90 degrees in the direction indicated by clockwise.
|
432
|
-
# @param clockwise [
|
432
|
+
# @param clockwise [Boolean]
|
433
433
|
# @return [Wx::Image]
|
434
434
|
def rotate90(clockwise=true) end
|
435
435
|
|
@@ -487,7 +487,7 @@ module Wx
|
|
487
487
|
# @see Wx::Image#rescale
|
488
488
|
# @param width [Integer]
|
489
489
|
# @param height [Integer]
|
490
|
-
# @param quality [ImageResizeQuality]
|
490
|
+
# @param quality [Wx::ImageResizeQuality]
|
491
491
|
# @return [Wx::Image]
|
492
492
|
def scale(width, height, quality=Wx::ImageResizeQuality::IMAGE_QUALITY_NORMAL) end
|
493
493
|
|
@@ -510,7 +510,7 @@ module Wx
|
|
510
510
|
# The mask colour is chosen automatically using {Wx::Image#find_first_unused_colour}, see the overload below if this is not appropriate.
|
511
511
|
# Returns true on success, false on error.
|
512
512
|
# @param threshold [Integer]
|
513
|
-
# @return [
|
513
|
+
# @return [Boolean]
|
514
514
|
# @overload convert_alpha_to_mask(mr, mg, mb, threshold=Wx::IMAGE_ALPHA_THRESHOLD)
|
515
515
|
# If the image has alpha channel, this method converts it to mask using the specified colour as the mask colour.
|
516
516
|
# If the image has an alpha channel, all pixels with alpha value less than threshold are replaced with the mask colour and the alpha channel is removed. Otherwise nothing is done.
|
@@ -520,7 +520,7 @@ module Wx
|
|
520
520
|
# @param mg [Integer] The green component of the mask colour.
|
521
521
|
# @param mb [Integer] The blue component of the mask colour.
|
522
522
|
# @param threshold [Integer] Pixels with alpha channel values below the given threshold are considered to be transparent, i.e. the corresponding mask pixels are set. Pixels with the alpha values above the threshold are considered to be opaque.
|
523
|
-
# @return [
|
523
|
+
# @return [Boolean]
|
524
524
|
def convert_alpha_to_mask(*args) end
|
525
525
|
|
526
526
|
# @overload convert_to_greyscale(weight_r, weight_g, weight_b)
|
@@ -568,7 +568,7 @@ module Wx
|
|
568
568
|
# @param startR [Integer]
|
569
569
|
# @param startG [Integer]
|
570
570
|
# @param startB [Integer]
|
571
|
-
# @return [Array(
|
571
|
+
# @return [Array(Boolean,Integer,Integer,Integer)]
|
572
572
|
def find_first_unused_colour(startR=1, startG=0, startB=0) end
|
573
573
|
|
574
574
|
# Returns the red intensity at the given coordinate.
|
@@ -704,7 +704,7 @@ module Wx
|
|
704
704
|
|
705
705
|
# Get the current mask colour or find a suitable unused colour that could be used as a mask colour.
|
706
706
|
# Returns true if the image currently has a mask.
|
707
|
-
# @return [Array(
|
707
|
+
# @return [Array(Boolean,Integer,Integer,Integer)]
|
708
708
|
def get_or_find_mask_colour; end
|
709
709
|
alias_method :or_find_mask_colour, :get_or_find_mask_colour
|
710
710
|
|
@@ -722,7 +722,7 @@ module Wx
|
|
722
722
|
alias_method :sub_image, :get_sub_image
|
723
723
|
|
724
724
|
# Gets the type of image found by {Wx::Image#load_file} or specified with {Wx::Image#save_file}.
|
725
|
-
# @return [BitmapType]
|
725
|
+
# @return [Wx::BitmapType]
|
726
726
|
def get_type; end
|
727
727
|
alias_method :type, :get_type
|
728
728
|
|
@@ -730,12 +730,12 @@ module Wx
|
|
730
730
|
#
|
731
731
|
# @see Wx::Image#get_alpha
|
732
732
|
# @see Wx::Image#set_alpha
|
733
|
-
# @return [
|
733
|
+
# @return [Boolean]
|
734
734
|
def has_alpha; end
|
735
735
|
alias_method :has_alpha?, :has_alpha
|
736
736
|
|
737
737
|
# Returns true if there is a mask active, false otherwise.
|
738
|
-
# @return [
|
738
|
+
# @return [Boolean]
|
739
739
|
def has_mask; end
|
740
740
|
alias_method :has_mask?, :has_mask
|
741
741
|
|
@@ -746,12 +746,12 @@ module Wx
|
|
746
746
|
# @see Wx::Image#get_option
|
747
747
|
# @see Wx::Image#get_option_int
|
748
748
|
# @param name [String]
|
749
|
-
# @return [
|
749
|
+
# @return [Boolean]
|
750
750
|
def has_option(name) end
|
751
751
|
alias_method :has_option?, :has_option
|
752
752
|
|
753
753
|
# Returns true if image data is present.
|
754
|
-
# @return [
|
754
|
+
# @return [Boolean]
|
755
755
|
def is_ok; end
|
756
756
|
alias_method :ok?, :is_ok
|
757
757
|
|
@@ -759,7 +759,7 @@ module Wx
|
|
759
759
|
# @param x [Integer]
|
760
760
|
# @param y [Integer]
|
761
761
|
# @param threshold [Integer]
|
762
|
-
# @return [
|
762
|
+
# @return [Boolean]
|
763
763
|
def is_transparent(x, y, threshold=Wx::IMAGE_ALPHA_THRESHOLD) end
|
764
764
|
alias_method :transparent?, :is_transparent
|
765
765
|
|
@@ -778,7 +778,7 @@ module Wx
|
|
778
778
|
# ```
|
779
779
|
# @see Wx::Image#save_file
|
780
780
|
# @param stream [IO,Wx::InputStream] Opened input stream from which to load the image. Currently, the stream must support seeking.
|
781
|
-
# @param type [BitmapType] May be one of the following:
|
781
|
+
# @param type [Wx::BitmapType] May be one of the following:
|
782
782
|
#
|
783
783
|
# - {Wx::BitmapType::BITMAP_TYPE_BMP}: Load a Windows bitmap file.
|
784
784
|
#
|
@@ -806,29 +806,29 @@ module Wx
|
|
806
806
|
#
|
807
807
|
# - {Wx::BitmapType::BITMAP_TYPE_ANY}: Will try to autodetect the format.
|
808
808
|
# @param index [Integer] Index of the image to load in the case that the image file contains multiple images. This is only used by GIF, ICO and TIFF handlers. The default value (-1) means "choose the default image" and is interpreted as the first image (index=0) by the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.
|
809
|
-
# @return [
|
809
|
+
# @return [Boolean]
|
810
810
|
# @overload load_stream(stream, mimetype, index=-1)
|
811
811
|
# Loads an image from an input stream.
|
812
812
|
# @param stream [IO,Wx::InputStream] Opened input stream from which to load the image. Currently, the stream must support seeking.
|
813
813
|
# @param mimetype [String] MIME type string (for example 'image/jpeg')
|
814
814
|
# @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
|
815
|
-
# @return [
|
815
|
+
# @return [Boolean]
|
816
816
|
def load_stream(*args) end
|
817
817
|
|
818
818
|
# @overload load_file(name, type=Wx::BitmapType::BITMAP_TYPE_ANY, index=-1)
|
819
819
|
# Loads an image from a file.
|
820
820
|
# If no handler type is provided, the library will try to autodetect the format.
|
821
821
|
# @param name [String] Name of the file from which to load the image.
|
822
|
-
# @param type [BitmapType] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
|
822
|
+
# @param type [Wx::BitmapType] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
|
823
823
|
# @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
|
824
|
-
# @return [
|
824
|
+
# @return [Boolean]
|
825
825
|
# @overload load_file(name, mimetype, index=-1)
|
826
826
|
# Loads an image from a file.
|
827
827
|
# If no handler type is provided, the library will try to autodetect the format.
|
828
828
|
# @param name [String] Name of the file from which to load the image.
|
829
829
|
# @param mimetype [String] MIME type string (for example 'image/jpeg')
|
830
830
|
# @param index [Integer] See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload.
|
831
|
-
# @return [
|
831
|
+
# @return [Boolean]
|
832
832
|
def load_file(*args) end
|
833
833
|
|
834
834
|
# @overload write(stream, mimetype)
|
@@ -845,18 +845,18 @@ module Wx
|
|
845
845
|
# @see Wx::Image#load_file
|
846
846
|
# @param stream [IO,Wx::OutputStream] Opened output stream to save the image to.
|
847
847
|
# @param mimetype [String] MIME type.
|
848
|
-
# @return [
|
848
|
+
# @return [Boolean]
|
849
849
|
# @overload write(stream, type)
|
850
850
|
# Saves an image in the given stream.
|
851
851
|
# @param stream [IO,Wx::OutputStream] Opened output stream to save the image to.
|
852
|
-
# @param type [BitmapType] MIME type.
|
853
|
-
# @return [
|
852
|
+
# @param type [Wx::BitmapType] MIME type.
|
853
|
+
# @return [Boolean]
|
854
854
|
def write(*args) end
|
855
855
|
|
856
856
|
# @overload save_file(name, type)
|
857
857
|
# Saves an image in the named file.
|
858
858
|
# @param name [String] Name of the file to save the image to.
|
859
|
-
# @param type [BitmapType] Currently these types can be used:
|
859
|
+
# @param type [Wx::BitmapType] Currently these types can be used:
|
860
860
|
#
|
861
861
|
# - {Wx::BitmapType::BITMAP_TYPE_BMP}: Save a BMP image file.
|
862
862
|
#
|
@@ -875,17 +875,17 @@ module Wx
|
|
875
875
|
# - {Wx::BitmapType::BITMAP_TYPE_ICO}: Save a Windows icon file (ICO). The size may be up to 255 wide by 127 high. A single image is saved in 8 colors at the size supplied.
|
876
876
|
#
|
877
877
|
# - {Wx::BitmapType::BITMAP_TYPE_CUR}: Save a Windows cursor file (CUR).
|
878
|
-
# @return [
|
878
|
+
# @return [Boolean]
|
879
879
|
# @overload save_file(name, mimetype)
|
880
880
|
# Saves an image in the named file.
|
881
881
|
# @param name [String] Name of the file to save the image to.
|
882
882
|
# @param mimetype [String] MIME type.
|
883
|
-
# @return [
|
883
|
+
# @return [Boolean]
|
884
884
|
# @overload save_file(name)
|
885
885
|
# Saves an image in the named file.
|
886
886
|
# File type is determined from the extension of the file name. Note that this function may fail if the extension is not recognized! You can use one of the forms above to save images to files with non-standard extensions.
|
887
887
|
# @param name [String] Name of the file to save the image to.
|
888
|
-
# @return [
|
888
|
+
# @return [Boolean]
|
889
889
|
def save_file(*args) end
|
890
890
|
|
891
891
|
# This function is similar to {Wx::Image#set_data} and has similar restrictions.
|
@@ -936,7 +936,7 @@ module Wx
|
|
936
936
|
|
937
937
|
# Specifies whether there is a mask or not.
|
938
938
|
# The area of the mask is determined by the current mask colour.
|
939
|
-
# @param hasMask [
|
939
|
+
# @param hasMask [Boolean]
|
940
940
|
# @return [void]
|
941
941
|
def set_mask(hasMask=true) end
|
942
942
|
alias_method :mask=, :set_mask
|
@@ -959,7 +959,7 @@ module Wx
|
|
959
959
|
# @param mr [Integer]
|
960
960
|
# @param mg [Integer]
|
961
961
|
# @param mb [Integer]
|
962
|
-
# @return [
|
962
|
+
# @return [Boolean]
|
963
963
|
def set_mask_from_image(mask, mr, mg, mb) end
|
964
964
|
|
965
965
|
# @overload set_option(name, value)
|
@@ -1008,7 +1008,7 @@ module Wx
|
|
1008
1008
|
# Set the type of image returned by {Wx::Image#get_type}.
|
1009
1009
|
# This method is mostly used internally by the library but can also be called from the user code if the image was created from data in the given bitmap format without using {Wx::Image#load_file} (which would set the type correctly automatically).
|
1010
1010
|
# Notice that the image must be created before this function is called.
|
1011
|
-
# @param type [BitmapType] One of bitmap type constants, {Wx::BitmapType::BITMAP_TYPE_INVALID} is a valid value for it and can be used to reset the bitmap type to default but {Wx::BITMAP_TYPE_MAX} is not allowed here.
|
1011
|
+
# @param type [Wx::BitmapType] One of bitmap type constants, {Wx::BitmapType::BITMAP_TYPE_INVALID} is a valid value for it and can be used to reset the bitmap type to default but {Wx::BITMAP_TYPE_MAX} is not allowed here.
|
1012
1012
|
# @return [void]
|
1013
1013
|
def set_type(type) end
|
1014
1014
|
alias_method :type=, :set_type
|
@@ -1056,7 +1056,7 @@ module Wx
|
|
1056
1056
|
#
|
1057
1057
|
# Number of available images. For most image handlers, this is 1 (exceptions are TIFF and ICO formats as well as animated GIFs for which this function returns the number of frames in the animation).
|
1058
1058
|
# @param filename [String]
|
1059
|
-
# @param type [BitmapType]
|
1059
|
+
# @param type [Wx::BitmapType]
|
1060
1060
|
# @return [Integer]
|
1061
1061
|
def self.get_image_count(filename, type=Wx::BitmapType::BITMAP_TYPE_ANY) end
|
1062
1062
|
|
@@ -1068,12 +1068,12 @@ module Wx
|
|
1068
1068
|
# Does not create an alpha channel.
|
1069
1069
|
# @param width [Integer] Specifies the width of the image.
|
1070
1070
|
# @param height [Integer] Specifies the height of the image.
|
1071
|
-
# @param clear [
|
1071
|
+
# @param clear [Boolean] If true, initialize the image to black.
|
1072
1072
|
# @return [Wx::Image]
|
1073
1073
|
# @overload initialize(sz, clear=true)
|
1074
1074
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
1075
1075
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
1076
|
-
# @param clear [
|
1076
|
+
# @param clear [Boolean]
|
1077
1077
|
# @return [Wx::Image]
|
1078
1078
|
# @overload initialize(width, height, data)
|
1079
1079
|
# Creates an image from data in memory.
|
@@ -1101,11 +1101,6 @@ module Wx
|
|
1101
1101
|
# @param data [String]
|
1102
1102
|
# @param alpha [String]
|
1103
1103
|
# @return [Wx::Image]
|
1104
|
-
# @overload initialize(xpmData)
|
1105
|
-
# Creates an image from XPM data.
|
1106
|
-
# This constructor has become explicit in wxWidgets 3.1.6.
|
1107
|
-
# @param xpmData [char] A pointer to XPM image data.
|
1108
|
-
# @return [Wx::Image]
|
1109
1104
|
# @overload initialize(name, type=Wx::BitmapType::BITMAP_TYPE_ANY, index=-1)
|
1110
1105
|
# Creates an image from a file.
|
1111
1106
|
# Depending on how wxWidgets has been configured and by which handlers have been loaded, not all formats may be available. Any handler other than BMP must be previously initialized with {Wx::Image.add_handler} or {init_all_image_handlers}.
|
@@ -1117,7 +1112,7 @@ module Wx
|
|
1117
1112
|
# ```
|
1118
1113
|
# @see Wx::Image#load_file
|
1119
1114
|
# @param name [String] Name of the file from which to load the image.
|
1120
|
-
# @param type [BitmapType] May be one of the following:
|
1115
|
+
# @param type [Wx::BitmapType] May be one of the following:
|
1121
1116
|
#
|
1122
1117
|
# - {Wx::BitmapType::BITMAP_TYPE_BMP}: Load a Windows bitmap file.
|
1123
1118
|
#
|
@@ -1164,12 +1159,12 @@ module Wx
|
|
1164
1159
|
# Returns true if at least one of the available image handlers can read the file with the given name.
|
1165
1160
|
# See Wx::ImageHandler::CanRead for more info.
|
1166
1161
|
# @param filename [String]
|
1167
|
-
# @return [
|
1162
|
+
# @return [Boolean]
|
1168
1163
|
# @overload self.can_read(stream)
|
1169
1164
|
# Returns true if at least one of the available image handlers can read the data in the given stream.
|
1170
1165
|
# See Wx::ImageHandler::CanRead for more info.
|
1171
1166
|
# @param stream [IO,Wx::InputStream]
|
1172
|
-
# @return [
|
1167
|
+
# @return [Boolean]
|
1173
1168
|
def self.can_read(*args) end
|
1174
1169
|
|
1175
1170
|
# Returns the currently used default file load flags.
|
@@ -52,7 +52,7 @@ module Wx
|
|
52
52
|
# @see Wx::ImageList#create
|
53
53
|
# @param width [Integer] Width of the images in the list.
|
54
54
|
# @param height [Integer] Height of the images in the list.
|
55
|
-
# @param mask [
|
55
|
+
# @param mask [Boolean] If true, all images will have masks, with the mask being created from the light grey pixels if not specified otherwise, i.e. if the image doesn't have neither alpha channel nor mask and no mask is explicitly specified when adding it. Note that if an image does have alpha channel or mask, it will always be used, whether this parameter is true or false.
|
56
56
|
# @param initialCount [Integer] The initial size of the list.
|
57
57
|
# @return [Wx::ImageList]
|
58
58
|
def initialize(*args) end
|
@@ -85,13 +85,13 @@ module Wx
|
|
85
85
|
def add(*args) end
|
86
86
|
|
87
87
|
# Initializes the list.
|
88
|
-
# See {Wx::ImageList#
|
88
|
+
# See {Wx::ImageList#initialize} for details.
|
89
89
|
# This function can be called only once after creating the object using its default ctor or after calling {Wx::ImageList#destroy}.
|
90
90
|
# @param width [Integer]
|
91
91
|
# @param height [Integer]
|
92
|
-
# @param mask [
|
92
|
+
# @param mask [Boolean]
|
93
93
|
# @param initialCount [Integer]
|
94
|
-
# @return [
|
94
|
+
# @return [Boolean]
|
95
95
|
def create(width, height, mask=true, initialCount=1) end
|
96
96
|
|
97
97
|
# Destroys the current list.
|
@@ -111,8 +111,8 @@ module Wx
|
|
111
111
|
# - {Wx::IMAGELIST_DRAW_TRANSPARENT}: Draw the image with transparency.
|
112
112
|
# - {Wx::IMAGELIST_DRAW_SELECTED}: Draw the image in selected state.
|
113
113
|
# - {Wx::IMAGELIST_DRAW_FOCUSED}: Draw the image in a focused state.
|
114
|
-
# @param solidBackground [
|
115
|
-
# @return [
|
114
|
+
# @param solidBackground [Boolean] For optimisation - drawing can be faster if the function is told that the background is solid.
|
115
|
+
# @return [Boolean]
|
116
116
|
def draw(index, dc, x, y, flags=Wx::IMAGELIST_DRAW_NORMAL, solidBackground=false) end
|
117
117
|
|
118
118
|
# Returns the bitmap corresponding to the given index.
|
@@ -132,29 +132,19 @@ module Wx
|
|
132
132
|
def get_image_count; end
|
133
133
|
alias_method :image_count, :get_image_count
|
134
134
|
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
|
139
|
-
# true if the function succeeded, false if it failed (for example, if the image list was not yet initialized).
|
140
|
-
# @param index [Integer] currently unused, should be 0
|
141
|
-
# @param width [int] receives the width of the images in the list
|
142
|
-
# @param height [int] receives the height of the images in the list
|
143
|
-
# @return [true,false]
|
144
|
-
# @overload get_size()
|
145
|
-
# Retrieves the size of the image list as passed to {Wx::ImageList#create}.
|
146
|
-
# the size of the image list, which may be zero if the image list was not yet initialised.
|
147
|
-
# @return [Wx::Size]
|
148
|
-
def get_size(*args) end
|
135
|
+
# Retrieves the size of the image list as passed to {Wx::ImageList#create}.
|
136
|
+
# the size of the image list, which may be zero if the image list was not yet initialised.
|
137
|
+
# @return [Wx::Size]
|
138
|
+
def get_size; end
|
149
139
|
alias_method :size, :get_size
|
150
140
|
|
151
141
|
# Removes the image at the given position.
|
152
142
|
# @param index [Integer]
|
153
|
-
# @return [
|
143
|
+
# @return [Boolean]
|
154
144
|
def remove(index) end
|
155
145
|
|
156
146
|
# Removes all the images in the list.
|
157
|
-
# @return [
|
147
|
+
# @return [Boolean]
|
158
148
|
def remove_all; end
|
159
149
|
|
160
150
|
# @overload replace(index, bitmap, mask=Wx::NULL_BITMAP)
|
@@ -165,7 +155,7 @@ module Wx
|
|
165
155
|
# @param index [Integer] The index of the bitmap to be replaced.
|
166
156
|
# @param bitmap [Wx::Bitmap] Bitmap representing the opaque areas of the image.
|
167
157
|
# @param mask [Wx::Bitmap] Monochrome mask bitmap, representing the transparent areas of the image.
|
168
|
-
# @return [
|
158
|
+
# @return [Boolean]
|
169
159
|
# @overload replace(index, icon)
|
170
160
|
# Replaces the existing image with the new image.
|
171
161
|
# true if the replacement was successful, false otherwise.
|
@@ -175,7 +165,7 @@ module Wx
|
|
175
165
|
# Availability: only available for the wxMSW, wxOSX/Cocoa ports. {Wx::msw},{Wx::osx}
|
176
166
|
# @param index [Integer] The index of the bitmap to be replaced.
|
177
167
|
# @param icon [Wx::Icon] Icon to use as the image.
|
178
|
-
# @return [
|
168
|
+
# @return [Boolean]
|
179
169
|
def replace(*args) end
|
180
170
|
|
181
171
|
end # ImageList
|