wxruby3 0.9.0.pre.rc.3-x64-mingw-ucrt → 0.9.0-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/ext/mkrf_conf_bingem.rb +4 -1
- data/ext/wxbase32u_gcc_custom.dll +0 -0
- data/ext/wxbase32u_net_gcc_custom.dll +0 -0
- data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
- data/lib/wx/accessors.rb +10 -2
- data/lib/wx/aui/auifloatframe.rb +20 -0
- data/lib/wx/aui/auimanager.rb +3 -0
- data/lib/wx/aui/auinotebook.rb +17 -0
- data/lib/wx/aui/events/evt_list.rb +7 -7
- data/lib/wx/aui/require.rb +5 -1
- data/lib/wx/aui.rb +4 -1
- data/lib/wx/core/acceleratortable.rb +8 -0
- data/lib/wx/core/animation.rb +8 -0
- data/lib/wx/core/app.rb +8 -0
- data/lib/wx/core/array_ext.rb +7 -0
- data/lib/wx/core/art_locator.rb +7 -0
- data/lib/wx/core/artprovider.rb +9 -0
- data/lib/wx/core/bitmap.rb +16 -4
- data/lib/wx/core/bitmap_combobox.rb +7 -0
- data/lib/wx/core/brush.rb +7 -0
- data/lib/wx/core/busycursor.rb +9 -0
- data/lib/wx/core/choice.rb +7 -0
- data/lib/wx/core/choicedlg.rb +7 -0
- data/lib/wx/core/clientdc.rb +9 -0
- data/lib/wx/core/clipboard.rb +8 -0
- data/lib/wx/core/collapsible_pane.rb +8 -1
- data/lib/wx/core/colour.rb +8 -0
- data/lib/wx/core/combo_ctrl.rb +110 -0
- data/lib/wx/core/combobox.rb +7 -0
- data/lib/wx/core/config.rb +303 -0
- data/lib/wx/core/controlwithitems.rb +12 -1
- data/lib/wx/core/cursor.rb +14 -4
- data/lib/wx/core/data_object.rb +7 -0
- data/lib/wx/core/dataformat.rb +9 -0
- data/lib/wx/core/datetime.rb +14 -0
- data/lib/wx/core/dc.rb +7 -0
- data/lib/wx/core/dialog.rb +18 -1
- data/lib/wx/core/enum.rb +7 -0
- data/lib/wx/core/event.rb +7 -0
- data/lib/wx/core/event_blocker.rb +7 -0
- data/lib/wx/core/event_loop.rb +7 -0
- data/lib/wx/core/events/evt_list.rb +76 -0
- data/lib/wx/core/evthandler.rb +8 -0
- data/lib/wx/core/ext.rb +7 -0
- data/lib/wx/core/file_dialog.rb +23 -0
- data/lib/wx/core/find_replace_dialog.rb +7 -0
- data/lib/wx/core/functions.rb +8 -0
- data/lib/wx/core/gauge.rb +10 -1
- data/lib/wx/core/genericdirctrl.rb +9 -0
- data/lib/wx/core/hboxsizer.rb +16 -0
- data/lib/wx/core/helpcontroller.rb +8 -0
- data/lib/wx/core/helpcontrollerhelpprovider.rb +9 -0
- data/lib/wx/core/helpprovider.rb +10 -1
- data/lib/wx/core/icon.rb +17 -6
- data/lib/wx/core/id_helper.rb +7 -0
- data/lib/wx/core/image.rb +16 -4
- data/lib/wx/core/imagelist.rb +8 -1
- data/lib/wx/core/listbox.rb +7 -0
- data/lib/wx/core/listctrl.rb +9 -0
- data/lib/wx/core/locale.rb +8 -0
- data/lib/wx/core/log.rb +24 -0
- data/lib/wx/core/menu.rb +9 -0
- data/lib/wx/core/menu_bar.rb +7 -0
- data/lib/wx/core/menuitem.rb +9 -0
- data/lib/wx/core/notebook.rb +9 -0
- data/lib/wx/core/object.rb +9 -0
- data/lib/wx/core/paintdc.rb +7 -0
- data/lib/wx/core/pen.rb +7 -0
- data/lib/wx/core/pen_info.rb +7 -0
- data/lib/wx/core/platform_info.rb +7 -0
- data/lib/wx/core/point.rb +8 -0
- data/lib/wx/core/real_point.rb +8 -0
- data/lib/wx/core/rect.rb +9 -0
- data/lib/wx/core/region_iterator.rb +7 -0
- data/lib/wx/core/simplehelpprovider.rb +9 -0
- data/lib/wx/core/size.rb +8 -0
- data/lib/wx/core/sizer.rb +9 -0
- data/lib/wx/core/splash_screen.rb +22 -2
- data/lib/wx/core/text_entry.rb +7 -0
- data/lib/wx/core/textctrl.rb +86 -5
- data/lib/wx/core/timer.rb +9 -0
- data/lib/wx/core/toolbar.rb +9 -0
- data/lib/wx/core/toolbartool.rb +8 -0
- data/lib/wx/core/treectrl.rb +9 -0
- data/lib/wx/core/v_list_box.rb +7 -0
- data/lib/wx/core/validator.rb +7 -0
- data/lib/wx/core/variant.rb +7 -0
- data/lib/wx/core/vboxsizer.rb +16 -0
- data/lib/wx/core/window.rb +8 -0
- data/lib/wx/core/window_update_locker.rb +9 -0
- data/lib/wx/core/xmlresource.rb +8 -0
- data/lib/wx/core.rb +4 -1
- data/lib/wx/doc/app.rb +7 -1
- data/lib/wx/doc/array_ext.rb +6 -0
- data/lib/wx/doc/art_locator.rb +7 -0
- data/lib/wx/doc/aui/auimanager.rb +6 -0
- data/lib/wx/doc/aui/auinotebook.rb +6 -0
- data/lib/wx/doc/bitmap.rb +12 -4
- data/lib/wx/doc/brush.rb +6 -0
- data/lib/wx/doc/busy_info.rb +6 -0
- data/lib/wx/doc/client_dc.rb +6 -0
- data/lib/wx/doc/clipboard.rb +6 -0
- data/lib/wx/doc/colour_dialog.rb +6 -0
- data/lib/wx/doc/config.rb +190 -0
- data/lib/wx/doc/const.rb +7 -0
- data/lib/wx/doc/controlwithitems.rb +6 -0
- data/lib/wx/doc/core.rb +6 -0
- data/lib/wx/doc/cursor.rb +13 -5
- data/lib/wx/doc/data_object.rb +6 -0
- data/lib/wx/doc/datetime.rb +16 -0
- data/lib/wx/doc/dc.rb +6 -0
- data/lib/wx/doc/enum.rb +8 -1
- data/lib/wx/doc/event.rb +12 -0
- data/lib/wx/doc/event_blocker.rb +6 -0
- data/lib/wx/doc/event_loop.rb +6 -0
- data/lib/wx/doc/events.rb +6 -0
- data/lib/wx/doc/evthandler.rb +8 -0
- data/lib/wx/doc/extra/01_packages.md +52 -51
- data/lib/wx/doc/extra/05_event-handling.md +37 -12
- data/lib/wx/doc/extra/06_geometry.md +5 -5
- data/lib/wx/doc/extra/07_colour_and_font.md +2 -2
- data/lib/wx/doc/extra/09_exceptions.md +1 -1
- data/lib/wx/doc/extra/10_art.md +18 -12
- data/lib/wx/doc/extra/11_drawing_and_dc.md +4 -4
- data/lib/wx/doc/font.rb +6 -0
- data/lib/wx/doc/font_data.rb +16 -0
- data/lib/wx/doc/functions.rb +9 -1
- data/lib/wx/doc/gc_dc.rb +6 -0
- data/lib/wx/doc/gdi_common.rb +8 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +9 -9
- data/lib/wx/doc/gen/accelerator.rb +4 -9
- data/lib/wx/doc/gen/accessible.rb +21 -21
- data/lib/wx/doc/gen/activity_indicator.rb +2 -2
- data/lib/wx/doc/gen/animation.rb +13 -13
- data/lib/wx/doc/gen/animation_ctrl.rb +7 -7
- data/lib/wx/doc/gen/any_button.rb +2 -2
- data/lib/wx/doc/gen/app.rb +16 -85
- data/lib/wx/doc/gen/app_traits.rb +381 -0
- data/lib/wx/doc/gen/art_provider.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_manager.rb +12 -14
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +5 -5
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +13 -14
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_notebook.rb +102 -19
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +44 -44
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +11 -11
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +28 -28
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +7 -7
- data/lib/wx/doc/gen/aui/event_list.rb +7 -0
- data/lib/wx/doc/gen/banner_window.rb +98 -0
- data/lib/wx/doc/gen/bitmap.rb +24 -55
- data/lib/wx/doc/gen/bitmap_button.rb +3 -3
- data/lib/wx/doc/gen/bitmap_combo_box.rb +2 -2
- data/lib/wx/doc/gen/book_ctrl_base.rb +13 -13
- data/lib/wx/doc/gen/book_ctrl_event.rb +1 -1
- data/lib/wx/doc/gen/brush.rb +8 -8
- data/lib/wx/doc/gen/button.rb +4 -4
- data/lib/wx/doc/gen/calendar_ctrl.rb +12 -12
- data/lib/wx/doc/gen/calendar_date_attr.rb +11 -11
- data/lib/wx/doc/gen/calendar_event.rb +2 -8
- data/lib/wx/doc/gen/caret.rb +4 -4
- data/lib/wx/doc/gen/check_box.rb +9 -9
- data/lib/wx/doc/gen/check_list_box.rb +4 -4
- data/lib/wx/doc/gen/choice.rb +3 -3
- data/lib/wx/doc/gen/choicebook.rb +1 -1
- data/lib/wx/doc/gen/clipboard.rb +9 -9
- data/lib/wx/doc/gen/collapsible_pane.rb +4 -4
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +26 -26
- data/lib/wx/doc/gen/colour_dialog.rb +6 -6
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/combo_box.rb +7 -7
- data/lib/wx/doc/gen/combo_ctrl.rb +960 -0
- data/lib/wx/doc/gen/command_link_button.rb +110 -0
- data/lib/wx/doc/gen/config_base.rb +10 -0
- data/lib/wx/doc/gen/context_help_button.rb +3 -3
- data/lib/wx/doc/gen/control.rb +3 -3
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +5 -5
- data/lib/wx/doc/gen/cursor.rb +3 -8
- data/lib/wx/doc/gen/data_format.rb +3 -3
- data/lib/wx/doc/gen/data_object.rb +13 -13
- data/lib/wx/doc/gen/date_event.rb +1 -1
- data/lib/wx/doc/gen/date_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/dc.rb +125 -62
- data/lib/wx/doc/gen/dialog.rb +46 -17
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +1 -1
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/drag_drop.rb +18 -44
- data/lib/wx/doc/gen/drag_image.rb +7 -32
- data/lib/wx/doc/gen/editable_list_box.rb +2 -2
- data/lib/wx/doc/gen/event.rb +15 -23
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_list.rb +103 -5
- data/lib/wx/doc/gen/events.rb +151 -151
- data/lib/wx/doc/gen/evt_handler.rb +7 -7
- data/lib/wx/doc/gen/ext_help_controller.rb +8 -8
- data/lib/wx/doc/gen/file_dialog.rb +4 -2
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +146 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +159 -0
- data/lib/wx/doc/gen/file_dir_picker_event.rb +1 -1
- data/lib/wx/doc/gen/file_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/file_system.rb +250 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +1 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +1 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +4 -4
- data/lib/wx/doc/gen/font.rb +60 -65
- data/lib/wx/doc/gen/font_data.rb +6 -6
- data/lib/wx/doc/gen/font_dialog.rb +2 -2
- data/lib/wx/doc/gen/font_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/frame.rb +6 -20
- data/lib/wx/doc/gen/fs_file.rb +61 -21
- data/lib/wx/doc/gen/gauge.rb +3 -3
- data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
- data/lib/wx/doc/gen/gdi_common.rb +8 -8
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +6 -6
- data/lib/wx/doc/gen/graphics_context.rb +291 -60
- data/lib/wx/doc/gen/graphics_object.rb +47 -101
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +36 -51
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +414 -171
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_event.rb +7 -7
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +9 -9
- data/lib/wx/doc/gen/grid/grid_size_event.rb +5 -5
- data/lib/wx/doc/gen/grid/grid_string_table.rb +6 -6
- data/lib/wx/doc/gen/grid/grid_table_base.rb +15 -15
- data/lib/wx/doc/gen/grid_bag_sizer.rb +10 -10
- data/lib/wx/doc/gen/gui_event_loop.rb +12 -12
- data/lib/wx/doc/gen/header_ctrl.rb +755 -0
- data/lib/wx/doc/gen/header_ctrl_event.rb +131 -0
- data/lib/wx/doc/gen/help_controller.rb +7 -7
- data/lib/wx/doc/gen/help_provider.rb +3 -3
- data/lib/wx/doc/gen/html/html_cell.rb +67 -44
- data/lib/wx/doc/gen/html/html_cell_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_easy_printing.rb +5 -5
- data/lib/wx/doc/gen/html/html_help_controller.rb +40 -52
- data/lib/wx/doc/gen/html/html_help_data.rb +2 -2
- data/lib/wx/doc/gen/html/html_help_window.rb +21 -27
- data/lib/wx/doc/gen/html/html_list_box.rb +6 -6
- data/lib/wx/doc/gen/html/html_printout.rb +1 -1
- data/lib/wx/doc/gen/html/html_window.rb +35 -31
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +10 -10
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +46 -51
- data/lib/wx/doc/gen/image_list.rb +14 -24
- data/lib/wx/doc/gen/info_bar.rb +152 -0
- data/lib/wx/doc/gen/keyboard_state.rb +17 -17
- data/lib/wx/doc/gen/list_box.rb +19 -19
- data/lib/wx/doc/gen/list_ctrl.rb +58 -93
- data/lib/wx/doc/gen/list_event.rb +2 -2
- data/lib/wx/doc/gen/listbook.rb +1 -1
- data/lib/wx/doc/gen/locale.rb +15 -39
- data/lib/wx/doc/gen/log.rb +17 -67
- data/lib/wx/doc/gen/mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/mdi_frame.rb +8 -8
- data/lib/wx/doc/gen/media_ctrl.rb +15 -15
- data/lib/wx/doc/gen/media_event.rb +1 -1
- data/lib/wx/doc/gen/memory_dc.rb +3 -6
- data/lib/wx/doc/gen/menu.rb +15 -16
- data/lib/wx/doc/gen/menu_bar.rb +9 -26
- data/lib/wx/doc/gen/menu_item.rb +12 -12
- data/lib/wx/doc/gen/message_dialog.rb +6 -6
- data/lib/wx/doc/gen/mini_frame.rb +2 -2
- data/lib/wx/doc/gen/mouse_state.rb +50 -10
- data/lib/wx/doc/gen/non_owned_window.rb +2 -2
- data/lib/wx/doc/gen/notebook.rb +7 -7
- data/lib/wx/doc/gen/number_entry_dialog.rb +1 -1
- data/lib/wx/doc/gen/object.rb +1 -12
- data/lib/wx/doc/gen/palette.rb +12 -14
- data/lib/wx/doc/gen/panel.rb +4 -4
- data/lib/wx/doc/gen/pen.rb +25 -25
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +2 -2
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +14 -14
- data/lib/wx/doc/gen/pg/pg_cell.rb +3 -6
- data/lib/wx/doc/gen/pg/pg_editor.rb +19 -19
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +61 -86
- data/lib/wx/doc/gen/pg/pg_properties.rb +210 -263
- data/lib/wx/doc/gen/pg/pg_property.rb +161 -257
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +2 -2
- data/lib/wx/doc/gen/pg/property_grid.rb +30 -30
- data/lib/wx/doc/gen/pg/property_grid_event.rb +7 -7
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +45 -51
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +39 -42
- data/lib/wx/doc/gen/pg/property_grid_page.rb +11 -20
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +10 -19
- data/lib/wx/doc/gen/picker_base.rb +5 -5
- data/lib/wx/doc/gen/platform_info.rb +173 -13
- data/lib/wx/doc/gen/popup_window.rb +2 -2
- data/lib/wx/doc/gen/progress_dialog.rb +2 -2
- data/lib/wx/doc/gen/property_sheet_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/preview_frame.rb +14 -1
- data/lib/wx/doc/gen/prt/print_data.rb +44 -44
- data/lib/wx/doc/gen/prt/printer.rb +22 -27
- data/lib/wx/doc/gen/query_layout_info_event.rb +4 -4
- data/lib/wx/doc/gen/radio_box.rb +9 -9
- data/lib/wx/doc/gen/radio_button.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +28 -28
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +8 -14
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +12 -16
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +2 -2
- data/lib/wx/doc/gen/rearrange_ctrl.rb +60 -0
- data/lib/wx/doc/gen/rearrange_list.rb +99 -0
- data/lib/wx/doc/gen/region.rb +26 -35
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +608 -1520
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +37 -0
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +525 -0
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +435 -472
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +9 -9
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +12 -12
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +282 -0
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +14 -14
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +3 -16
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +328 -0
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +2849 -0
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1174 -0
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +17 -17
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +2 -2
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +32 -35
- data/lib/wx/doc/gen/sash_event.rb +5 -5
- data/lib/wx/doc/gen/sash_layout_window.rb +8 -8
- data/lib/wx/doc/gen/sash_window.rb +6 -6
- data/lib/wx/doc/gen/scroll_bar.rb +4 -4
- data/lib/wx/doc/gen/scrolled_canvas.rb +10 -16
- data/lib/wx/doc/gen/scrolled_control.rb +10 -16
- data/lib/wx/doc/gen/scrolled_window.rb +10 -16
- data/lib/wx/doc/gen/search_ctrl.rb +5 -5
- data/lib/wx/doc/gen/simplebook.rb +5 -5
- data/lib/wx/doc/gen/single_choice_dialog.rb +1 -2
- data/lib/wx/doc/gen/sizer.rb +40 -45
- data/lib/wx/doc/gen/sizer_item.rb +5 -5
- data/lib/wx/doc/gen/slider.rb +2 -2
- data/lib/wx/doc/gen/spin_button.rb +2 -2
- data/lib/wx/doc/gen/spin_ctrl.rb +3 -3
- data/lib/wx/doc/gen/spin_ctrl_double.rb +146 -0
- data/lib/wx/doc/gen/spin_double_event.rb +53 -0
- data/lib/wx/doc/gen/spin_event.rb +1 -1
- data/lib/wx/doc/gen/splitter_event.rb +1 -1
- data/lib/wx/doc/gen/splitter_window.rb +16 -12
- data/lib/wx/doc/gen/static_bitmap.rb +4 -4
- data/lib/wx/doc/gen/static_box.rb +5 -5
- data/lib/wx/doc/gen/static_line.rb +3 -3
- data/lib/wx/doc/gen/static_text.rb +3 -3
- data/lib/wx/doc/gen/status_bar.rb +39 -5
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +145 -177
- data/lib/wx/doc/gen/stc/styled_text_event.rb +6 -6
- data/lib/wx/doc/gen/svg_file_dc.rb +5 -5
- data/lib/wx/doc/gen/system_options.rb +2 -2
- data/lib/wx/doc/gen/system_settings.rb +6 -6
- data/lib/wx/doc/gen/task_bar_icon.rb +7 -7
- data/lib/wx/doc/gen/task_bar_icon_event.rb +1 -1
- data/lib/wx/doc/gen/text_attr.rb +56 -54
- data/lib/wx/doc/gen/text_ctrl.rb +13 -37
- data/lib/wx/doc/gen/text_entry.rb +16 -16
- data/lib/wx/doc/gen/text_entry_dialog.rb +4 -4
- data/lib/wx/doc/gen/text_validator.rb +3 -8
- data/lib/wx/doc/gen/time_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/timer.rb +5 -5
- data/lib/wx/doc/gen/tip_provider.rb +2 -2
- data/lib/wx/doc/gen/toggle_button.rb +4 -4
- data/lib/wx/doc/gen/tool_bar.rb +30 -37
- data/lib/wx/doc/gen/tool_tip.rb +1 -9
- data/lib/wx/doc/gen/toolbook.rb +6 -6
- data/lib/wx/doc/gen/top_level_window.rb +25 -95
- data/lib/wx/doc/gen/tree_ctrl.rb +20 -20
- data/lib/wx/doc/gen/tree_event.rb +2 -2
- data/lib/wx/doc/gen/treebook.rb +14 -14
- data/lib/wx/doc/gen/ui_action_simulator.rb +19 -18
- data/lib/wx/doc/gen/utils.rb +11 -11
- data/lib/wx/doc/gen/v_list_box.rb +9 -9
- data/lib/wx/doc/gen/v_scrolled_window.rb +7 -7
- data/lib/wx/doc/gen/validator.rb +3 -3
- data/lib/wx/doc/gen/variant.rb +22 -22
- data/lib/wx/doc/gen/window.rb +157 -122
- data/lib/wx/doc/gen/with_images.rb +1 -1
- data/lib/wx/doc/gen/wizard.rb +4 -4
- data/lib/wx/doc/gen/wizard_event.rb +3 -3
- data/lib/wx/doc/gen/wizard_page.rb +2 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +1 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
- data/lib/wx/doc/gen/xml_node.rb +10 -10
- data/lib/wx/doc/gen/xml_resource.rb +12 -12
- data/lib/wx/doc/graphics_context.rb +59 -39
- data/lib/wx/doc/grid/grid.rb +16 -1
- data/lib/wx/doc/hboxsizer.rb +33 -0
- data/lib/wx/doc/help_controller.rb +6 -0
- data/lib/wx/doc/html/html_help_controller.rb +6 -0
- data/lib/wx/doc/icon.rb +13 -5
- data/lib/wx/doc/id_helper.rb +6 -0
- data/lib/wx/doc/image.rb +12 -4
- data/lib/wx/doc/list_ctrl.rb +6 -0
- data/lib/wx/doc/log.rb +17 -0
- data/lib/wx/doc/memory_dc.rb +6 -0
- data/lib/wx/doc/mirror_dc.rb +6 -0
- data/lib/wx/doc/pen.rb +6 -0
- data/lib/wx/doc/pg/events.rb +6 -0
- data/lib/wx/doc/pg/pg_property.rb +17 -0
- data/lib/wx/doc/pg/pgeditor.rb +6 -0
- data/lib/wx/doc/pg/property_grid.rb +6 -0
- data/lib/wx/doc/pg/property_grid_interface.rb +6 -0
- data/lib/wx/doc/progress_dialog.rb +6 -0
- data/lib/wx/doc/prt/page_setup_dialog.rb +6 -0
- data/lib/wx/doc/prt/print_data.rb +6 -0
- data/lib/wx/doc/prt/print_dialog.rb +6 -0
- data/lib/wx/doc/prt/printer.rb +6 -0
- data/lib/wx/doc/prt/printer_dc.rb +6 -0
- data/lib/wx/doc/radio_box.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_bar.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_gallery.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +6 -0
- data/lib/wx/doc/region_iterator.rb +6 -0
- data/lib/wx/doc/rtc/richtext_buffer.rb +28 -0
- data/lib/wx/doc/rtc/richtext_formatting_dialog.rb +68 -0
- data/lib/wx/doc/rtc/richtext_printing.rb +6 -0
- data/lib/wx/doc/rtc/richtext_style_sheet.rb +20 -0
- data/lib/wx/doc/scaled_dc.rb +6 -0
- data/lib/wx/doc/screen_dc.rb +6 -0
- data/lib/wx/doc/stock_objects.rb +6 -0
- data/lib/wx/doc/stream.rb +6 -0
- data/lib/wx/doc/svg_file_dc.rb +6 -0
- data/lib/wx/doc/system_settings.rb +6 -0
- data/lib/wx/doc/text_validator.rb +6 -0
- data/lib/wx/doc/textctrl.rb +89 -0
- data/lib/wx/doc/tree_event.rb +20 -0
- data/lib/wx/doc/treebook.rb +6 -0
- data/lib/wx/doc/v_list_box.rb +6 -0
- data/lib/wx/doc/variant.rb +6 -0
- data/lib/wx/doc/vboxsizer.rb +33 -0
- data/lib/wx/doc/window.rb +6 -0
- data/lib/wx/doc/window_disabler.rb +6 -0
- data/lib/wx/doc/xml_resource.rb +8 -0
- data/lib/wx/global_const.rb +4 -1
- data/lib/wx/grid/grid.rb +23 -3
- data/lib/wx/grid/keyword_defs.rb +8 -1
- data/lib/wx/grid/require.rb +4 -1
- data/lib/wx/grid.rb +4 -1
- data/lib/wx/helpers.rb +8 -1
- data/lib/wx/html/htmlhelpcontroller.rb +29 -3
- data/lib/wx/html/htmlwindow.rb +23 -12
- data/lib/wx/html/keyword_defs.rb +8 -1
- data/lib/wx/html/require.rb +4 -1
- data/lib/wx/html/simple_html_listbox.rb +3 -0
- data/lib/wx/html.rb +4 -1
- data/lib/wx/keyword_ctors.rb +22 -3
- data/lib/wx/keyword_defs.rb +55 -3
- data/lib/wx/pg/events.rb +4 -1
- data/lib/wx/pg/keyword_defs.rb +8 -1
- data/lib/wx/pg/pg_editor.rb +3 -0
- data/lib/wx/pg/pg_properties.rb +4 -1
- data/lib/wx/pg/pg_property.rb +18 -5
- data/lib/wx/pg/property_grid.rb +4 -1
- data/lib/wx/pg/property_grid_interface.rb +3 -0
- data/lib/wx/pg/require.rb +4 -1
- data/lib/wx/pg.rb +4 -1
- data/lib/wx/prt/keyword_defs.rb +8 -1
- data/lib/wx/prt/page_setup_dialog.rb +3 -0
- data/lib/wx/prt/previewframe.rb +5 -0
- data/lib/wx/prt/require.rb +4 -1
- data/lib/wx/prt.rb +4 -1
- data/lib/wx/rbn/events.rb +4 -1
- data/lib/wx/rbn/keyword_defs.rb +8 -1
- data/lib/wx/rbn/require.rb +5 -1
- data/lib/wx/rbn/ribbon_art_provider.rb +3 -1
- data/lib/wx/rbn/ribbon_bar.rb +3 -0
- data/lib/wx/rbn/ribbon_button_bar.rb +3 -0
- data/lib/wx/rbn/ribbon_control.rb +3 -0
- data/lib/wx/rbn/ribbon_gallery.rb +10 -0
- data/lib/wx/rbn/ribbon_page.rb +3 -0
- data/lib/wx/rbn/ribbon_panel.rb +3 -0
- data/lib/wx/rbn/ribbon_tool_bar.rb +3 -0
- data/lib/wx/rbn.rb +4 -1
- data/lib/wx/rtc/ext.rb +4 -1
- data/lib/wx/rtc/keyword_defs.rb +18 -7
- data/lib/wx/rtc/require.rb +8 -1
- data/lib/wx/rtc/richtext_buffer.rb +36 -0
- data/lib/wx/rtc/richtext_formatting_dialog.rb +88 -0
- data/lib/wx/rtc/richtext_style_organiser_dialog.rb +46 -0
- data/lib/wx/rtc/symbol_picker_dialog.rb +47 -0
- data/lib/wx/rtc.rb +5 -1
- data/lib/wx/stc/keyword_defs.rb +8 -1
- data/lib/wx/stc/require.rb +4 -1
- data/lib/wx/stc.rb +4 -1
- data/lib/wx/version.rb +5 -1
- data/lib/wx/wxruby/base.rb +4 -1
- data/lib/wx/wxruby/cmd/sampler.rb +4 -1
- data/lib/wx/wxruby/cmd/test.rb +4 -1
- data/lib/wx.rb +4 -1
- data/lib/wxruby_aui.so +0 -0
- data/lib/wxruby_core.so +0 -0
- data/lib/wxruby_grid.so +0 -0
- data/lib/wxruby_html.so +0 -0
- data/lib/wxruby_pg.so +0 -0
- data/lib/wxruby_prt.so +0 -0
- data/lib/wxruby_rbn.so +0 -0
- data/lib/wxruby_rtc.so +0 -0
- data/lib/wxruby_stc.so +0 -0
- data/rakelib/install.rb +4 -1
- data/rakelib/lib/config/cygwin.rb +4 -1
- data/rakelib/lib/config/linux.rb +4 -1
- data/rakelib/lib/config/macosx.rb +5 -2
- data/rakelib/lib/config/mingw.rb +4 -1
- data/rakelib/lib/config/netbsd.rb +4 -1
- data/rakelib/lib/config/unixish.rb +10 -7
- data/rakelib/lib/config.rb +7 -2
- data/rakelib/lib/ext/enum_chain.rb +4 -1
- data/rakelib/prepost.rake +4 -1
- data/rakelib/prepost.rb +4 -1
- data/samples/aui/aui.rb +8 -3
- data/samples/bigdemo/bigdemo.rb +9 -2
- data/samples/bigdemo/run.rb +9 -2
- data/samples/bigdemo/utils.rb +9 -1
- data/samples/calendar/calendar.rb +9 -4
- data/samples/caret/caret.rb +8 -3
- data/samples/controls/books.rb +8 -2
- data/samples/controls/controls.rb +33 -77
- data/samples/controls/get_item_sample.rb +8 -2
- data/samples/controls/htlbox.rb +10 -3
- data/samples/dialogs/dialogs.rb +9 -4
- data/samples/dialogs/wizard.rb +8 -3
- data/samples/dragdrop/dragdrop.rb +8 -3
- data/samples/drawing/bitmap.rb +8 -3
- data/samples/drawing/bitmap_image.rb +8 -3
- data/samples/drawing/graphics_drawing.rb +44 -33
- data/samples/drawing/image_prt.rb +8 -2
- data/samples/drawing/maths_images.rb +8 -3
- data/samples/drawing/rmagic_bitmap_image.rb +8 -3
- data/samples/etc/choice.rb +8 -3
- data/samples/etc/miniframe.rb +8 -3
- data/samples/etc/sash.rb +8 -3
- data/samples/etc/scrollwin.rb +8 -3
- data/samples/etc/system_settings.rb +8 -3
- data/samples/event/activation.rb +8 -3
- data/samples/event/event.rb +8 -3
- data/samples/event/threaded.rb +8 -3
- data/samples/event/update_ui_event.rb +8 -3
- data/samples/grid/grid.rb +9 -3
- data/samples/grid/gridtablebase.rb +8 -3
- data/samples/html/html.rb +8 -3
- data/samples/mdi/mdi.rb +8 -3
- data/samples/minimal/minimal.rb +8 -3
- data/samples/minimal/nothing.rb +8 -3
- data/samples/printing/printing.rb +8 -3
- data/samples/printing/printing2.rb +8 -2
- data/samples/propgrid/propgrid.rb +4 -1
- data/samples/propgrid/propgrid_minimal.rb +4 -2
- data/samples/propgrid/sample_props.rb +4 -1
- data/samples/ribbon/ribbon.rb +4 -1
- data/samples/sampler/editor.rb +4 -1
- data/samples/sampler/ext.rb +4 -1
- data/samples/sampler/sample.rb +13 -4
- data/samples/sampler/stc_editor.rb +4 -1
- data/samples/sampler/txt_editor.rb +4 -1
- data/samples/sampler.rb +11 -3
- data/samples/splash/splash.rb +4 -2
- data/samples/text/art/richtext/alignleft.xpm +24 -0
- data/samples/text/art/richtext/alignright.xpm +24 -0
- data/samples/text/art/richtext/bold.xpm +24 -0
- data/samples/text/art/richtext/centre.xpm +24 -0
- data/samples/text/art/richtext/copy.xpm +45 -0
- data/samples/text/art/richtext/cut.xpm +47 -0
- data/samples/text/art/richtext/font.xpm +25 -0
- data/samples/text/art/richtext/idea.xpm +47 -0
- data/samples/text/art/richtext/indentless.xpm +25 -0
- data/samples/text/art/richtext/indentmore.xpm +25 -0
- data/samples/text/art/richtext/italic.xpm +25 -0
- data/samples/text/art/richtext/open.xpm +58 -0
- data/samples/text/art/richtext/paste.xpm +47 -0
- data/samples/text/art/richtext/redo.xpm +59 -0
- data/samples/text/art/richtext/save.xpm +43 -0
- data/samples/text/art/richtext/smiley.xpm +42 -0
- data/samples/text/art/richtext/underline.xpm +25 -0
- data/samples/text/art/richtext/undo.xpm +59 -0
- data/samples/text/art/richtext/zebra.xpm +409 -0
- data/samples/text/rich_textctrl.rb +8 -3
- data/samples/text/richtext.rb +1824 -0
- data/samples/text/scintilla.rb +8 -3
- data/samples/text/textctrl.rb +21 -4
- data/samples/text/tn_richtext.png +0 -0
- data/samples/text/unicode.rb +9 -4
- data/samples/treectrl/treectrl.rb +10 -5
- data/samples/xrc/custom_xrc_sample.rb +8 -3
- data/samples/xrc/xrc_sample.rb +8 -3
- data/tests/art/test_art/bitmap/wxruby-128x128.png +0 -0
- data/tests/art/test_art/bitmap/wxruby-256x256.png +0 -0
- data/tests/art/test_art/bitmap/wxruby-64x64.png +0 -0
- data/tests/lib/item_container_tests.rb +3 -0
- data/tests/lib/text_entry_tests.rb +3 -0
- data/tests/lib/wxapp_runner.rb +3 -0
- data/tests/lib/wxframe_runner.rb +81 -3
- data/tests/test_app_event_filter.rb +3 -0
- data/tests/test_app_traits.rb +33 -0
- data/tests/test_art.rb +22 -0
- data/tests/test_art_provider.rb +3 -0
- data/tests/test_aui.rb +65 -0
- data/tests/test_basic.rb +5 -1
- data/tests/test_box_sizer.rb +5 -2
- data/tests/test_clipboard.rb +3 -0
- data/tests/test_config.rb +150 -0
- data/tests/test_dc.rb +3 -0
- data/tests/test_dialog.rb +3 -0
- data/tests/test_event_handling.rb +3 -0
- data/tests/test_events.rb +3 -0
- data/tests/test_ext_controls.rb +286 -3
- data/tests/test_file_dialog.rb +55 -0
- data/tests/test_font.rb +8 -5
- data/tests/test_gdi_object.rb +3 -0
- data/tests/test_geometry.rb +4 -0
- data/tests/test_grid_sizer.rb +7 -4
- data/tests/test_intl.rb +3 -0
- data/tests/test_item_data.rb +3 -0
- data/tests/test_list_ctrl.rb +4 -1
- data/tests/test_log.rb +63 -0
- data/tests/test_proof_check.rb +52 -0
- data/tests/test_richtext.rb +204 -0
- data/tests/test_std_controls.rb +45 -35
- data/tests/test_timer.rb +3 -0
- data/tests/test_variant.rb +3 -0
- data/tests/test_window.rb +10 -8
- data/tests/testapp.rb +4 -0
- data/tests/testapp_noframe.rb +4 -0
- metadata +76 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -13,40 +13,37 @@ module Wx::RTC
|
|
13
13
|
# When the dialog is dismissed, the application can get the selected symbol with {Wx::RTC::SymbolPickerDialog#get_symbol} and test whether a font was specified with {Wx::RTC::SymbolPickerDialog#use_normal_font},fetching the specified font with {Wx::RTC::SymbolPickerDialog#get_font_name}.
|
14
14
|
# Here's a realistic example, inserting the supplied symbol into a rich text control in either the current font or specified font.
|
15
15
|
#
|
16
|
-
# ```
|
17
|
-
#
|
18
|
-
#
|
19
|
-
# wxTextAttr attr;
|
20
|
-
# attr.SetFlags(wxTEXT_ATTR_FONT);
|
21
|
-
# ctrl-GetStyle(ctrl->GetInsertionPoint(), attr);
|
22
|
-
#
|
23
|
-
# wxString currentFontName;
|
24
|
-
# if (attr.HasFont() && attr.GetFont().IsOk())
|
25
|
-
# currentFontName = attr.GetFont().GetFaceName();
|
16
|
+
# ```ruby
|
17
|
+
# ctrl = find_window(ID_RICHTEXT_CTRL)
|
26
18
|
#
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
19
|
+
# attr = Wx::TextAttr.new
|
20
|
+
# attr.set_flags(Wx::TEXT_ATTR_FONT)
|
21
|
+
# ctrl.get_style(ctrl.insertion_point, attr)
|
30
22
|
#
|
31
|
-
#
|
23
|
+
# if attr.has_font? && attr.font.ok?
|
24
|
+
# currentFontName = attr.font.face_name
|
32
25
|
#
|
33
|
-
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
# {
|
37
|
-
# long insertionPoint = ctrl-GetInsertionPoint();
|
26
|
+
# # Don't set the initial font in the dialog (so the user is choosing
|
27
|
+
# # 'normal text', i.e. the current font) but do tell the dialog
|
28
|
+
# # what 'normal text' is.
|
38
29
|
#
|
39
|
-
#
|
30
|
+
# Wx.SymbolPickerDialog("*", '', currentFontName, self) do |dlg|
|
40
31
|
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
#
|
45
|
-
#
|
46
|
-
#
|
47
|
-
#
|
48
|
-
#
|
49
|
-
#
|
32
|
+
# if dlg.show_modal == Wx::ID_OK
|
33
|
+
# if dlg.has_selection?
|
34
|
+
# insertionPoint = ctrl.insertion_point
|
35
|
+
#
|
36
|
+
# ctrl.write_text(dlg.symbol)
|
37
|
+
#
|
38
|
+
# unless dlg.use_normal_font
|
39
|
+
# font = attr.font
|
40
|
+
# font.face_name = dlg.font_name
|
41
|
+
# attr.font = font
|
42
|
+
# ctrl.set_style(insertionPoint, insertionPoint+1, attr)
|
43
|
+
# end
|
44
|
+
# end
|
45
|
+
# end
|
46
|
+
# end
|
50
47
|
# ```
|
51
48
|
#
|
52
49
|
# ===
|
@@ -82,7 +79,7 @@ module Wx::RTC
|
|
82
79
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
83
80
|
# @param size [Array(Integer, Integer), Wx::Size]
|
84
81
|
# @param style [Integer]
|
85
|
-
# @return [
|
82
|
+
# @return [Boolean]
|
86
83
|
def create(symbol, initialFont, normalTextFont, parent, id=Wx::StandardID::ID_ANY, caption=(Wx::GetTranslation.new("Symbols")), pos=Wx::DEFAULT_POSITION, size=(Wx::Size.new(400, 300)), style=(Wx::DEFAULT_DIALOG_STYLE|Wx::RESIZE_BORDER|Wx::CLOSE_BOX)) end
|
87
84
|
|
88
85
|
# Returns the font name (the font reflected in the font list).
|
@@ -91,7 +88,7 @@ module Wx::RTC
|
|
91
88
|
alias_method :font_name, :get_font_name
|
92
89
|
|
93
90
|
# Returns true if the dialog is showing the full range of Unicode characters.
|
94
|
-
# @return [
|
91
|
+
# @return [Boolean]
|
95
92
|
def get_from_unicode; end
|
96
93
|
alias_method :from_unicode, :get_from_unicode
|
97
94
|
|
@@ -111,7 +108,7 @@ module Wx::RTC
|
|
111
108
|
alias_method :symbol_char, :get_symbol_char
|
112
109
|
|
113
110
|
# Returns true if a symbol is selected.
|
114
|
-
# @return [
|
111
|
+
# @return [Boolean]
|
115
112
|
def has_selection; end
|
116
113
|
alias_method :has_selection?, :has_selection
|
117
114
|
|
@@ -122,7 +119,7 @@ module Wx::RTC
|
|
122
119
|
alias_method :font_name=, :set_font_name
|
123
120
|
|
124
121
|
# Sets the internal flag indicating that the full Unicode range should be displayed.
|
125
|
-
# @param value [
|
122
|
+
# @param value [Boolean]
|
126
123
|
# @return [void]
|
127
124
|
def set_from_unicode(value) end
|
128
125
|
alias_method :from_unicode=, :set_from_unicode
|
@@ -140,13 +137,13 @@ module Wx::RTC
|
|
140
137
|
alias_method :symbol=, :set_symbol
|
141
138
|
|
142
139
|
# Sets Unicode display mode.
|
143
|
-
# @param unicodeMode [
|
140
|
+
# @param unicodeMode [Boolean]
|
144
141
|
# @return [void]
|
145
142
|
def set_unicode_mode(unicodeMode) end
|
146
143
|
alias_method :unicode_mode=, :set_unicode_mode
|
147
144
|
|
148
145
|
# Returns true if the has specified normal text - that is, there is no selected font.
|
149
|
-
# @return [
|
146
|
+
# @return [Boolean]
|
150
147
|
def use_normal_font; end
|
151
148
|
|
152
149
|
end # SymbolPickerDialog
|
@@ -92,7 +92,7 @@ module Wx
|
|
92
92
|
|
93
93
|
# Constructor.
|
94
94
|
# @param id [Integer]
|
95
|
-
# @param edge [SashEdgePosition]
|
95
|
+
# @param edge [Wx::SashEdgePosition]
|
96
96
|
# @return [Wx::SashEvent]
|
97
97
|
def initialize(id=0, edge=Wx::SashEdgePosition::SASH_NONE) end
|
98
98
|
|
@@ -104,17 +104,17 @@ module Wx
|
|
104
104
|
|
105
105
|
# Returns the status of the sash: one of {Wx::SashDragStatus::SASH_STATUS_OK}, {Wx::SashDragStatus::SASH_STATUS_OUT_OF_RANGE}.
|
106
106
|
# If the drag caused the notional bounding box of the window to flip over, for example, the drag will be out of rage.
|
107
|
-
# @return [SashDragStatus]
|
107
|
+
# @return [Wx::SashDragStatus]
|
108
108
|
def get_drag_status; end
|
109
109
|
alias_method :drag_status, :get_drag_status
|
110
110
|
|
111
111
|
# Returns the dragged edge.
|
112
112
|
# The return value is one of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
113
|
-
# @return [SashEdgePosition]
|
113
|
+
# @return [Wx::SashEdgePosition]
|
114
114
|
def get_edge; end
|
115
115
|
alias_method :edge, :get_edge
|
116
116
|
|
117
|
-
# @param edge [SashEdgePosition]
|
117
|
+
# @param edge [Wx::SashEdgePosition]
|
118
118
|
# @return [void]
|
119
119
|
def set_edge(edge) end
|
120
120
|
alias_method :edge=, :set_edge
|
@@ -124,7 +124,7 @@ module Wx
|
|
124
124
|
def set_drag_rect(rect) end
|
125
125
|
alias_method :drag_rect=, :set_drag_rect
|
126
126
|
|
127
|
-
# @param status [SashDragStatus]
|
127
|
+
# @param status [Wx::SashDragStatus]
|
128
128
|
# @return [void]
|
129
129
|
def set_drag_status(status) end
|
130
130
|
alias_method :drag_status=, :set_drag_status
|
@@ -95,16 +95,16 @@ module Wx
|
|
95
95
|
# @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.
|
96
96
|
# @param style [Integer] Window style. For window styles, please see {Wx::SashLayoutWindow}.
|
97
97
|
# @param name [String] Window name.
|
98
|
-
# @return [
|
98
|
+
# @return [Boolean]
|
99
99
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::CLIP_CHILDREN|wxSW_3D), name=("layoutWindow")) end
|
100
100
|
|
101
101
|
# Returns the alignment of the window: one of {Wx::LayoutAlignment::LAYOUT_TOP}, {Wx::LayoutAlignment::LAYOUT_LEFT}, {Wx::LayoutAlignment::LAYOUT_RIGHT}, {Wx::LayoutAlignment::LAYOUT_BOTTOM}.
|
102
|
-
# @return [LayoutAlignment]
|
102
|
+
# @return [Wx::LayoutAlignment]
|
103
103
|
def get_alignment; end
|
104
104
|
alias_method :alignment, :get_alignment
|
105
105
|
|
106
106
|
# Returns the orientation of the window: one of {Wx::LayoutOrientation::LAYOUT_HORIZONTAL}, {Wx::LayoutOrientation::LAYOUT_VERTICAL}.
|
107
|
-
# @return [LayoutOrientation]
|
107
|
+
# @return [Wx::LayoutOrientation]
|
108
108
|
def get_orientation; end
|
109
109
|
alias_method :orientation, :get_orientation
|
110
110
|
|
@@ -123,7 +123,7 @@ module Wx
|
|
123
123
|
|
124
124
|
# Sets the alignment of the window (which edge of the available parent client area the window is attached to).
|
125
125
|
# alignment is one of {Wx::LayoutAlignment::LAYOUT_TOP}, {Wx::LayoutAlignment::LAYOUT_LEFT}, {Wx::LayoutAlignment::LAYOUT_RIGHT}, {Wx::LayoutAlignment::LAYOUT_BOTTOM}.
|
126
|
-
# @param alignment [LayoutAlignment]
|
126
|
+
# @param alignment [Wx::LayoutAlignment]
|
127
127
|
# @return [void]
|
128
128
|
def set_alignment(alignment) end
|
129
129
|
alias_method :alignment=, :set_alignment
|
@@ -137,7 +137,7 @@ module Wx
|
|
137
137
|
|
138
138
|
# Sets the orientation of the window (the direction the window will stretch in, to fill the available parent client area).
|
139
139
|
# orientation is one of {Wx::LayoutOrientation::LAYOUT_HORIZONTAL}, {Wx::LayoutOrientation::LAYOUT_VERTICAL}.
|
140
|
-
# @param orientation [LayoutOrientation]
|
140
|
+
# @param orientation [Wx::LayoutOrientation]
|
141
141
|
# @return [void]
|
142
142
|
def set_orientation(orientation) end
|
143
143
|
alias_method :orientation=, :set_orientation
|
@@ -182,21 +182,21 @@ module Wx
|
|
182
182
|
# mainWindow is set to occupy the remaining space. This function simply calls {Wx::LayoutAlgorithm#layout_window}.
|
183
183
|
# @param frame [Wx::Frame]
|
184
184
|
# @param mainWindow [Wx::Window]
|
185
|
-
# @return [
|
185
|
+
# @return [Boolean]
|
186
186
|
def layout_frame(frame, mainWindow=nil) end
|
187
187
|
|
188
188
|
# Lays out the children of an MDI parent frame.
|
189
189
|
# 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.
|
190
190
|
# @param frame [Wx::MDIParentFrame]
|
191
191
|
# @param rect [Wx::Rect]
|
192
|
-
# @return [
|
192
|
+
# @return [Boolean]
|
193
193
|
def layout_mdi_frame(frame, rect=nil) end
|
194
194
|
|
195
195
|
# Lays out the children of a normal frame or other window.
|
196
196
|
# 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).
|
197
197
|
# @param parent [Wx::Window]
|
198
198
|
# @param mainWindow [Wx::Window]
|
199
|
-
# @return [
|
199
|
+
# @return [Boolean]
|
200
200
|
def layout_window(parent, mainWindow=nil) end
|
201
201
|
|
202
202
|
end # LayoutAlgorithm
|
@@ -77,8 +77,8 @@ module Wx
|
|
77
77
|
# Returns true if a sash is visible on the given edge, false otherwise.
|
78
78
|
#
|
79
79
|
# @see Wx::SashWindow#set_sash_visible
|
80
|
-
# @param edge [SashEdgePosition] Edge. One of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
81
|
-
# @return [
|
80
|
+
# @param edge [Wx::SashEdgePosition] Edge. One of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
81
|
+
# @return [Boolean]
|
82
82
|
def get_sash_visible(edge) end
|
83
83
|
alias_method :sash_visible, :get_sash_visible
|
84
84
|
|
@@ -109,13 +109,13 @@ module Wx
|
|
109
109
|
# Call this function to make a sash visible or invisible on a particular edge.
|
110
110
|
#
|
111
111
|
# @see Wx::SashWindow#get_sash_visible
|
112
|
-
# @param edge [SashEdgePosition] Edge to change. One of {Wx::SashEdgePosition::SASH_TOP}, {Wx::SashEdgePosition::SASH_RIGHT}, {Wx::SashEdgePosition::SASH_BOTTOM}, {Wx::SashEdgePosition::SASH_LEFT}.
|
113
|
-
# @param visible [
|
112
|
+
# @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}.
|
113
|
+
# @param visible [Boolean] true to make the sash visible, false to make it invisible.
|
114
114
|
# @return [void]
|
115
115
|
def set_sash_visible(edge, visible) end
|
116
116
|
|
117
117
|
# Get border size.
|
118
|
-
# @param edge [SashEdgePosition]
|
118
|
+
# @param edge [Wx::SashEdgePosition]
|
119
119
|
# @return [Integer]
|
120
120
|
def get_edge_margin(edge) end
|
121
121
|
alias_method :edge_margin, :get_edge_margin
|
@@ -146,7 +146,7 @@ module Wx
|
|
146
146
|
# @param x [Integer]
|
147
147
|
# @param y [Integer]
|
148
148
|
# @param tolerance [Integer]
|
149
|
-
# @return [SashEdgePosition]
|
149
|
+
# @return [Wx::SashEdgePosition]
|
150
150
|
def sash_hit_test(x, y, tolerance=2) end
|
151
151
|
|
152
152
|
# Resizes subwindows.
|
@@ -100,7 +100,7 @@ module Wx
|
|
100
100
|
def initialize(*args) end
|
101
101
|
|
102
102
|
# Scrollbar creation function called by the scrollbar constructor.
|
103
|
-
# See {Wx::ScrollBar#
|
103
|
+
# See {Wx::ScrollBar#initialize} for details.
|
104
104
|
# @param parent [Wx::Window]
|
105
105
|
# @param id [Integer]
|
106
106
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
@@ -108,7 +108,7 @@ module Wx
|
|
108
108
|
# @param style [Integer]
|
109
109
|
# @param validator [Wx::Validator]
|
110
110
|
# @param name [String]
|
111
|
-
# @return [
|
111
|
+
# @return [Boolean]
|
112
112
|
def create(parent, id, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::SB_HORIZONTAL, validator=Wx::DEFAULT_VALIDATOR, name=Wx::ScrollBarNameStr) end
|
113
113
|
|
114
114
|
# Returns the page size of the scrollbar.
|
@@ -149,7 +149,7 @@ module Wx
|
|
149
149
|
# @param thumbSize [Integer] The size of the thumb, or visible portion of the scrollbar, in scroll units.
|
150
150
|
# @param range [Integer] The maximum position of the scrollbar.
|
151
151
|
# @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.
|
152
|
-
# @param refresh [
|
152
|
+
# @param refresh [Boolean] true to redraw the scrollbar, false otherwise.
|
153
153
|
# @return [void]
|
154
154
|
def set_scrollbar(position, thumbSize, range, pageSize, refresh=true) end
|
155
155
|
|
@@ -162,7 +162,7 @@ module Wx
|
|
162
162
|
alias_method :thumb_position=, :set_thumb_position
|
163
163
|
|
164
164
|
# Returns true for scrollbars that have the vertical style set.
|
165
|
-
# @return [
|
165
|
+
# @return [Boolean]
|
166
166
|
def is_vertical; end
|
167
167
|
alias_method :vertical?, :is_vertical
|
168
168
|
|
@@ -81,7 +81,7 @@ module Wx
|
|
81
81
|
|
82
82
|
# @overload initialize()
|
83
83
|
# Default constructor.
|
84
|
-
# @return [Wx::
|
84
|
+
# @return [Wx::ScrolledCanvas]
|
85
85
|
# @overload initialize(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow"))
|
86
86
|
# Constructor.
|
87
87
|
# The window is initially created without visible scrollbars. Call Wx::Scrolled#set_scrollbars to specify how big the virtual window size should be.
|
@@ -91,7 +91,7 @@ module Wx
|
|
91
91
|
# @param size [Array(Integer, Integer), Wx::Size] Window size. If a size of {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
|
92
92
|
# @param style [Integer] Window style. See {Wx::Scrolled}.
|
93
93
|
# @param name [String] Window name.
|
94
|
-
# @return [Wx::
|
94
|
+
# @return [Wx::ScrolledCanvas]
|
95
95
|
def initialize(*args) end
|
96
96
|
|
97
97
|
# @overload calc_scrolled_position(x, y)
|
@@ -127,7 +127,7 @@ module Wx
|
|
127
127
|
# @param size [Array(Integer, Integer), Wx::Size]
|
128
128
|
# @param style [Integer]
|
129
129
|
# @param name [String]
|
130
|
-
# @return [
|
130
|
+
# @return [Boolean]
|
131
131
|
def create(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow")) end
|
132
132
|
|
133
133
|
# Disable use of keyboard keys for scrolling.
|
@@ -166,8 +166,8 @@ module Wx
|
|
166
166
|
# Enable or disable use of {Wx::Window#scroll_window} for scrolling.
|
167
167
|
# By default, when a scrolled window is logically scrolled, {Wx::Window#scroll_window} is called on the underlying window which scrolls the window contents and only invalidates the part of the window newly brought into view. If false is passed as an argument, then this "physical scrolling" is disabled and the window is entirely invalidated whenever it is scrolled by calling {Wx::Window#refresh}.
|
168
168
|
# It should be rarely necessary to disable physical scrolling, so this method shouldn't be called in normal circumstances.
|
169
|
-
# @param xScrolling [
|
170
|
-
# @param yScrolling [
|
169
|
+
# @param xScrolling [Boolean] If true, enables physical scrolling in the x direction.
|
170
|
+
# @param yScrolling [Boolean] If true, enables physical scrolling in the y direction.
|
171
171
|
# @return [void]
|
172
172
|
def enable_scrolling(xScrolling, yScrolling) end
|
173
173
|
|
@@ -179,8 +179,8 @@ module Wx
|
|
179
179
|
# - {Wx::ScrollbarVisibility::SHOW_SB_DEFAULT}: To restore the default behaviour described above.
|
180
180
|
#
|
181
181
|
# Note that the window must be created before calling this method.
|
182
|
-
# @param horz [ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
183
|
-
# @param vert [ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
182
|
+
# @param horz [Wx::ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
183
|
+
# @param vert [Wx::ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
184
184
|
# @return [void]
|
185
185
|
def show_scrollbars(horz, vert) end
|
186
186
|
|
@@ -206,7 +206,7 @@ module Wx
|
|
206
206
|
alias_method :virtual_size, :get_virtual_size
|
207
207
|
|
208
208
|
# Motif only: true if the window has a backing bitmap.
|
209
|
-
# @return [
|
209
|
+
# @return [Boolean]
|
210
210
|
def is_retained; end
|
211
211
|
alias_method :retained?, :is_retained
|
212
212
|
|
@@ -254,7 +254,7 @@ module Wx
|
|
254
254
|
# @param noUnitsY [Integer] Number of units in the vertical direction.
|
255
255
|
# @param xPos [Integer] Position to initialize the scrollbars in the horizontal direction, in scroll units.
|
256
256
|
# @param yPos [Integer] Position to initialize the scrollbars in the vertical direction, in scroll units.
|
257
|
-
# @param noRefresh [
|
257
|
+
# @param noRefresh [Boolean] Will not refresh window if true.
|
258
258
|
# @return [void]
|
259
259
|
def set_scrollbars(pixelsPerUnitX, pixelsPerUnitY, noUnitsX, noUnitsY, xPos=0, yPos=0, noRefresh=false) end
|
260
260
|
|
@@ -311,7 +311,7 @@ module Wx
|
|
311
311
|
def adjust_scrollbars; end
|
312
312
|
|
313
313
|
# Are we generating the autoscroll events?
|
314
|
-
# @return [
|
314
|
+
# @return [Boolean]
|
315
315
|
def is_auto_scrolling; end
|
316
316
|
alias_method :auto_scrolling?, :is_auto_scrolling
|
317
317
|
|
@@ -319,12 +319,6 @@ module Wx
|
|
319
319
|
# @return [void]
|
320
320
|
def stop_auto_scrolling; end
|
321
321
|
|
322
|
-
# This method can be overridden in a derived class to forbid sending the auto scroll events - note that unlike Wx::Scrolled#stop_auto_scrolling it doesn't stop the timer, so it will be called repeatedly and will typically return different values depending on the current mouse position.
|
323
|
-
# The base class version just returns true.
|
324
|
-
# @param event [Wx::ScrollWinEvent]
|
325
|
-
# @return [true,false]
|
326
|
-
def send_auto_scroll_events(event) end
|
327
|
-
|
328
322
|
end # ScrolledCanvas
|
329
323
|
|
330
324
|
|
@@ -81,7 +81,7 @@ module Wx
|
|
81
81
|
|
82
82
|
# @overload initialize()
|
83
83
|
# Default constructor.
|
84
|
-
# @return [Wx::
|
84
|
+
# @return [Wx::ScrolledControl]
|
85
85
|
# @overload initialize(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow"))
|
86
86
|
# Constructor.
|
87
87
|
# The window is initially created without visible scrollbars. Call Wx::Scrolled#set_scrollbars to specify how big the virtual window size should be.
|
@@ -91,7 +91,7 @@ module Wx
|
|
91
91
|
# @param size [Array(Integer, Integer), Wx::Size] Window size. If a size of {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
|
92
92
|
# @param style [Integer] Window style. See {Wx::Scrolled}.
|
93
93
|
# @param name [String] Window name.
|
94
|
-
# @return [Wx::
|
94
|
+
# @return [Wx::ScrolledControl]
|
95
95
|
def initialize(*args) end
|
96
96
|
|
97
97
|
# @overload calc_scrolled_position(x, y)
|
@@ -127,7 +127,7 @@ module Wx
|
|
127
127
|
# @param size [Array(Integer, Integer), Wx::Size]
|
128
128
|
# @param style [Integer]
|
129
129
|
# @param name [String]
|
130
|
-
# @return [
|
130
|
+
# @return [Boolean]
|
131
131
|
def create(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow")) end
|
132
132
|
|
133
133
|
# Disable use of keyboard keys for scrolling.
|
@@ -166,8 +166,8 @@ module Wx
|
|
166
166
|
# Enable or disable use of {Wx::Window#scroll_window} for scrolling.
|
167
167
|
# By default, when a scrolled window is logically scrolled, {Wx::Window#scroll_window} is called on the underlying window which scrolls the window contents and only invalidates the part of the window newly brought into view. If false is passed as an argument, then this "physical scrolling" is disabled and the window is entirely invalidated whenever it is scrolled by calling {Wx::Window#refresh}.
|
168
168
|
# It should be rarely necessary to disable physical scrolling, so this method shouldn't be called in normal circumstances.
|
169
|
-
# @param xScrolling [
|
170
|
-
# @param yScrolling [
|
169
|
+
# @param xScrolling [Boolean] If true, enables physical scrolling in the x direction.
|
170
|
+
# @param yScrolling [Boolean] If true, enables physical scrolling in the y direction.
|
171
171
|
# @return [void]
|
172
172
|
def enable_scrolling(xScrolling, yScrolling) end
|
173
173
|
|
@@ -179,8 +179,8 @@ module Wx
|
|
179
179
|
# - {Wx::ScrollbarVisibility::SHOW_SB_DEFAULT}: To restore the default behaviour described above.
|
180
180
|
#
|
181
181
|
# Note that the window must be created before calling this method.
|
182
|
-
# @param horz [ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
183
|
-
# @param vert [ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
182
|
+
# @param horz [Wx::ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
183
|
+
# @param vert [Wx::ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
184
184
|
# @return [void]
|
185
185
|
def show_scrollbars(horz, vert) end
|
186
186
|
|
@@ -206,7 +206,7 @@ module Wx
|
|
206
206
|
alias_method :virtual_size, :get_virtual_size
|
207
207
|
|
208
208
|
# Motif only: true if the window has a backing bitmap.
|
209
|
-
# @return [
|
209
|
+
# @return [Boolean]
|
210
210
|
def is_retained; end
|
211
211
|
alias_method :retained?, :is_retained
|
212
212
|
|
@@ -254,7 +254,7 @@ module Wx
|
|
254
254
|
# @param noUnitsY [Integer] Number of units in the vertical direction.
|
255
255
|
# @param xPos [Integer] Position to initialize the scrollbars in the horizontal direction, in scroll units.
|
256
256
|
# @param yPos [Integer] Position to initialize the scrollbars in the vertical direction, in scroll units.
|
257
|
-
# @param noRefresh [
|
257
|
+
# @param noRefresh [Boolean] Will not refresh window if true.
|
258
258
|
# @return [void]
|
259
259
|
def set_scrollbars(pixelsPerUnitX, pixelsPerUnitY, noUnitsX, noUnitsY, xPos=0, yPos=0, noRefresh=false) end
|
260
260
|
|
@@ -311,7 +311,7 @@ module Wx
|
|
311
311
|
def adjust_scrollbars; end
|
312
312
|
|
313
313
|
# Are we generating the autoscroll events?
|
314
|
-
# @return [
|
314
|
+
# @return [Boolean]
|
315
315
|
def is_auto_scrolling; end
|
316
316
|
alias_method :auto_scrolling?, :is_auto_scrolling
|
317
317
|
|
@@ -319,12 +319,6 @@ module Wx
|
|
319
319
|
# @return [void]
|
320
320
|
def stop_auto_scrolling; end
|
321
321
|
|
322
|
-
# This method can be overridden in a derived class to forbid sending the auto scroll events - note that unlike Wx::Scrolled#stop_auto_scrolling it doesn't stop the timer, so it will be called repeatedly and will typically return different values depending on the current mouse position.
|
323
|
-
# The base class version just returns true.
|
324
|
-
# @param event [Wx::ScrollWinEvent]
|
325
|
-
# @return [true,false]
|
326
|
-
def send_auto_scroll_events(event) end
|
327
|
-
|
328
322
|
end # ScrolledControl
|
329
323
|
|
330
324
|
|
@@ -101,7 +101,7 @@ module Wx
|
|
101
101
|
|
102
102
|
# @overload initialize()
|
103
103
|
# Default constructor.
|
104
|
-
# @return [Wx::
|
104
|
+
# @return [Wx::ScrolledWindow]
|
105
105
|
# @overload initialize(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow"))
|
106
106
|
# Constructor.
|
107
107
|
# The window is initially created without visible scrollbars. Call Wx::Scrolled#set_scrollbars to specify how big the virtual window size should be.
|
@@ -111,7 +111,7 @@ module Wx
|
|
111
111
|
# @param size [Array(Integer, Integer), Wx::Size] Window size. If a size of {Wx::DEFAULT_SIZE} is specified then the window is sized appropriately.
|
112
112
|
# @param style [Integer] Window style. See {Wx::Scrolled}.
|
113
113
|
# @param name [String] Window name.
|
114
|
-
# @return [Wx::
|
114
|
+
# @return [Wx::ScrolledWindow]
|
115
115
|
def initialize(*args) end
|
116
116
|
|
117
117
|
# @overload calc_scrolled_position(x, y)
|
@@ -147,7 +147,7 @@ module Wx
|
|
147
147
|
# @param size [Array(Integer, Integer), Wx::Size]
|
148
148
|
# @param style [Integer]
|
149
149
|
# @param name [String]
|
150
|
-
# @return [
|
150
|
+
# @return [Boolean]
|
151
151
|
def create(parent, id=-1, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::HSCROLL|Wx::VSCROLL), name=("scrolledWindow")) end
|
152
152
|
|
153
153
|
# Disable use of keyboard keys for scrolling.
|
@@ -186,8 +186,8 @@ module Wx
|
|
186
186
|
# Enable or disable use of {Wx::Window#scroll_window} for scrolling.
|
187
187
|
# By default, when a scrolled window is logically scrolled, {Wx::Window#scroll_window} is called on the underlying window which scrolls the window contents and only invalidates the part of the window newly brought into view. If false is passed as an argument, then this "physical scrolling" is disabled and the window is entirely invalidated whenever it is scrolled by calling {Wx::Window#refresh}.
|
188
188
|
# It should be rarely necessary to disable physical scrolling, so this method shouldn't be called in normal circumstances.
|
189
|
-
# @param xScrolling [
|
190
|
-
# @param yScrolling [
|
189
|
+
# @param xScrolling [Boolean] If true, enables physical scrolling in the x direction.
|
190
|
+
# @param yScrolling [Boolean] If true, enables physical scrolling in the y direction.
|
191
191
|
# @return [void]
|
192
192
|
def enable_scrolling(xScrolling, yScrolling) end
|
193
193
|
|
@@ -199,8 +199,8 @@ module Wx
|
|
199
199
|
# - {Wx::ScrollbarVisibility::SHOW_SB_DEFAULT}: To restore the default behaviour described above.
|
200
200
|
#
|
201
201
|
# Note that the window must be created before calling this method.
|
202
|
-
# @param horz [ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
203
|
-
# @param vert [ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
202
|
+
# @param horz [Wx::ScrollbarVisibility] The desired visibility for the horizontal scrollbar.
|
203
|
+
# @param vert [Wx::ScrollbarVisibility] The desired visibility for the vertical scrollbar.
|
204
204
|
# @return [void]
|
205
205
|
def show_scrollbars(horz, vert) end
|
206
206
|
|
@@ -226,7 +226,7 @@ module Wx
|
|
226
226
|
alias_method :virtual_size, :get_virtual_size
|
227
227
|
|
228
228
|
# Motif only: true if the window has a backing bitmap.
|
229
|
-
# @return [
|
229
|
+
# @return [Boolean]
|
230
230
|
def is_retained; end
|
231
231
|
alias_method :retained?, :is_retained
|
232
232
|
|
@@ -274,7 +274,7 @@ module Wx
|
|
274
274
|
# @param noUnitsY [Integer] Number of units in the vertical direction.
|
275
275
|
# @param xPos [Integer] Position to initialize the scrollbars in the horizontal direction, in scroll units.
|
276
276
|
# @param yPos [Integer] Position to initialize the scrollbars in the vertical direction, in scroll units.
|
277
|
-
# @param noRefresh [
|
277
|
+
# @param noRefresh [Boolean] Will not refresh window if true.
|
278
278
|
# @return [void]
|
279
279
|
def set_scrollbars(pixelsPerUnitX, pixelsPerUnitY, noUnitsX, noUnitsY, xPos=0, yPos=0, noRefresh=false) end
|
280
280
|
|
@@ -331,7 +331,7 @@ module Wx
|
|
331
331
|
def adjust_scrollbars; end
|
332
332
|
|
333
333
|
# Are we generating the autoscroll events?
|
334
|
-
# @return [
|
334
|
+
# @return [Boolean]
|
335
335
|
def is_auto_scrolling; end
|
336
336
|
alias_method :auto_scrolling?, :is_auto_scrolling
|
337
337
|
|
@@ -339,12 +339,6 @@ module Wx
|
|
339
339
|
# @return [void]
|
340
340
|
def stop_auto_scrolling; end
|
341
341
|
|
342
|
-
# This method can be overridden in a derived class to forbid sending the auto scroll events - note that unlike Wx::Scrolled#stop_auto_scrolling it doesn't stop the timer, so it will be called repeatedly and will typically return different values depending on the current mouse position.
|
343
|
-
# The base class version just returns true.
|
344
|
-
# @param event [Wx::ScrollWinEvent]
|
345
|
-
# @return [true,false]
|
346
|
-
def send_auto_scroll_events(event) end
|
347
|
-
|
348
342
|
end # ScrolledWindow
|
349
343
|
|
350
344
|
|
@@ -82,7 +82,7 @@ module Wx
|
|
82
82
|
# @param style [Integer]
|
83
83
|
# @param validator [Wx::Validator]
|
84
84
|
# @param name [String]
|
85
|
-
# @return [
|
85
|
+
# @return [Boolean]
|
86
86
|
def create(parent, id, value=(''), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, validator=Wx::DEFAULT_VALIDATOR, name=Wx::SearchCtrlNameStr) end
|
87
87
|
|
88
88
|
# Returns a pointer to the search control's menu object or NULL if there is no menu attached.
|
@@ -92,12 +92,12 @@ module Wx
|
|
92
92
|
|
93
93
|
# Returns the search button visibility value.
|
94
94
|
# If there is a menu attached, the search button will be visible regardless of the search button visibility value.
|
95
|
-
# @return [
|
95
|
+
# @return [Boolean]
|
96
96
|
def is_search_button_visible; end
|
97
97
|
alias_method :search_button_visible?, :is_search_button_visible
|
98
98
|
|
99
99
|
# Returns the cancel button's visibility state.
|
100
|
-
# @return [
|
100
|
+
# @return [Boolean]
|
101
101
|
def is_cancel_button_visible; end
|
102
102
|
alias_method :cancel_button_visible?, :is_cancel_button_visible
|
103
103
|
|
@@ -110,14 +110,14 @@ module Wx
|
|
110
110
|
|
111
111
|
# Shows or hides the cancel button.
|
112
112
|
# Note that this function does nothing in the native GTK version of the control: "Cancel" button is always shown automatically if the control is not empty and hidden if it is empty.
|
113
|
-
# @param show [
|
113
|
+
# @param show [Boolean]
|
114
114
|
# @return [void]
|
115
115
|
def show_cancel_button(show) end
|
116
116
|
|
117
117
|
# Sets the search button visibility value on the search control.
|
118
118
|
# If there is a menu attached, the search button will be visible regardless of the search button visibility value.
|
119
119
|
# Note that this function does nothing in the native GTK version of the control: "Search" button is always shown there.
|
120
|
-
# @param show [
|
120
|
+
# @param show [Boolean]
|
121
121
|
# @return [void]
|
122
122
|
def show_search_button(show) end
|
123
123
|
|
@@ -44,22 +44,22 @@ module Wx
|
|
44
44
|
# @param size [Array(Integer, Integer), Wx::Size]
|
45
45
|
# @param style [Integer]
|
46
46
|
# @param name [String]
|
47
|
-
# @return [
|
47
|
+
# @return [Boolean]
|
48
48
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0, name=('')) end
|
49
49
|
|
50
50
|
# Set the effects to use for showing and hiding the pages.
|
51
51
|
# This method allows specifying the effects passed to {Wx::Window#show_with_effect} and {Wx::Window#hide_with_effect} respectively when the pages need to be shown or hidden.
|
52
52
|
# By default, no effects are used, but as the pages are only changed by the program and not the user himself, it may be useful to use some visual effects to make the changes more noticeable.
|
53
53
|
# @see Wx::Simplebook#set_effects_timeouts
|
54
|
-
# @param showEffect [ShowEffect] The effect to use for showing the newly selected page.
|
55
|
-
# @param hideEffect [ShowEffect] The effect to use for hiding the previously selected page.
|
54
|
+
# @param showEffect [Wx::ShowEffect] The effect to use for showing the newly selected page.
|
55
|
+
# @param hideEffect [Wx::ShowEffect] The effect to use for hiding the previously selected page.
|
56
56
|
# @return [void]
|
57
57
|
def set_effects(showEffect, hideEffect) end
|
58
58
|
|
59
59
|
# Set the same effect to use for both showing and hiding the pages.
|
60
60
|
# This is the same as <code>SetEffects(effect, effect)</code>.
|
61
61
|
# @see Wx::Simplebook#set_effect_timeout
|
62
|
-
# @param effect [ShowEffect]
|
62
|
+
# @param effect [Wx::ShowEffect]
|
63
63
|
# @return [void]
|
64
64
|
def set_effect(effect) end
|
65
65
|
alias_method :effect=, :set_effect
|
@@ -84,7 +84,7 @@ module Wx
|
|
84
84
|
# Add a new page and show it immediately.
|
85
85
|
# This is simply a thin wrapper around the base class {Wx::BookCtrlBase#add_page} method using empty label (which is unused by this class anyhow) and selecting the new page immediately.
|
86
86
|
# @param page [Wx::Window]
|
87
|
-
# @return [
|
87
|
+
# @return [Boolean]
|
88
88
|
def show_new_page(page) end
|
89
89
|
|
90
90
|
end # Simplebook
|
@@ -42,11 +42,10 @@ module Wx
|
|
42
42
|
# @param message [String] Message to show on the dialog.
|
43
43
|
# @param caption [String] The dialog caption.
|
44
44
|
# @param choices [Array<String>] An array of strings, or a string list, containing the choices.
|
45
|
-
# @param clientData [void] An array of client data to be associated with the items. See {Wx::SingleChoiceDialog#get_selection_data}.
|
46
45
|
# @param style [Integer] A dialog style (bitlist) containing flags chosen from standard dialog styles and the ones listed in the class documentation. The default value is equivalent to {Wx::DEFAULT_DIALOG_STYLE} | {Wx::RESIZE_BORDER} | {Wx::OK} | {Wx::CANCEL} | {Wx::GeometryCentre::CENTRE}.
|
47
46
|
# @param pos [Array(Integer, Integer), Wx::Point] Dialog position.
|
48
47
|
# @return [Wx::SingleChoiceDialog]
|
49
|
-
def initialize(parent, message, caption, choices,
|
48
|
+
def initialize(parent, message, caption, choices, style=Wx::CHOICEDLG_STYLE, pos=Wx::DEFAULT_POSITION) end
|
50
49
|
|
51
50
|
# Returns the index of selected item.
|
52
51
|
# @return [Integer]
|