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/dc.rb
CHANGED
@@ -10,7 +10,7 @@ module Wx
|
|
10
10
|
#
|
11
11
|
# {Wx::DC#blit} and {Wx::DC#stretch_blit}).
|
12
12
|
# The description of the values below refer to how a generic src source pixel and the corresponding dst destination pixel gets combined together to produce the final pixel. E.g. {Wx::RasterOperationMode::CLEAR} and {Wx::RasterOperationMode::SET} completely ignore the source and the destination pixel and always put zeroes or ones in the final surface.
|
13
|
-
# Note that not all modes are supported under all platforms. Notably wxGTK3 and
|
13
|
+
# Note that not all modes are supported under all platforms. Notably wxGTK3 and wxMac only support the following modes:
|
14
14
|
#
|
15
15
|
# - {Wx::RasterOperationMode::COPY}
|
16
16
|
# - {Wx::RasterOperationMode::OR}
|
@@ -307,13 +307,13 @@ module Wx
|
|
307
307
|
# @param bitmap [Wx::Bitmap]
|
308
308
|
# @param x [Integer]
|
309
309
|
# @param y [Integer]
|
310
|
-
# @param useMask [
|
310
|
+
# @param useMask [Boolean]
|
311
311
|
# @return [void]
|
312
312
|
# @overload draw_bitmap(bmp, pt, useMask=false)
|
313
313
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
314
314
|
# @param bmp [Wx::Bitmap]
|
315
315
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
316
|
-
# @param useMask [
|
316
|
+
# @param useMask [Boolean]
|
317
317
|
# @return [void]
|
318
318
|
def draw_bitmap(*args) end
|
319
319
|
|
@@ -463,7 +463,7 @@ module Wx
|
|
463
463
|
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
464
464
|
# @param xoffset [Integer]
|
465
465
|
# @param yoffset [Integer]
|
466
|
-
# @param fill_style [PolygonFillMode]
|
466
|
+
# @param fill_style [Wx::PolygonFillMode]
|
467
467
|
# @return [void]
|
468
468
|
def draw_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
|
469
469
|
|
@@ -476,7 +476,7 @@ module Wx
|
|
476
476
|
# @param points [Array<Array<Wx::Point>>,Array<Array<Array<Integer>>>]
|
477
477
|
# @param xoffset [Integer]
|
478
478
|
# @param yoffset [Integer]
|
479
|
-
# @param fill_style [PolygonFillMode]
|
479
|
+
# @param fill_style [Wx::PolygonFillMode]
|
480
480
|
# @return [void]
|
481
481
|
def draw_poly_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
|
482
482
|
|
@@ -598,7 +598,7 @@ module Wx
|
|
598
598
|
# @param rect [Wx::Rect]
|
599
599
|
# @param initialColour [Wx::Colour,String,Symbol]
|
600
600
|
# @param destColour [Wx::Colour,String,Symbol]
|
601
|
-
# @param nDirection [Direction]
|
601
|
+
# @param nDirection [Wx::Direction]
|
602
602
|
# @return [void]
|
603
603
|
def gradient_fill_linear(rect, initialColour, destColour, nDirection=Wx::Direction::RIGHT) end
|
604
604
|
|
@@ -616,14 +616,14 @@ module Wx
|
|
616
616
|
# @param x [Integer]
|
617
617
|
# @param y [Integer]
|
618
618
|
# @param colour [Wx::Colour,String,Symbol]
|
619
|
-
# @param style [FloodFillStyle]
|
620
|
-
# @return [
|
619
|
+
# @param style [Wx::FloodFillStyle]
|
620
|
+
# @return [Boolean]
|
621
621
|
# @overload flood_fill(pt, col, style=Wx::FloodFillStyle::FLOOD_SURFACE)
|
622
622
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
623
623
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
624
624
|
# @param col [Wx::Colour,String,Symbol]
|
625
|
-
# @param style [FloodFillStyle]
|
626
|
-
# @return [
|
625
|
+
# @param style [Wx::FloodFillStyle]
|
626
|
+
# @return [Boolean]
|
627
627
|
def flood_fill(*args) end
|
628
628
|
|
629
629
|
# @overload cross_hair(x, y)
|
@@ -652,11 +652,11 @@ module Wx
|
|
652
652
|
# true if there is a clipping region or false if there is no active clipping region (note that this return value is available only since wxWidgets 3.1.2, this function didn't return anything in the previous versions).
|
653
653
|
# @param x [Integer] If non-NULL, filled in with the logical horizontal coordinate of the top left corner of the clipping region if the function returns true or 0 otherwise.
|
654
654
|
# @param y [Integer] If non-NULL, filled in with the logical vertical coordinate of the top left corner of the clipping region if the function returns true or 0 otherwise.
|
655
|
-
# @return [Array(
|
655
|
+
# @return [Array(Boolean,Integer,Integer)]
|
656
656
|
# @overload get_clipping_box(rect)
|
657
657
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
658
658
|
# @param rect [Wx::Rect]
|
659
|
-
# @return [
|
659
|
+
# @return [Boolean]
|
660
660
|
def get_clipping_box(*args) end
|
661
661
|
alias_method :clipping_box, :get_clipping_box
|
662
662
|
|
@@ -779,7 +779,7 @@ module Wx
|
|
779
779
|
# Gets the current layout direction of the device context.
|
780
780
|
# On platforms where RTL layout is supported, the return value will either be {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}. If RTL layout is not supported, the return value will be {Wx::LayoutDirection::Layout_Default}.
|
781
781
|
# @see Wx::DC#set_layout_direction
|
782
|
-
# @return [LayoutDirection]
|
782
|
+
# @return [Wx::LayoutDirection]
|
783
783
|
def get_layout_direction; end
|
784
784
|
alias_method :layout_direction, :get_layout_direction
|
785
785
|
|
@@ -830,7 +830,7 @@ module Wx
|
|
830
830
|
# Sets the current layout direction for the device context.
|
831
831
|
#
|
832
832
|
# @see Wx::DC#get_layout_direction
|
833
|
-
# @param dir [LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
|
833
|
+
# @param dir [Wx::LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
|
834
834
|
# @return [void]
|
835
835
|
def set_layout_direction(dir) end
|
836
836
|
alias_method :layout_direction=, :set_layout_direction
|
@@ -868,7 +868,7 @@ module Wx
|
|
868
868
|
# Starts a document (only relevant when outputting to a printer).
|
869
869
|
# message is a message to show while printing.
|
870
870
|
# @param message [String]
|
871
|
-
# @return [
|
871
|
+
# @return [Boolean]
|
872
872
|
def start_doc(message) end
|
873
873
|
|
874
874
|
# Starts a document page (only relevant when outputting to a printer).
|
@@ -899,8 +899,8 @@ module Wx
|
|
899
899
|
# @param source [Wx::DC] Source device context.
|
900
900
|
# @param xsrc [Integer] Source device context x position.
|
901
901
|
# @param ysrc [Integer] Source device context y position.
|
902
|
-
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
903
|
-
# @param useMask [
|
902
|
+
# @param logicalFunc [Wx::RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
903
|
+
# @param useMask [Boolean] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
|
904
904
|
#
|
905
905
|
# -
|
906
906
|
# Creates a temporary bitmap and copies the destination area into it.
|
@@ -925,7 +925,7 @@ module Wx
|
|
925
925
|
# <b>Note:</b> on Windows, blitting with masks can be speeded up considerably by compiling wxWidgets with the {Wx::Setup::USE_DC_CACHEING} option enabled. You can also influence whether MaskBlt or the explicit mask blitting code above is used, by using {Wx::SystemOptions} and setting the <code>no-maskblt</code> option to 1.
|
926
926
|
# @param xsrcMask [Integer] Source x position on the mask. If both xsrcMask and ysrcMask are <code>-1</code>, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
|
927
927
|
# @param ysrcMask [Integer] Source y position on the mask. If both xsrcMask and ysrcMask are <code>-1</code>, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
|
928
|
-
# @return [
|
928
|
+
# @return [Boolean]
|
929
929
|
def blit(xdest, ydest, width, height, source, xsrc, ysrc, logicalFunc=Wx::RasterOperationMode::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
|
930
930
|
|
931
931
|
# Copy from a source DC to this DC possibly changing the scale.
|
@@ -947,8 +947,8 @@ module Wx
|
|
947
947
|
# @param ysrc [Integer] Source device context y position.
|
948
948
|
# @param srcWidth [Integer] Width of source area to be copied.
|
949
949
|
# @param srcHeight [Integer] Height of source area to be copied.
|
950
|
-
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
951
|
-
# @param useMask [
|
950
|
+
# @param logicalFunc [Wx::RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
951
|
+
# @param useMask [Boolean] If true, Blit does a transparent blit using the mask that is associated with the bitmap selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used:
|
952
952
|
#
|
953
953
|
# -
|
954
954
|
# Creates a temporary bitmap and copies the destination area into it.
|
@@ -973,7 +973,7 @@ module Wx
|
|
973
973
|
# <b>Note:</b> on Windows, blitting with masks can be speeded up considerably by compiling wxWidgets with the {Wx::Setup::USE_DC_CACHEING} option enabled. You can also influence whether MaskBlt or the explicit mask blitting code above is used, by using {Wx::SystemOptions} and setting the <code>no-maskblt</code> option to 1.
|
974
974
|
# @param xsrcMask [Integer] Source x position on the mask. If both xsrcMask and ysrcMask are {Wx::DEFAULT_COORD}, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
|
975
975
|
# @param ysrcMask [Integer] Source y position on the mask. If both xsrcMask and ysrcMask are {Wx::DEFAULT_COORD}, xsrc and ysrc will be assumed for the mask source position. Currently only implemented on Windows.
|
976
|
-
# @return [
|
976
|
+
# @return [Boolean]
|
977
977
|
def stretch_blit(xdest, ydest, dstWidth, dstHeight, source, xsrc, ysrc, srcWidth, srcHeight, logicalFunc=Wx::RasterOperationMode::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
|
978
978
|
|
979
979
|
# Gets the brush used for painting the background.
|
@@ -1020,36 +1020,13 @@ module Wx
|
|
1020
1020
|
def set_pen(pen) end
|
1021
1021
|
alias_method :pen=, :set_pen
|
1022
1022
|
|
1023
|
-
# Check if the use of transformation matrix is supported by the current system.
|
1024
|
-
# This function returns true for MSW and GTK+ 3 platforms and since 3.1.1 also for {Wx::GCDC} in all ports.
|
1025
|
-
# @return [true,false]
|
1026
|
-
def can_use_transform_matrix; end
|
1027
|
-
alias_method :can_use_transform_matrix?, :can_use_transform_matrix
|
1028
|
-
|
1029
|
-
# Set the transformation matrix.
|
1030
|
-
# If transformation matrix is supported on the current system, the specified matrix will be used to transform between {Wx::DC} and physical coordinates. Otherwise the function returns false and doesn't change the coordinate mapping.
|
1031
|
-
# @param matrix [Wx::AffineMatrix2D]
|
1032
|
-
# @return [true,false]
|
1033
|
-
def set_transform_matrix(matrix) end
|
1034
|
-
alias_method :transform_matrix=, :set_transform_matrix
|
1035
|
-
|
1036
|
-
# Return the transformation matrix used by this device context.
|
1037
|
-
# By default the transformation matrix is the identity matrix.
|
1038
|
-
# @return [Wx::AffineMatrix2D]
|
1039
|
-
def get_transform_matrix; end
|
1040
|
-
alias_method :transform_matrix, :get_transform_matrix
|
1041
|
-
|
1042
|
-
# Revert the transformation matrix to identity matrix.
|
1043
|
-
# @return [void]
|
1044
|
-
def reset_transform_matrix; end
|
1045
|
-
|
1046
1023
|
# Does the DC support drawing bitmaps?
|
1047
|
-
# @return [
|
1024
|
+
# @return [Boolean]
|
1048
1025
|
def can_draw_bitmap; end
|
1049
1026
|
alias_method :can_draw_bitmap?, :can_draw_bitmap
|
1050
1027
|
|
1051
1028
|
# Does the DC support calculating the size required to draw text?
|
1052
|
-
# @return [
|
1029
|
+
# @return [Boolean]
|
1053
1030
|
def can_get_text_extent; end
|
1054
1031
|
alias_method :can_get_text_extent?, :can_get_text_extent
|
1055
1032
|
|
@@ -1074,7 +1051,8 @@ module Wx
|
|
1074
1051
|
def copy_attributes(dc) end
|
1075
1052
|
|
1076
1053
|
# Returns the factor used for converting logical pixels to physical ones.
|
1077
|
-
# Returns the same value as {Wx::Window#
|
1054
|
+
# Returns the same value as {Wx::Window#get_dpi_scale_factor} for the device contexts associated with a window and the same value as {Wx::Bitmap#get_scale_factor} for the associated bitmap for {Wx::MemoryDC}.
|
1055
|
+
# Beware that since wxWidgets 3.1.6, this function does not return the same value as {Wx::Window#get_content_scale_factor} for the device contexts associated with the window. Unlike {Wx::Window} method, it always returns the effective scale factor instead of always returning 1 on platforms where logical pixels are the same as physical ones, such as MSW.
|
1078
1056
|
# @return [Float]
|
1079
1057
|
def get_content_scale_factor; end
|
1080
1058
|
alias_method :content_scale_factor, :get_content_scale_factor
|
@@ -1096,14 +1074,14 @@ module Wx
|
|
1096
1074
|
# Gets the current logical function.
|
1097
1075
|
#
|
1098
1076
|
# @see Wx::DC#set_logical_function
|
1099
|
-
# @return [RasterOperationMode]
|
1077
|
+
# @return [Wx::RasterOperationMode]
|
1100
1078
|
def get_logical_function; end
|
1101
1079
|
alias_method :logical_function, :get_logical_function
|
1102
1080
|
|
1103
1081
|
# Gets the current mapping mode for the device context.
|
1104
1082
|
#
|
1105
1083
|
# @see Wx::DC#set_map_mode
|
1106
|
-
# @return [MappingMode]
|
1084
|
+
# @return [Wx::MappingMode]
|
1107
1085
|
def get_map_mode; end
|
1108
1086
|
alias_method :map_mode, :get_map_mode
|
1109
1087
|
|
@@ -1115,7 +1093,7 @@ module Wx
|
|
1115
1093
|
# @param x [Integer]
|
1116
1094
|
# @param y [Integer]
|
1117
1095
|
# @param colour [Wx::Colour]
|
1118
|
-
# @return [
|
1096
|
+
# @return [Boolean]
|
1119
1097
|
def get_pixel(x, y, colour) end
|
1120
1098
|
alias_method :pixel, :get_pixel
|
1121
1099
|
|
@@ -1188,21 +1166,19 @@ module Wx
|
|
1188
1166
|
# Gets the current user scale factor.
|
1189
1167
|
#
|
1190
1168
|
# @see Wx::DC#set_user_scale
|
1191
|
-
# @
|
1192
|
-
|
1193
|
-
# @return [void]
|
1194
|
-
def get_user_scale(x, y) end
|
1169
|
+
# @return [Array(Float,Float)]
|
1170
|
+
def get_user_scale; end
|
1195
1171
|
alias_method :user_scale, :get_user_scale
|
1196
1172
|
|
1197
1173
|
# Returns true if the DC is ok to use.
|
1198
|
-
# @return [
|
1174
|
+
# @return [Boolean]
|
1199
1175
|
def is_ok; end
|
1200
1176
|
alias_method :ok?, :is_ok
|
1201
1177
|
|
1202
1178
|
# Sets the x and y axis orientation (i.e. the direction from lowest to highest values on the axis).
|
1203
1179
|
# The default orientation is x axis from left to right and y axis from top down.
|
1204
|
-
# @param xLeftRight [
|
1205
|
-
# @param yBottomUp [
|
1180
|
+
# @param xLeftRight [Boolean] True to set the x axis orientation to the natural left to right orientation, false to invert it.
|
1181
|
+
# @param yBottomUp [Boolean] True to set the y axis orientation to the natural bottom up orientation, false to invert it.
|
1206
1182
|
# @return [void]
|
1207
1183
|
def set_axis_orientation(xLeftRight, yBottomUp) end
|
1208
1184
|
|
@@ -1214,12 +1190,12 @@ module Wx
|
|
1214
1190
|
def set_device_origin(x, y) end
|
1215
1191
|
|
1216
1192
|
# Sets the current logical function for the device context.
|
1217
|
-
# This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by wxGTK3 and
|
1193
|
+
# This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by wxGTK3 and wxMac. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
|
1218
1194
|
#
|
1219
1195
|
# It determines how a source pixel (from a pen or brush colour, or source device context if using {Wx::DC#blit}) combines with a destination pixel in the current device context. Text drawing is not affected by this function.
|
1220
1196
|
# See {Wx::RasterOperationMode} enumeration values for more info.
|
1221
1197
|
# The default is {Wx::RasterOperationMode::COPY}, which simply draws with the current colour. The others combine the current colour and the background using a logical operation.
|
1222
|
-
# @param function [RasterOperationMode]
|
1198
|
+
# @param function [Wx::RasterOperationMode]
|
1223
1199
|
# @return [void]
|
1224
1200
|
def set_logical_function(function) end
|
1225
1201
|
alias_method :logical_function=, :set_logical_function
|
@@ -1228,7 +1204,7 @@ module Wx
|
|
1228
1204
|
# Note that in X, text drawing isn't handled consistently with the mapping mode; a font is always specified in point size. However, setting the user scale (see {Wx::DC#set_user_scale}) scales the text appropriately. In Windows, scalable TrueType fonts are always used; in X, results depend on availability of fonts, but usually a reasonable match is found.
|
1229
1205
|
# The coordinate origin is always at the top left of the screen/printer.
|
1230
1206
|
# Drawing to a Windows printer device context uses the current mapping mode, but mapping mode is currently ignored for PostScript output.
|
1231
|
-
# @param mode [MappingMode]
|
1207
|
+
# @param mode [Wx::MappingMode]
|
1232
1208
|
# @return [void]
|
1233
1209
|
def set_map_mode(mode) end
|
1234
1210
|
alias_method :map_mode=, :set_map_mode
|
@@ -1261,10 +1237,8 @@ module Wx
|
|
1261
1237
|
def set_logical_scale(x, y) end
|
1262
1238
|
|
1263
1239
|
# Return the scale set by the last call to {Wx::DC#set_logical_scale}.
|
1264
|
-
# @
|
1265
|
-
|
1266
|
-
# @return [void]
|
1267
|
-
def get_logical_scale(x, y) end
|
1240
|
+
# @return [Array(Float,Float)]
|
1241
|
+
def get_logical_scale; end
|
1268
1242
|
alias_method :logical_scale, :get_logical_scale
|
1269
1243
|
|
1270
1244
|
# Change the offset used for translating {Wx::DC} coordinates.
|
@@ -1291,5 +1265,94 @@ module Wx
|
|
1291
1265
|
|
1292
1266
|
end # DC
|
1293
1267
|
|
1268
|
+
# Simple collection of various font metrics.
|
1269
|
+
# This object is returned by {Wx::DC#get_font_metrics}.
|
1270
|
+
#
|
1271
|
+
# ===
|
1272
|
+
#
|
1273
|
+
# Category: Device Contexts, Graphics Device Interface (GDI)
|
1274
|
+
#
|
1275
|
+
#
|
1276
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
1277
|
+
class FontMetrics < ::Object
|
1278
|
+
|
1279
|
+
# Total character height.
|
1280
|
+
#
|
1281
|
+
#
|
1282
|
+
# @return [Integer]
|
1283
|
+
def height; end
|
1284
|
+
# Total character height.
|
1285
|
+
#
|
1286
|
+
#
|
1287
|
+
# @param val [Integer]
|
1288
|
+
# @return [void]
|
1289
|
+
def height=(val); end
|
1290
|
+
|
1291
|
+
# Part of the height above the baseline.
|
1292
|
+
#
|
1293
|
+
#
|
1294
|
+
# @return [Integer]
|
1295
|
+
def ascent; end
|
1296
|
+
# Part of the height above the baseline.
|
1297
|
+
#
|
1298
|
+
#
|
1299
|
+
# @param val [Integer]
|
1300
|
+
# @return [void]
|
1301
|
+
def ascent=(val); end
|
1302
|
+
|
1303
|
+
# Part of the height below the baseline.
|
1304
|
+
#
|
1305
|
+
#
|
1306
|
+
# @return [Integer]
|
1307
|
+
def descent; end
|
1308
|
+
# Part of the height below the baseline.
|
1309
|
+
#
|
1310
|
+
#
|
1311
|
+
# @param val [Integer]
|
1312
|
+
# @return [void]
|
1313
|
+
def descent=(val); end
|
1314
|
+
|
1315
|
+
# Intra-line spacing.
|
1316
|
+
#
|
1317
|
+
#
|
1318
|
+
# @return [Integer]
|
1319
|
+
def internal_leading; end
|
1320
|
+
# Intra-line spacing.
|
1321
|
+
#
|
1322
|
+
#
|
1323
|
+
# @param val [Integer]
|
1324
|
+
# @return [void]
|
1325
|
+
def internal_leading=(val); end
|
1326
|
+
|
1327
|
+
# Inter-line spacing.
|
1328
|
+
#
|
1329
|
+
#
|
1330
|
+
# @return [Integer]
|
1331
|
+
def external_leading; end
|
1332
|
+
# Inter-line spacing.
|
1333
|
+
#
|
1334
|
+
#
|
1335
|
+
# @param val [Integer]
|
1336
|
+
# @return [void]
|
1337
|
+
def external_leading=(val); end
|
1338
|
+
|
1339
|
+
# Average font width, a.k.a. "x-width".
|
1340
|
+
#
|
1341
|
+
#
|
1342
|
+
# @return [Integer]
|
1343
|
+
def average_width; end
|
1344
|
+
# Average font width, a.k.a. "x-width".
|
1345
|
+
#
|
1346
|
+
#
|
1347
|
+
# @param val [Integer]
|
1348
|
+
# @return [void]
|
1349
|
+
def average_width=(val); end
|
1350
|
+
|
1351
|
+
# Constructor initializes all fields to 0.
|
1352
|
+
# @return [Wx::FontMetrics]
|
1353
|
+
def initialize; end
|
1354
|
+
|
1355
|
+
end # FontMetrics
|
1356
|
+
|
1294
1357
|
|
1295
1358
|
end
|
data/lib/wx/doc/gen/defs.rb
CHANGED
@@ -1430,7 +1430,7 @@ module Wx
|
|
1430
1430
|
|
1431
1431
|
# Virtual keycodes used by {Wx::KeyEvent} and some other wxWidgets functions.
|
1432
1432
|
#
|
1433
|
-
# Note that the range 0..255 corresponds to the characters of the current locale, in particular the 32..127 subrange is for the ASCII symbols, and all the special key values such as {Wx::K_END} lie above this range.
|
1433
|
+
# Note that the range 0..255 corresponds to the characters of the current locale, in particular the 32..127 subrange is for the ASCII symbols, and all the special key values such as {Wx::KeyCode::K_END} lie above this range.
|
1434
1434
|
#
|
1435
1435
|
class KeyCode < Wx::Enum
|
1436
1436
|
|
@@ -1598,11 +1598,11 @@ module Wx
|
|
1598
1598
|
#
|
1599
1599
|
K_ALT = Wx::KeyCode.new(307)
|
1600
1600
|
|
1601
|
-
# Note that under macOS, to improve compatibility with other systems, '{Wx::K_CONTROL}' represents the 'Command' key.
|
1601
|
+
# Note that under macOS, to improve compatibility with other systems, '{Wx::KeyCode::K_CONTROL}' represents the 'Command' key.
|
1602
1602
|
#
|
1603
1603
|
K_CONTROL = Wx::KeyCode.new(308)
|
1604
1604
|
|
1605
|
-
# Under macOS, where the 'Command' key is mapped to 'Control' to improve compatibility with other systems, {Wx::K_RAW}_CONTROL may be used to obtain the state of the actual 'Control' key ('{Wx::K_CONTROL}' would obtain the status of the 'Command' key).
|
1605
|
+
# Under macOS, where the 'Command' key is mapped to 'Control' to improve compatibility with other systems, {Wx::KeyCode::K_RAW}_CONTROL may be used to obtain the state of the actual 'Control' key ('{Wx::KeyCode::K_CONTROL}' would obtain the status of the 'Command' key).
|
1606
1606
|
#
|
1607
1607
|
K_RAW_CONTROL = Wx::KeyCode.new(308)
|
1608
1608
|
|
@@ -0,0 +1,42 @@
|
|
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
|
+
# connected event
|
10
|
+
EVT_DIALUP_CONNECTED = 10199
|
11
|
+
|
12
|
+
# disconnected event
|
13
|
+
EVT_DIALUP_DISCONNECTED = 10200
|
14
|
+
|
15
|
+
# This is the event class for the dialup events sent by {Wx::DialUpManager}.
|
16
|
+
# ===
|
17
|
+
#
|
18
|
+
# Category: {Wx::Events}
|
19
|
+
#
|
20
|
+
class DialUpEvent < Event
|
21
|
+
|
22
|
+
# Constructor is only used by {Wx::DialUpManager}.
|
23
|
+
# @param isConnected [Boolean]
|
24
|
+
# @param isOwnEvent [Boolean]
|
25
|
+
# @return [Wx::DialUpEvent]
|
26
|
+
def initialize(isConnected, isOwnEvent) end
|
27
|
+
|
28
|
+
# Is this a CONNECTED or DISCONNECTED event? In other words, does it notify about transition from offline to online state or vice versa?
|
29
|
+
# @return [Boolean]
|
30
|
+
def is_connected_event; end
|
31
|
+
alias_method :connected_event?, :is_connected_event
|
32
|
+
|
33
|
+
# Does this event come from {Wx::DialUpManager#dial} or from some external process (i.e.
|
34
|
+
# does it result from our own attempt to establish the connection)?
|
35
|
+
# @return [Boolean]
|
36
|
+
def is_own_event; end
|
37
|
+
alias_method :own_event?, :is_own_event
|
38
|
+
|
39
|
+
end # DialUpEvent
|
40
|
+
|
41
|
+
|
42
|
+
end
|
@@ -0,0 +1,129 @@
|
|
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
|
+
# This class encapsulates functions dealing with verifying the connection status of the workstation (connected to the Internet via a direct connection, connected through a modem or not connected at all) and to establish this connection if possible/required (i.e.
|
10
|
+
# in the case of the modem).
|
11
|
+
# The program may also wish to be notified about the change in the connection status (for example, to perform some action when the user connects to the network the next time or, on the contrary, to stop receiving data from the net when the user hangs up the modem). For this, you need to use one of the event macros described below.
|
12
|
+
# This class is different from other wxWidgets classes in that there is at most one instance of this class in the program accessed via {Wx::DialUpManager.create} and you can't create the objects of this class directly.
|
13
|
+
# === Events emitted by this class
|
14
|
+
#
|
15
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::DialUpEvent} events.
|
16
|
+
# Event handler methods for events emitted by this class:
|
17
|
+
#
|
18
|
+
# - {Wx::EvtHandler#evt_dialup_connected}(meth = nil, &block): A connection with the network was established.
|
19
|
+
#
|
20
|
+
# - {Wx::EvtHandler#evt_dialup_disconnected}(meth = nil, &block): The connection with the network was lost.
|
21
|
+
#
|
22
|
+
# ===
|
23
|
+
#
|
24
|
+
# Category: {Wx::Networking}
|
25
|
+
# @see Dialup Sample
|
26
|
+
# @see Wx::DialUpEvent
|
27
|
+
#
|
28
|
+
#
|
29
|
+
#
|
30
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
31
|
+
class DialUpManager < ::Object
|
32
|
+
|
33
|
+
# Cancel dialing the number initiated with {Wx::DialUpManager#dial} with async parameter equal to true.
|
34
|
+
# This won't result in a DISCONNECTED event being sent.
|
35
|
+
# @see Wx::DialUpManager#is_dialing
|
36
|
+
# @return [Boolean]
|
37
|
+
def cancel_dialing; end
|
38
|
+
|
39
|
+
# Dial the given ISP, use username and password to authenticate.
|
40
|
+
# The parameters are only used under Windows currently, for Unix you should use {Wx::DialUpManager#set_connect_command} to customize this functions behaviour.
|
41
|
+
# If no nameOfISP is given, the function will select the default one (proposing the user to choose among all connections defined on this machine) and if no username and/or password are given, the function will try to do without them, but will ask the user if really needed.
|
42
|
+
# If async parameter is false, the function waits until the end of dialing and returns true upon successful completion.
|
43
|
+
# If async is true, the function only initiates the connection and returns immediately - the result is reported via events (an event is sent anyhow, but if dialing failed it will be a DISCONNECTED one).
|
44
|
+
# @param nameOfISP [String]
|
45
|
+
# @param username [String]
|
46
|
+
# @param password [String]
|
47
|
+
# @param async [Boolean]
|
48
|
+
# @return [Boolean]
|
49
|
+
def dial(nameOfISP=(''), username=(''), password=(''), async=true) end
|
50
|
+
|
51
|
+
# Disable automatic check for connection status change - notice that the {Wx::EVT_DIALUP_XXX} events won't be sent any more either.
|
52
|
+
# @return [void]
|
53
|
+
def disable_auto_check_online_status; end
|
54
|
+
|
55
|
+
# Enable automatic checks for the connection status and sending of <code>wxEVT_DIALUP_CONNECTED/wxEVT_DIALUP_DISCONNECTED</code> events.
|
56
|
+
# The interval parameter is only for Unix where we do the check manually and specifies how often should we repeat the check (each minute by default). Under Windows, the notification about the change of connection status is sent by the system and so we don't do any polling and this parameter is ignored.
|
57
|
+
# false if couldn't set up automatic check for online status.
|
58
|
+
# @param nSeconds [Integer]
|
59
|
+
# @return [Boolean]
|
60
|
+
def enable_auto_check_online_status(nSeconds=60) end
|
61
|
+
|
62
|
+
# This function is only implemented under Windows.
|
63
|
+
# Fills the array with the names of all possible values for the first parameter to {Wx::DialUpManager#dial} on this machine and returns their number (may be 0).
|
64
|
+
# @return [Array<String>]
|
65
|
+
def get_isp_names; end
|
66
|
+
alias_method :isp_names, :get_isp_names
|
67
|
+
|
68
|
+
# Hang up the currently active dial up connection.
|
69
|
+
# @return [Boolean]
|
70
|
+
def hang_up; end
|
71
|
+
|
72
|
+
# Returns true if the computer has a permanent network connection (i.e.
|
73
|
+
# \ is on a LAN) and so there is no need to use {Wx::DialUpManager#dial} function to go online.
|
74
|
+
# This function tries to guess the result and it is not always guaranteed to be correct, so it is better to ask user for confirmation or give him a possibility to override it.
|
75
|
+
# @return [Boolean]
|
76
|
+
def is_always_online; end
|
77
|
+
alias_method :always_online?, :is_always_online
|
78
|
+
|
79
|
+
# Returns true if (async) dialing is in progress.
|
80
|
+
#
|
81
|
+
# @see Wx::DialUpManager#dial
|
82
|
+
# @return [Boolean]
|
83
|
+
def is_dialing; end
|
84
|
+
alias_method :dialing?, :is_dialing
|
85
|
+
|
86
|
+
# Returns true if the dialup manager was initialized correctly.
|
87
|
+
# If this function returns false, no other functions will work either, so it is a good idea to call this function and check its result before calling any other {Wx::DialUpManager} methods.
|
88
|
+
# @return [Boolean]
|
89
|
+
def is_ok; end
|
90
|
+
alias_method :ok?, :is_ok
|
91
|
+
|
92
|
+
# Returns true if the computer is connected to the network: under Windows, this just means that a RAS connection exists, under Unix we check that the "well-known host" (as specified by {Wx::DialUpManager#set_well_known_host}) is reachable.
|
93
|
+
# @return [Boolean]
|
94
|
+
def is_online; end
|
95
|
+
alias_method :online?, :is_online
|
96
|
+
|
97
|
+
# This method is for Unix only.
|
98
|
+
# Sets the commands to start up the network and to hang up again.
|
99
|
+
# @param commandDial [String]
|
100
|
+
# @param commandHangup [String]
|
101
|
+
# @return [void]
|
102
|
+
def set_connect_command(commandDial=("/USR/BIN/PON"), commandHangup=("/USR/BIN/POFF")) end
|
103
|
+
alias_method :connect_command=, :set_connect_command
|
104
|
+
|
105
|
+
# Sometimes the built-in logic for determining the online status may fail, so, in general, the user should be allowed to override it.
|
106
|
+
# This function allows forcefully setting the online status - whatever our internal algorithm may think about it.
|
107
|
+
# @see Wx::DialUpManager#is_online
|
108
|
+
# @param isOnline [Boolean]
|
109
|
+
# @return [void]
|
110
|
+
def set_online_status(isOnline=true) end
|
111
|
+
alias_method :online_status=, :set_online_status
|
112
|
+
|
113
|
+
# This method is for Unix only.
|
114
|
+
# Under Unix, the value of well-known host is used to check whether we're connected to the internet. It is unused under Windows, but this function is always safe to call. The default value is <code>"www.yahoo.com:80"</code>.
|
115
|
+
# @param hostname [String]
|
116
|
+
# @param portno [Integer]
|
117
|
+
# @return [void]
|
118
|
+
def set_well_known_host(hostname, portno=80) end
|
119
|
+
alias_method :well_known_host=, :set_well_known_host
|
120
|
+
|
121
|
+
# This function should create and return the object of the platform-specific class derived from {Wx::DialUpManager}.
|
122
|
+
# You should delete the pointer when you are done with it.
|
123
|
+
# @return [Wx::DialUpManager]
|
124
|
+
def self.create; end
|
125
|
+
|
126
|
+
end # DialUpManager
|
127
|
+
|
128
|
+
|
129
|
+
end
|