wxruby3 0.9.0.pre.rc.2-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/INSTALL.md +30 -8
- data/README.md +3 -3
- 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 +14 -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 +49 -4
- data/lib/wx/core/imagelist.rb +8 -1
- data/lib/wx/core/listbox.rb +7 -0
- data/lib/wx/core/listctrl.rb +26 -13
- data/lib/wx/core/locale.rb +8 -0
- data/lib/wx/core/log.rb +114 -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 +19 -15
- 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 +13 -0
- data/lib/wx/doc/events.rb +6 -0
- data/lib/wx/doc/evthandler.rb +8 -0
- data/lib/wx/doc/extra/00_starting.md +6 -6
- data/lib/wx/doc/extra/01_packages.md +52 -51
- data/lib/wx/doc/extra/02_lifecycles.md +9 -8
- 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 +2 -2
- data/lib/wx/doc/extra/10_art.md +18 -12
- data/lib/wx/doc/extra/11_drawing_and_dc.md +8 -8
- data/lib/wx/doc/font.rb +7 -1
- data/lib/wx/doc/font_data.rb +16 -0
- data/lib/wx/doc/functions.rb +60 -24
- data/lib/wx/doc/gc_dc.rb +7 -1
- data/lib/wx/doc/gdi_common.rb +8 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +10 -10
- data/lib/wx/doc/gen/accelerator.rb +8 -13
- data/lib/wx/doc/gen/accessible.rb +27 -23
- data/lib/wx/doc/gen/activity_indicator.rb +7 -7
- data/lib/wx/doc/gen/animation.rb +20 -20
- data/lib/wx/doc/gen/animation_ctrl.rb +14 -13
- data/lib/wx/doc/gen/any_button.rb +3 -3
- data/lib/wx/doc/gen/app.rb +25 -88
- data/lib/wx/doc/gen/app_traits.rb +381 -0
- data/lib/wx/doc/gen/art_provider.rb +64 -4
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +12 -12
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +6 -6
- data/lib/wx/doc/gen/aui/aui_manager.rb +57 -41
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +16 -10
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +19 -20
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +7 -7
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +12 -12
- data/lib/wx/doc/gen/aui/aui_notebook.rb +136 -26
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +17 -2
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +95 -95
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +17 -17
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +61 -46
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +18 -18
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +6 -6
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +11 -11
- 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 +56 -81
- data/lib/wx/doc/gen/bitmap_button.rb +13 -9
- data/lib/wx/doc/gen/bitmap_combo_box.rb +14 -9
- data/lib/wx/doc/gen/book_ctrl_base.rb +20 -16
- data/lib/wx/doc/gen/book_ctrl_event.rb +2 -2
- data/lib/wx/doc/gen/box_sizer.rb +1 -1
- data/lib/wx/doc/gen/brush.rb +24 -12
- data/lib/wx/doc/gen/busy_info.rb +1 -1
- data/lib/wx/doc/gen/button.rb +23 -11
- data/lib/wx/doc/gen/calculate_layout_event.rb +2 -1
- data/lib/wx/doc/gen/calendar_ctrl.rb +34 -22
- data/lib/wx/doc/gen/calendar_date_attr.rb +13 -13
- data/lib/wx/doc/gen/calendar_event.rb +4 -10
- data/lib/wx/doc/gen/caret.rb +6 -6
- data/lib/wx/doc/gen/check_box.rb +19 -15
- data/lib/wx/doc/gen/check_list_box.rb +10 -9
- data/lib/wx/doc/gen/choice.rb +10 -9
- data/lib/wx/doc/gen/choicebook.rb +13 -7
- data/lib/wx/doc/gen/client_dc.rb +1 -1
- data/lib/wx/doc/gen/clipboard.rb +10 -10
- data/lib/wx/doc/gen/collapsible_pane.rb +13 -10
- data/lib/wx/doc/gen/collapsible_pane_event.rb +5 -4
- data/lib/wx/doc/gen/colour.rb +42 -32
- data/lib/wx/doc/gen/colour_dialog.rb +12 -12
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +16 -10
- data/lib/wx/doc/gen/colour_picker_event.rb +7 -4
- data/lib/wx/doc/gen/combo_box.rb +29 -20
- 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 +7 -6
- data/lib/wx/doc/gen/control.rb +12 -9
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +8 -5
- data/lib/wx/doc/gen/cursor.rb +18 -18
- data/lib/wx/doc/gen/data_format.rb +5 -5
- data/lib/wx/doc/gen/data_object.rb +32 -25
- data/lib/wx/doc/gen/date_event.rb +3 -3
- data/lib/wx/doc/gen/date_picker_ctrl.rb +16 -11
- data/lib/wx/doc/gen/dc.rb +162 -74
- data/lib/wx/doc/gen/defs.rb +16 -16
- data/lib/wx/doc/gen/dialog.rb +65 -22
- data/lib/wx/doc/gen/dir_dialog.rb +6 -2
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +3 -3
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +17 -12
- data/lib/wx/doc/gen/drag_drop.rb +26 -52
- data/lib/wx/doc/gen/drag_image.rb +13 -38
- data/lib/wx/doc/gen/editable_list_box.rb +9 -5
- data/lib/wx/doc/gen/event.rb +55 -32
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_filter.rb +5 -2
- data/lib/wx/doc/gen/event_list.rb +117 -19
- data/lib/wx/doc/gen/events.rb +351 -215
- data/lib/wx/doc/gen/evt_handler.rb +8 -8
- data/lib/wx/doc/gen/ext_help_controller.rb +9 -9
- data/lib/wx/doc/gen/file_dialog.rb +20 -9
- 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 +5 -3
- data/lib/wx/doc/gen/file_picker_ctrl.rb +19 -11
- data/lib/wx/doc/gen/file_system.rb +250 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +7 -2
- data/lib/wx/doc/gen/find_replace_data.rb +1 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +2 -2
- data/lib/wx/doc/gen/flex_grid_sizer.rb +16 -10
- data/lib/wx/doc/gen/font.rb +90 -94
- data/lib/wx/doc/gen/font_data.rb +15 -11
- data/lib/wx/doc/gen/font_dialog.rb +5 -5
- data/lib/wx/doc/gen/font_picker_ctrl.rb +11 -7
- data/lib/wx/doc/gen/font_picker_event.rb +2 -1
- data/lib/wx/doc/gen/frame.rb +36 -27
- data/lib/wx/doc/gen/fs_file.rb +65 -38
- data/lib/wx/doc/gen/gauge.rb +14 -10
- data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
- data/lib/wx/doc/gen/gcdc.rb +5 -1
- data/lib/wx/doc/gen/gdi_common.rb +43 -41
- data/lib/wx/doc/gen/gdi_object.rb +1 -1
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +19 -13
- data/lib/wx/doc/gen/graphics_context.rb +320 -88
- data/lib/wx/doc/gen/graphics_object.rb +48 -102
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +4 -2
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +41 -56
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +4 -2
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +19 -14
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +15 -13
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +446 -189
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +5 -3
- data/lib/wx/doc/gen/grid/grid_event.rb +26 -9
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +15 -11
- data/lib/wx/doc/gen/grid/grid_size_event.rb +13 -7
- data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -8
- data/lib/wx/doc/gen/grid/grid_table_base.rb +21 -21
- data/lib/wx/doc/gen/grid/grid_table_message.rb +5 -5
- data/lib/wx/doc/gen/grid_bag_sizer.rb +15 -15
- data/lib/wx/doc/gen/grid_sizer.rb +4 -4
- data/lib/wx/doc/gen/gui_event_loop.rb +132 -0
- 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 +25 -19
- data/lib/wx/doc/gen/help_provider.rb +3 -3
- data/lib/wx/doc/gen/html/html_cell.rb +100 -59
- data/lib/wx/doc/gen/html/html_cell_event.rb +7 -5
- data/lib/wx/doc/gen/html/html_easy_printing.rb +14 -9
- data/lib/wx/doc/gen/html/html_help_controller.rb +60 -46
- data/lib/wx/doc/gen/html/html_help_data.rb +5 -5
- data/lib/wx/doc/gen/html/html_help_window.rb +33 -35
- data/lib/wx/doc/gen/html/html_link_event.rb +4 -3
- data/lib/wx/doc/gen/html/html_list_box.rb +21 -13
- data/lib/wx/doc/gen/html/html_printout.rb +16 -6
- data/lib/wx/doc/gen/html/html_window.rb +54 -39
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +15 -10
- data/lib/wx/doc/gen/hyperlink_event.rb +2 -1
- data/lib/wx/doc/gen/icon.rb +24 -24
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +164 -114
- data/lib/wx/doc/gen/image_list.rb +24 -30
- data/lib/wx/doc/gen/info_bar.rb +152 -0
- data/lib/wx/doc/gen/keyboard_state.rb +24 -24
- data/lib/wx/doc/gen/list_box.rb +40 -31
- data/lib/wx/doc/gen/list_ctrl.rb +223 -167
- data/lib/wx/doc/gen/list_event.rb +25 -3
- data/lib/wx/doc/gen/listbook.rb +13 -7
- data/lib/wx/doc/gen/locale.rb +22 -71
- data/lib/wx/doc/gen/log.rb +133 -106
- data/lib/wx/doc/gen/mdi_client_window.rb +3 -3
- data/lib/wx/doc/gen/mdi_frame.rb +23 -17
- data/lib/wx/doc/gen/media_ctrl.rb +22 -19
- data/lib/wx/doc/gen/media_event.rb +8 -2
- data/lib/wx/doc/gen/memory_dc.rb +26 -33
- data/lib/wx/doc/gen/menu.rb +24 -25
- data/lib/wx/doc/gen/menu_bar.rb +11 -28
- data/lib/wx/doc/gen/menu_item.rb +127 -46
- data/lib/wx/doc/gen/message_dialog.rb +54 -36
- data/lib/wx/doc/gen/mini_frame.rb +14 -5
- data/lib/wx/doc/gen/mouse_state.rb +51 -11
- data/lib/wx/doc/gen/multi_choice_dialog.rb +4 -2
- data/lib/wx/doc/gen/non_owned_window.rb +8 -9
- data/lib/wx/doc/gen/notebook.rb +27 -22
- data/lib/wx/doc/gen/number_entry_dialog.rb +3 -3
- data/lib/wx/doc/gen/object.rb +3 -14
- data/lib/wx/doc/gen/palette.rb +15 -17
- data/lib/wx/doc/gen/panel.rb +8 -7
- data/lib/wx/doc/gen/pen.rb +50 -37
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +3 -3
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +17 -17
- data/lib/wx/doc/gen/pg/pg_cell.rb +13 -16
- data/lib/wx/doc/gen/pg/pg_editor.rb +95 -93
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +64 -89
- data/lib/wx/doc/gen/pg/pg_properties.rb +379 -349
- data/lib/wx/doc/gen/pg/pg_property.rb +260 -307
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +3 -3
- data/lib/wx/doc/gen/pg/property_grid.rb +49 -49
- data/lib/wx/doc/gen/pg/property_grid_event.rb +24 -11
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +75 -69
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +51 -54
- data/lib/wx/doc/gen/pg/property_grid_page.rb +22 -30
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +17 -26
- data/lib/wx/doc/gen/picker_base.rb +17 -16
- data/lib/wx/doc/gen/platform_info.rb +180 -20
- data/lib/wx/doc/gen/popup_window.rb +8 -8
- data/lib/wx/doc/gen/progress_dialog.rb +3 -3
- data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -18
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +2 -2
- data/lib/wx/doc/gen/prt/preview_frame.rb +18 -2
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/print_data.rb +68 -62
- data/lib/wx/doc/gen/prt/print_dialog.rb +4 -4
- data/lib/wx/doc/gen/prt/printer.rb +44 -49
- data/lib/wx/doc/gen/query_layout_info_event.rb +6 -5
- data/lib/wx/doc/gen/radio_box.rb +21 -19
- data/lib/wx/doc/gen/radio_button.rb +13 -11
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +67 -67
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +38 -20
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +22 -15
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +6 -6
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -11
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +14 -16
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -12
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +24 -22
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +17 -15
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +6 -6
- 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 +35 -43
- data/lib/wx/doc/gen/region_iterator.rb +3 -3
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +626 -1538
- 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 +488 -503
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +31 -12
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +18 -18
- 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 +23 -19
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +9 -18
- 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 +29 -29
- 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 +3 -3
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +34 -37
- data/lib/wx/doc/gen/sash_event.rb +8 -6
- data/lib/wx/doc/gen/sash_layout_window.rb +13 -11
- data/lib/wx/doc/gen/sash_window.rb +14 -9
- data/lib/wx/doc/gen/scroll_bar.rb +33 -12
- data/lib/wx/doc/gen/scrolled_canvas.rb +49 -37
- data/lib/wx/doc/gen/scrolled_control.rb +49 -37
- data/lib/wx/doc/gen/scrolled_window.rb +49 -37
- data/lib/wx/doc/gen/search_ctrl.rb +20 -13
- data/lib/wx/doc/gen/simplebook.rb +7 -7
- data/lib/wx/doc/gen/single_choice_dialog.rb +5 -4
- data/lib/wx/doc/gen/sizer.rb +69 -73
- data/lib/wx/doc/gen/sizer_item.rb +5 -5
- data/lib/wx/doc/gen/slider.rb +51 -18
- data/lib/wx/doc/gen/spin_button.rb +17 -11
- data/lib/wx/doc/gen/spin_ctrl.rb +15 -9
- 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 +5 -2
- data/lib/wx/doc/gen/splash_screen.rb +16 -12
- data/lib/wx/doc/gen/splitter_event.rb +6 -2
- data/lib/wx/doc/gen/splitter_window.rb +36 -16
- data/lib/wx/doc/gen/static_bitmap.rb +9 -9
- data/lib/wx/doc/gen/static_box.rb +41 -37
- data/lib/wx/doc/gen/static_box_sizer.rb +13 -10
- data/lib/wx/doc/gen/static_line.rb +8 -7
- data/lib/wx/doc/gen/static_text.rb +15 -9
- data/lib/wx/doc/gen/status_bar.rb +53 -10
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +200 -184
- data/lib/wx/doc/gen/stc/styled_text_event.rb +229 -54
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +11 -2
- data/lib/wx/doc/gen/svg_file_dc.rb +8 -8
- data/lib/wx/doc/gen/system_options.rb +13 -3
- data/lib/wx/doc/gen/system_settings.rb +9 -9
- data/lib/wx/doc/gen/task_bar_icon.rb +17 -9
- data/lib/wx/doc/gen/task_bar_icon_event.rb +3 -3
- data/lib/wx/doc/gen/text_attr.rb +67 -61
- data/lib/wx/doc/gen/text_ctrl.rb +58 -113
- data/lib/wx/doc/gen/text_entry.rb +44 -56
- data/lib/wx/doc/gen/text_entry_dialog.rb +23 -23
- data/lib/wx/doc/gen/text_validator.rb +3 -19
- data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -10
- data/lib/wx/doc/gen/timer.rb +13 -9
- data/lib/wx/doc/gen/timer_event.rb +19 -26
- data/lib/wx/doc/gen/tip_provider.rb +3 -3
- data/lib/wx/doc/gen/toggle_button.rb +10 -9
- data/lib/wx/doc/gen/tool_bar.rb +71 -61
- data/lib/wx/doc/gen/tool_tip.rb +2 -10
- data/lib/wx/doc/gen/toolbook.rb +12 -9
- data/lib/wx/doc/gen/top_level_window.rb +53 -113
- data/lib/wx/doc/gen/tree_ctrl.rb +83 -33
- data/lib/wx/doc/gen/tree_event.rb +24 -3
- data/lib/wx/doc/gen/treebook.rb +20 -16
- data/lib/wx/doc/gen/ui_action_simulator.rb +20 -19
- data/lib/wx/doc/gen/utils.rb +20 -14
- data/lib/wx/doc/gen/v_list_box.rb +11 -11
- data/lib/wx/doc/gen/v_scrolled_window.rb +9 -9
- data/lib/wx/doc/gen/validator.rb +10 -8
- data/lib/wx/doc/gen/variant.rb +56 -119
- data/lib/wx/doc/gen/window.rb +314 -224
- data/lib/wx/doc/gen/window_dc.rb +1 -1
- data/lib/wx/doc/gen/with_images.rb +2 -2
- data/lib/wx/doc/gen/wizard.rb +21 -8
- data/lib/wx/doc/gen/wizard_event.rb +11 -4
- data/lib/wx/doc/gen/wizard_page.rb +3 -3
- data/lib/wx/doc/gen/wizard_page_simple.rb +8 -8
- data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
- data/lib/wx/doc/gen/xml_node.rb +13 -13
- data/lib/wx/doc/gen/xml_resource.rb +24 -21
- 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 +50 -12
- data/lib/wx/doc/list_ctrl.rb +38 -0
- data/lib/wx/doc/log.rb +45 -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 +8 -2
- 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 +7 -1
- 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 +18 -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 +31 -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 +164 -0
- 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 +151 -0
- data/tests/test_intl.rb +3 -0
- data/tests/test_item_data.rb +3 -0
- data/tests/test_list_ctrl.rb +56 -0
- data/tests/test_log.rb +226 -0
- data/tests/test_proof_check.rb +52 -0
- data/tests/test_richtext.rb +204 -0
- data/tests/test_std_controls.rb +99 -31
- data/tests/test_timer.rb +98 -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 +87 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -15,8 +15,9 @@ Instead wxRuby offers a dynamic solution that is just as easy to use and even of
|
|
15
15
|
## Event handlers
|
16
16
|
|
17
17
|
Instead of the `EVT_XXX` event handler declaration macros used in wxWidgets wxRuby provides similarly named event handler
|
18
|
-
definition methods for each of the known event declarations which are inherited by **all** classes derived from
|
19
|
-
|
18
|
+
definition methods for each of the known event declarations which are inherited by **all** classes derived from {Wx::
|
19
|
+
EvtHandler}
|
20
|
+
(which includes all window classes, the {Wx::App} class and {Wx::Timer} as well as various other classes).<br>
|
20
21
|
|
21
22
|
Naming is (mostly) identical but rubified. So `EVT_MENU` becomes `evt_menu`, `EVT_IDLE` becomes `evt_idle`, `EVT_UPDATE_UI`
|
22
23
|
becomes `evt_update_ui` etc.
|
@@ -27,7 +28,7 @@ Like the event handler macros some of these methods require a single (window) id
|
|
27
28
|
|
28
29
|
Event handler setup is typically something done during the initialization of an event handler object (like a window) but
|
29
30
|
this is not required. As all event handlers are assigned dynamically in wxRuby you can setup (some) event handlers at a
|
30
|
-
later moment. You could also disconnect earlier activated handlers at any time (see
|
31
|
+
later moment. You could also disconnect earlier activated handlers at any time (see {Wx::EvtHandler#disconnect}).
|
31
32
|
|
32
33
|
In case of some frame class `MyForm` including a menu a wxWidgets static event handling table like:
|
33
34
|
|
@@ -96,7 +97,7 @@ will take care of checking and handling method arity.
|
|
96
97
|
|
97
98
|
Custom event definitions are fully supported in wxRuby including the definition of new event types.
|
98
99
|
|
99
|
-
New event classes can be registered with
|
100
|
+
New event classes can be registered with {Wx::EvtHandler#register_class} which returns the new event type for the event
|
100
101
|
class like this:
|
101
102
|
|
102
103
|
```ruby
|
@@ -125,27 +126,27 @@ Check the reference documentation [here](https://mcorino.github.io/wxRuby3/Wx/Ev
|
|
125
126
|
|
126
127
|
## Event processing
|
127
128
|
|
128
|
-
In wxRuby overruling the normal chain of event handling has been limited to being able to override the default
|
129
|
-
|
129
|
+
In wxRuby overruling the normal chain of event handling has been limited to being able to override the default
|
130
|
+
{Wx::EvtHandler#try_before} and {Wx::EvtHandler#try_after} methods. These are the advised interception points for events
|
130
131
|
when you really need to do this.<br>
|
131
|
-
Overriding
|
132
|
+
Overriding {Wx::EvtHandler#process_event} is not considered to be efficient (or desired)
|
132
133
|
for wxRuby applications and has therefor been blocked.
|
133
134
|
|
134
135
|
## Event insertion
|
135
136
|
|
136
|
-
Use of
|
137
|
+
Use of {Wx::EvtHandler#process_event} or {Wx::EvtHandler#queue_event} and {Wx::EvtHandler#add_pending_event} in wxRuby to
|
137
138
|
trigger event processing of user generated (possibly custom) events is fully supported.
|
138
139
|
|
139
|
-
As with wxWidgets
|
140
|
+
As with wxWidgets {Wx::EvtHandler#process_event} will trigger immediate processing of the given event, not returning before
|
140
141
|
this has finished.<br>
|
141
|
-
|
142
|
+
{Wx::EvtHandler#queue_event} and {Wx::EvtHandler#add_pending_event} on the other hand will post (append) the given event
|
142
143
|
to the event queue and return immediately after that is done. The event will than be processed after any other events in
|
143
144
|
the queue. Unlike in wxWidgets in wxRuby there is no practical difference between `queue_event` and `add_pending_event`.
|
144
145
|
|
145
146
|
## Asynchronous execution
|
146
147
|
|
147
|
-
In addition to
|
148
|
-
wxRuby also supports
|
148
|
+
In addition to {Wx::EvtHandler#queue_event} and {Wx::EvtHandler#add_pending_event} to trigger asynchronous processing
|
149
|
+
wxRuby also supports {Wx::EvtHandler#call_after}.
|
149
150
|
|
150
151
|
This method provides the means to trigger asynchronous execution of arbitrary code and because it has been rubified is
|
151
152
|
easy and powerful to use. Like with event handler definition this method accepts a `Symbol` or `String` (identifying a
|
@@ -164,3 +165,27 @@ evt_handler.call_after(->(txt) { Wx.log_info(txt) }, "Hello")
|
|
164
165
|
# async call of block
|
165
166
|
evt_handler.call_after('Call nr. %d', 1) { |fmt, num| Wx.log_info(fmt, num) }
|
166
167
|
```
|
168
|
+
|
169
|
+
## Event life cycles!
|
170
|
+
|
171
|
+
Like in C++ the wxRuby Event objects passed to the event handlers are (in general) references to **temporary** objects
|
172
|
+
which are only safe to access within the execution scope of the event handler that received the reference.
|
173
|
+
If you *need* (really?) to store a reference to such an object do so to a cloned version (see {Wx::Event#clone}) and **not**
|
174
|
+
to the original object otherwise you **will** run into 'Object already deleted' exceptions.
|
175
|
+
|
176
|
+
Only user defined events instantiated in Ruby code (or cloned Event objects) will be subject to Ruby's normal life cycle
|
177
|
+
rules (GC).
|
178
|
+
This means that when you instantiate a user defined event and pass it to {Wx::EvtHandler#process_event} it would be possible
|
179
|
+
to directly store the reference to such an Event object passed to it's event handler. You have to **know** for sure though
|
180
|
+
(see below). So, in case of doubt (or to be safe) use {Wx::Event#clone}.
|
181
|
+
|
182
|
+
Another 'feature' to be aware of is the fact that when passing an (user instantiated) Event object to {Wx::
|
183
|
+
EvtHandler#queue_event}
|
184
|
+
or {Wx::EvtHandler#add_pending_event} the Ruby event instance is unlinked from it's C++ counterpart (or in the case of user
|
185
|
+
defined events a cloned instance is associated with it's C++ counterpart) before being queued and the C++ side now takes ownership
|
186
|
+
(and will delete the Event object when handled).
|
187
|
+
As a result this means that even in the case of a user defined Event object any event handler triggered by a asynchronously
|
188
|
+
processed event will be handling a temporary Event object.
|
189
|
+
Additionally this also means that any Event object passed to {Wx::EvtHandler#queue_event} or {Wx::
|
190
|
+
EvtHandler#add_pending_event}
|
191
|
+
is essentially invalidated after these methods return and should not be referenced anymore.
|
@@ -19,13 +19,13 @@ Wx::Frame.new(nil, -1, 'title', Wx::Point.new(0,0), Wx::Size.new(500,400))
|
|
19
19
|
which starts to feel awkward to specify what are in essence just pairs of integers.
|
20
20
|
|
21
21
|
To provide a simpler, more compact and more Ruby-like, alternative the wxRuby API therefor supports specifying arrays
|
22
|
-
of integer (or float in case of Wx::RealPoint) pairs in (almost) all cases where
|
23
|
-
(or Wx::RealPoint) is expected. So the following code is equivalent to the previous code:
|
22
|
+
of integer (or float in case of {Wx::RealPoint}) pairs in (almost) all cases where {Wx::Size} or {Wx::Point}
|
23
|
+
(or {Wx::RealPoint}) is expected. So the following code is equivalent to the previous code:
|
24
24
|
```ruby
|
25
25
|
Wx::Frame.new(nil, -1, 'title', [0,0], [500,400])
|
26
26
|
```
|
27
27
|
|
28
|
-
In addition
|
28
|
+
In addition {Wx::Size}, {Wx::Point} and {Wx::RealPoint} support parallel assignment semantics such that you can write code like
|
29
29
|
```ruby
|
30
30
|
win.paint do | dc |
|
31
31
|
# ...
|
@@ -47,12 +47,12 @@ instead of
|
|
47
47
|
Instances of these classes can also be converted (back) to arrays with their `#to_ary` methods.
|
48
48
|
|
49
49
|
Lastly wxRuby also extends the standard Ruby Array class with conversion methods to explicitly convert
|
50
|
-
arrays to
|
50
|
+
arrays to {Wx::Size}, {Wx::Point} or {Wx::RealPoint}; respectively the `#to_size`, `#to_point` and `#to_real_point`
|
51
51
|
methods.
|
52
52
|
|
53
53
|
## Areas (Wx::Rect)
|
54
54
|
|
55
|
-
Like
|
55
|
+
Like {Wx::Size} and {Wx::Point} wxRuby supports parallel assignment for {Wx::Rect} such that you can write code like
|
56
56
|
```ruby
|
57
57
|
x, y, width, height = win.get_client_rect
|
58
58
|
```
|
@@ -21,7 +21,7 @@ For the wxRuby API similar support has been achieved for various much used argum
|
|
21
21
|
|
22
22
|
## Colour
|
23
23
|
|
24
|
-
Wherever a
|
24
|
+
Wherever a {Wx::Colour} object is expected as an argument wxRuby supports the specification of `String` or `Symbol`
|
25
25
|
values as a developer friendly alternative. This way the following code is equivalent:
|
26
26
|
|
27
27
|
```ruby
|
@@ -37,7 +37,7 @@ pen.set_colour(:CYAN)
|
|
37
37
|
|
38
38
|
## Font
|
39
39
|
|
40
|
-
Wherever a
|
40
|
+
Wherever a {Wx::Font} object is expected as an argument wxRuby supports the specification of a {Wx::FontInfo} object.
|
41
41
|
This way the following code is equivalent:
|
42
42
|
|
43
43
|
```ruby
|
@@ -15,7 +15,7 @@ your own Ruby application code.
|
|
15
15
|
|
16
16
|
Any exceptions raised from wxRuby wrapper code signal coding errors that need to be rectified.
|
17
17
|
|
18
|
-
As far as handling application code exceptions is concerned the same advice applies as for wxWidgets itself; do **
|
18
|
+
As far as handling application code exceptions is concerned the same advice applies as for wxWidgets itself; do **NOT**
|
19
19
|
let exceptions escape your event handlers meaning that if you can reasonably expect application code to raise exceptions
|
20
20
|
you should make sure to catch any such exceptions within the context of the event handler like:
|
21
21
|
|
@@ -50,5 +50,5 @@ end
|
|
50
50
|
|
51
51
|
In wxRuby event handler code is executed in an exception safe way which will capture any leaking exceptions. As wxRuby
|
52
52
|
however has no idea why this exception was raised and how to handle it, the result will be an exit of the main event loop
|
53
|
-
of the running
|
53
|
+
of the running {Wx::App} instance and re-raising the exception to be handled by Ruby like any unhandled application
|
54
54
|
exception.
|
data/lib/wx/doc/extra/10_art.md
CHANGED
@@ -18,8 +18,8 @@ Art that is part of the application's design will preferably be stored with the
|
|
18
18
|
is not standard for this nor is there any standard support for locating those files from the application
|
19
19
|
code like there is for `require`-s of other code modules.
|
20
20
|
|
21
|
-
The wxRuby framework provides a convenience module
|
22
|
-
Wx::ArtLocator aims on the one side to standardize folder structures for storing art files and on the
|
21
|
+
The wxRuby framework provides a convenience module {Wx::ArtLocator} to assist in that respect.
|
22
|
+
{Wx::ArtLocator} aims on the one side to standardize folder structures for storing art files and on the
|
23
23
|
other side to provide runtime support for locating those files from code.
|
24
24
|
|
25
25
|
The main locator method provided is:
|
@@ -63,41 +63,47 @@ The first location can be skipped by specifying `nil` for 'art_type'.
|
|
63
63
|
|
64
64
|
## Bitmap types
|
65
65
|
|
66
|
-
Based on platform and specified '<art_type>' (and optionally a specific Wx::BitmapType) art files with a specific
|
66
|
+
Based on platform and specified '<art_type>' (and optionally a specific {Wx::BitmapType}) art files with a specific
|
67
67
|
range of extensions will be tested in a specific order.
|
68
68
|
For example for locating an `:icon` (<art_type>) on platform 'WXGTK' the locator will test the preferred extension
|
69
69
|
'.xpm' followed by any of supported extensions of all other supported bitmap types.
|
70
70
|
For platform 'WXMSW' however the same search would test only the extensions '.ico' and '.xpm' (in that
|
71
71
|
order).
|
72
|
-
Specifying a specific Wx::BitmapType for a search will restrict the search to testing only the extensions supported
|
73
|
-
for the specified Wx::BitmapType.
|
72
|
+
Specifying a specific {Wx::BitmapType} for a search will restrict the search to testing only the extensions supported
|
73
|
+
for the specified {Wx::BitmapType}.
|
74
74
|
|
75
75
|
## Search paths
|
76
76
|
|
77
|
-
To prevent having to specify base search path for every location request Wx::Locator provides 2 options.
|
77
|
+
To prevent having to specify base search path for every location request {Wx::Locator} provides 2 options.
|
78
78
|
|
79
79
|
When an explicit specification of a base search path ('art_path) is omitted from a location request the locator
|
80
80
|
will determine one by using `Kernel#caller_locations` to extract the absolute path for the source file containing
|
81
81
|
the caller's code. The result of `File.dirname(src_path)` is than used as base search path.
|
82
82
|
If 'art_section' is also omitted the result of `File.basename(src_path, '.*')` will be used instead.
|
83
83
|
|
84
|
-
This means that calling
|
84
|
+
This means that calling {Wx::ArtLocator.find_art} from some code in file `/some/lib/path/to/ruby/code.rb` without
|
85
85
|
specifying both 'art_path' and 'art_section' would result in looking for an art file with the base search path
|
86
86
|
being `/some/lib/path/to/ruby/` and using `code` as 'art_section'.
|
87
87
|
|
88
|
-
It is also possible to add 'application global' search paths with the method
|
88
|
+
It is also possible to add 'application global' search paths with the method {Wx::ArtLocator.add_search_path}.
|
89
89
|
Search paths added in this way will be tested after failing to find any matching art file at the initial 'art_path'
|
90
90
|
location. The same location steps apply to these search paths as with the initial 'art_path' (see above).
|
91
91
|
|
92
92
|
## Convenience methods
|
93
93
|
|
94
|
-
Based on the Wx::ArtLocator implementation wxRuby additionally provides a number of convenience methods to
|
95
|
-
easily create Icons, Bitmaps, Cursors and Images from simple ids (symbols)
|
94
|
+
Based on the {Wx::ArtLocator} implementation wxRuby additionally provides a number of convenience methods to
|
95
|
+
easily create Icons, Bitmaps, Cursors and Images from simple ids (symbols):
|
96
|
+
|
97
|
+
- {Wx.Bitmap}
|
98
|
+
- {Wx.Cursor}
|
99
|
+
- {Wx.Icon}
|
100
|
+
- {Wx.Image}
|
101
|
+
|
96
102
|
These methods mimic the ease of use of the `wxICON` and `wxBITMAP` macros used with C++ wxWidgets such that
|
97
|
-
creating an Wx::Icon instance could be as easy as:
|
103
|
+
creating an {Wx::Icon} instance could be as easy as:
|
98
104
|
|
99
105
|
```ruby
|
100
|
-
frame.icon = Wx
|
106
|
+
frame.icon = Wx.Icon(:sample)
|
101
107
|
```
|
102
108
|
|
103
109
|
As these methods apply the same search path 'automagic' as `Wx::ArtLocator.find_art` (see [Search paths](#Search-paths))
|
@@ -12,19 +12,19 @@ device context object is destroyed.
|
|
12
12
|
For this reason the common practice in wxWidgets C++ code would be to create temporary DC objects on the
|
13
13
|
stack and draw on them while they are in scope (for several classes it is even strongly advised to never create
|
14
14
|
them any other way and to never keep objects alive out of scope). When leaving the scope these object would than be
|
15
|
-
automatically destroyed and
|
15
|
+
automatically destroyed and any buffered output flushed to the final target.
|
16
16
|
|
17
|
-
In Ruby this approach is impossible as Ruby is a purely dynamic language and does not **this kind** of scope bound
|
17
|
+
In Ruby this approach is impossible as Ruby is a purely dynamic language and does not support **this kind** of scope bound
|
18
18
|
life cycles. Any DC object created would have to be dynamically created and due to the properties of the GC driven
|
19
19
|
life cycles could well be kept alive beyond the scope of it's creation. This will not always cause problems but could
|
20
20
|
and does not really have an upside.
|
21
21
|
|
22
|
-
To prevent confusion and potential problems wxRuby defines all
|
23
|
-
cannot be instantiated using `new`. Rather all
|
22
|
+
To prevent confusion and potential problems wxRuby defines all {Wx::DC} derived classes to be abstract classes that
|
23
|
+
cannot be instantiated using `new`. Rather all {Wx::DC} derived classes provide `::draw_on` factory methods to create
|
24
24
|
temporary dc objects that will be passed on to blocks given and will only exist for the duration of the execution of
|
25
25
|
the block. This will guarantee proper DC cleanup when leaving it's usage scope.
|
26
26
|
|
27
|
-
> Note that it is a **BAD** idea to think about storing the dc reference
|
27
|
+
> Note that it is a **BAD** idea to think about storing the dc reference provided to the block for later access!
|
28
28
|
|
29
29
|
A typical usage of a `::draw_on` method would be:
|
30
30
|
|
@@ -44,11 +44,11 @@ A typical usage of a `::draw_on` method would be:
|
|
44
44
|
|
45
45
|
## Windows, Wx::PaintDC and Wx::AutoBufferedPaintDC
|
46
46
|
|
47
|
-
The
|
47
|
+
The {Wx::PaintDC} and {Wx::AutoBufferedPaintDC} classes provide `::draw_on` methods just like all other DC classes but
|
48
48
|
this is mostly to be consistent.
|
49
49
|
|
50
|
-
In this case it is recommended to instead use the
|
51
|
-
provide some optimizations with regard to automatically detecting
|
50
|
+
In this case it is recommended to instead use the {Wx::Window#paint} or {Wx::Window#paint_buffered} methods as these
|
51
|
+
provide some optimizations with regard to automatically detecting if the methods are called inside `Wx::EVT_PAINT`
|
52
52
|
handlers (which should normally be the case) or not.
|
53
53
|
|
54
54
|
So the typical way to do buffered painting inside a windows `Wx::EVT_PAINT` handler would be something like:
|
data/lib/wx/doc/font.rb
CHANGED
@@ -1,5 +1,11 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
3
|
+
#
|
4
|
+
# This software is released under the MIT license.
|
5
|
+
# :startdoc:
|
1
6
|
|
2
|
-
|
7
|
+
|
8
|
+
module Wx
|
3
9
|
class Font
|
4
10
|
|
5
11
|
# @overload find_or_create_font(point_size, family, style, weight, underline=false, facename='', encoding=Wx::FontEncoding::FONTENCODING_DEFAULT)
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
3
|
+
#
|
4
|
+
# This software is released under the MIT license.
|
5
|
+
# :startdoc:
|
6
|
+
|
7
|
+
|
8
|
+
module Wx
|
9
|
+
|
10
|
+
FONTRESTRICT_NONE = 0
|
11
|
+
|
12
|
+
FONTRESTRICT_SCALABLE = 1 << 0
|
13
|
+
|
14
|
+
FONTRESTRICT_FIXEDPITCH = 1 << 1
|
15
|
+
|
16
|
+
end
|
data/lib/wx/doc/functions.rb
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
3
|
+
#
|
4
|
+
# This software is released under the MIT license.
|
5
|
+
|
6
|
+
|
1
7
|
# Wx global methods
|
2
8
|
#
|
3
9
|
# Documentation stubs for global Wx methods
|
10
|
+
# :startdoc:
|
11
|
+
|
4
12
|
|
5
13
|
|
6
14
|
module Wx
|
@@ -11,32 +19,73 @@ module Wx
|
|
11
19
|
# @param lvl [Integer] logging level (like {Wx::LOG_Message})
|
12
20
|
# @param fmt [String] message (formatting) string
|
13
21
|
# @param args [Array<Object>] optional message arguments
|
14
|
-
# @
|
15
|
-
|
22
|
+
# @param filename [String] optional file name for log info
|
23
|
+
# @param line [Integer] optional line number for log info
|
24
|
+
# @param func [String] optional function name for log info
|
25
|
+
# @param component [String] optional component name for log info
|
26
|
+
# @return [void]
|
27
|
+
def self.log_generic(lvl, fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
16
28
|
|
17
29
|
# Log a Wx low priority informational message to the current Wx log output
|
18
30
|
# @param fmt [String] message (formatting) string
|
19
31
|
# @param args [Array<Object>] optional message arguments
|
20
|
-
# @
|
21
|
-
|
32
|
+
# @param filename [String] optional file name for log info
|
33
|
+
# @param line [Integer] optional line number for log info
|
34
|
+
# @param func [String] optional function name for log info
|
35
|
+
# @param component [String] optional component name for log info
|
36
|
+
# @return [void]
|
37
|
+
def self.log_info(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
22
38
|
|
23
39
|
# Log a Wx Informational message to the current Wx log output
|
24
40
|
# @param fmt [String] message (formatting) string
|
25
41
|
# @param args [Array<Object>] optional message arguments
|
26
|
-
# @
|
27
|
-
|
42
|
+
# @param filename [String] optional file name for log info
|
43
|
+
# @param line [Integer] optional line number for log info
|
44
|
+
# @param func [String] optional function name for log info
|
45
|
+
# @param component [String] optional component name for log info
|
46
|
+
# @return [void]
|
47
|
+
def self.log_message(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
28
48
|
|
29
49
|
# Log a Wx Error message to the current Wx log output
|
30
50
|
# @param fmt [String] message (formatting) string
|
31
51
|
# @param args [Array<Object>] optional message arguments
|
32
|
-
# @
|
33
|
-
|
52
|
+
# @param filename [String] optional file name for log info
|
53
|
+
# @param line [Integer] optional line number for log info
|
54
|
+
# @param func [String] optional function name for log info
|
55
|
+
# @param component [String] optional component name for log info
|
56
|
+
# @return [void]
|
57
|
+
def self.log_error(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
34
58
|
|
35
59
|
# Log a Wx Warning message to the current Wx log output
|
36
60
|
# @param fmt [String] message (formatting) string
|
37
61
|
# @param args [Array<Object>] optional message arguments
|
38
|
-
# @
|
39
|
-
|
62
|
+
# @param filename [String] optional file name for log info
|
63
|
+
# @param line [Integer] optional line number for log info
|
64
|
+
# @param func [String] optional function name for log info
|
65
|
+
# @param component [String] optional component name for log info
|
66
|
+
# @return [void]
|
67
|
+
def self.log_warning(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
68
|
+
|
69
|
+
# Log a Wx verbose informational message to the current Wx log output
|
70
|
+
# (needs explicit activation to be shown)
|
71
|
+
# @param fmt [String] message (formatting) string
|
72
|
+
# @param args [Array<Object>] optional message arguments
|
73
|
+
# @param filename [String] optional file name for log info
|
74
|
+
# @param line [Integer] optional line number for log info
|
75
|
+
# @param func [String] optional function name for log info
|
76
|
+
# @param component [String] optional component name for log info
|
77
|
+
# @return [void]
|
78
|
+
def self.log_verbose(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
79
|
+
|
80
|
+
# Log a Wx debug message to the current Wx log output
|
81
|
+
# @param fmt [String] message (formatting) string
|
82
|
+
# @param args [Array<Object>] optional message arguments
|
83
|
+
# @param filename [String] optional file name for log info
|
84
|
+
# @param line [Integer] optional line number for log info
|
85
|
+
# @param func [String] optional function name for log info
|
86
|
+
# @param component [String] optional component name for log info
|
87
|
+
# @return [void]
|
88
|
+
def self.log_debug(fmt, *args, filename: nil, line: 0, func: nil, component: nil) end
|
40
89
|
|
41
90
|
# Log a Wx Status message - this is directed to the status bar of the
|
42
91
|
# specified Frame window, or the application main window if not specified.
|
@@ -51,19 +100,6 @@ module Wx
|
|
51
100
|
# @return [nil]
|
52
101
|
def self.log_status(fmt, *args) end
|
53
102
|
|
54
|
-
# Log a Wx verbose informational message to the current Wx log output
|
55
|
-
# (needs explicit activation to be shown)
|
56
|
-
# @param fmt [String] message (formatting) string
|
57
|
-
# @param args [Array<Object>] optional message arguments
|
58
|
-
# @return [nil]
|
59
|
-
def self.log_verbose(fmt, *args) end
|
60
|
-
|
61
|
-
# Log a Wx debug message to the current Wx log output
|
62
|
-
# @param fmt [String] message (formatting) string
|
63
|
-
# @param args [Array<Object>] optional message arguments
|
64
|
-
# @return [nil]
|
65
|
-
def self.log_debug(fmt, *args) end
|
66
|
-
|
67
103
|
# @!endgroup
|
68
104
|
|
69
105
|
# @!group Other class methods
|
@@ -76,7 +112,7 @@ module Wx
|
|
76
112
|
# string - useful for debugging
|
77
113
|
# @param obj [Object] wrapped object
|
78
114
|
# @return [String] string with address in hex format
|
79
|
-
def self.
|
115
|
+
def self.ptr_addr(obj) end
|
80
116
|
|
81
117
|
# Converts a string XRC id into a Wx id
|
82
118
|
# @param str [String] XRC id string
|
data/lib/wx/doc/gc_dc.rb
CHANGED
data/lib/wx/doc/gdi_common.rb
CHANGED
@@ -1,7 +1,14 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
3
|
+
#
|
4
|
+
# This software is released under the MIT license.
|
5
|
+
|
6
|
+
|
1
7
|
###
|
2
8
|
# wxRuby3 geometry classes
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
9
|
###
|
10
|
+
# :startdoc:
|
11
|
+
|
5
12
|
|
6
13
|
|
7
14
|
module Wx
|
@@ -66,7 +66,7 @@ module Wx
|
|
66
66
|
class AboutDialogInfo < ::Object
|
67
67
|
|
68
68
|
# Default constructor leaves all fields are initially uninitialized, in general you should call at least {Wx::AboutDialogInfo#set_version}, {Wx::AboutDialogInfo#set_copyright} and {Wx::AboutDialogInfo#set_description}.
|
69
|
-
# @return [AboutDialogInfo]
|
69
|
+
# @return [Wx::AboutDialogInfo]
|
70
70
|
def initialize; end
|
71
71
|
|
72
72
|
# Adds an artist name to be shown in the program credits.
|
@@ -107,7 +107,7 @@ module Wx
|
|
107
107
|
# Returns true if a description string has been specified.
|
108
108
|
#
|
109
109
|
# @see Wx::AboutDialogInfo#get_description
|
110
|
-
# @return [
|
110
|
+
# @return [Boolean]
|
111
111
|
def has_description; end
|
112
112
|
alias_method :has_description?, :has_description
|
113
113
|
|
@@ -120,7 +120,7 @@ module Wx
|
|
120
120
|
# Returns true if a copyright string has been specified.
|
121
121
|
#
|
122
122
|
# @see Wx::AboutDialogInfo#get_copyright
|
123
|
-
# @return [
|
123
|
+
# @return [Boolean]
|
124
124
|
def has_copyright; end
|
125
125
|
alias_method :has_copyright?, :has_copyright
|
126
126
|
|
@@ -168,7 +168,7 @@ module Wx
|
|
168
168
|
alias_method :doc_writers=, :set_doc_writers
|
169
169
|
|
170
170
|
# Returns true if an icon has been set for the about dialog.
|
171
|
-
# @return [
|
171
|
+
# @return [Boolean]
|
172
172
|
def has_icon; end
|
173
173
|
alias_method :has_icon?, :has_icon
|
174
174
|
|
@@ -185,7 +185,7 @@ module Wx
|
|
185
185
|
alias_method :icon=, :set_icon
|
186
186
|
|
187
187
|
# Returns true if the licence string has been set.
|
188
|
-
# @return [
|
188
|
+
# @return [Boolean]
|
189
189
|
def has_licence; end
|
190
190
|
alias_method :has_licence?, :has_licence
|
191
191
|
|
@@ -247,7 +247,7 @@ module Wx
|
|
247
247
|
alias_method :long_version, :get_long_version
|
248
248
|
|
249
249
|
# Returns true if the website info has been set.
|
250
|
-
# @return [
|
250
|
+
# @return [Boolean]
|
251
251
|
def has_web_site; end
|
252
252
|
alias_method :has_web_site?, :has_web_site
|
253
253
|
|
@@ -270,7 +270,7 @@ module Wx
|
|
270
270
|
alias_method :web_site=, :set_web_site
|
271
271
|
|
272
272
|
# Returns true if developers have been set in the dialog info.
|
273
|
-
# @return [
|
273
|
+
# @return [Boolean]
|
274
274
|
def has_developers; end
|
275
275
|
alias_method :has_developers?, :has_developers
|
276
276
|
|
@@ -280,7 +280,7 @@ module Wx
|
|
280
280
|
alias_method :developers, :get_developers
|
281
281
|
|
282
282
|
# Returns true if writers have been set in the dialog info.
|
283
|
-
# @return [
|
283
|
+
# @return [Boolean]
|
284
284
|
def has_doc_writers; end
|
285
285
|
alias_method :has_doc_writers?, :has_doc_writers
|
286
286
|
|
@@ -290,7 +290,7 @@ module Wx
|
|
290
290
|
alias_method :doc_writers, :get_doc_writers
|
291
291
|
|
292
292
|
# Returns true if artists have been set in the dialog info.
|
293
|
-
# @return [
|
293
|
+
# @return [Boolean]
|
294
294
|
def has_artists; end
|
295
295
|
alias_method :has_artists?, :has_artists
|
296
296
|
|
@@ -300,7 +300,7 @@ module Wx
|
|
300
300
|
alias_method :artists, :get_artists
|
301
301
|
|
302
302
|
# Returns true if translators have been set in the dialog info.
|
303
|
-
# @return [
|
303
|
+
# @return [Boolean]
|
304
304
|
def has_translators; end
|
305
305
|
alias_method :has_translators?, :has_translators
|
306
306
|
|
@@ -58,11 +58,11 @@ module Wx
|
|
58
58
|
# @param keyCode [Integer,String] The keycode (or character) to be detected. See {Wx::KeyCode} for a full list of keycodes.
|
59
59
|
# @param cmd [Integer] The menu or control command identifier (ID).
|
60
60
|
# @param item [Wx::MenuItem] The menu item associated with this accelerator.
|
61
|
-
# @return [AcceleratorEntry]
|
61
|
+
# @return [Wx::AcceleratorEntry]
|
62
62
|
# @overload initialize(entry)
|
63
63
|
# Copy ctor.
|
64
64
|
# @param entry [Wx::AcceleratorEntry]
|
65
|
-
# @return [AcceleratorEntry]
|
65
|
+
# @return [Wx::AcceleratorEntry]
|
66
66
|
def initialize(*args) end
|
67
67
|
|
68
68
|
# Returns the command identifier for the accelerator table entry.
|
@@ -94,7 +94,7 @@ module Wx
|
|
94
94
|
def set(flags, keyCode, cmd, item=nil) end
|
95
95
|
|
96
96
|
# Returns true if this object is correctly initialized.
|
97
|
-
# @return [
|
97
|
+
# @return [Boolean]
|
98
98
|
def is_ok; end
|
99
99
|
alias_method :ok?, :is_ok
|
100
100
|
|
@@ -112,11 +112,11 @@ module Wx
|
|
112
112
|
# Parses the given string and sets the accelerator accordingly.
|
113
113
|
# true if the given string correctly initialized this object (i.e. if {Wx::AcceleratorEntry#is_ok} returns true after this call)
|
114
114
|
# @param str [String] This string may be either in the same format as returned by {Wx::AcceleratorEntry#to_string}, i.e. contain the accelerator itself only, or have the format of a full menu item text with i.e. <code>Label TAB Accelerator</code>. In the latter case, the part of the string before the TAB is ignored. Notice that the latter format is only supported for the compatibility with the previous wxWidgets versions and the new code should pass only the accelerator string itself to this function.
|
115
|
-
# @return [
|
115
|
+
# @return [Boolean]
|
116
116
|
def from_string(str) end
|
117
117
|
|
118
118
|
# @param entry [Wx::AcceleratorEntry]
|
119
|
-
# @return [
|
119
|
+
# @return [Boolean]
|
120
120
|
def ==(entry) end
|
121
121
|
|
122
122
|
end # AcceleratorEntry
|
@@ -148,20 +148,15 @@ module Wx
|
|
148
148
|
|
149
149
|
# @overload initialize()
|
150
150
|
# Default ctor.
|
151
|
-
# @return [AcceleratorTable]
|
151
|
+
# @return [Wx::AcceleratorTable]
|
152
152
|
# @overload initialize(entries)
|
153
153
|
# Initializes the accelerator table from an array of {Wx::AcceleratorEntry}.
|
154
154
|
# @param entries [Array<Wx::AcceleratorEntry>] The array of entries.
|
155
|
-
# @return [AcceleratorTable]
|
156
|
-
# @overload initialize(resource)
|
157
|
-
# Loads the accelerator table from a Windows resource (Windows only).
|
158
|
-
# Availability: only available for the {Wx::MSW} port. {Wx::msw}
|
159
|
-
# @param resource [String] Name of a Windows accelerator.
|
160
|
-
# @return [AcceleratorTable]
|
155
|
+
# @return [Wx::AcceleratorTable]
|
161
156
|
def initialize(*args) end
|
162
157
|
|
163
158
|
# Returns true if the accelerator table is valid.
|
164
|
-
# @return [
|
159
|
+
# @return [Boolean]
|
165
160
|
def is_ok; end
|
166
161
|
alias_method :ok?, :is_ok
|
167
162
|
|