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,232 @@
|
|
|
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
|
+
# Enumeration used by {Wx::LayoutAlgorithm}.
|
|
10
|
+
#
|
|
11
|
+
#
|
|
12
|
+
#
|
|
13
|
+
# @wxrb_require USE_SASH
|
|
14
|
+
class LayoutOrientation < Wx::Enum
|
|
15
|
+
|
|
16
|
+
#
|
|
17
|
+
#
|
|
18
|
+
LAYOUT_HORIZONTAL = Wx::LayoutOrientation.new(0)
|
|
19
|
+
|
|
20
|
+
#
|
|
21
|
+
#
|
|
22
|
+
LAYOUT_VERTICAL = Wx::LayoutOrientation.new(1)
|
|
23
|
+
|
|
24
|
+
end # LayoutOrientation
|
|
25
|
+
|
|
26
|
+
# Enumeration used by {Wx::LayoutAlgorithm}.
|
|
27
|
+
#
|
|
28
|
+
#
|
|
29
|
+
#
|
|
30
|
+
# @wxrb_require USE_SASH
|
|
31
|
+
class LayoutAlignment < Wx::Enum
|
|
32
|
+
|
|
33
|
+
#
|
|
34
|
+
#
|
|
35
|
+
LAYOUT_NONE = Wx::LayoutAlignment.new(0)
|
|
36
|
+
|
|
37
|
+
#
|
|
38
|
+
#
|
|
39
|
+
LAYOUT_TOP = Wx::LayoutAlignment.new(1)
|
|
40
|
+
|
|
41
|
+
#
|
|
42
|
+
#
|
|
43
|
+
LAYOUT_LEFT = Wx::LayoutAlignment.new(2)
|
|
44
|
+
|
|
45
|
+
#
|
|
46
|
+
#
|
|
47
|
+
LAYOUT_RIGHT = Wx::LayoutAlignment.new(3)
|
|
48
|
+
|
|
49
|
+
#
|
|
50
|
+
#
|
|
51
|
+
LAYOUT_BOTTOM = Wx::LayoutAlignment.new(4)
|
|
52
|
+
|
|
53
|
+
end # LayoutAlignment
|
|
54
|
+
|
|
55
|
+
#
|
|
56
|
+
#
|
|
57
|
+
EVT_QUERY_LAYOUT_INFO = 10324
|
|
58
|
+
|
|
59
|
+
#
|
|
60
|
+
#
|
|
61
|
+
EVT_CALCULATE_LAYOUT = 10325
|
|
62
|
+
|
|
63
|
+
# {Wx::SashLayoutWindow} responds to OnCalculateLayout events generated by {Wx::LayoutAlgorithm}.
|
|
64
|
+
#
|
|
65
|
+
# It allows the application to use simple accessors to specify how the window should be laid out, rather than having to respond to events.
|
|
66
|
+
# The fact that the class derives from {Wx::SashWindow} allows sashes to be used if required, to allow the windows to be user-resizable.
|
|
67
|
+
# The documentation for {Wx::LayoutAlgorithm} explains the purpose of this class in more detail.
|
|
68
|
+
# For the window styles see {Wx::SashWindow}.
|
|
69
|
+
# This class handles the EVT_QUERY_LAYOUT_INFO and EVT_CALCULATE_LAYOUT events for you. However, if you use sashes, see {Wx::SashWindow} for relevant event information. See also {Wx::LayoutAlgorithm} for information about the layout events.
|
|
70
|
+
#
|
|
71
|
+
# Category: Miscellaneous Windows
|
|
72
|
+
# @see Wx::LayoutAlgorithm
|
|
73
|
+
# @see Wx::SashWindow
|
|
74
|
+
# @see Events and Event Handling
|
|
75
|
+
#
|
|
76
|
+
#
|
|
77
|
+
# @wxrb_require USE_SASH
|
|
78
|
+
class SashLayoutWindow < SashWindow
|
|
79
|
+
|
|
80
|
+
# @overload initialize()
|
|
81
|
+
# Default ctor.
|
|
82
|
+
# @return [Wx::SashLayoutWindow]
|
|
83
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("LAYOUT_WINDOW"))
|
|
84
|
+
# Constructs a sash layout window, which can be a child of a frame, dialog or any other non-control window.
|
|
85
|
+
# @param parent [Wx::Window] Pointer to a parent window.
|
|
86
|
+
# @param id [Integer] Window identifier. If -1, will automatically create an identifier.
|
|
87
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. {Wx::DEFAULT_POSITION} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default position for the window. If using the {Wx::SashLayoutWindow} class directly, supply an actual position.
|
|
88
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. {Wx::DEFAULT_SIZE} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default size for the window.
|
|
89
|
+
# @param style [Integer] Window style. For window styles, please see {Wx::SashLayoutWindow}.
|
|
90
|
+
# @param name [String] Window name.
|
|
91
|
+
# @return [Wx::SashLayoutWindow]
|
|
92
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("LAYOUT_WINDOW"), &block)
|
|
93
|
+
# Constructs a sash layout window, which can be a child of a frame, dialog or any other non-control window.
|
|
94
|
+
# @param parent [Wx::Window] Pointer to a parent window.
|
|
95
|
+
# @param id [Integer] Window identifier. If -1, will automatically create an identifier.
|
|
96
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. {Wx::DEFAULT_POSITION} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default position for the window. If using the {Wx::SashLayoutWindow} class directly, supply an actual position.
|
|
97
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. {Wx::DEFAULT_SIZE} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default size for the window.
|
|
98
|
+
# @param style [Integer] Window style. For window styles, please see {Wx::SashLayoutWindow}.
|
|
99
|
+
# @param name [String] Window name.
|
|
100
|
+
# @yieldparam [Wx::SashLayoutWindow] win new instance
|
|
101
|
+
# @return [Wx::SashLayoutWindow]
|
|
102
|
+
def initialize(*args) end
|
|
103
|
+
|
|
104
|
+
# Initializes a sash layout window, which can be a child of a frame, dialog or any other non-control window.
|
|
105
|
+
# @param parent [Wx::Window] Pointer to a parent window.
|
|
106
|
+
# @param id [Integer] Window identifier. If -1, will automatically create an identifier.
|
|
107
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. {Wx::DEFAULT_POSITION} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default position for the window. If using the {Wx::SashLayoutWindow} class directly, supply an actual position.
|
|
108
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. {Wx::DEFAULT_SIZE} is (-1, -1) which indicates that {Wx::SashLayoutWindows} should generate a default size for the window.
|
|
109
|
+
# @param style [Integer] Window style. For window styles, please see {Wx::SashLayoutWindow}.
|
|
110
|
+
# @param name [String] Window name.
|
|
111
|
+
# @return [Boolean]
|
|
112
|
+
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("LAYOUT_WINDOW")) end
|
|
113
|
+
|
|
114
|
+
# Returns the alignment of the window: one of {Wx::LayoutAlignment::LAYOUT_TOP}, {Wx::LayoutAlignment::LAYOUT_LEFT}, {Wx::LayoutAlignment::LAYOUT_RIGHT}, {Wx::LayoutAlignment::LAYOUT_BOTTOM}.
|
|
115
|
+
# @return [Wx::LayoutAlignment]
|
|
116
|
+
def get_alignment; end
|
|
117
|
+
alias_method :alignment, :get_alignment
|
|
118
|
+
|
|
119
|
+
# Returns the orientation of the window: one of {Wx::LayoutOrientation::LAYOUT_HORIZONTAL}, {Wx::LayoutOrientation::LAYOUT_VERTICAL}.
|
|
120
|
+
# @return [Wx::LayoutOrientation]
|
|
121
|
+
def get_orientation; end
|
|
122
|
+
alias_method :orientation, :get_orientation
|
|
123
|
+
|
|
124
|
+
# The default handler for the event that is generated by {Wx::LayoutAlgorithm}.
|
|
125
|
+
#
|
|
126
|
+
# The implementation of this function calls {Wx::CalculateLayoutEvent#set_rect} to shrink the provided size according to how much space this window takes up. For further details, see {Wx::LayoutAlgorithm} and {Wx::CalculateLayoutEvent}.
|
|
127
|
+
# @param event [Wx::CalculateLayoutEvent]
|
|
128
|
+
# @return [void]
|
|
129
|
+
def on_calculate_layout(event) end
|
|
130
|
+
|
|
131
|
+
# The default handler for the event that is generated by OnCalculateLayout to get size, alignment and orientation information for the window.
|
|
132
|
+
#
|
|
133
|
+
# The implementation of this function uses member variables as set by accessors called by the application.
|
|
134
|
+
# For further details, see {Wx::LayoutAlgorithm} and {Wx::QueryLayoutInfoEvent}.
|
|
135
|
+
# @param event [Wx::QueryLayoutInfoEvent]
|
|
136
|
+
# @return [void]
|
|
137
|
+
def on_query_layout_info(event) end
|
|
138
|
+
|
|
139
|
+
# Sets the alignment of the window (which edge of the available parent client area the window is attached to).
|
|
140
|
+
#
|
|
141
|
+
# alignment is one of {Wx::LayoutAlignment::LAYOUT_TOP}, {Wx::LayoutAlignment::LAYOUT_LEFT}, {Wx::LayoutAlignment::LAYOUT_RIGHT}, {Wx::LayoutAlignment::LAYOUT_BOTTOM}.
|
|
142
|
+
# @param alignment [Wx::LayoutAlignment]
|
|
143
|
+
# @return [void]
|
|
144
|
+
def set_alignment(alignment) end
|
|
145
|
+
alias_method :alignment=, :set_alignment
|
|
146
|
+
|
|
147
|
+
# Sets the default dimensions of the window.
|
|
148
|
+
#
|
|
149
|
+
# The dimension other than the orientation will be fixed to this value, and the orientation dimension will be ignored and the window stretched to fit the available space.
|
|
150
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
|
151
|
+
# @return [void]
|
|
152
|
+
def set_default_size(size) end
|
|
153
|
+
alias_method :default_size=, :set_default_size
|
|
154
|
+
|
|
155
|
+
# Sets the orientation of the window (the direction the window will stretch in, to fill the available parent client area).
|
|
156
|
+
#
|
|
157
|
+
# orientation is one of {Wx::LayoutOrientation::LAYOUT_HORIZONTAL}, {Wx::LayoutOrientation::LAYOUT_VERTICAL}.
|
|
158
|
+
# @param orientation [Wx::LayoutOrientation]
|
|
159
|
+
# @return [void]
|
|
160
|
+
def set_orientation(orientation) end
|
|
161
|
+
alias_method :orientation=, :set_orientation
|
|
162
|
+
|
|
163
|
+
end # SashLayoutWindow
|
|
164
|
+
|
|
165
|
+
# {Wx::LayoutAlgorithm} implements layout of subwindows in MDI or SDI frames.
|
|
166
|
+
#
|
|
167
|
+
# It sends a {Wx::CalculateLayoutEvent} event to children of the frame, asking them for information about their size. For MDI parent frames, the algorithm allocates the remaining space to the MDI client window (which contains the MDI child frames).
|
|
168
|
+
# For SDI (normal) frames, a 'main' window is specified as taking up the remaining space.
|
|
169
|
+
# Because the event system is used, this technique can be applied to any windows, which are not necessarily 'aware' of the layout classes (no virtual functions in {Wx::Window} refer to {Wx::LayoutAlgorithm} or its events). However, you may wish to use {Wx::SashLayoutWindow} for your subwindows since this class provides handlers for the required events, and accessors to specify the desired size of the window. The sash behaviour in the base class can be used, optionally, to make the windows user-resizable.
|
|
170
|
+
# {Wx::LayoutAlgorithm} is typically used in IDE (integrated development environment) applications, where there are several resizable windows in addition to the MDI client window, or other primary editing window. Resizable windows might include toolbars, a project window, and a window for displaying error and warning messages.
|
|
171
|
+
# When a window receives an OnCalculateLayout event, it should call SetRect in the given event object, to be the old supplied rectangle minus whatever space the window takes up. It should also set its own size accordingly. {Wx::SashLayoutWindow#on_calculate_layout} generates an OnQueryLayoutInfo event which it sends to itself to determine the orientation, alignment and size of the window, which it gets from internal member variables set by the application.
|
|
172
|
+
# The algorithm works by starting off with a rectangle equal to the whole frame client area. It iterates through the frame children, generating {Wx::LayoutAlgorithm::OnCalculateLayout} events which subtract the window size and return the remaining rectangle for the next window to process. It is assumed (by {Wx::SashLayoutWindow#on_calculate_layout}) that a window stretches the full dimension of the frame client, according to the orientation it specifies. For example, a horizontal window will stretch the full width of the remaining portion of the frame client area. In the other orientation, the window will be fixed to whatever size was specified by {Wx::LayoutAlgorithm::OnQueryLayoutInfo}. An alignment setting will make the window 'stick' to the left, top, right or bottom of the remaining client area. This scheme implies that order of window creation is important. Say you wish to have an extra toolbar at the top of the frame, a project window to the left of the MDI client window, and an output window above the status bar. You should therefore create the windows in this order: toolbar, output window, project window. This ensures that the toolbar and output window take up space at the top and bottom, and then the remaining height in-between is used for the project window.
|
|
173
|
+
# {Wx::LayoutAlgorithm} is quite independent of the way in which {Wx::LayoutAlgorithm::OnCalculateLayout} chooses to interpret a window's size and alignment. Therefore you could implement a different window class with a new {Wx::LayoutAlgorithm::OnCalculateLayout} event handler, that has a more sophisticated way of laying out the windows. It might allow specification of whether stretching occurs in the specified orientation, for example, rather than always assuming stretching. (This could, and probably should, be added to the existing implementation).
|
|
174
|
+
#
|
|
175
|
+
# <div class="wxrb-note">
|
|
176
|
+
# <b>Note:</b>
|
|
177
|
+
# <p>{Wx::LayoutAlgorithm} has nothing to do with {Wx::LayoutConstraints}. It is an alternative way of specifying layouts for which the normal constraint system is unsuitable.
|
|
178
|
+
# </p>
|
|
179
|
+
# </div>
|
|
180
|
+
#
|
|
181
|
+
# ### Events emitted by this class
|
|
182
|
+
#
|
|
183
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::CalculateLayoutEvent} events.
|
|
184
|
+
# Event handler methods for events emitted by this class:
|
|
185
|
+
#
|
|
186
|
+
# - {Wx::EvtHandler#evt_query_layout_info}(meth = nil, &block): Process a {Wx::EVT_QUERY_LAYOUT_INFO} event, to get size, orientation and alignment from a window. See {Wx::QueryLayoutInfoEvent}.
|
|
187
|
+
#
|
|
188
|
+
# - {Wx::EvtHandler#evt_calculate_layout}(meth = nil, &block): Process a {Wx::EVT_CALCULATE_LAYOUT} event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. See {Wx::CalculateLayoutEvent}.
|
|
189
|
+
#
|
|
190
|
+
# Note that the algorithm object does not respond to events, but itself generates the previous events in order to calculate window sizes.
|
|
191
|
+
#
|
|
192
|
+
# Category: Window Layout
|
|
193
|
+
# @see Wx::SashEvent
|
|
194
|
+
# @see Wx::SashLayoutWindow
|
|
195
|
+
# @see Events and Event Handling
|
|
196
|
+
#
|
|
197
|
+
#
|
|
198
|
+
# @wxrb_require USE_SASH
|
|
199
|
+
class LayoutAlgorithm < Object
|
|
200
|
+
|
|
201
|
+
# Default constructor.
|
|
202
|
+
# @return [Wx::LayoutAlgorithm]
|
|
203
|
+
def initialize; end
|
|
204
|
+
|
|
205
|
+
# Lays out the children of a normal frame.
|
|
206
|
+
#
|
|
207
|
+
# mainWindow is set to occupy the remaining space. This function simply calls {Wx::LayoutAlgorithm#layout_window}.
|
|
208
|
+
# @param frame [Wx::Frame]
|
|
209
|
+
# @param mainWindow [Wx::Window]
|
|
210
|
+
# @return [Boolean]
|
|
211
|
+
def layout_frame(frame, mainWindow=nil) end
|
|
212
|
+
|
|
213
|
+
# Lays out the children of an MDI parent frame.
|
|
214
|
+
#
|
|
215
|
+
# If rect is non-null, the given rectangle will be used as a starting point instead of the frame's client area. The MDI client window is set to occupy the remaining space.
|
|
216
|
+
# @param frame [Wx::MDIParentFrame]
|
|
217
|
+
# @param rect [Wx::Rect]
|
|
218
|
+
# @return [Boolean]
|
|
219
|
+
def layout_mdi_frame(frame, rect=nil) end
|
|
220
|
+
|
|
221
|
+
# Lays out the children of a normal frame or other window.
|
|
222
|
+
#
|
|
223
|
+
# mainWindow is set to occupy the remaining space. If this is not specified, then the last window that responds to a calculate layout event in query mode will get the remaining space (that is, a non-query OnCalculateLayout event will not be sent to this window and the window will be set to the remaining size).
|
|
224
|
+
# @param parent [Wx::Window]
|
|
225
|
+
# @param mainWindow [Wx::Window]
|
|
226
|
+
# @return [Boolean]
|
|
227
|
+
def layout_window(parent, mainWindow=nil) end
|
|
228
|
+
|
|
229
|
+
end # LayoutAlgorithm
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
end
|
|
@@ -0,0 +1,171 @@
|
|
|
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
|
+
# {Wx::SashWindow} allows any of its edges to have a sash which can be dragged to resize the window.
|
|
10
|
+
#
|
|
11
|
+
# The actual content window will be created by the application as a child of {Wx::SashWindow}.
|
|
12
|
+
# The window (or an ancestor) will be notified of a drag via a {Wx::SashEvent} notification.
|
|
13
|
+
# ### Styles
|
|
14
|
+
#
|
|
15
|
+
# This class supports the following styles:
|
|
16
|
+
#
|
|
17
|
+
# - {Wx::SW_3D}: Draws a 3D effect sash and border.
|
|
18
|
+
#
|
|
19
|
+
# - {Wx::SW_3DSASH}: Draws a 3D effect sash.
|
|
20
|
+
#
|
|
21
|
+
# - {Wx::SW_3DBORDER}: Draws a 3D effect border.
|
|
22
|
+
#
|
|
23
|
+
# - {Wx::SW_BORDER}: Draws a thin black border.
|
|
24
|
+
#
|
|
25
|
+
# ### Events emitted by this class
|
|
26
|
+
#
|
|
27
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::SashEvent} events.
|
|
28
|
+
# Event handler methods for events emitted by this class:
|
|
29
|
+
#
|
|
30
|
+
# - {Wx::EvtHandler#evt_sash_dragged}(id, meth = nil, &block): Process a {Wx::EVT_SASH_DRAGGED} event, when the user has finished dragging a sash.
|
|
31
|
+
#
|
|
32
|
+
# - {Wx::EvtHandler#evt_sash_dragged_range}(id1, id2, meth = nil, &block): Process a {Wx::EVT_SASH_DRAGGED_RANGE} event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged.
|
|
33
|
+
#
|
|
34
|
+
# Category: Miscellaneous Windows
|
|
35
|
+
# @see Wx::SashEvent
|
|
36
|
+
# @see Wx::SashLayoutWindow
|
|
37
|
+
# @see Events and Event Handling
|
|
38
|
+
#
|
|
39
|
+
#
|
|
40
|
+
# @wxrb_require USE_SASH
|
|
41
|
+
class SashWindow < Window
|
|
42
|
+
|
|
43
|
+
# @overload initialize()
|
|
44
|
+
# Default ctor.
|
|
45
|
+
# @return [Wx::SashWindow]
|
|
46
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("SASH_WINDOW"))
|
|
47
|
+
# Constructs a sash window, which can be a child of a frame, dialog or any other non-control window.
|
|
48
|
+
# @param parent [Wx::Window] Pointer to a parent window.
|
|
49
|
+
# @param id [Integer] Window identifier. If -1, will automatically create an identifier.
|
|
50
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. {Wx::DEFAULT_POSITION} is (-1, -1) which indicates that {Wx::SashWindows} should generate a default position for the window. If using the {Wx::SashWindow} class directly, supply an actual position.
|
|
51
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. {Wx::DEFAULT_SIZE} is (-1, -1) which indicates that {Wx::SashWindows} should generate a default size for the window.
|
|
52
|
+
# @param style [Integer] Window style. For window styles, please see {Wx::SashWindow}.
|
|
53
|
+
# @param name [String] Window name.
|
|
54
|
+
# @return [Wx::SashWindow]
|
|
55
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("SASH_WINDOW"), &block)
|
|
56
|
+
# Constructs a sash window, which can be a child of a frame, dialog or any other non-control window.
|
|
57
|
+
# @param parent [Wx::Window] Pointer to a parent window.
|
|
58
|
+
# @param id [Integer] Window identifier. If -1, will automatically create an identifier.
|
|
59
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. {Wx::DEFAULT_POSITION} is (-1, -1) which indicates that {Wx::SashWindows} should generate a default position for the window. If using the {Wx::SashWindow} class directly, supply an actual position.
|
|
60
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. {Wx::DEFAULT_SIZE} is (-1, -1) which indicates that {Wx::SashWindows} should generate a default size for the window.
|
|
61
|
+
# @param style [Integer] Window style. For window styles, please see {Wx::SashWindow}.
|
|
62
|
+
# @param name [String] Window name.
|
|
63
|
+
# @yieldparam [Wx::SashWindow] win new instance
|
|
64
|
+
# @return [Wx::SashWindow]
|
|
65
|
+
def initialize(*args) end
|
|
66
|
+
|
|
67
|
+
# Gets the maximum window size in the x direction.
|
|
68
|
+
# @return [Integer]
|
|
69
|
+
def get_maximum_size_x; end
|
|
70
|
+
alias_method :maximum_size_x, :get_maximum_size_x
|
|
71
|
+
|
|
72
|
+
# Gets the maximum window size in the y direction.
|
|
73
|
+
# @return [Integer]
|
|
74
|
+
def get_maximum_size_y; end
|
|
75
|
+
alias_method :maximum_size_y, :get_maximum_size_y
|
|
76
|
+
|
|
77
|
+
# Gets the minimum window size in the x direction.
|
|
78
|
+
# @return [Integer]
|
|
79
|
+
def get_minimum_size_x; end
|
|
80
|
+
alias_method :minimum_size_x, :get_minimum_size_x
|
|
81
|
+
|
|
82
|
+
# Gets the minimum window size in the y direction.
|
|
83
|
+
# @return [Integer]
|
|
84
|
+
def get_minimum_size_y; end
|
|
85
|
+
alias_method :minimum_size_y, :get_minimum_size_y
|
|
86
|
+
|
|
87
|
+
# Returns true if a sash is visible on the given edge, false otherwise.
|
|
88
|
+
#
|
|
89
|
+
#
|
|
90
|
+
# @see Wx::SashWindow#set_sash_visible
|
|
91
|
+
# @param edge [Wx::SashEdgePosition] Edge. One of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
|
92
|
+
# @return [Boolean]
|
|
93
|
+
def get_sash_visible(edge) end
|
|
94
|
+
alias_method :sash_visible, :get_sash_visible
|
|
95
|
+
|
|
96
|
+
# Sets the maximum window size in the x direction.
|
|
97
|
+
# @param min [Integer]
|
|
98
|
+
# @return [void]
|
|
99
|
+
def set_maximum_size_x(min) end
|
|
100
|
+
alias_method :maximum_size_x=, :set_maximum_size_x
|
|
101
|
+
|
|
102
|
+
# Sets the maximum window size in the y direction.
|
|
103
|
+
# @param min [Integer]
|
|
104
|
+
# @return [void]
|
|
105
|
+
def set_maximum_size_y(min) end
|
|
106
|
+
alias_method :maximum_size_y=, :set_maximum_size_y
|
|
107
|
+
|
|
108
|
+
# Sets the minimum window size in the x direction.
|
|
109
|
+
# @param min [Integer]
|
|
110
|
+
# @return [void]
|
|
111
|
+
def set_minimum_size_x(min) end
|
|
112
|
+
alias_method :minimum_size_x=, :set_minimum_size_x
|
|
113
|
+
|
|
114
|
+
# Sets the minimum window size in the y direction.
|
|
115
|
+
# @param min [Integer]
|
|
116
|
+
# @return [void]
|
|
117
|
+
def set_minimum_size_y(min) end
|
|
118
|
+
alias_method :minimum_size_y=, :set_minimum_size_y
|
|
119
|
+
|
|
120
|
+
# Call this function to make a sash visible or invisible on a particular edge.
|
|
121
|
+
#
|
|
122
|
+
#
|
|
123
|
+
# @see Wx::SashWindow#get_sash_visible
|
|
124
|
+
# @param edge [Wx::SashEdgePosition] Edge to change. One of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
|
125
|
+
# @param visible [Boolean] true to make the sash visible, false to make it invisible.
|
|
126
|
+
# @return [void]
|
|
127
|
+
def set_sash_visible(edge, visible) end
|
|
128
|
+
|
|
129
|
+
# Get border size.
|
|
130
|
+
# @param edge [Wx::SashEdgePosition]
|
|
131
|
+
# @return [Integer]
|
|
132
|
+
def get_edge_margin(edge) end
|
|
133
|
+
alias_method :edge_margin, :get_edge_margin
|
|
134
|
+
|
|
135
|
+
# Sets the default sash border size.
|
|
136
|
+
# @param width [Integer]
|
|
137
|
+
# @return [void]
|
|
138
|
+
def set_default_border_size(width) end
|
|
139
|
+
alias_method :default_border_size=, :set_default_border_size
|
|
140
|
+
|
|
141
|
+
# Gets the default sash border size.
|
|
142
|
+
# @return [Integer]
|
|
143
|
+
def get_default_border_size; end
|
|
144
|
+
alias_method :default_border_size, :get_default_border_size
|
|
145
|
+
|
|
146
|
+
# Sets the additional border size between child and sash window.
|
|
147
|
+
# @param width [Integer]
|
|
148
|
+
# @return [void]
|
|
149
|
+
def set_extra_border_size(width) end
|
|
150
|
+
alias_method :extra_border_size=, :set_extra_border_size
|
|
151
|
+
|
|
152
|
+
# Gets the addition border size between child and sash window.
|
|
153
|
+
# @return [Integer]
|
|
154
|
+
def get_extra_border_size; end
|
|
155
|
+
alias_method :extra_border_size, :get_extra_border_size
|
|
156
|
+
|
|
157
|
+
# Tests for x, y over sash.
|
|
158
|
+
# @param x [Integer]
|
|
159
|
+
# @param y [Integer]
|
|
160
|
+
# @param tolerance [Integer]
|
|
161
|
+
# @return [Wx::SashEdgePosition]
|
|
162
|
+
def sash_hit_test(x, y, tolerance=2) end
|
|
163
|
+
|
|
164
|
+
# Resizes subwindows.
|
|
165
|
+
# @return [void]
|
|
166
|
+
def size_windows; end
|
|
167
|
+
|
|
168
|
+
end # SashWindow
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
# Deprecated class for drawing on the screen.
|
|
10
|
+
#
|
|
11
|
+
# Please don't use this class in the new code, as it doesn't work on modern systems any longer and using it is not guaranteed to have any effect at all. Use {Wx::Display} for getting information about the screen and {Wx::Overlay} for temporarily drawing over a window.
|
|
12
|
+
# A {Wx::ScreenDC} can be used to paint on the screen. This should normally be constructed as a temporary stack object; don't store a {Wx::ScreenDC} object.
|
|
13
|
+
# When using multiple monitors, {Wx::ScreenDC} corresponds to the entire virtual screen composed of all of them. Notice that coordinates on {Wx::ScreenDC} can be negative in this case, see {Wx::Display#get_geometry} for more.
|
|
14
|
+
#
|
|
15
|
+
# Category: Device Contexts
|
|
16
|
+
# @see Wx::DC
|
|
17
|
+
# @see Wx::MemoryDC
|
|
18
|
+
# @see Wx::PaintDC
|
|
19
|
+
# @see Wx::ClientDC
|
|
20
|
+
# @see Wx::WindowDC
|
|
21
|
+
#
|
|
22
|
+
#
|
|
23
|
+
#
|
|
24
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
|
25
|
+
class ScreenDC < DC
|
|
26
|
+
|
|
27
|
+
end # ScreenDC
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -0,0 +1,204 @@
|
|
|
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
|
+
# A {Wx::ScrollBar} is a control that represents a horizontal or vertical scrollbar.
|
|
10
|
+
#
|
|
11
|
+
# It is distinct from the two scrollbars that some windows provide automatically, but the two types of scrollbar share the way events are received.
|
|
12
|
+
#
|
|
13
|
+
# <div class="wxrb-remark">
|
|
14
|
+
# <b>Remark:</b>
|
|
15
|
+
# <p>A scrollbar has the following main attributes: range, thumb size, page size, and position. The range is the total number of units associated with the view represented by the scrollbar. For a table with 15 columns, the range would be 15. The thumb size is the number of units that are currently visible. For the table example, the window might be sized so that only 5 columns are currently visible, in which case the application would set the thumb size to 5. When the thumb size becomes the same as or greater than the range, the scrollbar will be automatically hidden on most platforms. The page size is the number of units that the scrollbar should scroll by, when 'paging' through the data. This value is normally the same as the thumb size length, because it is natural to assume that the visible window size defines a page. The scrollbar position is the current thumb position. Most applications will find it convenient to provide a function called AdjustScrollbars() which can be called initially, from an OnSize event handler, and whenever the application data changes in size. It will adjust the view, object and page size according to the size of the window and the size of the data.
|
|
16
|
+
# </p>
|
|
17
|
+
# </div>
|
|
18
|
+
#
|
|
19
|
+
# ### Styles
|
|
20
|
+
#
|
|
21
|
+
# This class supports the following styles:
|
|
22
|
+
#
|
|
23
|
+
# - {Wx::SB_HORIZONTAL}: Specifies a horizontal scrollbar.
|
|
24
|
+
#
|
|
25
|
+
# - {Wx::SB_VERTICAL}: Specifies a vertical scrollbar.
|
|
26
|
+
#
|
|
27
|
+
# ### Events emitted by this class
|
|
28
|
+
#
|
|
29
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::ScrollEvent} events.
|
|
30
|
+
# Event handler methods for events emitted by this class: except for this, the macros behave exactly the same.
|
|
31
|
+
#
|
|
32
|
+
# - {Wx::EvtHandler#evt_scroll}(meth = nil, &block): Process all scroll events.
|
|
33
|
+
#
|
|
34
|
+
# - {Wx::EvtHandler#evt_scroll_top}(meth = nil, &block): Process {Wx::EVT_SCROLL_TOP} scroll to top or leftmost (minimum) position events.
|
|
35
|
+
#
|
|
36
|
+
# - {Wx::EvtHandler#evt_scroll_bottom}(meth = nil, &block): Process {Wx::EVT_SCROLL_BOTTOM} scroll to bottom or rightmost (maximum) position events.
|
|
37
|
+
#
|
|
38
|
+
# - {Wx::EvtHandler#evt_scroll_lineup}(meth = nil, &block): Process {Wx::EVT_SCROLL_LINEUP} line up or left events.
|
|
39
|
+
#
|
|
40
|
+
# - {Wx::EvtHandler#evt_scroll_linedown}(meth = nil, &block): Process {Wx::EVT_SCROLL_LINEDOWN} line down or right events.
|
|
41
|
+
#
|
|
42
|
+
# - {Wx::EvtHandler#evt_scroll_pageup}(meth = nil, &block): Process {Wx::EVT_SCROLL_PAGEUP} page up or left events.
|
|
43
|
+
#
|
|
44
|
+
# - {Wx::EvtHandler#evt_scroll_pagedown}(meth = nil, &block): Process {Wx::EVT_SCROLL_PAGEDOWN} page down or right events.
|
|
45
|
+
#
|
|
46
|
+
# - {Wx::EvtHandler#evt_scroll_thumbtrack}(meth = nil, &block): Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
|
|
47
|
+
#
|
|
48
|
+
# - {Wx::EvtHandler#evt_scroll_thumbrelease}(meth = nil, &block): Process {Wx::EVT_SCROLL_THUMBRELEASE} thumb release events.
|
|
49
|
+
#
|
|
50
|
+
# - {Wx::EvtHandler#evt_scroll_changed}(meth = nil, &block): Process {Wx::EVT_SCROLL_CHANGED} end of scrolling events (MSW only).
|
|
51
|
+
#
|
|
52
|
+
# - {Wx::EvtHandler#evt_command_scroll}(id, meth = nil, &block): Process all scroll events.
|
|
53
|
+
#
|
|
54
|
+
# - {Wx::EvtHandler#evt_command_scroll_top}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_TOP} scroll to top or leftmost (minimum) position events.
|
|
55
|
+
#
|
|
56
|
+
# - {Wx::EvtHandler#evt_command_scroll_bottom}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_BOTTOM} scroll to bottom or rightmost (maximum) position events.
|
|
57
|
+
#
|
|
58
|
+
# - {Wx::EvtHandler#evt_command_scroll_lineup}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_LINEUP} line up or left events.
|
|
59
|
+
#
|
|
60
|
+
# - {Wx::EvtHandler#evt_command_scroll_linedown}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_LINEDOWN} line down or right events.
|
|
61
|
+
#
|
|
62
|
+
# - {Wx::EvtHandler#evt_command_scroll_pageup}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_PAGEUP} page up or left events.
|
|
63
|
+
#
|
|
64
|
+
# - {Wx::EvtHandler#evt_command_scroll_pagedown}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_PAGEDOWN} page down or right events.
|
|
65
|
+
#
|
|
66
|
+
# - {Wx::EvtHandler#evt_command_scroll_thumbtrack}(id, meth = nil, &block): Process {Wx::EVT_SCROLL_THUMBTRACK} thumbtrack events (frequent events sent as the user drags the thumbtrack).
|
|
67
|
+
#
|
|
68
|
+
# - {Wx::EvtHandler#evt_command_scroll_thumbrelease}(meth = nil, &block): Process {Wx::EVT_SCROLL_THUMBRELEASE} thumb release events.
|
|
69
|
+
#
|
|
70
|
+
# - {Wx::EvtHandler#evt_command_scroll_changed}(meth = nil, &block): Process {Wx::EVT_SCROLL_CHANGED} end of scrolling events (MSW only).
|
|
71
|
+
#
|
|
72
|
+
# ## The difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED
|
|
73
|
+
# The EVT_SCROLL_THUMBRELEASE event is only emitted when actually dragging the thumb using the mouse and releasing it (This EVT_SCROLL_THUMBRELEASE event is also followed by an EVT_SCROLL_CHANGED event).
|
|
74
|
+
# The EVT_SCROLL_CHANGED event also occurs when using the keyboard to change the thumb position, and when clicking next to the thumb (In all these cases the EVT_SCROLL_THUMBRELEASE event does not happen).
|
|
75
|
+
# In short, the EVT_SCROLL_CHANGED event is triggered when scrolling/moving has finished independently of the way it had started. Please see the page_samples_widgets ("Slider" page) to see the difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED in action.
|
|
76
|
+
#
|
|
77
|
+
# Category: {Wx::Controls} <div class='appearance'><span class='appearance'>Appearance:</span><table><tr><td> WXMSW Appearance
|
|
78
|
+
# </td><td> WXGTK Appearance
|
|
79
|
+
# </td><td> WXOSX Appearance
|
|
80
|
+
# </td></tr></table></div>
|
|
81
|
+
# @see Scrolled Windows
|
|
82
|
+
# @see Events and Event Handling
|
|
83
|
+
# @see Wx::Scrolled
|
|
84
|
+
#
|
|
85
|
+
#
|
|
86
|
+
# @wxrb_require USE_SCROLLBAR
|
|
87
|
+
class ScrollBar < Control
|
|
88
|
+
|
|
89
|
+
# @overload initialize()
|
|
90
|
+
# Default constructor.
|
|
91
|
+
# @return [Wx::ScrollBar]
|
|
92
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::SB_HORIZONTAL, validator=Wx::DEFAULT_VALIDATOR, name=Wx::SCROLL_BAR_NAME_STR)
|
|
93
|
+
# Constructor, creating and showing a scrollbar.
|
|
94
|
+
#
|
|
95
|
+
#
|
|
96
|
+
# @see Wx::ScrollBar#create
|
|
97
|
+
# @see Wx::Validator
|
|
98
|
+
# @param parent [Wx::Window] Parent window. Must be non-null.
|
|
99
|
+
# @param id [Integer] Window identifier. The value {Wx::StandardID::ID_ANY} indicates a default value.
|
|
100
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. If {Wx::DEFAULT_POSITION} is specified then a default position is chosen.
|
|
101
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. If {Wx::DEFAULT_SIZE} is specified then a default size is chosen.
|
|
102
|
+
# @param style [Integer] Window style. See {Wx::ScrollBar}.
|
|
103
|
+
# @param validator [Wx::Validator] Window validator.
|
|
104
|
+
# @param name [String] Window name.
|
|
105
|
+
# @return [Wx::ScrollBar]
|
|
106
|
+
# @overload initialize(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::SB_HORIZONTAL, validator=Wx::DEFAULT_VALIDATOR, name=Wx::SCROLL_BAR_NAME_STR, &block)
|
|
107
|
+
# Constructor, creating and showing a scrollbar.
|
|
108
|
+
#
|
|
109
|
+
#
|
|
110
|
+
# @see Wx::ScrollBar#create
|
|
111
|
+
# @see Wx::Validator
|
|
112
|
+
# @param parent [Wx::Window] Parent window. Must be non-null.
|
|
113
|
+
# @param id [Integer] Window identifier. The value {Wx::StandardID::ID_ANY} indicates a default value.
|
|
114
|
+
# @param pos [Array(Integer, Integer), Wx::Point] Window position. If {Wx::DEFAULT_POSITION} is specified then a default position is chosen.
|
|
115
|
+
# @param size [Array(Integer, Integer), Wx::Size] Window size. If {Wx::DEFAULT_SIZE} is specified then a default size is chosen.
|
|
116
|
+
# @param style [Integer] Window style. See {Wx::ScrollBar}.
|
|
117
|
+
# @param validator [Wx::Validator] Window validator.
|
|
118
|
+
# @param name [String] Window name.
|
|
119
|
+
# @yieldparam [Wx::ScrollBar] win new instance
|
|
120
|
+
# @return [Wx::ScrollBar]
|
|
121
|
+
def initialize(*args) end
|
|
122
|
+
|
|
123
|
+
# Scrollbar creation function called by the scrollbar constructor.
|
|
124
|
+
#
|
|
125
|
+
# See {Wx::ScrollBar#initialize} for details.
|
|
126
|
+
# @param parent [Wx::Window]
|
|
127
|
+
# @param id [Integer]
|
|
128
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
|
129
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
|
130
|
+
# @param style [Integer]
|
|
131
|
+
# @param validator [Wx::Validator]
|
|
132
|
+
# @param name [String]
|
|
133
|
+
# @return [Boolean]
|
|
134
|
+
def create(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::SB_HORIZONTAL, validator=Wx::DEFAULT_VALIDATOR, name=Wx::SCROLL_BAR_NAME_STR) end
|
|
135
|
+
|
|
136
|
+
# Returns the page size of the scrollbar.
|
|
137
|
+
#
|
|
138
|
+
# This is the number of scroll units that will be scrolled when the user pages up or down. Often it is the same as the thumb size.
|
|
139
|
+
# @see Wx::ScrollBar#set_scrollbar
|
|
140
|
+
# @return [Integer]
|
|
141
|
+
def get_page_size; end
|
|
142
|
+
alias_method :page_size, :get_page_size
|
|
143
|
+
|
|
144
|
+
# Returns the length of the scrollbar.
|
|
145
|
+
#
|
|
146
|
+
#
|
|
147
|
+
# @see Wx::ScrollBar#set_scrollbar
|
|
148
|
+
# @return [Integer]
|
|
149
|
+
def get_range; end
|
|
150
|
+
alias_method :range, :get_range
|
|
151
|
+
|
|
152
|
+
# Returns the current position of the scrollbar thumb.
|
|
153
|
+
#
|
|
154
|
+
#
|
|
155
|
+
# @see Wx::ScrollBar#set_thumb_position
|
|
156
|
+
# @return [Integer]
|
|
157
|
+
def get_thumb_position; end
|
|
158
|
+
alias_method :thumb_position, :get_thumb_position
|
|
159
|
+
|
|
160
|
+
# Returns the thumb or 'view' size.
|
|
161
|
+
#
|
|
162
|
+
#
|
|
163
|
+
# @see Wx::ScrollBar#set_scrollbar
|
|
164
|
+
# @return [Integer]
|
|
165
|
+
def get_thumb_size; end
|
|
166
|
+
alias_method :thumb_size, :get_thumb_size
|
|
167
|
+
|
|
168
|
+
# Sets the scrollbar properties.
|
|
169
|
+
#
|
|
170
|
+
# <div class="wxrb-remark">
|
|
171
|
+
# <b>Remark:</b>
|
|
172
|
+
# <p>Let's say you wish to display 50 lines of text, using the same font. The window is sized so that you can only see 16 lines at a time. You would use:
|
|
173
|
+
# ```ruby
|
|
174
|
+
# scrollbar.set_scrollbar(0, 16, 50, 15)
|
|
175
|
+
# ```
|
|
176
|
+
# The page size is 1 less than the thumb size so that the last line of the previous page will be visible on the next page, to help orient the user. Note that with the window at this size, the thumb position can never go above 50 minus 16, or 34. You can determine how many lines are currently visible by dividing the current view size by the character height in pixels. When defining your own scrollbar behaviour, you will always need to recalculate the scrollbar settings when the window size changes. You could therefore put your scrollbar calculations and {Wx::ScrollBar#set_scrollbar} call into a function named AdjustScrollbars, which can be called initially and also from a {Wx::SizeEvent} event handler function.
|
|
177
|
+
# </p>
|
|
178
|
+
# </div>
|
|
179
|
+
# @param position [Integer] The position of the scrollbar in scroll units.
|
|
180
|
+
# @param thumbSize [Integer] The size of the thumb, or visible portion of the scrollbar, in scroll units.
|
|
181
|
+
# @param range [Integer] The maximum position of the scrollbar.
|
|
182
|
+
# @param pageSize [Integer] The size of the page size in scroll units. This is the number of units the scrollbar will scroll when it is paged up or down. Often it is the same as the thumb size.
|
|
183
|
+
# @param refresh [Boolean] true to redraw the scrollbar, false otherwise.
|
|
184
|
+
# @return [void]
|
|
185
|
+
def set_scrollbar(position, thumbSize, range, pageSize, refresh=true) end
|
|
186
|
+
|
|
187
|
+
# Sets the position of the scrollbar.
|
|
188
|
+
#
|
|
189
|
+
#
|
|
190
|
+
# @see Wx::ScrollBar#get_thumb_position
|
|
191
|
+
# @param viewStart [Integer] The position of the scrollbar thumb.
|
|
192
|
+
# @return [void]
|
|
193
|
+
def set_thumb_position(viewStart) end
|
|
194
|
+
alias_method :thumb_position=, :set_thumb_position
|
|
195
|
+
|
|
196
|
+
# Returns true for scrollbars that have the vertical style set.
|
|
197
|
+
# @return [Boolean]
|
|
198
|
+
def is_vertical; end
|
|
199
|
+
alias_method :vertical?, :is_vertical
|
|
200
|
+
|
|
201
|
+
end # ScrollBar
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
end
|