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
@@ -41,7 +41,7 @@ module Wx
|
|
41
41
|
#
|
42
42
|
# true if this handler of one of those chained to it processed the event.
|
43
43
|
# @param event [Wx::Event] Event to process.
|
44
|
-
# @return [
|
44
|
+
# @return [Boolean]
|
45
45
|
def process_event_locally(event) end
|
46
46
|
|
47
47
|
# Processes an event by calling {Wx::EvtHandler#process_event} and handles any exceptions that occur in the process.
|
@@ -50,7 +50,7 @@ module Wx
|
|
50
50
|
# true if the event was processed, false if no handler was found or an exception was thrown.
|
51
51
|
# @see Wx::Window#handle_window_event
|
52
52
|
# @param event [Wx::Event] Event to process.
|
53
|
-
# @return [
|
53
|
+
# @return [Boolean]
|
54
54
|
def safely_process_event(event) end
|
55
55
|
|
56
56
|
# Processes the pending events previously queued using {Wx::EvtHandler#queue_event} or {Wx::EvtHandler#add_pending_event}; you must call this function only if you are sure there are pending events for this handler, otherwise a {Wx::CHECK} will fail.
|
@@ -67,7 +67,7 @@ module Wx
|
|
67
67
|
# Returns true if the event handler is enabled, false otherwise.
|
68
68
|
#
|
69
69
|
# @see Wx::EvtHandler#set_evt_handler_enabled
|
70
|
-
# @return [
|
70
|
+
# @return [Boolean]
|
71
71
|
def get_evt_handler_enabled; end
|
72
72
|
alias_method :evt_handler_enabled, :get_evt_handler_enabled
|
73
73
|
|
@@ -96,7 +96,7 @@ module Wx
|
|
96
96
|
# Enables or disables the event handler.
|
97
97
|
# You can use this function to avoid having to remove the event handler from the chain, for example when implementing a dialog editor and changing from edit to test mode.
|
98
98
|
# @see Wx::EvtHandler#get_evt_handler_enabled
|
99
|
-
# @param enabled [
|
99
|
+
# @param enabled [Boolean] true if the event handler is to be enabled, false if it is to be disabled.
|
100
100
|
# @return [void]
|
101
101
|
def set_evt_handler_enabled(enabled) end
|
102
102
|
alias_method :evt_handler_enabled=, :set_evt_handler_enabled
|
@@ -131,7 +131,7 @@ module Wx
|
|
131
131
|
#
|
132
132
|
# @see Wx::EvtHandler#set_previous_handler
|
133
133
|
# @see Wx::EvtHandler#set_next_handler
|
134
|
-
# @return [
|
134
|
+
# @return [Boolean]
|
135
135
|
def is_unlinked; end
|
136
136
|
alias_method :unlinked?, :is_unlinked
|
137
137
|
|
@@ -171,7 +171,7 @@ module Wx
|
|
171
171
|
# ```
|
172
172
|
# @see Wx::EvtHandler#process_event
|
173
173
|
# @param event [Wx::Event]
|
174
|
-
# @return [
|
174
|
+
# @return [Boolean]
|
175
175
|
def try_before(event) end
|
176
176
|
|
177
177
|
# Method called by {Wx::EvtHandler#process_event} as last resort.
|
@@ -191,7 +191,7 @@ module Wx
|
|
191
191
|
# ```
|
192
192
|
# @see Wx::EvtHandler#process_event
|
193
193
|
# @param event [Wx::Event]
|
194
|
-
# @return [
|
194
|
+
# @return [Boolean]
|
195
195
|
def try_after(event) end
|
196
196
|
|
197
197
|
end # EvtHandler
|
@@ -36,19 +36,19 @@ module Wx
|
|
36
36
|
#
|
37
37
|
# true on success
|
38
38
|
# @param dir [String] directory name where to fine the help files
|
39
|
-
# @return [
|
39
|
+
# @return [Boolean]
|
40
40
|
def init(dir) end
|
41
41
|
|
42
42
|
# Display list of all help entries.
|
43
43
|
# true on success
|
44
|
-
# @return [
|
44
|
+
# @return [Boolean]
|
45
45
|
def display_contents; end
|
46
46
|
|
47
47
|
# Search comment/documentation fields in map file and present a list to chose from.
|
48
48
|
# true on success
|
49
49
|
# @param k [String] string to search for, empty string will list all entries
|
50
|
-
# @param mode [HelpSearchMode] optional parameter allows the search the index ({Wx::HelpSearchMode::HELP_SEARCH_INDEX}) but this currently only supported by the {Wx::HTML::HtmlHelpController}.
|
51
|
-
# @return [
|
50
|
+
# @param mode [Wx::HelpSearchMode] optional parameter allows the search the index ({Wx::HelpSearchMode::HELP_SEARCH_INDEX}) but this currently only supported by the {Wx::HTML::HtmlHelpController}.
|
51
|
+
# @return [Boolean]
|
52
52
|
def keyword_search(k, mode=Wx::HelpSearchMode::HELP_SEARCH_ALL) end
|
53
53
|
|
54
54
|
# Does nothing.
|
@@ -57,28 +57,28 @@ module Wx
|
|
57
57
|
|
58
58
|
# Call the browser using a relative URL.
|
59
59
|
# @param relativeURL [String]
|
60
|
-
# @return [
|
60
|
+
# @return [Boolean]
|
61
61
|
def display_help(relativeURL) end
|
62
62
|
|
63
63
|
# Allows one to override the default settings for the help frame.
|
64
64
|
# @param titleFormat [String]
|
65
65
|
# @param size [Array(Integer, Integer), Wx::Size]
|
66
66
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
67
|
-
# @param newFrameEachTime [
|
67
|
+
# @param newFrameEachTime [Boolean]
|
68
68
|
# @return [void]
|
69
69
|
def set_frame_parameters(titleFormat, size, pos=Wx::DEFAULT_POSITION, newFrameEachTime=false) end
|
70
70
|
|
71
71
|
# Displays the section as a popup window using a context id.
|
72
72
|
# Returns false if unsuccessful or not implemented.
|
73
73
|
# @param contextId [Integer]
|
74
|
-
# @return [
|
74
|
+
# @return [Boolean]
|
75
75
|
def display_context_popup(contextId) end
|
76
76
|
|
77
77
|
# Displays the text in a popup window, if possible.
|
78
78
|
# Returns false if unsuccessful or not implemented.
|
79
79
|
# @param text [String]
|
80
80
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
81
|
-
# @return [
|
81
|
+
# @return [Boolean]
|
82
82
|
def display_text_popup(text, pos) end
|
83
83
|
|
84
84
|
# Returns the window to be used as the parent for the help window.
|
@@ -121,9 +121,11 @@ module Wx
|
|
121
121
|
#
|
122
122
|
# == Dialog Customization
|
123
123
|
#
|
124
|
-
# Uniquely among the other standard dialogs, {Wx::FileDialog} can be customized by adding extra controls to it. Moreover, there are two ways to do it: the first one is to define a callback function and use {Wx::FileDialog#set_extra_control_creator} to tell the dialog to call it, while the second one requires defining a class inheriting from {Wx::FileDialogCustomizeHook} and implementing its virtual functions, notably Wx::FileDialogCustomizeHook#add_custom_controls where the extra controls have to be created, and finally calling {Wx::FileDialog#set_customize_hook} with this custom hook object.
|
124
|
+
# Uniquely among the other standard dialogs, {Wx::FileDialog} can be customized by adding extra controls to it. Moreover, there are two ways to do it: the first one is to define a callback function and use {Wx::FileDialog#set_extra_control_creator} to tell the dialog to call it, while the second one requires defining a class inheriting from {Wx::FileDialogCustomizeHook} and implementing its virtual functions, notably {Wx::FileDialogCustomizeHook#add_custom_controls} where the extra controls have to be created, and finally calling {Wx::FileDialog#set_customize_hook} with this custom hook object.
|
125
125
|
# The first approach is somewhat simpler and more flexible, as it allows to create any kind of custom controls, but is not supported by the "new style" (where "new" means used since Windows Vista, i.e. circa 2007) file dialogs under MSW. Because of this, calling {Wx::FileDialog#set_extra_control_creator} in wxMSW forces the use of old style (Windows XP) dialogs, that may look out of place. The second approach is implemented by the MSW dialogs natively and doesn't suffer from this limitation, so its use is recommended, especially if the few simple control types supported by it (see {Wx::FileDialogCustomize} for more information about the supported controls) are sufficient for your needs.
|
126
126
|
# Both of the approaches to the dialog customization are demonstrated in the Dialogs Sample, please check it for more details.
|
127
|
+
# New style file dialogs can only be used in wxMSW when the apartment, COM threading model is used. This is the case by default, but if the application initializes COM on its own using multi-threaded model, old style dialogs are used, at least when they must have a parent, as the new style dialog doesn't support this threading model.
|
128
|
+
#
|
127
129
|
# === Styles
|
128
130
|
#
|
129
131
|
# This class supports the following styles:
|
@@ -254,7 +256,7 @@ module Wx
|
|
254
256
|
#
|
255
257
|
# true if the hook was successfully set or false if customizing the file dialog is not supported by the current platform.
|
256
258
|
# @param customizeHook [Wx::FileDialogCustomizeHook] The hook object that will be used by the dialog. This object must remain valid at least until {Wx::FileDialog#show_modal} returns.
|
257
|
-
# @return [
|
259
|
+
# @return [Boolean]
|
258
260
|
def set_customize_hook(customizeHook) end
|
259
261
|
alias_method :customize_hook=, :set_customize_hook
|
260
262
|
|
@@ -0,0 +1,146 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# This file is automatically generated by the WXRuby3 documentation
|
3
|
+
# generator. Do not alter this file.
|
4
|
+
# :startdoc:
|
5
|
+
|
6
|
+
|
7
|
+
module Wx
|
8
|
+
|
9
|
+
# The base class for all {Wx::FileDialog} custom controls.
|
10
|
+
# Unlike normal controls, inheriting from {Wx::Window}, custom controls in {Wx::FileDialog} are not actual windows, but they do provide some window-like operations, and can be disabled or hidden, just as the windows are.
|
11
|
+
# Also, similarly to the normal windows, objects of this and derived classes belong to wxWidgets and must not be deleted by the application code.
|
12
|
+
# Unlike windows, custom controls cannot be created directly, but can only be returned from {Wx::FileDialogCustomize} functions that are specifically provided for creating them.
|
13
|
+
#
|
14
|
+
class FileDialogCustomControl < EvtHandler
|
15
|
+
|
16
|
+
# Show or hide this control.
|
17
|
+
# @param show [Boolean]
|
18
|
+
# @return [void]
|
19
|
+
def show(show=true) end
|
20
|
+
|
21
|
+
# Hide this control.
|
22
|
+
# This is equivalent to <code>Show(false)</code>.
|
23
|
+
# @return [void]
|
24
|
+
def hide; end
|
25
|
+
|
26
|
+
# Enable or disable this control.
|
27
|
+
# @param enable [Boolean]
|
28
|
+
# @return [void]
|
29
|
+
def enable(enable=true) end
|
30
|
+
|
31
|
+
# Disable this control.
|
32
|
+
# This is equivalent to <code>Enable(false)</code>.
|
33
|
+
# @return [void]
|
34
|
+
def disable; end
|
35
|
+
|
36
|
+
end # FileDialogCustomControl
|
37
|
+
|
38
|
+
# Represents a custom button inside {Wx::FileDialog}.
|
39
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_button}.
|
40
|
+
# It is possible to bind to {Wx::EVT_BUTTON} events on this object, which will be generated when the button is clicked.
|
41
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
42
|
+
#
|
43
|
+
class FileDialogButton < FileDialogCustomControl
|
44
|
+
|
45
|
+
end # FileDialogButton
|
46
|
+
|
47
|
+
# Represents a custom checkbox inside {Wx::FileDialog}.
|
48
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_check_box}.
|
49
|
+
# It is possible to bind to {Wx::EVT_CHECKBOX} events on this object, which will be generated when the checkbox is clicked.
|
50
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
51
|
+
#
|
52
|
+
class FileDialogCheckBox < FileDialogCustomControl
|
53
|
+
|
54
|
+
# Return true if the checkbox is checked.
|
55
|
+
# @return [Boolean]
|
56
|
+
def get_value; end
|
57
|
+
alias_method :value, :get_value
|
58
|
+
|
59
|
+
# Check or uncheck the checkbox.
|
60
|
+
# @param value [Boolean]
|
61
|
+
# @return [void]
|
62
|
+
def set_value(value) end
|
63
|
+
alias_method :value=, :set_value
|
64
|
+
|
65
|
+
end # FileDialogCheckBox
|
66
|
+
|
67
|
+
# Represents a custom radio button inside {Wx::FileDialog}.
|
68
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_radio_button}.
|
69
|
+
# It is possible to bind to {Wx::EVT_RADIOBUTTON} events on this object, which will be generated when the radio button is selected.
|
70
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
71
|
+
#
|
72
|
+
class FileDialogRadioButton < FileDialogCustomControl
|
73
|
+
|
74
|
+
# Return true if the radio button is selected.
|
75
|
+
# @return [Boolean]
|
76
|
+
def get_value; end
|
77
|
+
alias_method :value, :get_value
|
78
|
+
|
79
|
+
# Select the value of the radio button.
|
80
|
+
# Using false for value is not supported, this argument only exists for consistency with {Wx::RadioButton#set_value}.
|
81
|
+
# @param value [Boolean]
|
82
|
+
# @return [void]
|
83
|
+
def set_value(value) end
|
84
|
+
alias_method :value=, :set_value
|
85
|
+
|
86
|
+
end # FileDialogRadioButton
|
87
|
+
|
88
|
+
# Represents a custom read-only combobox inside {Wx::FileDialog}.
|
89
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_choice}.
|
90
|
+
# It is possible to bind to {Wx::EVT_CHOICE} events on this object, which will be generated when the selection in the combobox changes.
|
91
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
92
|
+
#
|
93
|
+
class FileDialogChoice < FileDialogCustomControl
|
94
|
+
|
95
|
+
# Return the index of the selected item, possibly {Wx::NOT_FOUND}.
|
96
|
+
# @return [Integer]
|
97
|
+
def get_selection; end
|
98
|
+
alias_method :selection, :get_selection
|
99
|
+
|
100
|
+
# Set the selection to the item with the given index.
|
101
|
+
# Using {Wx::NOT_FOUND} for n is not supported, once a selection is made it cannot be undone.
|
102
|
+
# @param n [Integer]
|
103
|
+
# @return [void]
|
104
|
+
def set_selection(n) end
|
105
|
+
alias_method :selection=, :set_selection
|
106
|
+
|
107
|
+
end # FileDialogChoice
|
108
|
+
|
109
|
+
# Represents a custom text control inside {Wx::FileDialog}.
|
110
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_text_ctrl}.
|
111
|
+
# Objects of this class don't generate any events currently.
|
112
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
113
|
+
#
|
114
|
+
class FileDialogTextCtrl < FileDialogCustomControl
|
115
|
+
|
116
|
+
# Get the current value entered into the control.
|
117
|
+
# @return [String]
|
118
|
+
def get_value; end
|
119
|
+
alias_method :value, :get_value
|
120
|
+
|
121
|
+
# Set the current control value.
|
122
|
+
# @param text [String]
|
123
|
+
# @return [void]
|
124
|
+
def set_value(text) end
|
125
|
+
alias_method :value=, :set_value
|
126
|
+
|
127
|
+
end # FileDialogTextCtrl
|
128
|
+
|
129
|
+
# Represents a custom static text inside {Wx::FileDialog}.
|
130
|
+
# Objects of this class can only be created by {Wx::FileDialogCustomize#add_static_text}.
|
131
|
+
# Objects of this class don't generate any events.
|
132
|
+
# See {Wx::FileDialogCustomControl} for more information.
|
133
|
+
#
|
134
|
+
class FileDialogStaticText < FileDialogCustomControl
|
135
|
+
|
136
|
+
# Set the text shown in the label.
|
137
|
+
# Any ampersands in the text will be escaped, there is no need to do it manually, e.g. using {Wx::Control.escape_mnemonics}.
|
138
|
+
# @param text [String]
|
139
|
+
# @return [void]
|
140
|
+
def set_label_text(text) end
|
141
|
+
alias_method :label_text=, :set_label_text
|
142
|
+
|
143
|
+
end # FileDialogStaticText
|
144
|
+
|
145
|
+
|
146
|
+
end
|
@@ -0,0 +1,159 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# This file is automatically generated by the WXRuby3 documentation
|
3
|
+
# generator. Do not alter this file.
|
4
|
+
# :startdoc:
|
5
|
+
|
6
|
+
|
7
|
+
module Wx
|
8
|
+
|
9
|
+
# Base class for customization hooks used with {Wx::FileDialog}.
|
10
|
+
# {Wx::FileDialogCustomizeHook} is an abstract base class, i.e. in order to use a concrete class inheriting from it and implementing its pure virtual {Wx::FileDialogCustomizeHook#add_custom_controls} function must be defined. Then an object of this class should be passed to {Wx::FileDialog#set_customize_hook}, which will result in its {Wx::FileDialogCustomizeHook#add_custom_controls} being called before the dialog is shown, {Wx::FileDialogCustomizeHook#update_custom_controls} being called whenever something changes in the dialog while it is shown and, finally, {Wx::FileDialogCustomizeHook#transfer_data_from_custom_controls} being called when the user accepts their choice in the dialog.
|
11
|
+
# Putting all this together, here is an example of customizing the file dialog using this class:
|
12
|
+
# ```
|
13
|
+
# class EncryptHook : public wxFileDialogCustomizeHook
|
14
|
+
# {
|
15
|
+
# public:
|
16
|
+
# // Override to add custom controls using the provided customizer object.
|
17
|
+
# void AddCustomControls(wxFileDialogCustomize& customizer) override
|
18
|
+
# {
|
19
|
+
# // Suppose we can encrypt files when saving them.
|
20
|
+
# m_checkbox = customizer.AddCheckBox("Encrypt");
|
21
|
+
#
|
22
|
+
# // While m_checkbox is not a wxCheckBox, it looks almost like one
|
23
|
+
# // and, in particular, we can bind to custom control events as usual.
|
24
|
+
# m_checkbox->Bind(wxEVT_CHECKBOX, [this](wxCommandEvent& event) {
|
25
|
+
# // We can also call wxWindow-like functions on them.
|
26
|
+
# m_button->Enable(event.IsChecked());
|
27
|
+
# });
|
28
|
+
#
|
29
|
+
# // The encryption parameters can be edited in a dedicated dialog.
|
30
|
+
# m_button = customizer.AddButton("Parameters...");
|
31
|
+
# m_button->Bind(wxEVT_BUTTON, [](wxCommandEvent&) {
|
32
|
+
# ... show the encryption parameters dialog here ...
|
33
|
+
# });
|
34
|
+
# }
|
35
|
+
#
|
36
|
+
# // Override to save the values of the custom controls.
|
37
|
+
# void TransferDataFromCustomControls() override
|
38
|
+
# {
|
39
|
+
# // Save the checkbox value, as we won't be able to use it any more
|
40
|
+
# // once this function returns.
|
41
|
+
# m_encrypt = m_checkbox->GetValue();
|
42
|
+
# }
|
43
|
+
#
|
44
|
+
# // Just a simple accessor to get the results.
|
45
|
+
# bool Encrypt() const { return m_encrypt; }
|
46
|
+
#
|
47
|
+
# private:
|
48
|
+
# wxFileDialogButton* m_button;
|
49
|
+
# wxFileDialogCheckBox* m_checkbox;
|
50
|
+
#
|
51
|
+
# bool m_encrypt = false;
|
52
|
+
# };
|
53
|
+
#
|
54
|
+
# void SomeFunc()
|
55
|
+
# {
|
56
|
+
# wxFileDialog dialog(NULL, "Save document", wxString(), "file.my",
|
57
|
+
# "My files (*.my)|*.my",
|
58
|
+
# wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
|
59
|
+
#
|
60
|
+
# // This object may be destroyed before the dialog, but must remain
|
61
|
+
# // alive until ShowModal() returns.
|
62
|
+
# EncryptHook customizeHook;
|
63
|
+
# dialog.SetCustomizeHook(customHook);
|
64
|
+
#
|
65
|
+
# if ( dialog.ShowModal() == wxID_OK )
|
66
|
+
# {
|
67
|
+
# if ( customizeHook.Encrypt() )
|
68
|
+
# ... save with encryption ...
|
69
|
+
# else
|
70
|
+
# ... save without encryption ...
|
71
|
+
# }
|
72
|
+
# }
|
73
|
+
# ```
|
74
|
+
#
|
75
|
+
# ===
|
76
|
+
#
|
77
|
+
# Category: Common Dialogs
|
78
|
+
# @see Wx::FileDialog
|
79
|
+
#
|
80
|
+
#
|
81
|
+
#
|
82
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
83
|
+
class FileDialogCustomizeHook < ::Object
|
84
|
+
|
85
|
+
# Must be overridden to add custom controls to the dialog using the provided customizer object.
|
86
|
+
# Call {Wx::FileDialogCustomize} functions to add controls and possibly bind to their events.
|
87
|
+
# Note that there is no possibility to define the custom controls layout, they will appear more or less consecutively, but the exact layout is determined by the current platform.
|
88
|
+
# @param customizer [Wx::FileDialogCustomize]
|
89
|
+
# @return [void]
|
90
|
+
def add_custom_controls(customizer) end
|
91
|
+
|
92
|
+
# May be overridden to update the custom controls whenever something changes in the dialog.
|
93
|
+
# This function is called when the user selects a file, changes the directory or changes the current filter in the dialog, for example. It can be used to update the custom controls state depending on the currently selected file, for example.
|
94
|
+
# Note that it is not necessarily called when the value of a custom control changes.
|
95
|
+
# Base class version does nothing.
|
96
|
+
# @return [void]
|
97
|
+
def update_custom_controls; end
|
98
|
+
|
99
|
+
# Should typically be overridden to save the values of the custom controls when the dialog is accepted.
|
100
|
+
# Custom controls are destroyed and cannot be used any longer once {Wx::FileDialog#show_modal} returns, so their values must be retrieved in this function, which is called just before this happens.
|
101
|
+
# This function is not called if the user cancels the dialog.
|
102
|
+
# Base class version does nothing.
|
103
|
+
# @return [void]
|
104
|
+
def transfer_data_from_custom_controls; end
|
105
|
+
|
106
|
+
end # FileDialogCustomizeHook
|
107
|
+
|
108
|
+
# Used with {Wx::FileDialogCustomizeHook} to add custom controls to {Wx::FileDialog}.
|
109
|
+
# An object of this class is passed to {Wx::FileDialogCustomizeHook#add_custom_controls} to allow it to actually add controls to the dialog.
|
110
|
+
# The pointers returned by the functions of this class belong to wxWidgets and should not be deleted by the application, just as {Wx::Window}-derived objects (even if these controls do not inherit from {Wx::Window}). These pointers become invalid when {Wx::FileDialog#show_modal} returns, and the dialog containing them is destroyed, and the latest point at which they can be still used is when {Wx::FileDialogCustomizeHook#transfer_data_from_custom_controls} is called.
|
111
|
+
# ===
|
112
|
+
#
|
113
|
+
# Category: Common Dialogs
|
114
|
+
# @see Wx::FileDialog
|
115
|
+
#
|
116
|
+
#
|
117
|
+
class FileDialogCustomize < ::Object
|
118
|
+
|
119
|
+
# Add a button with the specified label.
|
120
|
+
# @param label [String]
|
121
|
+
# @return [Wx::FileDialogButton]
|
122
|
+
def add_button(label) end
|
123
|
+
|
124
|
+
# Add a checkbox with the specified label.
|
125
|
+
# @param label [String]
|
126
|
+
# @return [Wx::FileDialogCheckBox]
|
127
|
+
def add_check_box(label) end
|
128
|
+
|
129
|
+
# Add a radio button with the specified label.
|
130
|
+
# The first radio button added will be initially checked. All the radio buttons added immediately after it will become part of the same radio group and will not be checked, but checking any one of them later will uncheck the first button and all the other ones.
|
131
|
+
# If two consecutive but distinct radio groups are required, {Wx::FileDialogCustomize#add_static_text} with an empty label can be used to separate them.
|
132
|
+
# @param label [String]
|
133
|
+
# @return [Wx::FileDialogRadioButton]
|
134
|
+
def add_radio_button(label) end
|
135
|
+
|
136
|
+
# Add a read-only combobox with the specified contents.
|
137
|
+
# The combobox doesn't have any initial selection, i.e. {Wx::FileDialogChoice#get_selection} returns {Wx::NOT_FOUND}, if some item must be selected, use {Wx::FileDialogChoice#set_selection} explicitly to do it.
|
138
|
+
# @param n [Integer] The number of strings, must be positive, as there is no way to add more strings later and creating an empty combobox is not very useful.
|
139
|
+
# @param strings [String] A non-NULL pointer to an array of n strings.
|
140
|
+
# @return [Wx::FileDialogChoice]
|
141
|
+
def add_choice(n, strings) end
|
142
|
+
|
143
|
+
# Add a text control with an optional label preceding it.
|
144
|
+
# Unlike all the other functions for adding controls, the label parameter here doesn't specify the contents of the text control itself, but rather the label appearing before it. Unlike static controls added by {Wx::FileDialogCustomize#add_static_text}, this label is guaranteed to be immediately adjacent to it.
|
145
|
+
# If label is empty, no label is created.
|
146
|
+
# @param label [String]
|
147
|
+
# @return [Wx::FileDialogTextCtrl]
|
148
|
+
def add_text_ctrl(label=(())) end
|
149
|
+
|
150
|
+
# Add a static text with the given contents.
|
151
|
+
# The contents of the static text can be updated later, i.e. it doesn't need to be actually static.
|
152
|
+
# @param label [String]
|
153
|
+
# @return [Wx::FileDialogStaticText]
|
154
|
+
def add_static_text(label) end
|
155
|
+
|
156
|
+
end # FileDialogCustomize
|
157
|
+
|
158
|
+
|
159
|
+
end
|
@@ -76,7 +76,7 @@ module Wx
|
|
76
76
|
# @return [Wx::FileDirPickerEvent]
|
77
77
|
# @overload initialize(type, generator, id, path)
|
78
78
|
# The constructor is not normally used by the user code.
|
79
|
-
# @param type [Wx::
|
79
|
+
# @param type [Wx::CommandLinkButton::EventType]
|
80
80
|
# @param generator [Wx::Object]
|
81
81
|
# @param id [Integer]
|
82
82
|
# @param path [String]
|
@@ -76,11 +76,11 @@ module Wx
|
|
76
76
|
# @param style [Integer] The window style, see {Wx::FLP_}* flags.
|
77
77
|
# @param validator [Wx::Validator] Validator which can be used for additional data checks.
|
78
78
|
# @param name [String] Control name.
|
79
|
-
# @return [
|
79
|
+
# @return [Boolean]
|
80
80
|
def create(parent, id, path=(''), message=Wx::FileSelectorPromptStr, wildcard=Wx::FILE_SELECTOR_DEFAULT_WILDCARD_STR, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::FLP_DEFAULT_STYLE, validator=Wx::DEFAULT_VALIDATOR, name=Wx::FilePickerCtrlNameStr) end
|
81
81
|
|
82
82
|
# Similar to {Wx::FilePickerCtrl#get_path} but returns the path of the currently selected file as a {Wx::FileName} object.
|
83
|
-
# @return [
|
83
|
+
# @return [String]
|
84
84
|
def get_file_name; end
|
85
85
|
alias_method :file_name, :get_file_name
|
86
86
|
|
@@ -90,7 +90,7 @@ module Wx
|
|
90
90
|
alias_method :path, :get_path
|
91
91
|
|
92
92
|
# This method does the same thing as {Wx::FilePickerCtrl#set_path} but takes a {Wx::FileName} object instead of a string.
|
93
|
-
# @param filename [
|
93
|
+
# @param filename [String]
|
94
94
|
# @return [void]
|
95
95
|
def set_file_name(filename) end
|
96
96
|
alias_method :file_name=, :set_file_name
|