wxruby3 0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.wxconfig +17 -0
- data/.yardopts +13 -0
- data/CREDITS.md +52 -0
- data/LICENSE +21 -0
- data/README.md +139 -0
- data/bin/wxruby +9 -0
- data/bin/wxruby.bat +20 -0
- data/ext/mkrf_conf_bingem.rb +18 -0
- 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 +63 -0
- data/lib/wx/aui/auimanager.rb +17 -0
- data/lib/wx/aui/auinotebook.rb +9 -0
- data/lib/wx/aui/events/evt_list.rb +143 -0
- data/lib/wx/aui/require.rb +9 -0
- data/lib/wx/aui.rb +14 -0
- data/lib/wx/core/acceleratortable.rb +28 -0
- data/lib/wx/core/animation.rb +18 -0
- data/lib/wx/core/app.rb +89 -0
- data/lib/wx/core/artprovider.rb +31 -0
- data/lib/wx/core/bitmap.rb +59 -0
- data/lib/wx/core/busycursor.rb +12 -0
- data/lib/wx/core/choice.rb +4 -0
- data/lib/wx/core/choicedlg.rb +54 -0
- data/lib/wx/core/clientdc.rb +13 -0
- data/lib/wx/core/clipboard.rb +56 -0
- data/lib/wx/core/collapsible_pane.rb +12 -0
- data/lib/wx/core/colour.rb +34 -0
- data/lib/wx/core/combobox.rb +4 -0
- data/lib/wx/core/controlwithitems.rb +10 -0
- data/lib/wx/core/data_object.rb +10 -0
- data/lib/wx/core/dataformat.rb +26 -0
- data/lib/wx/core/dc.rb +68 -0
- data/lib/wx/core/dialog.rb +50 -0
- data/lib/wx/core/event.rb +16 -0
- data/lib/wx/core/events/evt_list.rb +1378 -0
- data/lib/wx/core/evthandler.rb +240 -0
- data/lib/wx/core/ext.rb +58 -0
- data/lib/wx/core/font/encoding.rb +113 -0
- data/lib/wx/core/font.rb +22 -0
- data/lib/wx/core/functions.rb +44 -0
- data/lib/wx/core/gauge.rb +12 -0
- data/lib/wx/core/genericdirctrl.rb +36 -0
- data/lib/wx/core/hboxsizer.rb +6 -0
- data/lib/wx/core/helpcontroller.rb +5 -0
- data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
- data/lib/wx/core/helpprovider.rb +15 -0
- data/lib/wx/core/icon.rb +40 -0
- data/lib/wx/core/image.rb +68 -0
- data/lib/wx/core/imagelist.rb +3 -0
- data/lib/wx/core/listbox.rb +4 -0
- data/lib/wx/core/listctrl.rb +33 -0
- data/lib/wx/core/locale.rb +73 -0
- data/lib/wx/core/log.rb +20 -0
- data/lib/wx/core/menu.rb +78 -0
- data/lib/wx/core/menu_bar.rb +20 -0
- data/lib/wx/core/menuitem.rb +7 -0
- data/lib/wx/core/notebook.rb +9 -0
- data/lib/wx/core/object.rb +14 -0
- data/lib/wx/core/pen_info.rb +11 -0
- data/lib/wx/core/platform_info.rb +13 -0
- data/lib/wx/core/point.rb +92 -0
- data/lib/wx/core/real_point.rb +92 -0
- data/lib/wx/core/rect.rb +57 -0
- data/lib/wx/core/simplehelpprovider.rb +38 -0
- data/lib/wx/core/size.rb +86 -0
- data/lib/wx/core/sizer.rb +43 -0
- data/lib/wx/core/splash_screen.rb +44 -0
- data/lib/wx/core/textctrl.rb +8 -0
- data/lib/wx/core/timer.rb +105 -0
- data/lib/wx/core/toolbar.rb +37 -0
- data/lib/wx/core/toolbartool.rb +4 -0
- data/lib/wx/core/treectrl.rb +46 -0
- data/lib/wx/core/validator.rb +8 -0
- data/lib/wx/core/variant.rb +62 -0
- data/lib/wx/core/vboxsizer.rb +6 -0
- data/lib/wx/core/window.rb +95 -0
- data/lib/wx/core/window_update_locker.rb +12 -0
- data/lib/wx/core/xmlresource.rb +56 -0
- data/lib/wx/core.rb +61 -0
- data/lib/wx/doc/aui/auimanager.rb +12 -0
- data/lib/wx/doc/aui/auinotebook.rb +9 -0
- data/lib/wx/doc/colour_dialog.rb +15 -0
- data/lib/wx/doc/dc.rb +49 -0
- data/lib/wx/doc/enum.rb +66 -0
- data/lib/wx/doc/evthandler.rb +84 -0
- data/lib/wx/doc/extra/00_starting.md +154 -0
- data/lib/wx/doc/extra/01_packages.md +179 -0
- data/lib/wx/doc/extra/02_lifecycles.md +116 -0
- data/lib/wx/doc/extra/03_dialogs.md +57 -0
- data/lib/wx/doc/extra/04_enums.md +143 -0
- data/lib/wx/doc/extra/05_event-handling.md +166 -0
- data/lib/wx/doc/extra/06_geometry.md +56 -0
- data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
- data/lib/wx/doc/extra/08_extensions.md +144 -0
- data/lib/wx/doc/extra/09_exceptions.md +54 -0
- data/lib/wx/doc/functions.rb +221 -0
- data/lib/wx/doc/gdi_common.rb +181 -0
- data/lib/wx/doc/gen/about_dialog_info.rb +315 -0
- data/lib/wx/doc/gen/accelerator.rb +172 -0
- data/lib/wx/doc/gen/accessible.rb +817 -0
- data/lib/wx/doc/gen/animation.rb +253 -0
- data/lib/wx/doc/gen/animation_ctrl.rb +129 -0
- data/lib/wx/doc/gen/any_button.rb +170 -0
- data/lib/wx/doc/gen/app.rb +363 -0
- data/lib/wx/doc/gen/art_provider.rb +497 -0
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +421 -0
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +39 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +323 -0
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +112 -0
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +163 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +46 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +109 -0
- data/lib/wx/doc/gen/aui/aui_notebook.rb +329 -0
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +179 -0
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +665 -0
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +372 -0
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +147 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +437 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +272 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +195 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +224 -0
- data/lib/wx/doc/gen/aui/event_list.rb +162 -0
- data/lib/wx/doc/gen/auto_buffered_paint_dc.rb +47 -0
- data/lib/wx/doc/gen/bitmap.rb +638 -0
- data/lib/wx/doc/gen/bitmap_button.rb +91 -0
- data/lib/wx/doc/gen/book_ctrl_base.rb +240 -0
- data/lib/wx/doc/gen/book_ctrl_event.rb +60 -0
- data/lib/wx/doc/gen/box_sizer.rb +66 -0
- data/lib/wx/doc/gen/brush.rb +219 -0
- data/lib/wx/doc/gen/buffered_dc.rb +95 -0
- data/lib/wx/doc/gen/buffered_paint_dc.rb +55 -0
- data/lib/wx/doc/gen/busy_info.rb +141 -0
- data/lib/wx/doc/gen/button.rb +133 -0
- data/lib/wx/doc/gen/calculate_layout_event.rb +59 -0
- data/lib/wx/doc/gen/calendar_ctrl.rb +236 -0
- data/lib/wx/doc/gen/calendar_date_attr.rb +137 -0
- data/lib/wx/doc/gen/calendar_event.rb +150 -0
- data/lib/wx/doc/gen/caret.rb +99 -0
- data/lib/wx/doc/gen/check_box.rb +145 -0
- data/lib/wx/doc/gen/check_list_box.rb +96 -0
- data/lib/wx/doc/gen/choice.rb +143 -0
- data/lib/wx/doc/gen/choicebook.rb +100 -0
- data/lib/wx/doc/gen/client_dc.rb +49 -0
- data/lib/wx/doc/gen/clipboard.rb +128 -0
- data/lib/wx/doc/gen/collapsible_pane.rb +120 -0
- data/lib/wx/doc/gen/collapsible_pane_event.rb +45 -0
- data/lib/wx/doc/gen/colour.rb +289 -0
- data/lib/wx/doc/gen/colour_data.rb +96 -0
- data/lib/wx/doc/gen/colour_dialog.rb +84 -0
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +89 -0
- data/lib/wx/doc/gen/colour_picker_event.rb +74 -0
- data/lib/wx/doc/gen/combo_box.rb +228 -0
- data/lib/wx/doc/gen/context_help_button.rb +34 -0
- data/lib/wx/doc/gen/control.rb +245 -0
- data/lib/wx/doc/gen/control_with_items.rb +339 -0
- data/lib/wx/doc/gen/core.rb +42 -0
- data/lib/wx/doc/gen/cursor.rb +127 -0
- data/lib/wx/doc/gen/data_format.rb +94 -0
- data/lib/wx/doc/gen/data_object.rb +439 -0
- data/lib/wx/doc/gen/date_event.rb +48 -0
- data/lib/wx/doc/gen/date_picker_ctrl.rb +127 -0
- data/lib/wx/doc/gen/dc.rb +1278 -0
- data/lib/wx/doc/gen/defs.rb +2832 -0
- data/lib/wx/doc/gen/dialog.rb +426 -0
- data/lib/wx/doc/gen/dir_dialog.rb +134 -0
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +80 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +103 -0
- data/lib/wx/doc/gen/drag_drop.rb +292 -0
- data/lib/wx/doc/gen/drag_image.rb +123 -0
- data/lib/wx/doc/gen/editable_list_box.rb +89 -0
- data/lib/wx/doc/gen/event.rb +911 -0
- data/lib/wx/doc/gen/event_list.rb +1512 -0
- data/lib/wx/doc/gen/events.rb +2499 -0
- data/lib/wx/doc/gen/evt_handler.rb +224 -0
- data/lib/wx/doc/gen/ext_help_controller.rb +100 -0
- data/lib/wx/doc/gen/file_dialog.rb +294 -0
- data/lib/wx/doc/gen/file_dir_picker_event.rb +98 -0
- data/lib/wx/doc/gen/file_picker_ctrl.rb +107 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +119 -0
- data/lib/wx/doc/gen/find_replace_data.rb +59 -0
- data/lib/wx/doc/gen/find_replace_dialog.rb +44 -0
- data/lib/wx/doc/gen/flex_grid_sizer.rb +145 -0
- data/lib/wx/doc/gen/font.rb +1282 -0
- data/lib/wx/doc/gen/font_data.rb +132 -0
- data/lib/wx/doc/gen/font_dialog.rb +71 -0
- data/lib/wx/doc/gen/font_picker_ctrl.rb +120 -0
- data/lib/wx/doc/gen/font_picker_event.rb +64 -0
- data/lib/wx/doc/gen/frame.rb +276 -0
- data/lib/wx/doc/gen/fs_file.rb +269 -0
- data/lib/wx/doc/gen/functions.rb +10 -0
- data/lib/wx/doc/gen/gauge.rb +127 -0
- data/lib/wx/doc/gen/gb_sizer_item.rb +78 -0
- data/lib/wx/doc/gen/gcdc.rb +61 -0
- data/lib/wx/doc/gen/gdi_common.rb +1108 -0
- data/lib/wx/doc/gen/gdi_object.rb +29 -0
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +198 -0
- data/lib/wx/doc/gen/graphics_context.rb +764 -0
- data/lib/wx/doc/gen/graphics_object.rb +494 -0
- data/lib/wx/doc/gen/grid/event_list.rb +173 -0
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +33 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +279 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +32 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +44 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +48 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +33 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +40 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +181 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +34 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +39 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +41 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +74 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +41 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +98 -0
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +31 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +45 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +2381 -0
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +87 -0
- data/lib/wx/doc/gen/grid/grid_event.rb +96 -0
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +96 -0
- data/lib/wx/doc/gen/grid/grid_size_event.rb +71 -0
- data/lib/wx/doc/gen/grid/grid_string_table.rb +130 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +288 -0
- data/lib/wx/doc/gen/grid/grid_table_message.rb +73 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +298 -0
- data/lib/wx/doc/gen/grid_sizer.rb +135 -0
- data/lib/wx/doc/gen/help_controller.rb +136 -0
- data/lib/wx/doc/gen/help_provider.rb +80 -0
- data/lib/wx/doc/gen/html/event_list.rb +46 -0
- data/lib/wx/doc/gen/html/html_cell.rb +441 -0
- data/lib/wx/doc/gen/html/html_cell_event.rb +62 -0
- data/lib/wx/doc/gen/html/html_easy_printing.rb +169 -0
- data/lib/wx/doc/gen/html/html_help_controller.rb +256 -0
- data/lib/wx/doc/gen/html/html_help_data.rb +144 -0
- data/lib/wx/doc/gen/html/html_help_frame.rb +112 -0
- data/lib/wx/doc/gen/html/html_help_window.rb +230 -0
- data/lib/wx/doc/gen/html/html_link_event.rb +36 -0
- data/lib/wx/doc/gen/html/html_list_box.rb +150 -0
- data/lib/wx/doc/gen/html/html_printout.rb +87 -0
- data/lib/wx/doc/gen/html/html_window.rb +386 -0
- data/lib/wx/doc/gen/icon.rb +267 -0
- data/lib/wx/doc/gen/icon_location.rb +38 -0
- data/lib/wx/doc/gen/image.rb +1144 -0
- data/lib/wx/doc/gen/image_list.rb +181 -0
- data/lib/wx/doc/gen/keyboard_state.rb +124 -0
- data/lib/wx/doc/gen/list_box.rb +260 -0
- data/lib/wx/doc/gen/list_ctrl.rb +1542 -0
- data/lib/wx/doc/gen/list_event.rb +177 -0
- data/lib/wx/doc/gen/listbook.rb +100 -0
- data/lib/wx/doc/gen/locale.rb +4143 -0
- data/lib/wx/doc/gen/log.rb +505 -0
- data/lib/wx/doc/gen/mdi_client_window.rb +38 -0
- data/lib/wx/doc/gen/mdi_frame.rb +235 -0
- data/lib/wx/doc/gen/media_ctrl.rb +225 -0
- data/lib/wx/doc/gen/media_event.rb +109 -0
- data/lib/wx/doc/gen/memory_dc.rb +95 -0
- data/lib/wx/doc/gen/menu.rb +493 -0
- data/lib/wx/doc/gen/menu_bar.rb +247 -0
- data/lib/wx/doc/gen/menu_item.rb +333 -0
- data/lib/wx/doc/gen/message_dialog.rb +195 -0
- data/lib/wx/doc/gen/mini_frame.rb +72 -0
- data/lib/wx/doc/gen/mirror_dc.rb +29 -0
- data/lib/wx/doc/gen/mouse_state.rb +108 -0
- data/lib/wx/doc/gen/multi_choice_dialog.rb +58 -0
- data/lib/wx/doc/gen/non_owned_window.rb +46 -0
- data/lib/wx/doc/gen/notebook.rb +220 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +75 -0
- data/lib/wx/doc/gen/object.rb +69 -0
- data/lib/wx/doc/gen/paint_dc.rb +34 -0
- data/lib/wx/doc/gen/palette.rb +90 -0
- data/lib/wx/doc/gen/panel.rb +96 -0
- data/lib/wx/doc/gen/pen.rb +484 -0
- data/lib/wx/doc/gen/pg/event_list.rb +102 -0
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +47 -0
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +295 -0
- data/lib/wx/doc/gen/pg/pg_cell.rb +166 -0
- data/lib/wx/doc/gen/pg/pg_editor.rb +569 -0
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +161 -0
- data/lib/wx/doc/gen/pg/pg_properties.rb +2193 -0
- data/lib/wx/doc/gen/pg/pg_property.rb +1852 -0
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +327 -0
- data/lib/wx/doc/gen/pg/property_grid.rb +619 -0
- data/lib/wx/doc/gen/pg/property_grid_event.rb +135 -0
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +847 -0
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +349 -0
- data/lib/wx/doc/gen/pg/property_grid_page.rb +265 -0
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +155 -0
- data/lib/wx/doc/gen/picker_base.rb +143 -0
- data/lib/wx/doc/gen/platform_info.rb +379 -0
- data/lib/wx/doc/gen/popup_window.rb +93 -0
- data/lib/wx/doc/gen/progress_dialog.rb +106 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +185 -0
- data/lib/wx/doc/gen/prt/event_list.rb +13 -0
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +38 -0
- data/lib/wx/doc/gen/prt/post_script_dc.rb +32 -0
- data/lib/wx/doc/gen/prt/preview_frame.rb +39 -0
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +127 -0
- data/lib/wx/doc/gen/prt/print_data.rb +598 -0
- data/lib/wx/doc/gen/prt/print_dialog.rb +47 -0
- data/lib/wx/doc/gen/prt/printer.rb +428 -0
- data/lib/wx/doc/gen/prt/printer_dc.rb +35 -0
- data/lib/wx/doc/gen/query_layout_info_event.rb +98 -0
- data/lib/wx/doc/gen/radio_box.rb +258 -0
- data/lib/wx/doc/gen/radio_button.rb +128 -0
- data/lib/wx/doc/gen/rbn/event_list.rb +132 -0
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1652 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +227 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +40 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +400 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +58 -0
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +116 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +208 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +51 -0
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +129 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +232 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +41 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +321 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +36 -0
- data/lib/wx/doc/gen/region.rb +299 -0
- data/lib/wx/doc/gen/rtc/event_list.rb +121 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +2052 -0
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2031 -0
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +146 -0
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +171 -0
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +180 -0
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +104 -0
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +241 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +55 -0
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +153 -0
- data/lib/wx/doc/gen/sash_event.rb +133 -0
- data/lib/wx/doc/gen/sash_layout_window.rb +203 -0
- data/lib/wx/doc/gen/sash_window.rb +154 -0
- data/lib/wx/doc/gen/screen_dc.rb +27 -0
- data/lib/wx/doc/gen/scrolled_canvas.rb +317 -0
- data/lib/wx/doc/gen/scrolled_control.rb +317 -0
- data/lib/wx/doc/gen/scrolled_window.rb +337 -0
- data/lib/wx/doc/gen/simplebook.rb +93 -0
- data/lib/wx/doc/gen/single_choice_dialog.rb +74 -0
- data/lib/wx/doc/gen/sizer.rb +847 -0
- data/lib/wx/doc/gen/sizer_item.rb +227 -0
- data/lib/wx/doc/gen/slider.rb +316 -0
- data/lib/wx/doc/gen/spin_button.rb +124 -0
- data/lib/wx/doc/gen/spin_ctrl.rb +170 -0
- data/lib/wx/doc/gen/spin_event.rb +47 -0
- data/lib/wx/doc/gen/splash_screen.rb +83 -0
- data/lib/wx/doc/gen/splitter_event.rb +87 -0
- data/lib/wx/doc/gen/splitter_window.rb +357 -0
- data/lib/wx/doc/gen/static_bitmap.rb +126 -0
- data/lib/wx/doc/gen/static_box.rb +123 -0
- data/lib/wx/doc/gen/static_box_sizer.rb +67 -0
- data/lib/wx/doc/gen/static_line.rb +66 -0
- data/lib/wx/doc/gen/static_text.rb +98 -0
- data/lib/wx/doc/gen/status_bar.rb +203 -0
- data/lib/wx/doc/gen/stc/event_list.rb +217 -0
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4000 -0
- data/lib/wx/doc/gen/stc/styled_text_event.rb +7319 -0
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +74 -0
- data/lib/wx/doc/gen/svg_file_dc.rb +153 -0
- data/lib/wx/doc/gen/system_options.rb +109 -0
- data/lib/wx/doc/gen/system_settings.rb +481 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +94 -0
- data/lib/wx/doc/gen/task_bar_icon_event.rb +86 -0
- data/lib/wx/doc/gen/text_attr.rb +645 -0
- data/lib/wx/doc/gen/text_ctrl.rb +841 -0
- data/lib/wx/doc/gen/text_entry.rb +389 -0
- data/lib/wx/doc/gen/text_entry_dialog.rb +170 -0
- data/lib/wx/doc/gen/text_validator.rb +212 -0
- data/lib/wx/doc/gen/time_picker_ctrl.rb +103 -0
- data/lib/wx/doc/gen/timer.rb +103 -0
- data/lib/wx/doc/gen/timer_event.rb +73 -0
- data/lib/wx/doc/gen/tip_provider.rb +60 -0
- data/lib/wx/doc/gen/toggle_button.rb +84 -0
- data/lib/wx/doc/gen/tool_bar.rb +744 -0
- data/lib/wx/doc/gen/tool_tip.rb +73 -0
- data/lib/wx/doc/gen/toolbook.rb +103 -0
- data/lib/wx/doc/gen/top_level_window.rb +462 -0
- data/lib/wx/doc/gen/tree_ctrl.rb +863 -0
- data/lib/wx/doc/gen/tree_event.rb +101 -0
- data/lib/wx/doc/gen/treebook.rb +154 -0
- data/lib/wx/doc/gen/utils.rb +257 -0
- data/lib/wx/doc/gen/v_list_box.rb +224 -0
- data/lib/wx/doc/gen/v_scrolled_window.rb +224 -0
- data/lib/wx/doc/gen/validator.rb +73 -0
- data/lib/wx/doc/gen/variant.rb +340 -0
- data/lib/wx/doc/gen/window.rb +2414 -0
- data/lib/wx/doc/gen/window_dc.rb +35 -0
- data/lib/wx/doc/gen/window_disabler.rb +24 -0
- data/lib/wx/doc/gen/with_images.rb +73 -0
- data/lib/wx/doc/gen/wizard.rb +197 -0
- data/lib/wx/doc/gen/wizard_event.rb +105 -0
- data/lib/wx/doc/gen/wizard_page.rb +61 -0
- data/lib/wx/doc/gen/wizard_page_simple.rb +72 -0
- data/lib/wx/doc/gen/xml_node.rb +282 -0
- data/lib/wx/doc/gen/xml_resource.rb +304 -0
- data/lib/wx/doc/grid/grid.rb +20 -0
- data/lib/wx/doc/help_controller.rb +14 -0
- data/lib/wx/doc/html/html_help_controller.rb +8 -0
- data/lib/wx/doc/pg/events.rb +15 -0
- data/lib/wx/doc/pg/pg_property.rb +8 -0
- data/lib/wx/doc/pg/pgeditor.rb +21 -0
- data/lib/wx/doc/pg/property_grid.rb +48 -0
- data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
- data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/doc/prt/print_data.rb +9 -0
- data/lib/wx/doc/prt/print_dialog.rb +26 -0
- data/lib/wx/doc/prt/printer.rb +15 -0
- data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
- data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
- data/lib/wx/doc/screen_dc.rb +10 -0
- data/lib/wx/doc/stock_objects.rb +98 -0
- data/lib/wx/doc/stream.rb +38 -0
- data/lib/wx/doc/system_settings.rb +29 -0
- data/lib/wx/doc/treebook.rb +9 -0
- data/lib/wx/doc/variant.rb +163 -0
- data/lib/wx/doc/xml_resource.rb +19 -0
- data/lib/wx/global_const.rb +84 -0
- data/lib/wx/grid/events/evt_list.rb +156 -0
- data/lib/wx/grid/grid.rb +7 -0
- data/lib/wx/grid/keyword_defs.rb +10 -0
- data/lib/wx/grid/require.rb +9 -0
- data/lib/wx/grid.rb +14 -0
- data/lib/wx/helpers.rb +65 -0
- data/lib/wx/html/events/evt_list.rb +37 -0
- data/lib/wx/html/htmlhelpcontroller.rb +6 -0
- data/lib/wx/html/htmlwindow.rb +19 -0
- data/lib/wx/html/keyword_defs.rb +22 -0
- data/lib/wx/html/require.rb +10 -0
- data/lib/wx/html.rb +15 -0
- data/lib/wx/keyword_ctors.rb +226 -0
- data/lib/wx/keyword_defs.rb +487 -0
- data/lib/wx/pg/events/evt_list.rb +73 -0
- data/lib/wx/pg/events.rb +14 -0
- data/lib/wx/pg/keyword_defs.rb +15 -0
- data/lib/wx/pg/pg_editor.rb +13 -0
- data/lib/wx/pg/pg_properties.rb +24 -0
- data/lib/wx/pg/pg_property.rb +26 -0
- data/lib/wx/pg/property_grid.rb +56 -0
- data/lib/wx/pg/property_grid_interface.rb +33 -0
- data/lib/wx/pg/require.rb +12 -0
- data/lib/wx/pg.rb +14 -0
- data/lib/wx/prt/keyword_defs.rb +8 -0
- data/lib/wx/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/prt/previewframe.rb +13 -0
- data/lib/wx/prt/require.rb +8 -0
- data/lib/wx/prt.rb +14 -0
- data/lib/wx/rbn/events/evt_list.rb +102 -0
- data/lib/wx/rbn/events.rb +4 -0
- data/lib/wx/rbn/keyword_defs.rb +43 -0
- data/lib/wx/rbn/require.rb +12 -0
- data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
- data/lib/wx/rbn/ribbon_bar.rb +12 -0
- data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
- data/lib/wx/rbn/ribbon_control.rb +25 -0
- data/lib/wx/rbn/ribbon_gallery.rb +26 -0
- data/lib/wx/rbn/ribbon_page.rb +15 -0
- data/lib/wx/rbn/ribbon_panel.rb +15 -0
- data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
- data/lib/wx/rbn.rb +14 -0
- data/lib/wx/rtc/events/evt_list.rb +98 -0
- data/lib/wx/rtc/ext/rich_text_ctrl.rb +24 -0
- data/lib/wx/rtc/ext.rb +15 -0
- data/lib/wx/rtc/keyword_defs.rb +17 -0
- data/lib/wx/rtc/require.rb +8 -0
- data/lib/wx/rtc.rb +15 -0
- data/lib/wx/stc/events/evt_list.rb +178 -0
- data/lib/wx/stc/keyword_defs.rb +8 -0
- data/lib/wx/stc/require.rb +7 -0
- data/lib/wx/stc.rb +14 -0
- data/lib/wx/version.rb +3 -0
- data/lib/wx/wxruby/base.rb +87 -0
- data/lib/wx/wxruby/cmd/sampler.rb +68 -0
- data/lib/wx/wxruby/cmd/test.rb +27 -0
- data/lib/wx.rb +14 -0
- 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 +220 -0
- data/rakelib/lib/config/cygwin.rb +6 -0
- data/rakelib/lib/config/linux.rb +78 -0
- data/rakelib/lib/config/macosx.rb +6 -0
- data/rakelib/lib/config/mingw.rb +133 -0
- data/rakelib/lib/config/netbsd.rb +6 -0
- data/rakelib/lib/config/unixish.rb +187 -0
- data/rakelib/lib/config.rb +673 -0
- data/rakelib/lib/ext/enum_chain.rb +22 -0
- data/rakelib/prepost.rake +91 -0
- data/rakelib/prepost.rb +26 -0
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
- data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
- data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
- data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
- data/rakelib/yard/yard-custom-templates.rb +2 -0
- data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
- data/samples/art/wxruby-128x128.png +0 -0
- data/samples/art/wxruby-256x256.png +0 -0
- data/samples/art/wxruby-64x64.png +0 -0
- data/samples/art/wxruby.ico +0 -0
- data/samples/art/wxruby.png +0 -0
- data/samples/aui/aui.rb +1321 -0
- data/samples/aui/tn_aui.png +0 -0
- data/samples/bigdemo/About.rbw +39 -0
- data/samples/bigdemo/ColorPanel.rbw +23 -0
- data/samples/bigdemo/GridSimple.rbw +78 -0
- data/samples/bigdemo/MDIDemo.rbw +57 -0
- data/samples/bigdemo/PopupMenu.rbw +146 -0
- data/samples/bigdemo/ShapedWindow.rbw +128 -0
- data/samples/bigdemo/Sizers.rbw +541 -0
- data/samples/bigdemo/bigdemo.rb +810 -0
- data/samples/bigdemo/demoTemplate.rbw +33 -0
- 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/choice.xpm +27 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +27 -0
- data/samples/bigdemo/icons/copy.xpm +25 -0
- data/samples/bigdemo/icons/cut.xpm +24 -0
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +27 -0
- data/samples/bigdemo/icons/help.xpm +25 -0
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +27 -0
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +44 -0
- data/samples/bigdemo/icons/new.xpm +24 -0
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +45 -0
- data/samples/bigdemo/icons/open.xpm +26 -0
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +38 -0
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +26 -0
- data/samples/bigdemo/icons/print.xpm +26 -0
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +27 -0
- data/samples/bigdemo/icons/robert.xpm +415 -0
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +25 -0
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +39 -0
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +42 -0
- data/samples/bigdemo/icons/stattext.xpm +24 -0
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +79 -0
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +27 -0
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +38 -0
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +38 -0
- 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 +25 -0
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +91 -0
- data/samples/bigdemo/tips.txt +7 -0
- data/samples/bigdemo/utils.rb +12 -0
- data/samples/bigdemo/wxArtProvider.rbw +281 -0
- data/samples/bigdemo/wxBitmapButton.rbw +65 -0
- data/samples/bigdemo/wxButton.rbw +64 -0
- data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
- data/samples/bigdemo/wxCheckBox.rbw +50 -0
- data/samples/bigdemo/wxCheckListBox.rbw +65 -0
- data/samples/bigdemo/wxChoice.rbw +47 -0
- data/samples/bigdemo/wxChoicebook.rbw +78 -0
- data/samples/bigdemo/wxColourDialog.rbw +33 -0
- data/samples/bigdemo/wxComboBox.rbw +77 -0
- data/samples/bigdemo/wxCursor.rbw +136 -0
- data/samples/bigdemo/wxDialog.rbw +74 -0
- data/samples/bigdemo/wxDirDialog.rbw +29 -0
- data/samples/bigdemo/wxDragImage.rbw +70 -0
- data/samples/bigdemo/wxFileDialog.rbw +37 -0
- data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
- data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
- data/samples/bigdemo/wxFontDialog.rbw +200 -0
- data/samples/bigdemo/wxFrame.rbw +53 -0
- data/samples/bigdemo/wxGauge.rbw +65 -0
- data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
- data/samples/bigdemo/wxGrid.rbw +66 -0
- data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
- data/samples/bigdemo/wxListBox.rbw +140 -0
- data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
- data/samples/bigdemo/wxMDIWindows.rbw +50 -0
- data/samples/bigdemo/wxMenu.rbw +247 -0
- data/samples/bigdemo/wxMessageDialog.rbw +27 -0
- data/samples/bigdemo/wxMiniFrame.rbw +70 -0
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
- data/samples/bigdemo/wxNotebook.rbw +136 -0
- data/samples/bigdemo/wxProgressDialog.rbw +43 -0
- data/samples/bigdemo/wxRadioBox.rbw +72 -0
- data/samples/bigdemo/wxRadioButton.rbw +125 -0
- data/samples/bigdemo/wxSashWindow.rbw +141 -0
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
- data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
- data/samples/bigdemo/wxSlider.rbw +42 -0
- data/samples/bigdemo/wxSpinButton.rbw +50 -0
- data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
- data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
- data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
- data/samples/bigdemo/wxStaticText.rbw +55 -0
- data/samples/bigdemo/wxStatusBar.rbw +126 -0
- data/samples/bigdemo/wxTextCtrl.rbw +149 -0
- data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
- data/samples/bigdemo/wxToggleButton.rbw +49 -0
- data/samples/bigdemo/wxToolBar.rbw +131 -0
- data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
- data/samples/calendar/calendar.rb +363 -0
- data/samples/calendar/tn_calendar.png +0 -0
- data/samples/caret/caret.rb +293 -0
- data/samples/caret/mondrian.xpm +44 -0
- data/samples/caret/tn_caret.png +0 -0
- data/samples/controls/books.rb +183 -0
- data/samples/controls/controls.rb +1143 -0
- data/samples/controls/get_item_sample.rb +117 -0
- data/samples/controls/icons/choice.xpm +27 -0
- data/samples/controls/icons/combo.xpm +27 -0
- data/samples/controls/icons/gauge.xpm +27 -0
- data/samples/controls/icons/list.xpm +27 -0
- data/samples/controls/icons/radio.xpm +27 -0
- data/samples/controls/icons/stattext.xpm +24 -0
- data/samples/controls/icons/text.xpm +27 -0
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +44 -0
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/controls/tn_get_item_sample.png +0 -0
- data/samples/dialogs/dialogs.rb +879 -0
- data/samples/dialogs/tips.txt +18 -0
- data/samples/dialogs/tn_dialogs.png +0 -0
- data/samples/dialogs/tn_wizard.png +0 -0
- data/samples/dialogs/wizard.rb +89 -0
- data/samples/dragdrop/dragdrop.rb +200 -0
- data/samples/dragdrop/tn_dragdrop.png +0 -0
- data/samples/drawing/SVGlogo24.xpm +310 -0
- data/samples/drawing/bitmap.rb +76 -0
- data/samples/drawing/bitmap_image.rb +131 -0
- data/samples/drawing/graphics_drawing.rb +257 -0
- data/samples/drawing/maths_images.rb +327 -0
- data/samples/drawing/rmagic_bitmap_image.rb +139 -0
- data/samples/drawing/ruby-logo.jpg +0 -0
- data/samples/drawing/svgtest.rb +373 -0
- data/samples/drawing/tn_bitmap.png +0 -0
- data/samples/drawing/tn_bitmap_image.png +0 -0
- data/samples/drawing/tn_graphics_drawing.png +0 -0
- data/samples/drawing/tn_maths_images.png +0 -0
- data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
- data/samples/drawing/tn_svgtest.png +0 -0
- data/samples/etc/choice.rb +82 -0
- data/samples/etc/miniframe.rb +92 -0
- data/samples/etc/sash.rb +140 -0
- data/samples/etc/scrollwin.rb +120 -0
- data/samples/etc/system_settings.rb +263 -0
- data/samples/etc/tn_choice.png +0 -0
- data/samples/etc/tn_miniframe.png +0 -0
- data/samples/etc/tn_sash.png +0 -0
- data/samples/etc/tn_scrollwin.png +0 -0
- data/samples/etc/tn_system_settings.png +0 -0
- data/samples/event/activation.rb +129 -0
- data/samples/event/event.rb +220 -0
- data/samples/event/threaded.rb +141 -0
- data/samples/event/tn_activation.png +0 -0
- data/samples/event/tn_event.png +0 -0
- data/samples/event/tn_threaded.png +0 -0
- data/samples/event/tn_update_ui_event.png +0 -0
- data/samples/event/update_ui_event.rb +91 -0
- data/samples/grid/grid.rb +224 -0
- data/samples/grid/gridtablebase.rb +178 -0
- data/samples/grid/tn_grid.png +0 -0
- data/samples/grid/tn_gridtablebase.png +0 -0
- data/samples/html/8859_2.htm +14 -0
- data/samples/html/cp1250.htm +19 -0
- data/samples/html/foo.png +0 -0
- data/samples/html/html.rb +278 -0
- data/samples/html/i18n.gif +0 -0
- data/samples/html/imagemap.htm +20 -0
- data/samples/html/imagemap.png +0 -0
- data/samples/html/listtest.htm +28 -0
- data/samples/html/pic.png +0 -0
- data/samples/html/pic2.bmp +0 -0
- data/samples/html/regres.htm +20 -0
- data/samples/html/subsup.html +42 -0
- data/samples/html/tables.htm +255 -0
- data/samples/html/test.htm +375 -0
- data/samples/html/tn_html.png +0 -0
- data/samples/mdi/mdi.rb +118 -0
- data/samples/mdi/tn_mdi.png +0 -0
- data/samples/minimal/minimal.rb +95 -0
- data/samples/minimal/mondrian.ico +0 -0
- data/samples/minimal/mondrian.png +0 -0
- data/samples/minimal/nothing.rb +38 -0
- data/samples/minimal/tn_minimal.png +0 -0
- data/samples/minimal/tn_nothing.png +0 -0
- data/samples/printing/mondrian.ico +0 -0
- data/samples/printing/mondrian.xpm +44 -0
- data/samples/printing/printing.rb +499 -0
- data/samples/printing/printing2.rb +251 -0
- data/samples/printing/sample-text.txt +213 -0
- data/samples/printing/tn_printing.png +0 -0
- data/samples/printing/tn_printing2.png +0 -0
- data/samples/propgrid/propgrid.rb +2707 -0
- data/samples/propgrid/propgrid_minimal.rb +106 -0
- data/samples/propgrid/sample_props.rb +434 -0
- data/samples/propgrid/tn_propgrid.png +0 -0
- data/samples/propgrid/tn_propgrid_minimal.png +0 -0
- data/samples/ribbon/align_center.xpm +21 -0
- data/samples/ribbon/align_left.xpm +21 -0
- data/samples/ribbon/align_right.xpm +21 -0
- data/samples/ribbon/aui_style.xpm +53 -0
- data/samples/ribbon/auto_crop_selection.xpm +55 -0
- data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
- data/samples/ribbon/circle.xpm +38 -0
- data/samples/ribbon/circle_small.xpm +22 -0
- data/samples/ribbon/colours.xpm +25 -0
- data/samples/ribbon/cross.xpm +38 -0
- data/samples/ribbon/empty.xpm +23 -0
- data/samples/ribbon/expand_selection_h.xpm +46 -0
- data/samples/ribbon/expand_selection_v.xpm +46 -0
- data/samples/ribbon/eye.xpm +26 -0
- data/samples/ribbon/hexagon.xpm +38 -0
- data/samples/ribbon/msw_style.xpm +65 -0
- data/samples/ribbon/position_left.xpm +22 -0
- data/samples/ribbon/position_top.xpm +22 -0
- data/samples/ribbon/ribbon.rb +900 -0
- data/samples/ribbon/ribbon.xpm +54 -0
- data/samples/ribbon/selection_panel.xpm +23 -0
- data/samples/ribbon/square.xpm +38 -0
- data/samples/ribbon/tn_ribbon.png +0 -0
- data/samples/ribbon/triangle.xpm +38 -0
- data/samples/sample.xpm +475 -0
- data/samples/sampler/back.xpm +21 -0
- data/samples/sampler/copy.xpm +44 -0
- data/samples/sampler/cut.xpm +46 -0
- data/samples/sampler/editor.rb +534 -0
- data/samples/sampler/ext.rb +51 -0
- data/samples/sampler/filesave.xpm +42 -0
- data/samples/sampler/find.xpm +62 -0
- data/samples/sampler/findrepl.xpm +63 -0
- data/samples/sampler/forward.xpm +21 -0
- data/samples/sampler/paste.xpm +46 -0
- data/samples/sampler/play.xpm +24 -0
- data/samples/sampler/redo.xpm +58 -0
- data/samples/sampler/sample.rb +337 -0
- data/samples/sampler/stc_editor.rb +326 -0
- data/samples/sampler/txt_editor.rb +135 -0
- data/samples/sampler/undo.xpm +58 -0
- data/samples/sampler.rb +401 -0
- data/samples/splash/mobile.xpm +1835 -0
- data/samples/splash/splash.png +0 -0
- data/samples/splash/splash.rb +164 -0
- data/samples/splash/tn_splash.png +0 -0
- data/samples/text/document-open.png +0 -0
- data/samples/text/document-save.png +0 -0
- data/samples/text/edit-copy.png +0 -0
- data/samples/text/edit-cut.png +0 -0
- data/samples/text/edit-paste.png +0 -0
- data/samples/text/edit-redo.png +0 -0
- data/samples/text/edit-undo.png +0 -0
- data/samples/text/format-text-bold.png +0 -0
- data/samples/text/format-text-italic.png +0 -0
- data/samples/text/format-text-underline.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +44 -0
- data/samples/text/preferences-desktop-font.png +0 -0
- data/samples/text/rich_textctrl.rb +326 -0
- data/samples/text/scintilla.rb +179 -0
- data/samples/text/textctrl.rb +124 -0
- data/samples/text/tn_rich_textctrl.png +0 -0
- data/samples/text/tn_scintilla.png +0 -0
- data/samples/text/tn_textctrl.png +0 -0
- data/samples/text/tn_unicode.png +0 -0
- data/samples/text/unicode.rb +238 -0
- data/samples/text/utf8.txt +15 -0
- data/samples/treectrl/checked.xpm +54 -0
- data/samples/treectrl/icon1.xpm +79 -0
- data/samples/treectrl/icon2.xpm +53 -0
- data/samples/treectrl/icon3.xpm +79 -0
- data/samples/treectrl/icon4.xpm +43 -0
- data/samples/treectrl/icon5.xpm +79 -0
- data/samples/treectrl/state1.xpm +145 -0
- data/samples/treectrl/state2.xpm +144 -0
- data/samples/treectrl/state3.xpm +142 -0
- data/samples/treectrl/state4.xpm +145 -0
- data/samples/treectrl/state5.xpm +85 -0
- data/samples/treectrl/tn_treectrl.png +0 -0
- data/samples/treectrl/treectrl.rb +1720 -0
- data/samples/treectrl/unchecked.xpm +30 -0
- data/samples/xrc/custom_dialog.xrc +46 -0
- data/samples/xrc/custom_xrc_sample.rb +84 -0
- data/samples/xrc/samples.xrc +46 -0
- data/samples/xrc/tn_xrc_sample.png +0 -0
- data/samples/xrc/xrc_sample.rb +86 -0
- data/tests/test_basic.rb +20 -0
- data/tests/test_clipboard.rb +241 -0
- data/tests/test_dialog.rb +28 -0
- data/tests/test_event_handling.rb +103 -0
- data/tests/test_events.rb +45 -0
- data/tests/test_geometry.rb +141 -0
- data/tests/test_intl.rb +107 -0
- data/tests/test_item_data.rb +120 -0
- data/tests/test_variant.rb +151 -0
- data/tests/testapp.rb +40 -0
- data/tests/testapp_noframe.rb +28 -0
- metadata +928 -0
@@ -0,0 +1,1278 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# This file is automatically generated by the WXRuby3 documentation
|
3
|
+
# generator. Do not alter this file.
|
4
|
+
# :startdoc:
|
5
|
+
|
6
|
+
|
7
|
+
module Wx
|
8
|
+
|
9
|
+
# Logical raster operations which can be used with {Wx::DC#set_logical_function} and some other {Wx::DC} functions (e.g.
|
10
|
+
#
|
11
|
+
# {Wx::DC#blit} and {Wx::DC#stretch_blit}).
|
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 {Wx::GTK3} and {Wx::Mac} only support the following modes:
|
14
|
+
# - {Wx::RasterOperationMode::COPY}- {Wx::RasterOperationMode::OR}- {Wx::RasterOperationMode::NO_OP}- {Wx::RasterOperationMode::CLEAR}- {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
|
+
#
|
16
|
+
class RasterOperationMode < Wx::Enum
|
17
|
+
|
18
|
+
# 0
|
19
|
+
#
|
20
|
+
CLEAR = Wx::RasterOperationMode.new(0)
|
21
|
+
|
22
|
+
# src XOR dst
|
23
|
+
#
|
24
|
+
XOR = Wx::RasterOperationMode.new(1)
|
25
|
+
|
26
|
+
# NOT dst.
|
27
|
+
#
|
28
|
+
INVERT = Wx::RasterOperationMode.new(2)
|
29
|
+
|
30
|
+
# src OR (NOT dst)
|
31
|
+
#
|
32
|
+
OR_REVERSE = Wx::RasterOperationMode.new(3)
|
33
|
+
|
34
|
+
# src AND (NOT dst)
|
35
|
+
#
|
36
|
+
AND_REVERSE = Wx::RasterOperationMode.new(4)
|
37
|
+
|
38
|
+
# src
|
39
|
+
#
|
40
|
+
COPY = Wx::RasterOperationMode.new(5)
|
41
|
+
|
42
|
+
# src AND dst
|
43
|
+
#
|
44
|
+
AND = Wx::RasterOperationMode.new(6)
|
45
|
+
|
46
|
+
# (NOT src) AND dst
|
47
|
+
#
|
48
|
+
AND_INVERT = Wx::RasterOperationMode.new(7)
|
49
|
+
|
50
|
+
# dst
|
51
|
+
#
|
52
|
+
NO_OP = Wx::RasterOperationMode.new(8)
|
53
|
+
|
54
|
+
# (NOT src) AND (NOT dst)
|
55
|
+
#
|
56
|
+
NOR = Wx::RasterOperationMode.new(9)
|
57
|
+
|
58
|
+
# (NOT src) XOR dst
|
59
|
+
#
|
60
|
+
EQUIV = Wx::RasterOperationMode.new(10)
|
61
|
+
|
62
|
+
# (NOT src)
|
63
|
+
#
|
64
|
+
SRC_INVERT = Wx::RasterOperationMode.new(11)
|
65
|
+
|
66
|
+
# (NOT src) OR dst
|
67
|
+
#
|
68
|
+
OR_INVERT = Wx::RasterOperationMode.new(12)
|
69
|
+
|
70
|
+
# (NOT src) OR (NOT dst)
|
71
|
+
#
|
72
|
+
NAND = Wx::RasterOperationMode.new(13)
|
73
|
+
|
74
|
+
# src OR dst
|
75
|
+
#
|
76
|
+
OR = Wx::RasterOperationMode.new(14)
|
77
|
+
|
78
|
+
# 1
|
79
|
+
#
|
80
|
+
SET = Wx::RasterOperationMode.new(15)
|
81
|
+
|
82
|
+
end # RasterOperationMode
|
83
|
+
|
84
|
+
# Flood styles used by {Wx::DC#flood_fill}.
|
85
|
+
#
|
86
|
+
#
|
87
|
+
#
|
88
|
+
class FloodFillStyle < Wx::Enum
|
89
|
+
|
90
|
+
# The flooding occurs until a colour other than the given colour is encountered.
|
91
|
+
#
|
92
|
+
FLOOD_SURFACE = Wx::FloodFillStyle.new(1)
|
93
|
+
|
94
|
+
# The area to be flooded is bounded by the given colour.
|
95
|
+
#
|
96
|
+
FLOOD_BORDER = Wx::FloodFillStyle.new(2)
|
97
|
+
|
98
|
+
end # FloodFillStyle
|
99
|
+
|
100
|
+
# The mapping used to transform logical units to device units.
|
101
|
+
#
|
102
|
+
# See {Wx::DC#set_map_mode}.
|
103
|
+
#
|
104
|
+
class MappingMode < Wx::Enum
|
105
|
+
|
106
|
+
# Each logical unit is 1 device pixel.
|
107
|
+
#
|
108
|
+
MM_TEXT = Wx::MappingMode.new(1)
|
109
|
+
|
110
|
+
# Each logical unit is 1 millimeter.
|
111
|
+
#
|
112
|
+
MM_METRIC = Wx::MappingMode.new(2)
|
113
|
+
|
114
|
+
# Each logical unit is 1/10 of a millimeter.
|
115
|
+
#
|
116
|
+
MM_LOMETRIC = Wx::MappingMode.new(3)
|
117
|
+
|
118
|
+
# Each logical unit is 1/20 of a "printer point", or 1/1440 of an inch (also known as "twip").
|
119
|
+
#
|
120
|
+
MM_TWIPS = Wx::MappingMode.new(4)
|
121
|
+
|
122
|
+
# Each logical unit is a "printer point" i.e. 1/72 of an inch.
|
123
|
+
#
|
124
|
+
MM_POINTS = Wx::MappingMode.new(5)
|
125
|
+
|
126
|
+
end # MappingMode
|
127
|
+
|
128
|
+
# A {Wx::DC} is a "device context" onto which graphics and text can be drawn.
|
129
|
+
# It is intended to represent different output devices and offers a common abstract API for drawing on any of them.
|
130
|
+
# 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}.
|
131
|
+
# {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.
|
132
|
+
# 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.
|
133
|
+
# 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.
|
134
|
+
#
|
135
|
+
# == Device and logical units
|
136
|
+
#
|
137
|
+
# In the {Wx::DC} context there is a distinction between logical units and device units.
|
138
|
+
# <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).
|
139
|
+
# 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}).
|
140
|
+
# This mechanism allows reusing the same code which prints on e.g. a window on the screen to print on e.g. a paper.
|
141
|
+
#
|
142
|
+
# == Support for Transparency / Alpha Channel
|
143
|
+
#
|
144
|
+
# 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.
|
145
|
+
#
|
146
|
+
# == Support for Transformation Matrix
|
147
|
+
#
|
148
|
+
# 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.
|
149
|
+
# This feature is only available when {Wx::Setup::USE_DC_TRANSFORM_MATRIX} build option is enabled.
|
150
|
+
# ===
|
151
|
+
#
|
152
|
+
# Category: Device Contexts, Graphics Device Interface (GDI)
|
153
|
+
#
|
154
|
+
# TodoPrecise definition of default/initial state.
|
155
|
+
# Pixelwise definition of operations (e.g. last point of a line not drawn).
|
156
|
+
# @see Device Contexts
|
157
|
+
# @see Wx::GraphicsContext
|
158
|
+
# @see Wx::DCFontChanger
|
159
|
+
# @see Wx::DCTextColourChanger
|
160
|
+
# @see Wx::DCPenChanger
|
161
|
+
# @see Wx::DCBrushChanger
|
162
|
+
# @see Wx::DCClipper
|
163
|
+
#
|
164
|
+
#
|
165
|
+
class DC < Object
|
166
|
+
|
167
|
+
# Convert device X coordinate to logical coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
168
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
169
|
+
# @param x [Integer]
|
170
|
+
# @return [Integer]
|
171
|
+
def device_to_logical_x(x) end
|
172
|
+
|
173
|
+
# Convert device X coordinate to relative logical coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
174
|
+
# Use this for converting a horizontal distance like for example a width.
|
175
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
176
|
+
# @param x [Integer]
|
177
|
+
# @return [Integer]
|
178
|
+
def device_to_logical_x_rel(x) end
|
179
|
+
|
180
|
+
# Converts device Y coordinate to logical coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
181
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
182
|
+
# @param y [Integer]
|
183
|
+
# @return [Integer]
|
184
|
+
def device_to_logical_y(y) end
|
185
|
+
|
186
|
+
# Convert device Y coordinate to relative logical coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
187
|
+
# Use this for converting a vertical distance like for example a height.
|
188
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
189
|
+
# @param y [Integer]
|
190
|
+
# @return [Integer]
|
191
|
+
def device_to_logical_y_rel(y) end
|
192
|
+
|
193
|
+
# Converts logical X coordinate to device coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
194
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
195
|
+
# @param x [Integer]
|
196
|
+
# @return [Integer]
|
197
|
+
def logical_to_device_x(x) end
|
198
|
+
|
199
|
+
# Converts logical X coordinate to relative device coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
200
|
+
# Use this for converting a horizontal distance like for example a width.
|
201
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
202
|
+
# @param x [Integer]
|
203
|
+
# @return [Integer]
|
204
|
+
def logical_to_device_x_rel(x) end
|
205
|
+
|
206
|
+
# Converts logical Y coordinate to device coordinate, using the current mapping mode, user scale factor, device origin and axis orientation.
|
207
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
208
|
+
# @param y [Integer]
|
209
|
+
# @return [Integer]
|
210
|
+
def logical_to_device_y(y) end
|
211
|
+
|
212
|
+
# Converts logical Y coordinate to relative device coordinate, using the current mapping mode and user scale factor but ignoring the axis orientation.
|
213
|
+
# Use this for converting a vertical distance like for example a height.
|
214
|
+
# Affine transformation applied to the coordinate system with {Wx::DC#set_transform_matrix} is not taken into account.
|
215
|
+
# @param y [Integer]
|
216
|
+
# @return [Integer]
|
217
|
+
def logical_to_device_y_rel(y) end
|
218
|
+
|
219
|
+
# @overload device_to_logical(x, y)
|
220
|
+
# Converts device (x, y) coordinates to logical coordinates taking into account all applied transformations like the current mapping mode, scale factors, device origin, axes orientation, affine transformation.
|
221
|
+
# @param x [Integer]
|
222
|
+
# @param y [Integer]
|
223
|
+
# @return [Wx::Point]
|
224
|
+
# @overload device_to_logical(pt)
|
225
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
226
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
227
|
+
# @return [Wx::Point]
|
228
|
+
def device_to_logical(*args) end
|
229
|
+
|
230
|
+
# @overload device_to_logical_rel(x, y)
|
231
|
+
# Converts device x, y coordinates to relative logical coordinates taking into account all applied transformations like the current mapping mode, scale factors, affine transformation.
|
232
|
+
# Use this for converting distances like e.g. width and height.
|
233
|
+
# @param x [Integer]
|
234
|
+
# @param y [Integer]
|
235
|
+
# @return [Wx::Size]
|
236
|
+
# @overload device_to_logical_rel(dim)
|
237
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
238
|
+
# @param dim [Array(Integer, Integer), Wx::Size]
|
239
|
+
# @return [Wx::Size]
|
240
|
+
def device_to_logical_rel(*args) end
|
241
|
+
|
242
|
+
# @overload logical_to_device(x, y)
|
243
|
+
# Converts logical (x, y) coordinates to device coordinates taking into account all applied transformations like the current mapping mode, scale factors, device origin, axes orientation, affine transformation.
|
244
|
+
# @param x [Integer]
|
245
|
+
# @param y [Integer]
|
246
|
+
# @return [Wx::Point]
|
247
|
+
# @overload logical_to_device(pt)
|
248
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
249
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
250
|
+
# @return [Wx::Point]
|
251
|
+
def logical_to_device(*args) end
|
252
|
+
|
253
|
+
# @overload logical_to_device_rel(x, y)
|
254
|
+
# Converts logical x, y coordinates to relative device coordinates taking into account all applied transformations like the current mapping mode, scale factors, affine transformation.
|
255
|
+
# Use this for converting distances like e.g. width and height.
|
256
|
+
# @param x [Integer]
|
257
|
+
# @param y [Integer]
|
258
|
+
# @return [Wx::Size]
|
259
|
+
# @overload logical_to_device_rel(dim)
|
260
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
261
|
+
# @param dim [Array(Integer, Integer), Wx::Size]
|
262
|
+
# @return [Wx::Size]
|
263
|
+
def logical_to_device_rel(*args) end
|
264
|
+
|
265
|
+
# Clears the device context using the current background brush.
|
266
|
+
# 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.
|
267
|
+
# If no background brush was set, solid white brush is used to clear the device context.
|
268
|
+
# @return [void]
|
269
|
+
def clear; end
|
270
|
+
|
271
|
+
# @overload draw_arc(xStart, yStart, xEnd, yEnd, xc, yc)
|
272
|
+
# Draws an arc from the given start to the given end point.
|
273
|
+
# {Wx::DC#draw_elliptic_arc} has more clear semantics and it is recommended to use it instead of this function.
|
274
|
+
#
|
275
|
+
# 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).
|
276
|
+
# The arc is drawn in a counter-clockwise direction between the start and the end points.
|
277
|
+
# The current pen is used for the outline and the current brush for filling the shape. Notice that unless the brush is transparent, the lines connecting the centre of the circle to the end points of the arc are drawn as well.
|
278
|
+
# @param xStart [Integer]
|
279
|
+
# @param yStart [Integer]
|
280
|
+
# @param xEnd [Integer]
|
281
|
+
# @param yEnd [Integer]
|
282
|
+
# @param xc [Integer]
|
283
|
+
# @param yc [Integer]
|
284
|
+
# @return [void]
|
285
|
+
# @overload draw_arc(ptStart, ptEnd, centre)
|
286
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
287
|
+
# @param ptStart [Array(Integer, Integer), Wx::Point]
|
288
|
+
# @param ptEnd [Array(Integer, Integer), Wx::Point]
|
289
|
+
# @param centre [Array(Integer, Integer), Wx::Point]
|
290
|
+
# @return [void]
|
291
|
+
def draw_arc(*args) end
|
292
|
+
|
293
|
+
# @overload draw_bitmap(bitmap, x, y, useMask=false)
|
294
|
+
# Draw a bitmap on the device context at the specified point.
|
295
|
+
# If useMask is true and the bitmap has a transparency mask, the bitmap will be drawn transparently.
|
296
|
+
# 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).
|
297
|
+
# @see Wx::DC#set_text_foreground
|
298
|
+
# @see Wx::DC#set_text_background
|
299
|
+
# @see Wx::MemoryDC
|
300
|
+
# @param bitmap [Wx::Bitmap]
|
301
|
+
# @param x [Integer]
|
302
|
+
# @param y [Integer]
|
303
|
+
# @param useMask [true,false]
|
304
|
+
# @return [void]
|
305
|
+
# @overload draw_bitmap(bmp, pt, useMask=false)
|
306
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
307
|
+
# @param bmp [Wx::Bitmap]
|
308
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
309
|
+
# @param useMask [true,false]
|
310
|
+
# @return [void]
|
311
|
+
def draw_bitmap(*args) end
|
312
|
+
|
313
|
+
# @overload draw_check_mark(x, y, width, height)
|
314
|
+
# Draws a check mark inside the given rectangle.
|
315
|
+
# @param x [Integer]
|
316
|
+
# @param y [Integer]
|
317
|
+
# @param width [Integer]
|
318
|
+
# @param height [Integer]
|
319
|
+
# @return [void]
|
320
|
+
# @overload draw_check_mark(rect)
|
321
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
322
|
+
# @param rect [Wx::Rect]
|
323
|
+
# @return [void]
|
324
|
+
def draw_check_mark(*args) end
|
325
|
+
|
326
|
+
# @overload draw_circle(x, y, radius)
|
327
|
+
# Draws a circle with the given centre and radius.
|
328
|
+
#
|
329
|
+
# @see Wx::DC#draw_ellipse
|
330
|
+
# @param x [Integer]
|
331
|
+
# @param y [Integer]
|
332
|
+
# @param radius [Integer]
|
333
|
+
# @return [void]
|
334
|
+
# @overload draw_circle(pt, radius)
|
335
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
336
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
337
|
+
# @param radius [Integer]
|
338
|
+
# @return [void]
|
339
|
+
def draw_circle(*args) end
|
340
|
+
|
341
|
+
# @overload draw_ellipse(x, y, width, height)
|
342
|
+
# Draws an ellipse contained in the rectangle specified either with the given top left corner and the given size or directly.
|
343
|
+
# The current pen is used for the outline and the current brush for filling the shape.
|
344
|
+
# @see Wx::DC#draw_circle
|
345
|
+
# @param x [Integer]
|
346
|
+
# @param y [Integer]
|
347
|
+
# @param width [Integer]
|
348
|
+
# @param height [Integer]
|
349
|
+
# @return [void]
|
350
|
+
# @overload draw_ellipse(pt, size)
|
351
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
352
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
353
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
354
|
+
# @return [void]
|
355
|
+
# @overload draw_ellipse(rect)
|
356
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
357
|
+
# @param rect [Wx::Rect]
|
358
|
+
# @return [void]
|
359
|
+
def draw_ellipse(*args) end
|
360
|
+
|
361
|
+
# @overload draw_elliptic_arc(x, y, width, height, start, end_)
|
362
|
+
# Draws an arc of an ellipse.
|
363
|
+
# The current pen is used for drawing the arc and the current brush is used for drawing the pie.
|
364
|
+
# x and y specify the x and y coordinates of the upper-left corner of the rectangle that contains the ellipse.
|
365
|
+
# width and height specify the width and height of the rectangle that contains the ellipse.
|
366
|
+
# start and end specify the end points of the arc relative to the three-o'clock position from the center of the rectangle. Angles are specified in degrees with 0 degree angle corresponding to the positive horizontal axis (3 o'clock) direction.
|
367
|
+
# Independently of whether start is greater than or less than end, the arc is drawn in the counter-clockwise direction. Also, if start is equal to end, a complete ellipse is drawn.
|
368
|
+
# Notice that unlike {Wx::DC#draw_arc}, this function does not draw the lines to the arc ends, even when using non-transparent brush.
|
369
|
+
# @param x [Integer]
|
370
|
+
# @param y [Integer]
|
371
|
+
# @param width [Integer]
|
372
|
+
# @param height [Integer]
|
373
|
+
# @param start [Float]
|
374
|
+
# @param end_ [Float]
|
375
|
+
# @return [void]
|
376
|
+
# @overload draw_elliptic_arc(pt, sz, sa, ea)
|
377
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
378
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
379
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
380
|
+
# @param sa [Float]
|
381
|
+
# @param ea [Float]
|
382
|
+
# @return [void]
|
383
|
+
def draw_elliptic_arc(*args) end
|
384
|
+
|
385
|
+
# @overload draw_icon(icon, x, y)
|
386
|
+
# Draw an icon on the display (does nothing if the device context is PostScript).
|
387
|
+
# This can be the simplest way of drawing bitmaps on a window.
|
388
|
+
# @param icon [Wx::Icon]
|
389
|
+
# @param x [Integer]
|
390
|
+
# @param y [Integer]
|
391
|
+
# @return [void]
|
392
|
+
# @overload draw_icon(icon, pt)
|
393
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
394
|
+
# @param icon [Wx::Icon]
|
395
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
396
|
+
# @return [void]
|
397
|
+
def draw_icon(*args) end
|
398
|
+
|
399
|
+
# @overload draw_label(text, bitmap, rect, alignment=(Wx::ALIGN_LEFT|Wx::ALIGN_TOP), indexAccel=-1, rectBounding=nil)
|
400
|
+
# Draw optional bitmap and the text into the given rectangle and aligns it as specified by alignment parameter; it also will emphasize the character with the given index if it is != -1 and return the bounding rectangle if required.
|
401
|
+
# @param text [String]
|
402
|
+
# @param bitmap [Wx::Bitmap]
|
403
|
+
# @param rect [Wx::Rect]
|
404
|
+
# @param alignment [Integer]
|
405
|
+
# @param indexAccel [Integer]
|
406
|
+
# @param rectBounding [Wx::Rect]
|
407
|
+
# @return [void]
|
408
|
+
# @overload draw_label(text, rect, alignment=(Wx::ALIGN_LEFT|Wx::ALIGN_TOP), indexAccel=-1)
|
409
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
410
|
+
# @param text [String]
|
411
|
+
# @param rect [Wx::Rect]
|
412
|
+
# @param alignment [Integer]
|
413
|
+
# @param indexAccel [Integer]
|
414
|
+
# @return [void]
|
415
|
+
def draw_label(*args) end
|
416
|
+
|
417
|
+
# @overload draw_line(x1, y1, x2, y2)
|
418
|
+
# Draws a line from the first point to the second.
|
419
|
+
# 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).
|
420
|
+
# @param x1 [Integer]
|
421
|
+
# @param y1 [Integer]
|
422
|
+
# @param x2 [Integer]
|
423
|
+
# @param y2 [Integer]
|
424
|
+
# @return [void]
|
425
|
+
# @overload draw_line(pt1, pt2)
|
426
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
427
|
+
# @param pt1 [Array(Integer, Integer), Wx::Point]
|
428
|
+
# @param pt2 [Array(Integer, Integer), Wx::Point]
|
429
|
+
# @return [void]
|
430
|
+
def draw_line(*args) end
|
431
|
+
|
432
|
+
# Draws lines using an array of points of size n adding the optional offset coordinate.
|
433
|
+
# The current pen is used for drawing the lines.
|
434
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
435
|
+
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
436
|
+
# @param xoffset [Integer]
|
437
|
+
# @param yoffset [Integer]
|
438
|
+
# @return [void]
|
439
|
+
def draw_lines(points, xoffset=0, yoffset=0) end
|
440
|
+
|
441
|
+
# @overload draw_point(x, y)
|
442
|
+
# Draws a point using the color of the current pen.
|
443
|
+
# Note that the other properties of the pen are not used, such as width.
|
444
|
+
# @param x [Integer]
|
445
|
+
# @param y [Integer]
|
446
|
+
# @return [void]
|
447
|
+
# @overload draw_point(pt)
|
448
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
449
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
450
|
+
# @return [void]
|
451
|
+
def draw_point(*args) end
|
452
|
+
|
453
|
+
# Draws a filled polygon using an array of points of size n, adding the optional offset coordinate.
|
454
|
+
# The first and last points are automatically closed.
|
455
|
+
# The last argument specifies the fill rule: <b>{Wx::PolygonFillMode::ODDEVEN_RULE}</b> (the default) or <b>{Wx::PolygonFillMode::WINDING_RULE}</b>.
|
456
|
+
# The current pen is used for drawing the outline, and the current brush for filling the shape. Using a transparent brush suppresses filling.
|
457
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
458
|
+
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
459
|
+
# @param xoffset [Integer]
|
460
|
+
# @param yoffset [Integer]
|
461
|
+
# @param fill_style [PolygonFillMode]
|
462
|
+
# @return [void]
|
463
|
+
def draw_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::ODDEVEN_RULE) end
|
464
|
+
|
465
|
+
# Draws two or more filled polygons using an array of points, adding the optional offset coordinates.
|
466
|
+
# 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.
|
467
|
+
# 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.
|
468
|
+
# The last argument specifies the fill rule: <b>{Wx::PolygonFillMode::ODDEVEN_RULE}</b> (the default) or <b>{Wx::PolygonFillMode::WINDING_RULE}</b>.
|
469
|
+
# The current pen is used for drawing the outline, and the current brush for filling the shape. Using a transparent brush suppresses filling.
|
470
|
+
# The polygons maybe disjoint or overlapping. Each polygon specified in a call to {Wx::DC#draw_poly_polygon} must be closed. Unlike polygons created by the {Wx::DC#draw_polygon} member function, the polygons created by this method are not closed automatically.
|
471
|
+
# @param points [Array<Array<Wx::Point>>,Array<Array<Array<Integer>>>]
|
472
|
+
# @param xoffset [Integer]
|
473
|
+
# @param yoffset [Integer]
|
474
|
+
# @param fill_style [PolygonFillMode]
|
475
|
+
# @return [void]
|
476
|
+
def draw_poly_polygon(points, xoffset=0, yoffset=0, fill_style=Wx::ODDEVEN_RULE) end
|
477
|
+
|
478
|
+
# @overload draw_rectangle(x, y, width, height)
|
479
|
+
# Draws a rectangle with the given corner coordinate and size.
|
480
|
+
# 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.
|
481
|
+
# The current pen is used for the outline and the current brush for filling the shape.
|
482
|
+
# @param x [Integer]
|
483
|
+
# @param y [Integer]
|
484
|
+
# @param width [Integer]
|
485
|
+
# @param height [Integer]
|
486
|
+
# @return [void]
|
487
|
+
# @overload draw_rectangle(pt, sz)
|
488
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
489
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
490
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
491
|
+
# @return [void]
|
492
|
+
# @overload draw_rectangle(rect)
|
493
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
494
|
+
# @param rect [Wx::Rect]
|
495
|
+
# @return [void]
|
496
|
+
def draw_rectangle(*args) end
|
497
|
+
|
498
|
+
# @overload draw_rotated_text(text, x, y, angle)
|
499
|
+
# Draws the text rotated by angle degrees (positive angles are counterclockwise; the full angle is 360 degrees).
|
500
|
+
# Notice that, as with {Wx::DC#draw_text}, the text can contain multiple lines separated by the new line (<code>'\n'</code>) characters.
|
501
|
+
# 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.
|
502
|
+
# @see Wx::DC#draw_text
|
503
|
+
# @param text [String]
|
504
|
+
# @param x [Integer]
|
505
|
+
# @param y [Integer]
|
506
|
+
# @param angle [Float]
|
507
|
+
# @return [void]
|
508
|
+
# @overload draw_rotated_text(text, point, angle)
|
509
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
510
|
+
# @param text [String]
|
511
|
+
# @param point [Array(Integer, Integer), Wx::Point]
|
512
|
+
# @param angle [Float]
|
513
|
+
# @return [void]
|
514
|
+
def draw_rotated_text(*args) end
|
515
|
+
|
516
|
+
# @overload draw_rounded_rectangle(x, y, width, height, radius)
|
517
|
+
# Draws a rectangle with the given top left corner, and with the given size.
|
518
|
+
# 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.
|
519
|
+
# 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.
|
520
|
+
# @param x [Integer]
|
521
|
+
# @param y [Integer]
|
522
|
+
# @param width [Integer]
|
523
|
+
# @param height [Integer]
|
524
|
+
# @param radius [Float]
|
525
|
+
# @return [void]
|
526
|
+
# @overload draw_rounded_rectangle(pt, sz, radius)
|
527
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
528
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
529
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
530
|
+
# @param radius [Float]
|
531
|
+
# @return [void]
|
532
|
+
# @overload draw_rounded_rectangle(rect, radius)
|
533
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
534
|
+
# @param rect [Wx::Rect]
|
535
|
+
# @param radius [Float]
|
536
|
+
# @return [void]
|
537
|
+
def draw_rounded_rectangle(*args) end
|
538
|
+
|
539
|
+
# @overload draw_spline(points)
|
540
|
+
# Draws a spline between all given points using the current pen.
|
541
|
+
# The number of points must be at least 2 for the spline to be drawn.
|
542
|
+
# Drawn curve is not an interpolating curve - it does not go through all points. It may be considered a smoothing curve.
|
543
|
+
#
|
544
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
545
|
+
# @param points [Array<Wx::Point>,Array<Array<Integer>>]
|
546
|
+
# @return [void]
|
547
|
+
# @overload draw_spline(x1, y1, x2, y2, x3, y3)
|
548
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
549
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
550
|
+
# @param x1 [Integer]
|
551
|
+
# @param y1 [Integer]
|
552
|
+
# @param x2 [Integer]
|
553
|
+
# @param y2 [Integer]
|
554
|
+
# @param x3 [Integer]
|
555
|
+
# @param y3 [Integer]
|
556
|
+
# @return [void]
|
557
|
+
def draw_spline(*args) end
|
558
|
+
|
559
|
+
# @overload draw_text(text, x, y)
|
560
|
+
# Draws a text string at the specified point, using the current text font, and the current text foreground and background colours.
|
561
|
+
# 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.
|
562
|
+
# 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.
|
563
|
+
# The current logical function is ignored by this function.
|
564
|
+
# @param text [String]
|
565
|
+
# @param x [Integer]
|
566
|
+
# @param y [Integer]
|
567
|
+
# @return [void]
|
568
|
+
# @overload draw_text(text, pt)
|
569
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
570
|
+
# @param text [String]
|
571
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
572
|
+
# @return [void]
|
573
|
+
def draw_text(*args) end
|
574
|
+
|
575
|
+
# @overload gradient_fill_concentric(rect, initialColour, destColour)
|
576
|
+
# 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.
|
577
|
+
# The circle is placed at the centre of rect.
|
578
|
+
# Currently this function is very slow, don't use it for real-time drawing.
|
579
|
+
# @param rect [Wx::Rect]
|
580
|
+
# @param initialColour [Wx::Colour,String,Symbol]
|
581
|
+
# @param destColour [Wx::Colour,String,Symbol]
|
582
|
+
# @return [void]
|
583
|
+
# @overload gradient_fill_concentric(rect, initialColour, destColour, circleCenter)
|
584
|
+
# 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.
|
585
|
+
# circleCenter are the relative coordinates of centre of the circle in the specified rect.
|
586
|
+
# Currently this function is very slow, don't use it for real-time drawing.
|
587
|
+
# @param rect [Wx::Rect]
|
588
|
+
# @param initialColour [Wx::Colour,String,Symbol]
|
589
|
+
# @param destColour [Wx::Colour,String,Symbol]
|
590
|
+
# @param circleCenter [Array(Integer, Integer), Wx::Point]
|
591
|
+
# @return [void]
|
592
|
+
def gradient_fill_concentric(*args) end
|
593
|
+
|
594
|
+
# Fill the area specified by rect with a linear gradient, starting from initialColour and eventually fading to destColour.
|
595
|
+
# 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.
|
596
|
+
# @param rect [Wx::Rect]
|
597
|
+
# @param initialColour [Wx::Colour,String,Symbol]
|
598
|
+
# @param destColour [Wx::Colour,String,Symbol]
|
599
|
+
# @param nDirection [Direction]
|
600
|
+
# @return [void]
|
601
|
+
def gradient_fill_linear(rect, initialColour, destColour, nDirection=Wx::RIGHT) end
|
602
|
+
|
603
|
+
# @overload flood_fill(x, y, colour, style=Wx::FLOOD_SURFACE)
|
604
|
+
# Flood fills the device context starting from the given point, using the current brush colour, and using a style:
|
605
|
+
# - {Wx::FloodFillStyle::FLOOD_SURFACE}: The flooding occurs until a colour other than the given colour is encountered.- {Wx::FloodFillStyle::FLOOD_BORDER}: The area to be flooded is bounded by the given colour.
|
606
|
+
#
|
607
|
+
# Currently this method is not implemented in {Wx::OSX} and does nothing there.
|
608
|
+
# false if the operation failed.
|
609
|
+
#
|
610
|
+
# 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.
|
611
|
+
#
|
612
|
+
# 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 {Wx::GTK}. 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.
|
613
|
+
# @param x [Integer]
|
614
|
+
# @param y [Integer]
|
615
|
+
# @param colour [Wx::Colour,String,Symbol]
|
616
|
+
# @param style [FloodFillStyle]
|
617
|
+
# @return [true,false]
|
618
|
+
# @overload flood_fill(pt, col, style=Wx::FLOOD_SURFACE)
|
619
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
620
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
621
|
+
# @param col [Wx::Colour,String,Symbol]
|
622
|
+
# @param style [FloodFillStyle]
|
623
|
+
# @return [true,false]
|
624
|
+
def flood_fill(*args) end
|
625
|
+
|
626
|
+
# @overload cross_hair(x, y)
|
627
|
+
# Displays a cross hair using the current pen.
|
628
|
+
# This is a vertical and horizontal line the height and width of the window, centred on the given point.
|
629
|
+
# @param x [Integer]
|
630
|
+
# @param y [Integer]
|
631
|
+
# @return [void]
|
632
|
+
# @overload cross_hair(pt)
|
633
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
634
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
635
|
+
# @return [void]
|
636
|
+
def cross_hair(*args) end
|
637
|
+
|
638
|
+
# Destroys the current clipping region so that none of the DC is clipped.
|
639
|
+
#
|
640
|
+
# @see Wx::DC#set_clipping_region
|
641
|
+
# @return [void]
|
642
|
+
def destroy_clipping_region; end
|
643
|
+
|
644
|
+
# @overload get_clipping_box(x, y)
|
645
|
+
# Gets the rectangle surrounding the current clipping region.
|
646
|
+
# If no clipping region is set this function returns the extent of the device context.
|
647
|
+
# Clipping region is given in logical coordinates.
|
648
|
+
#
|
649
|
+
# 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).
|
650
|
+
# @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.
|
651
|
+
# @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.
|
652
|
+
# @return [Array(true,false,Integer,Integer)]
|
653
|
+
# @overload get_clipping_box(rect)
|
654
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
655
|
+
# @param rect [Wx::Rect]
|
656
|
+
# @return [true,false]
|
657
|
+
def get_clipping_box(*args) end
|
658
|
+
alias_method :clipping_box, :get_clipping_box
|
659
|
+
|
660
|
+
# @overload set_clipping_region(x, y, width, height)
|
661
|
+
# 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.
|
662
|
+
# 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.
|
663
|
+
#
|
664
|
+
# - Clipping region should be given in logical coordinates.- Calling this function can only make the clipping region smaller, never larger.- You need to call {Wx::DC#destroy_clipping_region} first if you want to set the clipping region exactly to the region specified.- If resulting clipping region is empty, then all drawing on the DC is clipped out (all changes made by drawing operations are masked out).
|
665
|
+
# @see Wx::DC#destroy_clipping_region
|
666
|
+
# @see Wx::Region
|
667
|
+
# @param x [Integer]
|
668
|
+
# @param y [Integer]
|
669
|
+
# @param width [Integer]
|
670
|
+
# @param height [Integer]
|
671
|
+
# @return [void]
|
672
|
+
# @overload set_clipping_region(pt, sz)
|
673
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
674
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
675
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
676
|
+
# @return [void]
|
677
|
+
# @overload set_clipping_region(rect)
|
678
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
679
|
+
# @param rect [Wx::Rect]
|
680
|
+
# @return [void]
|
681
|
+
def set_clipping_region(*args) end
|
682
|
+
alias_method :clipping_region=, :set_clipping_region
|
683
|
+
|
684
|
+
# Sets the clipping region for this device context.
|
685
|
+
# Unlike {Wx::DC#set_clipping_region}, this function works with physical coordinates and not with the logical ones.
|
686
|
+
# @param region [Wx::Region]
|
687
|
+
# @return [void]
|
688
|
+
def set_device_clipping_region(region) end
|
689
|
+
alias_method :device_clipping_region=, :set_device_clipping_region
|
690
|
+
|
691
|
+
# Gets the character height of the currently set font.
|
692
|
+
# @return [Integer]
|
693
|
+
def get_char_height; end
|
694
|
+
alias_method :char_height, :get_char_height
|
695
|
+
|
696
|
+
# Gets the average character width of the currently set font.
|
697
|
+
# @return [Integer]
|
698
|
+
def get_char_width; end
|
699
|
+
alias_method :char_width, :get_char_width
|
700
|
+
|
701
|
+
# Returns the various font characteristics.
|
702
|
+
# This method allows retrieving some of the font characteristics not returned by {Wx::DC#get_text_extent}, notably internal leading and average character width.
|
703
|
+
# Currently this method returns correct results only under {Wx::MSW}, 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'.
|
704
|
+
# @return [Wx::FontMetrics]
|
705
|
+
def get_font_metrics; end
|
706
|
+
alias_method :font_metrics, :get_font_metrics
|
707
|
+
|
708
|
+
# Gets the dimensions of the string using the currently selected font.
|
709
|
+
# string is the text string to measure, heightLine, if non NULL, is where to store the height of a single line.
|
710
|
+
# The text extent is set in the given w and h pointers.
|
711
|
+
# 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.
|
712
|
+
# 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}.
|
713
|
+
# This function works with both single-line and multi-line strings.
|
714
|
+
#
|
715
|
+
# <b>{Wx::Perl} Note:</b> In {Wx::Perl} this method is implemented as GetMultiLineTextExtent(string, font = undef) returning a 3-element list (width, height, line_height)
|
716
|
+
# @see Wx::Font
|
717
|
+
# @see Wx::DC#set_font
|
718
|
+
# @see Wx::DC#get_partial_text_extents
|
719
|
+
# @see Wx::DC#get_text_extent
|
720
|
+
# @param string [String]
|
721
|
+
# @param font [Wx::Font,Wx::FontInfo]
|
722
|
+
# @return [Array(Integer,Integer,Integer)]
|
723
|
+
def get_multi_line_text_extent(string, font=nil) end
|
724
|
+
alias_method :multi_line_text_extent, :get_multi_line_text_extent
|
725
|
+
|
726
|
+
# Gets the dimensions of the string using the currently selected font.
|
727
|
+
# string is the text string to measure.
|
728
|
+
# The text extent as a {Wx::Size} object.
|
729
|
+
#
|
730
|
+
# This function works with both single-line and multi-line strings.
|
731
|
+
#
|
732
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
733
|
+
# @see Wx::Font
|
734
|
+
# @see Wx::DC#set_font
|
735
|
+
# @see Wx::DC#get_partial_text_extents
|
736
|
+
# @see Wx::DC#get_text_extent
|
737
|
+
# @param string [String]
|
738
|
+
# @return [Wx::Size]
|
739
|
+
def get_multi_line_text_size(string) end
|
740
|
+
alias_method :multi_line_text_size, :get_multi_line_text_size
|
741
|
+
|
742
|
+
# Gets the dimensions of the string using the currently selected font.
|
743
|
+
# 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).
|
744
|
+
# 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.
|
745
|
+
# If the optional parameter font is specified and valid, then it is used for the text extent calculation. Otherwise the currently selected font is.
|
746
|
+
# If string is empty, its extent is 0 in both directions, as expected.
|
747
|
+
# This function only works with single-line strings.
|
748
|
+
#
|
749
|
+
# <b>{Wx::Perl} Note:</b> In {Wx::Perl} this method is implemented as GetTextExtent(string, font = undef) returning a 4-element list (width, height, descent, externalLeading)
|
750
|
+
# @see Wx::Font
|
751
|
+
# @see Wx::DC#set_font
|
752
|
+
# @see Wx::DC#get_partial_text_extents
|
753
|
+
# @see Wx::DC#get_multi_line_text_extent
|
754
|
+
# @param string [String]
|
755
|
+
# @param font [Wx::Font,Wx::FontInfo]
|
756
|
+
# @return [Array(Integer,Integer,Integer,Integer)]
|
757
|
+
def get_text_extent(string, font=nil) end
|
758
|
+
alias_method :text_extent, :get_text_extent
|
759
|
+
|
760
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
761
|
+
# <b>{Wx::Perl} Note:</b> Not supported by {Wx::Perl}.
|
762
|
+
# @param string [String]
|
763
|
+
# @return [Wx::Size]
|
764
|
+
def get_text_size(string) end
|
765
|
+
alias_method :text_size, :get_text_size
|
766
|
+
|
767
|
+
# Returns the current background mode: {Wx::BrushStyle::BRUSHSTYLE_SOLID} or {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}.
|
768
|
+
#
|
769
|
+
# @see Wx::DC#set_background_mode
|
770
|
+
# @return [Integer]
|
771
|
+
def get_background_mode; end
|
772
|
+
alias_method :background_mode, :get_background_mode
|
773
|
+
|
774
|
+
# Gets the current font.
|
775
|
+
# 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.
|
776
|
+
# @return [Wx::Font,Wx::FontInfo]
|
777
|
+
def get_font; end
|
778
|
+
alias_method :font, :get_font
|
779
|
+
|
780
|
+
# Gets the current layout direction of the device context.
|
781
|
+
# 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}.
|
782
|
+
# @see Wx::DC#set_layout_direction
|
783
|
+
# @return [LayoutDirection]
|
784
|
+
def get_layout_direction; end
|
785
|
+
alias_method :layout_direction, :get_layout_direction
|
786
|
+
|
787
|
+
# Gets the current text background colour.
|
788
|
+
#
|
789
|
+
# @see Wx::DC#set_text_background
|
790
|
+
# @return [Wx::Colour,String,Symbol]
|
791
|
+
def get_text_background; end
|
792
|
+
alias_method :text_background, :get_text_background
|
793
|
+
|
794
|
+
# Gets the current text foreground colour.
|
795
|
+
#
|
796
|
+
# @see Wx::DC#set_text_foreground
|
797
|
+
# @return [Wx::Colour,String,Symbol]
|
798
|
+
def get_text_foreground; end
|
799
|
+
alias_method :text_foreground, :get_text_foreground
|
800
|
+
|
801
|
+
# Change the current background mode.
|
802
|
+
# This setting determines whether text will be drawn with a background colour or not.
|
803
|
+
# Default is {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}, i.e. text background is not drawn.
|
804
|
+
# @param mode [Integer] one of {Wx::BrushStyle::BRUSHSTYLE_SOLID} and {Wx::BrushStyle::BRUSHSTYLE_TRANSPARENT}.
|
805
|
+
# @return [void]
|
806
|
+
def set_background_mode(mode) end
|
807
|
+
alias_method :background_mode=, :set_background_mode
|
808
|
+
|
809
|
+
# Sets the current font for the DC.
|
810
|
+
# The font parameter should be valid, although in {Wx::MSW} 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).
|
811
|
+
# @see Wx::Font
|
812
|
+
# @param font [Wx::Font,Wx::FontInfo]
|
813
|
+
# @return [void]
|
814
|
+
def set_font(font) end
|
815
|
+
alias_method :font=, :set_font
|
816
|
+
|
817
|
+
# Sets the current text background colour for the DC.
|
818
|
+
# @param colour [Wx::Colour,String,Symbol]
|
819
|
+
# @return [void]
|
820
|
+
def set_text_background(colour) end
|
821
|
+
alias_method :text_background=, :set_text_background
|
822
|
+
|
823
|
+
# Sets the current text foreground colour for the DC.
|
824
|
+
#
|
825
|
+
# @see Wx::MemoryDC for the interpretation of colours when drawing into a monochrome bitmap.
|
826
|
+
# @param colour [Wx::Colour,String,Symbol]
|
827
|
+
# @return [void]
|
828
|
+
def set_text_foreground(colour) end
|
829
|
+
alias_method :text_foreground=, :set_text_foreground
|
830
|
+
|
831
|
+
# Sets the current layout direction for the device context.
|
832
|
+
#
|
833
|
+
# @see Wx::DC#get_layout_direction
|
834
|
+
# @param dir [LayoutDirection] May be either {Wx::LayoutDirection::Layout_Default}, {Wx::LayoutDirection::Layout_LeftToRight} or {Wx::LayoutDirection::Layout_RightToLeft}.
|
835
|
+
# @return [void]
|
836
|
+
def set_layout_direction(dir) end
|
837
|
+
alias_method :layout_direction=, :set_layout_direction
|
838
|
+
|
839
|
+
# 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.
|
840
|
+
#
|
841
|
+
# @see Wx::DC#reset_bounding_box
|
842
|
+
# @param x [Integer]
|
843
|
+
# @param y [Integer]
|
844
|
+
# @return [void]
|
845
|
+
def calc_bounding_box(x, y) end
|
846
|
+
|
847
|
+
# Gets the maximum horizontal extent used in drawing commands so far.
|
848
|
+
# @return [Integer]
|
849
|
+
def max_x; end
|
850
|
+
|
851
|
+
# Gets the maximum vertical extent used in drawing commands so far.
|
852
|
+
# @return [Integer]
|
853
|
+
def max_y; end
|
854
|
+
|
855
|
+
# Gets the minimum horizontal extent used in drawing commands so far.
|
856
|
+
# @return [Integer]
|
857
|
+
def min_x; end
|
858
|
+
|
859
|
+
# Gets the minimum vertical extent used in drawing commands so far.
|
860
|
+
# @return [Integer]
|
861
|
+
def min_y; end
|
862
|
+
|
863
|
+
# Resets the bounding box: after a call to this function, the bounding box doesn't contain anything.
|
864
|
+
#
|
865
|
+
# @see Wx::DC#calc_bounding_box
|
866
|
+
# @return [void]
|
867
|
+
def reset_bounding_box; end
|
868
|
+
|
869
|
+
# Starts a document (only relevant when outputting to a printer).
|
870
|
+
# message is a message to show while printing.
|
871
|
+
# @param message [String]
|
872
|
+
# @return [true,false]
|
873
|
+
def start_doc(message) end
|
874
|
+
|
875
|
+
# Ends a document (only relevant when outputting to a printer).
|
876
|
+
# @return [void]
|
877
|
+
def end_doc; end
|
878
|
+
|
879
|
+
# Ends a document page (only relevant when outputting to a printer).
|
880
|
+
# @return [void]
|
881
|
+
def end_page; end
|
882
|
+
|
883
|
+
# Copy from a source DC to this DC.
|
884
|
+
# 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}.
|
885
|
+
# 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.
|
886
|
+
#
|
887
|
+
# There is partial support for {Wx::DC#blit} in {Wx::PRT::PostScriptDC}, under X.
|
888
|
+
# @see Wx::DC#stretch_blit
|
889
|
+
# @see Wx::MemoryDC
|
890
|
+
# @see Wx::Bitmap
|
891
|
+
# @see Wx::Mask
|
892
|
+
# @param xdest [Integer] Destination device context x position.
|
893
|
+
# @param ydest [Integer] Destination device context y position.
|
894
|
+
# @param width [Integer] Width of source area to be copied.
|
895
|
+
# @param height [Integer] Height of source area to be copied.
|
896
|
+
# @param source [Wx::DC] Source device context.
|
897
|
+
# @param xsrc [Integer] Source device context x position.
|
898
|
+
# @param ysrc [Integer] Source device context y position.
|
899
|
+
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
900
|
+
# @param useMask [true,false] 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:
|
901
|
+
# -
|
902
|
+
# Creates a temporary bitmap and copies the destination area into it.
|
903
|
+
# -
|
904
|
+
# Copies the source area into the temporary bitmap using the specified logical function.
|
905
|
+
# -
|
906
|
+
# 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.
|
907
|
+
# -
|
908
|
+
# 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.
|
909
|
+
# -
|
910
|
+
# ORs the temporary bitmap with the destination area.
|
911
|
+
# -
|
912
|
+
# Deletes the temporary bitmap.
|
913
|
+
#
|
914
|
+
# This sequence of operations ensures that the source's transparent area need not be black, and logical functions are supported.
|
915
|
+
#
|
916
|
+
# <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.
|
917
|
+
# @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.
|
918
|
+
# @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.
|
919
|
+
# @return [true,false]
|
920
|
+
def blit(xdest, ydest, width, height, source, xsrc, ysrc, logicalFunc=Wx::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
|
921
|
+
|
922
|
+
# Copy from a source DC to this DC possibly changing the scale.
|
923
|
+
# 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.
|
924
|
+
# 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.
|
925
|
+
#
|
926
|
+
# There is partial support for {Wx::DC#blit} in {Wx::PRT::PostScriptDC}, under X.
|
927
|
+
# See {Wx::MemoryDC} for typical usage.
|
928
|
+
# @see Wx::DC#blit
|
929
|
+
# @see Wx::MemoryDC
|
930
|
+
# @see Wx::Bitmap
|
931
|
+
# @see Wx::Mask
|
932
|
+
# @param xdest [Integer] Destination device context x position.
|
933
|
+
# @param ydest [Integer] Destination device context y position.
|
934
|
+
# @param dstWidth [Integer] Width of destination area.
|
935
|
+
# @param dstHeight [Integer] Height of destination area.
|
936
|
+
# @param source [Wx::DC] Source device context.
|
937
|
+
# @param xsrc [Integer] Source device context x position.
|
938
|
+
# @param ysrc [Integer] Source device context y position.
|
939
|
+
# @param srcWidth [Integer] Width of source area to be copied.
|
940
|
+
# @param srcHeight [Integer] Height of source area to be copied.
|
941
|
+
# @param logicalFunc [RasterOperationMode] Logical function to use, see {Wx::DC#set_logical_function}.
|
942
|
+
# @param useMask [true,false] 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:
|
943
|
+
# -
|
944
|
+
# Creates a temporary bitmap and copies the destination area into it.
|
945
|
+
# -
|
946
|
+
# Copies the source area into the temporary bitmap using the specified logical function.
|
947
|
+
# -
|
948
|
+
# 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.
|
949
|
+
# -
|
950
|
+
# 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.
|
951
|
+
# -
|
952
|
+
# ORs the temporary bitmap with the destination area.
|
953
|
+
# -
|
954
|
+
# Deletes the temporary bitmap.
|
955
|
+
#
|
956
|
+
# This sequence of operations ensures that the source's transparent area need not be black, and logical functions are supported.
|
957
|
+
#
|
958
|
+
# <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.
|
959
|
+
# @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.
|
960
|
+
# @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.
|
961
|
+
# @return [true,false]
|
962
|
+
def stretch_blit(xdest, ydest, dstWidth, dstHeight, source, xsrc, ysrc, srcWidth, srcHeight, logicalFunc=Wx::COPY, useMask=false, xsrcMask=Wx::DEFAULT_COORD, ysrcMask=Wx::DEFAULT_COORD) end
|
963
|
+
|
964
|
+
# Gets the brush used for painting the background.
|
965
|
+
#
|
966
|
+
# @see Wx::DC#set_background
|
967
|
+
# @return [void]
|
968
|
+
def get_background; end
|
969
|
+
alias_method :background, :get_background
|
970
|
+
|
971
|
+
# Gets the current brush.
|
972
|
+
#
|
973
|
+
# @see Wx::DC#set_brush
|
974
|
+
# @return [void]
|
975
|
+
def get_brush; end
|
976
|
+
alias_method :brush, :get_brush
|
977
|
+
|
978
|
+
# Gets the current pen.
|
979
|
+
#
|
980
|
+
# @see Wx::DC#set_pen
|
981
|
+
# @return [void]
|
982
|
+
def get_pen; end
|
983
|
+
alias_method :pen, :get_pen
|
984
|
+
|
985
|
+
# Sets the current background brush for the DC.
|
986
|
+
# @param brush [Wx::Brush]
|
987
|
+
# @return [void]
|
988
|
+
def set_background(brush) end
|
989
|
+
alias_method :background=, :set_background
|
990
|
+
|
991
|
+
# Sets the current brush for the DC.
|
992
|
+
# 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.
|
993
|
+
# @see Wx::Brush
|
994
|
+
# @see Wx::MemoryDC (for the interpretation of colours when drawing into a monochrome bitmap)
|
995
|
+
# @param brush [Wx::Brush]
|
996
|
+
# @return [void]
|
997
|
+
def set_brush(brush) end
|
998
|
+
alias_method :brush=, :set_brush
|
999
|
+
|
1000
|
+
# Sets the current pen for the DC.
|
1001
|
+
# 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.
|
1002
|
+
# @see Wx::MemoryDC for the interpretation of colours when drawing into a monochrome bitmap.
|
1003
|
+
# @param pen [Wx::Pen]
|
1004
|
+
# @return [void]
|
1005
|
+
def set_pen(pen) end
|
1006
|
+
alias_method :pen=, :set_pen
|
1007
|
+
|
1008
|
+
# Check if the use of transformation matrix is supported by the current system.
|
1009
|
+
# This function returns true for MSW and GTK+ 3 platforms and since 3.1.1 also for {Wx::GCDC} in all ports.
|
1010
|
+
# @return [true,false]
|
1011
|
+
def can_use_transform_matrix; end
|
1012
|
+
alias_method :can_use_transform_matrix?, :can_use_transform_matrix
|
1013
|
+
|
1014
|
+
# Set the transformation matrix.
|
1015
|
+
# 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.
|
1016
|
+
# @param matrix [Wx::AffineMatrix2D]
|
1017
|
+
# @return [true,false]
|
1018
|
+
def set_transform_matrix(matrix) end
|
1019
|
+
alias_method :transform_matrix=, :set_transform_matrix
|
1020
|
+
|
1021
|
+
# Return the transformation matrix used by this device context.
|
1022
|
+
# By default the transformation matrix is the identity matrix.
|
1023
|
+
# @return [Wx::AffineMatrix2D]
|
1024
|
+
def get_transform_matrix; end
|
1025
|
+
alias_method :transform_matrix, :get_transform_matrix
|
1026
|
+
|
1027
|
+
# Revert the transformation matrix to identity matrix.
|
1028
|
+
# @return [void]
|
1029
|
+
def reset_transform_matrix; end
|
1030
|
+
|
1031
|
+
# Does the DC support drawing bitmaps?
|
1032
|
+
# @return [true,false]
|
1033
|
+
def can_draw_bitmap; end
|
1034
|
+
alias_method :can_draw_bitmap?, :can_draw_bitmap
|
1035
|
+
|
1036
|
+
# Does the DC support calculating the size required to draw text?
|
1037
|
+
# @return [true,false]
|
1038
|
+
def can_get_text_extent; end
|
1039
|
+
alias_method :can_get_text_extent?, :can_get_text_extent
|
1040
|
+
|
1041
|
+
# Return the coordinates of the logical point (0, 0).
|
1042
|
+
#
|
1043
|
+
# @see Wx::DC#set_logical_origin
|
1044
|
+
# @return [Wx::Point]
|
1045
|
+
def get_logical_origin; end
|
1046
|
+
alias_method :logical_origin, :get_logical_origin
|
1047
|
+
|
1048
|
+
# Copy attributes from another DC.
|
1049
|
+
# The copied attributes currently are:
|
1050
|
+
# - Font- Text foreground and background colours- Background brush- Layout direction
|
1051
|
+
#
|
1052
|
+
# Note that the scaling factor is not considered to be an attribute of {Wx::DC} and is not copied by this function.
|
1053
|
+
# @param dc [Wx::DC] A valid (i.e. its {Wx::DC#is_ok} must return true) source device context.
|
1054
|
+
# @return [void]
|
1055
|
+
def copy_attributes(dc) end
|
1056
|
+
|
1057
|
+
# Returns the factor used for converting logical pixels to physical ones.
|
1058
|
+
# Returns the same value as {Wx::Window#get_content_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}.
|
1059
|
+
# @return [Float]
|
1060
|
+
def get_content_scale_factor; end
|
1061
|
+
alias_method :content_scale_factor, :get_content_scale_factor
|
1062
|
+
|
1063
|
+
# Returns the depth (number of bits/pixel) of this DC.
|
1064
|
+
#
|
1065
|
+
# @see display_depth
|
1066
|
+
# @return [Integer]
|
1067
|
+
def get_depth; end
|
1068
|
+
alias_method :depth, :get_depth
|
1069
|
+
|
1070
|
+
# Returns the current device origin.
|
1071
|
+
#
|
1072
|
+
# @see Wx::DC#set_device_origin
|
1073
|
+
# @return [Wx::Point]
|
1074
|
+
def get_device_origin; end
|
1075
|
+
alias_method :device_origin, :get_device_origin
|
1076
|
+
|
1077
|
+
# Gets the current logical function.
|
1078
|
+
#
|
1079
|
+
# @see Wx::DC#set_logical_function
|
1080
|
+
# @return [RasterOperationMode]
|
1081
|
+
def get_logical_function; end
|
1082
|
+
alias_method :logical_function, :get_logical_function
|
1083
|
+
|
1084
|
+
# Gets the current mapping mode for the device context.
|
1085
|
+
#
|
1086
|
+
# @see Wx::DC#set_map_mode
|
1087
|
+
# @return [MappingMode]
|
1088
|
+
def get_map_mode; end
|
1089
|
+
alias_method :map_mode, :get_map_mode
|
1090
|
+
|
1091
|
+
# Gets in colour the colour at the specified location.
|
1092
|
+
# This method isn't available for {Wx::PRT::PostScriptDC} or {Wx::MetafileDC} nor for any DC in {Wx::OSX} port and simply returns false there.
|
1093
|
+
# Setting a pixel can be done using {Wx::DC#draw_point}.
|
1094
|
+
#
|
1095
|
+
# This method shouldn't be used with {Wx::PaintDC} as accessing the DC while drawing can result in unexpected results, notably in {Wx::GTK}.
|
1096
|
+
# @param x [Integer]
|
1097
|
+
# @param y [Integer]
|
1098
|
+
# @param colour [Wx::Colour]
|
1099
|
+
# @return [true,false]
|
1100
|
+
def get_pixel(x, y, colour) end
|
1101
|
+
alias_method :pixel, :get_pixel
|
1102
|
+
|
1103
|
+
# Returns the resolution of the device in pixels per inch.
|
1104
|
+
# @return [Wx::Size]
|
1105
|
+
def get_ppi; end
|
1106
|
+
alias_method :ppi, :get_ppi
|
1107
|
+
|
1108
|
+
# @overload from_dip(sz)
|
1109
|
+
# Convert DPI-independent pixel values to the value in pixels appropriate for the DC.
|
1110
|
+
# See {Wx::Window#from_dip(sz)} for more info about converting device independent pixel values.
|
1111
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
1112
|
+
# @return [Wx::Size]
|
1113
|
+
# @overload from_dip(pt)
|
1114
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
1115
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
1116
|
+
# @return [Wx::Point]
|
1117
|
+
# @overload from_dip(d)
|
1118
|
+
# Convert DPI-independent value in pixels to the value in pixels appropriate for the DC.
|
1119
|
+
# This is the same as FromDIP(const {Wx::Size}& sz) overload, but assumes that the resolution is the same in horizontal and vertical directions.
|
1120
|
+
# @param d [Integer]
|
1121
|
+
# @return [Integer]
|
1122
|
+
def from_dip(*args) end
|
1123
|
+
|
1124
|
+
# @overload to_dip(sz)
|
1125
|
+
# Convert pixel values of the current DC to DPI-independent pixel values.
|
1126
|
+
# See {Wx::Window#to_dip(sz)} for more info about converting device independent pixel values.
|
1127
|
+
# @param sz [Array(Integer, Integer), Wx::Size]
|
1128
|
+
# @return [Wx::Size]
|
1129
|
+
# @overload to_dip(pt)
|
1130
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
1131
|
+
# @param pt [Array(Integer, Integer), Wx::Point]
|
1132
|
+
# @return [Wx::Point]
|
1133
|
+
# @overload to_dip(d)
|
1134
|
+
# Convert pixel values of the current DC to DPI-independent pixel values.
|
1135
|
+
# This is the same as ToDIP(const {Wx::Size}& sz) overload, but assumes that the resolution is the same in horizontal and vertical directions.
|
1136
|
+
# @param d [Integer]
|
1137
|
+
# @return [Integer]
|
1138
|
+
def to_dip(*args) end
|
1139
|
+
|
1140
|
+
# Gets the horizontal and vertical extent of this device context in device units.
|
1141
|
+
# It can be used to scale graphics to fit the page.
|
1142
|
+
# 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:
|
1143
|
+
#
|
1144
|
+
# wxCoord w, h;
|
1145
|
+
# dc.GetSize(&w, &h);
|
1146
|
+
# double scaleX = (double)(maxX / w);
|
1147
|
+
# double scaleY = (double)(maxY / h);
|
1148
|
+
# dc.SetUserScale(min(scaleX, scaleY),min(scaleX, scaleY));
|
1149
|
+
#
|
1150
|
+
# <b>{Wx::Perl} Note:</b> In {Wx::Perl} there are two methods instead of a single overloaded method:
|
1151
|
+
# - {Wx::DC#get_size}: returns a Wx::Size object.- GetSizeWH(): returns a 2-element list (width, height).
|
1152
|
+
# @return [Array(Integer,Integer)]
|
1153
|
+
def get_dimensions; end
|
1154
|
+
alias_method :dimensions, :get_dimensions
|
1155
|
+
|
1156
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
1157
|
+
# @return [Wx::Size]
|
1158
|
+
def get_size; end
|
1159
|
+
alias_method :size, :get_size
|
1160
|
+
|
1161
|
+
# Returns the horizontal and vertical resolution in millimetres.
|
1162
|
+
# @return [Array(Integer,Integer)]
|
1163
|
+
def get_dimensions_mm; end
|
1164
|
+
alias_method :dimensions_mm, :get_dimensions_mm
|
1165
|
+
|
1166
|
+
# This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
1167
|
+
# @return [Wx::Size]
|
1168
|
+
def get_size_mm; end
|
1169
|
+
alias_method :size_mm, :get_size_mm
|
1170
|
+
|
1171
|
+
# Gets the current user scale factor.
|
1172
|
+
# <b>{Wx::Perl} Note:</b> In {Wx::Perl} this method takes no arguments and return a two element array (x, y).
|
1173
|
+
# @see Wx::DC#set_user_scale
|
1174
|
+
# @param x [double]
|
1175
|
+
# @param y [double]
|
1176
|
+
# @return [void]
|
1177
|
+
def get_user_scale(x, y) end
|
1178
|
+
alias_method :user_scale, :get_user_scale
|
1179
|
+
|
1180
|
+
# Returns true if the DC is ok to use.
|
1181
|
+
# @return [true,false]
|
1182
|
+
def is_ok; end
|
1183
|
+
alias_method :ok?, :is_ok
|
1184
|
+
|
1185
|
+
# Sets the x and y axis orientation (i.e. the direction from lowest to highest values on the axis).
|
1186
|
+
# The default orientation is x axis from left to right and y axis from top down.
|
1187
|
+
# @param xLeftRight [true,false] True to set the x axis orientation to the natural left to right orientation, false to invert it.
|
1188
|
+
# @param yBottomUp [true,false] True to set the y axis orientation to the natural bottom up orientation, false to invert it.
|
1189
|
+
# @return [void]
|
1190
|
+
def set_axis_orientation(xLeftRight, yBottomUp) end
|
1191
|
+
|
1192
|
+
# Sets the device origin (i.e. the origin in pixels after scaling has been applied).
|
1193
|
+
# This function may be useful in Windows printing operations for placing a graphic on a page.
|
1194
|
+
# @param x [Integer]
|
1195
|
+
# @param y [Integer]
|
1196
|
+
# @return [void]
|
1197
|
+
def set_device_origin(x, y) end
|
1198
|
+
|
1199
|
+
# Sets the current logical function for the device context.
|
1200
|
+
# 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 {Wx::GTK3} and {Wx::Mac}. The suggested alternative is to draw temporarily objects normally and refresh the (affected part of the) window to remove them later.
|
1201
|
+
#
|
1202
|
+
# 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.
|
1203
|
+
# See {Wx::RasterOperationMode} enumeration values for more info.
|
1204
|
+
# 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.
|
1205
|
+
# @param function [RasterOperationMode]
|
1206
|
+
# @return [void]
|
1207
|
+
def set_logical_function(function) end
|
1208
|
+
alias_method :logical_function=, :set_logical_function
|
1209
|
+
|
1210
|
+
# The mapping mode of the device context defines the unit of measurement used to convert logical units to device units.
|
1211
|
+
# 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.
|
1212
|
+
# The coordinate origin is always at the top left of the screen/printer.
|
1213
|
+
# Drawing to a Windows printer device context uses the current mapping mode, but mapping mode is currently ignored for PostScript output.
|
1214
|
+
# @param mode [MappingMode]
|
1215
|
+
# @return [void]
|
1216
|
+
def set_map_mode(mode) end
|
1217
|
+
alias_method :map_mode=, :set_map_mode
|
1218
|
+
|
1219
|
+
# If this is a window DC or memory DC, assigns the given palette to the window or bitmap associated with the DC.
|
1220
|
+
# If the argument is {Wx::NULL_PALETTE}, the current palette is selected out of the device context, and the original palette restored.
|
1221
|
+
# @see Wx::Palette
|
1222
|
+
# @param palette [Wx::Palette]
|
1223
|
+
# @return [void]
|
1224
|
+
def set_palette(palette) end
|
1225
|
+
alias_method :palette=, :set_palette
|
1226
|
+
|
1227
|
+
# Sets the user scaling factor, useful for applications which require 'zooming'.
|
1228
|
+
# @param xScale [Float]
|
1229
|
+
# @param yScale [Float]
|
1230
|
+
# @return [void]
|
1231
|
+
def set_user_scale(xScale, yScale) end
|
1232
|
+
|
1233
|
+
# If supported by the platform and the type of DC, fetch the contents of the DC, or a subset of it, as a bitmap.
|
1234
|
+
# @param subrect [Wx::Rect]
|
1235
|
+
# @return [Wx::Bitmap]
|
1236
|
+
def get_as_bitmap(subrect=nil) end
|
1237
|
+
alias_method :as_bitmap, :get_as_bitmap
|
1238
|
+
|
1239
|
+
# Set the scale to use for translating {Wx::DC} coordinates to the physical pixels.
|
1240
|
+
# The effect of calling this function is similar to that of calling {Wx::DC#set_user_scale}.
|
1241
|
+
# @param x [Float]
|
1242
|
+
# @param y [Float]
|
1243
|
+
# @return [void]
|
1244
|
+
def set_logical_scale(x, y) end
|
1245
|
+
|
1246
|
+
# Return the scale set by the last call to {Wx::DC#set_logical_scale}.
|
1247
|
+
# @param x [double]
|
1248
|
+
# @param y [double]
|
1249
|
+
# @return [void]
|
1250
|
+
def get_logical_scale(x, y) end
|
1251
|
+
alias_method :logical_scale, :get_logical_scale
|
1252
|
+
|
1253
|
+
# Change the offset used for translating {Wx::DC} coordinates.
|
1254
|
+
#
|
1255
|
+
# @see Wx::DC#set_logical_origin
|
1256
|
+
# @see Wx::DC#set_device_origin
|
1257
|
+
# @param x [Integer]
|
1258
|
+
# @param y [Integer]
|
1259
|
+
# @return [void]
|
1260
|
+
def set_logical_origin(x, y) end
|
1261
|
+
|
1262
|
+
# If supported by the platform and the {Wx::DC} implementation, this method will return the {Wx::GraphicsContext} associated with the DC.
|
1263
|
+
# Otherwise NULL is returned.
|
1264
|
+
# @return [Wx::GraphicsContext]
|
1265
|
+
def get_graphics_context; end
|
1266
|
+
alias_method :graphics_context, :get_graphics_context
|
1267
|
+
|
1268
|
+
# Associate a {Wx::GraphicsContext} with the DC.
|
1269
|
+
# Ignored if not supported by the specific {Wx::DC} implementation. It is unlikely that this will need to be used in application code.
|
1270
|
+
# @param ctx [Wx::GraphicsContext]
|
1271
|
+
# @return [void]
|
1272
|
+
def set_graphics_context(ctx) end
|
1273
|
+
alias_method :graphics_context=, :set_graphics_context
|
1274
|
+
|
1275
|
+
end # DC
|
1276
|
+
|
1277
|
+
|
1278
|
+
end
|