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
@@ -38,7 +38,7 @@ module Wx::RBN
|
|
38
38
|
# @param label [String]
|
39
39
|
# @param icon [Wx::Bitmap]
|
40
40
|
# @param style [Integer]
|
41
|
-
# @return [
|
41
|
+
# @return [Boolean]
|
42
42
|
def create(parent, id=Wx::StandardID::ID_ANY, label=(''), icon=Wx::NULL_BITMAP, style=0) end
|
43
43
|
|
44
44
|
# Set the art provider to be used.
|
@@ -73,13 +73,13 @@ module Wx::RBN
|
|
73
73
|
# Dismiss the current externally expanded panel, if there is one.
|
74
74
|
# When a ribbon panel automatically minimises, it can be externally expanded into a floating window. When the user clicks a button in such a panel, the panel should generally re-minimise. Event handlers for buttons on ribbon panels should call this method to achieve this behaviour.
|
75
75
|
# true if a panel was minimised, false otherwise.
|
76
|
-
# @return [
|
76
|
+
# @return [Boolean]
|
77
77
|
def dismiss_expanded_panel; end
|
78
78
|
|
79
79
|
# Perform a full re-layout of all panels on the page.
|
80
80
|
# Should be called after panels are added to the page, or the sizing behaviour of a panel on the page changes (i.e. due to children being added to it). Usually called automatically when {Wx::RBN::RibbonBar#realize} is called.
|
81
81
|
# Will invoke {Wx::RBN::RibbonPanel#realize} for all child panels.
|
82
|
-
# @return [
|
82
|
+
# @return [Boolean]
|
83
83
|
def realize; end
|
84
84
|
|
85
85
|
# Scroll the page by some amount up / down / left / right.
|
@@ -91,7 +91,7 @@ module Wx::RBN
|
|
91
91
|
#
|
92
92
|
# @see Wx::RBN::RibbonPage#scroll_sections
|
93
93
|
# @param lines [Integer]
|
94
|
-
# @return [
|
94
|
+
# @return [Boolean]
|
95
95
|
def scroll_lines(lines) end
|
96
96
|
|
97
97
|
# Scroll the page by a set number of pixels up / down / left / right.
|
@@ -103,7 +103,7 @@ module Wx::RBN
|
|
103
103
|
#
|
104
104
|
# @see Wx::RBN::RibbonPage#scroll_sections
|
105
105
|
# @param pixels [Integer]
|
106
|
-
# @return [
|
106
|
+
# @return [Boolean]
|
107
107
|
def scroll_pixels(pixels) end
|
108
108
|
|
109
109
|
# Scroll the page by an entire child section.
|
@@ -113,13 +113,13 @@ module Wx::RBN
|
|
113
113
|
#
|
114
114
|
# @see Wx::RBN::RibbonPage#scroll_sections
|
115
115
|
# @param sections [Integer]
|
116
|
-
# @return [
|
116
|
+
# @return [Boolean]
|
117
117
|
def scroll_sections(sections) end
|
118
118
|
|
119
119
|
# Get the direction in which ribbon panels are stacked within the page.
|
120
120
|
# This is controlled by the style of the containing {Wx::RBN::RibbonBar}, meaning that all pages within a bar will have the same major axis. As well as being the direction in which panels are stacked, it is also the axis in which scrolling will occur (when required).
|
121
121
|
# {Wx::Orientation::HORIZONTAL} or {Wx::Orientation::VERTICAL} (never {Wx::Orientation::BOTH}).
|
122
|
-
# @return [Orientation]
|
122
|
+
# @return [Wx::Orientation]
|
123
123
|
def get_major_axis; end
|
124
124
|
alias_method :major_axis, :get_major_axis
|
125
125
|
|
@@ -139,49 +139,45 @@ module Wx::RBN
|
|
139
139
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
140
140
|
# @param size [Array(Integer, Integer), Wx::Size]
|
141
141
|
# @param style [Integer]
|
142
|
-
# @return [
|
142
|
+
# @return [Boolean]
|
143
143
|
def create(parent, id=Wx::StandardID::ID_ANY, label=(''), icon=Wx::NULL_BITMAP, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::RBN::RibbonPanelOption::RIBBON_PANEL_DEFAULT_STYLE) end
|
144
144
|
|
145
|
-
# @
|
146
|
-
|
147
|
-
# @return [Wx::Bitmap]
|
148
|
-
# @overload get_minimised_icon()
|
149
|
-
# @return [Wx::Bitmap]
|
150
|
-
def get_minimised_icon(*args) end
|
145
|
+
# @return [Wx::Bitmap]
|
146
|
+
def get_minimised_icon; end
|
151
147
|
alias_method :minimised_icon, :get_minimised_icon
|
152
148
|
|
153
149
|
# Test if the panel has an extension button.
|
154
150
|
# Such button is shown in the top right corner of the panel if {Wx::RBN::RibbonPanelOption::RIBBON_PANEL_EXT_BUTTON} style is used for it.
|
155
151
|
#
|
156
152
|
# true if the panel and its {Wx::RBN::RibbonBar} allow it in their styles.
|
157
|
-
# @return [
|
153
|
+
# @return [Boolean]
|
158
154
|
def has_ext_button; end
|
159
155
|
alias_method :has_ext_button?, :has_ext_button
|
160
156
|
|
161
157
|
# @overload is_minimised()
|
162
158
|
# Query if the panel is currently minimised.
|
163
|
-
# @return [
|
159
|
+
# @return [Boolean]
|
164
160
|
# @overload is_minimised(at_size)
|
165
161
|
# Query if the panel would be minimised at a given size.
|
166
162
|
# @param at_size [Wx::Size]
|
167
|
-
# @return [
|
163
|
+
# @return [Boolean]
|
168
164
|
def is_minimised(*args) end
|
169
165
|
alias_method :minimised?, :is_minimised
|
170
166
|
|
171
167
|
# Query is the mouse is currently hovered over the panel.
|
172
168
|
# true if the cursor is within the bounds of the panel (i.e. hovered over the panel or one of its children), false otherwise.
|
173
|
-
# @return [
|
169
|
+
# @return [Boolean]
|
174
170
|
def is_hovered; end
|
175
171
|
alias_method :hovered?, :is_hovered
|
176
172
|
|
177
173
|
# Query if the mouse is currently hovered over the extension button.
|
178
174
|
# Extension button is only shown for panels with {Wx::RBN::RibbonPanelOption::RIBBON_PANEL_EXT_BUTTON} style.
|
179
|
-
# @return [
|
175
|
+
# @return [Boolean]
|
180
176
|
def is_ext_button_hovered; end
|
181
177
|
alias_method :ext_button_hovered?, :is_ext_button_hovered
|
182
178
|
|
183
179
|
# Query if the panel can automatically minimise itself at small sizes.
|
184
|
-
# @return [
|
180
|
+
# @return [Boolean]
|
185
181
|
def can_auto_minimise; end
|
186
182
|
alias_method :can_auto_minimise?, :can_auto_minimise
|
187
183
|
|
@@ -191,7 +187,7 @@ module Wx::RBN
|
|
191
187
|
# @see Wx::RBN::RibbonPanel#hide_expanded
|
192
188
|
#
|
193
189
|
# @see Wx::RBN::RibbonPanel#get_expanded_panel
|
194
|
-
# @return [
|
190
|
+
# @return [Boolean]
|
195
191
|
def show_expanded; end
|
196
192
|
|
197
193
|
# Hide the panel's external expansion.
|
@@ -199,7 +195,7 @@ module Wx::RBN
|
|
199
195
|
# @see Wx::RBN::RibbonPanel#hide_expanded
|
200
196
|
#
|
201
197
|
# @see Wx::RBN::RibbonPanel#get_expanded_panel
|
202
|
-
# @return [
|
198
|
+
# @return [Boolean]
|
203
199
|
def hide_expanded; end
|
204
200
|
|
205
201
|
# Set the art provider to be used.
|
@@ -211,7 +207,7 @@ module Wx::RBN
|
|
211
207
|
alias_method :art_provider=, :set_art_provider
|
212
208
|
|
213
209
|
# Realize all children of the panel.
|
214
|
-
# @return [
|
210
|
+
# @return [Boolean]
|
215
211
|
def realize; end
|
216
212
|
|
217
213
|
# Get the dummy panel of an expanded panel.
|
@@ -18,7 +18,7 @@ module Wx::RBN
|
|
18
18
|
class RibbonPanelEvent < CommandEvent
|
19
19
|
|
20
20
|
# Constructor.
|
21
|
-
# @param command_type [Wx::
|
21
|
+
# @param command_type [Wx::CommandLinkButton::EventType]
|
22
22
|
# @param win_id [Integer]
|
23
23
|
# @param panel [Wx::RBN::RibbonPanel]
|
24
24
|
# @return [Wx::RBN::RibbonPanelEvent]
|
@@ -52,7 +52,7 @@ module Wx::RBN
|
|
52
52
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
53
53
|
# @param size [Array(Integer, Integer), Wx::Size]
|
54
54
|
# @param style [Integer]
|
55
|
-
# @return [
|
55
|
+
# @return [Boolean]
|
56
56
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0) end
|
57
57
|
|
58
58
|
# @overload add_tool(tool_id, bitmap, help_string, kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL)
|
@@ -60,7 +60,7 @@ module Wx::RBN
|
|
60
60
|
# @param tool_id [Integer]
|
61
61
|
# @param bitmap [Wx::Bitmap]
|
62
62
|
# @param help_string [String]
|
63
|
-
# @param kind [RibbonButtonKind]
|
63
|
+
# @param kind [Wx::RibbonButtonKind]
|
64
64
|
# @return [Integer]
|
65
65
|
# @overload add_tool(tool_id, bitmap, bitmap_disabled=Wx::NULL_BITMAP, help_string=(''), kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL, clientData=nil)
|
66
66
|
# Add a tool to the tool bar.
|
@@ -73,7 +73,7 @@ module Wx::RBN
|
|
73
73
|
# @param bitmap [Wx::Bitmap] Bitmap to use as the foreground for the new tool. Does not have to be the same size as other tool bitmaps, but should be similar as otherwise it will look visually odd.
|
74
74
|
# @param bitmap_disabled [Wx::Bitmap] Bitmap to use when the tool is disabled. If left as {Wx::NULL_BITMAP}, then a bitmap will be automatically generated from bitmap.
|
75
75
|
# @param help_string [String] The UI help string to associate with the new tool.
|
76
|
-
# @param kind [RibbonButtonKind] The kind of tool to add.
|
76
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool to add.
|
77
77
|
# @param clientData [Object] Client data to associate with the new tool.
|
78
78
|
# @return [Integer]
|
79
79
|
def add_tool(*args) end
|
@@ -118,7 +118,7 @@ module Wx::RBN
|
|
118
118
|
# @param tool_id [Integer]
|
119
119
|
# @param bitmap [Wx::Bitmap]
|
120
120
|
# @param help_string [String]
|
121
|
-
# @param kind [RibbonButtonKind]
|
121
|
+
# @param kind [Wx::RibbonButtonKind]
|
122
122
|
# @return [Integer]
|
123
123
|
# @overload insert_tool(pos, tool_id, bitmap, bitmap_disabled=Wx::NULL_BITMAP, help_string=(''), kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL, clientData=nil)
|
124
124
|
# Insert a tool to the tool bar at the specified position.
|
@@ -131,7 +131,7 @@ module Wx::RBN
|
|
131
131
|
# @param bitmap [Wx::Bitmap] Bitmap to use as the foreground for the new tool. Does not have to be the same size as other tool bitmaps, but should be similar as otherwise it will look visually odd.
|
132
132
|
# @param bitmap_disabled [Wx::Bitmap] Bitmap to use when the tool is disabled. If left as {Wx::NULL_BITMAP}, then a bitmap will be automatically generated from bitmap.
|
133
133
|
# @param help_string [String] The UI help string to associate with the new tool.
|
134
|
-
# @param kind [RibbonButtonKind] The kind of tool to add.
|
134
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool to add.
|
135
135
|
# @param clientData [Object] Client data to associate with the new tool.
|
136
136
|
# @return [Integer]
|
137
137
|
def insert_tool(*args) end
|
@@ -185,13 +185,13 @@ module Wx::RBN
|
|
185
185
|
# true if the tool was deleted, false otherwise.
|
186
186
|
# @see Wx::RBN::RibbonToolBar#delete_tool_by_pos
|
187
187
|
# @param tool_id [Integer] ID of the tool to delete.
|
188
|
-
# @return [
|
188
|
+
# @return [Boolean]
|
189
189
|
def delete_tool(tool_id) end
|
190
190
|
|
191
191
|
# This function behaves like {Wx::RBN::RibbonToolBar#delete_tool} but it deletes the tool at the specified position and not the one with the given id.
|
192
192
|
# Useful to delete separators.
|
193
193
|
# @param pos [Integer]
|
194
|
-
# @return [
|
194
|
+
# @return [Boolean]
|
195
195
|
def delete_tool_by_pos(pos) end
|
196
196
|
|
197
197
|
# @overload get_tool_by_pos(pos)
|
@@ -230,7 +230,7 @@ module Wx::RBN
|
|
230
230
|
# true if the tool is enabled, false otherwise.
|
231
231
|
# @see Wx::RBN::RibbonToolBar#enable_tool
|
232
232
|
# @param tool_id [Integer] ID of the tool in question, as passed to {Wx::RBN::RibbonToolBar#add_tool}.
|
233
|
-
# @return [
|
233
|
+
# @return [Boolean]
|
234
234
|
def get_tool_enabled(tool_id) end
|
235
235
|
alias_method :tool_enabled, :get_tool_enabled
|
236
236
|
|
@@ -242,7 +242,7 @@ module Wx::RBN
|
|
242
242
|
|
243
243
|
# Return the kind of the given tool.
|
244
244
|
# @param tool_id [Integer] ID of the tool in question, as passed to {Wx::RBN::RibbonToolBar#add_tool}.
|
245
|
-
# @return [RibbonButtonKind]
|
245
|
+
# @return [Wx::RibbonButtonKind]
|
246
246
|
def get_tool_kind(tool_id) end
|
247
247
|
alias_method :tool_kind, :get_tool_kind
|
248
248
|
|
@@ -262,13 +262,13 @@ module Wx::RBN
|
|
262
262
|
# true if the tool is toggled on, false otherwise.
|
263
263
|
# @see Wx::RBN::RibbonToolBar#toggle_tool
|
264
264
|
# @param tool_id [Integer] ID of the tool in question, as passed to {Wx::RBN::RibbonToolBar#add_tool}.
|
265
|
-
# @return [
|
265
|
+
# @return [Boolean]
|
266
266
|
def get_tool_state(tool_id) end
|
267
267
|
alias_method :tool_state, :get_tool_state
|
268
268
|
|
269
269
|
# Calculate tool layouts and positions.
|
270
270
|
# Must be called after tools are added to the tool bar, as otherwise the newly added tools will not be displayed.
|
271
|
-
# @return [
|
271
|
+
# @return [Boolean]
|
272
272
|
def realize; end
|
273
273
|
|
274
274
|
# Set the number of rows to distribute tool groups over.
|
@@ -307,13 +307,13 @@ module Wx::RBN
|
|
307
307
|
|
308
308
|
# Enable or disable a single tool on the bar.
|
309
309
|
# @param tool_id [Integer] ID of the tool to enable or disable.
|
310
|
-
# @param enable [
|
310
|
+
# @param enable [Boolean] true to enable the tool, false to disable it.
|
311
311
|
# @return [void]
|
312
312
|
def enable_tool(tool_id, enable=true) end
|
313
313
|
|
314
314
|
# Set a toggle tool to the checked or unchecked state.
|
315
315
|
# @param tool_id [Integer] ID of the toggle tool to manipulate.
|
316
|
-
# @param checked [
|
316
|
+
# @param checked [Boolean] true to set the tool to the toggled/pressed/checked state, false to set it to the untoggled/unpressed/unchecked state.
|
317
317
|
# @return [void]
|
318
318
|
def toggle_tool(tool_id, checked) end
|
319
319
|
|
@@ -11,7 +11,7 @@ module Wx::RBN
|
|
11
11
|
#
|
12
12
|
class RibbonToolBarEvent < CommandEvent
|
13
13
|
|
14
|
-
# @param command_type [Wx::
|
14
|
+
# @param command_type [Wx::CommandLinkButton::EventType]
|
15
15
|
# @param win_id [Integer]
|
16
16
|
# @param bar [Wx::RBN::RibbonToolBar]
|
17
17
|
# @return [Wx::RBN::RibbonToolBarEvent]
|
@@ -27,7 +27,7 @@ module Wx::RBN
|
|
27
27
|
alias_method :bar=, :set_bar
|
28
28
|
|
29
29
|
# @param menu [Wx::Menu]
|
30
|
-
# @return [
|
30
|
+
# @return [Boolean]
|
31
31
|
def popup_menu(menu) end
|
32
32
|
|
33
33
|
end # RibbonToolBarEvent
|
@@ -0,0 +1,60 @@
|
|
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 composite control containing a {Wx::RearrangeList} and the buttons allowing to move the items in it.
|
10
|
+
# This control is in fact a panel containing the {Wx::RearrangeList} control and the "Up" and "Down" buttons to move the currently selected item up or down. It is used as the main part of a {Wx::RearrangeDialog}.
|
11
|
+
#
|
12
|
+
# ===
|
13
|
+
#
|
14
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table class='appearance'><tr><td> Generic Appearance
|
15
|
+
# </td></tr></table></div>
|
16
|
+
#
|
17
|
+
class RearrangeCtrl < Panel
|
18
|
+
|
19
|
+
# @overload initialize()
|
20
|
+
# Default constructor.
|
21
|
+
# {Wx::RearrangeCtrl#create} must be called later to effectively create the control.
|
22
|
+
# @return [Wx::RearrangeCtrl]
|
23
|
+
# @overload initialize(parent, id, pos, size, order, items, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::RearrangeListNameStr)
|
24
|
+
# Constructor really creating the control.
|
25
|
+
# Please see {Wx::RearrangeCtrl#create} for the parameters description.
|
26
|
+
# @param parent [Wx::Window]
|
27
|
+
# @param id [Integer]
|
28
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
29
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
30
|
+
# @param order [Array<Integer>]
|
31
|
+
# @param items [Array<String>]
|
32
|
+
# @param style [Integer]
|
33
|
+
# @param validator [Wx::Validator]
|
34
|
+
# @param name [String]
|
35
|
+
# @return [Wx::RearrangeCtrl]
|
36
|
+
def initialize(*args) end
|
37
|
+
|
38
|
+
# Effectively creates the window for an object created using the default constructor.
|
39
|
+
# The parameters of this method are the same as for {Wx::RearrangeList#create}.
|
40
|
+
# @param parent [Wx::Window]
|
41
|
+
# @param id [Integer]
|
42
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
43
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
44
|
+
# @param order [Array<Integer>]
|
45
|
+
# @param items [Array<String>]
|
46
|
+
# @param style [Integer]
|
47
|
+
# @param validator [Wx::Validator]
|
48
|
+
# @param name [String]
|
49
|
+
# @return [Boolean]
|
50
|
+
def create(parent, id, pos, size, order, items, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::RearrangeListNameStr) end
|
51
|
+
|
52
|
+
# Return the listbox which is the main part of this control.
|
53
|
+
# @return [Wx::RearrangeList]
|
54
|
+
def get_list; end
|
55
|
+
alias_method :list, :get_list
|
56
|
+
|
57
|
+
end # RearrangeCtrl
|
58
|
+
|
59
|
+
|
60
|
+
end
|
@@ -0,0 +1,99 @@
|
|
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 listbox-like control allowing the user to rearrange the items and to enable or disable them.
|
10
|
+
# This class allows changing the order of the items shown in it as well as checking or unchecking them individually. The data structure used to allow this is the order array which contains the items indices indexed by their position with an added twist that the unchecked items are represented by the bitwise complement of the corresponding index (for any architecture using two's complement for negative numbers representation (i.e. just about any at all) this means that a checked item N is represented by -N-1 in unchecked state). In practice this means that you must apply the C bitwise complement operator when constructing the order array, e.g.
|
11
|
+
# ```
|
12
|
+
# wxArrayInt order;
|
13
|
+
# order.push_back(0); // checked item #0
|
14
|
+
# order.push_back(~1); // unchecked item #1
|
15
|
+
# ```
|
16
|
+
#
|
17
|
+
# So, for example, the array order [1 -3 0] used in conjunction with the items array ["first", "second", "third"] means that the items order is "second", "third", "first" and the "third" item is unchecked while the other two are checked.
|
18
|
+
# This convention is used both for the order argument of the control ctor or {Wx::RearrangeList#create} and for the array returned from {Wx::RearrangeList#get_current_order}.
|
19
|
+
# Usually this control will be used together with other controls allowing to move the items around in it interactively. The simplest possible solution is to use {Wx::RearrangeCtrl} which combines it with two standard buttons to move the current item up or down.
|
20
|
+
# Note that while most of the methods for items manipulation such as {Wx::RearrangeList#append}, {Wx::RearrangeList#insert} or {Wx::RearrangeList#delete}, inherited from {Wx::ItemContainer} work as expected for this class, {Wx::RearrangeList#set} somewhat unexpectedly resets the order of the items as it clears the control first, also clearing the order as a side effect, before adding the new items.
|
21
|
+
#
|
22
|
+
# ===
|
23
|
+
#
|
24
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table class='appearance'><tr><td> Generic Appearance
|
25
|
+
# </td></tr></table></div>
|
26
|
+
#
|
27
|
+
class RearrangeList < CheckListBox
|
28
|
+
|
29
|
+
# @overload initialize()
|
30
|
+
# Default constructor.
|
31
|
+
# {Wx::RearrangeList#create} must be called later to effectively create the control.
|
32
|
+
# @return [Wx::RearrangeList]
|
33
|
+
# @overload initialize(parent, id, pos, size, order, items, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::RearrangeListNameStr)
|
34
|
+
# Constructor really creating the control.
|
35
|
+
# Please see {Wx::RearrangeList#create} for the parameters description.
|
36
|
+
# @param parent [Wx::Window]
|
37
|
+
# @param id [Integer]
|
38
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
39
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
40
|
+
# @param order [Array<Integer>]
|
41
|
+
# @param items [Array<String>]
|
42
|
+
# @param style [Integer]
|
43
|
+
# @param validator [Wx::Validator]
|
44
|
+
# @param name [String]
|
45
|
+
# @return [Wx::RearrangeList]
|
46
|
+
def initialize(*args) end
|
47
|
+
|
48
|
+
# Effectively creates the window for an object created using the default constructor.
|
49
|
+
# This function is very similar to {Wx::CheckListBox#create} except that it has an additional parameter specifying the initial order of the items. Please see the class documentation for the explanation of the conventions used by the order argument.
|
50
|
+
# @param parent [Wx::Window] The parent window, must be non-NULL.
|
51
|
+
# @param id [Integer] The window identifier.
|
52
|
+
# @param pos [Array(Integer, Integer), Wx::Point] The initial window position.
|
53
|
+
# @param size [Array(Integer, Integer), Wx::Size] The initial window size.
|
54
|
+
# @param order [Array<Integer>] Array specifying the initial order of the items in items array.
|
55
|
+
# @param items [Array<String>] The items to display in the list.
|
56
|
+
# @param style [Integer] The control style, there are no special styles for this class but the base class styles can be used here.
|
57
|
+
# @param validator [Wx::Validator] Optional window validator.
|
58
|
+
# @param name [String] Optional window name.
|
59
|
+
# @return [Boolean]
|
60
|
+
def create(parent, id, pos, size, order, items, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::RearrangeListNameStr) end
|
61
|
+
|
62
|
+
# Return the current order of the items.
|
63
|
+
# The order may be different from the one passed to the constructor if {Wx::RearrangeList#move_current_up} or {Wx::RearrangeList#move_current_down} were called.
|
64
|
+
# @return [Wx::ArrayInt]
|
65
|
+
def get_current_order; end
|
66
|
+
alias_method :current_order, :get_current_order
|
67
|
+
|
68
|
+
# Return true if the currently selected item can be moved up.
|
69
|
+
# This function is useful for EVT_UPDATE_UI handler for the standard "Up" button often used together with this control and {Wx::RearrangeCtrl} uses it in this way.
|
70
|
+
# true if the currently selected item can be moved up in the listbox, false if there is no selection or the current item is the first one.
|
71
|
+
# @see Wx::RearrangeList#can_move_current_down
|
72
|
+
# @return [Boolean]
|
73
|
+
def can_move_current_up; end
|
74
|
+
alias_method :can_move_current_up?, :can_move_current_up
|
75
|
+
|
76
|
+
# Return true if the currently selected item can be moved down.
|
77
|
+
#
|
78
|
+
# @see Wx::RearrangeList#can_move_current_up
|
79
|
+
# @return [Boolean]
|
80
|
+
def can_move_current_down; end
|
81
|
+
alias_method :can_move_current_down?, :can_move_current_down
|
82
|
+
|
83
|
+
# Move the currently selected item one position above.
|
84
|
+
# This method is useful to implement the standard "Up" button behaviour and {Wx::RearrangeCtrl} uses it for this.
|
85
|
+
# true if the item was moved or false if this couldn't be done.
|
86
|
+
# @see Wx::RearrangeList#move_current_down
|
87
|
+
# @return [Boolean]
|
88
|
+
def move_current_up; end
|
89
|
+
|
90
|
+
# Move the currently selected item one position below.
|
91
|
+
#
|
92
|
+
# @see Wx::RearrangeList#move_current_up
|
93
|
+
# @return [Boolean]
|
94
|
+
def move_current_down; end
|
95
|
+
|
96
|
+
end # RearrangeList
|
97
|
+
|
98
|
+
|
99
|
+
end
|
data/lib/wx/doc/gen/region.rb
CHANGED
@@ -42,19 +42,10 @@ module Wx
|
|
42
42
|
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
43
43
|
class Region < GDIObject
|
44
44
|
|
45
|
-
#
|
46
|
-
#
|
47
|
-
#
|
48
|
-
|
49
|
-
# @param y [Integer]
|
50
|
-
# @param width [Integer]
|
51
|
-
# @param height [Integer]
|
52
|
-
# @return [void]
|
53
|
-
# @overload get_box()
|
54
|
-
# Returns the outer bounds of the region.
|
55
|
-
# This method returns 0-sized bounding box for invalid regions.
|
56
|
-
# @return [Wx::Rect]
|
57
|
-
def get_box(*args) end
|
45
|
+
# Returns the outer bounds of the region.
|
46
|
+
# This method returns 0-sized bounding box for invalid regions.
|
47
|
+
# @return [Wx::Rect]
|
48
|
+
def get_box; end
|
58
49
|
alias_method :box, :get_box
|
59
50
|
|
60
51
|
# @overload offset(x, y)
|
@@ -63,13 +54,13 @@ module Wx
|
|
63
54
|
# true if successful, false otherwise (the region is unchanged then).
|
64
55
|
# @param x [Integer]
|
65
56
|
# @param y [Integer]
|
66
|
-
# @return [
|
57
|
+
# @return [Boolean]
|
67
58
|
# @overload offset(pt)
|
68
59
|
# Moves the region by the specified offsets in horizontal and vertical directions.
|
69
60
|
# This method can't be called if the region is invalid as it doesn't make sense to offset it then. Attempts to do it will result in assert failure.
|
70
61
|
# true if successful, false otherwise (the region is unchanged then).
|
71
62
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
72
|
-
# @return [
|
63
|
+
# @return [Boolean]
|
73
64
|
def offset(*args) end
|
74
65
|
|
75
66
|
# @overload initialize()
|
@@ -100,7 +91,7 @@ module Wx
|
|
100
91
|
# Constructs a region corresponding to the polygon made of n points in the provided array.
|
101
92
|
# fillStyle parameter may have values {Wx::PolygonFillMode::WINDING_RULE} or {Wx::PolygonFillMode::ODDEVEN_RULE}.
|
102
93
|
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
103
|
-
# @param fillStyle [PolygonFillMode]
|
94
|
+
# @param fillStyle [Wx::PolygonFillMode]
|
104
95
|
# @return [Wx::Region]
|
105
96
|
# @overload initialize(bmp)
|
106
97
|
# Constructs a region using a bitmap.
|
@@ -127,13 +118,13 @@ module Wx
|
|
127
118
|
# The return value is one of {Wx::RegionContain::OutRegion} and {Wx::RegionContain::InRegion}.
|
128
119
|
# @param x [Integer]
|
129
120
|
# @param y [Integer]
|
130
|
-
# @return [RegionContain]
|
121
|
+
# @return [Wx::RegionContain]
|
131
122
|
# @overload contains(pt)
|
132
123
|
# Returns a value indicating whether the given point is contained within the region.
|
133
124
|
# This method always returns {Wx::RegionContain::OutRegion} for an invalid region but may, nevertheless, be safely called in this case.
|
134
125
|
# The return value is one of {Wx::RegionContain::OutRegion} and {Wx::RegionContain::InRegion}.
|
135
126
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
136
|
-
# @return [RegionContain]
|
127
|
+
# @return [Wx::RegionContain]
|
137
128
|
# @overload contains(x, y, width, height)
|
138
129
|
# Returns a value indicating whether the given rectangle is contained within the region.
|
139
130
|
# This method always returns {Wx::RegionContain::OutRegion} for an invalid region but may, nevertheless, be safely called in this case.
|
@@ -144,7 +135,7 @@ module Wx
|
|
144
135
|
# @param y [Integer]
|
145
136
|
# @param width [Integer]
|
146
137
|
# @param height [Integer]
|
147
|
-
# @return [RegionContain]
|
138
|
+
# @return [Wx::RegionContain]
|
148
139
|
# @overload contains(rect)
|
149
140
|
# Returns a value indicating whether the given rectangle is contained within the region.
|
150
141
|
# This method always returns {Wx::RegionContain::OutRegion} for an invalid region but may, nevertheless, be safely called in this case.
|
@@ -152,7 +143,7 @@ module Wx
|
|
152
143
|
#
|
153
144
|
# On Windows, only {Wx::RegionContain::OutRegion} and {Wx::RegionContain::InRegion} are returned; a value {Wx::RegionContain::InRegion} then indicates that all or some part of the region is contained in this region.
|
154
145
|
# @param rect [Wx::Rect]
|
155
|
-
# @return [RegionContain]
|
146
|
+
# @return [Wx::RegionContain]
|
156
147
|
def contains(*args) end
|
157
148
|
|
158
149
|
# Convert the region to a black and white bitmap with the white pixels being inside the region.
|
@@ -170,7 +161,7 @@ module Wx
|
|
170
161
|
# @param y [Integer]
|
171
162
|
# @param width [Integer]
|
172
163
|
# @param height [Integer]
|
173
|
-
# @return [
|
164
|
+
# @return [Boolean]
|
174
165
|
# @overload intersect(rect)
|
175
166
|
# Finds the intersection of this region and another, rectangular region.
|
176
167
|
# This method always fails, i.e. returns false, if this region is invalid but may nevertheless be safely used even in this case.
|
@@ -178,7 +169,7 @@ module Wx
|
|
178
169
|
#
|
179
170
|
# Creates the intersection of the two regions, that is, the parts which are in both regions. The result is stored in this region.
|
180
171
|
# @param rect [Wx::Rect]
|
181
|
-
# @return [
|
172
|
+
# @return [Boolean]
|
182
173
|
# @overload intersect(region)
|
183
174
|
# Finds the intersection of this region and another region.
|
184
175
|
# This method always fails, i.e. returns false, if this region is invalid but may nevertheless be safely used even in this case.
|
@@ -186,19 +177,19 @@ module Wx
|
|
186
177
|
#
|
187
178
|
# Creates the intersection of the two regions, that is, the parts which are in both regions. The result is stored in this region.
|
188
179
|
# @param region [Wx::Region]
|
189
|
-
# @return [
|
180
|
+
# @return [Boolean]
|
190
181
|
def intersect(*args) end
|
191
182
|
|
192
183
|
# Returns true if the region is empty, false otherwise.
|
193
184
|
# Always returns true if the region is invalid.
|
194
|
-
# @return [
|
185
|
+
# @return [Boolean]
|
195
186
|
def is_empty; end
|
196
187
|
alias_method :empty?, :is_empty
|
197
188
|
|
198
189
|
# Returns true if the region is equal to, i.e. covers the same area as, another one.
|
199
190
|
# If both this region and region are both invalid, they are considered to be equal.
|
200
191
|
# @param region [Wx::Region]
|
201
|
-
# @return [
|
192
|
+
# @return [Boolean]
|
202
193
|
def is_equal(region) end
|
203
194
|
alias_method :equal?, :is_equal
|
204
195
|
|
@@ -209,7 +200,7 @@ module Wx
|
|
209
200
|
#
|
210
201
|
# This operation combines the parts of 'this' region that are not part of the second region. The result is stored in this region.
|
211
202
|
# @param rect [Wx::Rect]
|
212
|
-
# @return [
|
203
|
+
# @return [Boolean]
|
213
204
|
# @overload subtract(region)
|
214
205
|
# Subtracts a region from this region.
|
215
206
|
# This method always fails, i.e. returns false, if this region is invalid but may nevertheless be safely used even in this case.
|
@@ -217,7 +208,7 @@ module Wx
|
|
217
208
|
#
|
218
209
|
# This operation combines the parts of 'this' region that are not part of the second region. The result is stored in this region.
|
219
210
|
# @param region [Wx::Region]
|
220
|
-
# @return [
|
211
|
+
# @return [Boolean]
|
221
212
|
def subtract(*args) end
|
222
213
|
|
223
214
|
# @overload union(x, y, width, height)
|
@@ -230,7 +221,7 @@ module Wx
|
|
230
221
|
# @param y [Integer]
|
231
222
|
# @param width [Integer]
|
232
223
|
# @param height [Integer]
|
233
|
-
# @return [
|
224
|
+
# @return [Boolean]
|
234
225
|
# @overload union(rect)
|
235
226
|
# Finds the union of this region and another, rectangular region.
|
236
227
|
# This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
|
@@ -238,7 +229,7 @@ module Wx
|
|
238
229
|
#
|
239
230
|
# This operation creates a region that combines all of this region and the second region. The result is stored in this region.
|
240
231
|
# @param rect [Wx::Rect]
|
241
|
-
# @return [
|
232
|
+
# @return [Boolean]
|
242
233
|
# @overload union(region)
|
243
234
|
# Finds the union of this region and another region.
|
244
235
|
# This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given region.
|
@@ -246,7 +237,7 @@ module Wx
|
|
246
237
|
#
|
247
238
|
# This operation creates a region that combines all of this region and the second region. The result is stored in this region.
|
248
239
|
# @param region [Wx::Region]
|
249
|
-
# @return [
|
240
|
+
# @return [Boolean]
|
250
241
|
# @overload union(bmp)
|
251
242
|
# Finds the union of this region and the non-transparent pixels of a bitmap.
|
252
243
|
# The bitmap's mask is used to determine transparency. If the bitmap doesn't have a mask, the bitmap's full dimensions are used.
|
@@ -254,7 +245,7 @@ module Wx
|
|
254
245
|
#
|
255
246
|
# This operation creates a region that combines all of this region and the second region. The result is stored in this region.
|
256
247
|
# @param bmp [Wx::Bitmap]
|
257
|
-
# @return [
|
248
|
+
# @return [Boolean]
|
258
249
|
# @overload union(bmp, transColour, tolerance=0)
|
259
250
|
# Finds the union of this region and the non-transparent pixels of a bitmap.
|
260
251
|
# Colour to be treated as transparent is specified in the transColour argument, along with an optional colour tolerance value.
|
@@ -264,7 +255,7 @@ module Wx
|
|
264
255
|
# @param bmp [Wx::Bitmap]
|
265
256
|
# @param transColour [Wx::Colour,String,Symbol]
|
266
257
|
# @param tolerance [Integer]
|
267
|
-
# @return [
|
258
|
+
# @return [Boolean]
|
268
259
|
def union(*args) end
|
269
260
|
|
270
261
|
# @overload xor(x, y, width, height)
|
@@ -277,7 +268,7 @@ module Wx
|
|
277
268
|
# @param y [Integer]
|
278
269
|
# @param width [Integer]
|
279
270
|
# @param height [Integer]
|
280
|
-
# @return [
|
271
|
+
# @return [Boolean]
|
281
272
|
# @overload xor(rect)
|
282
273
|
# Finds the Xor of this region and another, rectangular region.
|
283
274
|
# This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
|
@@ -285,7 +276,7 @@ module Wx
|
|
285
276
|
#
|
286
277
|
# This operation creates a region that combines all of this region and the second region, except for any overlapping areas. The result is stored in this region.
|
287
278
|
# @param rect [Wx::Rect]
|
288
|
-
# @return [
|
279
|
+
# @return [Boolean]
|
289
280
|
# @overload xor(region)
|
290
281
|
# Finds the Xor of this region and another region.
|
291
282
|
# This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given region.
|
@@ -293,7 +284,7 @@ module Wx
|
|
293
284
|
#
|
294
285
|
# This operation creates a region that combines all of this region and the second region, except for any overlapping areas. The result is stored in this region.
|
295
286
|
# @param region [Wx::Region]
|
296
|
-
# @return [
|
287
|
+
# @return [Boolean]
|
297
288
|
def xor(*args) end
|
298
289
|
|
299
290
|
end # Region
|