wxruby3 0.9.0.pre.beta.8-x64-mingw-ucrt
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/enum.rb +28 -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 +253 -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 +104 -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/core.rb +11 -0
- data/lib/wx/doc/dc.rb +49 -0
- data/lib/wx/doc/enum.rb +88 -0
- data/lib/wx/doc/evthandler.rb +87 -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 +27 -0
- data/lib/wx/pg/property_grid.rb +71 -0
- data/lib/wx/pg/property_grid_interface.rb +46 -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/choice.xpm +27 -0
- data/samples/controls/combo.xpm +27 -0
- data/samples/controls/controls.rb +1143 -0
- data/samples/controls/gauge.xpm +27 -0
- data/samples/controls/get_item_sample.rb +117 -0
- data/samples/controls/list.xpm +27 -0
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +44 -0
- data/samples/controls/radio.xpm +27 -0
- data/samples/controls/stattext.xpm +24 -0
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +27 -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 +2711 -0
- data/samples/propgrid/propgrid_minimal.rb +107 -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 +560 -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 +347 -0
- data/samples/sampler/stc_editor.rb +321 -0
- data/samples/sampler/txt_editor.rb +130 -0
- data/samples/sampler/undo.xpm +58 -0
- data/samples/sampler.rb +394 -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 +930 -0
@@ -0,0 +1,73 @@
|
|
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
|
+
# This class holds information about a tooltip associated with a window (see {Wx::Window#set_tool_tip}).
|
10
|
+
# The four static methods, {Wx::ToolTip.enable}, {Wx::ToolTip.set_delay} {Wx::ToolTip.set_auto_pop} and {Wx::ToolTip.set_reshow} can be used to globally alter tooltips behaviour.
|
11
|
+
# ===
|
12
|
+
#
|
13
|
+
# Category: {Wx::HELP}
|
14
|
+
#
|
15
|
+
class ToolTip < Object
|
16
|
+
|
17
|
+
# Constructor.
|
18
|
+
# @param tip [String]
|
19
|
+
# @return [ToolTip]
|
20
|
+
def initialize(tip) end
|
21
|
+
|
22
|
+
# Get the tooltip text.
|
23
|
+
# @return [String]
|
24
|
+
def get_tip; end
|
25
|
+
alias_method :tip, :get_tip
|
26
|
+
|
27
|
+
# Get the associated window.
|
28
|
+
# @return [Wx::Window]
|
29
|
+
def get_window; end
|
30
|
+
alias_method :window, :get_window
|
31
|
+
|
32
|
+
# Set the tooltip text.
|
33
|
+
# @param tip [String]
|
34
|
+
# @return [void]
|
35
|
+
def set_tip(tip) end
|
36
|
+
alias_method :tip=, :set_tip
|
37
|
+
|
38
|
+
# Enable or disable tooltips globally.
|
39
|
+
# May not be supported on all platforms (eg. {Wx::Cocoa}).
|
40
|
+
# @param flag [true,false]
|
41
|
+
# @return [void]
|
42
|
+
def self.enable(flag) end
|
43
|
+
|
44
|
+
# Set the delay after which the tooltip disappears or how long a tooltip remains visible.
|
45
|
+
# May not be supported on all platforms (eg. {Wx::Cocoa}, GTK).
|
46
|
+
# @param msecs [Integer]
|
47
|
+
# @return [void]
|
48
|
+
def self.set_auto_pop(msecs) end
|
49
|
+
|
50
|
+
# Set the delay after which the tooltip appears.
|
51
|
+
# May not be supported on all platforms.
|
52
|
+
# @param msecs [Integer]
|
53
|
+
# @return [void]
|
54
|
+
def self.set_delay(msecs) end
|
55
|
+
|
56
|
+
# Set tooltip maximal width in pixels.
|
57
|
+
# By default, tooltips are wrapped at a suitably chosen width. You can pass -1 as width to disable wrapping them completely, 0 to restore the default behaviour or an arbitrary positive value to wrap them at the given width.
|
58
|
+
# Notice that this function does not change the width of the tooltips created before calling it.
|
59
|
+
# Currently this function is {Wx::MSW}-only.
|
60
|
+
# @param width [Integer]
|
61
|
+
# @return [void]
|
62
|
+
def self.set_max_width(width) end
|
63
|
+
|
64
|
+
# Set the delay between subsequent tooltips to appear.
|
65
|
+
# May not be supported on all platforms (eg. {Wx::Cocoa}, GTK).
|
66
|
+
# @param msecs [Integer]
|
67
|
+
# @return [void]
|
68
|
+
def self.set_reshow(msecs) end
|
69
|
+
|
70
|
+
end # ToolTip
|
71
|
+
|
72
|
+
|
73
|
+
end
|
@@ -0,0 +1,103 @@
|
|
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
|
+
#
|
10
|
+
TBK_BUTTONBAR = 256
|
11
|
+
|
12
|
+
#
|
13
|
+
TBK_HORZ_LAYOUT = 32768
|
14
|
+
|
15
|
+
#
|
16
|
+
#
|
17
|
+
EVT_TOOLBOOK_PAGE_CHANGED = 10091
|
18
|
+
|
19
|
+
#
|
20
|
+
#
|
21
|
+
EVT_TOOLBOOK_PAGE_CHANGING = 10090
|
22
|
+
|
23
|
+
# {Wx::Toolbook} is a class similar to {Wx::Notebook} but which uses a {Wx::ToolBar} to show the labels instead of the tabs.
|
24
|
+
# There is no documentation for this class yet but its usage is identical to {Wx::Notebook} (except for the features clearly related to tabs only), so please refer to that class documentation for now. You can also use the Notebook Sample to see {Wx::Toolbook} in action.
|
25
|
+
# One feature of this class not supported by {Wx::BookCtrlBase} is the support for disabling some of the pages, see {Wx::Toolbook#enable_page}.
|
26
|
+
# === Styles
|
27
|
+
#
|
28
|
+
# This class supports the following styles:
|
29
|
+
#
|
30
|
+
# - {Wx::TBK_BUTTONBAR}: Use {Wx::ButtonToolBar}-based implementation under macOS (ignored under other platforms).
|
31
|
+
# - {Wx::TBK_HORZ_LAYOUT}: Shows the text and the icons alongside, not vertically stacked (only implement under Windows and GTK 2 platforms as it relies on {Wx::TB_HORZ_LAYOUT} flag support).
|
32
|
+
#
|
33
|
+
# The common {Wx::BookCtrl} styles described in the wxBookCtrl Overview are also supported.
|
34
|
+
# === Events emitted by this class
|
35
|
+
#
|
36
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::BookCtrlEvent} events.
|
37
|
+
# Event handler methods for events emitted by this class:
|
38
|
+
# - {Wx::EvtHandler#evt_toolbook_page_changed}(id, meth = nil, &block): The page selection was changed. Processes a {Wx::EVT_TOOLBOOK_PAGE_CHANGED} event.
|
39
|
+
# - {Wx::EvtHandler#evt_toolbook_page_changing}(id, meth = nil, &block): The page selection is about to be changed. Processes a {Wx::EVT_TOOLBOOK_PAGE_CHANGING} event. This event can be vetoed (using {Wx::NotifyEvent#veto}).
|
40
|
+
#
|
41
|
+
# ===
|
42
|
+
#
|
43
|
+
# Category: Book Controls
|
44
|
+
# @see wxBookCtrl Overview
|
45
|
+
# @see Wx::BookCtrlBase
|
46
|
+
# @see Wx::Notebook
|
47
|
+
# @see Notebook Sample
|
48
|
+
#
|
49
|
+
#
|
50
|
+
class Toolbook < BookCtrlBase
|
51
|
+
|
52
|
+
# @overload initialize()
|
53
|
+
# Constructs a choicebook control.
|
54
|
+
# @return [Toolbook]
|
55
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=Wx::EMPTY_STRING)
|
56
|
+
# Constructs a choicebook control.
|
57
|
+
# @param parent [Wx::Window]
|
58
|
+
# @param id [Integer]
|
59
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
60
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
61
|
+
# @param style [Integer]
|
62
|
+
# @param name [String]
|
63
|
+
# @return [Toolbook]
|
64
|
+
def initialize(*args) end
|
65
|
+
|
66
|
+
# Create the tool book control that has already been constructed with the default constructor.
|
67
|
+
# @param parent [Wx::Window]
|
68
|
+
# @param id [Integer]
|
69
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
70
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
71
|
+
# @param style [Integer]
|
72
|
+
# @param name [String]
|
73
|
+
# @return [true,false]
|
74
|
+
def create(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=Wx::EMPTY_STRING) end
|
75
|
+
|
76
|
+
# Returns the {Wx::ToolBarBase} associated with the control.
|
77
|
+
# @return [Wx::ToolBarBase]
|
78
|
+
def get_tool_bar; end
|
79
|
+
alias_method :tool_bar, :get_tool_bar
|
80
|
+
|
81
|
+
# @overload enable_page(page, enable)
|
82
|
+
# Enables or disables the specified page.
|
83
|
+
# Using this function, a page can be disabled when it can't be used, while still remaining present to let the users know that more functionality is available, even if currently inaccessible.
|
84
|
+
# Icons for disabled pages are created by {Wx::Bitmap#convert_to_disabled}.
|
85
|
+
#
|
86
|
+
# true if successful, false otherwise (currently only if the index is invalid).
|
87
|
+
# @param page [Integer] The index of the page.
|
88
|
+
# @param enable [true,false] true to enable the page and false to disable it.
|
89
|
+
# @return [true,false]
|
90
|
+
# @overload enable_page(page, enable)
|
91
|
+
# Enables or disables the specified page.
|
92
|
+
# This is similar to the overload above, but finds the index of the specified page.
|
93
|
+
#
|
94
|
+
# true if successful, false otherwise, e.g. if page is not one of the pages of this control.
|
95
|
+
# @param page [Wx::Window] Pointer of a page windows inside the book control.
|
96
|
+
# @param enable [true,false] true to enable the page and false to disable it.
|
97
|
+
# @return [true,false]
|
98
|
+
def enable_page(*args) end
|
99
|
+
|
100
|
+
end # Toolbook
|
101
|
+
|
102
|
+
|
103
|
+
end
|
@@ -0,0 +1,462 @@
|
|
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
|
+
#
|
10
|
+
DEFAULT_FRAME_STYLE = 541072960
|
11
|
+
|
12
|
+
# Requests user attention,.
|
13
|
+
#
|
14
|
+
USER_ATTENTION_INFO = 1
|
15
|
+
|
16
|
+
# Results in a more drastic action.
|
17
|
+
#
|
18
|
+
USER_ATTENTION_ERROR = 2
|
19
|
+
|
20
|
+
#
|
21
|
+
#
|
22
|
+
#
|
23
|
+
#
|
24
|
+
class ContentProtection < Wx::Enum
|
25
|
+
|
26
|
+
# Window contents are visible in screen captures.
|
27
|
+
#
|
28
|
+
CONTENT_PROTECTION_NONE = Wx::ContentProtection.new(0)
|
29
|
+
|
30
|
+
# Window contents are not visible in screen captures.
|
31
|
+
#
|
32
|
+
CONTENT_PROTECTION_ENABLED = Wx::ContentProtection.new(1)
|
33
|
+
|
34
|
+
end # ContentProtection
|
35
|
+
|
36
|
+
# Don't display the menu bar.
|
37
|
+
#
|
38
|
+
FULLSCREEN_NOMENUBAR = 1
|
39
|
+
|
40
|
+
# Don't display toolbar bars.
|
41
|
+
#
|
42
|
+
FULLSCREEN_NOTOOLBAR = 2
|
43
|
+
|
44
|
+
# Don't display the status bar.
|
45
|
+
#
|
46
|
+
FULLSCREEN_NOSTATUSBAR = 4
|
47
|
+
|
48
|
+
# Don't display any border.
|
49
|
+
#
|
50
|
+
FULLSCREEN_NOBORDER = 8
|
51
|
+
|
52
|
+
# Don't display a caption.
|
53
|
+
#
|
54
|
+
FULLSCREEN_NOCAPTION = 16
|
55
|
+
|
56
|
+
# Combination of all above, will display the least possible.
|
57
|
+
#
|
58
|
+
FULLSCREEN_ALL = 31
|
59
|
+
|
60
|
+
# {Wx::TopLevelWindow} is a common base class for {Wx::Dialog} and {Wx::Frame}.
|
61
|
+
# It is an abstract base class meaning that you never work with objects of this class directly, but all of its methods are also applicable for the two classes above.
|
62
|
+
# Note that the instances of {Wx::TopLevelWindow} are managed by wxWidgets in the internal top level window list.
|
63
|
+
# === Events emitted by this class
|
64
|
+
#
|
65
|
+
# Event handler methods for events emitted by this class:
|
66
|
+
#
|
67
|
+
# - {Wx::EvtHandler#EVT_MAXIMIZE}(meth = nil, &block): Process a {Wx::EVT_MAXIMIZE} event. See {Wx::MaximizeEvent}.
|
68
|
+
# - {Wx::EvtHandler#evt_move}(meth = nil, &block): Process a {Wx::EVT_MOVE} event, which is generated when a window is moved. See {Wx::MoveEvent}.
|
69
|
+
# - {Wx::EvtHandler#evt_move_start}(meth = nil, &block): Process a {Wx::EVT_MOVE_START} event, which is generated when the user starts to move or size a window. {Wx::MSW} only. See {Wx::MoveEvent}.
|
70
|
+
# - {Wx::EvtHandler#evt_move_end}(meth = nil, &block): Process a {Wx::EVT_MOVE_END} event, which is generated when the user stops moving or sizing a window. {Wx::MSW} only. See {Wx::MoveEvent}.
|
71
|
+
# - {Wx::EvtHandler#evt_show}(meth = nil, &block): Process a {Wx::EVT_SHOW} event. See {Wx::ShowEvent}.
|
72
|
+
# - {Wx::EvtHandler#EVT_FULLSCREEN}(meth = nil, &block): Process a {Wx::EVT_FULLSCREEN} event. See {Wx::FullScreenEvent}.
|
73
|
+
#
|
74
|
+
# ===
|
75
|
+
#
|
76
|
+
# Category: Managed Windows
|
77
|
+
# @see Wx::Dialog
|
78
|
+
# @see Wx::Frame
|
79
|
+
#
|
80
|
+
#
|
81
|
+
class TopLevelWindow < NonOwnedWindow
|
82
|
+
|
83
|
+
# @overload initialize()
|
84
|
+
# Default ctor.
|
85
|
+
# @return [TopLevelWindow]
|
86
|
+
# @overload initialize(parent, id, title, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::DEFAULT_FRAME_STYLE, name=Wx::FRAME_NAME_STR)
|
87
|
+
# Constructor creating the top level window.
|
88
|
+
# @param parent [Wx::Window]
|
89
|
+
# @param id [Integer]
|
90
|
+
# @param title [String]
|
91
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
92
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
93
|
+
# @param style [Integer]
|
94
|
+
# @param name [String]
|
95
|
+
# @return [TopLevelWindow]
|
96
|
+
def initialize(*args) end
|
97
|
+
|
98
|
+
# Creates the top level window.
|
99
|
+
# @param parent [Wx::Window]
|
100
|
+
# @param id [Integer]
|
101
|
+
# @param title [String]
|
102
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
103
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
104
|
+
# @param style [Integer]
|
105
|
+
# @param name [String]
|
106
|
+
# @return [true,false]
|
107
|
+
def create(parent, id, title, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::DEFAULT_FRAME_STYLE, name=Wx::FRAME_NAME_STR) end
|
108
|
+
|
109
|
+
# Returns true if the platform supports making the window translucent.
|
110
|
+
#
|
111
|
+
# @see Wx::TopLevelWindow#set_transparent
|
112
|
+
# @return [true,false]
|
113
|
+
def can_set_transparent; end
|
114
|
+
alias_method :can_set_transparent?, :can_set_transparent
|
115
|
+
|
116
|
+
# A synonym for {Wx::TopLevelWindow#centre_on_screen}.
|
117
|
+
# @param direction [Integer]
|
118
|
+
# @return [void]
|
119
|
+
def center_on_screen(direction=Wx::BOTH) end
|
120
|
+
|
121
|
+
# Centres the window on screen.
|
122
|
+
#
|
123
|
+
# @see Wx::Window#centre_on_parent
|
124
|
+
# @param direction [Integer] Specifies the direction for the centering. May be {Wx::Orientation::HORIZONTAL}, {Wx::Orientation::VERTICAL} or {Wx::Orientation::BOTH}.
|
125
|
+
# @return [void]
|
126
|
+
def centre_on_screen(direction=Wx::BOTH) end
|
127
|
+
|
128
|
+
# Enables or disables the Close button (most often in the right upper corner of a dialog) and the Close entry of the system menu (most often in the left upper corner of the dialog).
|
129
|
+
# Returns true if operation was successful. This may be wrong on X11 (including GTK+) where the window manager may not support this operation and there is no way to find out.
|
130
|
+
# @param enable [true,false]
|
131
|
+
# @return [true,false]
|
132
|
+
def enable_close_button(enable=true) end
|
133
|
+
|
134
|
+
# Enables or disables the Maximize button (in the right or left upper corner of a frame or dialog).
|
135
|
+
# Currently only implemented for {Wx::MSW} and {Wx::OSX}.
|
136
|
+
# The window style must contain {Wx::MAXIMIZE_BOX}.
|
137
|
+
# Returns true if operation was successful. Note that a successful operation does not change the window style flags.
|
138
|
+
# @param enable [true,false]
|
139
|
+
# @return [true,false]
|
140
|
+
def enable_maximize_button(enable=true) end
|
141
|
+
|
142
|
+
# Enables or disables the Minimize button (in the right or left upper corner of a frame or dialog).
|
143
|
+
# Currently only implemented for {Wx::MSW} and {Wx::OSX}.
|
144
|
+
# The window style must contain {Wx::MINIMIZE_BOX}.
|
145
|
+
# Note that in {Wx::MSW} a successful operation will change the window style flags.
|
146
|
+
# Returns true if operation was successful. Note that a successful operation does not change the window style flags.
|
147
|
+
# @param enable [true,false]
|
148
|
+
# @return [true,false]
|
149
|
+
def enable_minimize_button(enable=true) end
|
150
|
+
|
151
|
+
# Returns a pointer to the button which is the default for this window, or <code></code> NULL.
|
152
|
+
# The default button is the one activated by pressing the Enter key.
|
153
|
+
# @return [Wx::Window]
|
154
|
+
def get_default_item; end
|
155
|
+
alias_method :default_item, :get_default_item
|
156
|
+
|
157
|
+
# Returns the standard icon of the window.
|
158
|
+
# The icon will be invalid if it hadn't been previously set by {Wx::TopLevelWindow#set_icon}.
|
159
|
+
# @see Wx::TopLevelWindow#get_icons
|
160
|
+
# @return [Wx::Icon]
|
161
|
+
def get_icon; end
|
162
|
+
alias_method :icon, :get_icon
|
163
|
+
|
164
|
+
# Returns all icons associated with the window, there will be none of them if neither {Wx::TopLevelWindow#set_icon} nor {Wx::TopLevelWindow#set_icons} had been called before.
|
165
|
+
# Use {Wx::TopLevelWindow#get_icon} to get the main icon of the window.
|
166
|
+
# @see Wx::IconBundle
|
167
|
+
# @return [void]
|
168
|
+
def get_icons; end
|
169
|
+
alias_method :icons, :get_icons
|
170
|
+
|
171
|
+
# Gets a string containing the window title.
|
172
|
+
#
|
173
|
+
# @see Wx::TopLevelWindow#set_title
|
174
|
+
# @return [String]
|
175
|
+
def get_title; end
|
176
|
+
alias_method :title, :get_title
|
177
|
+
|
178
|
+
# Iconizes or restores the window.
|
179
|
+
# Note that in {Wx::GTK} the change to the window state is not immediate, i.e. {Wx::TopLevelWindow#is_iconized} will typically return false right after a call to {Wx::TopLevelWindow#iconize} and its return value will only change after the control flow returns to the event loop and the notification about the window being really iconized is received.
|
180
|
+
# @see Wx::TopLevelWindow#is_iconized
|
181
|
+
# @see Wx::TopLevelWindow#restore()
|
182
|
+
# @see Wx::IconizeEvent.
|
183
|
+
# @param iconize [true,false] If true, iconizes the window; if false, shows and restores it.
|
184
|
+
# @return [void]
|
185
|
+
def iconize(iconize=true) end
|
186
|
+
|
187
|
+
# Returns true if this window is currently active, i.e. if the user is currently working with it.
|
188
|
+
# @return [true,false]
|
189
|
+
def is_active; end
|
190
|
+
alias_method :active?, :is_active
|
191
|
+
|
192
|
+
# Returns true if this window is expected to be always maximized, either due to platform policy or due to local policy regarding particular class.
|
193
|
+
# @return [true,false]
|
194
|
+
def is_always_maximized; end
|
195
|
+
alias_method :always_maximized?, :is_always_maximized
|
196
|
+
|
197
|
+
# Returns true if the window is in fullscreen mode.
|
198
|
+
#
|
199
|
+
# @see Wx::TopLevelWindow#show_full_screen
|
200
|
+
# @return [true,false]
|
201
|
+
def is_full_screen; end
|
202
|
+
alias_method :full_screen?, :is_full_screen
|
203
|
+
|
204
|
+
# Returns true if the window is iconized.
|
205
|
+
# @return [true,false]
|
206
|
+
def is_iconized; end
|
207
|
+
alias_method :iconized?, :is_iconized
|
208
|
+
|
209
|
+
# Returns true if the window is maximized.
|
210
|
+
# @return [true,false]
|
211
|
+
def is_maximized; end
|
212
|
+
alias_method :maximized?, :is_maximized
|
213
|
+
|
214
|
+
# This method is specific to {Wx::Universal} port.
|
215
|
+
# Returns true if this window is using native decorations, false if we draw them ourselves.
|
216
|
+
# @see Wx::TopLevelWindow#use_native_decorations
|
217
|
+
# @see Wx::TopLevelWindow#use_native_decorations_by_default
|
218
|
+
# @return [true,false]
|
219
|
+
def is_using_native_decorations; end
|
220
|
+
alias_method :using_native_decorations?, :is_using_native_decorations
|
221
|
+
|
222
|
+
# Lays out the children using the window sizer or resizes the only child of the window to cover its entire area.
|
223
|
+
# This class overrides the base class {Wx::TopLevelWindow#layout} method to check if this window contains exactly one child which is commonly the case, with {Wx::Panel} being often created as the only child of {Wx::TopLevelWindow} and, if this is the case, resizes this child window to cover the entire client area.
|
224
|
+
# Note that if you associate a sizer with this window, the sizer takes precedence and the only-child-resizing is only used as fallback.
|
225
|
+
# false if nothing was done because the window has neither a sizer nor a single child, true otherwise.
|
226
|
+
# @return [true,false]
|
227
|
+
def layout; end
|
228
|
+
|
229
|
+
# Maximizes or restores the window.
|
230
|
+
# Note that, just as with {Wx::TopLevelWindow#iconize}, the change to the window state is not immediate in at least {Wx::GTK} port.
|
231
|
+
# @see Wx::TopLevelWindow#restore
|
232
|
+
# @see Wx::TopLevelWindow#iconize
|
233
|
+
# @param maximize [true,false] If true, maximizes the window, otherwise it restores it.
|
234
|
+
# @return [void]
|
235
|
+
def maximize(maximize=true) end
|
236
|
+
|
237
|
+
# MSW-specific function for accessing the system menu.
|
238
|
+
# Returns a {Wx::Menu} pointer representing the system menu of the window under MSW. The returned {Wx::Menu} may be used, if non-NULL, to add extra items to the system menu. The usual {Wx::EVT_MENU} events (that can be processed using EVT_MENU event table macro) will then be generated for them. All the other {Wx::Menu} methods may be used as well but notice that they won't allow you to access any standard system menu items (e.g. they can't be deleted or modified in any way currently).
|
239
|
+
# Notice that because of the native system limitations the identifiers of the items added to the system menu must be multiples of 16, otherwise no events will be generated for them.
|
240
|
+
# The returned pointer must not be deleted, it is owned by the window and will be only deleted when the window itself is destroyed.
|
241
|
+
# This function is not available in the other ports by design, any occurrences of it in the portable code must be guarded by
|
242
|
+
#
|
243
|
+
# #ifdef __WXMSW__
|
244
|
+
# preprocessor guards.
|
245
|
+
# @return [Wx::Menu]
|
246
|
+
def msw_get_system_menu; end
|
247
|
+
|
248
|
+
# Use a system-dependent way to attract users attention to the window when it is in background.
|
249
|
+
# flags may have the value of either {Wx::USER_ATTENTION_INFO} (default) or {Wx::USER_ATTENTION_ERROR} which results in a more drastic action. When in doubt, use the default value.
|
250
|
+
# This function should normally be only used when the application is not already in foreground.
|
251
|
+
#
|
252
|
+
# This function is currently implemented for Win32 where it flashes the window icon in the taskbar, and for {Wx::GTK} with task bars supporting it.
|
253
|
+
# @param flags [Integer]
|
254
|
+
# @return [void]
|
255
|
+
def request_user_attention(flags=Wx::USER_ATTENTION_INFO) end
|
256
|
+
|
257
|
+
# Restore a previously iconized or maximized window to its normal state.
|
258
|
+
# In {Wx::GTK} this method currently doesn't return the maximized window to its normal state and you must use {Wx::TopLevelWindow#maximize} with false argument explicitly for this. In the other ports, it both unmaximizes the maximized windows and uniconizes the iconized ones.
|
259
|
+
# @see Wx::TopLevelWindow#iconize
|
260
|
+
# @see Wx::TopLevelWindow#maximize
|
261
|
+
# @return [void]
|
262
|
+
def restore; end
|
263
|
+
|
264
|
+
# Changes the default item for the panel, usually win is a button.
|
265
|
+
#
|
266
|
+
# @see Wx::TopLevelWindow#get_default_item
|
267
|
+
# @param win [Wx::Window]
|
268
|
+
# @return [Wx::Window]
|
269
|
+
def set_default_item(win) end
|
270
|
+
alias_method :default_item=, :set_default_item
|
271
|
+
|
272
|
+
# @param win [Wx::Window]
|
273
|
+
# @return [Wx::Window]
|
274
|
+
def set_tmp_default_item(win) end
|
275
|
+
alias_method :tmp_default_item=, :set_tmp_default_item
|
276
|
+
|
277
|
+
# @return [Wx::Window]
|
278
|
+
def get_tmp_default_item; end
|
279
|
+
alias_method :tmp_default_item, :get_tmp_default_item
|
280
|
+
|
281
|
+
# Sets the icon for this window.
|
282
|
+
# The window takes a 'copy' of icon, but since it uses reference counting, the copy is very quick. It is safe to delete icon after calling this function.
|
283
|
+
#
|
284
|
+
# In {Wx::MSW}, icon must be either 16x16 or 32x32 icon.
|
285
|
+
# @see Wx::Icon
|
286
|
+
# @see Wx::TopLevelWindow#set_icons
|
287
|
+
# @param icon [Wx::Icon] The {Wx::Icon} to associate with this window.
|
288
|
+
# @return [void]
|
289
|
+
def set_icon(icon) end
|
290
|
+
alias_method :icon=, :set_icon
|
291
|
+
|
292
|
+
# Sets several icons of different sizes for this window: this allows using different icons for different situations (e.g.
|
293
|
+
# task switching bar, taskbar, window title bar) instead of scaling, with possibly bad looking results, the only icon set by {Wx::TopLevelWindow#set_icon}.
|
294
|
+
#
|
295
|
+
# In {Wx::MSW}, icons must contain a 16x16 or 32x32 icon, preferably both.
|
296
|
+
# @see Wx::IconBundle
|
297
|
+
# @param icons [Wx::IconBundle] The icons to associate with this window.
|
298
|
+
# @return [void]
|
299
|
+
def set_icons(icons) end
|
300
|
+
alias_method :icons=, :set_icons
|
301
|
+
|
302
|
+
# A simpler interface for setting the size hints than {Wx::TopLevelWindow#set_size_hints}.
|
303
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
304
|
+
# @return [void]
|
305
|
+
def set_max_size(size) end
|
306
|
+
alias_method :max_size=, :set_max_size
|
307
|
+
|
308
|
+
# A simpler interface for setting the size hints than {Wx::TopLevelWindow#set_size_hints}.
|
309
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
310
|
+
# @return [void]
|
311
|
+
def set_min_size(size) end
|
312
|
+
alias_method :min_size=, :set_min_size
|
313
|
+
|
314
|
+
# @overload set_size_hints(minW, minH, maxW=-1, maxH=-1, incW=-1, incH=-1)
|
315
|
+
# Allows specification of minimum and maximum window sizes, and window size increments.
|
316
|
+
# If a pair of values is not set (or set to -1), no constraints will be used.
|
317
|
+
#
|
318
|
+
# Notice that this function not only prevents the user from resizing the window outside the given bounds but it also prevents the program itself from doing it using {Wx::Window#set_size}.
|
319
|
+
# @param minW [Integer] The minimum width.
|
320
|
+
# @param minH [Integer] The minimum height.
|
321
|
+
# @param maxW [Integer] The maximum width.
|
322
|
+
# @param maxH [Integer] The maximum height.
|
323
|
+
# @param incW [Integer] Specifies the increment for sizing the width (GTK/Motif/Xt only).
|
324
|
+
# @param incH [Integer] Specifies the increment for sizing the height (GTK/Motif/Xt only).
|
325
|
+
# @return [void]
|
326
|
+
# @overload set_size_hints(minSize, maxSize=Wx::DEFAULT_SIZE, incSize=Wx::DEFAULT_SIZE)
|
327
|
+
# Allows specification of minimum and maximum window sizes, and window size increments.
|
328
|
+
# If a pair of values is not set (or set to -1), no constraints will be used.
|
329
|
+
#
|
330
|
+
# Notice that this function not only prevents the user from resizing the window outside the given bounds but it also prevents the program itself from doing it using {Wx::Window#set_size}.
|
331
|
+
# @param minSize [Array(Integer, Integer), Wx::Size] The minimum size of the window.
|
332
|
+
# @param maxSize [Array(Integer, Integer), Wx::Size] The maximum size of the window.
|
333
|
+
# @param incSize [Array(Integer, Integer), Wx::Size] Increment size (only taken into account under X11-based ports such as {Wx::GTK}/{Wx::Motif}/{Wx::X11}).
|
334
|
+
# @return [void]
|
335
|
+
def set_size_hints(*args) end
|
336
|
+
alias_method :size_hints=, :set_size_hints
|
337
|
+
|
338
|
+
# Sets the window title.
|
339
|
+
#
|
340
|
+
# @see Wx::TopLevelWindow#get_title
|
341
|
+
# @param title [String] The window title.
|
342
|
+
# @return [void]
|
343
|
+
def set_title(title) end
|
344
|
+
alias_method :title=, :set_title
|
345
|
+
|
346
|
+
# If the platform supports it will set the window to be translucent.
|
347
|
+
# Note that in {Wx::GTK} this function must be called before the window is shown the first time it's called (but it can be called again after showing the window too).
|
348
|
+
# See the shaped sample for an example of using this function.
|
349
|
+
# @param alpha [Integer] Determines how opaque or transparent the window will be, if the platform supports the operation. A value of 0 sets the window to be fully transparent, and a value of 255 sets the window to be fully opaque.
|
350
|
+
# @return [true,false]
|
351
|
+
def set_transparent(alpha) end
|
352
|
+
alias_method :transparent=, :set_transparent
|
353
|
+
|
354
|
+
# This virtual function is not meant to be called directly but can be overridden to return false (it returns true by default) to allow the application to close even if this, presumably not very important, window is still opened.
|
355
|
+
# By default, the application stays alive as long as there are any open top level windows.
|
356
|
+
# @return [true,false]
|
357
|
+
def should_prevent_app_exit; end
|
358
|
+
|
359
|
+
# This function sets the {Wx::TopLevelWindow}'s modified state on macOS, which currently draws a black dot in the {Wx::TopLevelWindow}'s close button.
|
360
|
+
# On other platforms, this method does nothing.
|
361
|
+
# @see Wx::TopLevelWindow#osx_is_modified
|
362
|
+
# @param modified [true,false]
|
363
|
+
# @return [void]
|
364
|
+
def osx_set_modified(modified) end
|
365
|
+
|
366
|
+
# Returns the current modified state of the {Wx::TopLevelWindow} on macOS.
|
367
|
+
# On other platforms, this method does nothing.
|
368
|
+
# @see Wx::TopLevelWindow#osx_set_modified
|
369
|
+
# @return [true,false]
|
370
|
+
def osx_is_modified; end
|
371
|
+
|
372
|
+
# Sets the file name represented by this {Wx::TopLevelWindow}.
|
373
|
+
# Under macOS, this file name is used to set the "proxy icon", which appears in the window title bar near its title, corresponding to this file name. Under other platforms it currently doesn't do anything but it is harmless to call it now and it might be implemented to do something useful in the future so you're encouraged to use it for any window representing a file-based document.
|
374
|
+
# @param filename [String]
|
375
|
+
# @return [void]
|
376
|
+
def set_represented_filename(filename) end
|
377
|
+
alias_method :represented_filename=, :set_represented_filename
|
378
|
+
|
379
|
+
# Show the {Wx::TopLevelWindow}, but do not give it keyboard focus.
|
380
|
+
# This can be used for pop up or notification windows that should not steal the current focus.
|
381
|
+
# @return [void]
|
382
|
+
def show_without_activating; end
|
383
|
+
|
384
|
+
# Enables the zoom button to toggle full screen mode.
|
385
|
+
# A {Wx::FullScreenEvent} is generated when the users enters or exits full screen via the enter/exit full screen button.
|
386
|
+
#
|
387
|
+
# true if the button behaviour has been changed, false if running under another OS.
|
388
|
+
#
|
389
|
+
# Having the button is also required to let {Wx::TopLevelWindow#show_full_screen} make use of the full screen API: a full screen window gets its own space and entering and exiting the mode is animated. If the button is not present the old way of switching to full screen is used. Only {Wx::FULLSCREEN_NOTOOLBAR} and {Wx::FULLSCREEN_NOMENUBAR} will be used when using the fullscreen API (other values are ignored).
|
390
|
+
#
|
391
|
+
# Availability: only available for the {Wx::OSX/Cocoa} port. {Wx::osx}
|
392
|
+
# @see Wx::TopLevelWindow#show_full_screen
|
393
|
+
# @see Wx::FullScreenEvent
|
394
|
+
# @param enable [true,false] If true (default) make the zoom button toggle full screen; if false the button does only toggle zoom.
|
395
|
+
# @param style [Integer] This parameter sets which elements will be hidden when the user presses the full screen button. See {Wx::TopLevelWindow#show_full_screen} for possible values. It is available since wxWidgets 3.1.6.
|
396
|
+
# @return [true,false]
|
397
|
+
def enable_full_screen_view(enable=true, style=Wx::FULLSCREEN_ALL) end
|
398
|
+
|
399
|
+
# Depending on the value of show parameter the window is either shown full screen or restored to its normal state.
|
400
|
+
# style is a bit list containing some or all of the following values, which indicate what elements of the window to hide in full-screen mode:
|
401
|
+
#
|
402
|
+
# - {Wx::FULLSCREEN_NOMENUBAR} - {Wx::FULLSCREEN_NOTOOLBAR} - {Wx::FULLSCREEN_NOSTATUSBAR} - {Wx::FULLSCREEN_NOBORDER} - {Wx::FULLSCREEN_NOCAPTION} - {Wx::FULLSCREEN_ALL} (all of the above)
|
403
|
+
#
|
404
|
+
# This function has not been tested with MDI frames.
|
405
|
+
# Showing a window full screen also actually {Wx::TopLevelWindow#show}s the window if it isn't shown.
|
406
|
+
# @see Wx::TopLevelWindow#enable_full_screen_view
|
407
|
+
# @see Wx::TopLevelWindow#is_full_screen
|
408
|
+
# @param show [true,false]
|
409
|
+
# @param style [Integer]
|
410
|
+
# @return [true,false]
|
411
|
+
def show_full_screen(show, style=Wx::FULLSCREEN_ALL) end
|
412
|
+
|
413
|
+
# Get the current content protection of the window.
|
414
|
+
#
|
415
|
+
# @see Wx::TopLevelWindow#set_content_protection
|
416
|
+
# @return [ContentProtection]
|
417
|
+
def get_content_protection; end
|
418
|
+
alias_method :content_protection, :get_content_protection
|
419
|
+
|
420
|
+
# Set content protection for the window.
|
421
|
+
# When content protection is enabled contents of this window will not be included in screen captures.
|
422
|
+
# Obviously this can't provide absolute security as there might be workarounds and tools that bypass this protection. Additionally a screen could always be photographed.
|
423
|
+
# true if the content protection was changed, false if running under an unsupported OS.
|
424
|
+
#
|
425
|
+
# Windows 7 or newer is required but any macOS version is supported.
|
426
|
+
#
|
427
|
+
# Availability: only available for the {Wx::MSW}, {Wx::OSX/Cocoa} ports. {Wx::msw},{Wx::osx}
|
428
|
+
# @see Wx::TopLevelWindow#get_content_protection
|
429
|
+
# @param contentProtection [ContentProtection]
|
430
|
+
# @return [true,false]
|
431
|
+
def set_content_protection(contentProtection) end
|
432
|
+
alias_method :content_protection=, :set_content_protection
|
433
|
+
|
434
|
+
# This method is specific to {Wx::Universal} port.
|
435
|
+
# Use native or custom-drawn decorations for this window only. Notice that to have any effect this method must be called before really creating the window, i.e. two step creation must be used:
|
436
|
+
#
|
437
|
+
# MyFrame *frame = new MyFrame; // use default ctor
|
438
|
+
# frame->UseNativeDecorations(false); // change from default "true"
|
439
|
+
# frame->Create(parent, title, ...); // really create the frame
|
440
|
+
# @see Wx::TopLevelWindow#use_native_decorations_by_default
|
441
|
+
# @see Wx::TopLevelWindow#is_using_native_decorations
|
442
|
+
# @param native [true,false]
|
443
|
+
# @return [void]
|
444
|
+
def use_native_decorations(native=true) end
|
445
|
+
|
446
|
+
# This method is specific to {Wx::Universal} port.
|
447
|
+
# Top level windows in {Wx::Universal} port can use either system-provided window decorations (i.e. title bar and various icons, buttons and menus in it) or draw the decorations themselves. By default the system decorations are used if they are available, but this method can be called with native set to false to change this for all windows created after this point.
|
448
|
+
# Also note that if WXDECOR environment variable is set, then custom decorations are used by default and so it may make sense to call this method with default argument if the application can't use custom decorations at all for some reason.
|
449
|
+
# @see Wx::TopLevelWindow#use_native_decorations
|
450
|
+
# @param native [true,false]
|
451
|
+
# @return [void]
|
452
|
+
def use_native_decorations_by_default(native=true) end
|
453
|
+
|
454
|
+
# Get the default size for a new top level window.
|
455
|
+
# This is used internally by wxWidgets on some platforms to determine the default size for a window created using {Wx::DEFAULT_SIZE} so it is not necessary to use it when creating a {Wx::TopLevelWindow}, however it may be useful if a rough estimation of the window size is needed for some other reason.
|
456
|
+
# @return [Wx::Size]
|
457
|
+
def self.get_default_size; end
|
458
|
+
|
459
|
+
end # TopLevelWindow
|
460
|
+
|
461
|
+
|
462
|
+
end
|