wxruby3 0.9.0.pre.rc.3 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/ext/mkrf_conf_srcgem.rb +4 -1
- data/ext/wxruby3/include/wxruby-Config.h +953 -0
- data/ext/wxruby3/include/wxruby-ScaledDC.h +4 -1
- data/ext/wxruby3/include/wxruby-runtime.h +13 -1
- data/ext/wxruby3/swig/RubyStockObjects.i +5 -3
- data/ext/wxruby3/swig/common.i +30 -3
- data/ext/wxruby3/swig/custom/director.swg +296 -0
- data/ext/wxruby3/swig/custom/rubyapi.swg +19 -0
- data/ext/wxruby3/swig/custom/rubyerrors.swg +45 -0
- data/ext/wxruby3/swig/custom/rubyhead.swg +192 -0
- data/ext/wxruby3/swig/custom/rubyrun.swg +187 -0
- data/ext/wxruby3/swig/custom/swigrun.swg +363 -0
- data/ext/wxruby3/swig/custom/typemaps/swigtypemaps.swg +173 -0
- data/ext/wxruby3/swig/mark_free_impl.i +6 -4
- data/ext/wxruby3/swig/memory_management.i +5 -3
- data/ext/wxruby3/swig/typedefs.i +5 -3
- data/ext/wxruby3/swig/wx.i +55 -30
- data/ext/wxruby3/swig/wx.rc +4 -2
- 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/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/const.rb +83 -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/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 +73 -66
- 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 +6 -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 +18 -10
- data/lib/wx/doc/gc_dc.rb +6 -0
- data/lib/wx/doc/gdi_common.rb +8 -1
- 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 +11 -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 +96 -7
- 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/rakelib/build.rake +4 -1
- data/rakelib/build.rb +4 -1
- data/rakelib/config.rake +4 -1
- data/rakelib/configure.rb +4 -1
- data/rakelib/doc.rake +4 -1
- data/rakelib/doc.rb +5 -1
- data/rakelib/install.rake +4 -1
- 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 +6 -3
- 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/core/include/enum.inc +4 -1
- data/rakelib/lib/core/include/funcall.inc +22 -57
- data/rakelib/lib/core/include/init.inc +3 -0
- data/rakelib/lib/core/include/swigdirector.inc +384 -0
- data/rakelib/lib/core/include/swigrubyerrors.inc +161 -0
- data/{ext/wxruby3/swig/custom/swig4/rubyrun.swg → rakelib/lib/core/include/swigrubyrun.inc} +245 -120
- data/rakelib/lib/core/include/swigrun.inc +700 -0
- data/rakelib/lib/core/mapping.rb +26 -46
- data/rakelib/lib/core/package.rb +22 -5
- data/rakelib/lib/core/parameter.rb +7 -1
- data/rakelib/lib/core/spec.rb +14 -8
- data/rakelib/lib/core/spec_helper.rb +32 -9
- data/rakelib/lib/director/about_dialog_info.rb +4 -1
- data/rakelib/lib/director/accelerator.rb +8 -3
- data/rakelib/lib/director/animation.rb +5 -2
- data/rakelib/lib/director/animation_ctrl.rb +24 -1
- data/rakelib/lib/director/any_button.rb +5 -2
- data/rakelib/lib/director/app.rb +39 -7
- data/rakelib/lib/director/app_traits.rb +71 -0
- data/rakelib/lib/director/art_provider.rb +5 -2
- data/rakelib/lib/director/aui_dock_art.rb +4 -1
- data/rakelib/lib/director/aui_floating_frame.rb +4 -1
- data/rakelib/lib/director/aui_manager.rb +12 -5
- data/rakelib/lib/director/aui_manager_event.rb +4 -1
- data/rakelib/lib/director/aui_mdi_child_frame.rb +25 -1
- data/rakelib/lib/director/aui_mdi_client_window.rb +4 -1
- data/rakelib/lib/director/aui_mdi_parent_frame.rb +4 -1
- data/rakelib/lib/director/aui_notebook.rb +12 -1
- data/rakelib/lib/director/aui_notebook_event.rb +4 -1
- data/rakelib/lib/director/aui_pane_info.rb +4 -1
- data/rakelib/lib/director/aui_tab_art.rb +52 -1
- data/rakelib/lib/director/aui_tab_ctrl.rb +14 -1
- data/rakelib/lib/director/aui_toolbar.rb +6 -3
- data/rakelib/lib/director/aui_toolbar_art.rb +52 -1
- data/rakelib/lib/director/aui_toolbar_event.rb +4 -1
- data/rakelib/lib/director/aui_toolbar_item.rb +4 -1
- data/rakelib/lib/director/banner_window.rb +26 -0
- data/rakelib/lib/director/bitmap.rb +11 -2
- data/rakelib/lib/director/bitmap_combobox.rb +5 -1
- data/rakelib/lib/director/book_ctrls.rb +13 -3
- data/rakelib/lib/director/brush.rb +4 -1
- data/rakelib/lib/director/busy_info.rb +4 -1
- data/rakelib/lib/director/button.rb +4 -1
- data/rakelib/lib/director/calendar_ctrl.rb +4 -1
- data/rakelib/lib/director/calendar_date_attr.rb +4 -1
- data/rakelib/lib/director/caret.rb +4 -1
- data/rakelib/lib/director/check_listbox.rb +4 -1
- data/rakelib/lib/director/choice.rb +4 -1
- data/rakelib/lib/director/clipboard.rb +4 -1
- data/rakelib/lib/director/collapsible_pane.rb +4 -1
- data/rakelib/lib/director/collapsible_pane_event.rb +4 -1
- data/rakelib/lib/director/colour.rb +9 -1
- data/rakelib/lib/director/colour_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/combobox.rb +4 -1
- data/rakelib/lib/director/comboctrl.rb +94 -0
- data/rakelib/lib/director/config_base.rb +135 -0
- data/rakelib/lib/director/context_help_button.rb +4 -1
- data/rakelib/lib/director/control.rb +4 -1
- data/rakelib/lib/director/ctrl_with_items.rb +5 -1
- data/rakelib/lib/director/cursor.rb +6 -2
- data/rakelib/lib/director/data_format.rb +4 -1
- data/rakelib/lib/director/data_object.rb +4 -1
- data/rakelib/lib/director/data_object_simple_base.rb +5 -3
- data/rakelib/lib/director/date_event.rb +9 -2
- data/rakelib/lib/director/date_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/dc.rb +19 -1
- data/rakelib/lib/director/defs.rb +4 -1
- data/rakelib/lib/director/derived_dc.rb +27 -20
- data/rakelib/lib/director/dialog.rb +29 -3
- data/rakelib/lib/director/dialup_event.rb +44 -0
- data/rakelib/lib/director/dialup_manager.rb +45 -0
- data/rakelib/lib/director/dir_filterlist_ctrl.rb +4 -1
- data/rakelib/lib/director/dir_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/drag_image.rb +9 -2
- data/rakelib/lib/director/dragdrop.rb +4 -1
- data/rakelib/lib/director/editable_listbox.rb +4 -1
- data/rakelib/lib/director/event.rb +29 -3
- data/rakelib/lib/director/event_blocker.rb +4 -1
- data/rakelib/lib/director/event_filter.rb +4 -1
- data/rakelib/lib/director/event_handler.rb +28 -11
- data/rakelib/lib/director/event_loop.rb +4 -1
- data/rakelib/lib/director/events.rb +5 -2
- data/rakelib/lib/director/file_ctrl.rb +35 -0
- data/rakelib/lib/director/file_ctrl_event.rb +26 -0
- data/rakelib/lib/director/file_dialog_custom_control.rb +28 -0
- data/rakelib/lib/director/file_dialog_customize_hook.rb +28 -0
- data/rakelib/lib/director/file_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/file_system.rb +45 -0
- data/rakelib/lib/director/find_dialog_event.rb +4 -1
- data/rakelib/lib/director/find_replace_data.rb +4 -1
- data/rakelib/lib/director/font.rb +7 -3
- data/rakelib/lib/director/font_data.rb +9 -1
- data/rakelib/lib/director/font_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/frame.rb +45 -33
- data/rakelib/lib/director/fs_file.rb +52 -1
- data/rakelib/lib/director/functions.rb +11 -5
- data/rakelib/lib/director/gdi_object.rb +4 -1
- data/rakelib/lib/director/gdicommon.rb +33 -10
- data/rakelib/lib/director/generic_dirctrl.rb +4 -1
- data/rakelib/lib/director/graphics_context.rb +113 -18
- data/rakelib/lib/director/graphics_object.rb +13 -2
- data/rakelib/lib/director/grid_cell_attr.rb +28 -4
- data/rakelib/lib/director/grid_cell_editor.rb +28 -11
- data/rakelib/lib/director/grid_cell_renderer.rb +16 -3
- data/rakelib/lib/director/grid_ctrl.rb +146 -5
- data/rakelib/lib/director/grid_range_select_event.rb +4 -1
- data/rakelib/lib/director/grid_table_base.rb +6 -1
- data/rakelib/lib/director/grid_table_message.rb +4 -1
- data/rakelib/lib/director/header_ctrl.rb +37 -0
- data/rakelib/lib/director/help_controller.rb +14 -7
- data/rakelib/lib/director/help_provider.rb +4 -1
- data/rakelib/lib/director/html_cell.rb +10 -3
- data/rakelib/lib/director/html_data_object.rb +4 -1
- data/rakelib/lib/director/html_easy_printing.rb +4 -1
- data/rakelib/lib/director/html_event.rb +4 -1
- data/rakelib/lib/director/html_help_data.rb +4 -1
- data/rakelib/lib/director/html_help_window.rb +30 -0
- data/rakelib/lib/director/html_listbox.rb +4 -1
- data/rakelib/lib/director/html_printout.rb +6 -1
- data/rakelib/lib/director/html_window.rb +10 -8
- data/rakelib/lib/director/hyperlink_ctrl.rb +32 -0
- data/rakelib/lib/director/hyperlink_event.rb +4 -1
- data/rakelib/lib/director/icon.rb +4 -1
- data/rakelib/lib/director/image.rb +26 -3
- data/rakelib/lib/director/image_list.rb +5 -1
- data/rakelib/lib/director/info_bar.rb +26 -0
- data/rakelib/lib/director/list_ctrl.rb +39 -7
- data/rakelib/lib/director/listbox.rb +4 -1
- data/rakelib/lib/director/locale.rb +7 -4
- data/rakelib/lib/director/log.rb +51 -6
- data/rakelib/lib/director/mdi_frame.rb +4 -1
- data/rakelib/lib/director/media_ctrl.rb +4 -1
- data/rakelib/lib/director/menu.rb +16 -3
- data/rakelib/lib/director/menu_bar.rb +13 -2
- data/rakelib/lib/director/menu_item.rb +6 -6
- data/rakelib/lib/director/mouse_state.rb +5 -2
- data/rakelib/lib/director/numeric_property_validator.rb +4 -1
- data/rakelib/lib/director/object.rb +5 -2
- data/rakelib/lib/director/page_setup_dialog.rb +4 -1
- data/rakelib/lib/director/palette.rb +54 -2
- data/rakelib/lib/director/panel.rb +4 -1
- data/rakelib/lib/director/pen.rb +5 -2
- data/rakelib/lib/director/pgarray_editor_dialog.rb +4 -7
- data/rakelib/lib/director/pgcell.rb +4 -1
- data/rakelib/lib/director/pgeditor.rb +6 -3
- data/rakelib/lib/director/pgmulti_button.rb +4 -1
- data/rakelib/lib/director/pgproperties.rb +6 -3
- data/rakelib/lib/director/pgproperty.rb +42 -3
- data/rakelib/lib/director/pgvalidation_info.rb +9 -1
- data/rakelib/lib/director/pickerbase.rb +4 -1
- data/rakelib/lib/director/platform_info.rb +9 -1
- data/rakelib/lib/director/popup_window.rb +14 -1
- data/rakelib/lib/director/preview_frame.rb +5 -2
- data/rakelib/lib/director/print_data.rb +4 -1
- data/rakelib/lib/director/print_dialog.rb +4 -1
- data/rakelib/lib/director/printer.rb +14 -6
- data/rakelib/lib/director/property_grid.rb +30 -1
- data/rakelib/lib/director/property_grid_event.rb +11 -1
- data/rakelib/lib/director/property_grid_interface.rb +20 -6
- data/rakelib/lib/director/property_grid_manager.rb +4 -1
- data/rakelib/lib/director/property_grid_page.rb +4 -1
- data/rakelib/lib/director/property_grid_page_state.rb +4 -1
- data/rakelib/lib/director/radio_box.rb +4 -1
- data/rakelib/lib/director/rearrange_list.rb +36 -0
- data/rakelib/lib/director/region.rb +5 -1
- data/rakelib/lib/director/region_iterator.rb +4 -1
- data/rakelib/lib/director/ribbon_art_provider.rb +9 -1
- data/rakelib/lib/director/ribbon_bar.rb +4 -1
- data/rakelib/lib/director/ribbon_bar_event.rb +4 -1
- data/rakelib/lib/director/ribbon_button_bar.rb +4 -1
- data/rakelib/lib/director/ribbon_button_bar_event.rb +4 -1
- data/rakelib/lib/director/ribbon_ctrl.rb +4 -1
- data/rakelib/lib/director/ribbon_gallery.rb +8 -3
- data/rakelib/lib/director/ribbon_gallery_event.rb +4 -1
- data/rakelib/lib/director/ribbon_page.rb +4 -1
- data/rakelib/lib/director/ribbon_panel.rb +4 -1
- data/rakelib/lib/director/ribbon_panel_event.rb +4 -1
- data/rakelib/lib/director/ribbon_tool_bar.rb +4 -1
- data/rakelib/lib/director/ribbon_tool_bar_event.rb +4 -1
- data/rakelib/lib/director/richtext_box.rb +61 -0
- data/rakelib/lib/director/richtext_buffer.rb +219 -22
- data/rakelib/lib/director/richtext_buffer_data_object.rb +4 -1
- data/rakelib/lib/director/richtext_composite_object.rb +174 -0
- data/rakelib/lib/director/richtext_ctrl.rb +157 -4
- data/rakelib/lib/director/richtext_event.rb +4 -1
- data/rakelib/lib/director/richtext_file_handler.rb +13 -1
- data/rakelib/lib/director/richtext_formatting_dialog.rb +44 -0
- data/rakelib/lib/director/richtext_header_footer_data.rb +4 -1
- data/rakelib/lib/director/richtext_image.rb +56 -0
- data/rakelib/lib/director/richtext_object.rb +272 -0
- data/rakelib/lib/director/richtext_paragraph_layout_box.rb +178 -0
- data/rakelib/lib/director/richtext_printing.rb +4 -1
- data/rakelib/lib/director/richtext_style_listbox.rb +37 -0
- data/rakelib/lib/director/richtext_style_organiser_dialog.rb +28 -0
- data/rakelib/lib/director/sash_event.rb +42 -0
- data/rakelib/lib/director/sash_layout_event.rb +4 -1
- data/rakelib/lib/director/sash_layout_window.rb +4 -1
- data/rakelib/lib/director/sash_window.rb +4 -1
- data/rakelib/lib/director/scroll_bar.rb +4 -1
- data/rakelib/lib/director/scrolled_t.rb +7 -4
- data/rakelib/lib/director/searchctrl.rb +4 -1
- data/rakelib/lib/director/sizer.rb +68 -2
- data/rakelib/lib/director/sizer_item.rb +31 -3
- data/rakelib/lib/director/slider.rb +4 -1
- data/rakelib/lib/director/splash_screen.rb +4 -1
- data/rakelib/lib/director/splitter_event.rb +4 -1
- data/rakelib/lib/director/splitter_window.rb +4 -1
- data/rakelib/lib/director/static_bitmap.rb +4 -1
- data/rakelib/lib/director/static_box.rb +5 -2
- data/rakelib/lib/director/status_bar.rb +5 -1
- data/rakelib/lib/director/styled_text_ctrl.rb +14 -2
- data/rakelib/lib/director/styled_text_event.rb +4 -1
- data/rakelib/lib/director/system_options.rb +4 -1
- data/rakelib/lib/director/system_settings.rb +4 -1
- data/rakelib/lib/director/task_bar_icon.rb +5 -2
- data/rakelib/lib/director/text_attr.rb +5 -2
- data/rakelib/lib/director/text_entry.rb +4 -1
- data/rakelib/lib/director/text_validator.rb +6 -1
- data/rakelib/lib/director/textctrl.rb +32 -3
- data/rakelib/lib/director/time_picker_ctrl.rb +4 -1
- data/rakelib/lib/director/timer.rb +4 -1
- data/rakelib/lib/director/tip_provider.rb +4 -1
- data/rakelib/lib/director/toggle_button.rb +4 -1
- data/rakelib/lib/director/tool_bar.rb +20 -1
- data/rakelib/lib/director/tool_tip.rb +5 -2
- data/rakelib/lib/director/top_level_window.rb +58 -51
- data/rakelib/lib/director/tree_ctrl.rb +24 -46
- data/rakelib/lib/director/tree_event.rb +28 -10
- data/rakelib/lib/director/uiaction_simulator.rb +4 -1
- data/rakelib/lib/director/utils.rb +9 -1
- data/rakelib/lib/director/validator.rb +4 -1
- data/rakelib/lib/director/variant.rb +5 -2
- data/rakelib/lib/director/vlistbox.rb +4 -1
- data/rakelib/lib/director/vscrolled_window.rb +4 -1
- data/rakelib/lib/director/window.rb +81 -82
- data/rakelib/lib/director/window_disabler.rb +4 -1
- data/rakelib/lib/director/with_images.rb +5 -2
- data/rakelib/lib/director/wizard_page.rb +4 -1
- data/rakelib/lib/director/xml_node.rb +4 -1
- data/rakelib/lib/director/xml_resource.rb +4 -1
- data/rakelib/lib/director.rb +27 -28
- data/rakelib/lib/ext/enum_chain.rb +4 -1
- data/rakelib/lib/extractor/class.rb +8 -6
- data/rakelib/lib/extractor/enum.rb +15 -2
- data/rakelib/lib/extractor/function.rb +12 -4
- data/rakelib/lib/extractor/module.rb +4 -1
- data/rakelib/lib/extractor/variable.rb +4 -1
- data/rakelib/lib/extractor.rb +7 -2
- data/rakelib/lib/generate/analyzer.rb +31 -21
- data/rakelib/lib/generate/base.rb +4 -1
- data/rakelib/lib/generate/doc/animation_ctrl.yaml +15 -0
- data/rakelib/lib/generate/doc/events.yaml +10 -4
- data/rakelib/lib/generate/doc/grid_cell_attr.yaml +21 -0
- data/rakelib/lib/generate/doc/grid_ctrl.yaml +25 -0
- data/rakelib/lib/generate/doc/html_cell.yaml +11 -0
- data/rakelib/lib/generate/doc/html_help_controller.yaml +23 -0
- data/rakelib/lib/generate/doc/html_help_window.yaml +21 -0
- data/rakelib/lib/generate/doc/html_window.yaml +47 -0
- data/rakelib/lib/generate/doc/pg_editor.yaml +11 -0
- data/rakelib/lib/generate/doc/pg_multi_button.yaml +78 -0
- data/rakelib/lib/generate/doc/pg_properties.yaml +244 -0
- data/rakelib/lib/generate/doc/pg_property.yaml +188 -0
- data/rakelib/lib/generate/doc/property_grid.yaml +23 -0
- data/rakelib/lib/generate/doc/property_grid_interface.yaml +30 -0
- data/rakelib/lib/generate/doc/property_grid_manager.yaml +40 -0
- data/rakelib/lib/generate/doc/rich_text_html_handler.yaml +11 -0
- data/rakelib/lib/generate/doc/static_box.yaml +8 -0
- data/rakelib/lib/generate/doc/styled_text_ctrl.yaml +18 -0
- data/rakelib/lib/generate/doc/symbol_picker_dialog.yaml +40 -0
- data/rakelib/lib/generate/doc/xml_resource.yaml +3 -0
- data/rakelib/lib/generate/doc.rb +33 -6
- data/rakelib/lib/generate/interface.rb +80 -110
- data/rakelib/lib/generate/rakedep.rb +4 -1
- data/rakelib/lib/specs/interfaces.rb +50 -21
- data/rakelib/lib/streams.rb +5 -1
- data/rakelib/lib/swig_runner.rb +38 -72
- data/rakelib/lib/typemap/array_int_selections.rb +4 -1
- data/rakelib/lib/typemap/common.rb +81 -11
- data/rakelib/lib/typemap/config.rb +55 -0
- data/rakelib/lib/typemap/data_format.rb +5 -2
- data/rakelib/lib/typemap/data_object_data.rb +6 -3
- data/rakelib/lib/typemap/datetime.rb +8 -1
- data/rakelib/lib/typemap/grid_client_data.rb +4 -1
- data/rakelib/lib/typemap/grid_coords.rb +37 -7
- data/rakelib/lib/typemap/html_cell.rb +4 -1
- data/rakelib/lib/typemap/io_streams.rb +4 -1
- data/rakelib/lib/typemap/pgcell.rb +4 -1
- data/rakelib/lib/typemap/pgeditor.rb +4 -1
- data/rakelib/lib/typemap/pgprop_arg.rb +11 -3
- data/rakelib/lib/typemap/pgproperty.rb +4 -1
- data/rakelib/lib/typemap/points_list.rb +9 -8
- data/rakelib/lib/typemap/richtext.rb +185 -11
- data/rakelib/lib/typemap/tree_itemid.rb +26 -1
- data/rakelib/lib/util/string.rb +14 -9
- data/rakelib/prepost.rake +4 -1
- data/rakelib/prepost.rb +4 -1
- data/rakelib/run.rake +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 +1794 -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_exit_exception.rb +36 -0
- data/tests/test_app_init_exception.rb +20 -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_book_controls.rb +29 -0
- 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_exceptions.rb +41 -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_sizer.rb +43 -0
- data/tests/test_std_controls.rb +81 -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 +112 -5
- data/ext/wxruby3/swig/custom/swig3/rubyrun.swg +0 -456
- data/rakelib/lib/director/html_help_frame.rb +0 -25
data/lib/wx/doc/const.rb
CHANGED
|
@@ -1,77 +1,84 @@
|
|
|
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
|
+
|
|
1
8
|
module Wx
|
|
2
9
|
|
|
3
10
|
=begin
|
|
4
11
|
These constants are not documented in the wxWidgets interface headers
|
|
5
12
|
although they are referenced in various argument defaults which *are*
|
|
6
13
|
in the interface header declarations so we do want them included the
|
|
7
|
-
wxRuby docs so the doc links work
|
|
8
|
-
wxRuby implementation since these are internal to the C++ wrappers.
|
|
14
|
+
wxRuby docs so the doc links work.
|
|
9
15
|
=end
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
17
|
+
DEFAULT_DATE_TIME_FORMAT = '%c'
|
|
18
|
+
DEFAULT_TIME_SPAN_FORMAT = '%H:%M:%S'
|
|
19
|
+
|
|
20
|
+
CHOICE_NAME_STR = 'choice'
|
|
21
|
+
COLOUR_PICKER_CTRL_NAME_STR = 'colourpicker'
|
|
22
|
+
COLOUR_PICKER_WIDGET_NAME_STR = 'colourpickerwidget'
|
|
23
|
+
HYPERLINK_CTRL_NAME_STR = 'hyperlink'
|
|
24
|
+
PANEL_NAME_STR = 'panel'
|
|
25
|
+
LIST_BOX_NAME_STR = 'listBox'
|
|
26
|
+
FRAME_NAME_STR = 'frame'
|
|
27
|
+
STATUS_LINE_NAME_STR = 'status_line'
|
|
28
|
+
STATIC_BITMAP_NAME_STR = 'staticBitmap'
|
|
29
|
+
WEB_VIEW_NAME_STR = 'wxWebView'
|
|
30
|
+
ANIMATION_CTRL_NAME_STR = 'animationctrl'
|
|
31
|
+
TOOL_BAR_NAME_STR = 'toolbar'
|
|
32
|
+
TEXT_CTRL_NAME_STR = 'text'
|
|
33
|
+
LIST_CTRL_NAME_STR = 'listCtrl'
|
|
34
|
+
FILE_PICKER_CTRL_NAME_STR = 'filepicker'
|
|
35
|
+
FILE_PICKER_WIDGET_NAME_STR = 'filepickerwidget'
|
|
36
|
+
DIR_PICKER_CTRL_NAME_STR = 'dirpicker'
|
|
37
|
+
DIR_PICKER_WIDGET_NAME_STR = 'dirpickerwidget'
|
|
38
|
+
FILE_CTRL_NAME_STR = 'wxfilectrl'
|
|
39
|
+
FILE_SELECTOR_PROMPT_STR = 'Select a file'
|
|
40
|
+
STATIC_BOX_NAME_STR = 'groupBox'
|
|
41
|
+
BUTTON_NAME_STR = 'button'
|
|
42
|
+
RADIO_BOX_NAME_STR = 'radioBox'
|
|
43
|
+
STATIC_LINE_NAME_STR = 'staticLine'
|
|
44
|
+
RADIO_BUTTON_NAME_STR = 'radioButton'
|
|
45
|
+
BITMAP_RADIO_BUTTON_NAME_STR = 'radioButton'
|
|
46
|
+
GAUGE_NAME_STR = 'gauge'
|
|
47
|
+
DATA_VIEW_CTRL_NAME_STR = 'dataviewCtrl'
|
|
48
|
+
FONT_PICKER_CTRL_NAME_STR = 'fontpicker'
|
|
49
|
+
FONT_PICKER_WIDGET_NAME_STR = 'fontpickerwidget'
|
|
50
|
+
REARRANGE_LIST_NAME_STR = 'wxRearrangeList'
|
|
51
|
+
REARRANGE_DIALOG_NAME_STR = 'wxRearrangeDlg'
|
|
52
|
+
NOTEBOOK_NAME_STR = 'notebook'
|
|
53
|
+
CONTROL_NAME_STR = 'control'
|
|
54
|
+
SCROLL_BAR_NAME_STR = 'scrollBar'
|
|
55
|
+
STATUS_BAR_NAME_STR = 'statusBar'
|
|
56
|
+
SLIDER_NAME_STR = 'slider'
|
|
57
|
+
HEADER_CTRL_NAME_STR = 'wxHeaderCtrl'
|
|
58
|
+
BITMAP_COMBO_BOX_NAME_STR = 'bitmapComboBox'
|
|
59
|
+
CHECK_BOX_NAME_STR = 'check'
|
|
60
|
+
FILE_DIALOG_NAME_STR = 'filedlg'
|
|
61
|
+
ADD_REMOVE_CTRL_NAME_STR = 'wxAddRemoveCtrl'
|
|
62
|
+
STATIC_TEXT_NAME_STR = 'staticText'
|
|
63
|
+
COMBO_BOX_NAME_STR = 'comboBox'
|
|
64
|
+
SEARCH_CTRL_NAME_STR = 'searchCtrl'
|
|
65
|
+
TREE_CTRL_NAME_STR = 'treeCtrl'
|
|
66
|
+
DIALOG_NAME_STR = 'dialog'
|
|
67
|
+
COLLAPSIBLE_HEADER_CTRL_NAME_STR = 'collapsibleHeader'
|
|
68
|
+
COLLAPSIBLE_PANE_NAME_STR = 'collapsiblePane'
|
|
69
|
+
BANNER_WINDOW_NAME_STR = 'bannerwindow'
|
|
70
|
+
GRID_NAME_STR = 'grid'
|
|
71
|
+
TREE_LIST_CTRL_NAME_STR = 'wxTreeListCtrl'
|
|
72
|
+
HTML_LIST_BOX_NAME_STR = 'htmlListBox'
|
|
73
|
+
SIMPLE_HTML_LIST_BOX_NAME_STR = 'simpleHtmlListBox'
|
|
74
|
+
EDITABLE_LIST_BOX_NAME_STR = 'editableListBox'
|
|
75
|
+
V_LIST_BOX_NAME_STR = 'wxVListBox'
|
|
76
|
+
|
|
77
|
+
# wxMSW only
|
|
78
|
+
MSW_HEADER_CTRL_NAME_STR = 'wxMSWHeaderCtrl'
|
|
13
79
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
HyperlinkCtrlNameStr = 'hyperlink'
|
|
18
|
-
PanelNameStr = 'panel'
|
|
19
|
-
ListBoxNameStr = 'listBox'
|
|
20
|
-
FrameNameStr = 'frame'
|
|
21
|
-
StatusLineNameStr = 'status_line'
|
|
22
|
-
StaticBitmapNameStr = 'staticBitmap'
|
|
23
|
-
WebViewNameStr = 'wxWebView'
|
|
24
|
-
AnimationCtrlNameStr = 'animationctrl'
|
|
25
|
-
ToolBarNameStr = 'toolbar'
|
|
26
|
-
TextCtrlNameStr = 'text'
|
|
27
|
-
ListCtrlNameStr = 'listCtrl'
|
|
28
|
-
FilePickerCtrlNameStr = 'filepicker'
|
|
29
|
-
FilePickerWidgetNameStr = 'filepickerwidget'
|
|
30
|
-
DirPickerCtrlNameStr = 'dirpicker'
|
|
31
|
-
DirPickerWidgetNameStr = 'dirpickerwidget'
|
|
32
|
-
FileCtrlNameStr = 'wxfilectrl'
|
|
33
|
-
StaticBoxNameStr = 'groupBox'
|
|
34
|
-
ButtonNameStr = 'button'
|
|
35
|
-
RadioBoxNameStr = 'radioBox'
|
|
36
|
-
StaticLineNameStr = 'staticLine'
|
|
37
|
-
RadioButtonNameStr = 'radioButton'
|
|
38
|
-
BitmapRadioButtonNameStr = 'radioButton'
|
|
39
|
-
GaugeNameStr = 'gauge'
|
|
40
|
-
DataViewCtrlNameStr = 'dataviewCtrl'
|
|
41
|
-
FontPickerCtrlNameStr = 'fontpicker'
|
|
42
|
-
FontPickerWidgetNameStr = 'fontpickerwidget'
|
|
43
|
-
RearrangeListNameStr = 'wxRearrangeList'
|
|
44
|
-
RearrangeDialogNameStr = 'wxRearrangeDlg'
|
|
45
|
-
NotebookNameStr = 'notebook'
|
|
46
|
-
ControlNameStr = 'control'
|
|
47
|
-
ScrollBarNameStr = 'scrollBar'
|
|
48
|
-
StatusBarNameStr = 'statusBar'
|
|
49
|
-
SliderNameStr = 'slider'
|
|
50
|
-
HeaderCtrlNameStr = 'wxHeaderCtrl'
|
|
51
|
-
BitmapComboBoxNameStr = 'bitmapComboBox'
|
|
52
|
-
CheckBoxNameStr = 'check'
|
|
53
|
-
FileDialogNameStr = 'filedlg'
|
|
54
|
-
AddRemoveCtrlNameStr = 'wxAddRemoveCtrl'
|
|
55
|
-
StaticTextNameStr = 'staticText'
|
|
56
|
-
ComboBoxNameStr = 'comboBox'
|
|
57
|
-
SearchCtrlNameStr = 'searchCtrl'
|
|
58
|
-
DirDialogNameStr = 'wxDirCtrl'
|
|
59
|
-
TreeCtrlNameStr = 'treeCtrl'
|
|
60
|
-
DialogNameStr = 'dialog'
|
|
61
|
-
CollapsibleHeaderCtrlNameStr = 'collapsibleHeader'
|
|
62
|
-
CollapsiblePaneNameStr = 'collapsiblePane'
|
|
63
|
-
BannerWindowNameStr = 'bannerwindow'
|
|
64
|
-
GridNameStr = 'grid'
|
|
65
|
-
TreeListCtrlNameStr = 'wxTreeListCtrl'
|
|
66
|
-
HtmlListBoxNameStr = 'htmlListBox'
|
|
67
|
-
SimpleHtmlListBoxNameStr = 'simpleHtmlListBox'
|
|
68
|
-
EditableListBoxNameStr = 'editableListBox'
|
|
69
|
-
VListBoxNameStr = 'wxVListBox'
|
|
70
|
-
CollapsiblePaneNameStr = 'collapsiblePane'
|
|
71
|
-
MSWHeaderCtrlNameStr = 'wxMSWHeaderCtrl'
|
|
72
|
-
PropertyGridManagerNameStr = 'wxPropertyGridManager'
|
|
73
|
-
PropertyGridNameStr = 'wxPropertyGrid'
|
|
74
|
-
STCNameStr = 'stcwindow'
|
|
75
|
-
STCNameStr = 'stcwindow'
|
|
80
|
+
PROPERTY_GRID_MANAGER_NAME_STR = 'wxPropertyGridManager'
|
|
81
|
+
PROPERTY_GRID_NAME_STR = 'wxPropertyGrid'
|
|
82
|
+
STC_NAME_STR = 'stcwindow'
|
|
76
83
|
|
|
77
84
|
end
|
data/lib/wx/doc/core.rb
CHANGED
data/lib/wx/doc/cursor.rb
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
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
|
+
class Wx
|
|
3
9
|
|
|
4
10
|
# Searches for an art file with basename 'name' and creates a Cursor if found.
|
|
5
11
|
# Raises an ArgumentError if not found.
|
|
6
12
|
# Wx::ArtLocator::find_art is used to look up the art file using ::Kernel#caller_locations to
|
|
7
|
-
# determine the values for the 'art_path' and '
|
|
8
|
-
# absolute path to the folder holding the caller's code and '
|
|
9
|
-
# caller's source file). The 'art_type' argument is set to <code>:
|
|
13
|
+
# determine the values for the 'art_path' and 'art_section' arguments if not specified here
|
|
14
|
+
# ('art_path' is set to the absolute path to the folder holding the caller's code and 'art_section'
|
|
15
|
+
# to the basename of the caller's source file). The 'art_type' argument is set to <code>:cursor</code>.
|
|
10
16
|
# @param [String,Symbol] name base name of art file
|
|
11
17
|
# @param [Wx::BitmapType,nil] bmp_type bitmap type for art file (nil means any supported type)
|
|
18
|
+
# @param [String,nil] art_path base path to look up the art file
|
|
19
|
+
# @param [String,nil] art_section optional owner folder name for art files
|
|
12
20
|
# @return [Wx::Cursor]
|
|
13
21
|
# @see Wx::ArtLocator::find_art
|
|
14
|
-
def self.Cursor(name, bmp_type = nil); end
|
|
22
|
+
def self.Cursor(name, bmp_type = nil, art_path: nil, art_section: nil); end
|
|
15
23
|
|
|
16
24
|
end
|
data/lib/wx/doc/data_object.rb
CHANGED
|
@@ -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
|
+
# Default/Null time (mostly equates to `now`).
|
|
11
|
+
DEFAULT_DATE_TIME = nil
|
|
12
|
+
|
|
13
|
+
# Default/Null time (mostly equates to `now`).
|
|
14
|
+
DefaultDateTime = DEFAULT_DATE_TIME
|
|
15
|
+
|
|
16
|
+
end
|
data/lib/wx/doc/dc.rb
CHANGED
data/lib/wx/doc/enum.rb
CHANGED
data/lib/wx/doc/event.rb
CHANGED
data/lib/wx/doc/event_blocker.rb
CHANGED
data/lib/wx/doc/event_loop.rb
CHANGED
data/lib/wx/doc/events.rb
CHANGED
data/lib/wx/doc/evthandler.rb
CHANGED
|
@@ -56,117 +56,118 @@ Currently the following modules have been implemented.
|
|
|
56
56
|
|
|
57
57
|
### Core
|
|
58
58
|
|
|
59
|
-
The core wxRuby package providing the toplevel
|
|
59
|
+
The core wxRuby package providing the toplevel {Wx} module.
|
|
60
60
|
This package includes basic classes like:
|
|
61
61
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
62
|
+
- {Wx::Object}
|
|
63
|
+
- {Wx::EvtHandler}
|
|
64
|
+
- {Wx::Event}
|
|
65
|
+
- {Wx::CommandEvent}
|
|
66
|
+
- {Wx::App}
|
|
67
|
+
- {Wx::Window}
|
|
68
|
+
- {Wx::NonOwnedWindow}
|
|
69
|
+
- {Wx::TopLevelWindow}
|
|
70
|
+
- {Wx::Frame}
|
|
71
|
+
- {Wx::Dialog}
|
|
72
72
|
|
|
73
73
|
as well as most common window classes, control/widget classes, event classes, constant and enum definitions
|
|
74
74
|
and global functions not part of any of the other packages.
|
|
75
75
|
|
|
76
76
|
### AUI - Advanced User Interface controls and related classes
|
|
77
77
|
|
|
78
|
-
The wxRuby AUI package providing the
|
|
78
|
+
The wxRuby AUI package providing the {Wx::AUI} module.
|
|
79
79
|
This package includes all classes, constants and enum definitions that are considered part of the
|
|
80
80
|
wxWidgets AUI framework like:
|
|
81
81
|
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
82
|
+
- {Wx::AUI::AuiManager}
|
|
83
|
+
- {Wx::AUI::AuiMDIParentFrame}
|
|
84
|
+
- {Wx::AUI::AuiMDIChildFrame}
|
|
85
|
+
- {Wx::AUI::AuiMDIClientWindow}
|
|
86
86
|
- etc
|
|
87
87
|
|
|
88
88
|
### GRID - Grid control and related classes
|
|
89
89
|
|
|
90
|
-
The wxRuby GRID package providing the
|
|
90
|
+
The wxRuby GRID package providing the {Wx::GRID} module.
|
|
91
91
|
This package includes all classes, constants and enum definitions that are associated with the
|
|
92
92
|
wxWidgets wxGrid control like:
|
|
93
93
|
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
94
|
+
- {Wx::GRID::Grid}
|
|
95
|
+
- {Wx::GRID::GridTableBase}
|
|
96
|
+
- {Wx::GRID::GridCellEditor}
|
|
97
|
+
- {Wx::GRID::GridCellRenderer}
|
|
98
|
+
- {Wx::GRID::GridEvent}
|
|
99
99
|
- etc
|
|
100
100
|
|
|
101
101
|
### HTML - Html framework classes
|
|
102
102
|
|
|
103
|
-
The wxRuby HTML package providing the
|
|
103
|
+
The wxRuby HTML package providing the {Wx::HTML} module.
|
|
104
104
|
This package includes all classes, constants and enum definitions that are considered part of the
|
|
105
105
|
wxWidgets Html framework like:
|
|
106
106
|
|
|
107
|
-
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
107
|
+
- {Wx::HTML::HtmlWindow}
|
|
108
|
+
- {Wx::HTML::HtmlHelpWindow}
|
|
109
|
+
- {Wx::HTML::HtmlPrintout}
|
|
110
|
+
- {Wx::HTML::HtmlHelpController}
|
|
111
|
+
- {Wx::HTML::HtmlListBox}
|
|
111
112
|
- etc
|
|
112
113
|
|
|
113
114
|
### PG - PropertyGrid control and related classes
|
|
114
115
|
|
|
115
|
-
The wxRuby PG package providing the
|
|
116
|
+
The wxRuby PG package providing the {Wx::PG} module.
|
|
116
117
|
This package includes all classes, constants and enum definitions that are associated with the
|
|
117
118
|
wxWidgets wxPropertyGrid control like:
|
|
118
119
|
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
120
|
+
- {Wx::PG::PropertyGrid}
|
|
121
|
+
- {Wx::PG::PropertyGridManager}
|
|
122
|
+
- {Wx::PG::PGCell}
|
|
123
|
+
- {Wx::PG::PGProperty}
|
|
124
|
+
- {Wx::PG::PropertyGridEvent}
|
|
124
125
|
- etc
|
|
125
126
|
|
|
126
127
|
### PRT - Printing framework classes
|
|
127
128
|
|
|
128
|
-
The wxRuby PRT package providing the
|
|
129
|
+
The wxRuby PRT package providing the {Wx::PRT} module.
|
|
129
130
|
This package includes all classes, constants and enum definitions that are considered part of the
|
|
130
131
|
wxWidgets Printing framework like:
|
|
131
132
|
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
-
|
|
135
|
-
-
|
|
133
|
+
- {Wx::PRT::PreviewFrame}
|
|
134
|
+
- {Wx::PRT::Printer}
|
|
135
|
+
- {Wx::PRT::PrinterDC}
|
|
136
|
+
- {Wx::PRT::PrintDialog}
|
|
136
137
|
- etc
|
|
137
138
|
|
|
138
139
|
### RBN - Ribbon framework classes
|
|
139
140
|
|
|
140
|
-
The wxRuby RBN package providing the
|
|
141
|
+
The wxRuby RBN package providing the {Wx::RBN} module.
|
|
141
142
|
This package includes all classes, constants and enum definitions that are considered part of the
|
|
142
143
|
wxWidgets Ribbon framework like:
|
|
143
144
|
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
145
|
+
- {Wx::RBN::RibbonControl}
|
|
146
|
+
- {Wx::RBN::RibbonGallery}
|
|
147
|
+
- {Wx::RBN::RibbonPanel}
|
|
148
|
+
- {Wx::RBN::RibbonPage}
|
|
149
|
+
- {Wx::RBN::RibbonBar}
|
|
149
150
|
- etc
|
|
150
151
|
|
|
151
152
|
### RTC - RichText control and related classes
|
|
152
153
|
|
|
153
|
-
The wxRuby RTC package providing the
|
|
154
|
+
The wxRuby RTC package providing the {Wx::RTC} module.
|
|
154
155
|
This package includes all classes, constants and enum definitions that are associated with the
|
|
155
156
|
wxWidgets wxRichTextCtrl control like:
|
|
156
157
|
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
158
|
+
- {Wx::RTC::RichTextCtrl}
|
|
159
|
+
- {Wx::RTC::RichTextEvent}
|
|
160
|
+
- {Wx::RTC::RichTextBuffer}
|
|
160
161
|
- etc
|
|
161
162
|
|
|
162
163
|
### STC - StyledText control and related classes
|
|
163
164
|
|
|
164
|
-
The wxRuby STC package providing the
|
|
165
|
+
The wxRuby STC package providing the {Wx::STC} module.
|
|
165
166
|
This package includes all classes, constants and enum definitions that are associated with the
|
|
166
167
|
wxWidgets wxStyledTextCtrl control (Scintilla integration) like:
|
|
167
168
|
|
|
168
|
-
-
|
|
169
|
-
-
|
|
169
|
+
- {Wx::STC::StyledTextCtrl}
|
|
170
|
+
- {Wx::STC::StyledTextEvent}
|
|
170
171
|
|
|
171
172
|
## Feature dependencies
|
|
172
173
|
|
|
@@ -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
|
|
@@ -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.
|