wxruby3 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CREDITS.md +32 -25
- data/INSTALL.md +21 -6
- data/README.md +5 -5
- data/assets/repo-social-preview.odg +0 -0
- data/assets/repo-social-preview.xcf +0 -0
- data/ext/wxruby3/include/wxRubyApp.h +58 -45
- data/ext/wxruby3/include/wxruby-runtime.h +78 -1
- data/ext/wxruby3/swig/common.i +2 -2
- data/ext/wxruby3/swig/custom/director.swg +2 -2
- data/ext/wxruby3/swig/custom/rubyprimtypes.swg +59 -15
- data/ext/wxruby3/swig/custom/rubyrun.swg +4 -0
- data/ext/wxruby3/swig/custom/rubytracking.swg +4 -0
- data/ext/wxruby3/swig/custom/swiglabels.swg +129 -0
- data/ext/wxruby3/swig/custom/swigrun.swg +15 -0
- data/ext/wxruby3/swig/custom/typemaps/swigtypemaps.swg +20 -0
- data/ext/wxruby3/swig/mark_free_impl.i +154 -88
- data/ext/wxruby3/swig/memory_management.i +1 -0
- data/ext/wxruby3/swig/wx.i +73 -44
- data/lib/wx/aui/events/evt_list.rb +148 -0
- data/lib/wx/aui/require.rb +0 -1
- data/lib/wx/core/calendar_ctrl.rb +15 -0
- data/lib/wx/core/clipboard.rb +9 -13
- data/lib/wx/core/config.rb +1 -1
- data/lib/wx/core/events/evt_list.rb +1458 -0
- data/lib/wx/core/font/encoding.rb +113 -0
- data/lib/wx/core/generic_validator.rb +83 -31
- data/lib/wx/core/tipwindow.rb +16 -0
- data/lib/wx/core/variant.rb +6 -0
- data/lib/wx/doc/aui/auitabctrl.rb +35 -0
- data/lib/wx/doc/config.rb +2 -2
- data/lib/wx/doc/functions.rb +1 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +330 -0
- data/lib/wx/doc/gen/accelerator.rb +178 -0
- data/lib/wx/doc/gen/activity_indicator.rb +83 -0
- data/lib/wx/doc/gen/affine_matrix2d.rb +284 -0
- data/lib/wx/doc/gen/animation.rb +275 -0
- data/lib/wx/doc/gen/animation_ctrl.rb +300 -0
- data/lib/wx/doc/gen/any_button.rb +191 -0
- data/lib/wx/doc/gen/app.rb +463 -0
- data/lib/wx/doc/gen/app_traits.rb +396 -0
- data/lib/wx/doc/gen/art_provider.rb +605 -0
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +455 -0
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +54 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +847 -0
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +131 -0
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +180 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +59 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +130 -0
- data/lib/wx/doc/gen/aui/aui_notebook.rb +631 -0
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +233 -0
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +769 -0
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +352 -0
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +14 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +510 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +340 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +244 -0
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +257 -0
- data/lib/wx/doc/gen/aui/event_list.rb +179 -0
- data/lib/wx/doc/gen/banner_window.rb +124 -0
- data/lib/wx/doc/gen/bitmap.rb +731 -0
- data/lib/wx/doc/gen/bitmap_button.rb +123 -0
- data/lib/wx/doc/gen/bitmap_combo_box.rb +221 -0
- data/lib/wx/doc/gen/book_ctrl_base.rb +273 -0
- data/lib/wx/doc/gen/book_ctrl_event.rb +66 -0
- data/lib/wx/doc/gen/box_sizer.rb +85 -0
- data/lib/wx/doc/gen/brush.rb +251 -0
- data/lib/wx/doc/gen/busy_info.rb +157 -0
- data/lib/wx/doc/gen/button.rb +182 -0
- data/lib/wx/doc/gen/calculate_layout_event.rb +62 -0
- data/lib/wx/doc/gen/calendar_ctrl.rb +505 -0
- data/lib/wx/doc/gen/calendar_date_attr.rb +138 -0
- data/lib/wx/doc/gen/calendar_event.rb +147 -0
- data/lib/wx/doc/gen/caret.rb +97 -0
- data/lib/wx/doc/gen/check_box.rb +175 -0
- data/lib/wx/doc/gen/check_list_box.rb +121 -0
- data/lib/wx/doc/gen/choice.rb +175 -0
- data/lib/wx/doc/gen/choicebook.rb +116 -0
- data/lib/wx/doc/gen/client_dc.rb +43 -0
- data/lib/wx/doc/gen/clipboard.rb +144 -0
- data/lib/wx/doc/gen/collapsible_pane.rb +138 -0
- data/lib/wx/doc/gen/collapsible_pane_event.rb +46 -0
- data/lib/wx/doc/gen/colour.rb +333 -0
- data/lib/wx/doc/gen/colour_dialog.rb +190 -0
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +110 -0
- data/lib/wx/doc/gen/colour_picker_event.rb +77 -0
- data/lib/wx/doc/gen/combo_box.rb +292 -0
- data/lib/wx/doc/gen/combo_ctrl.rb +662 -0
- data/lib/wx/doc/gen/command_link_button.rb +134 -0
- data/lib/wx/doc/gen/config_base.rb +10 -0
- data/lib/wx/doc/gen/context_help_button.rb +109 -0
- data/lib/wx/doc/gen/control.rb +277 -0
- data/lib/wx/doc/gen/control_with_items.rb +253 -0
- data/lib/wx/doc/gen/core.rb +45 -0
- data/lib/wx/doc/gen/credential_entry_dialog.rb +137 -0
- data/lib/wx/doc/gen/cursor.rb +193 -0
- data/lib/wx/doc/gen/data_format.rb +85 -0
- data/lib/wx/doc/gen/data_object.rb +436 -0
- data/lib/wx/doc/gen/data_object_simple_base.rb +10 -0
- data/lib/wx/doc/gen/date_event.rb +49 -0
- data/lib/wx/doc/gen/date_picker_ctrl.rb +161 -0
- data/lib/wx/doc/gen/dc.rb +1631 -0
- data/lib/wx/doc/gen/dc_overlay.rb +102 -0
- data/lib/wx/doc/gen/defs.rb +2802 -0
- data/lib/wx/doc/gen/dial_up_event.rb +45 -0
- data/lib/wx/doc/gen/dial_up_manager.rb +149 -0
- data/lib/wx/doc/gen/dialog.rb +541 -0
- data/lib/wx/doc/gen/dir_dialog.rb +164 -0
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +90 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +125 -0
- data/lib/wx/doc/gen/display.rb +238 -0
- data/lib/wx/doc/gen/drag_drop.rb +299 -0
- data/lib/wx/doc/gen/drag_image.rb +116 -0
- data/lib/wx/doc/gen/editable_list_box.rb +109 -0
- data/lib/wx/doc/gen/event.rb +990 -0
- data/lib/wx/doc/gen/event_blocker.rb +50 -0
- data/lib/wx/doc/gen/event_filter.rb +92 -0
- data/lib/wx/doc/gen/event_list.rb +1644 -0
- data/lib/wx/doc/gen/events.rb +2809 -0
- data/lib/wx/doc/gen/evt_handler.rb +229 -0
- data/lib/wx/doc/gen/ext_help_controller.rb +109 -0
- data/lib/wx/doc/gen/file_ctrl.rb +231 -0
- data/lib/wx/doc/gen/file_ctrl_event.rb +83 -0
- data/lib/wx/doc/gen/file_dialog.rb +353 -0
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +165 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +158 -0
- data/lib/wx/doc/gen/file_dir_picker_event.rb +100 -0
- data/lib/wx/doc/gen/file_picker_ctrl.rb +132 -0
- data/lib/wx/doc/gen/file_system.rb +232 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +126 -0
- data/lib/wx/doc/gen/find_replace_data.rb +60 -0
- data/lib/wx/doc/gen/find_replace_dialog.rb +58 -0
- data/lib/wx/doc/gen/flex_grid_sizer.rb +199 -0
- data/lib/wx/doc/gen/font.rb +1379 -0
- data/lib/wx/doc/gen/font_data.rb +151 -0
- data/lib/wx/doc/gen/font_dialog.rb +88 -0
- data/lib/wx/doc/gen/font_picker_ctrl.rb +143 -0
- data/lib/wx/doc/gen/font_picker_event.rb +65 -0
- data/lib/wx/doc/gen/frame.rb +352 -0
- data/lib/wx/doc/gen/fs_file.rb +337 -0
- data/lib/wx/doc/gen/functions.rb +10 -0
- data/lib/wx/doc/gen/gauge.rb +157 -0
- data/lib/wx/doc/gen/gb_sizer_item.rb +68 -0
- data/lib/wx/doc/gen/gcdc.rb +46 -0
- data/lib/wx/doc/gen/gdi_common.rb +1271 -0
- data/lib/wx/doc/gen/gdi_object.rb +31 -0
- data/lib/wx/doc/gen/generic_about_dialog.rb +140 -0
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +223 -0
- data/lib/wx/doc/gen/geometry.rb +661 -0
- data/lib/wx/doc/gen/graphics_context.rb +1184 -0
- data/lib/wx/doc/gen/graphics_object.rb +750 -0
- data/lib/wx/doc/gen/grid/event_list.rb +191 -0
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +40 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +280 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +37 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +49 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +46 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +38 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +45 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +40 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +197 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +39 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +44 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +45 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +79 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +46 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +108 -0
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +35 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +49 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +3002 -0
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +95 -0
- data/lib/wx/doc/gen/grid/grid_event.rb +129 -0
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +104 -0
- data/lib/wx/doc/gen/grid/grid_size_event.rb +85 -0
- data/lib/wx/doc/gen/grid/grid_string_table.rb +142 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +317 -0
- data/lib/wx/doc/gen/grid/grid_table_message.rb +81 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +323 -0
- data/lib/wx/doc/gen/grid_sizer.rb +195 -0
- data/lib/wx/doc/gen/gui_event_loop.rb +159 -0
- data/lib/wx/doc/gen/h_scrolled_window.rb +562 -0
- data/lib/wx/doc/gen/header_ctrl.rb +880 -0
- data/lib/wx/doc/gen/header_ctrl_event.rb +133 -0
- data/lib/wx/doc/gen/help_controller.rb +195 -0
- data/lib/wx/doc/gen/help_provider.rb +98 -0
- data/lib/wx/doc/gen/html/event_list.rb +38 -0
- data/lib/wx/doc/gen/html/html_cell.rb +536 -0
- data/lib/wx/doc/gen/html/html_cell_event.rb +69 -0
- data/lib/wx/doc/gen/html/html_data_object.rb +42 -0
- data/lib/wx/doc/gen/html/html_easy_printing.rb +203 -0
- data/lib/wx/doc/gen/html/html_help_controller.rb +340 -0
- data/lib/wx/doc/gen/html/html_help_data.rb +159 -0
- data/lib/wx/doc/gen/html/html_help_window.rb +258 -0
- data/lib/wx/doc/gen/html/html_link_event.rb +41 -0
- data/lib/wx/doc/gen/html/html_list_box.rb +346 -0
- data/lib/wx/doc/gen/html/html_printout.rb +109 -0
- data/lib/wx/doc/gen/html/html_window.rb +461 -0
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +311 -0
- data/lib/wx/doc/gen/hyperlink_event.rb +44 -0
- data/lib/wx/doc/gen/icon.rb +267 -0
- data/lib/wx/doc/gen/icon_location.rb +40 -0
- data/lib/wx/doc/gen/image.rb +1371 -0
- data/lib/wx/doc/gen/image_list.rb +168 -0
- data/lib/wx/doc/gen/info_bar.rb +195 -0
- data/lib/wx/doc/gen/keyboard_state.rb +140 -0
- data/lib/wx/doc/gen/list_box.rb +304 -0
- data/lib/wx/doc/gen/list_ctrl.rb +1774 -0
- data/lib/wx/doc/gen/list_event.rb +208 -0
- data/lib/wx/doc/gen/listbook.rb +116 -0
- data/lib/wx/doc/gen/locale.rb +4293 -0
- data/lib/wx/doc/gen/log.rb +603 -0
- data/lib/wx/doc/gen/mdi_client_window.rb +47 -0
- data/lib/wx/doc/gen/mdi_frame.rb +324 -0
- data/lib/wx/doc/gen/media_ctrl.rb +269 -0
- data/lib/wx/doc/gen/media_event.rb +117 -0
- data/lib/wx/doc/gen/memory_dc.rb +174 -0
- data/lib/wx/doc/gen/menu.rb +509 -0
- data/lib/wx/doc/gen/menu_bar.rb +287 -0
- data/lib/wx/doc/gen/menu_item.rb +362 -0
- data/lib/wx/doc/gen/message_dialog.rb +238 -0
- data/lib/wx/doc/gen/mini_frame.rb +108 -0
- data/lib/wx/doc/gen/mirror_dc.rb +22 -0
- data/lib/wx/doc/gen/mouse_state.rb +150 -0
- data/lib/wx/doc/gen/multi_choice_dialog.rb +80 -0
- data/lib/wx/doc/gen/non_owned_window.rb +49 -0
- data/lib/wx/doc/gen/notebook.rb +278 -0
- data/lib/wx/doc/gen/num_validator.rb +37 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +93 -0
- data/lib/wx/doc/gen/object.rb +59 -0
- data/lib/wx/doc/gen/owner_drawn_combo_box.rb +395 -0
- data/lib/wx/doc/gen/paint_dc.rb +27 -0
- data/lib/wx/doc/gen/palette.rb +92 -0
- data/lib/wx/doc/gen/panel.rb +127 -0
- data/lib/wx/doc/gen/pen.rb +511 -0
- data/lib/wx/doc/gen/persistence_manager.rb +135 -0
- data/lib/wx/doc/gen/persistent_object.rb +52 -0
- data/lib/wx/doc/gen/persistent_window.rb +241 -0
- data/lib/wx/doc/gen/pg/event_list.rb +106 -0
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +54 -0
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +292 -0
- data/lib/wx/doc/gen/pg/pg_cell.rb +177 -0
- data/lib/wx/doc/gen/pg/pg_editor.rb +721 -0
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +152 -0
- data/lib/wx/doc/gen/pg/pg_properties.rb +2829 -0
- data/lib/wx/doc/gen/pg/pg_property.rb +2078 -0
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +344 -0
- data/lib/wx/doc/gen/pg/property_grid.rb +740 -0
- data/lib/wx/doc/gen/pg/property_grid_event.rb +184 -0
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +1098 -0
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +415 -0
- data/lib/wx/doc/gen/pg/property_grid_page.rb +354 -0
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +165 -0
- data/lib/wx/doc/gen/picker_base.rb +152 -0
- data/lib/wx/doc/gen/platform_info.rb +622 -0
- data/lib/wx/doc/gen/popup_window.rb +107 -0
- data/lib/wx/doc/gen/progress_dialog.rb +100 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +216 -0
- data/lib/wx/doc/gen/prt/event_list.rb +17 -0
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +44 -0
- data/lib/wx/doc/gen/prt/post_script_dc.rb +30 -0
- data/lib/wx/doc/gen/prt/preview_frame.rb +78 -0
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +151 -0
- data/lib/wx/doc/gen/prt/print_data.rb +804 -0
- data/lib/wx/doc/gen/prt/print_dialog.rb +55 -0
- data/lib/wx/doc/gen/prt/printer.rb +518 -0
- data/lib/wx/doc/gen/prt/printer_dc.rb +37 -0
- data/lib/wx/doc/gen/query_layout_info_event.rb +106 -0
- data/lib/wx/doc/gen/radio_box.rb +306 -0
- data/lib/wx/doc/gen/radio_button.rb +159 -0
- data/lib/wx/doc/gen/rbn/event_list.rb +136 -0
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +1132 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +308 -0
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +45 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +458 -0
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +63 -0
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +143 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +229 -0
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +55 -0
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +174 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +270 -0
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +45 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +360 -0
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +42 -0
- data/lib/wx/doc/gen/rearrange_ctrl.rb +78 -0
- data/lib/wx/doc/gen/rearrange_list.rb +123 -0
- data/lib/wx/doc/gen/region.rb +380 -0
- data/lib/wx/doc/gen/region_iterator.rb +76 -0
- data/lib/wx/doc/gen/rich_tool_tip.rb +154 -0
- data/lib/wx/doc/gen/rtc/event_list.rb +125 -0
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +445 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +1188 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +41 -0
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +538 -0
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +2103 -0
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +173 -0
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +181 -0
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +319 -0
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +193 -0
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +102 -0
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +337 -0
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +2922 -0
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1240 -0
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +258 -0
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +344 -0
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +227 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +59 -0
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +169 -0
- data/lib/wx/doc/gen/sash_event.rb +147 -0
- data/lib/wx/doc/gen/sash_layout_window.rb +232 -0
- data/lib/wx/doc/gen/sash_window.rb +171 -0
- data/lib/wx/doc/gen/scaled_dc.rb +10 -0
- data/lib/wx/doc/gen/screen_dc.rb +30 -0
- data/lib/wx/doc/gen/scroll_bar.rb +204 -0
- data/lib/wx/doc/gen/scrolled_canvas.rb +410 -0
- data/lib/wx/doc/gen/scrolled_control.rb +410 -0
- data/lib/wx/doc/gen/scrolled_window.rb +430 -0
- data/lib/wx/doc/gen/search_ctrl.rb +159 -0
- data/lib/wx/doc/gen/secret_store.rb +116 -0
- data/lib/wx/doc/gen/simplebook.rb +110 -0
- data/lib/wx/doc/gen/single_choice_dialog.rb +89 -0
- data/lib/wx/doc/gen/sizer.rb +945 -0
- data/lib/wx/doc/gen/sizer_item.rb +244 -0
- data/lib/wx/doc/gen/slider.rb +342 -0
- data/lib/wx/doc/gen/spin_button.rb +157 -0
- data/lib/wx/doc/gen/spin_ctrl.rb +231 -0
- data/lib/wx/doc/gen/spin_ctrl_double.rb +192 -0
- data/lib/wx/doc/gen/spin_double_event.rb +55 -0
- data/lib/wx/doc/gen/spin_event.rb +51 -0
- data/lib/wx/doc/gen/splash_screen.rb +113 -0
- data/lib/wx/doc/gen/splitter_event.rb +99 -0
- data/lib/wx/doc/gen/splitter_window.rb +498 -0
- data/lib/wx/doc/gen/static_bitmap.rb +256 -0
- data/lib/wx/doc/gen/static_box.rb +180 -0
- data/lib/wx/doc/gen/static_box_sizer.rb +85 -0
- data/lib/wx/doc/gen/static_line.rb +83 -0
- data/lib/wx/doc/gen/static_text.rb +127 -0
- data/lib/wx/doc/gen/status_bar.rb +290 -0
- data/lib/wx/doc/gen/stc/event_list.rb +221 -0
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +4474 -0
- data/lib/wx/doc/gen/stc/styled_text_event.rb +8762 -0
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +129 -0
- data/lib/wx/doc/gen/svg_file_dc.rb +164 -0
- data/lib/wx/doc/gen/system_options.rb +129 -0
- data/lib/wx/doc/gen/system_settings.rb +507 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +127 -0
- data/lib/wx/doc/gen/task_bar_icon_event.rb +88 -0
- data/lib/wx/doc/gen/text_attr.rb +756 -0
- data/lib/wx/doc/gen/text_ctrl.rb +1033 -0
- data/lib/wx/doc/gen/text_entry.rb +441 -0
- data/lib/wx/doc/gen/text_entry_dialog.rb +220 -0
- data/lib/wx/doc/gen/text_validator.rb +245 -0
- data/lib/wx/doc/gen/time_picker_ctrl.rb +128 -0
- data/lib/wx/doc/gen/timer.rb +119 -0
- data/lib/wx/doc/gen/timer_event.rb +68 -0
- data/lib/wx/doc/gen/tip_provider.rb +63 -0
- data/lib/wx/doc/gen/tip_window.rb +51 -0
- data/lib/wx/doc/gen/toggle_button.rb +182 -0
- data/lib/wx/doc/gen/tool_bar.rb +890 -0
- data/lib/wx/doc/gen/tool_tip.rb +86 -0
- data/lib/wx/doc/gen/toolbook.rb +118 -0
- data/lib/wx/doc/gen/top_level_window.rb +497 -0
- data/lib/wx/doc/gen/tree_ctrl.rb +1052 -0
- data/lib/wx/doc/gen/tree_event.rb +127 -0
- data/lib/wx/doc/gen/treebook.rb +180 -0
- data/lib/wx/doc/gen/ui_action_simulator.rb +109 -0
- data/lib/wx/doc/gen/utils.rb +273 -0
- data/lib/wx/doc/gen/v_list_box.rb +272 -0
- data/lib/wx/doc/gen/v_scrolled_canvas.rb +195 -0
- data/lib/wx/doc/gen/v_scrolled_window.rb +191 -0
- data/lib/wx/doc/gen/validator.rb +68 -0
- data/lib/wx/doc/gen/variant.rb +294 -0
- data/lib/wx/doc/gen/window.rb +2917 -0
- data/lib/wx/doc/gen/window_dc.rb +38 -0
- data/lib/wx/doc/gen/window_disabler.rb +30 -0
- data/lib/wx/doc/gen/with_images.rb +84 -0
- data/lib/wx/doc/gen/wizard.rb +257 -0
- data/lib/wx/doc/gen/wizard_event.rb +113 -0
- data/lib/wx/doc/gen/wizard_page.rb +65 -0
- data/lib/wx/doc/gen/wizard_page_simple.rb +88 -0
- data/lib/wx/doc/gen/wrap_sizer.rb +79 -0
- data/lib/wx/doc/gen/xml_node.rb +316 -0
- data/lib/wx/doc/gen/xml_resource.rb +320 -0
- data/lib/wx/doc/generic_validator.rb +5 -0
- data/lib/wx/doc/pg/pg_property.rb +5 -0
- data/lib/wx/doc/tip_window.rb +18 -6
- data/lib/wx/doc/variant.rb +30 -0
- data/lib/wx/grid/events/evt_list.rb +166 -0
- data/lib/wx/html/events/evt_list.rb +27 -0
- data/lib/wx/html/simple_html_listbox.rb +46 -33
- data/lib/wx/keyword_defs.rb +9 -0
- data/lib/wx/pg/events/evt_list.rb +73 -0
- data/lib/wx/pg/pg_property.rb +85 -52
- data/lib/wx/pg/property_grid_interface.rb +12 -2
- data/lib/wx/rbn/events/evt_list.rb +102 -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/stc/events/evt_list.rb +178 -0
- data/lib/wx/version.rb +1 -1
- data/lib/wx/wxruby/cmd/setup.rb +6 -0
- data/rakelib/configure.rb +9 -0
- data/rakelib/gem.rake +84 -66
- data/rakelib/gem.rb +4 -20
- data/rakelib/lib/config/linux.rb +1 -1
- data/rakelib/lib/config/macosx.rb +15 -1
- data/rakelib/lib/config/pkgman/linux.rb +7 -2
- data/rakelib/lib/config/unixish.rb +3 -3
- data/rakelib/lib/config.rb +19 -8
- data/rakelib/lib/core/include/swigdirector.inc +3 -3
- data/rakelib/lib/core/include/swigrubyerrors.inc +4 -8
- data/rakelib/lib/core/include/swigrubyrun.inc +20 -4
- data/rakelib/lib/core/include/swigrun.inc +189 -0
- data/rakelib/lib/core/package.rb +3 -1
- data/rakelib/lib/core/spec.rb +1 -1
- data/rakelib/lib/director/accelerator.rb +1 -1
- data/rakelib/lib/director/animation.rb +1 -0
- data/rakelib/lib/director/app_traits.rb +1 -1
- data/rakelib/lib/director/aui_manager.rb +21 -14
- data/rakelib/lib/director/aui_mdi_child_frame.rb +2 -0
- data/rakelib/lib/director/aui_mdi_parent_frame.rb +4 -0
- data/rakelib/lib/director/aui_notebook.rb +20 -3
- data/rakelib/lib/director/aui_tab_ctrl.rb +64 -106
- data/rakelib/lib/director/bitmap_combobox.rb +4 -2
- data/rakelib/lib/director/calendar_ctrl.rb +72 -14
- data/rakelib/lib/director/clipboard.rb +2 -0
- data/rakelib/lib/director/data_object.rb +15 -7
- data/rakelib/lib/director/date_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/display.rb +81 -0
- data/rakelib/lib/director/event.rb +33 -16
- data/rakelib/lib/director/event_handler.rb +27 -2
- data/rakelib/lib/director/functions.rb +9 -0
- data/rakelib/lib/director/geometry.rb +5 -0
- data/rakelib/lib/director/grid_ctrl.rb +123 -28
- data/rakelib/lib/director/help_provider.rb +1 -1
- data/rakelib/lib/director/html_listbox.rb +30 -4
- data/rakelib/lib/director/hvscrolled.rb +154 -0
- data/rakelib/lib/director/image_list.rb +1 -0
- data/rakelib/lib/director/mdi_frame.rb +4 -0
- data/rakelib/lib/director/menu.rb +56 -15
- data/rakelib/lib/director/menu_bar.rb +62 -0
- data/rakelib/lib/director/menu_item.rb +7 -1
- data/rakelib/lib/director/num_validator.rb +27 -0
- data/rakelib/lib/director/numeric_property_validator.rb +9 -0
- data/rakelib/lib/director/persistent_window.rb +16 -0
- data/rakelib/lib/director/pgproperty.rb +3 -2
- data/rakelib/lib/director/popup_window.rb +2 -0
- data/rakelib/lib/director/preview_frame.rb +29 -6
- data/rakelib/lib/director/printer.rb +59 -5
- data/rakelib/lib/director/property_grid.rb +37 -18
- data/rakelib/lib/director/property_grid_interface.rb +10 -8
- data/rakelib/lib/director/property_grid_manager.rb +99 -39
- data/rakelib/lib/director/property_grid_page.rb +60 -0
- data/rakelib/lib/director/rich_tooltip.rb +22 -0
- data/rakelib/lib/director/richtext_ctrl.rb +5 -0
- data/rakelib/lib/director/richtext_object.rb +13 -4
- data/rakelib/lib/director/richtext_style_listbox.rb +11 -2
- data/rakelib/lib/director/scrolled_t.rb +3 -0
- data/rakelib/lib/director/searchctrl.rb +1 -0
- data/rakelib/lib/director/task_bar_icon.rb +14 -8
- data/rakelib/lib/director/text_validator.rb +9 -0
- data/rakelib/lib/director/tip_window.rb +117 -6
- data/rakelib/lib/director/tool_bar.rb +6 -0
- data/rakelib/lib/director/top_level_window.rb +0 -1
- data/rakelib/lib/director/utils.rb +3 -1
- data/rakelib/lib/director/validator.rb +12 -0
- data/rakelib/lib/director/variant.rb +64 -20
- data/rakelib/lib/director/vlistbox.rb +29 -22
- data/rakelib/lib/director/window.rb +12 -2
- data/rakelib/lib/director/xml_resource.rb +6 -0
- data/rakelib/lib/generate/doc/aui_manager.yaml +1 -1
- data/rakelib/lib/generate/doc/rich_tool_tip.yaml +26 -0
- data/rakelib/lib/generate/doc.rb +12 -7
- data/rakelib/lib/generate/interface.rb +16 -1
- data/rakelib/lib/specs/interfaces.rb +6 -2
- data/rakelib/lib/swig_runner.rb +12 -12
- data/rakelib/lib/typemap/aui_tabctrl.rb +46 -0
- data/rakelib/lib/typemap/common.rb +3 -3
- data/rakelib/lib/typemap/print_page_range.rb +32 -8
- data/samples/art/wxruby-512x512.png +0 -0
- data/samples/calendar/calendar.rb +64 -1
- data/samples/dialogs/dialogs.rb +172 -0
- data/samples/dialogs/tip.xpm +157 -0
- data/samples/drawing/maths_images.rb +1 -1
- data/samples/event/event.rb +1 -1
- data/samples/printing/printing2.rb +1 -1
- data/samples/sampler.rb +26 -8
- data/samples/text/textctrl.rb +2 -2
- data/samples/treectrl/treectrl.rb +2 -2
- data/tests/lib/leaked_process_event_exception_test.rb +1 -1
- data/tests/lib/leaked_queued_event_exception_test.rb +1 -1
- data/tests/lib/wxapp_runner.rb +31 -41
- data/tests/lib/wxframe_runner.rb +23 -11
- data/tests/lib/wxrb_test.rb +58 -0
- data/tests/test_app_event_filter.rb +1 -1
- data/tests/test_app_exit_exception.rb +3 -3
- data/tests/test_app_init_exception.rb +3 -3
- data/tests/test_app_traits.rb +24 -21
- data/tests/test_art.rb +7 -7
- data/tests/test_art_provider.rb +1 -1
- data/tests/test_basic.rb +2 -2
- data/tests/test_book_controls.rb +1 -1
- data/tests/test_box_sizer.rb +1 -1
- data/tests/test_clipboard.rb +5 -5
- data/tests/test_combo_ctrl.rb +2 -2
- data/tests/test_config.rb +11 -1
- data/tests/test_dc.rb +1 -1
- data/tests/test_dialog.rb +1 -1
- data/tests/test_event_handling.rb +1 -1
- data/tests/test_events.rb +1 -1
- data/tests/test_exceptions.rb +2 -2
- data/tests/test_ext_controls.rb +10 -10
- data/tests/test_file_dialog.rb +1 -1
- data/tests/test_font.rb +1 -1
- data/tests/test_gdi_object.rb +1 -1
- data/tests/test_geometry.rb +2 -2
- data/tests/test_grid_sizer.rb +2 -2
- data/tests/test_intl.rb +1 -1
- data/tests/test_item_data.rb +12 -12
- data/tests/test_list_ctrl.rb +1 -1
- data/tests/test_log.rb +2 -2
- data/tests/test_media_ctrl.rb +1 -1
- data/tests/test_menu.rb +114 -43
- data/tests/test_proof_check.rb +1 -1
- data/tests/test_propgrid.rb +857 -0
- data/tests/test_richtext.rb +10 -24
- data/tests/test_secret_store.rb +1 -1
- data/tests/test_sizer.rb +1 -1
- data/tests/test_std_controls.rb +8 -8
- data/tests/test_styled_text_ctrl.rb +1 -1
- data/tests/test_timer.rb +1 -1
- data/tests/test_tree_ctrl.rb +1 -1
- data/tests/test_validators.rb +79 -36
- data/tests/test_variant.rb +1 -1
- data/tests/test_window.rb +11 -11
- data/tests/testapp.rb +2 -2
- data/tests/testapp_noframe.rb +2 -2
- metadata +402 -12
- data/lib/wx/aui/aui_tab_ctrl.rb +0 -18
- data/rakelib/lib/director/hvscrolled_window.rb +0 -140
|
@@ -0,0 +1,511 @@
|
|
|
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
|
+
# The possible styles for a {Wx::Pen}.
|
|
10
|
+
#
|
|
11
|
+
# Note that hatched pen styles are not supported by X11-based ports, including WXGTK.
|
|
12
|
+
#
|
|
13
|
+
class PenStyle < Wx::Enum
|
|
14
|
+
|
|
15
|
+
#
|
|
16
|
+
#
|
|
17
|
+
PENSTYLE_INVALID = Wx::PenStyle.new(-1)
|
|
18
|
+
|
|
19
|
+
# Solid style.
|
|
20
|
+
#
|
|
21
|
+
PENSTYLE_SOLID = Wx::PenStyle.new(100)
|
|
22
|
+
|
|
23
|
+
# Dotted style.
|
|
24
|
+
#
|
|
25
|
+
PENSTYLE_DOT = Wx::PenStyle.new(101)
|
|
26
|
+
|
|
27
|
+
# Long dashed style.
|
|
28
|
+
#
|
|
29
|
+
PENSTYLE_LONG_DASH = Wx::PenStyle.new(102)
|
|
30
|
+
|
|
31
|
+
# Short dashed style.
|
|
32
|
+
#
|
|
33
|
+
PENSTYLE_SHORT_DASH = Wx::PenStyle.new(103)
|
|
34
|
+
|
|
35
|
+
# Dot and dash style.
|
|
36
|
+
#
|
|
37
|
+
PENSTYLE_DOT_DASH = Wx::PenStyle.new(104)
|
|
38
|
+
|
|
39
|
+
# Use the user dashes: see {Wx::Pen#set_dashes}.
|
|
40
|
+
#
|
|
41
|
+
PENSTYLE_USER_DASH = Wx::PenStyle.new(105)
|
|
42
|
+
|
|
43
|
+
# No pen is used.
|
|
44
|
+
#
|
|
45
|
+
PENSTYLE_TRANSPARENT = Wx::PenStyle.new(106)
|
|
46
|
+
|
|
47
|
+
# Use the stipple bitmap.
|
|
48
|
+
#
|
|
49
|
+
PENSTYLE_STIPPLE = Wx::PenStyle.new(110)
|
|
50
|
+
|
|
51
|
+
# Backward diagonal hatch.
|
|
52
|
+
#
|
|
53
|
+
PENSTYLE_BDIAGONAL_HATCH = Wx::PenStyle.new(111)
|
|
54
|
+
|
|
55
|
+
# Cross-diagonal hatch.
|
|
56
|
+
#
|
|
57
|
+
PENSTYLE_CROSSDIAG_HATCH = Wx::PenStyle.new(112)
|
|
58
|
+
|
|
59
|
+
# Forward diagonal hatch.
|
|
60
|
+
#
|
|
61
|
+
PENSTYLE_FDIAGONAL_HATCH = Wx::PenStyle.new(113)
|
|
62
|
+
|
|
63
|
+
# Cross hatch.
|
|
64
|
+
#
|
|
65
|
+
PENSTYLE_CROSS_HATCH = Wx::PenStyle.new(114)
|
|
66
|
+
|
|
67
|
+
# Horizontal hatch.
|
|
68
|
+
#
|
|
69
|
+
PENSTYLE_HORIZONTAL_HATCH = Wx::PenStyle.new(115)
|
|
70
|
+
|
|
71
|
+
# Vertical hatch.
|
|
72
|
+
#
|
|
73
|
+
PENSTYLE_VERTICAL_HATCH = Wx::PenStyle.new(116)
|
|
74
|
+
|
|
75
|
+
# First of the hatch styles (inclusive).
|
|
76
|
+
#
|
|
77
|
+
PENSTYLE_FIRST_HATCH = Wx::PenStyle.new(111)
|
|
78
|
+
|
|
79
|
+
# Last of the hatch styles (inclusive).
|
|
80
|
+
#
|
|
81
|
+
PENSTYLE_LAST_HATCH = Wx::PenStyle.new(116)
|
|
82
|
+
|
|
83
|
+
end # PenStyle
|
|
84
|
+
|
|
85
|
+
# Possible values for pen quality.
|
|
86
|
+
#
|
|
87
|
+
# Pen quality is currently only used in WXMSW; the other ports ignore it and always use the same default pen quality.
|
|
88
|
+
# In WXMSW, the choice of quality affects whether "cosmetic" or "geometric" native pens are used in situations when both are usable. Notably, for dotted and dashed pens of width 1, high quality geometric pens are used by default since wxWidgets 3.1.4, while previous versions used lower quality (but much faster) cosmetic pens. If drawing performance is more important than the exact appearance of the lines drawn using this pen, low quality may be explicitly selected.
|
|
89
|
+
# See {Wx::PenInfo#quality} and {Wx::Pen#set_quality}.
|
|
90
|
+
#
|
|
91
|
+
class PenQuality < Wx::Enum
|
|
92
|
+
|
|
93
|
+
# Select the appropriate quality automatically.
|
|
94
|
+
#
|
|
95
|
+
PEN_QUALITY_DEFAULT = Wx::PenQuality.new(0)
|
|
96
|
+
|
|
97
|
+
# Less good looking but faster.
|
|
98
|
+
#
|
|
99
|
+
PEN_QUALITY_LOW = Wx::PenQuality.new(1)
|
|
100
|
+
|
|
101
|
+
# Best looking, at the expense of speed.
|
|
102
|
+
#
|
|
103
|
+
PEN_QUALITY_HIGH = Wx::PenQuality.new(2)
|
|
104
|
+
|
|
105
|
+
end # PenQuality
|
|
106
|
+
|
|
107
|
+
# The possible join values of a {Wx::Pen}.
|
|
108
|
+
#
|
|
109
|
+
# Todouse {Wx::PENJOIN_} prefix
|
|
110
|
+
#
|
|
111
|
+
class PenJoin < Wx::Enum
|
|
112
|
+
|
|
113
|
+
#
|
|
114
|
+
#
|
|
115
|
+
JOIN_INVALID = Wx::PenJoin.new(-1)
|
|
116
|
+
|
|
117
|
+
# The intersection of two lines will have a diagonal edge "cut" into it.
|
|
118
|
+
#
|
|
119
|
+
JOIN_BEVEL = Wx::PenJoin.new(120)
|
|
120
|
+
|
|
121
|
+
# The intersection of two lines will have a sharp corner.
|
|
122
|
+
#
|
|
123
|
+
JOIN_MITER = Wx::PenJoin.new(121)
|
|
124
|
+
|
|
125
|
+
# The intersection of two lines will have a rounded edge.
|
|
126
|
+
#
|
|
127
|
+
JOIN_ROUND = Wx::PenJoin.new(122)
|
|
128
|
+
|
|
129
|
+
end # PenJoin
|
|
130
|
+
|
|
131
|
+
# The possible cap values of a {Wx::Pen}.
|
|
132
|
+
#
|
|
133
|
+
# Todouse {Wx::PENCAP_} prefix
|
|
134
|
+
#
|
|
135
|
+
class PenCap < Wx::Enum
|
|
136
|
+
|
|
137
|
+
#
|
|
138
|
+
#
|
|
139
|
+
CAP_INVALID = Wx::PenCap.new(-1)
|
|
140
|
+
|
|
141
|
+
# The pen will have a rounded edge and will extend beyond the start and end of a line.
|
|
142
|
+
#
|
|
143
|
+
CAP_ROUND = Wx::PenCap.new(130)
|
|
144
|
+
|
|
145
|
+
# The pen's edge will be square and will extend beyond the start and end of a line.
|
|
146
|
+
#
|
|
147
|
+
CAP_PROJECTING = Wx::PenCap.new(131)
|
|
148
|
+
|
|
149
|
+
# The pen's edge will be square and will not extend beyond the start and end of a line.
|
|
150
|
+
#
|
|
151
|
+
CAP_BUTT = Wx::PenCap.new(132)
|
|
152
|
+
|
|
153
|
+
end # PenCap
|
|
154
|
+
|
|
155
|
+
# An empty pen.
|
|
156
|
+
#
|
|
157
|
+
NULL_PEN = nil
|
|
158
|
+
|
|
159
|
+
# A pen is a tool for drawing outlines.
|
|
160
|
+
#
|
|
161
|
+
# It is used for drawing lines and painting the outline of rectangles, ellipses, etc. It has a colour, a width and a style.
|
|
162
|
+
#
|
|
163
|
+
# <div class="wxrb-note">
|
|
164
|
+
# <b>Note:</b>
|
|
165
|
+
# <p>On a monochrome display, wxWidgets shows all non-white pens as black.
|
|
166
|
+
# </p>
|
|
167
|
+
# </div>
|
|
168
|
+
#
|
|
169
|
+
# Do not initialize objects on the stack before the program commences, since other required structures may not have been set up yet. Instead, define global pointers to objects and create them in {Wx::App#on_init} or when required.
|
|
170
|
+
# An application may wish to dynamically create pens with different characteristics, and there is the consequent danger that a large number of duplicate pens will be created. Therefore, an application may wish to get a pointer to a pen by using the global list of pens, {Wx::ThePenList}, and calling the member function Wx::PenList#find_or_create_pen. See {Wx::PenList} for more info.
|
|
171
|
+
# This class uses reference counting and copy-on-write internally so that assignments between two instances of this class are very cheap. You can therefore use actual objects instead of pointers without efficiency problems. If an instance of this class is changed, it will create its own data internally so that other instances, which previously shared the data using the reference counting, are not affected.
|
|
172
|
+
#
|
|
173
|
+
# Category: Graphics Device Interface (GDI)
|
|
174
|
+
# Predefined objects/pointers:
|
|
175
|
+
#
|
|
176
|
+
# - {Wx::NULL_PEN}
|
|
177
|
+
#
|
|
178
|
+
# - {Wx::BLACK_DASHED_PEN}
|
|
179
|
+
#
|
|
180
|
+
# - {Wx::BLACK_PEN}
|
|
181
|
+
#
|
|
182
|
+
# - {Wx::BLUE_PEN}
|
|
183
|
+
#
|
|
184
|
+
# - {Wx::CYAN_PEN}
|
|
185
|
+
#
|
|
186
|
+
# - {Wx::GREEN_PEN}
|
|
187
|
+
#
|
|
188
|
+
# - {Wx::YELLOW_PEN}
|
|
189
|
+
#
|
|
190
|
+
# - {Wx::GREY_PEN}
|
|
191
|
+
#
|
|
192
|
+
# - {Wx::LIGHT_GREY_PEN}
|
|
193
|
+
#
|
|
194
|
+
# - {Wx::MEDIUM_GREY_PEN}
|
|
195
|
+
#
|
|
196
|
+
# - {Wx::RED_PEN}
|
|
197
|
+
#
|
|
198
|
+
# - {Wx::TRANSPARENT_PEN}
|
|
199
|
+
#
|
|
200
|
+
# - {Wx::WHITE_PEN}
|
|
201
|
+
# @see Wx::PenList
|
|
202
|
+
# @see Wx::DC
|
|
203
|
+
# @see Wx::DC#set_pen
|
|
204
|
+
#
|
|
205
|
+
#
|
|
206
|
+
#
|
|
207
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
|
208
|
+
class Pen < GDIObject
|
|
209
|
+
|
|
210
|
+
# @overload set_colour(colour)
|
|
211
|
+
# The pen's colour is changed to the given colour.
|
|
212
|
+
#
|
|
213
|
+
#
|
|
214
|
+
# @see Wx::Pen#get_colour
|
|
215
|
+
# @param colour [Wx::Colour,String,Symbol]
|
|
216
|
+
# @return [void]
|
|
217
|
+
# @overload set_colour(red, green, blue)
|
|
218
|
+
# The pen's colour is changed to the given colour.
|
|
219
|
+
#
|
|
220
|
+
#
|
|
221
|
+
# @see Wx::Pen#get_colour
|
|
222
|
+
# @param red [Integer]
|
|
223
|
+
# @param green [Integer]
|
|
224
|
+
# @param blue [Integer]
|
|
225
|
+
# @return [void]
|
|
226
|
+
def set_colour(*args) end
|
|
227
|
+
alias_method :colour=, :set_colour
|
|
228
|
+
|
|
229
|
+
# @overload initialize()
|
|
230
|
+
# Default constructor.
|
|
231
|
+
#
|
|
232
|
+
# The pen will be uninitialised, and {Wx::Pen#is_ok} will return false.
|
|
233
|
+
# @return [Wx::Pen]
|
|
234
|
+
# @overload initialize(colour, width=1, style=Wx::PenStyle::PENSTYLE_SOLID)
|
|
235
|
+
# Constructs a pen from a colour object, pen width and style.
|
|
236
|
+
#
|
|
237
|
+
# <div class="wxrb-remark">
|
|
238
|
+
# <b>Remark:</b>
|
|
239
|
+
# <p>Different versions of Windows and different versions of other platforms support very different subsets of the styles above, so handle with care.
|
|
240
|
+
# </p>
|
|
241
|
+
# </div>
|
|
242
|
+
# @see Wx::Pen#set_style
|
|
243
|
+
# @see Wx::Pen#set_colour
|
|
244
|
+
# @see Wx::Pen#set_width
|
|
245
|
+
# @param colour [Wx::Colour,String,Symbol] A colour object.
|
|
246
|
+
# @param width [Integer] Pen width. Under Windows, the pen width cannot be greater than 1 if the style is {Wx::PenStyle::PENSTYLE_DOT}, {Wx::PenStyle::PENSTYLE_LONG_DASH}, {Wx::PenStyle::PENSTYLE_SHORT_DASH}, {Wx::PenStyle::PENSTYLE_DOT_DASH}, or {Wx::PenStyle::PENSTYLE_USER_DASH}.
|
|
247
|
+
# @param style [Wx::PenStyle] The style may be one of the {Wx::PenStyle} values.
|
|
248
|
+
# @return [Wx::Pen]
|
|
249
|
+
# @overload initialize(pen)
|
|
250
|
+
# Copy constructor, uses Reference Counting.
|
|
251
|
+
# @param pen [Wx::Pen] A pointer or reference to a pen to copy.
|
|
252
|
+
# @return [Wx::Pen]
|
|
253
|
+
def initialize(*args) end
|
|
254
|
+
|
|
255
|
+
# Returns the pen cap style, which may be one of {Wx::PenCap::CAP_ROUND}, {Wx::PenCap::CAP_PROJECTING} or {Wx::PenCap::CAP_BUTT}.
|
|
256
|
+
#
|
|
257
|
+
# The default is {Wx::PenCap::CAP_ROUND}.
|
|
258
|
+
# @see Wx::Pen#set_cap
|
|
259
|
+
# @return [Wx::PenCap]
|
|
260
|
+
def get_cap; end
|
|
261
|
+
alias_method :cap, :get_cap
|
|
262
|
+
|
|
263
|
+
# Returns the pen quality.
|
|
264
|
+
#
|
|
265
|
+
# The default is {Wx::PenQuality::PEN_QUALITY_DEFAULT}.
|
|
266
|
+
# @see Wx::PenQuality
|
|
267
|
+
# @see Wx::Pen#set_quality
|
|
268
|
+
# @return [Wx::PenQuality]
|
|
269
|
+
def get_quality; end
|
|
270
|
+
alias_method :quality, :get_quality
|
|
271
|
+
|
|
272
|
+
# Returns a reference to the pen colour.
|
|
273
|
+
#
|
|
274
|
+
#
|
|
275
|
+
# @see Wx::Pen#set_colour
|
|
276
|
+
# @return [Wx::Colour]
|
|
277
|
+
def get_colour; end
|
|
278
|
+
alias_method :colour, :get_colour
|
|
279
|
+
|
|
280
|
+
# Returns the pen join style, which may be one of {Wx::PenJoin::JOIN_BEVEL}, {Wx::PenJoin::JOIN_ROUND} or {Wx::PenJoin::JOIN_MITER}.
|
|
281
|
+
#
|
|
282
|
+
# The default is {Wx::PenJoin::JOIN_ROUND}.
|
|
283
|
+
# @see Wx::Pen#set_join
|
|
284
|
+
# @return [Wx::PenJoin]
|
|
285
|
+
def get_join; end
|
|
286
|
+
alias_method :join, :get_join
|
|
287
|
+
|
|
288
|
+
# Gets a pointer to the stipple bitmap.
|
|
289
|
+
#
|
|
290
|
+
#
|
|
291
|
+
# @see Wx::Pen#set_stipple
|
|
292
|
+
# @return [Wx::Bitmap]
|
|
293
|
+
def get_stipple; end
|
|
294
|
+
alias_method :stipple, :get_stipple
|
|
295
|
+
|
|
296
|
+
# Returns the pen style.
|
|
297
|
+
#
|
|
298
|
+
#
|
|
299
|
+
# @see Wx::Pen#initialize
|
|
300
|
+
# @see Wx::Pen#set_style
|
|
301
|
+
# @return [Wx::PenStyle]
|
|
302
|
+
def get_style; end
|
|
303
|
+
alias_method :style, :get_style
|
|
304
|
+
|
|
305
|
+
# Returns the pen width.
|
|
306
|
+
#
|
|
307
|
+
#
|
|
308
|
+
# @see Wx::Pen#set_width
|
|
309
|
+
# @return [Integer]
|
|
310
|
+
def get_width; end
|
|
311
|
+
alias_method :width, :get_width
|
|
312
|
+
|
|
313
|
+
# Returns true if the pen is initialised.
|
|
314
|
+
#
|
|
315
|
+
# Notice that an uninitialized pen object can't be queried for any pen properties and all calls to the accessor methods on it will result in an assert failure.
|
|
316
|
+
# @return [Boolean]
|
|
317
|
+
def is_ok; end
|
|
318
|
+
alias_method :ok?, :is_ok
|
|
319
|
+
|
|
320
|
+
# Returns true if the pen is a valid non-transparent pen.
|
|
321
|
+
#
|
|
322
|
+
# This method returns true if the pen object is initialized and has a non-transparent style. Notice that this should be used instead of simply testing whether {Wx::Pen#get_style} returns a style different from {Wx::PenStyle::PENSTYLE_TRANSPARENT} if the pen may be invalid as {Wx::Pen#get_style} would assert in this case.
|
|
323
|
+
# @see Wx::Pen#is_transparent
|
|
324
|
+
# @return [Boolean]
|
|
325
|
+
def is_non_transparent; end
|
|
326
|
+
alias_method :non_transparent?, :is_non_transparent
|
|
327
|
+
|
|
328
|
+
# Returns true if the pen is transparent.
|
|
329
|
+
#
|
|
330
|
+
# A transparent pen is simply a pen with {Wx::PenStyle::PENSTYLE_TRANSPARENT} style.
|
|
331
|
+
# Notice that this function works even for non-initialized pens (for which it returns false) unlike tests of the form <code>Wx::Pen#get_style == wxPENSTYLE_TRANSPARENT</code> which would assert if the pen is invalid.
|
|
332
|
+
# @see Wx::Pen#is_non_transparent
|
|
333
|
+
# @return [Boolean]
|
|
334
|
+
def is_transparent; end
|
|
335
|
+
alias_method :transparent?, :is_transparent
|
|
336
|
+
|
|
337
|
+
# Sets the pen cap style, which may be one of {Wx::PenCap::CAP_ROUND}, {Wx::PenCap::CAP_PROJECTING} or {Wx::PenCap::CAP_BUTT}.
|
|
338
|
+
#
|
|
339
|
+
# The default is {Wx::PenCap::CAP_ROUND}.
|
|
340
|
+
# @see Wx::Pen#get_cap
|
|
341
|
+
# @param capStyle [Wx::PenCap]
|
|
342
|
+
# @return [void]
|
|
343
|
+
def set_cap(capStyle) end
|
|
344
|
+
alias_method :cap=, :set_cap
|
|
345
|
+
|
|
346
|
+
# Sets the pen quality.
|
|
347
|
+
#
|
|
348
|
+
# Explicitly selecting low pen quality may be useful in WXMSW if drawing performance is more important than the exact appearance of the lines drawn with this pen.
|
|
349
|
+
# @see Wx::PenQuality
|
|
350
|
+
# @param quality [Wx::PenQuality]
|
|
351
|
+
# @return [void]
|
|
352
|
+
def set_quality(quality) end
|
|
353
|
+
alias_method :quality=, :set_quality
|
|
354
|
+
|
|
355
|
+
# Sets the pen join style, which may be one of {Wx::PenJoin::JOIN_BEVEL}, {Wx::PenJoin::JOIN_ROUND} or {Wx::PenJoin::JOIN_MITER}.
|
|
356
|
+
#
|
|
357
|
+
# The default is {Wx::PenJoin::JOIN_ROUND}.
|
|
358
|
+
# @see Wx::Pen#get_join
|
|
359
|
+
# @param join_style [Wx::PenJoin]
|
|
360
|
+
# @return [void]
|
|
361
|
+
def set_join(join_style) end
|
|
362
|
+
alias_method :join=, :set_join
|
|
363
|
+
|
|
364
|
+
# Sets the bitmap for stippling.
|
|
365
|
+
#
|
|
366
|
+
#
|
|
367
|
+
# @see Wx::Pen#get_stipple
|
|
368
|
+
# @param stipple [Wx::Bitmap]
|
|
369
|
+
# @return [void]
|
|
370
|
+
def set_stipple(stipple) end
|
|
371
|
+
alias_method :stipple=, :set_stipple
|
|
372
|
+
|
|
373
|
+
# Set the pen style.
|
|
374
|
+
#
|
|
375
|
+
#
|
|
376
|
+
# @see Wx::Pen#initialize
|
|
377
|
+
# @param style [Wx::PenStyle]
|
|
378
|
+
# @return [void]
|
|
379
|
+
def set_style(style) end
|
|
380
|
+
alias_method :style=, :set_style
|
|
381
|
+
|
|
382
|
+
# Sets the pen width.
|
|
383
|
+
#
|
|
384
|
+
#
|
|
385
|
+
# @see Wx::Pen#get_width
|
|
386
|
+
# @param width [Integer]
|
|
387
|
+
# @return [void]
|
|
388
|
+
def set_width(width) end
|
|
389
|
+
alias_method :width=, :set_width
|
|
390
|
+
|
|
391
|
+
# Equality operator.
|
|
392
|
+
#
|
|
393
|
+
# See reference-counted object comparison for more info.
|
|
394
|
+
# @param pen [Wx::Pen]
|
|
395
|
+
# @return [Boolean]
|
|
396
|
+
def ==(pen) end
|
|
397
|
+
|
|
398
|
+
end # Pen
|
|
399
|
+
|
|
400
|
+
# This class is a helper used for {Wx::Pen} creation using named parameter idiom: it allows specifying various {Wx::Pen} attributes using the chained calls to its clearly named methods instead of passing them in the fixed order to {Wx::Pen} constructors.
|
|
401
|
+
#
|
|
402
|
+
# For instance, to create a dotted blue pen with the given join style you could do
|
|
403
|
+
# ```ruby
|
|
404
|
+
# pen = Wx::Pen.new(Wx::PenInfo.new(Wx::BLUE).style(Wx::PENSTYLE_DOT).join(Wx::JOIN_BEVEL))
|
|
405
|
+
# ```
|
|
406
|
+
#
|
|
407
|
+
#
|
|
408
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
|
409
|
+
class PenInfo < ::Object
|
|
410
|
+
|
|
411
|
+
# Constructor, which can set the colour, width and style for the pen.
|
|
412
|
+
# @param colour [Wx::Colour,String,Symbol]
|
|
413
|
+
# @param width [Integer]
|
|
414
|
+
# @param style [Wx::PenStyle]
|
|
415
|
+
# @return [Wx::PenInfo]
|
|
416
|
+
def initialize(colour=(Wx::Colour.new()), width=1, style=Wx::PenStyle::PENSTYLE_SOLID) end
|
|
417
|
+
|
|
418
|
+
# Sets the colour for the pen.
|
|
419
|
+
# @param col [Wx::Colour,String,Symbol]
|
|
420
|
+
# @return [Wx::PenInfo]
|
|
421
|
+
def colour(col) end
|
|
422
|
+
|
|
423
|
+
# Sets the line width for the pen.
|
|
424
|
+
# @param width [Integer]
|
|
425
|
+
# @return [Wx::PenInfo]
|
|
426
|
+
def width(width) end
|
|
427
|
+
|
|
428
|
+
# Sets the style for the pen.
|
|
429
|
+
# @param style [Wx::PenStyle]
|
|
430
|
+
# @return [Wx::PenInfo]
|
|
431
|
+
def style(style) end
|
|
432
|
+
|
|
433
|
+
# Sets the bitmap used for stippling.
|
|
434
|
+
#
|
|
435
|
+
# When the pen is used, a repeating pattern of this bitmap will be drawn.
|
|
436
|
+
# @param stipple [Wx::Bitmap]
|
|
437
|
+
# @return [Wx::PenInfo]
|
|
438
|
+
def stipple(stipple) end
|
|
439
|
+
|
|
440
|
+
# Sets the join for the pen, which is the appearance of where two lines meet or overlap.
|
|
441
|
+
# @param join [Wx::PenJoin]
|
|
442
|
+
# @return [Wx::PenInfo]
|
|
443
|
+
def join(join) end
|
|
444
|
+
|
|
445
|
+
# Sets the cap (i.e., the end point) for the pen.
|
|
446
|
+
# @param cap [Wx::PenCap]
|
|
447
|
+
# @return [Wx::PenInfo]
|
|
448
|
+
def cap(cap) end
|
|
449
|
+
|
|
450
|
+
# Set the pen quality.
|
|
451
|
+
#
|
|
452
|
+
# Using {Wx::PenInfo#low_quality} or {Wx::PenInfo#high_quality} is usually more convenient.
|
|
453
|
+
# @see Wx::Pen#set_quality
|
|
454
|
+
# @param quality [Wx::PenQuality]
|
|
455
|
+
# @return [Wx::PenInfo]
|
|
456
|
+
def quality(quality) end
|
|
457
|
+
|
|
458
|
+
# Set low pen quality.
|
|
459
|
+
#
|
|
460
|
+
# This is the same as calling {Wx::PenInfo#quality} with {Wx::PenQuality::PEN_QUALITY_LOW}.
|
|
461
|
+
# @return [Wx::PenInfo]
|
|
462
|
+
def low_quality; end
|
|
463
|
+
|
|
464
|
+
# Set high pen quality.
|
|
465
|
+
#
|
|
466
|
+
# This is the same as calling {Wx::PenInfo#quality} with {Wx::PenQuality::PEN_QUALITY_HIGH}.
|
|
467
|
+
# @return [Wx::PenInfo]
|
|
468
|
+
def high_quality; end
|
|
469
|
+
|
|
470
|
+
# Returns the pen's colour.
|
|
471
|
+
# @return [Wx::Colour]
|
|
472
|
+
def get_colour; end
|
|
473
|
+
|
|
474
|
+
# Returns the pen's stipple bitmap.
|
|
475
|
+
# @return [Wx::Bitmap]
|
|
476
|
+
def get_stipple; end
|
|
477
|
+
|
|
478
|
+
# Returns the pen's style.
|
|
479
|
+
# @return [Wx::PenStyle]
|
|
480
|
+
def get_style; end
|
|
481
|
+
|
|
482
|
+
# Returns the pen's joining method.
|
|
483
|
+
# @return [Wx::PenJoin]
|
|
484
|
+
def get_join; end
|
|
485
|
+
|
|
486
|
+
# Returns the pen's cap (i.e., end-point style).
|
|
487
|
+
# @return [Wx::PenCap]
|
|
488
|
+
def get_cap; end
|
|
489
|
+
|
|
490
|
+
# Returns the pen's quality.
|
|
491
|
+
# @return [Wx::PenQuality]
|
|
492
|
+
def get_quality; end
|
|
493
|
+
|
|
494
|
+
# Returns the number of dashes in the pen's dash pattern.
|
|
495
|
+
# @return [Integer]
|
|
496
|
+
def get_dash_count; end
|
|
497
|
+
alias_method :dash_count, :get_dash_count
|
|
498
|
+
|
|
499
|
+
# Returns whether the pen is transparent.
|
|
500
|
+
# @return [Boolean]
|
|
501
|
+
def is_transparent; end
|
|
502
|
+
alias_method :transparent?, :is_transparent
|
|
503
|
+
|
|
504
|
+
# Returns the pen's line width.
|
|
505
|
+
# @return [Integer]
|
|
506
|
+
def get_width; end
|
|
507
|
+
|
|
508
|
+
end # PenInfo
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
end
|
|
@@ -0,0 +1,135 @@
|
|
|
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
|
+
# Provides support for automatically saving and restoring object properties to persistent storage.
|
|
10
|
+
#
|
|
11
|
+
# This class is the central element of wxWidgets persistence framework, see Persistent Objects Overview for its overview.
|
|
12
|
+
# This is a singleton class and its unique instance can be retrieved using {Wx::PersistenceManager.get} method.
|
|
13
|
+
#
|
|
14
|
+
# @wxrb_require USE_CONFIG
|
|
15
|
+
class PersistenceManager < ::Object
|
|
16
|
+
|
|
17
|
+
# @overload register_and_restore(obj)
|
|
18
|
+
# Combines both {Wx::PersistenceManager#register} and {Wx::PersistenceManager#restore} calls.
|
|
19
|
+
# @param obj [Object]
|
|
20
|
+
# @return [Boolean]
|
|
21
|
+
# @overload register_and_restore(obj, po)
|
|
22
|
+
# Combines both {Wx::PersistenceManager#register} and {Wx::PersistenceManager#restore} calls.
|
|
23
|
+
# @param obj [Object]
|
|
24
|
+
# @param po [Wx::PersistentObject]
|
|
25
|
+
# @return [Boolean]
|
|
26
|
+
def register_and_restore(*args) end
|
|
27
|
+
|
|
28
|
+
# Set the global persistence manager to use.
|
|
29
|
+
#
|
|
30
|
+
# Call this method to specify a non-default persistence manager to use. It should usually be called very early (e.g. in {Wx::App}-derived class constructor or in the beginning of overridden {Wx::App#on_init}) to affect creation of all persistent controls and the object passed to it must have a lifetime long enough to be still alive when the persistent controls are destroyed and need it to save their state so typically this would be a global or a {Wx::App} member.
|
|
31
|
+
# @param manager [Wx::PersistenceManager]
|
|
32
|
+
# @return [void]
|
|
33
|
+
def self.set(manager) end
|
|
34
|
+
|
|
35
|
+
# Returns the unique persistence manager object.
|
|
36
|
+
#
|
|
37
|
+
# If {Wx::PersistenceManager.set} hadn't been called before, a default persistence manager implementation is returned.
|
|
38
|
+
# @return [Wx::PersistenceManager]
|
|
39
|
+
def self.get; end
|
|
40
|
+
|
|
41
|
+
# Globally disable saving the persistence object properties.
|
|
42
|
+
#
|
|
43
|
+
# By default, saving properties in {Wx::PersistenceManager#save} is enabled but the program may wish to disable if, for example, it detects that it is running on a system which shouldn't be modified in any way and so configuration file (or Windows registry) shouldn't be written to.
|
|
44
|
+
# @see Wx::PersistenceManager#disable_restoring
|
|
45
|
+
# @return [void]
|
|
46
|
+
def disable_saving; end
|
|
47
|
+
|
|
48
|
+
# Globally disable restoring the persistence object properties.
|
|
49
|
+
#
|
|
50
|
+
# By default, restoring properties in {Wx::PersistenceManager#restore} is enabled but this function allows disabling it. This is mostly useful for testing.
|
|
51
|
+
# @see Wx::PersistenceManager#disable_saving
|
|
52
|
+
# @return [void]
|
|
53
|
+
def disable_restoring; end
|
|
54
|
+
|
|
55
|
+
# @overload register(obj)
|
|
56
|
+
# Register an object with the manager automatically creating a persistence adapter for it.
|
|
57
|
+
#
|
|
58
|
+
# This is equivalent to calling Register(void *, wxPersistentObject *) with {create_persistent_object(obj)} as the second argument.
|
|
59
|
+
# @param obj [Object] The object to register. {create_persistent_object} overload must be defined for the objects of this class.
|
|
60
|
+
# @return [Wx::PersistentObject]
|
|
61
|
+
# @overload register(obj, po)
|
|
62
|
+
# Register an object with the manager.
|
|
63
|
+
#
|
|
64
|
+
# Note that registering the object doesn't do anything except allowing to call {Wx::PersistenceManager#restore} for it later. If you want to register the object and restore its properties, use {Wx::PersistenceManager#register_and_restore}.
|
|
65
|
+
# The manager takes ownership of po and will delete it when it is unregistered.
|
|
66
|
+
# @param obj [Object] The object to register.
|
|
67
|
+
# @param po [Wx::PersistentObject] The {Wx::PersistentObject} to use for saving and restoring this object properties.
|
|
68
|
+
# @return [Wx::PersistentObject]
|
|
69
|
+
def register(*args) end
|
|
70
|
+
|
|
71
|
+
# Check if the object is registered and return the associated {Wx::PersistentObject} if it is or nil otherwise.
|
|
72
|
+
# @param obj [Object]
|
|
73
|
+
# @return [Wx::PersistentObject]
|
|
74
|
+
def find(obj) end
|
|
75
|
+
|
|
76
|
+
# Unregister the object and delete the associated {Wx::PersistentObject}.
|
|
77
|
+
#
|
|
78
|
+
# For the persistent windows this is done automatically (via {Wx::PersistenceManager#save_and_unregister}) when the window is destroyed so you only need to call this function explicitly if you are using custom persistent objects or if you want to prevent the object properties from being saved.
|
|
79
|
+
# @param obj [Object] An object previously registered with {Wx::PersistenceManager#register}.
|
|
80
|
+
# @return [void]
|
|
81
|
+
def unregister(obj) end
|
|
82
|
+
|
|
83
|
+
# Save the object properties to persistent storage.
|
|
84
|
+
#
|
|
85
|
+
# This method does nothing if {Wx::PersistenceManager#disable_saving} had been called.
|
|
86
|
+
# @see Wx::PersistenceManager#save_and_unregister
|
|
87
|
+
# @param obj [Object] An object previously registered with {Wx::PersistenceManager#register}.
|
|
88
|
+
# @return [void]
|
|
89
|
+
def save(obj) end
|
|
90
|
+
|
|
91
|
+
# Restore the object properties previously saved by {Wx::PersistenceManager#save}.
|
|
92
|
+
#
|
|
93
|
+
# This method does nothing if {Wx::PersistenceManager#disable_restoring} had been called.
|
|
94
|
+
#
|
|
95
|
+
# true if the object properties were restored or false if nothing was found to restore or the saved settings were invalid.
|
|
96
|
+
# @see Wx::PersistenceManager#register_and_restore
|
|
97
|
+
# @param obj [Object] An object previously registered with {Wx::PersistenceManager#register}.
|
|
98
|
+
# @return [Boolean]
|
|
99
|
+
def restore(obj) end
|
|
100
|
+
|
|
101
|
+
# Combines both {Wx::PersistenceManager#save} and {Wx::PersistenceManager#unregister} calls.
|
|
102
|
+
# @param obj [Object]
|
|
103
|
+
# @return [void]
|
|
104
|
+
def save_and_unregister(obj) end
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
protected
|
|
108
|
+
|
|
109
|
+
# Protected default constructor.
|
|
110
|
+
#
|
|
111
|
+
# This constructor is only provided for the derived classes, to use an object of this class static {Wx::PersistenceManager.get} method should be called.
|
|
112
|
+
# @return [Wx::PersistenceManager]
|
|
113
|
+
def initialize; end
|
|
114
|
+
|
|
115
|
+
# Return the config object to use.
|
|
116
|
+
#
|
|
117
|
+
# By default the global {Wx::Config}, returned by {Wx::ConfigBase#get}, is used but a derived class could override this function to return a different one if necessary.
|
|
118
|
+
# @return [Wx::ConfigBase]
|
|
119
|
+
def get_config; end
|
|
120
|
+
alias_method :config, :get_config
|
|
121
|
+
|
|
122
|
+
# Return the path to use for saving the setting with the given name for the specified object.
|
|
123
|
+
#
|
|
124
|
+
# Notice that the name argument is the name of the setting, not the name of the object itself which can be retrieved with its GetName() method.
|
|
125
|
+
# This method can be overridden by a derived class to change where in {Wx::Config} the different options are stored. By default, all settings of the persistent controls are stored under "Persistent_Options" group and grouped by control type (e.g. "Window" for top level windows or "Splitter") and name, so that the position of a splitter called "sep" could be stored under "Persistent_Options/Splitter/sep/Position" key.
|
|
126
|
+
# @param who [Wx::PersistentObject]
|
|
127
|
+
# @param name [String]
|
|
128
|
+
# @return [String]
|
|
129
|
+
def get_key(who, name) end
|
|
130
|
+
alias_method :key, :get_key
|
|
131
|
+
|
|
132
|
+
end # PersistenceManager
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
# Base class for persistent object adapters.
|
|
10
|
+
#
|
|
11
|
+
# See Persistent Objects Overview for an overview of persistent objects within wxWidgets.
|
|
12
|
+
# wxWidgets persistence framework is non-intrusive, i.e. can work with the classes which have no relationship to nor knowledge of it. To allow this, an intermediate persistence adapter is used: this is just a simple object which provides the methods used by {Wx::PersistenceManager} to save and restore the object properties and implements them using the concrete class methods.
|
|
13
|
+
# You may derive your own classes from {Wx::PersistentObject} to implement persistence support for your common classes, see Defining Custom Persistent Windows.
|
|
14
|
+
# @see Wx::PersistentWindow<>
|
|
15
|
+
#
|
|
16
|
+
#
|
|
17
|
+
# @wxrb_require USE_CONFIG
|
|
18
|
+
class PersistentObject < ::Object
|
|
19
|
+
|
|
20
|
+
# Save the object properties.
|
|
21
|
+
#
|
|
22
|
+
# The implementation of this method should use {Wx::PersistentObject#save_value}.
|
|
23
|
+
# @return [void]
|
|
24
|
+
def save; end
|
|
25
|
+
|
|
26
|
+
# Restore the object properties.
|
|
27
|
+
#
|
|
28
|
+
# The implementation of this method should use {Wx::PersistentObject#restore_value}.
|
|
29
|
+
# @return [Boolean]
|
|
30
|
+
def restore; end
|
|
31
|
+
|
|
32
|
+
# Returns the string uniquely identifying the objects supported by this adapter.
|
|
33
|
+
#
|
|
34
|
+
# This method is called from {Wx::PersistentObject#save_value} and {Wx::PersistentObject#restore_value} and normally returns some short (but not too cryptic) strings, e.g. <code>"Checkbox"</code>.
|
|
35
|
+
# @return [String]
|
|
36
|
+
def get_kind; end
|
|
37
|
+
alias_method :kind, :get_kind
|
|
38
|
+
|
|
39
|
+
# Returns the string uniquely identifying the object we're associated with among all the other objects of the same type.
|
|
40
|
+
#
|
|
41
|
+
# This method is used together with {Wx::PersistentObject#get_kind} to construct the unique full name of the object in e.g. a configuration file.
|
|
42
|
+
# @return [String]
|
|
43
|
+
def get_name; end
|
|
44
|
+
alias_method :name, :get_name
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
protected
|
|
48
|
+
|
|
49
|
+
end # PersistentObject
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
end
|