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
data/lib/wx/doc/gen/dc.rb
CHANGED
@@ -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
|
|
@@ -1219,7 +1195,7 @@ module Wx
|
|
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/dialog.rb
CHANGED
@@ -158,7 +158,7 @@ module Wx
|
|
158
158
|
# Returns true if this dialog can and should perform layout adaptation using {Wx::Dialog#do_layout_adaptation}, usually if the dialog is too large to fit on the display.
|
159
159
|
#
|
160
160
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
161
|
-
# @return [
|
161
|
+
# @return [Boolean]
|
162
162
|
def can_do_layout_adaptation; end
|
163
163
|
alias_method :can_do_layout_adaptation?, :can_do_layout_adaptation
|
164
164
|
|
@@ -169,7 +169,7 @@ module Wx
|
|
169
169
|
|
170
170
|
# Used for two-step dialog box construction.
|
171
171
|
#
|
172
|
-
# @see Wx::Dialog#
|
172
|
+
# @see Wx::Dialog#initialize
|
173
173
|
# @param parent [Wx::Window]
|
174
174
|
# @param id [Integer]
|
175
175
|
# @param title [String]
|
@@ -177,7 +177,7 @@ module Wx
|
|
177
177
|
# @param size [Array(Integer, Integer), Wx::Size]
|
178
178
|
# @param style [Integer]
|
179
179
|
# @param name [String]
|
180
|
-
# @return [
|
180
|
+
# @return [Boolean]
|
181
181
|
def create(parent, id, title, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::DEFAULT_DIALOG_STYLE, name=Wx::DialogNameStr) end
|
182
182
|
|
183
183
|
# Creates a sizer with standard buttons.
|
@@ -222,7 +222,7 @@ module Wx
|
|
222
222
|
# Performs layout adaptation, usually if the dialog is too large to fit on the display.
|
223
223
|
#
|
224
224
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
225
|
-
# @return [
|
225
|
+
# @return [Boolean]
|
226
226
|
def do_layout_adaptation; end
|
227
227
|
|
228
228
|
# Ends a modal dialog, passing a value to be returned from the {Wx::Dialog#show_modal} invocation.
|
@@ -251,7 +251,7 @@ module Wx
|
|
251
251
|
# Returns true if the dialog has been adapted, usually by making it scrollable to work with a small display.
|
252
252
|
#
|
253
253
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
254
|
-
# @return [
|
254
|
+
# @return [Boolean]
|
255
255
|
def get_layout_adaptation_done; end
|
256
256
|
alias_method :layout_adaptation_done, :get_layout_adaptation_done
|
257
257
|
|
@@ -265,14 +265,14 @@ module Wx
|
|
265
265
|
# Gets the adaptation mode, overriding the global adaptation flag.
|
266
266
|
#
|
267
267
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
268
|
-
# @return [DialogLayoutAdaptationMode]
|
268
|
+
# @return [Wx::DialogLayoutAdaptationMode]
|
269
269
|
def get_layout_adaptation_mode; end
|
270
270
|
alias_method :layout_adaptation_mode, :get_layout_adaptation_mode
|
271
271
|
|
272
272
|
# Returns an array of identifiers to be regarded as the main buttons for the non-scrolling area of a dialog.
|
273
273
|
#
|
274
274
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
275
|
-
# @return [
|
275
|
+
# @return [Array<Integer>]
|
276
276
|
def get_main_button_ids; end
|
277
277
|
alias_method :main_button_ids, :get_main_button_ids
|
278
278
|
|
@@ -289,14 +289,14 @@ module Wx
|
|
289
289
|
# Windows only.
|
290
290
|
#
|
291
291
|
# Note that in Windows, iconization has no effect since dialog boxes cannot be iconized. However, applications may need to explicitly restore dialog boxes under Motif which have user-iconizable frames, and under Windows calling Iconize(false) will bring the window to the front, as does Show(true).
|
292
|
-
# @param iconize [
|
292
|
+
# @param iconize [Boolean] If true, iconizes the dialog box; if false, shows and restores it.
|
293
293
|
# @return [void]
|
294
294
|
def iconize(iconize=true) end
|
295
295
|
|
296
296
|
# Returns true if the dialog box is iconized.
|
297
297
|
# Windows only.
|
298
298
|
# Always returns false under Windows since dialogs cannot be iconized.
|
299
|
-
# @return [
|
299
|
+
# @return [Boolean]
|
300
300
|
def is_iconized; end
|
301
301
|
alias_method :iconized?, :is_iconized
|
302
302
|
|
@@ -304,12 +304,12 @@ module Wx
|
|
304
304
|
# Availability: only available for the wxMSW port. {Wx::msw}
|
305
305
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
306
306
|
# @param id [Integer]
|
307
|
-
# @return [
|
307
|
+
# @return [Boolean]
|
308
308
|
def is_main_button_id(id) end
|
309
309
|
alias_method :main_button_id?, :is_main_button_id
|
310
310
|
|
311
311
|
# Returns true if the dialog box is modal, false otherwise.
|
312
|
-
# @return [
|
312
|
+
# @return [Boolean]
|
313
313
|
def is_modal; end
|
314
314
|
alias_method :modal?, :is_modal
|
315
315
|
|
@@ -352,7 +352,7 @@ module Wx
|
|
352
352
|
# Marks the dialog as having been adapted, usually by making it scrollable to work with a small display.
|
353
353
|
#
|
354
354
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
355
|
-
# @param done [
|
355
|
+
# @param done [Boolean]
|
356
356
|
# @return [void]
|
357
357
|
def set_layout_adaptation_done(done) end
|
358
358
|
alias_method :layout_adaptation_done=, :set_layout_adaptation_done
|
@@ -369,7 +369,7 @@ module Wx
|
|
369
369
|
#
|
370
370
|
# @see Wx::DialogLayoutAdaptationMode
|
371
371
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
372
|
-
# @param mode [DialogLayoutAdaptationMode]
|
372
|
+
# @param mode [Wx::DialogLayoutAdaptationMode]
|
373
373
|
# @return [void]
|
374
374
|
def set_layout_adaptation_mode(mode) end
|
375
375
|
alias_method :layout_adaptation_mode=, :set_layout_adaptation_mode
|
@@ -386,8 +386,8 @@ module Wx
|
|
386
386
|
|
387
387
|
# Hides or shows the dialog.
|
388
388
|
# The preferred way of dismissing a modal dialog is to use {Wx::Dialog#end_modal}.
|
389
|
-
# @param show [
|
390
|
-
# @return [
|
389
|
+
# @param show [Boolean] If true, the dialog box is shown and brought to the front, otherwise the box is hidden. If false and the dialog is modal, control is returned to the calling program.
|
390
|
+
# @return [Boolean]
|
391
391
|
def show(show=true) end
|
392
392
|
|
393
393
|
# Shows an application-modal dialog.
|
@@ -414,7 +414,7 @@ module Wx
|
|
414
414
|
# A static function enabling or disabling layout adaptation for all dialogs.
|
415
415
|
#
|
416
416
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
417
|
-
# @param enable [
|
417
|
+
# @param enable [Boolean]
|
418
418
|
# @return [void]
|
419
419
|
def self.enable_layout_adaptation(enable) end
|
420
420
|
|
@@ -427,7 +427,7 @@ module Wx
|
|
427
427
|
# A static function returning true if layout adaptation is enabled for all dialogs.
|
428
428
|
#
|
429
429
|
# @see Automatic Scrolled Dialogs (for more on layout adaptation)
|
430
|
-
# @return [
|
430
|
+
# @return [Boolean]
|
431
431
|
def self.is_layout_adaptation_enabled; end
|
432
432
|
|
433
433
|
# A static function for setting the current layout adapter object, returning the old adapter.
|
@@ -440,5 +440,34 @@ module Wx
|
|
440
440
|
|
441
441
|
end # Dialog
|
442
442
|
|
443
|
+
# This abstract class is the base for classes that help wxWidgets perform run-time layout adaptation of dialogs.
|
444
|
+
# Principally, this is to cater for small displays by making part of the dialog scroll, but the application developer may find other uses for layout adaption.
|
445
|
+
# By default, there is one instance of {Wx::StandardDialogLayoutAdapter} which can perform adaptation for most custom dialogs and dialogs with book controls such as {Wx::PropertySheetDialog}.
|
446
|
+
# ===
|
447
|
+
#
|
448
|
+
# Category: Window Layout
|
449
|
+
# @see Automatic Scrolled Dialogs
|
450
|
+
#
|
451
|
+
#
|
452
|
+
class DialogLayoutAdapter < ::Object
|
453
|
+
|
454
|
+
# Default constructor.
|
455
|
+
# @return [Wx::DialogLayoutAdapter]
|
456
|
+
def initialize; end
|
457
|
+
|
458
|
+
# Override this to returns true if adaptation can and should be done.
|
459
|
+
# @param dialog [Wx::Dialog]
|
460
|
+
# @return [Boolean]
|
461
|
+
def can_do_layout_adaptation(dialog) end
|
462
|
+
alias_method :can_do_layout_adaptation?, :can_do_layout_adaptation
|
463
|
+
|
464
|
+
# Override this to perform layout adaptation, such as making parts of the dialog scroll and resizing the dialog to fit the display.
|
465
|
+
# Normally this function will be called just before the dialog is shown.
|
466
|
+
# @param dialog [Wx::Dialog]
|
467
|
+
# @return [Boolean]
|
468
|
+
def do_layout_adaptation(dialog) end
|
469
|
+
|
470
|
+
end # DialogLayoutAdapter
|
471
|
+
|
443
472
|
|
444
473
|
end
|
@@ -63,7 +63,7 @@ module Wx
|
|
63
63
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
64
64
|
# @param size [Array(Integer, Integer), Wx::Size]
|
65
65
|
# @param style [Integer]
|
66
|
-
# @return [
|
66
|
+
# @return [Boolean]
|
67
67
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0) end
|
68
68
|
|
69
69
|
# @return [void]
|
@@ -68,12 +68,12 @@ module Wx
|
|
68
68
|
# @param style [Integer] The window style, see {Wx::DIRP_}* flags.
|
69
69
|
# @param validator [Wx::Validator] Validator which can be used for additional data checks.
|
70
70
|
# @param name [String] Control name.
|
71
|
-
# @return [
|
71
|
+
# @return [Boolean]
|
72
72
|
def create(parent, id, path=(''), message=Wx::DIR_SELECTOR_PROMPT_STR, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::DIRP_DEFAULT_STYLE, validator=Wx::DEFAULT_VALIDATOR, name=Wx::DirPickerCtrlNameStr) end
|
73
73
|
|
74
74
|
# Returns the absolute path of the currently selected directory as a {Wx::FileName} object.
|
75
75
|
# This function is equivalent to {Wx::DirPickerCtrl#get_path}.
|
76
|
-
# @return [
|
76
|
+
# @return [String]
|
77
77
|
def get_dir_name; end
|
78
78
|
alias_method :dir_name, :get_dir_name
|
79
79
|
|
@@ -83,7 +83,7 @@ module Wx
|
|
83
83
|
alias_method :path, :get_path
|
84
84
|
|
85
85
|
# Just like {Wx::DirPickerCtrl#set_path} but this function takes a {Wx::FileName} object.
|
86
|
-
# @param dirname [
|
86
|
+
# @param dirname [String]
|
87
87
|
# @return [void]
|
88
88
|
def set_dir_name(dirname) end
|
89
89
|
alias_method :dir_name=, :set_dir_name
|