wxruby3 0.9.0.pre.rc.2-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/INSTALL.md +30 -8
- data/README.md +3 -3
- 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 +14 -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 +49 -4
- data/lib/wx/core/imagelist.rb +8 -1
- data/lib/wx/core/listbox.rb +7 -0
- data/lib/wx/core/listctrl.rb +26 -13
- data/lib/wx/core/locale.rb +8 -0
- data/lib/wx/core/log.rb +114 -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 +19 -15
- 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 +13 -0
- data/lib/wx/doc/events.rb +6 -0
- data/lib/wx/doc/evthandler.rb +8 -0
- data/lib/wx/doc/extra/00_starting.md +6 -6
- data/lib/wx/doc/extra/01_packages.md +52 -51
- data/lib/wx/doc/extra/02_lifecycles.md +9 -8
- 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 +2 -2
- data/lib/wx/doc/extra/10_art.md +18 -12
- data/lib/wx/doc/extra/11_drawing_and_dc.md +8 -8
- data/lib/wx/doc/font.rb +7 -1
- data/lib/wx/doc/font_data.rb +16 -0
- data/lib/wx/doc/functions.rb +60 -24
- data/lib/wx/doc/gc_dc.rb +7 -1
- data/lib/wx/doc/gdi_common.rb +8 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +10 -10
- data/lib/wx/doc/gen/accelerator.rb +8 -13
- data/lib/wx/doc/gen/accessible.rb +27 -23
- data/lib/wx/doc/gen/activity_indicator.rb +7 -7
- data/lib/wx/doc/gen/animation.rb +20 -20
- data/lib/wx/doc/gen/animation_ctrl.rb +14 -13
- data/lib/wx/doc/gen/any_button.rb +3 -3
- data/lib/wx/doc/gen/app.rb +25 -88
- data/lib/wx/doc/gen/app_traits.rb +381 -0
- data/lib/wx/doc/gen/art_provider.rb +64 -4
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +12 -12
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +6 -6
- data/lib/wx/doc/gen/aui/aui_manager.rb +57 -41
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +16 -10
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +19 -20
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +7 -7
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +12 -12
- data/lib/wx/doc/gen/aui/aui_notebook.rb +136 -26
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +17 -2
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +95 -95
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +17 -17
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +61 -46
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +18 -18
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +6 -6
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +11 -11
- 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 +56 -81
- data/lib/wx/doc/gen/bitmap_button.rb +13 -9
- data/lib/wx/doc/gen/bitmap_combo_box.rb +14 -9
- data/lib/wx/doc/gen/book_ctrl_base.rb +20 -16
- data/lib/wx/doc/gen/book_ctrl_event.rb +2 -2
- data/lib/wx/doc/gen/box_sizer.rb +1 -1
- data/lib/wx/doc/gen/brush.rb +24 -12
- data/lib/wx/doc/gen/busy_info.rb +1 -1
- data/lib/wx/doc/gen/button.rb +23 -11
- data/lib/wx/doc/gen/calculate_layout_event.rb +2 -1
- data/lib/wx/doc/gen/calendar_ctrl.rb +34 -22
- data/lib/wx/doc/gen/calendar_date_attr.rb +13 -13
- data/lib/wx/doc/gen/calendar_event.rb +4 -10
- data/lib/wx/doc/gen/caret.rb +6 -6
- data/lib/wx/doc/gen/check_box.rb +19 -15
- data/lib/wx/doc/gen/check_list_box.rb +10 -9
- data/lib/wx/doc/gen/choice.rb +10 -9
- data/lib/wx/doc/gen/choicebook.rb +13 -7
- data/lib/wx/doc/gen/client_dc.rb +1 -1
- data/lib/wx/doc/gen/clipboard.rb +10 -10
- data/lib/wx/doc/gen/collapsible_pane.rb +13 -10
- data/lib/wx/doc/gen/collapsible_pane_event.rb +5 -4
- data/lib/wx/doc/gen/colour.rb +42 -32
- data/lib/wx/doc/gen/colour_dialog.rb +12 -12
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +16 -10
- data/lib/wx/doc/gen/colour_picker_event.rb +7 -4
- data/lib/wx/doc/gen/combo_box.rb +29 -20
- 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 +7 -6
- data/lib/wx/doc/gen/control.rb +12 -9
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +8 -5
- data/lib/wx/doc/gen/cursor.rb +18 -18
- data/lib/wx/doc/gen/data_format.rb +5 -5
- data/lib/wx/doc/gen/data_object.rb +32 -25
- data/lib/wx/doc/gen/date_event.rb +3 -3
- data/lib/wx/doc/gen/date_picker_ctrl.rb +16 -11
- data/lib/wx/doc/gen/dc.rb +162 -74
- data/lib/wx/doc/gen/defs.rb +16 -16
- data/lib/wx/doc/gen/dialog.rb +65 -22
- data/lib/wx/doc/gen/dir_dialog.rb +6 -2
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +3 -3
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +17 -12
- data/lib/wx/doc/gen/drag_drop.rb +26 -52
- data/lib/wx/doc/gen/drag_image.rb +13 -38
- data/lib/wx/doc/gen/editable_list_box.rb +9 -5
- data/lib/wx/doc/gen/event.rb +55 -32
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_filter.rb +5 -2
- data/lib/wx/doc/gen/event_list.rb +117 -19
- data/lib/wx/doc/gen/events.rb +351 -215
- data/lib/wx/doc/gen/evt_handler.rb +8 -8
- data/lib/wx/doc/gen/ext_help_controller.rb +9 -9
- data/lib/wx/doc/gen/file_dialog.rb +20 -9
- 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 +5 -3
- data/lib/wx/doc/gen/file_picker_ctrl.rb +19 -11
- data/lib/wx/doc/gen/file_system.rb +250 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +7 -2
- data/lib/wx/doc/gen/find_replace_data.rb +1 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +2 -2
- data/lib/wx/doc/gen/flex_grid_sizer.rb +16 -10
- data/lib/wx/doc/gen/font.rb +90 -94
- data/lib/wx/doc/gen/font_data.rb +15 -11
- data/lib/wx/doc/gen/font_dialog.rb +5 -5
- data/lib/wx/doc/gen/font_picker_ctrl.rb +11 -7
- data/lib/wx/doc/gen/font_picker_event.rb +2 -1
- data/lib/wx/doc/gen/frame.rb +36 -27
- data/lib/wx/doc/gen/fs_file.rb +65 -38
- data/lib/wx/doc/gen/gauge.rb +14 -10
- data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
- data/lib/wx/doc/gen/gcdc.rb +5 -1
- data/lib/wx/doc/gen/gdi_common.rb +43 -41
- data/lib/wx/doc/gen/gdi_object.rb +1 -1
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +19 -13
- data/lib/wx/doc/gen/graphics_context.rb +320 -88
- data/lib/wx/doc/gen/graphics_object.rb +48 -102
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +4 -2
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +41 -56
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +4 -2
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +19 -14
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +15 -13
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +446 -189
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +5 -3
- data/lib/wx/doc/gen/grid/grid_event.rb +26 -9
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +15 -11
- data/lib/wx/doc/gen/grid/grid_size_event.rb +13 -7
- data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -8
- data/lib/wx/doc/gen/grid/grid_table_base.rb +21 -21
- data/lib/wx/doc/gen/grid/grid_table_message.rb +5 -5
- data/lib/wx/doc/gen/grid_bag_sizer.rb +15 -15
- data/lib/wx/doc/gen/grid_sizer.rb +4 -4
- data/lib/wx/doc/gen/gui_event_loop.rb +132 -0
- 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 +25 -19
- data/lib/wx/doc/gen/help_provider.rb +3 -3
- data/lib/wx/doc/gen/html/html_cell.rb +100 -59
- data/lib/wx/doc/gen/html/html_cell_event.rb +7 -5
- data/lib/wx/doc/gen/html/html_easy_printing.rb +14 -9
- data/lib/wx/doc/gen/html/html_help_controller.rb +60 -46
- data/lib/wx/doc/gen/html/html_help_data.rb +5 -5
- data/lib/wx/doc/gen/html/html_help_window.rb +33 -35
- data/lib/wx/doc/gen/html/html_link_event.rb +4 -3
- data/lib/wx/doc/gen/html/html_list_box.rb +21 -13
- data/lib/wx/doc/gen/html/html_printout.rb +16 -6
- data/lib/wx/doc/gen/html/html_window.rb +54 -39
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +15 -10
- data/lib/wx/doc/gen/hyperlink_event.rb +2 -1
- data/lib/wx/doc/gen/icon.rb +24 -24
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +164 -114
- data/lib/wx/doc/gen/image_list.rb +24 -30
- data/lib/wx/doc/gen/info_bar.rb +152 -0
- data/lib/wx/doc/gen/keyboard_state.rb +24 -24
- data/lib/wx/doc/gen/list_box.rb +40 -31
- data/lib/wx/doc/gen/list_ctrl.rb +223 -167
- data/lib/wx/doc/gen/list_event.rb +25 -3
- data/lib/wx/doc/gen/listbook.rb +13 -7
- data/lib/wx/doc/gen/locale.rb +22 -71
- data/lib/wx/doc/gen/log.rb +133 -106
- data/lib/wx/doc/gen/mdi_client_window.rb +3 -3
- data/lib/wx/doc/gen/mdi_frame.rb +23 -17
- data/lib/wx/doc/gen/media_ctrl.rb +22 -19
- data/lib/wx/doc/gen/media_event.rb +8 -2
- data/lib/wx/doc/gen/memory_dc.rb +26 -33
- data/lib/wx/doc/gen/menu.rb +24 -25
- data/lib/wx/doc/gen/menu_bar.rb +11 -28
- data/lib/wx/doc/gen/menu_item.rb +127 -46
- data/lib/wx/doc/gen/message_dialog.rb +54 -36
- data/lib/wx/doc/gen/mini_frame.rb +14 -5
- data/lib/wx/doc/gen/mouse_state.rb +51 -11
- data/lib/wx/doc/gen/multi_choice_dialog.rb +4 -2
- data/lib/wx/doc/gen/non_owned_window.rb +8 -9
- data/lib/wx/doc/gen/notebook.rb +27 -22
- data/lib/wx/doc/gen/number_entry_dialog.rb +3 -3
- data/lib/wx/doc/gen/object.rb +3 -14
- data/lib/wx/doc/gen/palette.rb +15 -17
- data/lib/wx/doc/gen/panel.rb +8 -7
- data/lib/wx/doc/gen/pen.rb +50 -37
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +3 -3
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +17 -17
- data/lib/wx/doc/gen/pg/pg_cell.rb +13 -16
- data/lib/wx/doc/gen/pg/pg_editor.rb +95 -93
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +64 -89
- data/lib/wx/doc/gen/pg/pg_properties.rb +379 -349
- data/lib/wx/doc/gen/pg/pg_property.rb +260 -307
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +3 -3
- data/lib/wx/doc/gen/pg/property_grid.rb +49 -49
- data/lib/wx/doc/gen/pg/property_grid_event.rb +24 -11
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +75 -69
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +51 -54
- data/lib/wx/doc/gen/pg/property_grid_page.rb +22 -30
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +17 -26
- data/lib/wx/doc/gen/picker_base.rb +17 -16
- data/lib/wx/doc/gen/platform_info.rb +180 -20
- data/lib/wx/doc/gen/popup_window.rb +8 -8
- data/lib/wx/doc/gen/progress_dialog.rb +3 -3
- data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -18
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +2 -2
- data/lib/wx/doc/gen/prt/preview_frame.rb +18 -2
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/print_data.rb +68 -62
- data/lib/wx/doc/gen/prt/print_dialog.rb +4 -4
- data/lib/wx/doc/gen/prt/printer.rb +44 -49
- data/lib/wx/doc/gen/query_layout_info_event.rb +6 -5
- data/lib/wx/doc/gen/radio_box.rb +21 -19
- data/lib/wx/doc/gen/radio_button.rb +13 -11
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +67 -67
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +38 -20
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +22 -15
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +6 -6
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -11
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +14 -16
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -12
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +24 -22
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +17 -15
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +6 -6
- 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 +35 -43
- data/lib/wx/doc/gen/region_iterator.rb +3 -3
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +626 -1538
- 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 +488 -503
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +31 -12
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +18 -18
- 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 +23 -19
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +9 -18
- 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 +29 -29
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +3 -3
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +34 -37
- data/lib/wx/doc/gen/sash_event.rb +8 -6
- data/lib/wx/doc/gen/sash_layout_window.rb +13 -11
- data/lib/wx/doc/gen/sash_window.rb +14 -9
- data/lib/wx/doc/gen/scroll_bar.rb +33 -12
- data/lib/wx/doc/gen/scrolled_canvas.rb +49 -37
- data/lib/wx/doc/gen/scrolled_control.rb +49 -37
- data/lib/wx/doc/gen/scrolled_window.rb +49 -37
- data/lib/wx/doc/gen/search_ctrl.rb +20 -13
- data/lib/wx/doc/gen/simplebook.rb +7 -7
- data/lib/wx/doc/gen/single_choice_dialog.rb +5 -4
- data/lib/wx/doc/gen/sizer.rb +69 -73
- data/lib/wx/doc/gen/sizer_item.rb +5 -5
- data/lib/wx/doc/gen/slider.rb +51 -18
- data/lib/wx/doc/gen/spin_button.rb +17 -11
- data/lib/wx/doc/gen/spin_ctrl.rb +15 -9
- 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 +5 -2
- data/lib/wx/doc/gen/splash_screen.rb +16 -12
- data/lib/wx/doc/gen/splitter_event.rb +6 -2
- data/lib/wx/doc/gen/splitter_window.rb +36 -16
- data/lib/wx/doc/gen/static_bitmap.rb +9 -9
- data/lib/wx/doc/gen/static_box.rb +41 -37
- data/lib/wx/doc/gen/static_box_sizer.rb +13 -10
- data/lib/wx/doc/gen/static_line.rb +8 -7
- data/lib/wx/doc/gen/static_text.rb +15 -9
- data/lib/wx/doc/gen/status_bar.rb +53 -10
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +200 -184
- data/lib/wx/doc/gen/stc/styled_text_event.rb +229 -54
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +11 -2
- data/lib/wx/doc/gen/svg_file_dc.rb +8 -8
- data/lib/wx/doc/gen/system_options.rb +13 -3
- data/lib/wx/doc/gen/system_settings.rb +9 -9
- data/lib/wx/doc/gen/task_bar_icon.rb +17 -9
- data/lib/wx/doc/gen/task_bar_icon_event.rb +3 -3
- data/lib/wx/doc/gen/text_attr.rb +67 -61
- data/lib/wx/doc/gen/text_ctrl.rb +58 -113
- data/lib/wx/doc/gen/text_entry.rb +44 -56
- data/lib/wx/doc/gen/text_entry_dialog.rb +23 -23
- data/lib/wx/doc/gen/text_validator.rb +3 -19
- data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -10
- data/lib/wx/doc/gen/timer.rb +13 -9
- data/lib/wx/doc/gen/timer_event.rb +19 -26
- data/lib/wx/doc/gen/tip_provider.rb +3 -3
- data/lib/wx/doc/gen/toggle_button.rb +10 -9
- data/lib/wx/doc/gen/tool_bar.rb +71 -61
- data/lib/wx/doc/gen/tool_tip.rb +2 -10
- data/lib/wx/doc/gen/toolbook.rb +12 -9
- data/lib/wx/doc/gen/top_level_window.rb +53 -113
- data/lib/wx/doc/gen/tree_ctrl.rb +83 -33
- data/lib/wx/doc/gen/tree_event.rb +24 -3
- data/lib/wx/doc/gen/treebook.rb +20 -16
- data/lib/wx/doc/gen/ui_action_simulator.rb +20 -19
- data/lib/wx/doc/gen/utils.rb +20 -14
- data/lib/wx/doc/gen/v_list_box.rb +11 -11
- data/lib/wx/doc/gen/v_scrolled_window.rb +9 -9
- data/lib/wx/doc/gen/validator.rb +10 -8
- data/lib/wx/doc/gen/variant.rb +56 -119
- data/lib/wx/doc/gen/window.rb +314 -224
- data/lib/wx/doc/gen/window_dc.rb +1 -1
- data/lib/wx/doc/gen/with_images.rb +2 -2
- data/lib/wx/doc/gen/wizard.rb +21 -8
- data/lib/wx/doc/gen/wizard_event.rb +11 -4
- data/lib/wx/doc/gen/wizard_page.rb +3 -3
- data/lib/wx/doc/gen/wizard_page_simple.rb +8 -8
- data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
- data/lib/wx/doc/gen/xml_node.rb +13 -13
- data/lib/wx/doc/gen/xml_resource.rb +24 -21
- 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 +50 -12
- data/lib/wx/doc/list_ctrl.rb +38 -0
- data/lib/wx/doc/log.rb +45 -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 +8 -2
- 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 +7 -1
- 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 +18 -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 +31 -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 +164 -0
- 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 +151 -0
- data/tests/test_intl.rb +3 -0
- data/tests/test_item_data.rb +3 -0
- data/tests/test_list_ctrl.rb +56 -0
- data/tests/test_log.rb +226 -0
- data/tests/test_proof_check.rb +52 -0
- data/tests/test_richtext.rb +204 -0
- data/tests/test_std_controls.rb +99 -31
- data/tests/test_timer.rb +98 -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 +87 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -14,7 +14,7 @@ module Wx
|
|
14
14
|
#
|
15
15
|
DP_SPIN = 1
|
16
16
|
|
17
|
-
# a combobox-like date picker (not supported
|
17
|
+
# a combobox-like date picker (not supported on macOS <10.15.4)
|
18
18
|
#
|
19
19
|
DP_DROPDOWN = 2
|
20
20
|
|
@@ -32,11 +32,15 @@ module Wx
|
|
32
32
|
# === Styles
|
33
33
|
#
|
34
34
|
# This class supports the following styles:
|
35
|
-
#
|
35
|
+
#
|
36
36
|
# - {Wx::DP_SPIN}: Creates a control without a month calendar drop down but with spin-control-like arrows to change individual date components. This style is not supported by the generic version.
|
37
|
-
#
|
37
|
+
#
|
38
|
+
# - {Wx::DP_DROPDOWN}: Creates a control with a month calendar drop-down part from which the user can select a date. In OSX/Cocoa native version this style is supported on macOS 10.15.4 and later.
|
39
|
+
#
|
38
40
|
# - {Wx::DP_DEFAULT}: Creates a control with the style that is best supported for the current platform (currently {Wx::DP_SPIN} under Windows and OSX/Cocoa and {Wx::DP_DROPDOWN} elsewhere).
|
41
|
+
#
|
39
42
|
# - {Wx::DP_ALLOWNONE}: With this style, the control allows the user to not enter any valid date at all. Without it - the default - the control always has some valid date. This style is not supported in OSX/Cocoa native version.
|
43
|
+
#
|
40
44
|
# - {Wx::DP_SHOWCENTURY}: Forces display of the century in the default date format. Without this style the century could be displayed, or not, depending on the default date representation in the system. This style is not supported in OSX/Cocoa native version currently.
|
41
45
|
#
|
42
46
|
# As can be seen from the remarks above, most of the control style are only supported in the native MSW implementation. In portable code it's recommended to use {Wx::DP_DEFAULT} style only, possibly combined with {Wx::DP_SHOWCENTURY} (this is also the style used by default if none is specified).
|
@@ -44,13 +48,14 @@ module Wx
|
|
44
48
|
#
|
45
49
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::DateEvent} events.
|
46
50
|
# Event handler methods for events emitted by this class:
|
51
|
+
#
|
47
52
|
# - {Wx::EvtHandler#evt_date_changed}(id, meth = nil, &block): Process a {Wx::EVT_DATE_CHANGED} event, which fires when the user changes the current selection in the control.
|
48
53
|
#
|
49
54
|
# ===
|
50
55
|
#
|
51
|
-
# Category: Picker Controls <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td>
|
52
|
-
# </td><td>
|
53
|
-
# </td><td>
|
56
|
+
# Category: Picker Controls <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> wxMSW Appearance
|
57
|
+
# </td><td> wxGTK Appearance
|
58
|
+
# </td><td> wxOSX Appearance
|
54
59
|
# </td></tr></table></div>
|
55
60
|
# @see Wx::TimePickerCtrl
|
56
61
|
# @see Wx::CalendarCtrl
|
@@ -61,8 +66,8 @@ module Wx
|
|
61
66
|
|
62
67
|
# @overload initialize()
|
63
68
|
# Default constructor.
|
64
|
-
# @return [DatePickerCtrl]
|
65
|
-
# @overload initialize(parent, id, dt=Wx::
|
69
|
+
# @return [Wx::DatePickerCtrl]
|
70
|
+
# @overload initialize(parent, id, dt=Wx::DEFAULT_DATE_TIME, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl"))
|
66
71
|
# Initializes the object and calls {Wx::DatePickerCtrl#create} with all the parameters.
|
67
72
|
# @param parent [Wx::Window]
|
68
73
|
# @param id [Integer]
|
@@ -72,7 +77,7 @@ module Wx
|
|
72
77
|
# @param style [Integer]
|
73
78
|
# @param validator [Wx::Validator]
|
74
79
|
# @param name [String]
|
75
|
-
# @return [DatePickerCtrl]
|
80
|
+
# @return [Wx::DatePickerCtrl]
|
76
81
|
def initialize(*args) end
|
77
82
|
|
78
83
|
# Create the control window.
|
@@ -87,8 +92,8 @@ module Wx
|
|
87
92
|
# @param style [Integer] The window style, see the description of the styles in the class documentation.
|
88
93
|
# @param validator [Wx::Validator] Validator which can be used for additional data checks.
|
89
94
|
# @param name [String] Control name.
|
90
|
-
# @return [
|
91
|
-
def create(parent, id, dt=Wx::
|
95
|
+
# @return [Boolean]
|
96
|
+
def create(parent, id, dt=Wx::DEFAULT_DATE_TIME, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY), validator=Wx::DEFAULT_VALIDATOR, name=("datectrl")) end
|
92
97
|
|
93
98
|
# Returns the currently entered date.
|
94
99
|
# For a control with {Wx::DP_ALLOWNONE} style the returned value may be invalid if no date is entered, otherwise it is always valid.
|
data/lib/wx/doc/gen/dc.rb
CHANGED
@@ -10,8 +10,13 @@ module Wx
|
|
10
10
|
#
|
11
11
|
# {Wx::DC#blit} and {Wx::DC#stretch_blit}).
|
12
12
|
# The description of the values below refer to how a generic src source pixel and the corresponding dst destination pixel gets combined together to produce the final pixel. E.g. {Wx::RasterOperationMode::CLEAR} and {Wx::RasterOperationMode::SET} completely ignore the source and the destination pixel and always put zeroes or ones in the final surface.
|
13
|
-
# Note that not all modes are supported under all platforms. Notably
|
14
|
-
#
|
13
|
+
# Note that not all modes are supported under all platforms. Notably wxGTK3 and {Wx::Mac} only support the following modes:
|
14
|
+
#
|
15
|
+
# - {Wx::RasterOperationMode::COPY}
|
16
|
+
# - {Wx::RasterOperationMode::OR}
|
17
|
+
# - {Wx::RasterOperationMode::NO_OP}
|
18
|
+
# - {Wx::RasterOperationMode::CLEAR}
|
19
|
+
# - {Wx::RasterOperationMode::XOR} and only support the commonly used {Wx::RasterOperationMode::INVERT} when the source colour is white (as it is implemented using {Wx::CompositionMode::COMPOSITION_DIFF} composition mode).
|
15
20
|
#
|
16
21
|
class RasterOperationMode < Wx::Enum
|
17
22
|
|
@@ -302,13 +307,13 @@ module Wx
|
|
302
307
|
# @param bitmap [Wx::Bitmap]
|
303
308
|
# @param x [Integer]
|
304
309
|
# @param y [Integer]
|
305
|
-
# @param useMask [
|
310
|
+
# @param useMask [Boolean]
|
306
311
|
# @return [void]
|
307
312
|
# @overload draw_bitmap(bmp, pt, useMask=false)
|
308
313
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
309
314
|
# @param bmp [Wx::Bitmap]
|
310
315
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
311
|
-
# @param useMask [
|
316
|
+
# @param useMask [Boolean]
|
312
317
|
# @return [void]
|
313
318
|
def draw_bitmap(*args) end
|
314
319
|
|
@@ -458,7 +463,7 @@ module Wx
|
|
458
463
|
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
459
464
|
# @param xoffset [Integer]
|
460
465
|
# @param yoffset [Integer]
|
461
|
-
# @param fill_style [PolygonFillMode]
|
466
|
+
# @param fill_style [Wx::PolygonFillMode]
|
462
467
|
# @return [void]
|
463
468
|
def draw_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
|
464
469
|
|
@@ -471,7 +476,7 @@ module Wx
|
|
471
476
|
# @param points [Array<Array<Wx::Point>>,Array<Array<Array<Integer>>>]
|
472
477
|
# @param xoffset [Integer]
|
473
478
|
# @param yoffset [Integer]
|
474
|
-
# @param fill_style [PolygonFillMode]
|
479
|
+
# @param fill_style [Wx::PolygonFillMode]
|
475
480
|
# @return [void]
|
476
481
|
def draw_poly_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
|
477
482
|
|
@@ -593,31 +598,32 @@ module Wx
|
|
593
598
|
# @param rect [Wx::Rect]
|
594
599
|
# @param initialColour [Wx::Colour,String,Symbol]
|
595
600
|
# @param destColour [Wx::Colour,String,Symbol]
|
596
|
-
# @param nDirection [Direction]
|
601
|
+
# @param nDirection [Wx::Direction]
|
597
602
|
# @return [void]
|
598
603
|
def gradient_fill_linear(rect, initialColour, destColour, nDirection=Wx::Direction::RIGHT) end
|
599
604
|
|
600
605
|
# @overload flood_fill(x, y, colour, style=Wx::FloodFillStyle::FLOOD_SURFACE)
|
601
606
|
# Flood fills the device context starting from the given point, using the current brush colour, and using a style:
|
602
|
-
# - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered
|
607
|
+
# - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered.
|
608
|
+
# - {Wx::FloodFillStyle::FLOOD_BORDER}: The area to be flooded is bounded by the given colour.
|
603
609
|
#
|
604
|
-
# Currently this method is not implemented in
|
610
|
+
# Currently this method is not implemented in wxOSX and does nothing there.
|
605
611
|
# false if the operation failed.
|
606
612
|
#
|
607
613
|
# The present implementation for non-Windows platforms may fail to find colour borders if the pixels do not match the colour exactly. However the function will still return true.
|
608
614
|
#
|
609
|
-
# This method shouldn't be used with {Wx::PaintDC} under non-Windows platforms as it uses {Wx::DC#get_pixel} internally and this may give wrong results, notably in
|
615
|
+
# This method shouldn't be used with {Wx::PaintDC} under non-Windows platforms as it uses {Wx::DC#get_pixel} internally and this may give wrong results, notably in wxGTK. If you need to flood fill {Wx::PaintDC}, create a temporary {Wx::MemoryDC}, flood fill it and then blit it to, or draw as a bitmap on, {Wx::PaintDC}. See the example of doing this in the drawing sample and {Wx::BufferedPaintDC} class.
|
610
616
|
# @param x [Integer]
|
611
617
|
# @param y [Integer]
|
612
618
|
# @param colour [Wx::Colour,String,Symbol]
|
613
|
-
# @param style [FloodFillStyle]
|
614
|
-
# @return [
|
619
|
+
# @param style [Wx::FloodFillStyle]
|
620
|
+
# @return [Boolean]
|
615
621
|
# @overload flood_fill(pt, col, style=Wx::FloodFillStyle::FLOOD_SURFACE)
|
616
622
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
617
623
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
618
624
|
# @param col [Wx::Colour,String,Symbol]
|
619
|
-
# @param style [FloodFillStyle]
|
620
|
-
# @return [
|
625
|
+
# @param style [Wx::FloodFillStyle]
|
626
|
+
# @return [Boolean]
|
621
627
|
def flood_fill(*args) end
|
622
628
|
|
623
629
|
# @overload cross_hair(x, y)
|
@@ -646,11 +652,11 @@ module Wx
|
|
646
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).
|
647
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.
|
648
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.
|
649
|
-
# @return [Array(
|
655
|
+
# @return [Array(Boolean,Integer,Integer)]
|
650
656
|
# @overload get_clipping_box(rect)
|
651
657
|
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
652
658
|
# @param rect [Wx::Rect]
|
653
|
-
# @return [
|
659
|
+
# @return [Boolean]
|
654
660
|
def get_clipping_box(*args) end
|
655
661
|
alias_method :clipping_box, :get_clipping_box
|
656
662
|
|
@@ -658,7 +664,10 @@ module Wx
|
|
658
664
|
# Sets the clipping region for this device context to the intersection of the given region described by the parameters of this method and the previously set clipping region.
|
659
665
|
# The clipping region is an area to which drawing is restricted. Possible uses for the clipping region are for clipping text or for speeding up window redraws when only a known area of the screen is damaged.
|
660
666
|
#
|
661
|
-
# - Clipping region should be given in logical coordinates
|
667
|
+
# - Clipping region should be given in logical coordinates.
|
668
|
+
# - Calling this function can only make the clipping region smaller, never larger.
|
669
|
+
# - You need to call {Wx::DC#destroy_clipping_region} first if you want to set the clipping region exactly to the region specified.
|
670
|
+
# - If resulting clipping region is empty, then all drawing on the DC is clipped out (all changes made by drawing operations are masked out).
|
662
671
|
# @see Wx::DC#destroy_clipping_region
|
663
672
|
# @see Wx::Region
|
664
673
|
# @param x [Integer]
|
@@ -697,7 +706,7 @@ module Wx
|
|
697
706
|
|
698
707
|
# Returns the various font characteristics.
|
699
708
|
# This method allows retrieving some of the font characteristics not returned by {Wx::DC#get_text_extent}, notably internal leading and average character width.
|
700
|
-
# Currently this method returns correct results only under
|
709
|
+
# Currently this method returns correct results only under wxMSW, in the other ports the internal leading will always be 0 and the average character width will be computed as the width of the character 'x'.
|
701
710
|
# @return [Wx::FontMetrics]
|
702
711
|
def get_font_metrics; end
|
703
712
|
alias_method :font_metrics, :get_font_metrics
|
@@ -770,7 +779,7 @@ module Wx
|
|
770
779
|
# Gets the current layout direction of the device context.
|
771
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}.
|
772
781
|
# @see Wx::DC#set_layout_direction
|
773
|
-
# @return [LayoutDirection]
|
782
|
+
# @return [Wx::LayoutDirection]
|
774
783
|
def get_layout_direction; end
|
775
784
|
alias_method :layout_direction, :get_layout_direction
|
776
785
|
|
@@ -797,7 +806,7 @@ module Wx
|
|
797
806
|
alias_method :background_mode=, :set_background_mode
|
798
807
|
|
799
808
|
# Sets the current font for the DC.
|
800
|
-
# The font parameter should be valid, although in
|
809
|
+
# The font parameter should be valid, although in wxMSW port (only) the argument {Wx::NULL_FONT} is also accepted and resets the device context font to the default value used by the system (which is not generally useful).
|
801
810
|
# @see Wx::Font
|
802
811
|
# @param font [Wx::Font,Wx::FontInfo]
|
803
812
|
# @return [void]
|
@@ -821,7 +830,7 @@ module Wx
|
|
821
830
|
# Sets the current layout direction for the device context.
|
822
831
|
#
|
823
832
|
# @see Wx::DC#get_layout_direction
|
824
|
-
# @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}.
|
825
834
|
# @return [void]
|
826
835
|
def set_layout_direction(dir) end
|
827
836
|
alias_method :layout_direction=, :set_layout_direction
|
@@ -859,7 +868,7 @@ module Wx
|
|
859
868
|
# Starts a document (only relevant when outputting to a printer).
|
860
869
|
# message is a message to show while printing.
|
861
870
|
# @param message [String]
|
862
|
-
# @return [
|
871
|
+
# @return [Boolean]
|
863
872
|
def start_doc(message) end
|
864
873
|
|
865
874
|
# Starts a document page (only relevant when outputting to a printer).
|
@@ -890,18 +899,24 @@ module Wx
|
|
890
899
|
# @param source [Wx::DC] Source device context.
|
891
900
|
# @param xsrc [Integer] Source device context x position.
|
892
901
|
# @param ysrc [Integer] Source device context y position.
|
893
|
-
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
894
|
-
# @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
|
+
#
|
895
905
|
# -
|
896
906
|
# Creates a temporary bitmap and copies the destination area into it.
|
907
|
+
#
|
897
908
|
# -
|
898
909
|
# Copies the source area into the temporary bitmap using the specified logical function.
|
910
|
+
#
|
899
911
|
# -
|
900
912
|
# Sets the masked area in the temporary bitmap to BLACK by ANDing the mask bitmap with the temp bitmap with the foreground colour set to WHITE and the bg colour set to BLACK.
|
913
|
+
#
|
901
914
|
# -
|
902
915
|
# Sets the unmasked area in the destination area to BLACK by ANDing the mask bitmap with the destination area with the foreground colour set to BLACK and the background colour set to WHITE.
|
916
|
+
#
|
903
917
|
# -
|
904
918
|
# ORs the temporary bitmap with the destination area.
|
919
|
+
#
|
905
920
|
# -
|
906
921
|
# Deletes the temporary bitmap.
|
907
922
|
#
|
@@ -910,7 +925,7 @@ module Wx
|
|
910
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.
|
911
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.
|
912
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.
|
913
|
-
# @return [
|
928
|
+
# @return [Boolean]
|
914
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
|
915
930
|
|
916
931
|
# Copy from a source DC to this DC possibly changing the scale.
|
@@ -932,18 +947,24 @@ module Wx
|
|
932
947
|
# @param ysrc [Integer] Source device context y position.
|
933
948
|
# @param srcWidth [Integer] Width of source area to be copied.
|
934
949
|
# @param srcHeight [Integer] Height of source area to be copied.
|
935
|
-
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
936
|
-
# @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
|
+
#
|
937
953
|
# -
|
938
954
|
# Creates a temporary bitmap and copies the destination area into it.
|
955
|
+
#
|
939
956
|
# -
|
940
957
|
# Copies the source area into the temporary bitmap using the specified logical function.
|
958
|
+
#
|
941
959
|
# -
|
942
960
|
# Sets the masked area in the temporary bitmap to BLACK by ANDing the mask bitmap with the temp bitmap with the foreground colour set to WHITE and the bg colour set to BLACK.
|
961
|
+
#
|
943
962
|
# -
|
944
963
|
# Sets the unmasked area in the destination area to BLACK by ANDing the mask bitmap with the destination area with the foreground colour set to BLACK and the background colour set to WHITE.
|
964
|
+
#
|
945
965
|
# -
|
946
966
|
# ORs the temporary bitmap with the destination area.
|
967
|
+
#
|
947
968
|
# -
|
948
969
|
# Deletes the temporary bitmap.
|
949
970
|
#
|
@@ -952,7 +973,7 @@ module Wx
|
|
952
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.
|
953
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.
|
954
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.
|
955
|
-
# @return [
|
976
|
+
# @return [Boolean]
|
956
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
|
957
978
|
|
958
979
|
# Gets the brush used for painting the background.
|
@@ -999,36 +1020,13 @@ module Wx
|
|
999
1020
|
def set_pen(pen) end
|
1000
1021
|
alias_method :pen=, :set_pen
|
1001
1022
|
|
1002
|
-
# Check if the use of transformation matrix is supported by the current system.
|
1003
|
-
# This function returns true for MSW and GTK+ 3 platforms and since 3.1.1 also for {Wx::GCDC} in all ports.
|
1004
|
-
# @return [true,false]
|
1005
|
-
def can_use_transform_matrix; end
|
1006
|
-
alias_method :can_use_transform_matrix?, :can_use_transform_matrix
|
1007
|
-
|
1008
|
-
# Set the transformation matrix.
|
1009
|
-
# 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.
|
1010
|
-
# @param matrix [Wx::AffineMatrix2D]
|
1011
|
-
# @return [true,false]
|
1012
|
-
def set_transform_matrix(matrix) end
|
1013
|
-
alias_method :transform_matrix=, :set_transform_matrix
|
1014
|
-
|
1015
|
-
# Return the transformation matrix used by this device context.
|
1016
|
-
# By default the transformation matrix is the identity matrix.
|
1017
|
-
# @return [Wx::AffineMatrix2D]
|
1018
|
-
def get_transform_matrix; end
|
1019
|
-
alias_method :transform_matrix, :get_transform_matrix
|
1020
|
-
|
1021
|
-
# Revert the transformation matrix to identity matrix.
|
1022
|
-
# @return [void]
|
1023
|
-
def reset_transform_matrix; end
|
1024
|
-
|
1025
1023
|
# Does the DC support drawing bitmaps?
|
1026
|
-
# @return [
|
1024
|
+
# @return [Boolean]
|
1027
1025
|
def can_draw_bitmap; end
|
1028
1026
|
alias_method :can_draw_bitmap?, :can_draw_bitmap
|
1029
1027
|
|
1030
1028
|
# Does the DC support calculating the size required to draw text?
|
1031
|
-
# @return [
|
1029
|
+
# @return [Boolean]
|
1032
1030
|
def can_get_text_extent; end
|
1033
1031
|
alias_method :can_get_text_extent?, :can_get_text_extent
|
1034
1032
|
|
@@ -1041,7 +1039,11 @@ module Wx
|
|
1041
1039
|
|
1042
1040
|
# Copy attributes from another DC.
|
1043
1041
|
# The copied attributes currently are:
|
1044
|
-
#
|
1042
|
+
#
|
1043
|
+
# - Font
|
1044
|
+
# - Text foreground and background colours
|
1045
|
+
# - Background brush
|
1046
|
+
# - Layout direction
|
1045
1047
|
#
|
1046
1048
|
# Note that the scaling factor is not considered to be an attribute of {Wx::DC} and is not copied by this function.
|
1047
1049
|
# @param dc [Wx::DC] A valid (i.e. its {Wx::DC#is_ok} must return true) source device context.
|
@@ -1049,7 +1051,8 @@ module Wx
|
|
1049
1051
|
def copy_attributes(dc) end
|
1050
1052
|
|
1051
1053
|
# Returns the factor used for converting logical pixels to physical ones.
|
1052
|
-
# 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.
|
1053
1056
|
# @return [Float]
|
1054
1057
|
def get_content_scale_factor; end
|
1055
1058
|
alias_method :content_scale_factor, :get_content_scale_factor
|
@@ -1071,26 +1074,26 @@ module Wx
|
|
1071
1074
|
# Gets the current logical function.
|
1072
1075
|
#
|
1073
1076
|
# @see Wx::DC#set_logical_function
|
1074
|
-
# @return [RasterOperationMode]
|
1077
|
+
# @return [Wx::RasterOperationMode]
|
1075
1078
|
def get_logical_function; end
|
1076
1079
|
alias_method :logical_function, :get_logical_function
|
1077
1080
|
|
1078
1081
|
# Gets the current mapping mode for the device context.
|
1079
1082
|
#
|
1080
1083
|
# @see Wx::DC#set_map_mode
|
1081
|
-
# @return [MappingMode]
|
1084
|
+
# @return [Wx::MappingMode]
|
1082
1085
|
def get_map_mode; end
|
1083
1086
|
alias_method :map_mode, :get_map_mode
|
1084
1087
|
|
1085
1088
|
# Gets in colour the colour at the specified location.
|
1086
|
-
# This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in
|
1089
|
+
# This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in wxOSX port and simply returns false there.
|
1087
1090
|
# Setting a pixel can be done using {Wx::DC#draw_point}.
|
1088
1091
|
#
|
1089
|
-
# This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in
|
1092
|
+
# This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in wxGTK.
|
1090
1093
|
# @param x [Integer]
|
1091
1094
|
# @param y [Integer]
|
1092
1095
|
# @param colour [Wx::Colour]
|
1093
|
-
# @return [
|
1096
|
+
# @return [Boolean]
|
1094
1097
|
def get_pixel(x, y, colour) end
|
1095
1098
|
alias_method :pixel, :get_pixel
|
1096
1099
|
|
@@ -1163,21 +1166,19 @@ module Wx
|
|
1163
1166
|
# Gets the current user scale factor.
|
1164
1167
|
#
|
1165
1168
|
# @see Wx::DC#set_user_scale
|
1166
|
-
# @
|
1167
|
-
|
1168
|
-
# @return [void]
|
1169
|
-
def get_user_scale(x, y) end
|
1169
|
+
# @return [Array(Float,Float)]
|
1170
|
+
def get_user_scale; end
|
1170
1171
|
alias_method :user_scale, :get_user_scale
|
1171
1172
|
|
1172
1173
|
# Returns true if the DC is ok to use.
|
1173
|
-
# @return [
|
1174
|
+
# @return [Boolean]
|
1174
1175
|
def is_ok; end
|
1175
1176
|
alias_method :ok?, :is_ok
|
1176
1177
|
|
1177
1178
|
# Sets the x and y axis orientation (i.e. the direction from lowest to highest values on the axis).
|
1178
1179
|
# The default orientation is x axis from left to right and y axis from top down.
|
1179
|
-
# @param xLeftRight [
|
1180
|
-
# @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.
|
1181
1182
|
# @return [void]
|
1182
1183
|
def set_axis_orientation(xLeftRight, yBottomUp) end
|
1183
1184
|
|
@@ -1189,12 +1190,12 @@ module Wx
|
|
1189
1190
|
def set_device_origin(x, y) end
|
1190
1191
|
|
1191
1192
|
# Sets the current logical function for the device context.
|
1192
|
-
# This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by
|
1193
|
+
# This function is not fully supported in all ports, due to the limitations of the underlying drawing model. Notably, {Wx::RasterOperationMode::INVERT} which was commonly used for drawing rubber bands or other moving outlines in the past, is not, and will not, be supported by wxGTK3 and {Wx::Mac}. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
|
1193
1194
|
#
|
1194
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.
|
1195
1196
|
# See {Wx::RasterOperationMode} enumeration values for more info.
|
1196
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.
|
1197
|
-
# @param function [RasterOperationMode]
|
1198
|
+
# @param function [Wx::RasterOperationMode]
|
1198
1199
|
# @return [void]
|
1199
1200
|
def set_logical_function(function) end
|
1200
1201
|
alias_method :logical_function=, :set_logical_function
|
@@ -1203,7 +1204,7 @@ module Wx
|
|
1203
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.
|
1204
1205
|
# The coordinate origin is always at the top left of the screen/printer.
|
1205
1206
|
# Drawing to a Windows printer device context uses the current mapping mode, but mapping mode is currently ignored for PostScript output.
|
1206
|
-
# @param mode [MappingMode]
|
1207
|
+
# @param mode [Wx::MappingMode]
|
1207
1208
|
# @return [void]
|
1208
1209
|
def set_map_mode(mode) end
|
1209
1210
|
alias_method :map_mode=, :set_map_mode
|
@@ -1236,10 +1237,8 @@ module Wx
|
|
1236
1237
|
def set_logical_scale(x, y) end
|
1237
1238
|
|
1238
1239
|
# Return the scale set by the last call to {Wx::DC#set_logical_scale}.
|
1239
|
-
# @
|
1240
|
-
|
1241
|
-
# @return [void]
|
1242
|
-
def get_logical_scale(x, y) end
|
1240
|
+
# @return [Array(Float,Float)]
|
1241
|
+
def get_logical_scale; end
|
1243
1242
|
alias_method :logical_scale, :get_logical_scale
|
1244
1243
|
|
1245
1244
|
# Change the offset used for translating {Wx::DC} coordinates.
|
@@ -1266,5 +1265,94 @@ module Wx
|
|
1266
1265
|
|
1267
1266
|
end # DC
|
1268
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
|
+
|
1269
1357
|
|
1270
1358
|
end
|
data/lib/wx/doc/gen/defs.rb
CHANGED
@@ -2106,67 +2106,67 @@ module Wx
|
|
2106
2106
|
#
|
2107
2107
|
K_LAUNCH_APP2 = Wx::KeyCode.new(443)
|
2108
2108
|
|
2109
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2109
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2110
2110
|
#
|
2111
2111
|
K_LAUNCH_0 = Wx::KeyCode.new(432)
|
2112
2112
|
|
2113
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2113
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2114
2114
|
#
|
2115
2115
|
K_LAUNCH_1 = Wx::KeyCode.new(433)
|
2116
2116
|
|
2117
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2117
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2118
2118
|
#
|
2119
2119
|
K_LAUNCH_2 = Wx::KeyCode.new(434)
|
2120
2120
|
|
2121
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2121
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2122
2122
|
#
|
2123
2123
|
K_LAUNCH_3 = Wx::KeyCode.new(435)
|
2124
2124
|
|
2125
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2125
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2126
2126
|
#
|
2127
2127
|
K_LAUNCH_4 = Wx::KeyCode.new(436)
|
2128
2128
|
|
2129
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2129
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2130
2130
|
#
|
2131
2131
|
K_LAUNCH_5 = Wx::KeyCode.new(437)
|
2132
2132
|
|
2133
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2133
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2134
2134
|
#
|
2135
2135
|
K_LAUNCH_6 = Wx::KeyCode.new(438)
|
2136
2136
|
|
2137
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2137
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2138
2138
|
#
|
2139
2139
|
K_LAUNCH_7 = Wx::KeyCode.new(439)
|
2140
2140
|
|
2141
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2141
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2142
2142
|
#
|
2143
2143
|
K_LAUNCH_8 = Wx::KeyCode.new(440)
|
2144
2144
|
|
2145
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2145
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2146
2146
|
#
|
2147
2147
|
K_LAUNCH_9 = Wx::KeyCode.new(441)
|
2148
2148
|
|
2149
|
-
# Available since wxWidgets 3.1.6, generated by
|
2149
|
+
# Available since wxWidgets 3.1.6, generated by wxGTK and wxMSW.
|
2150
2150
|
#
|
2151
2151
|
K_LAUNCH_A = Wx::KeyCode.new(442)
|
2152
2152
|
|
2153
|
-
# Available since wxWidgets 3.1.6, generated by
|
2153
|
+
# Available since wxWidgets 3.1.6, generated by wxGTK and wxMSW.
|
2154
2154
|
#
|
2155
2155
|
K_LAUNCH_B = Wx::KeyCode.new(443)
|
2156
2156
|
|
2157
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2157
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2158
2158
|
#
|
2159
2159
|
K_LAUNCH_C = Wx::KeyCode.new(444)
|
2160
2160
|
|
2161
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2161
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2162
2162
|
#
|
2163
2163
|
K_LAUNCH_D = Wx::KeyCode.new(445)
|
2164
2164
|
|
2165
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2165
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2166
2166
|
#
|
2167
2167
|
K_LAUNCH_E = Wx::KeyCode.new(446)
|
2168
2168
|
|
2169
|
-
# Available since wxWidgets 3.1.6 and only generated by
|
2169
|
+
# Available since wxWidgets 3.1.6 and only generated by wxGTK.
|
2170
2170
|
#
|
2171
2171
|
K_LAUNCH_F = Wx::KeyCode.new(447)
|
2172
2172
|
|