wxruby3 0.9.0.pre.rc.3 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/ext/mkrf_conf_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
@@ -0,0 +1,187 @@
|
|
1
|
+
/* -----------------------------------------------------------------------------
|
2
|
+
* rubyrun.swg
|
3
|
+
*
|
4
|
+
* This file contains the runtime support for Ruby modules
|
5
|
+
* and includes code for managing global variables and pointer
|
6
|
+
* type checking.
|
7
|
+
*
|
8
|
+
* Customized for wxRuby3.
|
9
|
+
* Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
10
|
+
*
|
11
|
+
* This software is released under the MIT license.
|
12
|
+
* ----------------------------------------------------------------------------- */
|
13
|
+
|
14
|
+
/* For backward compatibility only */
|
15
|
+
#define SWIG_POINTER_EXCEPTION 0
|
16
|
+
|
17
|
+
/* for raw pointers */
|
18
|
+
#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
|
19
|
+
#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, own)
|
20
|
+
#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Ruby_NewPointerObj(ptr, type, flags)
|
21
|
+
#define SWIG_AcquirePtr(ptr, own) SWIG_Ruby_AcquirePtr(ptr, own)
|
22
|
+
#define swig_owntype swig_ruby_owntype
|
23
|
+
|
24
|
+
/* for raw packed data */
|
25
|
+
#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty, flags)
|
26
|
+
#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
|
27
|
+
|
28
|
+
/* for class or struct pointers */
|
29
|
+
#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
|
30
|
+
#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
|
31
|
+
|
32
|
+
/* for C or C++ function pointers */
|
33
|
+
#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0)
|
34
|
+
#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0)
|
35
|
+
|
36
|
+
/* for C++ member pointers, ie, member methods */
|
37
|
+
#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty)
|
38
|
+
#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
|
39
|
+
|
40
|
+
|
41
|
+
/* Runtime API */
|
42
|
+
|
43
|
+
#define SWIG_GetModule(clientdata) SWIG_Ruby_GetModule(clientdata)
|
44
|
+
#define SWIG_SetModule(clientdata, pointer) SWIG_Ruby_SetModule(pointer)
|
45
|
+
|
46
|
+
|
47
|
+
/* Error manipulation */
|
48
|
+
|
49
|
+
#define SWIG_ErrorType(code) SWIG_Ruby_ErrorType(code)
|
50
|
+
#define SWIG_Error(code, msg) rb_raise(SWIG_Ruby_ErrorType(code), "%s", msg)
|
51
|
+
#define SWIG_fail goto fail
|
52
|
+
|
53
|
+
|
54
|
+
/* Ruby-specific SWIG API */
|
55
|
+
|
56
|
+
#define SWIG_InitRuntime() SWIG_Ruby_InitRuntime()
|
57
|
+
#define SWIG_define_class(ty) SWIG_Ruby_define_class(ty)
|
58
|
+
#define SWIG_NewClassInstance(value, ty) SWIG_Ruby_NewClassInstance(value, ty)
|
59
|
+
#define SWIG_MangleStr(value) SWIG_Ruby_MangleStr(value)
|
60
|
+
#define SWIG_CheckConvert(value, ty) SWIG_Ruby_CheckConvert(value, ty)
|
61
|
+
|
62
|
+
#include "assert.h"
|
63
|
+
|
64
|
+
/* -----------------------------------------------------------------------------
|
65
|
+
* pointers/data manipulation
|
66
|
+
* ----------------------------------------------------------------------------- */
|
67
|
+
|
68
|
+
#ifdef __cplusplus
|
69
|
+
extern "C" {
|
70
|
+
#endif
|
71
|
+
|
72
|
+
typedef struct WXRUBY_EXPORT swig_class {
|
73
|
+
VALUE klass;
|
74
|
+
VALUE mImpl;
|
75
|
+
void (*mark)(void *);
|
76
|
+
void (*destroy)(void *);
|
77
|
+
int trackObjects;
|
78
|
+
} swig_class;
|
79
|
+
|
80
|
+
/*
|
81
|
+
If your swig extension is to be run within an embedded ruby and has
|
82
|
+
director callbacks, you should set -DRUBY_EMBEDDED during compilation.
|
83
|
+
This will reset ruby's stack frame on each entry point from the main
|
84
|
+
program the first time a virtual director function is invoked (in a
|
85
|
+
non-recursive way).
|
86
|
+
If this is not done, you run the risk of Ruby trashing the stack.
|
87
|
+
*/
|
88
|
+
|
89
|
+
#ifdef RUBY_EMBEDDED
|
90
|
+
|
91
|
+
# define SWIG_INIT_STACK \
|
92
|
+
if ( !swig_virtual_calls ) { RUBY_INIT_STACK } \
|
93
|
+
++swig_virtual_calls;
|
94
|
+
# define SWIG_RELEASE_STACK --swig_virtual_calls;
|
95
|
+
# define Ruby_DirectorTypeMismatchException(x) \
|
96
|
+
rb_raise( rb_eTypeError, "%s", x ); return c_result;
|
97
|
+
|
98
|
+
static unsigned int swig_virtual_calls = 0;
|
99
|
+
|
100
|
+
#else /* normal non-embedded extension */
|
101
|
+
|
102
|
+
# define SWIG_INIT_STACK
|
103
|
+
# define SWIG_RELEASE_STACK
|
104
|
+
# define Ruby_DirectorTypeMismatchException(x) \
|
105
|
+
throw Swig::DirectorTypeMismatchException( x );
|
106
|
+
|
107
|
+
#endif /* RUBY_EMBEDDED */
|
108
|
+
|
109
|
+
|
110
|
+
/* This code checks to see if the Ruby object being raised as part
|
111
|
+
of an exception inherits from the Ruby class Exception. If so,
|
112
|
+
the object is simply returned. If not, then a new Ruby exception
|
113
|
+
object is created and that will be returned to Ruby.*/
|
114
|
+
WXRUBY_EXPORT VALUE
|
115
|
+
SWIG_Ruby_ExceptionType(swig_type_info *desc, VALUE obj);
|
116
|
+
|
117
|
+
/* Initialize Ruby runtime support */
|
118
|
+
WXRUBY_EXPORT void
|
119
|
+
SWIG_Ruby_InitRuntime(void);
|
120
|
+
|
121
|
+
/* Define Ruby class for C type */
|
122
|
+
WXRUBY_EXPORT void
|
123
|
+
SWIG_Ruby_define_class(swig_type_info *type);
|
124
|
+
|
125
|
+
/* Create a new pointer object */
|
126
|
+
WXRUBY_EXPORT VALUE
|
127
|
+
SWIG_Ruby_NewPointerObj(void *ptr, swig_type_info *type, int flags);
|
128
|
+
|
129
|
+
/* Create a new class instance (always owned) */
|
130
|
+
WXRUBY_EXPORT VALUE
|
131
|
+
SWIG_Ruby_NewClassInstance(VALUE klass, swig_type_info *type);
|
132
|
+
|
133
|
+
/* Get type mangle from class name */
|
134
|
+
WXRUBY_EXPORT char *
|
135
|
+
SWIG_Ruby_MangleStr(VALUE obj);
|
136
|
+
|
137
|
+
/* Acquire a pointer value */
|
138
|
+
typedef struct WXRUBY_EXPORT swig_ruby_owntype {
|
139
|
+
void (*datafree)(void *);
|
140
|
+
int own;
|
141
|
+
} swig_ruby_owntype;
|
142
|
+
|
143
|
+
WXRUBY_EXPORT swig_ruby_owntype
|
144
|
+
SWIG_Ruby_AcquirePtr(VALUE obj, swig_ruby_owntype own);
|
145
|
+
|
146
|
+
/* Convert a pointer value */
|
147
|
+
WXRUBY_EXPORT int
|
148
|
+
SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags, swig_ruby_owntype *own);
|
149
|
+
|
150
|
+
/* Check convert */
|
151
|
+
WXRUBY_EXPORT int
|
152
|
+
SWIG_Ruby_CheckConvert(VALUE obj, swig_type_info *ty);
|
153
|
+
|
154
|
+
WXRUBY_EXPORT VALUE
|
155
|
+
SWIG_Ruby_NewPackedObj(void *ptr, int sz, swig_type_info *type);
|
156
|
+
|
157
|
+
/* Convert a packed pointer value */
|
158
|
+
WXRUBY_EXPORT int
|
159
|
+
SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_type_info *ty);
|
160
|
+
|
161
|
+
WXRUBY_EXPORT swig_module_info *
|
162
|
+
SWIG_Ruby_GetModule(void *SWIGUNUSEDPARM(clientdata));
|
163
|
+
|
164
|
+
WXRUBY_EXPORT void
|
165
|
+
SWIG_Ruby_SetModule(swig_module_info *pointer);
|
166
|
+
|
167
|
+
/* This function can be used to check whether a proc or method or similarly
|
168
|
+
callable function has been passed. Usually used in a %typecheck, like:
|
169
|
+
|
170
|
+
%typecheck(c_callback_t, precedence=SWIG_TYPECHECK_POINTER) {
|
171
|
+
$result = SWIG_Ruby_isCallable( $input );
|
172
|
+
}
|
173
|
+
*/
|
174
|
+
WXRUBY_EXPORT
|
175
|
+
int SWIG_Ruby_isCallable( VALUE proc );
|
176
|
+
|
177
|
+
/* This function can be used to check the arity (number of arguments)
|
178
|
+
a proc or method can take. Usually used in a %typecheck.
|
179
|
+
Valid arities will be that equal to minimal or those < 0
|
180
|
+
which indicate a variable number of parameters at the end.
|
181
|
+
*/
|
182
|
+
WXRUBY_EXPORT
|
183
|
+
int SWIG_Ruby_arity( VALUE proc, int minimal );
|
184
|
+
|
185
|
+
#ifdef __cplusplus
|
186
|
+
}
|
187
|
+
#endif
|
@@ -0,0 +1,363 @@
|
|
1
|
+
/* -----------------------------------------------------------------------------
|
2
|
+
* swigrun.swg
|
3
|
+
*
|
4
|
+
* This file contains generic C API SWIG runtime support for pointer
|
5
|
+
* type checking.
|
6
|
+
*
|
7
|
+
* Customized for wxRuby3.
|
8
|
+
* Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
9
|
+
*
|
10
|
+
* This software is released under the MIT license.
|
11
|
+
* ----------------------------------------------------------------------------- */
|
12
|
+
|
13
|
+
/* This should only be incremented when either the layout of swig_type_info changes,
|
14
|
+
or for whatever reason, the runtime changes incompatibly */
|
15
|
+
#define SWIG_RUNTIME_VERSION "4"
|
16
|
+
|
17
|
+
/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
|
18
|
+
#ifdef SWIG_TYPE_TABLE
|
19
|
+
# define SWIG_QUOTE_STRING(x) #x
|
20
|
+
# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
|
21
|
+
# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
|
22
|
+
#else
|
23
|
+
# define SWIG_TYPE_TABLE_NAME
|
24
|
+
#endif
|
25
|
+
|
26
|
+
/*
|
27
|
+
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
|
28
|
+
creating a static or dynamic library from the SWIG runtime code.
|
29
|
+
In 99.9% of the cases, SWIG just needs to declare them as 'static'.
|
30
|
+
|
31
|
+
But only do this if strictly necessary, ie, if you have problems
|
32
|
+
with your compiler or suchlike.
|
33
|
+
*/
|
34
|
+
|
35
|
+
#ifndef SWIGRUNTIME
|
36
|
+
# define SWIGRUNTIME SWIGINTERN
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#ifndef SWIGRUNTIMEINLINE
|
40
|
+
# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
|
41
|
+
#endif
|
42
|
+
|
43
|
+
/* Generic buffer size */
|
44
|
+
#ifndef SWIG_BUFFER_SIZE
|
45
|
+
# define SWIG_BUFFER_SIZE 1024
|
46
|
+
#endif
|
47
|
+
|
48
|
+
/* Flags for pointer conversions */
|
49
|
+
#define SWIG_POINTER_DISOWN 0x1
|
50
|
+
#define SWIG_CAST_NEW_MEMORY 0x2
|
51
|
+
#define SWIG_POINTER_NO_NULL 0x4
|
52
|
+
#define SWIG_POINTER_CLEAR 0x8
|
53
|
+
#define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
|
54
|
+
|
55
|
+
/* Flags for new pointer objects */
|
56
|
+
#define SWIG_POINTER_OWN 0x1
|
57
|
+
|
58
|
+
|
59
|
+
/*
|
60
|
+
Flags/methods for returning states.
|
61
|
+
|
62
|
+
The SWIG conversion methods, as ConvertPtr, return an integer
|
63
|
+
that tells if the conversion was successful or not. And if not,
|
64
|
+
an error code can be returned (see swigerrors.swg for the codes).
|
65
|
+
|
66
|
+
Use the following macros/flags to set or process the returning
|
67
|
+
states.
|
68
|
+
|
69
|
+
In old versions of SWIG, code such as the following was usually written:
|
70
|
+
|
71
|
+
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
|
72
|
+
// success code
|
73
|
+
} else {
|
74
|
+
//fail code
|
75
|
+
}
|
76
|
+
|
77
|
+
Now you can be more explicit:
|
78
|
+
|
79
|
+
int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
|
80
|
+
if (SWIG_IsOK(res)) {
|
81
|
+
// success code
|
82
|
+
} else {
|
83
|
+
// fail code
|
84
|
+
}
|
85
|
+
|
86
|
+
which is the same really, but now you can also do
|
87
|
+
|
88
|
+
Type *ptr;
|
89
|
+
int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
|
90
|
+
if (SWIG_IsOK(res)) {
|
91
|
+
// success code
|
92
|
+
if (SWIG_IsNewObj(res) {
|
93
|
+
...
|
94
|
+
delete *ptr;
|
95
|
+
} else {
|
96
|
+
...
|
97
|
+
}
|
98
|
+
} else {
|
99
|
+
// fail code
|
100
|
+
}
|
101
|
+
|
102
|
+
I.e., now SWIG_ConvertPtr can return new objects and you can
|
103
|
+
identify the case and take care of the deallocation. Of course that
|
104
|
+
also requires SWIG_ConvertPtr to return new result values, such as
|
105
|
+
|
106
|
+
int SWIG_ConvertPtr(obj, ptr,...) {
|
107
|
+
if (<obj is ok>) {
|
108
|
+
if (<need new object>) {
|
109
|
+
*ptr = <ptr to new allocated object>;
|
110
|
+
return SWIG_NEWOBJ;
|
111
|
+
} else {
|
112
|
+
*ptr = <ptr to old object>;
|
113
|
+
return SWIG_OLDOBJ;
|
114
|
+
}
|
115
|
+
} else {
|
116
|
+
return SWIG_BADOBJ;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
|
121
|
+
more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
|
122
|
+
SWIG errors code.
|
123
|
+
|
124
|
+
Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
|
125
|
+
allows returning the 'cast rank', for example, if you have this
|
126
|
+
|
127
|
+
int food(double)
|
128
|
+
int fooi(int);
|
129
|
+
|
130
|
+
and you call
|
131
|
+
|
132
|
+
food(1) // cast rank '1' (1 -> 1.0)
|
133
|
+
fooi(1) // cast rank '0'
|
134
|
+
|
135
|
+
just use the SWIG_AddCast()/SWIG_CheckState()
|
136
|
+
*/
|
137
|
+
|
138
|
+
#define SWIG_OK (0)
|
139
|
+
/* Runtime errors are < 0 */
|
140
|
+
#define SWIG_ERROR (-1)
|
141
|
+
/* Errors in range -1 to -99 are in swigerrors.swg (errors for all languages including those not using the runtime) */
|
142
|
+
/* Errors in range -100 to -199 are language specific errors defined in *errors.swg */
|
143
|
+
/* Errors < -200 are generic runtime specific errors */
|
144
|
+
#define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
|
145
|
+
|
146
|
+
#define SWIG_IsOK(r) (r >= 0)
|
147
|
+
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
|
148
|
+
|
149
|
+
/* The CastRankLimit says how many bits are used for the cast rank */
|
150
|
+
#define SWIG_CASTRANKLIMIT (1 << 8)
|
151
|
+
/* The NewMask denotes the object was created (using new/malloc) */
|
152
|
+
#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
|
153
|
+
/* The TmpMask is for in/out typemaps that use temporary objects */
|
154
|
+
#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
|
155
|
+
/* Simple returning values */
|
156
|
+
#define SWIG_BADOBJ (SWIG_ERROR)
|
157
|
+
#define SWIG_OLDOBJ (SWIG_OK)
|
158
|
+
#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
|
159
|
+
#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
|
160
|
+
/* Check, add and del object mask methods */
|
161
|
+
#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
|
162
|
+
#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
|
163
|
+
#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
|
164
|
+
#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
|
165
|
+
#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
|
166
|
+
#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
|
167
|
+
|
168
|
+
/* Cast-Rank Mode */
|
169
|
+
#if defined(SWIG_CASTRANK_MODE)
|
170
|
+
# ifndef SWIG_TypeRank
|
171
|
+
# define SWIG_TypeRank unsigned long
|
172
|
+
# endif
|
173
|
+
# ifndef SWIG_MAXCASTRANK /* Default cast allowed */
|
174
|
+
# define SWIG_MAXCASTRANK (2)
|
175
|
+
# endif
|
176
|
+
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
|
177
|
+
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
|
178
|
+
SWIGINTERNINLINE int SWIG_AddCast(int r) {
|
179
|
+
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
|
180
|
+
}
|
181
|
+
SWIGINTERNINLINE int SWIG_CheckState(int r) {
|
182
|
+
return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
|
183
|
+
}
|
184
|
+
#else /* no cast-rank mode */
|
185
|
+
# define SWIG_AddCast(r) (r)
|
186
|
+
# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
|
187
|
+
#endif
|
188
|
+
|
189
|
+
|
190
|
+
#include <string.h>
|
191
|
+
|
192
|
+
#ifdef __cplusplus
|
193
|
+
extern "C" {
|
194
|
+
#endif
|
195
|
+
|
196
|
+
typedef void *(*swig_converter_func)(void *, int *);
|
197
|
+
typedef struct swig_type_info *(*swig_dycast_func)(void **);
|
198
|
+
|
199
|
+
/* Structure to store information on one type */
|
200
|
+
typedef struct WXRUBY_EXPORT swig_type_info
|
201
|
+
{
|
202
|
+
const char *name; /* mangled name of this type */
|
203
|
+
const char *str; /* human readable name of this type */
|
204
|
+
swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
|
205
|
+
struct swig_cast_info *cast; /* linked list of types that can cast into this type */
|
206
|
+
void *clientdata; /* language specific type data */
|
207
|
+
int owndata; /* flag if the structure owns the clientdata */
|
208
|
+
} swig_type_info;
|
209
|
+
|
210
|
+
/* Structure to store a type and conversion function used for casting */
|
211
|
+
typedef struct WXRUBY_EXPORT swig_cast_info
|
212
|
+
{
|
213
|
+
swig_type_info *type; /* pointer to type that is equivalent to this type */
|
214
|
+
swig_converter_func converter; /* function to cast the void pointers */
|
215
|
+
struct swig_cast_info *next; /* pointer to next cast in linked list */
|
216
|
+
struct swig_cast_info *prev; /* pointer to the previous cast */
|
217
|
+
} swig_cast_info;
|
218
|
+
|
219
|
+
/* Structure used to store module information
|
220
|
+
* Each module generates one structure like this, and the runtime collects
|
221
|
+
* all of these structures and stores them in a circularly linked list.*/
|
222
|
+
typedef struct WXRUBY_EXPORT swig_module_info
|
223
|
+
{
|
224
|
+
swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
|
225
|
+
size_t size; /* Number of types in this module */
|
226
|
+
struct swig_module_info *next; /* Pointer to next element in circularly linked list */
|
227
|
+
swig_type_info **type_initial; /* Array of initially generated type structures */
|
228
|
+
swig_cast_info **cast_initial; /* Array of initially generated casting structures */
|
229
|
+
void *clientdata; /* Language specific module data */
|
230
|
+
} swig_module_info;
|
231
|
+
|
232
|
+
/*
|
233
|
+
Compare two type names skipping the space characters, therefore
|
234
|
+
"char*" == "char *" and "Class<int>" == "Class<int >", etc.
|
235
|
+
|
236
|
+
Return 0 when the two name types are equivalent, as in
|
237
|
+
strncmp, but skipping ' '.
|
238
|
+
*/
|
239
|
+
WXRUBY_EXPORT int
|
240
|
+
SWIG_TypeNameComp(const char *f1, const char *l1,
|
241
|
+
const char *f2, const char *l2);
|
242
|
+
|
243
|
+
/*
|
244
|
+
Check type equivalence in a name list like <name1>|<name2>|...
|
245
|
+
Return 0 if equal, -1 if nb < tb, 1 if nb > tb
|
246
|
+
*/
|
247
|
+
WXRUBY_EXPORT int
|
248
|
+
SWIG_TypeCmp(const char *nb, const char *tb);
|
249
|
+
|
250
|
+
/*
|
251
|
+
Check type equivalence in a name list like <name1>|<name2>|...
|
252
|
+
Return 0 if not equal, 1 if equal
|
253
|
+
*/
|
254
|
+
SWIGRUNTIME int
|
255
|
+
SWIG_TypeEquiv(const char *nb, const char *tb) {
|
256
|
+
return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
|
257
|
+
}
|
258
|
+
|
259
|
+
/*
|
260
|
+
Check the typename
|
261
|
+
*/
|
262
|
+
WXRUBY_EXPORT swig_cast_info *
|
263
|
+
SWIG_TypeCheck(const char *c, swig_type_info *ty);
|
264
|
+
|
265
|
+
/*
|
266
|
+
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
|
267
|
+
*/
|
268
|
+
WXRUBY_EXPORT swig_cast_info *
|
269
|
+
SWIG_TypeCheckStruct(const swig_type_info *from, swig_type_info *ty);
|
270
|
+
|
271
|
+
/*
|
272
|
+
Cast a pointer up an inheritance hierarchy
|
273
|
+
*/
|
274
|
+
SWIGRUNTIMEINLINE void *
|
275
|
+
SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
|
276
|
+
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
|
277
|
+
}
|
278
|
+
|
279
|
+
/*
|
280
|
+
Dynamic pointer casting. Down an inheritance hierarchy
|
281
|
+
*/
|
282
|
+
WXRUBY_EXPORT swig_type_info *
|
283
|
+
SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr);
|
284
|
+
|
285
|
+
/*
|
286
|
+
Return the name associated with this type
|
287
|
+
*/
|
288
|
+
SWIGRUNTIMEINLINE const char *
|
289
|
+
SWIG_TypeName(const swig_type_info *ty) {
|
290
|
+
return ty->name;
|
291
|
+
}
|
292
|
+
|
293
|
+
/*
|
294
|
+
Return the pretty name associated with this type,
|
295
|
+
that is an unmangled type name in a form presentable to the user.
|
296
|
+
*/
|
297
|
+
WXRUBY_EXPORT const char *
|
298
|
+
SWIG_TypePrettyName(const swig_type_info *type);
|
299
|
+
|
300
|
+
/*
|
301
|
+
Set the clientdata field for a type
|
302
|
+
*/
|
303
|
+
WXRUBY_EXPORT void
|
304
|
+
SWIG_TypeClientData(swig_type_info *ti, void *clientdata);
|
305
|
+
WXRUBY_EXPORT void
|
306
|
+
SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata);
|
307
|
+
|
308
|
+
/*
|
309
|
+
Search for a swig_type_info structure only by mangled name
|
310
|
+
Search is a O(log #types)
|
311
|
+
|
312
|
+
We start searching at module start, and finish searching when start == end.
|
313
|
+
Note: if start == end at the beginning of the function, we go all the way around
|
314
|
+
the circular list.
|
315
|
+
*/
|
316
|
+
WXRUBY_EXPORT swig_type_info *
|
317
|
+
SWIG_MangledTypeQueryModule(swig_module_info *start,
|
318
|
+
swig_module_info *end,
|
319
|
+
const char *name);
|
320
|
+
/*
|
321
|
+
Search for a swig_type_info structure for either a mangled name or a human readable name.
|
322
|
+
It first searches the mangled names of the types, which is a O(log #types)
|
323
|
+
If a type is not found it then searches the human readable names, which is O(#types).
|
324
|
+
|
325
|
+
We start searching at module start, and finish searching when start == end.
|
326
|
+
Note: if start == end at the beginning of the function, we go all the way around
|
327
|
+
the circular list.
|
328
|
+
*/
|
329
|
+
WXRUBY_EXPORT swig_type_info *
|
330
|
+
SWIG_TypeQueryModule(swig_module_info *start,
|
331
|
+
swig_module_info *end,
|
332
|
+
const char *name);
|
333
|
+
|
334
|
+
/*
|
335
|
+
Pack binary data into a string
|
336
|
+
*/
|
337
|
+
WXRUBY_EXPORT char *
|
338
|
+
SWIG_PackData(char *c, void *ptr, size_t sz);
|
339
|
+
|
340
|
+
/*
|
341
|
+
Unpack binary data from a string
|
342
|
+
*/
|
343
|
+
WXRUBY_EXPORT const char *
|
344
|
+
SWIG_UnpackData(const char *c, void *ptr, size_t sz);
|
345
|
+
|
346
|
+
/*
|
347
|
+
Pack 'void *' into a string buffer.
|
348
|
+
*/
|
349
|
+
WXRUBY_EXPORT char *
|
350
|
+
SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz);
|
351
|
+
|
352
|
+
WXRUBY_EXPORT const char *
|
353
|
+
SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name);
|
354
|
+
|
355
|
+
WXRUBY_EXPORT char *
|
356
|
+
SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz);
|
357
|
+
|
358
|
+
WXRUBY_EXPORT const char *
|
359
|
+
SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name);
|
360
|
+
|
361
|
+
#ifdef __cplusplus
|
362
|
+
}
|
363
|
+
#endif
|