wxruby3 0.9.1-x64-mingw-ucrt → 0.9.3-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/.yardopts +1 -0
- data/INSTALL.md +35 -29
- data/README.md +24 -15
- 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/aui/aui_tab_ctrl.rb +18 -0
- data/lib/wx/aui/auinotebook.rb +6 -2
- data/lib/wx/aui/require.rb +1 -0
- data/lib/wx/core/app.rb +2 -2
- data/lib/wx/core/bitmap_combobox.rb +17 -21
- data/lib/wx/core/collapsible_pane.rb +1 -1
- data/lib/wx/core/combobox.rb +13 -3
- data/lib/wx/core/controlwithitems.rb +40 -128
- data/lib/wx/core/enum.rb +17 -1
- data/lib/wx/core/event.rb +6 -1
- data/lib/wx/core/events/evt_list.rb +5 -4
- data/lib/wx/core/evthandler.rb +8 -2
- data/lib/wx/core/generic_validator.rb +312 -0
- data/lib/wx/core/listbox.rb +2 -2
- data/lib/wx/core/log.rb +1 -1
- data/lib/wx/core/menu.rb +10 -0
- data/lib/wx/core/notebook.rb +6 -2
- data/lib/wx/core/owner_drawn_combobox.rb +45 -0
- data/lib/wx/core/size.rb +4 -0
- data/lib/wx/core/sizer.rb +12 -2
- data/lib/wx/core/standard_paths.rb +22 -0
- data/lib/wx/core/task_bar_button.rb +19 -0
- data/lib/wx/core/text_entry.rb +4 -1
- data/lib/wx/core/textctrl.rb +11 -1
- data/lib/wx/core/{treectrl.rb → tree_ctrl.rb} +31 -12
- data/lib/wx/core/validator.rb +70 -5
- data/lib/wx/core/window.rb +13 -7
- data/lib/wx/doc/app.rb +48 -38
- data/lib/wx/doc/art_locator.rb +48 -43
- data/lib/wx/doc/aui/auimanager.rb +16 -8
- data/lib/wx/doc/aui/auinotebook.rb +20 -5
- data/lib/wx/doc/clipboard.rb +11 -7
- data/lib/wx/doc/colour_dialog.rb +14 -10
- data/lib/wx/doc/comboctrl.rb +18 -0
- data/lib/wx/doc/controlwithitems.rb +34 -8
- data/lib/wx/doc/data_object.rb +2 -2
- data/lib/wx/doc/date_picker_ctrl.rb +23 -0
- data/lib/wx/doc/editable_listbox.rb +44 -0
- data/lib/wx/doc/enum.rb +15 -0
- data/lib/wx/doc/event.rb +12 -0
- data/lib/wx/doc/evthandler.rb +113 -108
- data/lib/wx/doc/extra/12_client_data.md +89 -0
- data/lib/wx/doc/extra/13_validators.md +139 -0
- data/lib/wx/doc/font.rb +1 -0
- data/lib/wx/doc/gc_dc.rb +6 -1
- data/lib/wx/doc/gdi_common.rb +4 -0
- data/lib/wx/doc/gen/about_dialog_info.rb +26 -2
- data/lib/wx/doc/gen/accelerator.rb +19 -4
- data/lib/wx/doc/gen/accessible.rb +48 -47
- data/lib/wx/doc/gen/activity_indicator.rb +10 -4
- data/lib/wx/doc/gen/animation.rb +19 -3
- data/lib/wx/doc/gen/animation_ctrl.rb +16 -7
- data/lib/wx/doc/gen/any_button.rb +22 -1
- data/lib/wx/doc/gen/app.rb +41 -5
- data/lib/wx/doc/gen/app_traits.rb +65 -15
- data/lib/wx/doc/gen/art_provider.rb +33 -7
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +18 -3
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +2 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +35 -8
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +11 -4
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +4 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +3 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +8 -1
- data/lib/wx/doc/gen/aui/aui_notebook.rb +31 -7
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +5 -4
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +38 -2
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +9 -3
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +2 -1
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +20 -6
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +4 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +5 -7
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +5 -1
- data/lib/wx/doc/gen/aui/event_list.rb +164 -160
- data/lib/wx/doc/gen/banner_window.rb +8 -1
- data/lib/wx/doc/gen/bitmap.rb +94 -16
- data/lib/wx/doc/gen/bitmap_button.rb +16 -8
- data/lib/wx/doc/gen/bitmap_combo_box.rb +20 -10
- data/lib/wx/doc/gen/book_ctrl_base.rb +31 -4
- data/lib/wx/doc/gen/book_ctrl_event.rb +9 -3
- data/lib/wx/doc/gen/box_sizer.rb +5 -1
- data/lib/wx/doc/gen/brush.rb +20 -2
- data/lib/wx/doc/gen/busy_info.rb +10 -2
- data/lib/wx/doc/gen/button.rb +31 -11
- data/lib/wx/doc/gen/calculate_layout_event.rb +5 -3
- data/lib/wx/doc/gen/calendar_ctrl.rb +38 -13
- data/lib/wx/doc/gen/calendar_date_attr.rb +2 -1
- data/lib/wx/doc/gen/calendar_event.rb +5 -2
- data/lib/wx/doc/gen/caret.rb +3 -1
- data/lib/wx/doc/gen/check_box.rb +17 -7
- data/lib/wx/doc/gen/check_list_box.rb +8 -6
- data/lib/wx/doc/gen/choice.rb +28 -9
- data/lib/wx/doc/gen/choicebook.rb +7 -7
- data/lib/wx/doc/gen/client_dc.rb +6 -2
- data/lib/wx/doc/gen/clipboard.rb +16 -3
- data/lib/wx/doc/gen/collapsible_pane.rb +9 -7
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +28 -4
- data/lib/wx/doc/gen/colour_dialog.rb +15 -7
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +13 -10
- data/lib/wx/doc/gen/colour_picker_event.rb +5 -5
- data/lib/wx/doc/gen/combo_box.rb +36 -14
- data/lib/wx/doc/gen/combo_ctrl.rb +117 -295
- data/lib/wx/doc/gen/command_link_button.rb +12 -5
- data/lib/wx/doc/gen/context_help_button.rb +13 -3
- data/lib/wx/doc/gen/control.rb +22 -8
- data/lib/wx/doc/gen/control_with_items.rb +45 -10
- data/lib/wx/doc/gen/core.rb +4 -4
- data/lib/wx/doc/gen/cursor.rb +10 -8
- data/lib/wx/doc/gen/data_format.rb +7 -1
- data/lib/wx/doc/gen/data_object.rb +42 -18
- data/lib/wx/doc/gen/date_event.rb +3 -2
- data/lib/wx/doc/gen/date_picker_ctrl.rb +18 -8
- data/lib/wx/doc/gen/dc.rb +238 -36
- data/lib/wx/doc/gen/defs.rb +51 -51
- data/lib/wx/doc/gen/dial_up_event.rb +2 -1
- data/lib/wx/doc/gen/dial_up_manager.rb +25 -5
- data/lib/wx/doc/gen/dialog.rb +72 -13
- data/lib/wx/doc/gen/dir_dialog.rb +22 -5
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +2 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +14 -10
- data/lib/wx/doc/gen/drag_drop.rb +28 -7
- data/lib/wx/doc/gen/drag_image.rb +13 -2
- data/lib/wx/doc/gen/editable_list_box.rb +7 -5
- data/lib/wx/doc/gen/event.rb +57 -26
- data/lib/wx/doc/gen/event_blocker.rb +2 -3
- data/lib/wx/doc/gen/event_filter.rb +3 -0
- data/lib/wx/doc/gen/event_list.rb +1656 -1652
- data/lib/wx/doc/gen/events.rb +305 -173
- data/lib/wx/doc/gen/evt_handler.rb +49 -3
- data/lib/wx/doc/gen/ext_help_controller.rb +10 -1
- data/lib/wx/doc/gen/file_ctrl.rb +28 -10
- data/lib/wx/doc/gen/file_ctrl_event.rb +7 -4
- data/lib/wx/doc/gen/file_dialog.rb +44 -14
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +19 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +11 -3
- data/lib/wx/doc/gen/file_dir_picker_event.rb +4 -4
- data/lib/wx/doc/gen/file_picker_ctrl.rb +12 -9
- data/lib/wx/doc/gen/file_system.rb +54 -15
- data/lib/wx/doc/gen/find_dialog_event.rb +6 -4
- data/lib/wx/doc/gen/find_replace_data.rb +2 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +4 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +13 -1
- data/lib/wx/doc/gen/font.rb +103 -20
- data/lib/wx/doc/gen/font_data.rb +16 -3
- data/lib/wx/doc/gen/font_dialog.rb +6 -1
- data/lib/wx/doc/gen/font_picker_ctrl.rb +14 -7
- data/lib/wx/doc/gen/font_picker_event.rb +3 -3
- data/lib/wx/doc/gen/frame.rb +73 -15
- data/lib/wx/doc/gen/fs_file.rb +39 -10
- data/lib/wx/doc/gen/gauge.rb +19 -8
- data/lib/wx/doc/gen/gb_sizer_item.rb +5 -1
- data/lib/wx/doc/gen/gcdc.rb +3 -2
- data/lib/wx/doc/gen/gdi_common.rb +80 -11
- data/lib/wx/doc/gen/gdi_object.rb +1 -1
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +13 -7
- data/lib/wx/doc/gen/graphics_context.rb +86 -10
- data/lib/wx/doc/gen/graphics_object.rb +35 -6
- data/lib/wx/doc/gen/grid/event_list.rb +168 -164
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +3 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +16 -3
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +10 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +7 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +256 -12
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_size_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +28 -3
- data/lib/wx/doc/gen/grid/grid_table_message.rb +2 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +21 -7
- data/lib/wx/doc/gen/grid_sizer.rb +11 -1
- data/lib/wx/doc/gen/gui_event_loop.rb +13 -3
- data/lib/wx/doc/gen/header_ctrl.rb +110 -11
- data/lib/wx/doc/gen/header_ctrl_event.rb +4 -2
- data/lib/wx/doc/gen/help_controller.rb +14 -3
- data/lib/wx/doc/gen/help_provider.rb +22 -4
- data/lib/wx/doc/gen/html/event_list.rb +41 -37
- data/lib/wx/doc/gen/html/html_cell.rb +48 -6
- data/lib/wx/doc/gen/html/html_cell_event.rb +5 -4
- data/lib/wx/doc/gen/html/html_easy_printing.rb +20 -3
- data/lib/wx/doc/gen/html/html_help_controller.rb +26 -2
- data/lib/wx/doc/gen/html/html_help_data.rb +8 -1
- data/lib/wx/doc/gen/html/html_help_window.rb +9 -1
- data/lib/wx/doc/gen/html/html_link_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_list_box.rb +54 -16
- data/lib/wx/doc/gen/html/html_printout.rb +7 -1
- data/lib/wx/doc/gen/html/html_window.rb +43 -6
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +9 -8
- data/lib/wx/doc/gen/hyperlink_event.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +23 -29
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +143 -20
- data/lib/wx/doc/gen/image_list.rb +25 -6
- data/lib/wx/doc/gen/info_bar.rb +14 -2
- data/lib/wx/doc/gen/keyboard_state.rb +11 -1
- data/lib/wx/doc/gen/list_box.rb +46 -17
- data/lib/wx/doc/gen/list_ctrl.rb +165 -29
- data/lib/wx/doc/gen/list_event.rb +13 -4
- data/lib/wx/doc/gen/listbook.rb +7 -7
- data/lib/wx/doc/gen/locale.rb +68 -4
- data/lib/wx/doc/gen/log.rb +58 -12
- data/lib/wx/doc/gen/mdi_client_window.rb +11 -2
- data/lib/wx/doc/gen/mdi_frame.rb +51 -7
- data/lib/wx/doc/gen/media_ctrl.rb +43 -18
- data/lib/wx/doc/gen/media_event.rb +6 -4
- data/lib/wx/doc/gen/memory_dc.rb +16 -6
- data/lib/wx/doc/gen/menu.rb +81 -26
- data/lib/wx/doc/gen/menu_bar.rb +74 -15
- data/lib/wx/doc/gen/menu_item.rb +67 -19
- data/lib/wx/doc/gen/message_dialog.rb +17 -8
- data/lib/wx/doc/gen/mini_frame.rb +14 -5
- data/lib/wx/doc/gen/mirror_dc.rb +1 -2
- data/lib/wx/doc/gen/mouse_state.rb +1 -1
- data/lib/wx/doc/gen/multi_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/non_owned_window.rb +4 -1
- data/lib/wx/doc/gen/notebook.rb +27 -9
- data/lib/wx/doc/gen/num_validator.rb +37 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +5 -1
- data/lib/wx/doc/gen/object.rb +3 -1
- data/lib/wx/doc/gen/owner_drawn_combo_box.rb +340 -0
- data/lib/wx/doc/gen/paint_dc.rb +1 -1
- data/lib/wx/doc/gen/palette.rb +5 -1
- data/lib/wx/doc/gen/panel.rb +25 -8
- data/lib/wx/doc/gen/pen.rb +46 -8
- data/lib/wx/doc/gen/pg/event_list.rb +97 -93
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +4 -1
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +12 -1
- data/lib/wx/doc/gen/pg/pg_cell.rb +11 -3
- data/lib/wx/doc/gen/pg/pg_editor.rb +161 -16
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +3 -2
- data/lib/wx/doc/gen/pg/pg_properties.rb +632 -83
- data/lib/wx/doc/gen/pg/pg_property.rb +381 -77
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +11 -4
- data/lib/wx/doc/gen/pg/property_grid.rb +123 -20
- data/lib/wx/doc/gen/pg/property_grid_event.rb +41 -9
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +273 -34
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +62 -10
- data/lib/wx/doc/gen/pg/property_grid_page.rb +33 -8
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +18 -4
- data/lib/wx/doc/gen/picker_base.rb +22 -5
- data/lib/wx/doc/gen/platform_info.rb +35 -9
- data/lib/wx/doc/gen/popup_window.rb +7 -5
- data/lib/wx/doc/gen/progress_dialog.rb +5 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -4
- data/lib/wx/doc/gen/prt/event_list.rb +8 -4
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +3 -1
- data/lib/wx/doc/gen/prt/post_script_dc.rb +3 -2
- data/lib/wx/doc/gen/prt/preview_frame.rb +5 -1
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +4 -0
- data/lib/wx/doc/gen/prt/print_data.rb +31 -3
- data/lib/wx/doc/gen/prt/print_dialog.rb +5 -1
- data/lib/wx/doc/gen/prt/printer.rb +87 -11
- data/lib/wx/doc/gen/prt/printer_dc.rb +3 -1
- data/lib/wx/doc/gen/query_layout_info_event.rb +10 -3
- data/lib/wx/doc/gen/radio_box.rb +28 -10
- data/lib/wx/doc/gen/radio_button.rb +22 -9
- data/lib/wx/doc/gen/rbn/event_list.rb +127 -123
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +82 -3
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +26 -4
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +50 -12
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -1
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +21 -11
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -1
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +16 -4
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +3 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +27 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +3 -1
- data/lib/wx/doc/gen/rearrange_ctrl.rb +5 -2
- data/lib/wx/doc/gen/rearrange_list.rb +12 -4
- data/lib/wx/doc/gen/region.rb +104 -17
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/event_list.rb +116 -112
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +27 -9
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +45 -11
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +23 -14
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +84 -7
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +8 -4
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +8 -2
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +8 -3
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +4 -2
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +6 -3
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +7 -2
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +82 -17
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +54 -11
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +15 -2
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +14 -9
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +4 -1
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +4 -3
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +2 -2
- data/lib/wx/doc/gen/sash_event.rb +13 -4
- data/lib/wx/doc/gen/sash_layout_window.rb +21 -4
- data/lib/wx/doc/gen/sash_window.rb +6 -4
- data/lib/wx/doc/gen/screen_dc.rb +1 -1
- data/lib/wx/doc/gen/scroll_bar.rb +28 -10
- data/lib/wx/doc/gen/scrolled_canvas.rb +48 -10
- data/lib/wx/doc/gen/scrolled_control.rb +48 -10
- data/lib/wx/doc/gen/scrolled_window.rb +48 -10
- data/lib/wx/doc/gen/search_ctrl.rb +14 -9
- data/lib/wx/doc/gen/simplebook.rb +8 -1
- data/lib/wx/doc/gen/single_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/sizer.rb +91 -16
- data/lib/wx/doc/gen/sizer_item.rb +21 -4
- data/lib/wx/doc/gen/slider.rb +50 -17
- data/lib/wx/doc/gen/spin_button.rb +24 -10
- data/lib/wx/doc/gen/spin_ctrl.rb +35 -9
- data/lib/wx/doc/gen/spin_ctrl_double.rb +13 -7
- data/lib/wx/doc/gen/spin_double_event.rb +6 -4
- data/lib/wx/doc/gen/spin_event.rb +4 -3
- data/lib/wx/doc/gen/splash_screen.rb +3 -2
- data/lib/wx/doc/gen/splitter_event.rb +12 -4
- data/lib/wx/doc/gen/splitter_window.rb +100 -18
- data/lib/wx/doc/gen/static_bitmap.rb +109 -7
- data/lib/wx/doc/gen/static_box.rb +15 -7
- data/lib/wx/doc/gen/static_box_sizer.rb +3 -2
- data/lib/wx/doc/gen/static_line.rb +7 -4
- data/lib/wx/doc/gen/static_text.rb +10 -6
- data/lib/wx/doc/gen/status_bar.rb +32 -8
- data/lib/wx/doc/gen/stc/event_list.rb +212 -208
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +207 -13
- data/lib/wx/doc/gen/stc/styled_text_event.rb +31 -6
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +7 -1
- data/lib/wx/doc/gen/svg_file_dc.rb +15 -7
- data/lib/wx/doc/gen/system_options.rb +14 -6
- data/lib/wx/doc/gen/system_settings.rb +9 -3
- data/lib/wx/doc/gen/task_bar_button.rb +324 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +26 -8
- data/lib/wx/doc/gen/task_bar_icon_event.rb +5 -3
- data/lib/wx/doc/gen/text_attr.rb +47 -5
- data/lib/wx/doc/gen/text_ctrl.rb +114 -25
- data/lib/wx/doc/gen/text_entry.rb +69 -11
- data/lib/wx/doc/gen/text_entry_dialog.rb +14 -2
- data/lib/wx/doc/gen/text_validator.rb +58 -9
- data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -6
- data/lib/wx/doc/gen/timer.rb +14 -2
- data/lib/wx/doc/gen/timer_event.rb +2 -2
- data/lib/wx/doc/gen/tip_provider.rb +6 -1
- data/lib/wx/doc/gen/toggle_button.rb +73 -6
- data/lib/wx/doc/gen/tool_bar.rb +141 -25
- data/lib/wx/doc/gen/tool_tip.rb +41 -5
- data/lib/wx/doc/gen/toolbook.rb +6 -4
- data/lib/wx/doc/gen/top_level_window.rb +100 -23
- data/lib/wx/doc/gen/tree_ctrl.rb +89 -16
- data/lib/wx/doc/gen/tree_event.rb +9 -4
- data/lib/wx/doc/gen/treebook.rb +16 -4
- data/lib/wx/doc/gen/ui_action_simulator.rb +10 -2
- data/lib/wx/doc/gen/utils.rb +94 -7
- data/lib/wx/doc/gen/v_list_box.rb +27 -2
- data/lib/wx/doc/gen/v_scrolled_window.rb +21 -4
- data/lib/wx/doc/gen/validator.rb +10 -14
- data/lib/wx/doc/gen/variant.rb +7 -0
- data/lib/wx/doc/gen/window.rb +415 -57
- data/lib/wx/doc/gen/window_dc.rb +2 -1
- data/lib/wx/doc/gen/window_disabler.rb +6 -2
- data/lib/wx/doc/gen/with_images.rb +13 -2
- data/lib/wx/doc/gen/wizard.rb +22 -4
- data/lib/wx/doc/gen/wizard_event.rb +5 -4
- data/lib/wx/doc/gen/wizard_page.rb +7 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +5 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +5 -1
- data/lib/wx/doc/gen/xml_node.rb +33 -4
- data/lib/wx/doc/gen/xml_resource.rb +40 -5
- data/lib/wx/doc/generic_validator.rb +95 -0
- data/lib/wx/doc/graphics_context.rb +1 -0
- data/lib/wx/doc/grid/grid.rb +22 -1
- data/lib/wx/doc/help_controller.rb +11 -7
- data/lib/wx/doc/html/html_help_controller.rb +12 -4
- data/lib/wx/doc/html/simple_html_listbox.rb +22 -0
- data/lib/wx/doc/list_ctrl.rb +33 -29
- data/lib/wx/doc/menu.rb +20 -0
- data/lib/wx/doc/notebook.rb +21 -0
- data/lib/wx/doc/num_validator.rb +387 -0
- data/lib/wx/doc/owner_drawn_combobox.rb +96 -0
- data/lib/wx/doc/pg/events.rb +13 -9
- data/lib/wx/doc/pg/numeric_property_validator.rb +33 -0
- data/lib/wx/doc/pg/pg_property.rb +18 -0
- data/lib/wx/doc/progress_dialog.rb +36 -32
- data/lib/wx/doc/prt/page_setup_dialog.rb +20 -12
- data/lib/wx/doc/prt/print_data.rb +13 -5
- data/lib/wx/doc/prt/print_dialog.rb +31 -23
- data/lib/wx/doc/prt/printer.rb +20 -12
- data/lib/wx/doc/radio_box.rb +19 -15
- data/lib/wx/doc/rbn/ribbon_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_gallery.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +13 -5
- data/lib/wx/doc/region_iterator.rb +32 -28
- data/lib/wx/doc/rtc/rich_text_composite_object.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_ctrl.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_paragraph.rb +24 -0
- data/lib/wx/doc/rtc/richtext_buffer.rb +27 -19
- data/lib/wx/doc/rtc/richtext_printing.rb +17 -9
- data/lib/wx/doc/rtc/richtext_style_sheet.rb +17 -9
- data/lib/wx/doc/sizer.rb +20 -0
- data/lib/wx/doc/static_bitmap.rb +25 -0
- data/lib/wx/doc/stc/styled_text_ctrl.rb +24 -0
- data/lib/wx/doc/stream.rb +39 -35
- data/lib/wx/doc/system_settings.rb +30 -26
- data/lib/wx/doc/text_validator.rb +23 -9
- data/lib/wx/doc/textctrl.rb +16 -0
- data/lib/wx/doc/tree_ctrl.rb +95 -0
- data/lib/wx/doc/treebook.rb +9 -5
- data/lib/wx/doc/v_list_box.rb +9 -5
- data/lib/wx/doc/validator.rb +113 -0
- data/lib/wx/doc/variant.rb +164 -160
- data/lib/wx/doc/window.rb +87 -47
- data/lib/wx/doc/window_disabler.rb +10 -6
- data/lib/wx/grid/grid.rb +27 -4
- data/lib/wx/html/events/evt_list.rb +0 -10
- data/lib/wx/html/simple_html_listbox.rb +24 -91
- data/lib/wx/keyword_defs.rb +34 -2
- data/lib/wx/pg/pg_property.rb +22 -0
- data/lib/wx/rbn/ribbon_gallery.rb +0 -21
- data/lib/wx/rtc/require.rb +3 -0
- data/lib/wx/rtc/rich_text_composite_object.rb +25 -0
- data/lib/wx/rtc/rich_text_ctrl.rb +25 -0
- data/lib/wx/rtc/rich_text_paragraph.rb +25 -0
- data/lib/wx/stc/require.rb +1 -0
- data/lib/wx/stc/styled_text_ctrl.rb +25 -0
- data/lib/wx/version.rb +1 -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/lib/config/linux.rb +0 -3
- data/rakelib/lib/config/macosx.rb +2 -2
- data/rakelib/lib/config/mingw.rb +13 -1
- data/rakelib/lib/config/unixish.rb +1 -1
- data/rakelib/lib/config.rb +14 -4
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +74 -2
- data/rakelib/yard/templates/default/fulldoc/html/full_list.erb +38 -0
- data/rakelib/yard/templates/default/fulldoc/html/setup.rb +39 -0
- data/rakelib/yard/templates/default/tags/html/wxrb_require.erb +10 -0
- data/rakelib/yard/templates/default/tags/setup.rb +16 -0
- data/rakelib/yard/yard-custom-templates.rb +3 -0
- data/samples/aui/aui.rb +1237 -1233
- data/samples/calendar/calendar.rb +293 -289
- data/samples/controls/get_item_sample.rb +83 -79
- data/samples/controls/htlbox.rb +331 -327
- data/samples/dialogs/dialogs.rb +682 -694
- data/samples/dialogs/wizard.rb +52 -55
- data/samples/dragdrop/dragdrop.rb +146 -142
- data/samples/drawing/bitmap.rb +29 -26
- data/samples/drawing/bitmap_image.rb +84 -80
- data/samples/drawing/graphics_drawing.rb +209 -205
- data/samples/drawing/image_prt.rb +344 -340
- data/samples/drawing/maths_images.rb +18 -1
- data/samples/drawing/rmagic_bitmap_image.rb +88 -84
- data/samples/etc/caret.rb +306 -0
- data/samples/etc/miniframe.rb +65 -60
- data/samples/etc/sash.rb +109 -105
- data/samples/etc/scrollwin.rb +86 -80
- data/samples/etc/system_settings.rb +216 -209
- data/samples/event/activation.rb +72 -67
- data/samples/event/event.rb +160 -153
- data/samples/event/threaded.rb +8 -1
- data/samples/event/update_ui_event.rb +67 -60
- data/samples/grid/grid.rb +188 -181
- data/samples/grid/gridtablebase.rb +136 -129
- data/samples/html/html.rb +208 -204
- data/samples/mdi/mdi.rb +59 -54
- data/samples/minimal/minimal.rb +54 -51
- data/samples/minimal/nothing.rb +1 -0
- data/samples/printing/printing.rb +367 -377
- data/samples/printing/printing2.rb +203 -198
- data/samples/propgrid/propgrid.rb +2312 -2308
- data/samples/propgrid/propgrid_minimal.rb +57 -50
- data/samples/ribbon/ribbon.rb +780 -774
- data/samples/sampler/ext.rb +0 -33
- data/samples/sampler/sample.rb +4 -9
- data/samples/sampler.rb +1 -1
- data/samples/splash/splash.rb +118 -116
- data/samples/text/rich_textctrl.rb +207 -201
- data/samples/text/richtext.rb +1409 -1405
- data/samples/text/scintilla.rb +137 -128
- data/samples/text/textctrl.rb +89 -83
- data/samples/text/unicode.rb +175 -168
- data/samples/treectrl/treectrl.rb +1430 -1426
- data/samples/widgets/activityindicator.rb +95 -0
- data/samples/widgets/art/widgets/activityindicator.xpm +278 -0
- data/samples/widgets/art/widgets/bmpbtn.xpm +37 -0
- data/samples/widgets/art/widgets/bmpcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/button.xpm +54 -0
- data/samples/widgets/art/widgets/checkbox.xpm +54 -0
- data/samples/{bigdemo/icons → widgets/art/widgets}/choice.xpm +1 -1
- data/samples/widgets/art/widgets/choicebk.xpm +54 -0
- data/samples/widgets/art/widgets/clrpicker.xpm +193 -0
- data/samples/widgets/art/widgets/combobox.xpm +54 -0
- data/samples/widgets/art/widgets/datepick.xpm +200 -0
- data/samples/widgets/art/widgets/dirctrl.xpm +54 -0
- data/samples/widgets/art/widgets/dirpicker.xpm +213 -0
- data/samples/widgets/art/widgets/filepicker.xpm +214 -0
- data/samples/widgets/art/widgets/fontpicker.xpm +185 -0
- data/samples/widgets/art/widgets/gauge.xpm +54 -0
- data/samples/widgets/art/widgets/header.xpm +54 -0
- data/samples/widgets/art/widgets/hyperlnk.xpm +54 -0
- data/samples/widgets/art/widgets/listbook.xpm +54 -0
- data/samples/widgets/art/widgets/listbox.xpm +54 -0
- data/samples/widgets/art/widgets/native.xpm +81 -0
- data/samples/widgets/art/widgets/notebook.xpm +54 -0
- data/samples/widgets/art/widgets/odcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/radiobox.xpm +54 -0
- data/samples/widgets/art/widgets/scrolbar.xpm +54 -0
- data/samples/widgets/art/widgets/slider.xpm +54 -0
- data/samples/widgets/art/widgets/spinbtn.xpm +40 -0
- data/samples/widgets/art/widgets/statbmp.xpm +40 -0
- data/samples/widgets/art/widgets/statbox.xpm +54 -0
- data/samples/widgets/art/widgets/stattext.xpm +54 -0
- data/samples/widgets/art/widgets/text.xpm +54 -0
- data/samples/widgets/art/widgets/timepick.xpm +207 -0
- data/samples/widgets/art/widgets/toggle.xpm +54 -0
- data/samples/widgets/art/widgets/toucan.png +0 -0
- data/samples/widgets/bmpcombobox.rb +651 -0
- data/samples/widgets/button.rb +462 -0
- data/samples/widgets/checkbox.rb +211 -0
- data/samples/widgets/choice.rb +287 -0
- data/samples/widgets/clrpicker.rb +156 -0
- data/samples/widgets/combobox.rb +516 -0
- data/samples/widgets/datepick.rb +215 -0
- data/samples/widgets/dirctrl.rb +265 -0
- data/samples/widgets/dirpicker.rb +158 -0
- data/samples/widgets/editlbox.rb +122 -0
- data/samples/widgets/filectrl.rb +216 -0
- data/samples/widgets/filepicker.rb +214 -0
- data/samples/widgets/fontpicker.rb +135 -0
- data/samples/widgets/gauge.rb +311 -0
- data/samples/widgets/headerctrl.rb +236 -0
- data/samples/widgets/hyperlink.rb +203 -0
- data/samples/widgets/itemcontainer.rb +185 -0
- data/samples/widgets/listbox.rb +473 -0
- data/samples/widgets/notebook.rb +488 -0
- data/samples/widgets/odcombobox.rb +608 -0
- data/samples/widgets/radiobox.rb +328 -0
- data/samples/widgets/searchctrl.rb +159 -0
- data/samples/widgets/slider.rb +594 -0
- data/samples/widgets/spinbtn.rb +443 -0
- data/samples/widgets/statbmp.rb +130 -0
- data/samples/widgets/static.rb +436 -0
- data/samples/widgets/textctrl.rb +700 -0
- data/samples/widgets/timepick.rb +148 -0
- data/samples/widgets/tn_widgets.png +0 -0
- data/samples/widgets/toggle.rb +385 -0
- data/samples/widgets/widgets.rb +1233 -0
- data/samples/xrc/custom_xrc_sample.rb +47 -41
- data/samples/xrc/xrc_sample.rb +53 -47
- data/tests/media/beep_lo.wav +0 -0
- data/tests/test_event_handling.rb +52 -34
- data/tests/test_events.rb +7 -0
- data/tests/test_item_data.rb +24 -0
- data/tests/test_list_ctrl.rb +1 -1
- data/tests/test_media_ctrl.rb +38 -0
- data/tests/test_menu.rb +69 -0
- data/tests/test_pg.rb +27 -0
- data/tests/test_richtext.rb +45 -0
- data/tests/test_sizer.rb +59 -0
- data/tests/test_std_controls.rb +42 -1
- data/tests/test_styled_text_ctrl.rb +46 -0
- data/tests/test_tree_ctrl.rb +138 -0
- data/tests/test_validators.rb +805 -0
- data/tests/test_window.rb +12 -0
- data/tests/testapp_noframe.rb +1 -1
- metadata +113 -138
- data/lib/wx/core/choice.rb +0 -14
- data/lib/wx/core/combo_ctrl.rb +0 -110
- data/samples/bigdemo/About.rbw +0 -39
- data/samples/bigdemo/ColorPanel.rbw +0 -23
- data/samples/bigdemo/GridSimple.rbw +0 -78
- data/samples/bigdemo/MDIDemo.rbw +0 -57
- data/samples/bigdemo/PopupMenu.rbw +0 -146
- data/samples/bigdemo/ShapedWindow.rbw +0 -128
- data/samples/bigdemo/Sizers.rbw +0 -541
- data/samples/bigdemo/bigdemo.rb +0 -817
- data/samples/bigdemo/demoTemplate.rbw +0 -33
- data/samples/bigdemo/helpfile.htb +0 -0
- data/samples/bigdemo/icons/Test 015.jpg +0 -0
- data/samples/bigdemo/icons/Test 015.png +0 -0
- data/samples/bigdemo/icons/choice.bmp +0 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +0 -27
- data/samples/bigdemo/icons/copy.xpm +0 -25
- data/samples/bigdemo/icons/cut.xpm +0 -24
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +0 -27
- data/samples/bigdemo/icons/help.xpm +0 -25
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +0 -27
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +0 -44
- data/samples/bigdemo/icons/new.xpm +0 -24
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +0 -45
- data/samples/bigdemo/icons/open.xpm +0 -26
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +0 -38
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +0 -26
- data/samples/bigdemo/icons/print.xpm +0 -26
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +0 -27
- data/samples/bigdemo/icons/robert.xpm +0 -415
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +0 -25
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +0 -39
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +0 -42
- data/samples/bigdemo/icons/stattext.xpm +0 -24
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +0 -79
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +0 -27
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +0 -38
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +0 -38
- data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
- data/samples/bigdemo/icons/wxwin.ico +0 -0
- data/samples/bigdemo/icons/wxwin16x16.png +0 -0
- data/samples/bigdemo/icons/wxwin16x16.xpm +0 -25
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +0 -98
- data/samples/bigdemo/tips.txt +0 -7
- data/samples/bigdemo/utils.rb +0 -20
- data/samples/bigdemo/wxArtProvider.rbw +0 -282
- data/samples/bigdemo/wxBitmapButton.rbw +0 -65
- data/samples/bigdemo/wxButton.rbw +0 -64
- data/samples/bigdemo/wxCalendarCtrl.rbw +0 -59
- data/samples/bigdemo/wxCheckBox.rbw +0 -50
- data/samples/bigdemo/wxCheckListBox.rbw +0 -65
- data/samples/bigdemo/wxChoice.rbw +0 -47
- data/samples/bigdemo/wxChoicebook.rbw +0 -78
- data/samples/bigdemo/wxColourDialog.rbw +0 -33
- data/samples/bigdemo/wxComboBox.rbw +0 -77
- data/samples/bigdemo/wxCursor.rbw +0 -136
- data/samples/bigdemo/wxDialog.rbw +0 -74
- data/samples/bigdemo/wxDirDialog.rbw +0 -29
- data/samples/bigdemo/wxDragImage.rbw +0 -70
- data/samples/bigdemo/wxFileDialog.rbw +0 -37
- data/samples/bigdemo/wxFileDialog_Save.rbw +0 -35
- data/samples/bigdemo/wxFindReplaceDialog.rbw +0 -82
- data/samples/bigdemo/wxFontDialog.rbw +0 -200
- data/samples/bigdemo/wxFrame.rbw +0 -53
- data/samples/bigdemo/wxGauge.rbw +0 -65
- data/samples/bigdemo/wxGenericDirCtrl.rbw +0 -74
- data/samples/bigdemo/wxGrid.rbw +0 -66
- data/samples/bigdemo/wxHtmlHelpController.rbw +0 -52
- data/samples/bigdemo/wxListBox.rbw +0 -140
- data/samples/bigdemo/wxListCtrl_virtual.rbw +0 -112
- data/samples/bigdemo/wxMDIWindows.rbw +0 -50
- data/samples/bigdemo/wxMenu.rbw +0 -247
- data/samples/bigdemo/wxMessageDialog.rbw +0 -27
- data/samples/bigdemo/wxMiniFrame.rbw +0 -70
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +0 -29
- data/samples/bigdemo/wxNotebook.rbw +0 -136
- data/samples/bigdemo/wxProgressDialog.rbw +0 -43
- data/samples/bigdemo/wxRadioBox.rbw +0 -72
- data/samples/bigdemo/wxRadioButton.rbw +0 -125
- data/samples/bigdemo/wxSashWindow.rbw +0 -141
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +0 -57
- data/samples/bigdemo/wxScrolledWindow.rbw +0 -199
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +0 -33
- data/samples/bigdemo/wxSlider.rbw +0 -42
- data/samples/bigdemo/wxSpinButton.rbw +0 -50
- data/samples/bigdemo/wxSpinCtrl.rbw +0 -51
- data/samples/bigdemo/wxSplitterWindow.rbw +0 -63
- data/samples/bigdemo/wxStaticBitmap.rbw +0 -47
- data/samples/bigdemo/wxStaticText.rbw +0 -55
- data/samples/bigdemo/wxStatusBar.rbw +0 -126
- data/samples/bigdemo/wxTextCtrl.rbw +0 -149
- data/samples/bigdemo/wxTextEntryDialog.rbw +0 -31
- data/samples/bigdemo/wxToggleButton.rbw +0 -49
- data/samples/bigdemo/wxToolBar.rbw +0 -131
- data/samples/bigdemo/wxTreeCtrl.rbw +0 -191
- data/samples/caret/caret.rb +0 -298
- data/samples/caret/mondrian.xpm +0 -44
- data/samples/controls/books.rb +0 -189
- data/samples/controls/choice.xpm +0 -27
- data/samples/controls/combo.xpm +0 -27
- data/samples/controls/controls.rb +0 -1099
- data/samples/controls/gauge.xpm +0 -27
- data/samples/controls/list.xpm +0 -27
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +0 -44
- data/samples/controls/radio.xpm +0 -27
- data/samples/controls/stattext.xpm +0 -24
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +0 -27
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/etc/choice.rb +0 -87
- data/samples/etc/tn_choice.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +0 -44
- /data/samples/{caret → etc}/tn_caret.png +0 -0
data/lib/wx/doc/gen/dc.rb
CHANGED
@@ -10,7 +10,7 @@ module Wx
|
|
10
10
|
#
|
11
11
|
# {Wx::DC#blit} and {Wx::DC#stretch_blit}).
|
12
12
|
# The description of the values below refer to how a generic src source pixel and the corresponding dst destination pixel gets combined together to produce the final pixel. E.g. {Wx::RasterOperationMode::CLEAR} and {Wx::RasterOperationMode::SET} completely ignore the source and the destination pixel and always put zeroes or ones in the final surface.
|
13
|
-
# Note that not all modes are supported under all platforms. Notably
|
13
|
+
# Note that not all modes are supported under all platforms. Notably WXGTK3 and WXOSX only support the following modes:
|
14
14
|
#
|
15
15
|
# - {Wx::RasterOperationMode::COPY}
|
16
16
|
# - {Wx::RasterOperationMode::OR}
|
@@ -131,28 +131,28 @@ module Wx
|
|
131
131
|
end # MappingMode
|
132
132
|
|
133
133
|
# A {Wx::DC} is a "device context" onto which graphics and text can be drawn.
|
134
|
+
#
|
134
135
|
# It is intended to represent different output devices and offers a common abstract API for drawing on any of them.
|
135
136
|
# wxWidgets offers an alternative drawing API based on the modern drawing backends GDI+, CoreGraphics, Cairo and Direct2D. See {Wx::GraphicsContext}, {Wx::GraphicsRenderer} and related classes. There is also a {Wx::GCDC} linking the APIs by offering the {Wx::DC} API on top of a {Wx::GraphicsContext}.
|
136
137
|
# {Wx::DC} is an abstract base class and cannot be created directly. Use {Wx::PaintDC}, {Wx::ClientDC}, {Wx::WindowDC}, {Wx::ScreenDC}, {Wx::MemoryDC} or {Wx::PRT::PrinterDC}. Notice that device contexts which are associated with windows (i.e. {Wx::ClientDC}, {Wx::WindowDC} and {Wx::PaintDC}) use the window font and colours by default (starting with wxWidgets 2.9.0) but the other device context classes use system-default values so you always must set the appropriate fonts and colours before using them.
|
137
138
|
# In addition to the versions of the methods documented below, there are also versions which accept single {Wx::Point} parameter instead of the two {Wx::Coord} ones or {Wx::Point} and {Wx::Size} instead of the four {Wx::Coord} parameters.
|
138
139
|
# Beginning with wxWidgets 2.9.0 the entire {Wx::DC} code has been reorganized. All platform dependent code (actually all drawing code) has been moved into backend classes which derive from a common {Wx::DCImpl} class. The user-visible classes such as {Wx::ClientDC} and {Wx::PaintDC} merely forward all calls to the backend implementation.
|
139
140
|
#
|
140
|
-
#
|
141
|
+
# ## Device and logical units
|
141
142
|
#
|
142
143
|
# In the {Wx::DC} context there is a distinction between logical units and device units.
|
143
144
|
# <b>Device</b> units are the units native to the particular device; e.g. for a screen, a device unit is a pixel. For a printer, the device unit is defined by the resolution of the printer (usually given in DPI: dot-per-inch).
|
144
145
|
# All {Wx::DC} functions use instead <b>logical</b> units, unless where explicitly stated. Logical units are arbitrary units mapped to device units using the current mapping mode (see {Wx::DC#set_map_mode}).
|
145
146
|
# This mechanism allows reusing the same code which prints on e.g. a window on the screen to print on e.g. a paper.
|
146
147
|
#
|
147
|
-
#
|
148
|
+
# ## Support for Transparency / Alpha Channel
|
148
149
|
#
|
149
150
|
# In general {Wx::DC} methods don't support alpha transparency and the alpha component of {Wx::Colour} is simply ignored and you need to use {Wx::GraphicsContext} for full transparency support. There are, however, a few exceptions: first, under macOS and GTK+ 3 colours with alpha channel are supported in all the normal {Wx::DC}-derived classes as they use {Wx::GraphicsContext} internally. Second, under all platforms {Wx::SVGFileDC} also fully supports alpha channel. In both of these cases the instances of {Wx::Pen} or {Wx::Brush} that are built from {Wx::Colour} use the colour's alpha values when stroking or filling.
|
150
151
|
#
|
151
|
-
#
|
152
|
+
# ## Support for Transformation Matrix
|
152
153
|
#
|
153
154
|
# On some platforms (currently under MSW, GTK+ 3, macOS) {Wx::DC} has support for applying an arbitrary affine transformation matrix to its coordinate system (since 3.1.1 this feature is also supported by {Wx::GCDC} in all ports). Call {Wx::DC#can_use_transform_matrix} to check if this support is available and then call {Wx::DC#set_transform_matrix} if it is. If the transformation matrix is not supported, {Wx::DC#set_transform_matrix} always simply returns false and doesn't do anything.
|
154
155
|
# This feature is only available when {Wx::Setup::USE_DC_TRANSFORM_MATRIX} build option is enabled.
|
155
|
-
# ===
|
156
156
|
#
|
157
157
|
# Category: Device Contexts, Graphics Device Interface (GDI)
|
158
158
|
#
|
@@ -172,53 +172,97 @@ module Wx
|
|
172
172
|
class DC < Object
|
173
173
|
|
174
174
|
# Convert device X coordinate to logical coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
175
|
-
#
|
175
|
+
#
|
176
|
+
# <div class="wxrb-note">
|
177
|
+
# <b>Note:</b>
|
178
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
179
|
+
# </p>
|
180
|
+
# </div>
|
176
181
|
# @param x [Integer]
|
177
182
|
# @return [Integer]
|
178
183
|
def device_to_logical_x(x) end
|
179
184
|
|
180
185
|
# Convert device X coordinate to relative logical coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
186
|
+
#
|
181
187
|
# Use this for converting a horizontal distance like for example a width.
|
182
|
-
#
|
188
|
+
#
|
189
|
+
# <div class="wxrb-note">
|
190
|
+
# <b>Note:</b>
|
191
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
192
|
+
# </p>
|
193
|
+
# </div>
|
183
194
|
# @param x [Integer]
|
184
195
|
# @return [Integer]
|
185
196
|
def device_to_logical_x_rel(x) end
|
186
197
|
|
187
198
|
# Converts device Y coordinate to logical coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
188
|
-
#
|
199
|
+
#
|
200
|
+
# <div class="wxrb-note">
|
201
|
+
# <b>Note:</b>
|
202
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
203
|
+
# </p>
|
204
|
+
# </div>
|
189
205
|
# @param y [Integer]
|
190
206
|
# @return [Integer]
|
191
207
|
def device_to_logical_y(y) end
|
192
208
|
|
193
209
|
# Convert device Y coordinate to relative logical coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
210
|
+
#
|
194
211
|
# Use this for converting a vertical distance like for example a height.
|
195
|
-
#
|
212
|
+
#
|
213
|
+
# <div class="wxrb-note">
|
214
|
+
# <b>Note:</b>
|
215
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
216
|
+
# </p>
|
217
|
+
# </div>
|
196
218
|
# @param y [Integer]
|
197
219
|
# @return [Integer]
|
198
220
|
def device_to_logical_y_rel(y) end
|
199
221
|
|
200
222
|
# Converts logical X coordinate to device coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
201
|
-
#
|
223
|
+
#
|
224
|
+
# <div class="wxrb-note">
|
225
|
+
# <b>Note:</b>
|
226
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
227
|
+
# </p>
|
228
|
+
# </div>
|
202
229
|
# @param x [Integer]
|
203
230
|
# @return [Integer]
|
204
231
|
def logical_to_device_x(x) end
|
205
232
|
|
206
233
|
# Converts logical X coordinate to relative device coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
234
|
+
#
|
207
235
|
# Use this for converting a horizontal distance like for example a width.
|
208
|
-
#
|
236
|
+
#
|
237
|
+
# <div class="wxrb-note">
|
238
|
+
# <b>Note:</b>
|
239
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
240
|
+
# </p>
|
241
|
+
# </div>
|
209
242
|
# @param x [Integer]
|
210
243
|
# @return [Integer]
|
211
244
|
def logical_to_device_x_rel(x) end
|
212
245
|
|
213
246
|
# Converts logical Y coordinate to device coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
214
|
-
#
|
247
|
+
#
|
248
|
+
# <div class="wxrb-note">
|
249
|
+
# <b>Note:</b>
|
250
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
251
|
+
# </p>
|
252
|
+
# </div>
|
215
253
|
# @param y [Integer]
|
216
254
|
# @return [Integer]
|
217
255
|
def logical_to_device_y(y) end
|
218
256
|
|
219
257
|
# Converts logical Y coordinate to relative device coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
258
|
+
#
|
220
259
|
# Use this for converting a vertical distance like for example a height.
|
221
|
-
#
|
260
|
+
#
|
261
|
+
# <div class="wxrb-note">
|
262
|
+
# <b>Note:</b>
|
263
|
+
# <p>Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
264
|
+
# </p>
|
265
|
+
# </div>
|
222
266
|
# @param y [Integer]
|
223
267
|
# @return [Integer]
|
224
268
|
def logical_to_device_y_rel(y) end
|
@@ -236,6 +280,7 @@ module Wx
|
|
236
280
|
|
237
281
|
# @overload device_to_logical_rel(x, y)
|
238
282
|
# Converts device x, y coordinates to relative logical coordinates taking into account all applied transformations like the current mapping mode, scale factors, affine transformation.
|
283
|
+
#
|
239
284
|
# Use this for converting distances like e.g. width and height.
|
240
285
|
# @param x [Integer]
|
241
286
|
# @param y [Integer]
|
@@ -259,6 +304,7 @@ module Wx
|
|
259
304
|
|
260
305
|
# @overload logical_to_device_rel(x, y)
|
261
306
|
# Converts logical x, y coordinates to relative device coordinates taking into account all applied transformations like the current mapping mode, scale factors, affine transformation.
|
307
|
+
#
|
262
308
|
# Use this for converting distances like e.g. width and height.
|
263
309
|
# @param x [Integer]
|
264
310
|
# @param y [Integer]
|
@@ -270,6 +316,7 @@ module Wx
|
|
270
316
|
def logical_to_device_rel(*args) end
|
271
317
|
|
272
318
|
# Clears the device context using the current background brush.
|
319
|
+
#
|
273
320
|
# Note that {Wx::DC#set_background} method must be used to set the brush used by {Wx::DC#clear}, the brush used for filling the shapes set by {Wx::DC#set_brush} is ignored by it.
|
274
321
|
# If no background brush was set, solid white brush is used to clear the device context.
|
275
322
|
# @return [void]
|
@@ -277,7 +324,12 @@ module Wx
|
|
277
324
|
|
278
325
|
# @overload draw_arc(xStart, yStart, xEnd, yEnd, xc, yc)
|
279
326
|
# Draws an arc from the given start to the given end point.
|
280
|
-
#
|
327
|
+
#
|
328
|
+
# <div class="wxrb-note">
|
329
|
+
# <b>Note:</b>
|
330
|
+
# <p>{Wx::DC#draw_elliptic_arc} has more clear semantics and it is recommended to use it instead of this function.
|
331
|
+
# </p>
|
332
|
+
# </div>
|
281
333
|
#
|
282
334
|
# The arc drawn is an arc of the circle centered at (xc, yc). Its start point is (xStart, yStart) whereas its end point is the point of intersection of the line passing by (xc, yc) and (xEnd, yEnd) with the circle passing by (xStart, yStart).
|
283
335
|
# The arc is drawn in a counter-clockwise direction between the start and the end points.
|
@@ -299,6 +351,7 @@ module Wx
|
|
299
351
|
|
300
352
|
# @overload draw_bitmap(bitmap, x, y, useMask=false)
|
301
353
|
# Draw a bitmap on the device context at the specified point.
|
354
|
+
#
|
302
355
|
# If useMask is true and the bitmap has a transparency mask, the bitmap will be drawn transparently.
|
303
356
|
# When drawing a mono-bitmap, the current text foreground colour will be used to draw the foreground of the bitmap (all bits set to 1), and the current text background colour to draw the background (all bits set to 0).
|
304
357
|
# @see Wx::DC#set_text_foreground
|
@@ -333,6 +386,7 @@ module Wx
|
|
333
386
|
# @overload draw_circle(x, y, radius)
|
334
387
|
# Draws a circle with the given centre and radius.
|
335
388
|
#
|
389
|
+
#
|
336
390
|
# @see Wx::DC#draw_ellipse
|
337
391
|
# @param x [Integer]
|
338
392
|
# @param y [Integer]
|
@@ -347,6 +401,7 @@ module Wx
|
|
347
401
|
|
348
402
|
# @overload draw_ellipse(x, y, width, height)
|
349
403
|
# Draws an ellipse contained in the rectangle specified either with the given top left corner and the given size or directly.
|
404
|
+
#
|
350
405
|
# The current pen is used for the outline and the current brush for filling the shape.
|
351
406
|
# @see Wx::DC#draw_circle
|
352
407
|
# @param x [Integer]
|
@@ -367,6 +422,7 @@ module Wx
|
|
367
422
|
|
368
423
|
# @overload draw_elliptic_arc(x, y, width, height, start, end_)
|
369
424
|
# Draws an arc of an ellipse.
|
425
|
+
#
|
370
426
|
# The current pen is used for drawing the arc and the current brush is used for drawing the pie.
|
371
427
|
# x and y specify the x and y coordinates of the upper-left corner of the rectangle that contains the ellipse.
|
372
428
|
# width and height specify the width and height of the rectangle that contains the ellipse.
|
@@ -391,6 +447,7 @@ module Wx
|
|
391
447
|
|
392
448
|
# @overload draw_icon(icon, x, y)
|
393
449
|
# Draw an icon on the display (does nothing if the device context is PostScript).
|
450
|
+
#
|
394
451
|
# This can be the simplest way of drawing bitmaps on a window.
|
395
452
|
# @param icon [Wx::Icon]
|
396
453
|
# @param x [Integer]
|
@@ -423,6 +480,7 @@ module Wx
|
|
423
480
|
|
424
481
|
# @overload draw_line(x1, y1, x2, y2)
|
425
482
|
# Draws a line from the first point to the second.
|
483
|
+
#
|
426
484
|
# The current pen is used for drawing the line. Note that the point (x2, y2) is not part of the line and is not drawn by this function (this is consistent with the behaviour of many other toolkits).
|
427
485
|
# @param x1 [Integer]
|
428
486
|
# @param y1 [Integer]
|
@@ -437,6 +495,7 @@ module Wx
|
|
437
495
|
def draw_line(*args) end
|
438
496
|
|
439
497
|
# Draws lines using an array of points of size n adding the optional offset coordinate.
|
498
|
+
#
|
440
499
|
# The current pen is used for drawing the lines.
|
441
500
|
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
442
501
|
# @param xoffset [Integer]
|
@@ -446,6 +505,7 @@ module Wx
|
|
446
505
|
|
447
506
|
# @overload draw_point(x, y)
|
448
507
|
# Draws a point using the color of the current pen.
|
508
|
+
#
|
449
509
|
# Note that the other properties of the pen are not used, such as width.
|
450
510
|
# @param x [Integer]
|
451
511
|
# @param y [Integer]
|
@@ -457,6 +517,7 @@ module Wx
|
|
457
517
|
def draw_point(*args) end
|
458
518
|
|
459
519
|
# Draws a filled polygon using an array of points of size n, adding the optional offset coordinate.
|
520
|
+
#
|
460
521
|
# The first and last points are automatically closed.
|
461
522
|
# The last argument specifies the fill rule: <b>{Wx::PolygonFillMode::ODDEVEN_RULE}</b> (the default) or <b>{Wx::PolygonFillMode::WINDING_RULE}</b>.
|
462
523
|
# The current pen is used for drawing the outline, and the current brush for filling the shape. Using a transparent brush suppresses filling.
|
@@ -468,6 +529,7 @@ module Wx
|
|
468
529
|
def draw_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::PolygonFillMode::ODDEVEN_RULE) end
|
469
530
|
|
470
531
|
# Draws two or more filled polygons using an array of points, adding the optional offset coordinates.
|
532
|
+
#
|
471
533
|
# Notice that for the platforms providing a native implementation of this function (Windows and PostScript-based {Wx::DC} currently), this is more efficient than using {Wx::DC#draw_polygon} in a loop.
|
472
534
|
# n specifies the number of polygons to draw, the array count of size n specifies the number of points in each of the polygons in the points array.
|
473
535
|
# The last argument specifies the fill rule: <b>{Wx::PolygonFillMode::ODDEVEN_RULE}</b> (the default) or <b>{Wx::PolygonFillMode::WINDING_RULE}</b>.
|
@@ -482,6 +544,7 @@ module Wx
|
|
482
544
|
|
483
545
|
# @overload draw_rectangle(x, y, width, height)
|
484
546
|
# Draws a rectangle with the given corner coordinate and size.
|
547
|
+
#
|
485
548
|
# Normally, x and y specify the top left corner coordinates and both width and height are positive, however they are also allowed to be negative, in which case the corresponding corner coordinate refers to the right or bottom corner instead.
|
486
549
|
# The current pen is used for the outline and the current brush for filling the shape.
|
487
550
|
# @param x [Integer]
|
@@ -502,8 +565,14 @@ module Wx
|
|
502
565
|
|
503
566
|
# @overload draw_rotated_text(text, x, y, angle)
|
504
567
|
# Draws the text rotated by angle degrees (positive angles are counterclockwise; the full angle is 360 degrees).
|
568
|
+
#
|
505
569
|
# Notice that, as with {Wx::DC#draw_text}, the text can contain multiple lines separated by the new line (<code>'\n'</code>) characters.
|
506
|
-
#
|
570
|
+
#
|
571
|
+
# <div class="wxrb-note">
|
572
|
+
# <b>Note:</b>
|
573
|
+
# <p>Under MSW only TrueType fonts can be drawn by this function. In particular, a font different from {Wx::NORMAL_FONT} should be used as the latter is not a TrueType font. {Wx::SWISS_FONT} is an example of a font which is.
|
574
|
+
# </p>
|
575
|
+
# </div>
|
507
576
|
# @see Wx::DC#draw_text
|
508
577
|
# @param text [String]
|
509
578
|
# @param x [Integer]
|
@@ -520,6 +589,7 @@ module Wx
|
|
520
589
|
|
521
590
|
# @overload draw_rounded_rectangle(x, y, width, height, radius)
|
522
591
|
# Draws a rectangle with the given top left corner, and with the given size.
|
592
|
+
#
|
523
593
|
# The corners are quarter-circles using the given radius. The current pen is used for the outline and the current brush for filling the shape.
|
524
594
|
# If radius is positive, the value is assumed to be the radius of the rounded corner. If radius is negative, the absolute value is assumed to be the proportion of the smallest dimension of the rectangle. This means that the corner can be a sensible size relative to the size of the rectangle, and also avoids the strange effects X produces when the corners are too big for the rectangle.
|
525
595
|
# @param x [Integer]
|
@@ -543,8 +613,14 @@ module Wx
|
|
543
613
|
|
544
614
|
# @overload draw_spline(points)
|
545
615
|
# Draws a spline between all given points using the current pen.
|
616
|
+
#
|
546
617
|
# The number of points must be at least 2 for the spline to be drawn.
|
547
|
-
#
|
618
|
+
#
|
619
|
+
# <div class="wxrb-note">
|
620
|
+
# <b>Note:</b>
|
621
|
+
# <p>Drawn curve is not an interpolating curve - it does not go through all points. It may be considered a smoothing curve.
|
622
|
+
# </p>
|
623
|
+
# </div>
|
548
624
|
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
549
625
|
# @return [void]
|
550
626
|
# @overload draw_spline(x1, y1, x2, y2, x3, y3)
|
@@ -560,9 +636,15 @@ module Wx
|
|
560
636
|
|
561
637
|
# @overload draw_text(text, x, y)
|
562
638
|
# Draws a text string at the specified point, using the current text font, and the current text foreground and background colours.
|
639
|
+
#
|
563
640
|
# The coordinates refer to the top-left corner of the rectangle bounding the string. See {Wx::DC#get_text_extent} for how to get the dimensions of a text string, which can be used to position the text more precisely and {Wx::DC#draw_label} if you need to align the string differently.
|
564
641
|
# Starting from wxWidgets 2.9.2 text parameter can be a multi-line string, i.e. contain new line characters, and will be rendered correctly.
|
565
|
-
#
|
642
|
+
#
|
643
|
+
# <div class="wxrb-note">
|
644
|
+
# <b>Note:</b>
|
645
|
+
# <p>The current logical function is ignored by this function.
|
646
|
+
# </p>
|
647
|
+
# </div>
|
566
648
|
# @param text [String]
|
567
649
|
# @param x [Integer]
|
568
650
|
# @param y [Integer]
|
@@ -576,16 +658,28 @@ module Wx
|
|
576
658
|
|
577
659
|
# @overload gradient_fill_concentric(rect, initialColour, destColour)
|
578
660
|
# Fill the area specified by rect with a radial gradient, starting from initialColour at the centre of the circle and fading to destColour on the circle outside.
|
661
|
+
#
|
579
662
|
# The circle is placed at the centre of rect.
|
580
|
-
#
|
663
|
+
#
|
664
|
+
# <div class="wxrb-note">
|
665
|
+
# <b>Note:</b>
|
666
|
+
# <p>Currently this function is very slow, don't use it for real-time drawing.
|
667
|
+
# </p>
|
668
|
+
# </div>
|
581
669
|
# @param rect [Wx::Rect]
|
582
670
|
# @param initialColour [Wx::Colour,String,Symbol]
|
583
671
|
# @param destColour [Wx::Colour,String,Symbol]
|
584
672
|
# @return [void]
|
585
673
|
# @overload gradient_fill_concentric(rect, initialColour, destColour, circleCenter)
|
586
674
|
# Fill the area specified by rect with a radial gradient, starting from initialColour at the centre of the circle and fading to destColour on the circle outside.
|
675
|
+
#
|
587
676
|
# circleCenter are the relative coordinates of centre of the circle in the specified rect.
|
588
|
-
#
|
677
|
+
#
|
678
|
+
# <div class="wxrb-note">
|
679
|
+
# <b>Note:</b>
|
680
|
+
# <p>Currently this function is very slow, don't use it for real-time drawing.
|
681
|
+
# </p>
|
682
|
+
# </div>
|
589
683
|
# @param rect [Wx::Rect]
|
590
684
|
# @param initialColour [Wx::Colour,String,Symbol]
|
591
685
|
# @param destColour [Wx::Colour,String,Symbol]
|
@@ -594,6 +688,7 @@ module Wx
|
|
594
688
|
def gradient_fill_concentric(*args) end
|
595
689
|
|
596
690
|
# Fill the area specified by rect with a linear gradient, starting from initialColour and eventually fading to destColour.
|
691
|
+
#
|
597
692
|
# The nDirection specifies the direction of the colour change, default is to use initialColour on the left part of the rectangle and destColour on the right one.
|
598
693
|
# @param rect [Wx::Rect]
|
599
694
|
# @param initialColour [Wx::Colour,String,Symbol]
|
@@ -604,15 +699,24 @@ module Wx
|
|
604
699
|
|
605
700
|
# @overload flood_fill(x, y, colour, style=Wx::FloodFillStyle::FLOOD_SURFACE)
|
606
701
|
# Flood fills the device context starting from the given point, using the current brush colour, and using a style:
|
702
|
+
#
|
607
703
|
# - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered.
|
608
704
|
# - {Wx::FloodFillStyle::FLOOD_BORDER}: The area to be flooded is bounded by the given colour.
|
609
705
|
#
|
610
|
-
# Currently this method is not implemented in
|
706
|
+
# Currently this method is not implemented in WXOSX and does nothing there.
|
611
707
|
# false if the operation failed.
|
612
708
|
#
|
613
|
-
#
|
709
|
+
# <div class="wxrb-note">
|
710
|
+
# <b>Note:</b>
|
711
|
+
# <p>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.
|
712
|
+
# </p>
|
713
|
+
# </div>
|
614
714
|
#
|
615
|
-
#
|
715
|
+
# <div class="wxrb-note">
|
716
|
+
# <b>Note:</b>
|
717
|
+
# <p>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.
|
718
|
+
# </p>
|
719
|
+
# </div>
|
616
720
|
# @param x [Integer]
|
617
721
|
# @param y [Integer]
|
618
722
|
# @param colour [Wx::Colour,String,Symbol]
|
@@ -628,6 +732,7 @@ module Wx
|
|
628
732
|
|
629
733
|
# @overload cross_hair(x, y)
|
630
734
|
# Displays a cross hair using the current pen.
|
735
|
+
#
|
631
736
|
# This is a vertical and horizontal line the height and width of the window, centred on the given point.
|
632
737
|
# @param x [Integer]
|
633
738
|
# @param y [Integer]
|
@@ -640,14 +745,21 @@ module Wx
|
|
640
745
|
|
641
746
|
# Destroys the current clipping region so that none of the DC is clipped.
|
642
747
|
#
|
748
|
+
#
|
643
749
|
# @see Wx::DC#set_clipping_region
|
644
750
|
# @return [void]
|
645
751
|
def destroy_clipping_region; end
|
646
752
|
|
647
753
|
# @overload get_clipping_box(x, y)
|
648
754
|
# Gets the rectangle surrounding the current clipping region.
|
755
|
+
#
|
649
756
|
# If no clipping region is set this function returns the extent of the device context.
|
650
|
-
#
|
757
|
+
#
|
758
|
+
# <div class="wxrb-remark">
|
759
|
+
# <b>Remark:</b>
|
760
|
+
# <p>Clipping region is given in logical coordinates.
|
761
|
+
# </p>
|
762
|
+
# </div>
|
651
763
|
#
|
652
764
|
# 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
765
|
# @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.
|
@@ -662,12 +774,20 @@ module Wx
|
|
662
774
|
|
663
775
|
# @overload set_clipping_region(x, y, width, height)
|
664
776
|
# 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.
|
777
|
+
#
|
665
778
|
# 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.
|
666
779
|
#
|
780
|
+
# <div class="wxrb-remark">
|
781
|
+
# <b>Remark:</b>
|
782
|
+
# <p>
|
783
|
+
#
|
667
784
|
# - Clipping region should be given in logical coordinates.
|
668
785
|
# - Calling this function can only make the clipping region smaller, never larger.
|
669
786
|
# - You need to call {Wx::DC#destroy_clipping_region} first if you want to set the clipping region exactly to the region specified.
|
670
787
|
# - If resulting clipping region is empty, then all drawing on the DC is clipped out (all changes made by drawing operations are masked out).
|
788
|
+
#
|
789
|
+
# </p>
|
790
|
+
# </div>
|
671
791
|
# @see Wx::DC#destroy_clipping_region
|
672
792
|
# @see Wx::Region
|
673
793
|
# @param x [Integer]
|
@@ -688,6 +808,7 @@ module Wx
|
|
688
808
|
alias_method :clipping_region=, :set_clipping_region
|
689
809
|
|
690
810
|
# Sets the clipping region for this device context.
|
811
|
+
#
|
691
812
|
# Unlike {Wx::DC#set_clipping_region}, this function works with physical coordinates and not with the logical ones.
|
692
813
|
# @param region [Wx::Region]
|
693
814
|
# @return [void]
|
@@ -705,18 +826,25 @@ module Wx
|
|
705
826
|
alias_method :char_width, :get_char_width
|
706
827
|
|
707
828
|
# Returns the various font characteristics.
|
829
|
+
#
|
708
830
|
# This method allows retrieving some of the font characteristics not returned by {Wx::DC#get_text_extent}, notably internal leading and average character width.
|
709
|
-
# Currently this method returns correct results only under
|
831
|
+
# 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'.
|
710
832
|
# @return [Wx::FontMetrics]
|
711
833
|
def get_font_metrics; end
|
712
834
|
alias_method :font_metrics, :get_font_metrics
|
713
835
|
|
714
836
|
# Gets the dimensions of the string using the currently selected font.
|
837
|
+
#
|
715
838
|
# string is the text string to measure, heightLine, if non NULL, is where to store the height of a single line.
|
716
839
|
# The text extent is set in the given w and h pointers.
|
717
840
|
# If the optional parameter font is specified and valid, then it is used for the text extent calculation, otherwise the currently selected font is used.
|
718
841
|
# If string is empty, its horizontal extent is 0 but, for convenience when using this function for allocating enough space for a possibly multi-line string, its vertical extent is the same as the height of an empty line of text. Please note that this behaviour differs from that of {Wx::DC#get_text_extent}.
|
719
|
-
#
|
842
|
+
#
|
843
|
+
# <div class="wxrb-note">
|
844
|
+
# <b>Note:</b>
|
845
|
+
# <p>This function works with both single-line and multi-line strings.
|
846
|
+
# </p>
|
847
|
+
# </div>
|
720
848
|
# @see Wx::Font
|
721
849
|
# @see Wx::DC#set_font
|
722
850
|
# @see Wx::DC#get_partial_text_extents
|
@@ -728,10 +856,15 @@ module Wx
|
|
728
856
|
alias_method :multi_line_text_extent, :get_multi_line_text_extent
|
729
857
|
|
730
858
|
# Gets the dimensions of the string using the currently selected font.
|
859
|
+
#
|
731
860
|
# string is the text string to measure.
|
732
861
|
# The text extent as a {Wx::Size} object.
|
733
862
|
#
|
734
|
-
#
|
863
|
+
# <div class="wxrb-note">
|
864
|
+
# <b>Note:</b>
|
865
|
+
# <p>This function works with both single-line and multi-line strings.
|
866
|
+
# </p>
|
867
|
+
# </div>
|
735
868
|
# @see Wx::Font
|
736
869
|
# @see Wx::DC#set_font
|
737
870
|
# @see Wx::DC#get_partial_text_extents
|
@@ -742,11 +875,17 @@ module Wx
|
|
742
875
|
alias_method :multi_line_text_size, :get_multi_line_text_size
|
743
876
|
|
744
877
|
# Gets the dimensions of the string using the currently selected font.
|
878
|
+
#
|
745
879
|
# string is the text string to measure, descent is the dimension from the baseline of the font to the bottom of the descender, and externalLeading is any extra vertical space added to the font by the font designer (usually is zero).
|
746
880
|
# The text extent is returned in w and h pointers or as a {Wx::Size} object depending on which version of this function is used.
|
747
881
|
# If the optional parameter font is specified and valid, then it is used for the text extent calculation. Otherwise the currently selected font is.
|
748
882
|
# If string is empty, its extent is 0 in both directions, as expected.
|
749
|
-
#
|
883
|
+
#
|
884
|
+
# <div class="wxrb-note">
|
885
|
+
# <b>Note:</b>
|
886
|
+
# <p>This function only works with single-line strings.
|
887
|
+
# </p>
|
888
|
+
# </div>
|
750
889
|
# @see Wx::Font
|
751
890
|
# @see Wx::DC#set_font
|
752
891
|
# @see Wx::DC#get_partial_text_extents
|
@@ -765,18 +904,21 @@ module Wx
|
|
765
904
|
|
766
905
|
# Returns the current background mode: {Wx::BrushStyle::BRUSHSTYLE_SOLID} or {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}.
|
767
906
|
#
|
907
|
+
#
|
768
908
|
# @see Wx::DC#set_background_mode
|
769
909
|
# @return [Integer]
|
770
910
|
def get_background_mode; end
|
771
911
|
alias_method :background_mode, :get_background_mode
|
772
912
|
|
773
913
|
# Gets the current font.
|
914
|
+
#
|
774
915
|
# Notice that even although each device context object has some default font after creation, this method would return a {Wx::NULL_FONT} initially and only after calling {Wx::DC#set_font} a valid font is returned.
|
775
916
|
# @return [Wx::Font,Wx::FontInfo]
|
776
917
|
def get_font; end
|
777
918
|
alias_method :font, :get_font
|
778
919
|
|
779
920
|
# Gets the current layout direction of the device context.
|
921
|
+
#
|
780
922
|
# 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
923
|
# @see Wx::DC#set_layout_direction
|
782
924
|
# @return [Wx::LayoutDirection]
|
@@ -785,6 +927,7 @@ module Wx
|
|
785
927
|
|
786
928
|
# Gets the current text background colour.
|
787
929
|
#
|
930
|
+
#
|
788
931
|
# @see Wx::DC#set_text_background
|
789
932
|
# @return [Wx::Colour,String,Symbol]
|
790
933
|
def get_text_background; end
|
@@ -792,12 +935,14 @@ module Wx
|
|
792
935
|
|
793
936
|
# Gets the current text foreground colour.
|
794
937
|
#
|
938
|
+
#
|
795
939
|
# @see Wx::DC#set_text_foreground
|
796
940
|
# @return [Wx::Colour,String,Symbol]
|
797
941
|
def get_text_foreground; end
|
798
942
|
alias_method :text_foreground, :get_text_foreground
|
799
943
|
|
800
944
|
# Change the current background mode.
|
945
|
+
#
|
801
946
|
# This setting determines whether text will be drawn with a background colour or not.
|
802
947
|
# Default is {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}, i.e. text background is not drawn.
|
803
948
|
# @param mode [Integer] one of {Wx::BrushStyle::BRUSHSTYLE_SOLID} and {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}.
|
@@ -806,7 +951,8 @@ module Wx
|
|
806
951
|
alias_method :background_mode=, :set_background_mode
|
807
952
|
|
808
953
|
# Sets the current font for the DC.
|
809
|
-
#
|
954
|
+
#
|
955
|
+
# 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).
|
810
956
|
# @see Wx::Font
|
811
957
|
# @param font [Wx::Font,Wx::FontInfo]
|
812
958
|
# @return [void]
|
@@ -821,6 +967,7 @@ module Wx
|
|
821
967
|
|
822
968
|
# Sets the current text foreground colour for the DC.
|
823
969
|
#
|
970
|
+
#
|
824
971
|
# @see Wx::MemoryDC for the interpretation of colours when drawing into a monochrome bitmap.
|
825
972
|
# @param colour [Wx::Colour,String,Symbol]
|
826
973
|
# @return [void]
|
@@ -829,6 +976,7 @@ module Wx
|
|
829
976
|
|
830
977
|
# Sets the current layout direction for the device context.
|
831
978
|
#
|
979
|
+
#
|
832
980
|
# @see Wx::DC#get_layout_direction
|
833
981
|
# @param dir [Wx::LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
|
834
982
|
# @return [void]
|
@@ -837,6 +985,7 @@ module Wx
|
|
837
985
|
|
838
986
|
# Adds the specified point to the bounding box which can be retrieved with {Wx::DC#min_x}, {Wx::DC#max_x} and {Wx::DC#min_y}, {Wx::DC#max_y} functions.
|
839
987
|
#
|
988
|
+
#
|
840
989
|
# @see Wx::DC#reset_bounding_box
|
841
990
|
# @param x [Integer]
|
842
991
|
# @param y [Integer]
|
@@ -861,11 +1010,13 @@ module Wx
|
|
861
1010
|
|
862
1011
|
# Resets the bounding box: after a call to this function, the bounding box doesn't contain anything.
|
863
1012
|
#
|
1013
|
+
#
|
864
1014
|
# @see Wx::DC#calc_bounding_box
|
865
1015
|
# @return [void]
|
866
1016
|
def reset_bounding_box; end
|
867
1017
|
|
868
1018
|
# Starts a document (only relevant when outputting to a printer).
|
1019
|
+
#
|
869
1020
|
# message is a message to show while printing.
|
870
1021
|
# @param message [String]
|
871
1022
|
# @return [Boolean]
|
@@ -884,10 +1035,15 @@ module Wx
|
|
884
1035
|
def end_page; end
|
885
1036
|
|
886
1037
|
# Copy from a source DC to this DC.
|
1038
|
+
#
|
887
1039
|
# With this method you can specify the destination coordinates and the size of area to copy which will be the same for both the source and target DCs. If you need to apply scaling while copying, use {Wx::DC#stretch_blit}.
|
888
1040
|
# Notice that source DC coordinates xsrc and ysrc are interpreted using the current source DC coordinate system, i.e. the scale, origin position and axis directions are taken into account when transforming them to physical (pixel) coordinates.
|
889
1041
|
#
|
890
|
-
#
|
1042
|
+
# <div class="wxrb-remark">
|
1043
|
+
# <b>Remark:</b>
|
1044
|
+
# <p>There is partial support for {Wx::DC#blit} in {Wx::PRT::PostScriptDC}, under X.
|
1045
|
+
# </p>
|
1046
|
+
# </div>
|
891
1047
|
# @see Wx::DC#stretch_blit
|
892
1048
|
# @see Wx::MemoryDC
|
893
1049
|
# @see Wx::Bitmap
|
@@ -929,6 +1085,7 @@ module Wx
|
|
929
1085
|
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
1086
|
|
931
1087
|
# Copy from a source DC to this DC possibly changing the scale.
|
1088
|
+
#
|
932
1089
|
# Unlike {Wx::DC#blit}, this method allows specifying different source and destination region sizes, meaning that it can stretch or shrink it while copying. The same can be achieved by changing the scale of the source or target DC but calling this method is simpler and can also be more efficient if the platform provides a native implementation of it.
|
933
1090
|
# The meaning of its other parameters is the same as with {Wx::DC#blit}, in particular all source coordinates are interpreted using the source DC coordinate system, i.e. are affected by its scale, origin translation and axis direction.
|
934
1091
|
#
|
@@ -978,6 +1135,7 @@ module Wx
|
|
978
1135
|
|
979
1136
|
# Gets the brush used for painting the background.
|
980
1137
|
#
|
1138
|
+
#
|
981
1139
|
# @see Wx::DC#set_background
|
982
1140
|
# @return [Wx::Brush]
|
983
1141
|
def get_background; end
|
@@ -985,6 +1143,7 @@ module Wx
|
|
985
1143
|
|
986
1144
|
# Gets the current brush.
|
987
1145
|
#
|
1146
|
+
#
|
988
1147
|
# @see Wx::DC#set_brush
|
989
1148
|
# @return [Wx::Brush]
|
990
1149
|
def get_brush; end
|
@@ -992,6 +1151,7 @@ module Wx
|
|
992
1151
|
|
993
1152
|
# Gets the current pen.
|
994
1153
|
#
|
1154
|
+
#
|
995
1155
|
# @see Wx::DC#set_pen
|
996
1156
|
# @return [Wx::Pen]
|
997
1157
|
def get_pen; end
|
@@ -1004,6 +1164,7 @@ module Wx
|
|
1004
1164
|
alias_method :background=, :set_background
|
1005
1165
|
|
1006
1166
|
# Sets the current brush for the DC.
|
1167
|
+
#
|
1007
1168
|
# If the argument is {Wx::NULL_BRUSH} (or another invalid brush; see {Wx::Brush#is_ok}), the current brush is selected out of the device context (leaving {Wx::DC} without any valid brush), allowing the current brush to be destroyed safely.
|
1008
1169
|
# @see Wx::Brush
|
1009
1170
|
# @see Wx::MemoryDC (for the interpretation of colours when drawing into a monochrome bitmap)
|
@@ -1013,6 +1174,7 @@ module Wx
|
|
1013
1174
|
alias_method :brush=, :set_brush
|
1014
1175
|
|
1015
1176
|
# Sets the current pen for the DC.
|
1177
|
+
#
|
1016
1178
|
# If the argument is {Wx::NULL_PEN} (or another invalid pen; see {Wx::Pen#is_ok}), the current pen is selected out of the device context (leaving {Wx::DC} without any valid pen), allowing the current pen to be destroyed safely.
|
1017
1179
|
# @see Wx::MemoryDC for the interpretation of colours when drawing into a monochrome bitmap.
|
1018
1180
|
# @param pen [Wx::Pen]
|
@@ -1032,12 +1194,14 @@ module Wx
|
|
1032
1194
|
|
1033
1195
|
# Return the coordinates of the logical point (0, 0).
|
1034
1196
|
#
|
1197
|
+
#
|
1035
1198
|
# @see Wx::DC#set_logical_origin
|
1036
1199
|
# @return [Wx::Point]
|
1037
1200
|
def get_logical_origin; end
|
1038
1201
|
alias_method :logical_origin, :get_logical_origin
|
1039
1202
|
|
1040
1203
|
# Copy attributes from another DC.
|
1204
|
+
#
|
1041
1205
|
# The copied attributes currently are:
|
1042
1206
|
#
|
1043
1207
|
# - Font
|
@@ -1051,14 +1215,21 @@ module Wx
|
|
1051
1215
|
def copy_attributes(dc) end
|
1052
1216
|
|
1053
1217
|
# Returns the factor used for converting logical pixels to physical ones.
|
1218
|
+
#
|
1054
1219
|
# 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
|
-
#
|
1220
|
+
#
|
1221
|
+
# <div class="wxrb-note">
|
1222
|
+
# <b>Note:</b>
|
1223
|
+
# <p>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.
|
1224
|
+
# </p>
|
1225
|
+
# </div>
|
1056
1226
|
# @return [Float]
|
1057
1227
|
def get_content_scale_factor; end
|
1058
1228
|
alias_method :content_scale_factor, :get_content_scale_factor
|
1059
1229
|
|
1060
1230
|
# Returns the depth (number of bits/pixel) of this DC.
|
1061
1231
|
#
|
1232
|
+
#
|
1062
1233
|
# @see display_depth
|
1063
1234
|
# @return [Integer]
|
1064
1235
|
def get_depth; end
|
@@ -1066,6 +1237,7 @@ module Wx
|
|
1066
1237
|
|
1067
1238
|
# Returns the current device origin.
|
1068
1239
|
#
|
1240
|
+
#
|
1069
1241
|
# @see Wx::DC#set_device_origin
|
1070
1242
|
# @return [Wx::Point]
|
1071
1243
|
def get_device_origin; end
|
@@ -1073,6 +1245,7 @@ module Wx
|
|
1073
1245
|
|
1074
1246
|
# Gets the current logical function.
|
1075
1247
|
#
|
1248
|
+
#
|
1076
1249
|
# @see Wx::DC#set_logical_function
|
1077
1250
|
# @return [Wx::RasterOperationMode]
|
1078
1251
|
def get_logical_function; end
|
@@ -1080,16 +1253,27 @@ module Wx
|
|
1080
1253
|
|
1081
1254
|
# Gets the current mapping mode for the device context.
|
1082
1255
|
#
|
1256
|
+
#
|
1083
1257
|
# @see Wx::DC#set_map_mode
|
1084
1258
|
# @return [Wx::MappingMode]
|
1085
1259
|
def get_map_mode; end
|
1086
1260
|
alias_method :map_mode, :get_map_mode
|
1087
1261
|
|
1088
1262
|
# Gets in colour the colour at the specified location.
|
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.
|
1090
|
-
# Setting a pixel can be done using {Wx::DC#draw_point}.
|
1091
1263
|
#
|
1092
|
-
# This method
|
1264
|
+
# This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in WXOSX port and simply returns false there.
|
1265
|
+
#
|
1266
|
+
# <div class="wxrb-note">
|
1267
|
+
# <b>Note:</b>
|
1268
|
+
# <p>Setting a pixel can be done using {Wx::DC#draw_point}.
|
1269
|
+
# </p>
|
1270
|
+
# </div>
|
1271
|
+
#
|
1272
|
+
# <div class="wxrb-note">
|
1273
|
+
# <b>Note:</b>
|
1274
|
+
# <p>This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in WXGTK.
|
1275
|
+
# </p>
|
1276
|
+
# </div>
|
1093
1277
|
# @param x [Integer]
|
1094
1278
|
# @param y [Integer]
|
1095
1279
|
# @param colour [Wx::Colour]
|
@@ -1104,6 +1288,7 @@ module Wx
|
|
1104
1288
|
|
1105
1289
|
# @overload from_dip(sz)
|
1106
1290
|
# Convert DPI-independent pixel values to the value in pixels appropriate for the DC.
|
1291
|
+
#
|
1107
1292
|
# See {Wx::Window#from_dip(sz)} for more info about converting device independent pixel values.
|
1108
1293
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
1109
1294
|
# @return [Wx::Size]
|
@@ -1113,6 +1298,7 @@ module Wx
|
|
1113
1298
|
# @return [Wx::Point]
|
1114
1299
|
# @overload from_dip(d)
|
1115
1300
|
# Convert DPI-independent value in pixels to the value in pixels appropriate for the DC.
|
1301
|
+
#
|
1116
1302
|
# This is the same as FromDIP(const {Wx::Size}& sz) overload, but assumes that the resolution is the same in horizontal and vertical directions.
|
1117
1303
|
# @param d [Integer]
|
1118
1304
|
# @return [Integer]
|
@@ -1120,6 +1306,7 @@ module Wx
|
|
1120
1306
|
|
1121
1307
|
# @overload to_dip(sz)
|
1122
1308
|
# Convert pixel values of the current DC to DPI-independent pixel values.
|
1309
|
+
#
|
1123
1310
|
# See {Wx::Window#to_dip(sz)} for more info about converting device independent pixel values.
|
1124
1311
|
# @param sz [Array(Integer, Integer), Wx::Size]
|
1125
1312
|
# @return [Wx::Size]
|
@@ -1129,12 +1316,14 @@ module Wx
|
|
1129
1316
|
# @return [Wx::Point]
|
1130
1317
|
# @overload to_dip(d)
|
1131
1318
|
# Convert pixel values of the current DC to DPI-independent pixel values.
|
1319
|
+
#
|
1132
1320
|
# This is the same as ToDIP(const {Wx::Size}& sz) overload, but assumes that the resolution is the same in horizontal and vertical directions.
|
1133
1321
|
# @param d [Integer]
|
1134
1322
|
# @return [Integer]
|
1135
1323
|
def to_dip(*args) end
|
1136
1324
|
|
1137
1325
|
# Gets the horizontal and vertical extent of this device context in device units.
|
1326
|
+
#
|
1138
1327
|
# It can be used to scale graphics to fit the page.
|
1139
1328
|
# For example, if maxX and maxY represent the maximum horizontal and vertical 'pixel' values used in your application, the following code will scale the graphic to fit on the printer page:
|
1140
1329
|
#
|
@@ -1165,6 +1354,7 @@ module Wx
|
|
1165
1354
|
|
1166
1355
|
# Gets the current user scale factor.
|
1167
1356
|
#
|
1357
|
+
#
|
1168
1358
|
# @see Wx::DC#set_user_scale
|
1169
1359
|
# @return [Array(Float,Float)]
|
1170
1360
|
def get_user_scale; end
|
@@ -1176,6 +1366,7 @@ module Wx
|
|
1176
1366
|
alias_method :ok?, :is_ok
|
1177
1367
|
|
1178
1368
|
# Sets the x and y axis orientation (i.e. the direction from lowest to highest values on the axis).
|
1369
|
+
#
|
1179
1370
|
# The default orientation is x axis from left to right and y axis from top down.
|
1180
1371
|
# @param xLeftRight [Boolean] True to set the x axis orientation to the natural left to right orientation, false to invert it.
|
1181
1372
|
# @param yBottomUp [Boolean] True to set the y axis orientation to the natural bottom up orientation, false to invert it.
|
@@ -1183,6 +1374,7 @@ module Wx
|
|
1183
1374
|
def set_axis_orientation(xLeftRight, yBottomUp) end
|
1184
1375
|
|
1185
1376
|
# Sets the device origin (i.e. the origin in pixels after scaling has been applied).
|
1377
|
+
#
|
1186
1378
|
# This function may be useful in Windows printing operations for placing a graphic on a page.
|
1187
1379
|
# @param x [Integer]
|
1188
1380
|
# @param y [Integer]
|
@@ -1190,7 +1382,12 @@ module Wx
|
|
1190
1382
|
def set_device_origin(x, y) end
|
1191
1383
|
|
1192
1384
|
# Sets the current logical function for the device context.
|
1193
|
-
#
|
1385
|
+
#
|
1386
|
+
# <div class="wxrb-note">
|
1387
|
+
# <b>Note:</b>
|
1388
|
+
# <p>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 WXOSX. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
|
1389
|
+
# </p>
|
1390
|
+
# </div>
|
1194
1391
|
#
|
1195
1392
|
# 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.
|
1196
1393
|
# See {Wx::RasterOperationMode} enumeration values for more info.
|
@@ -1201,6 +1398,7 @@ module Wx
|
|
1201
1398
|
alias_method :logical_function=, :set_logical_function
|
1202
1399
|
|
1203
1400
|
# The mapping mode of the device context defines the unit of measurement used to convert logical units to device units.
|
1401
|
+
#
|
1204
1402
|
# 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.
|
1205
1403
|
# The coordinate origin is always at the top left of the screen/printer.
|
1206
1404
|
# Drawing to a Windows printer device context uses the current mapping mode, but mapping mode is currently ignored for PostScript output.
|
@@ -1210,6 +1408,7 @@ module Wx
|
|
1210
1408
|
alias_method :map_mode=, :set_map_mode
|
1211
1409
|
|
1212
1410
|
# If this is a window DC or memory DC, assigns the given palette to the window or bitmap associated with the DC.
|
1411
|
+
#
|
1213
1412
|
# If the argument is {Wx::NULL_PALETTE}, the current palette is selected out of the device context, and the original palette restored.
|
1214
1413
|
# @see Wx::Palette
|
1215
1414
|
# @param palette [Wx::Palette]
|
@@ -1230,6 +1429,7 @@ module Wx
|
|
1230
1429
|
alias_method :as_bitmap, :get_as_bitmap
|
1231
1430
|
|
1232
1431
|
# Set the scale to use for translating {Wx::DC} coordinates to the physical pixels.
|
1432
|
+
#
|
1233
1433
|
# The effect of calling this function is similar to that of calling {Wx::DC#set_user_scale}.
|
1234
1434
|
# @param x [Float]
|
1235
1435
|
# @param y [Float]
|
@@ -1243,6 +1443,7 @@ module Wx
|
|
1243
1443
|
|
1244
1444
|
# Change the offset used for translating {Wx::DC} coordinates.
|
1245
1445
|
#
|
1446
|
+
#
|
1246
1447
|
# @see Wx::DC#set_logical_origin
|
1247
1448
|
# @see Wx::DC#set_device_origin
|
1248
1449
|
# @param x [Integer]
|
@@ -1251,12 +1452,14 @@ module Wx
|
|
1251
1452
|
def set_logical_origin(x, y) end
|
1252
1453
|
|
1253
1454
|
# If supported by the platform and the {Wx::DC} implementation, this method will return the {Wx::GraphicsContext} associated with the DC.
|
1455
|
+
#
|
1254
1456
|
# Otherwise NULL is returned.
|
1255
1457
|
# @return [Wx::GraphicsContext]
|
1256
1458
|
def get_graphics_context; end
|
1257
1459
|
alias_method :graphics_context, :get_graphics_context
|
1258
1460
|
|
1259
1461
|
# Associate a {Wx::GraphicsContext} with the DC.
|
1462
|
+
#
|
1260
1463
|
# Ignored if not supported by the specific {Wx::DC} implementation. It is unlikely that this will need to be used in application code.
|
1261
1464
|
# @param ctx [Wx::GraphicsContext]
|
1262
1465
|
# @return [void]
|
@@ -1266,9 +1469,8 @@ module Wx
|
|
1266
1469
|
end # DC
|
1267
1470
|
|
1268
1471
|
# Simple collection of various font metrics.
|
1269
|
-
# This object is returned by {Wx::DC#get_font_metrics}.
|
1270
1472
|
#
|
1271
|
-
#
|
1473
|
+
# This object is returned by {Wx::DC#get_font_metrics}.
|
1272
1474
|
#
|
1273
1475
|
# Category: Device Contexts, Graphics Device Interface (GDI)
|
1274
1476
|
#
|