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
@@ -0,0 +1,381 @@
|
|
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
|
+
# The {Wx::AppTraits} class defines various configurable aspects of a {Wx::App}.
|
10
|
+
# You can access it using {Wx::App#get_traits} function and you can create your own {Wx::AppTraits} overriding the {Wx::App#create_traits} function.
|
11
|
+
# Note that {Wx::AppTraits} is an abstract class since it contains many pure virtual functions. In fact, by default, wxWidgets creates a {Wx::ConsoleAppTraits} object for console applications (i.e. those applications linked against {Wx::Base} library only - see the Library List page) and a {Wx::GUIAppTraits} object for GUI applications. Both these classes are derived by {Wx::AppTraits} and represent concrete implementation of the {Wx::AppTraits} interface.
|
12
|
+
# ===
|
13
|
+
#
|
14
|
+
# Category: Application and System configuration
|
15
|
+
# @see wxApp Overview
|
16
|
+
# @see Wx::App
|
17
|
+
#
|
18
|
+
#
|
19
|
+
class AppTraits < ::Object
|
20
|
+
|
21
|
+
# This method returns the name of the desktop environment currently running in a Unix desktop.
|
22
|
+
# Currently only "KDE" or "GNOME" are supported and the code uses the X11 session protocol vendor name to figure out, which desktop environment is running. The method returns an empty string otherwise and on all other platforms.
|
23
|
+
# @return [String]
|
24
|
+
def get_desktop_environment; end
|
25
|
+
alias_method :desktop_environment, :get_desktop_environment
|
26
|
+
|
27
|
+
# Returns the {Wx::StandardPaths} object for the application.
|
28
|
+
# It's normally the same for {Wx::Base} and {Wx::GUI} except in the case of {Wx::Mac} and {Wx::Cocoa}.
|
29
|
+
# The returned reference is to a {Wx::StandardPathsBase} class but you can consider it to be equivalent to {Wx::StandardPaths} (which is documented).
|
30
|
+
# @return [Wx::StandardPaths]
|
31
|
+
def get_standard_paths; end
|
32
|
+
alias_method :standard_paths, :get_standard_paths
|
33
|
+
|
34
|
+
# Returns the wxWidgets port ID used by the running program and eventually fills the given pointers with the values of the major, minor, and micro digits of the native toolkit currently used.
|
35
|
+
# The version numbers returned are thus detected at run-time and not compile-time (except when this is not possible e.g. {Wx::Motif}).
|
36
|
+
# E.g. if your program is using wxGTK port this function will return {Wx::PortId::PORT_GTK} and put in given pointers the versions of the GTK library in use. See {Wx::PlatformInfo} for more details.
|
37
|
+
# If a micro version is not available it will have a value of 0.
|
38
|
+
# @return [Array(Wx::PortId,Integer,Integer,Integer)]
|
39
|
+
def get_toolkit_version; end
|
40
|
+
alias_method :toolkit_version, :get_toolkit_version
|
41
|
+
|
42
|
+
# Returns true if the library was built as {Wx::Universal}.
|
43
|
+
# Always returns false for {Wx::Base}-only apps.
|
44
|
+
# @return [Boolean]
|
45
|
+
def is_using_universal_widgets; end
|
46
|
+
alias_method :using_universal_widgets?, :is_using_universal_widgets
|
47
|
+
|
48
|
+
# Shows the assert dialog with the specified message in GUI mode or just prints the string to stderr in console mode.
|
49
|
+
# Returns true to suppress subsequent asserts, false to continue as before.
|
50
|
+
# @param msg [String]
|
51
|
+
# @return [Boolean]
|
52
|
+
def show_assert_dialog(msg) end
|
53
|
+
|
54
|
+
# Shows a message box with the given text and title if possible.
|
55
|
+
# In some ports, e.g. wxMSW, a message box will always be shown, while in the other ones it will be only done if the GUI is available (e.g. X11 display was successfully opened for X11-based ports) and the function simply returns false without doing anything otherwise.
|
56
|
+
# This function is safe in the sense that it can always be called, even before creating {Wx::App}, similarly to {safe_show_message} which is implemented by calling this function and then logging the message to standard error stream if it returned false.
|
57
|
+
#
|
58
|
+
# true if the message box was shown or false otherwise.
|
59
|
+
# @param text [String] The text to show to the user.
|
60
|
+
# @param title [String] The title of the message box shown to the user.
|
61
|
+
# @return [Boolean]
|
62
|
+
def safe_message_box(text, title) end
|
63
|
+
|
64
|
+
# Helper function mostly useful for derived classes {Wx::AppTraits#show_assert_dialog} implementation.
|
65
|
+
# Returns the stack frame as a plain (and possibly empty) {Wx::String}.
|
66
|
+
# This function is only available when {Wx::Setup::USE_STACKWALKER} is 1.
|
67
|
+
# @return [String]
|
68
|
+
def get_assert_stack_trace; end
|
69
|
+
alias_method :assert_stack_trace, :get_assert_stack_trace
|
70
|
+
|
71
|
+
end # AppTraits
|
72
|
+
|
73
|
+
# {Wx::StandardPaths} returns the standard locations in the file system and should be used by applications to find their data files in a portable way.
|
74
|
+
# Note that you must not create objects of class {Wx::StandardPaths} directly, but use the global standard paths object returned by {Wx::StandardPaths.get} (which can be of a type derived from {Wx::StandardPaths} and not of exactly this type) and call the methods you need on it. The object returned by {Wx::StandardPaths.get} may be customized by overriding {Wx::AppTraits#get_standard_paths} methods.
|
75
|
+
# In the description of the methods below, the example return values are given for the Unix, Windows and macOS systems, however please note that these are just the examples and the actual values may differ. For example, under Windows: the system administrator may change the standard directories locations, e.g. the Windows directory may be named <code>"W:\Win2003"</code> instead of the default <code>"C:\Windows"</code>.
|
76
|
+
# Notice that in the examples below the string appinfo may be either just the application name (as returned by {Wx::App#get_app_name}) or a combination of the vendor name ({Wx::App#get_vendor_name}) and the application name, with a path separator between them. By default, only the application name is used, use {Wx::StandardPaths#use_app_info} to change this.
|
77
|
+
# The other placeholders should be self-explanatory: the string username should be replaced with the value the name of the currently logged in user. and prefix is only used under Unix and is <code>/usr/local</code> by default but may be changed using {Wx::StandardPaths#set_install_prefix}.
|
78
|
+
# The directories returned by the methods of this class may or may not exist. If they don't exist, it's up to the caller to create them, {Wx::StandardPaths} doesn't do it.
|
79
|
+
# Finally note that these functions only work with standardly packaged applications. I.e. under Unix you should follow the standard installation conventions and under Mac you should create your application bundle according to the Apple guidelines. Again, this class doesn't help you to do it.
|
80
|
+
# This class is MT-safe: its methods may be called concurrently from different threads without additional locking.
|
81
|
+
# ===
|
82
|
+
#
|
83
|
+
# Category: File Handling
|
84
|
+
# @see Wx::FileConfig
|
85
|
+
#
|
86
|
+
#
|
87
|
+
class StandardPaths < ::Object
|
88
|
+
|
89
|
+
# Possible values for category parameter of {Wx::StandardPaths#get_localized_resources_dir}.
|
90
|
+
#
|
91
|
+
#
|
92
|
+
#
|
93
|
+
class ResourceCat < Wx::Enum
|
94
|
+
|
95
|
+
# No special category, this is the default.
|
96
|
+
#
|
97
|
+
ResourceCat_None = Wx::StandardPaths::ResourceCat.new(0)
|
98
|
+
|
99
|
+
# Message catalog resources category.
|
100
|
+
#
|
101
|
+
ResourceCat_Messages = Wx::StandardPaths::ResourceCat.new(1)
|
102
|
+
|
103
|
+
end # ResourceCat
|
104
|
+
|
105
|
+
# Possible values for userDir parameter of {Wx::StandardPaths#get_user_dir}.
|
106
|
+
#
|
107
|
+
#
|
108
|
+
#
|
109
|
+
class Dir < Wx::Enum
|
110
|
+
|
111
|
+
# Directory for caching files.
|
112
|
+
#
|
113
|
+
Dir_Cache = Wx::StandardPaths::Dir.new(0)
|
114
|
+
|
115
|
+
# Directory containing user documents.
|
116
|
+
#
|
117
|
+
Dir_Documents = Wx::StandardPaths::Dir.new(1)
|
118
|
+
|
119
|
+
# Directory containing files on the users desktop.
|
120
|
+
#
|
121
|
+
Dir_Desktop = Wx::StandardPaths::Dir.new(2)
|
122
|
+
|
123
|
+
# Directory for downloaded files.
|
124
|
+
#
|
125
|
+
Dir_Downloads = Wx::StandardPaths::Dir.new(3)
|
126
|
+
|
127
|
+
# Directory containing music files.
|
128
|
+
#
|
129
|
+
Dir_Music = Wx::StandardPaths::Dir.new(4)
|
130
|
+
|
131
|
+
# Directory containing picture files.
|
132
|
+
#
|
133
|
+
Dir_Pictures = Wx::StandardPaths::Dir.new(5)
|
134
|
+
|
135
|
+
# Directory containing video files.
|
136
|
+
#
|
137
|
+
Dir_Videos = Wx::StandardPaths::Dir.new(6)
|
138
|
+
|
139
|
+
end # Dir
|
140
|
+
|
141
|
+
# Possible values for {Wx::StandardPaths#set_file_layout} argument.
|
142
|
+
#
|
143
|
+
# The elements of this enum correspond to the different file layout standards under Unix systems.
|
144
|
+
#
|
145
|
+
class FileLayout < Wx::Enum
|
146
|
+
|
147
|
+
# Use the classic file layout.
|
148
|
+
#
|
149
|
+
FileLayout_Classic = Wx::StandardPaths::FileLayout.new(0)
|
150
|
+
|
151
|
+
# Use a XDG styled file layout.
|
152
|
+
#
|
153
|
+
FileLayout_XDG = Wx::StandardPaths::FileLayout.new(1)
|
154
|
+
|
155
|
+
end # FileLayout
|
156
|
+
|
157
|
+
# Possible values for {Wx::StandardPaths#make_config_file_name} naming convention argument.
|
158
|
+
#
|
159
|
+
# The values in this enum are only used under Unix and only when using the classic Unix convention for file layout, in XDG mode, XDG naming convention is used unconditionally.
|
160
|
+
#
|
161
|
+
class ConfigFileConv < Wx::Enum
|
162
|
+
|
163
|
+
# Use the class Unix dot-file convention.
|
164
|
+
#
|
165
|
+
ConfigFileConv_Dot = Wx::StandardPaths::ConfigFileConv.new(0)
|
166
|
+
|
167
|
+
# Use <code></code>.conf extension for the file names.
|
168
|
+
#
|
169
|
+
ConfigFileConv_Ext = Wx::StandardPaths::ConfigFileConv.new(1)
|
170
|
+
|
171
|
+
end # ConfigFileConv
|
172
|
+
|
173
|
+
# MSW-specific function undoing the effect of {Wx::StandardPaths#ignore_app_sub_dir} calls.
|
174
|
+
# After a call to this function the program directory will be exactly the directory containing the main application binary, i.e. it undoes the effect of any previous {Wx::StandardPaths#ignore_app_sub_dir} calls including the ones done indirectly by {Wx::StandardPaths#ignore_app_build_sub_dirs} called from the class constructor.
|
175
|
+
# @return [void]
|
176
|
+
def dont_ignore_app_sub_dir; end
|
177
|
+
|
178
|
+
# Return the directory for the document files used by this application.
|
179
|
+
# If the application-specific directory doesn't exist, this function returns {Wx::StandardPaths#get_documents_dir}.
|
180
|
+
# Example return values:
|
181
|
+
#
|
182
|
+
# - Unix: <code>~/appinfo</code>
|
183
|
+
# - Windows: <code>"C:\Users\username\Documents\appinfo"</code> or <code>"C:\Documents and Settings\username\My Documents\appinfo"</code>
|
184
|
+
# - Mac: <code>~/Documents/appinfo</code>
|
185
|
+
# @return [String]
|
186
|
+
def get_app_documents_dir; end
|
187
|
+
alias_method :app_documents_dir, :get_app_documents_dir
|
188
|
+
|
189
|
+
# Return the directory containing the system config files.
|
190
|
+
# Example return values:
|
191
|
+
#
|
192
|
+
# - Unix: <code>/etc</code>
|
193
|
+
# - Windows: <code>"C:\ProgramData\appinfo"</code> or <code>"C:\Documents and Settings\All Users\Application Data\appinfo"</code>
|
194
|
+
# - Mac: <code>/Library/Preferences</code>
|
195
|
+
#
|
196
|
+
# Under Windows this includes appinfo which makes it inconsistent with other ports.
|
197
|
+
# @see Wx::FileConfig
|
198
|
+
# @return [String]
|
199
|
+
def get_config_dir; end
|
200
|
+
alias_method :config_dir, :get_config_dir
|
201
|
+
|
202
|
+
# Return the location of the applications global, i.e. not user-specific, data files.
|
203
|
+
# Example return values:
|
204
|
+
#
|
205
|
+
# - Unix: <code>prefix/share/appinfo</code>
|
206
|
+
# - Windows: the directory where the executable file is located
|
207
|
+
# - Mac: <code>appinfo.app/Contents/SharedSupport</code> bundle subdirectory
|
208
|
+
#
|
209
|
+
# Under Unix (only) it is possible to override the default value returned from this function by setting the value of WX_APPNAME_DATA_DIR environment variable to the directory to use (where APPNAME is the upper-cased value of {Wx::App#get_app_name}). This is useful in order to be able to run applications using this function without installing them as you can simply set this environment variable to the source directory location to allow the application to find its files there.
|
210
|
+
# @see Wx::StandardPaths#get_local_data_dir
|
211
|
+
# @return [String]
|
212
|
+
def get_data_dir; end
|
213
|
+
alias_method :data_dir, :get_data_dir
|
214
|
+
|
215
|
+
# Same as calling {Wx::StandardPaths#get_user_dir} with Dir_Documents parameter.
|
216
|
+
#
|
217
|
+
# @see Wx::StandardPaths#get_app_documents_dir
|
218
|
+
# @see Wx::StandardPaths#get_user_dir
|
219
|
+
# @return [String]
|
220
|
+
def get_documents_dir; end
|
221
|
+
alias_method :documents_dir, :get_documents_dir
|
222
|
+
|
223
|
+
# Return the directory and the filename for the current executable.
|
224
|
+
# Example return values:
|
225
|
+
#
|
226
|
+
# - Unix: <code>/usr/local/bin/exename</code>
|
227
|
+
# - Windows: <code>"C:\Programs\AppFolder\exename.exe"</code>
|
228
|
+
# - Mac: <code>/Applications/exename</code>.app/Contents/MacOS/exename
|
229
|
+
# @return [String]
|
230
|
+
def get_executable_path; end
|
231
|
+
alias_method :executable_path, :get_executable_path
|
232
|
+
|
233
|
+
# Return the location for application data files which are host-specific and can't, or shouldn't, be shared with the other machines.
|
234
|
+
# This is the same as {Wx::StandardPaths#get_data_dir} except under Unix where it returns <code>/etc/appinfo</code>.
|
235
|
+
# @return [String]
|
236
|
+
def get_local_data_dir; end
|
237
|
+
alias_method :local_data_dir, :get_local_data_dir
|
238
|
+
|
239
|
+
# Return the localized resources directory containing the resource files of the specified category for the given language.
|
240
|
+
# In general this is just the same as lang subdirectory of {Wx::StandardPaths#get_resources_dir} (or lang.lproj under macOS) but is something quite different for message catalog category under Unix where it returns the standard <code>prefix/share/locale/lang/LC_MESSAGES</code> directory.
|
241
|
+
# @param lang [String]
|
242
|
+
# @param category [Wx::wxStandardPaths::ResourceCat]
|
243
|
+
# @return [String]
|
244
|
+
def get_localized_resources_dir(lang, category=Wx::StandardPaths::ResourceCat::ResourceCat_None) end
|
245
|
+
alias_method :localized_resources_dir, :get_localized_resources_dir
|
246
|
+
|
247
|
+
# Return the directory where the loadable modules (plugins) live.
|
248
|
+
# Example return values:
|
249
|
+
#
|
250
|
+
# - Unix: <code>prefix/lib/appinfo</code>
|
251
|
+
# - Windows: the directory of the executable file
|
252
|
+
# - Mac: <code>appinfo.app/Contents/PlugIns</code> bundle subdirectory
|
253
|
+
# @see Wx::DynamicLibrary
|
254
|
+
# @return [String]
|
255
|
+
def get_plugins_dir; end
|
256
|
+
alias_method :plugins_dir, :get_plugins_dir
|
257
|
+
|
258
|
+
# Return the directory where the application resource files are located.
|
259
|
+
# The resources are the auxiliary data files needed for the application to run and include, for example, image and sound files it might use.
|
260
|
+
# This function is the same as {Wx::StandardPaths#get_data_dir} for all platforms except macOS. Example return values:
|
261
|
+
#
|
262
|
+
# - Unix: <code>prefix/share/appinfo</code>
|
263
|
+
# - Windows: the directory where the executable file is located
|
264
|
+
# - Mac: <code>appinfo.app/Contents/Resources</code> bundle subdirectory
|
265
|
+
# @see Wx::StandardPaths#get_localized_resources_dir
|
266
|
+
# @return [String]
|
267
|
+
def get_resources_dir; end
|
268
|
+
alias_method :resources_dir, :get_resources_dir
|
269
|
+
|
270
|
+
# Return the directory for storing temporary files, for the current user.
|
271
|
+
# Same as Wx::FileName#get_temp_dir. To create unique temporary files, it is best to use Wx::FileName#create_temp_file_name for correct behaviour when multiple processes are attempting to create temporary files.
|
272
|
+
# @return [String]
|
273
|
+
def get_temp_dir; end
|
274
|
+
alias_method :temp_dir, :get_temp_dir
|
275
|
+
|
276
|
+
# Return the directory for the user config files.
|
277
|
+
# This directory is:
|
278
|
+
#
|
279
|
+
# - Unix: <code>~</code> (the home directory) or XDG_CONFIG_HOME depending on {Wx::StandardPaths#get_file_layout} return value
|
280
|
+
# - Windows: <code>"C:\Users\username\AppData\Roaming"</code> or <code>"C:\Documents and Settings\username\Application Data"</code>
|
281
|
+
# - Mac: <code>~/Library/Preferences</code>
|
282
|
+
#
|
283
|
+
# Only use this method if you have a single configuration file to put in this directory, otherwise {Wx::StandardPaths#get_user_data_dir} is more appropriate as the latter adds appinfo to the path, unlike this function.
|
284
|
+
# @return [String]
|
285
|
+
def get_user_config_dir; end
|
286
|
+
alias_method :user_config_dir, :get_user_config_dir
|
287
|
+
|
288
|
+
# Return the directory for the user-dependent application data files:
|
289
|
+
# - Unix: <code>~/</code>.appinfo
|
290
|
+
# - Windows: <code>"C:\Users\username\AppData\Roaming\appinfo"</code> or <code>"C:\Documents and Settings\username\Application Data\appinfo"</code>
|
291
|
+
# - Mac: <code>"~/Library/Application Support/appinfo"</code>
|
292
|
+
# @return [String]
|
293
|
+
def get_user_data_dir; end
|
294
|
+
alias_method :user_data_dir, :get_user_data_dir
|
295
|
+
|
296
|
+
# Return the path of the specified user data directory.
|
297
|
+
# If the value could not be determined the users home directory is returned.
|
298
|
+
# On Unix this (newer) method always respects the XDG base directory specification, even if {Wx::StandardPaths#set_file_layout} with FileLayout_XDG hadn't been called.
|
299
|
+
# @param userDir [Wx::wxStandardPaths::Dir]
|
300
|
+
# @return [String]
|
301
|
+
def get_user_dir(userDir) end
|
302
|
+
alias_method :user_dir, :get_user_dir
|
303
|
+
|
304
|
+
# Return the directory for user data files which shouldn't be shared with the other machines.
|
305
|
+
# This is the same as {Wx::StandardPaths#get_user_data_dir} for all platforms except Windows where it returns <code>"C:\Users\username\AppData\Local\appinfo"</code> or <code>"C:\Documents and Settings\username\Local Settings\Application Data\appinfo"</code>
|
306
|
+
# @return [String]
|
307
|
+
def get_user_local_data_dir; end
|
308
|
+
alias_method :user_local_data_dir, :get_user_local_data_dir
|
309
|
+
|
310
|
+
# MSW-specific function to customize application directory detection.
|
311
|
+
# This class supposes that data, plugins &c files are located under the program directory which is the directory containing the application binary itself. But sometimes this binary may be in a subdirectory of the main program directory, e.g. this happens in at least the following common cases:
|
312
|
+
#
|
313
|
+
# - The program is in "bin" subdirectory of the installation directory.
|
314
|
+
# - The program is in "debug" subdirectory of the directory containing sources and data files during development
|
315
|
+
#
|
316
|
+
# By calling this function you instruct the class to remove the last component of the path if it matches its argument. Notice that it may be called more than once, e.g. you can call both IgnoreAppSubDir("bin") and IgnoreAppSubDir("debug") to take care of both production and development cases above but that each call will only remove the last path component. Finally note that the argument can contain wild cards so you can also call IgnoreAppSubDir("vc*msw*") to ignore all build directories at once when using wxWidgets-inspired output directories names.
|
317
|
+
# @see Wx::StandardPaths#ignore_app_build_sub_dirs
|
318
|
+
# @param subdirPattern [String] The subdirectory containing the application binary which should be ignored when determining the top application directory. The pattern is case-insensitive and may contain wild card characters <code>'</code>?' and <code>'*'</code>.
|
319
|
+
# @return [void]
|
320
|
+
def ignore_app_sub_dir(subdirPattern) end
|
321
|
+
|
322
|
+
# MSW-specific function to ignore all common build directories.
|
323
|
+
# This function calls {Wx::StandardPaths#ignore_app_sub_dir} with all common values for build directory, e.g. <code>"debug"</code> and <code>"release"</code>.
|
324
|
+
# It is called by the class constructor and so the build directories are always ignored by default. You may use {Wx::StandardPaths#dont_ignore_app_sub_dir} to avoid ignoring them if this is inappropriate for your application.
|
325
|
+
# @return [void]
|
326
|
+
def ignore_app_build_sub_dirs; end
|
327
|
+
|
328
|
+
# Controls what application information is used when constructing paths that should be unique to this program, such as the application data directory, the plugins directory on Unix, etc.
|
329
|
+
# Valid values for info are:
|
330
|
+
#
|
331
|
+
# - AppInfo_None: use neither application nor vendor name in the paths.
|
332
|
+
# - AppInfo_AppName: use the application name in the paths.
|
333
|
+
# - AppInfo_VendorName: use the vendor name in the paths, usually used combined with AppInfo_AppName, i.e. as <code>AppInfo_AppName | AppInfo_VendorName</code>.
|
334
|
+
#
|
335
|
+
# By default, only the application name is used.
|
336
|
+
# @param info [Integer]
|
337
|
+
# @return [void]
|
338
|
+
def use_app_info(info) end
|
339
|
+
|
340
|
+
# Sets the current file layout.
|
341
|
+
# The default layout is FileLayout_Classic for compatibility, however newer applications are encouraged to set it to FileLayout_XDG on program startup.
|
342
|
+
# @param layout [Wx::wxStandardPaths::FileLayout]
|
343
|
+
# @return [void]
|
344
|
+
def set_file_layout(layout) end
|
345
|
+
alias_method :file_layout=, :set_file_layout
|
346
|
+
|
347
|
+
# Returns the current file layout.
|
348
|
+
#
|
349
|
+
# @see Wx::StandardPaths#set_file_layout
|
350
|
+
# @return [Wx::wxStandardPaths::FileLayout]
|
351
|
+
def get_file_layout; end
|
352
|
+
alias_method :file_layout, :get_file_layout
|
353
|
+
|
354
|
+
# Return the file name which would be used by {Wx::FileConfig} if it were constructed with basename.
|
355
|
+
# conv is used to construct the name of the file under Unix and only matters when using the class file layout, i.e. if {Wx::StandardPaths#set_file_layout} had not been called with FileLayout_XDG argument. In this case, this argument is used to determine whether to use an extension or a leading dot. When following XDG specification, the function always appends the extension, regardless of conv value. Finally, this argument is not used at all under non-Unix platforms.
|
356
|
+
# @param basename [String]
|
357
|
+
# @param conv [Wx::wxStandardPaths::ConfigFileConv]
|
358
|
+
# @return [String]
|
359
|
+
def make_config_file_name(basename, conv=Wx::StandardPaths::ConfigFileConv::ConfigFileConv_Ext) end
|
360
|
+
|
361
|
+
# Returns reference to the unique global standard paths object.
|
362
|
+
# @return [Wx::StandardPaths]
|
363
|
+
def self.get; end
|
364
|
+
|
365
|
+
# Returns location of Windows shell special folder.
|
366
|
+
# This function is, by definition, MSW-specific. It can be used to access pre-defined shell directories not covered by the existing methods of this class, e.g.:
|
367
|
+
# ```
|
368
|
+
# #ifdef __WXMSW__
|
369
|
+
# // get the location of files waiting to be burned on a CD
|
370
|
+
# wxString cdburnArea =
|
371
|
+
# wxStandardPaths::MSWGetShellDir(CSIDL_CDBURN_AREA);
|
372
|
+
# #endif // __WXMSW__
|
373
|
+
# ```
|
374
|
+
# @param csidl [Integer]
|
375
|
+
# @return [String]
|
376
|
+
def self.msw_get_shell_dir(csidl) end
|
377
|
+
|
378
|
+
end # StandardPaths
|
379
|
+
|
380
|
+
|
381
|
+
end
|
@@ -442,7 +442,7 @@ module Wx
|
|
442
442
|
|
443
443
|
# Delete the given provider.
|
444
444
|
# @param provider [Wx::ArtProvider]
|
445
|
-
# @return [
|
445
|
+
# @return [Boolean]
|
446
446
|
def self.delete(provider) end
|
447
447
|
|
448
448
|
# Query registered providers for bitmap with given ID.
|
@@ -509,11 +509,11 @@ module Wx
|
|
509
509
|
# Returns true if the platform uses native icons provider that should take precedence over any customizations.
|
510
510
|
# This is true for any platform that has user-customizable icon themes, currently only wxGTK.
|
511
511
|
# A typical use for this method is to decide whether a custom art provider should be plugged in using {Wx::ArtProvider.push} or {Wx::ArtProvider.push_back}.
|
512
|
-
# @return [
|
512
|
+
# @return [Boolean]
|
513
513
|
def self.has_native_provider; end
|
514
514
|
|
515
515
|
# Remove latest added provider and delete it.
|
516
|
-
# @return [
|
516
|
+
# @return [Boolean]
|
517
517
|
def self.pop; end
|
518
518
|
|
519
519
|
# Register new art provider and add it to the top of providers stack (i.e.
|
@@ -101,17 +101,17 @@ module Wx::AUI
|
|
101
101
|
# There are several versions of this function. The first version allows the full spectrum of pane parameter possibilities. The second version is used for simpler user interfaces which do not require as much configuration. The last version allows a drop position to be specified, which will determine where the pane will be added.
|
102
102
|
# @param window [Wx::Window]
|
103
103
|
# @param pane_info [Wx::AUI::AuiPaneInfo]
|
104
|
-
# @return [
|
104
|
+
# @return [Boolean]
|
105
105
|
# @overload add_pane(window, direction=Wx::Direction::LEFT, caption=(''))
|
106
106
|
# @param window [Wx::Window]
|
107
107
|
# @param direction [Integer]
|
108
108
|
# @param caption [String]
|
109
|
-
# @return [
|
109
|
+
# @return [Boolean]
|
110
110
|
# @overload add_pane(window, pane_info, drop_pos)
|
111
111
|
# @param window [Wx::Window]
|
112
112
|
# @param pane_info [Wx::AUI::AuiPaneInfo]
|
113
113
|
# @param drop_pos [Array(Integer, Integer), Wx::Point]
|
114
|
-
# @return [
|
114
|
+
# @return [Boolean]
|
115
115
|
def add_pane(*args) end
|
116
116
|
|
117
117
|
# This function is used by controls to calculate the drop hint rectangle.
|
@@ -126,7 +126,7 @@ module Wx::AUI
|
|
126
126
|
|
127
127
|
# Check if a key modifier is pressed (actually {Wx::KeyCode::K_CONTROL} or {Wx::KeyCode::K_ALT}) while dragging the frame to not dock the window.
|
128
128
|
# @param p [Wx::AUI::AuiPaneInfo]
|
129
|
-
# @return [
|
129
|
+
# @return [Boolean]
|
130
130
|
def can_dock_panel(p) end
|
131
131
|
alias_method :can_dock_panel?, :can_dock_panel
|
132
132
|
|
@@ -146,7 +146,7 @@ module Wx::AUI
|
|
146
146
|
# Tells the {Wx::AUI::AuiManager} to stop managing the pane specified by window.
|
147
147
|
# The window, if in a floated frame, is reparented to the frame managed by {Wx::AUI::AuiManager}.
|
148
148
|
# @param window [Wx::Window]
|
149
|
-
# @return [
|
149
|
+
# @return [Boolean]
|
150
150
|
def detach_pane(window) end
|
151
151
|
|
152
152
|
# This function is used by controls to draw the hint window.
|
@@ -166,10 +166,8 @@ module Wx::AUI
|
|
166
166
|
|
167
167
|
# Returns the current dock constraint values.
|
168
168
|
# See {Wx::AUI::AuiManager#set_dock_size_constraint} for more information.
|
169
|
-
# @
|
170
|
-
|
171
|
-
# @return [void]
|
172
|
-
def get_dock_size_constraint(widthpct, heightpct) end
|
169
|
+
# @return [Array(Float,Float)]
|
170
|
+
def get_dock_size_constraint; end
|
173
171
|
alias_method :dock_size_constraint, :get_dock_size_constraint
|
174
172
|
|
175
173
|
# Returns the current {Wx::AUI::AuiManagerOption}'s flags.
|
@@ -196,7 +194,7 @@ module Wx::AUI
|
|
196
194
|
# Returns true if windows are resized live.
|
197
195
|
# This function combines the check for {Wx::AUI::AuiManager.always_uses_live_resize} and, for the platforms where live resizing is optional, the check for {Wx::AUI::AuiManagerOption::AUI_MGR_LIVE_RESIZE} flag.
|
198
196
|
# Using this accessor allows to verify whether live resizing is being actually used.
|
199
|
-
# @return [
|
197
|
+
# @return [Boolean]
|
200
198
|
def has_live_resize; end
|
201
199
|
alias_method :has_live_resize?, :has_live_resize
|
202
200
|
|
@@ -210,7 +208,7 @@ module Wx::AUI
|
|
210
208
|
# @param window [Wx::Window]
|
211
209
|
# @param insert_location [Wx::AUI::AuiPaneInfo]
|
212
210
|
# @param insert_level [Integer]
|
213
|
-
# @return [
|
211
|
+
# @return [Boolean]
|
214
212
|
def insert_pane(window, insert_location, insert_level=Wx::AUI_INSERT_PANE) end
|
215
213
|
|
216
214
|
# {Wx::AUI::AuiManager#load_pane_info} is similar to LoadPerspective, with the exception that it only loads information about a single pane.
|
@@ -235,8 +233,8 @@ module Wx::AUI
|
|
235
233
|
#
|
236
234
|
# @see Wx::AUI::AuiManager#save_perspective
|
237
235
|
# @param perspective [String] Serialized layout information of a perspective (excl. pointers to UI elements).
|
238
|
-
# @param update [
|
239
|
-
# @return [
|
236
|
+
# @param update [Boolean] If update is true, {Wx::AUI::AuiManager#update} is automatically invoked, thus realizing the specified perspective on screen.
|
237
|
+
# @return [Boolean]
|
240
238
|
def load_perspective(perspective, update=true) end
|
241
239
|
|
242
240
|
# Maximize the given pane.
|
@@ -329,7 +327,7 @@ module Wx::AUI
|
|
329
327
|
# Returns true if live resize is always used on the current platform.
|
330
328
|
# If this function returns true, {Wx::AUI::AuiManagerOption::AUI_MGR_LIVE_RESIZE} flag is ignored and live resize is always used, whether it's specified or not.
|
331
329
|
# Currently this is the case for wxOSX and wxGTK3 ports, as live resizing is the only implemented method there.
|
332
|
-
# @return [
|
330
|
+
# @return [Boolean]
|
333
331
|
def self.always_uses_live_resize; end
|
334
332
|
|
335
333
|
# Calling this method will return the {Wx::AUI::AuiManager} for a given window.
|
@@ -35,14 +35,14 @@ module Wx::AUI
|
|
35
35
|
class AuiManagerEvent < Event
|
36
36
|
|
37
37
|
# Constructor.
|
38
|
-
# @param type [Wx::
|
38
|
+
# @param type [Wx::CommandLinkButton::EventType]
|
39
39
|
# @return [Wx::AUI::AuiManagerEvent]
|
40
40
|
def initialize(type=Wx::EVT_NULL) end
|
41
41
|
|
42
42
|
#
|
43
43
|
# true if this event can be vetoed.
|
44
44
|
# @see Wx::AUI::AuiManagerEvent#veto
|
45
|
-
# @return [
|
45
|
+
# @return [Boolean]
|
46
46
|
def can_veto; end
|
47
47
|
alias_method :can_veto?, :can_veto
|
48
48
|
|
@@ -61,7 +61,7 @@ module Wx::AUI
|
|
61
61
|
#
|
62
62
|
# true if this event was vetoed.
|
63
63
|
# @see Wx::AUI::AuiManagerEvent#veto
|
64
|
-
# @return [
|
64
|
+
# @return [Boolean]
|
65
65
|
def get_veto; end
|
66
66
|
|
67
67
|
#
|
@@ -83,7 +83,7 @@ module Wx::AUI
|
|
83
83
|
alias_method :button=, :set_button
|
84
84
|
|
85
85
|
# Sets whether or not this event can be vetoed.
|
86
|
-
# @param can_veto [
|
86
|
+
# @param can_veto [Boolean]
|
87
87
|
# @return [void]
|
88
88
|
def set_can_veto(can_veto) end
|
89
89
|
alias_method :can_veto=, :set_can_veto
|
@@ -108,7 +108,7 @@ module Wx::AUI
|
|
108
108
|
alias_method :pane=, :set_pane
|
109
109
|
|
110
110
|
# Cancels the action indicated by this event if {Wx::AUI::AuiManagerEvent#can_veto} is true.
|
111
|
-
# @param veto [
|
111
|
+
# @param veto [Boolean]
|
112
112
|
# @return [void]
|
113
113
|
def veto(veto=true) end
|
114
114
|
|
@@ -31,7 +31,7 @@ module Wx::AUI
|
|
31
31
|
# @param size [Array(Integer, Integer), Wx::Size]
|
32
32
|
# @param style [Integer]
|
33
33
|
# @param name [String]
|
34
|
-
# @return [
|
34
|
+
# @return [Boolean]
|
35
35
|
def create(parent, winid, title, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::DEFAULT_FRAME_STYLE, name=Wx::FrameNameStr) end
|
36
36
|
|
37
37
|
# @param menuBar [Wx::MenuBar]
|
@@ -72,7 +72,7 @@ module Wx::AUI
|
|
72
72
|
# Destroys the window safely.
|
73
73
|
# Use this function instead of the delete operator, since different window classes can be destroyed differently. Frames and dialogs are not destroyed immediately when this function is called they are added to a list of windows to be deleted on idle time, when all the window's events have been processed. This prevents problems with events being sent to non-existent windows.
|
74
74
|
# true if the window has either been successfully deleted, or it has been added to the list of windows pending real deletion.
|
75
|
-
# @return [
|
75
|
+
# @return [Boolean]
|
76
76
|
def destroy; end
|
77
77
|
|
78
78
|
# Shows or hides the window.
|
@@ -84,8 +84,8 @@ module Wx::AUI
|
|
84
84
|
# @see Wx::AUI::AuiMDIChildFrame#hide
|
85
85
|
# @see Wx::RadioBox#show
|
86
86
|
# @see Wx::ShowEvent.
|
87
|
-
# @param show [
|
88
|
-
# @return [
|
87
|
+
# @param show [Boolean] If true displays the window. Otherwise, hides it.
|
88
|
+
# @return [Boolean]
|
89
89
|
def show(show=true) end
|
90
90
|
|
91
91
|
# @param number [Integer]
|
@@ -105,10 +105,9 @@ module Wx::AUI
|
|
105
105
|
def set_status_text(text, number=0) end
|
106
106
|
alias_method :status_text=, :set_status_text
|
107
107
|
|
108
|
-
# @param
|
109
|
-
# @param widths_field [int]
|
108
|
+
# @param widths_field [Array<Integer>]
|
110
109
|
# @return [void]
|
111
|
-
def set_status_widths(
|
110
|
+
def set_status_widths(widths_field) end
|
112
111
|
|
113
112
|
# @param style [Integer]
|
114
113
|
# @param winid [Integer]
|
@@ -120,31 +119,31 @@ module Wx::AUI
|
|
120
119
|
def get_tool_bar; end
|
121
120
|
alias_method :tool_bar, :get_tool_bar
|
122
121
|
|
123
|
-
# @param maximize [
|
122
|
+
# @param maximize [Boolean]
|
124
123
|
# @return [void]
|
125
124
|
def maximize(maximize=true) end
|
126
125
|
|
127
126
|
# @return [void]
|
128
127
|
def restore; end
|
129
128
|
|
130
|
-
# @param iconize [
|
129
|
+
# @param iconize [Boolean]
|
131
130
|
# @return [void]
|
132
131
|
def iconize(iconize=true) end
|
133
132
|
|
134
|
-
# @return [
|
133
|
+
# @return [Boolean]
|
135
134
|
def is_maximized; end
|
136
135
|
alias_method :maximized?, :is_maximized
|
137
136
|
|
138
|
-
# @return [
|
137
|
+
# @return [Boolean]
|
139
138
|
def is_iconized; end
|
140
139
|
alias_method :iconized?, :is_iconized
|
141
140
|
|
142
|
-
# @param show [
|
141
|
+
# @param show [Boolean]
|
143
142
|
# @param style [Integer]
|
144
|
-
# @return [
|
143
|
+
# @return [Boolean]
|
145
144
|
def show_full_screen(show, style) end
|
146
145
|
|
147
|
-
# @return [
|
146
|
+
# @return [Boolean]
|
148
147
|
def is_full_screen; end
|
149
148
|
alias_method :full_screen?, :is_full_screen
|
150
149
|
|
@@ -31,7 +31,7 @@ module Wx::AUI
|
|
31
31
|
# @param size [Array(Integer, Integer), Wx::Size]
|
32
32
|
# @param style [Integer]
|
33
33
|
# @param name [String]
|
34
|
-
# @return [
|
34
|
+
# @return [Boolean]
|
35
35
|
def create(parent, winid, title, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DEFAULT_FRAME_STYLE|Wx::VSCROLL|Wx::HSCROLL), name=Wx::FrameNameStr) end
|
36
36
|
|
37
37
|
# @param provider [Wx::AUI::AuiTabArt]
|
@@ -90,7 +90,7 @@ module Wx::AUI
|
|
90
90
|
# @return [void]
|
91
91
|
def cascade; end
|
92
92
|
|
93
|
-
# @param orient [Orientation]
|
93
|
+
# @param orient [Wx::Orientation]
|
94
94
|
# @return [void]
|
95
95
|
def tile(orient=Wx::Orientation::HORIZONTAL) end
|
96
96
|
|