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
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './window'
|
@@ -45,6 +48,10 @@ module WXRuby3
|
|
45
48
|
rb_ary_push($result, INT2NUM(*$2));
|
46
49
|
__CODE
|
47
50
|
end
|
51
|
+
spec.map 'wxIntPtr' => 'Integer' do
|
52
|
+
map_in code: '$1 = NUM2ULL($input);'
|
53
|
+
map_out code: '$result = ULL2NUM($1);'
|
54
|
+
end
|
48
55
|
# not useful in wxRuby
|
49
56
|
spec.ignore 'wxStyledTextCtrl::HitTest(const wxPoint &, long *) const',
|
50
57
|
'wxStyledTextCtrl::GetDirectFunction',
|
@@ -64,7 +71,12 @@ module WXRuby3
|
|
64
71
|
'wxStyledTextCtrl::ReplaceTargetRaw',
|
65
72
|
'wxStyledTextCtrl::ReplaceTargetRERaw',
|
66
73
|
'wxStyledTextCtrl::SetStyleBytes',
|
67
|
-
'wxStyledTextCtrl::
|
74
|
+
'wxStyledTextCtrl::AddStyledText',
|
75
|
+
'wxStyledTextCtrl::GetStyledText',
|
76
|
+
'wxStyledTextCtrl::RegisterImage(int, const char *const *)',
|
77
|
+
'wxStyledTextCtrl::RegisterRGBAImage(int, const unsigned char *)',
|
78
|
+
'wxStyledTextCtrl::MarkerDefineRGBAImage(int, const unsigned char *)',
|
79
|
+
'wxStyledTextCtrl::MarkerDefinePixmap(int, const char *const *)'
|
68
80
|
# TODO : these need investigating to see if they might be useful
|
69
81
|
spec.ignore 'wxStyledTextCtrl::GetDocPointer',
|
70
82
|
'wxStyledTextCtrl::SetDocPointer',
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './event_handler'
|
@@ -51,7 +54,7 @@ module WXRuby3
|
|
51
54
|
int swig_res = SWIG_ConvertPtr(result, &ptr, $1_descriptor, 0 | SWIG_POINTER_DISOWN);
|
52
55
|
if (!SWIG_IsOK(swig_res))
|
53
56
|
{
|
54
|
-
Swig::DirectorTypeMismatchException::raise(rb_eTypeError,
|
57
|
+
Swig::DirectorTypeMismatchException::raise(swig_get_self(), "$symname", rb_eTypeError,
|
55
58
|
"create_popup_menu must return a Wx::Menu, or nil");
|
56
59
|
}
|
57
60
|
$result = reinterpret_cast < wxMenu * > (ptr);
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
module WXRuby3
|
@@ -11,7 +14,7 @@ module WXRuby3
|
|
11
14
|
|
12
15
|
def setup
|
13
16
|
super
|
14
|
-
spec.
|
17
|
+
spec.gc_as_untracked('wxTextAttr')
|
15
18
|
spec.ignore 'wxTextAttr::Merge(const wxTextAttr &,const wxTextAttr &)'
|
16
19
|
spec.do_not_generate :variables, :defines, :enums, :functions
|
17
20
|
end
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './event_handler'
|
@@ -35,6 +38,8 @@ module WXRuby3
|
|
35
38
|
spec.ignore 'wxTextValidator::wxTextValidator(long, wxString*)'
|
36
39
|
# add alternative
|
37
40
|
spec.extend_interface 'wxTextValidator', 'wxTextValidator(long style=wxFILTER_NONE)'
|
41
|
+
# ignore non-virtual standard handler (not really useful in Ruby)
|
42
|
+
spec.ignore 'wxTextValidator::OnChar'
|
38
43
|
spec.no_proxy 'wxTextValidator::Clone'
|
39
44
|
spec.new_object 'wxTextValidator::Clone'
|
40
45
|
# handle clone mapping
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './window'
|
@@ -17,11 +20,37 @@ module WXRuby3
|
|
17
20
|
spec.include_mixin 'wxTextCtrl', { 'Wx::TextEntry' => 'wxTextEntryBase' }
|
18
21
|
spec.override_inheritance_chain('wxTextCtrl', %w[wxControl wxWindow wxEvtHandler wxObject])
|
19
22
|
spec.ignore 'wxTextCtrl::HitTest(const wxPoint &,long *)'
|
20
|
-
if Config.instance.wx_port == :
|
23
|
+
if Config.instance.wx_port == :wxgtk && Config.instance.wx_version >= '3.3.0'
|
24
|
+
spec.ignore 'wxTextCtrl::GTKGetTextBuffer',
|
25
|
+
'wxTextCtrl::GTKGetEditable'
|
26
|
+
end
|
27
|
+
if Config.instance.wx_port == :wxqt
|
21
28
|
# not implemented
|
22
29
|
spec.ignore 'wxTextCtrl::OnDropFiles'
|
23
30
|
end
|
24
|
-
|
31
|
+
# Ignore these; wxTextProofOptions documentation is absolute crap and as the class is trivial
|
32
|
+
# we will not wrap it but create a simplified interface when USE_SPELLCHECK is enabled which
|
33
|
+
# we will complement in pure Ruby to provide Wx::TextProofOptions class
|
34
|
+
spec.ignore('wxTextCtrl::EnableProofCheck', 'wxTextCtrl::GetProofCheckOptions')
|
35
|
+
if Config.instance.features_set?('wxUSE_SPELLCHECK')
|
36
|
+
spec.add_extend_code 'wxTextCtrl', <<~__HEREDOC
|
37
|
+
VALUE DoEnableProofCheck(bool spelling, bool grammar, const wxString& language)
|
38
|
+
{
|
39
|
+
bool rc = $self->EnableProofCheck (wxTextProofOptions::Disable().SpellCheck(spelling).GrammarCheck(grammar).Language(language));
|
40
|
+
return rc ? Qtrue : Qfalse;
|
41
|
+
}
|
42
|
+
|
43
|
+
VALUE DoGetProofCheckOptions()
|
44
|
+
{
|
45
|
+
wxTextProofOptions opts = $self->GetProofCheckOptions();
|
46
|
+
VALUE rc = rb_ary_new();
|
47
|
+
rb_ary_push(rc, opts.IsSpellCheckEnabled() ? Qtrue : Qfalse);
|
48
|
+
rb_ary_push(rc, opts.IsGrammarCheckEnabled() ? Qtrue : Qfalse);
|
49
|
+
rb_ary_push(rc, WXSTR_TO_RSTR(opts.GetLang()));
|
50
|
+
return rc;
|
51
|
+
}
|
52
|
+
__HEREDOC
|
53
|
+
end
|
25
54
|
spec.no_proxy %w[wxTextCtrl::EmulateKeyPress wxTextCtrl::GetDefaultStyle]
|
26
55
|
spec.map_apply 'long * OUTPUT' => 'long *'
|
27
56
|
spec.map_apply 'long * OUTPUT' => [ 'wxTextCoord *col', 'wxTextCoord *row' ]
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './window'
|
@@ -32,6 +35,22 @@ module WXRuby3
|
|
32
35
|
spec.no_proxy 'wxToolBarToolBase'
|
33
36
|
# more sensible name to use
|
34
37
|
spec.rename_for_ruby('ToolBarTool' => 'wxToolBarToolBase')
|
38
|
+
spec.map 'wxToolBarBase *' => 'Wx::ToolBar' do
|
39
|
+
map_in code: <<~__CODE
|
40
|
+
void *argp = 0;
|
41
|
+
int res = SWIG_ConvertPtr($input, &argp, SWIGTYPE_p_wxToolBar, 0);
|
42
|
+
if (!SWIG_IsOK(res)) {
|
43
|
+
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "Wx::ToolBar", "$symname", 1, $input));
|
44
|
+
}
|
45
|
+
$1 = reinterpret_cast< wxToolBarBase * >(argp);
|
46
|
+
__CODE
|
47
|
+
map_typecheck code: <<~__CODE
|
48
|
+
void *vptr = 0;
|
49
|
+
int res = SWIG_ConvertPtr($input, &vptr, SWIGTYPE_p_wxToolBar, 0);
|
50
|
+
$1 = SWIG_CheckState(res);
|
51
|
+
__CODE
|
52
|
+
map_out code: '$result = SWIG_NewPointerObj(SWIG_as_voidptr($1), SWIGTYPE_p_wxToolBar, 0);'
|
53
|
+
end
|
35
54
|
# Ensure that the C++ wxToolBar(Base) implementation of UpdateWindowUI
|
36
55
|
# is called internally, so that UpdateUIEvents are also sent to each
|
37
56
|
# button within the toolbar. This means update_window_ui can't be
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
module WXRuby3
|
@@ -10,7 +13,7 @@ module WXRuby3
|
|
10
13
|
class ToolTip < Director
|
11
14
|
|
12
15
|
def setup
|
13
|
-
spec.
|
16
|
+
spec.ignore('wxToolTip::SetMaxWidth') unless Config.instance.features_set?('__WXMSW__')
|
14
17
|
super
|
15
18
|
end
|
16
19
|
end # class ToolTip
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './window'
|
@@ -13,49 +16,6 @@ module WXRuby3
|
|
13
16
|
|
14
17
|
def setup
|
15
18
|
super
|
16
|
-
# for all wxTopLevelWindow (derived) classes
|
17
|
-
spec.items.each do |itm|
|
18
|
-
spec.no_proxy("#{itm}::ClearBackground",
|
19
|
-
"#{itm}::Enable",
|
20
|
-
"#{itm}::EnableCloseButton",
|
21
|
-
"#{itm}::EndModal",
|
22
|
-
"#{itm}::GetHelpTextAtPoint",
|
23
|
-
"#{itm}::GetMaxSize",
|
24
|
-
"#{itm}::GetMinSize",
|
25
|
-
"#{itm}::GetTitle",
|
26
|
-
"#{itm}::Iconize",
|
27
|
-
"#{itm}::IsActive",
|
28
|
-
"#{itm}::IsFullScreen",
|
29
|
-
"#{itm}::IsMaximzed",
|
30
|
-
"#{itm}::IsAlwaysMaximzed",
|
31
|
-
"#{itm}::IsModal",
|
32
|
-
#"#{itm}::IsTopLevel",
|
33
|
-
"#{itm}::IsVisible",
|
34
|
-
"#{itm}::Maximize",
|
35
|
-
"#{itm}::Navigate",
|
36
|
-
"#{itm}::Refresh",
|
37
|
-
"#{itm}::Reparent",
|
38
|
-
"#{itm}::RequestUserAttention",
|
39
|
-
"#{itm}::Restore",
|
40
|
-
"#{itm}::SetIcon",
|
41
|
-
"#{itm}::SetIcons",
|
42
|
-
#"#{itm}::SetMaxSize",
|
43
|
-
#"#{itm}::SetMinSize",
|
44
|
-
"#{itm}::SetShape",
|
45
|
-
"#{itm}::SetSize",
|
46
|
-
"#{itm}::SetSize",
|
47
|
-
#"#{itm}::SetSizeHints",
|
48
|
-
#"#{itm}::SetSizeHints",
|
49
|
-
"#{itm}::SetTitle",
|
50
|
-
#"#{itm}::SetTransparent",
|
51
|
-
#"#{itm}::Show",
|
52
|
-
"#{itm}::ShowFullScreen",
|
53
|
-
"#{itm}::ShowModal",
|
54
|
-
"#{itm}::Update",
|
55
|
-
"#{itm}::UpdateWindow",
|
56
|
-
"#{itm}::Validate")
|
57
|
-
end
|
58
|
-
|
59
19
|
if spec.module_name == 'wxTopLevelWindow'
|
60
20
|
# add these to the generated interface to be parsed by SWIG
|
61
21
|
# the wxWidgets docs are flawed in this respect that several reimplemented
|
@@ -81,16 +41,15 @@ module WXRuby3
|
|
81
41
|
wxTopLevelWindow::RestoreToGeometry
|
82
42
|
wxTopLevelWindow::GeometrySerializer
|
83
43
|
}
|
84
|
-
|
44
|
+
unless Config.instance.features_set?('__WXUNIVERSAL__')
|
45
|
+
spec.ignore %w{
|
85
46
|
wxTopLevelWindow::IsUsingNativeDecorations
|
86
47
|
wxTopLevelWindow::UseNativeDecorations
|
87
48
|
wxTopLevelWindow::UseNativeDecorationsByDefault
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
spec.
|
92
|
-
'wxTopLevelWindow::OSXSetModified',
|
93
|
-
'wxTopLevelWindow::OSXIsModified'
|
49
|
+
}
|
50
|
+
end
|
51
|
+
spec.ignore('wxTopLevelWindow::MSWGetSystemMenu') unless Config.instance.features_set?('__WXMSW__')
|
52
|
+
spec.ignore('wxTopLevelWindow::OSXSetModified','wxTopLevelWindow::OSXIsModified') unless Config.instance.features_set?('__WXOSX__')
|
94
53
|
spec.swig_import 'swig/classes/include/wxDefs.h'
|
95
54
|
# incorrectly documented here
|
96
55
|
spec.override_events 'wxTopLevelWindow',
|
@@ -98,6 +57,54 @@ module WXRuby3
|
|
98
57
|
'EVT_MAXIMIZE' => ['EVT_MAXIMIZE', 0, 'wxMaximizeEvent'] }
|
99
58
|
end
|
100
59
|
end
|
60
|
+
|
61
|
+
def process(gendoc: false)
|
62
|
+
defmod = super
|
63
|
+
# for all wxTopLevelWindow (derived) classes
|
64
|
+
spec.items.each do |citem|
|
65
|
+
def_item = defmod.find_item(citem)
|
66
|
+
if Extractor::ClassDef === def_item && (citem == 'wxTopLevelWindow' || spec.is_derived_from?(def_item, 'wxTopLevelWindow'))
|
67
|
+
spec.no_proxy("#{spec.class_name(citem)}::ClearBackground",
|
68
|
+
"#{spec.class_name(citem)}::Enable",
|
69
|
+
"#{spec.class_name(citem)}::EnableCloseButton",
|
70
|
+
"#{spec.class_name(citem)}::GetHelpTextAtPoint",
|
71
|
+
"#{spec.class_name(citem)}::GetMaxSize",
|
72
|
+
"#{spec.class_name(citem)}::GetMinSize",
|
73
|
+
"#{spec.class_name(citem)}::GetTitle",
|
74
|
+
"#{spec.class_name(citem)}::Iconize",
|
75
|
+
"#{spec.class_name(citem)}::IsActive",
|
76
|
+
"#{spec.class_name(citem)}::IsFullScreen",
|
77
|
+
"#{spec.class_name(citem)}::IsMaximzed",
|
78
|
+
"#{spec.class_name(citem)}::IsAlwaysMaximzed",
|
79
|
+
#"#{spec.class_name(citem)}::IsTopLevel",
|
80
|
+
"#{spec.class_name(citem)}::IsVisible",
|
81
|
+
"#{spec.class_name(citem)}::Maximize",
|
82
|
+
"#{spec.class_name(citem)}::Navigate",
|
83
|
+
"#{spec.class_name(citem)}::Refresh",
|
84
|
+
"#{spec.class_name(citem)}::Reparent",
|
85
|
+
"#{spec.class_name(citem)}::RequestUserAttention",
|
86
|
+
"#{spec.class_name(citem)}::Restore",
|
87
|
+
"#{spec.class_name(citem)}::SetIcon",
|
88
|
+
"#{spec.class_name(citem)}::SetIcons",
|
89
|
+
#"#{spec.class_name(citem)}::SetMaxSize",
|
90
|
+
#"#{spec.class_name(citem)}::SetMinSize",
|
91
|
+
"#{spec.class_name(citem)}::SetShape",
|
92
|
+
"#{spec.class_name(citem)}::SetSize",
|
93
|
+
"#{spec.class_name(citem)}::SetSize",
|
94
|
+
#"#{spec.class_name(citem)}::SetSizeHints",
|
95
|
+
#"#{spec.class_name(citem)}::SetSizeHints",
|
96
|
+
"#{spec.class_name(citem)}::SetTitle",
|
97
|
+
#"#{spec.class_name(citem)}::SetTransparent",
|
98
|
+
#"#{spec.class_name(citem)}::Show",
|
99
|
+
"#{spec.class_name(citem)}::ShowFullScreen",
|
100
|
+
"#{spec.class_name(citem)}::Update",
|
101
|
+
"#{spec.class_name(citem)}::UpdateWindow",
|
102
|
+
"#{spec.class_name(citem)}::Validate")
|
103
|
+
end
|
104
|
+
end
|
105
|
+
defmod
|
106
|
+
end
|
107
|
+
|
101
108
|
end # class Frame
|
102
109
|
|
103
110
|
end # class Director
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './window'
|
@@ -14,13 +17,31 @@ module WXRuby3
|
|
14
17
|
include Typemap::TreeItemId
|
15
18
|
|
16
19
|
def setup
|
17
|
-
spec.post_processors << :fixtreectrl
|
18
20
|
spec.items.replace %w[wxTreeCtrl treebase.h]
|
19
21
|
spec.override_inheritance_chain('wxTreeCtrl', %w[wxControl wxWindow wxEvtHandler wxObject])
|
20
22
|
# mixin WithImages
|
21
23
|
spec.include_mixin 'wxTreeCtrl', 'Wx::WithImages'
|
22
24
|
spec.ignore('operator!=', 'operator==')
|
23
25
|
spec.include 'wx/dirctrl.h'
|
26
|
+
# Use a custom interface class to work around the wxTreeCtrl::SortItems/OnCompareItems issue
|
27
|
+
# without having to patch the SWIG director class
|
28
|
+
spec.add_header_code <<~__HEREDOC
|
29
|
+
class WxRubyTreeCtrl : public wxTreeCtrl
|
30
|
+
{
|
31
|
+
public:
|
32
|
+
WxRubyTreeCtrl() : wxTreeCtrl() {}
|
33
|
+
WxRubyTreeCtrl(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
34
|
+
const wxSize& size = wxDefaultSize, long style = wxTR_DEFAULT_STYLE,
|
35
|
+
const wxValidator& validator = wxDefaultValidator, const wxString& name = wxTreeCtrlNameStr)
|
36
|
+
: wxTreeCtrl(parent, id, pos, size, style, validator, name)
|
37
|
+
{}
|
38
|
+
virtual ~WxRubyTreeCtrl() {}
|
39
|
+
private:
|
40
|
+
DECLARE_DYNAMIC_CLASS(WxRubyTreeCtrl);
|
41
|
+
};
|
42
|
+
IMPLEMENT_DYNAMIC_CLASS(WxRubyTreeCtrl, wxTreeCtrl);
|
43
|
+
__HEREDOC
|
44
|
+
spec.use_class_implementation('wxTreeCtrl', 'WxRubyTreeCtrl')
|
24
45
|
# These only differ from SetXXXList in the way memory ownership is
|
25
46
|
# transferred. So only support the version that won't leak on wxRuby.
|
26
47
|
spec.ignore %w[
|
@@ -73,7 +94,7 @@ module WXRuby3
|
|
73
94
|
(void)self->EditLabel(item);
|
74
95
|
}
|
75
96
|
__HEREDOC
|
76
|
-
if [:
|
97
|
+
if [:wxmsw, :wxqt].include?(Config.instance.wx_port)
|
77
98
|
spec.ignore('wxTreeCtrl::SetButtonsImageList')
|
78
99
|
spec.ignore('wxTreeCtrl::GetButtonsImageList')
|
79
100
|
end
|
@@ -368,47 +389,4 @@ module WXRuby3
|
|
368
389
|
|
369
390
|
end # class Director
|
370
391
|
|
371
|
-
module SwigRunner
|
372
|
-
class Processor
|
373
|
-
|
374
|
-
# special post-processor for TreeCtrl
|
375
|
-
class Fixtreectrl < Processor
|
376
|
-
|
377
|
-
def run
|
378
|
-
director_found = false
|
379
|
-
update_source do |line|
|
380
|
-
# Ugly: special fixes for TreeCtrl - these macros and extra funcs
|
381
|
-
# are needed to allow user-defined sorting to work
|
382
|
-
# default ctor needed for Swig::Director
|
383
|
-
if line["Director(VALUE self) : swig_self(self), swig_disown_flag(false)"]
|
384
|
-
line = " Director() { } // added by fixmodule.rb \n" + line
|
385
|
-
end
|
386
|
-
if line["SwigDirector_wxTreeCtrl::SwigDirector_wxTreeCtrl(VALUE self)"]
|
387
|
-
line = "IMPLEMENT_DYNAMIC_CLASS(SwigDirector_wxTreeCtrl, wxTreeCtrl);\n" + line
|
388
|
-
director_found = true
|
389
|
-
end
|
390
|
-
|
391
|
-
line
|
392
|
-
end
|
393
|
-
if director_found
|
394
|
-
# We also need to tweak the header file
|
395
|
-
update_header do |line|
|
396
|
-
if line.strip == 'public:'
|
397
|
-
line << "\nSwigDirector_wxTreeCtrl() {};"
|
398
|
-
elsif /\A};/ =~ line
|
399
|
-
line = <<~__HEREDOC
|
400
|
-
private:
|
401
|
-
DECLARE_DYNAMIC_CLASS(SwigDirector_wxTreeCtrl);
|
402
|
-
};
|
403
|
-
__HEREDOC
|
404
|
-
end
|
405
|
-
line
|
406
|
-
end
|
407
|
-
end
|
408
|
-
end
|
409
|
-
end # class Fixtreectrl
|
410
|
-
|
411
|
-
end
|
412
|
-
end
|
413
|
-
|
414
392
|
end # module WXRuby3
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
require_relative './event'
|
@@ -15,7 +18,17 @@ module WXRuby3
|
|
15
18
|
|
16
19
|
def setup
|
17
20
|
super
|
18
|
-
#
|
21
|
+
# for wxTreeEvent::GetKeyEvent
|
22
|
+
spec.map 'const wxKeyEvent&' => 'Wx::KeyEvent' do
|
23
|
+
map_out code: <<~__CODE
|
24
|
+
#ifdef __WXRB_DEBUG__
|
25
|
+
$result = wxRuby_WrapWxEventInRuby(arg1, static_cast<wxEvent*> ($1));
|
26
|
+
#else
|
27
|
+
$result = wxRuby_WrapWxEventInRuby(static_cast<wxEvent*> ($1));
|
28
|
+
#endif
|
29
|
+
__CODE
|
30
|
+
end
|
31
|
+
# create a lightweight, but typesafe, wrapper for TreeItemId
|
19
32
|
spec.add_init_code <<~__HEREDOC
|
20
33
|
// define TreeItemId wrapper class
|
21
34
|
mWxTreeItemId = rb_define_class_under(mWxCore, "TreeItemId", rb_cObject);
|
@@ -32,19 +45,19 @@ module WXRuby3
|
|
32
45
|
|
33
46
|
spec.add_wrapper_code <<~__HEREDOC
|
34
47
|
// wxTreeItemId wrapper class definition and helper functions
|
35
|
-
static size_t
|
48
|
+
static size_t __wxTreeItemId_size(const void* data)
|
36
49
|
{
|
37
50
|
return 0;
|
38
51
|
}
|
39
52
|
|
40
53
|
#include <ruby/version.h>
|
41
54
|
|
42
|
-
static const rb_data_type_t
|
43
|
-
"
|
55
|
+
static const rb_data_type_t __wxTreeItemId_type = {
|
56
|
+
"TreeItemId",
|
44
57
|
#if RUBY_API_VERSION_MAJOR >= 3
|
45
|
-
{ NULL, NULL,
|
58
|
+
{ NULL, NULL, __wxTreeItemId_size, 0, 0},
|
46
59
|
#else
|
47
|
-
{ NULL, NULL,
|
60
|
+
{ NULL, NULL, __wxTreeItemId_size, 0},
|
48
61
|
#endif
|
49
62
|
NULL, NULL, RUBY_TYPED_FREE_IMMEDIATELY
|
50
63
|
};
|
@@ -52,21 +65,26 @@ module WXRuby3
|
|
52
65
|
VALUE _wxRuby_Wrap_wxTreeItemId(const wxTreeItemId& id)
|
53
66
|
{
|
54
67
|
void* data = id.GetID();
|
55
|
-
VALUE ret = TypedData_Wrap_Struct(mWxTreeItemId, &
|
68
|
+
VALUE ret = TypedData_Wrap_Struct(mWxTreeItemId, &__wxTreeItemId_type, data);
|
56
69
|
return ret;
|
57
70
|
}
|
58
71
|
|
59
72
|
wxTreeItemId _wxRuby_Unwrap_wxTreeItemId(VALUE id)
|
60
73
|
{
|
61
74
|
void *data = 0;
|
62
|
-
TypedData_Get_Struct(id, void, &
|
75
|
+
TypedData_Get_Struct(id, void, &__wxTreeItemId_type, data);
|
63
76
|
return wxTreeItemId(data);
|
64
77
|
}
|
65
78
|
|
79
|
+
bool _wxRuby_Is_wxTreeItemId(VALUE id)
|
80
|
+
{
|
81
|
+
return rb_typeddata_is_kind_of(id, &__wxTreeItemId_type) == 1;
|
82
|
+
}
|
83
|
+
|
66
84
|
VALUE _wxRuby_wxTreeItemId_IsOk(VALUE self)
|
67
85
|
{
|
68
86
|
void *data = 0;
|
69
|
-
TypedData_Get_Struct(self, void, &
|
87
|
+
TypedData_Get_Struct(self, void, &__wxTreeItemId_type, data);
|
70
88
|
return wxTreeItemId(data).IsOk() ? Qtrue : Qfalse;
|
71
89
|
}
|
72
90
|
__HEREDOC
|
@@ -1,6 +1,9 @@
|
|
1
|
+
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
|
2
|
+
#
|
3
|
+
# This software is released under the MIT license.
|
4
|
+
|
1
5
|
###
|
2
6
|
# wxRuby3 wxWidgets interface director
|
3
|
-
# Copyright (c) M.J.N. Corino, The Netherlands
|
4
7
|
###
|
5
8
|
|
6
9
|
module WXRuby3
|
@@ -44,6 +47,11 @@ module WXRuby3
|
|
44
47
|
spec.ignore 'wxGetEmailAddress(char *,int)',
|
45
48
|
'wxGetUserId(char *,int)',
|
46
49
|
'wxGetUserName(char *,int)'
|
50
|
+
spec.map 'wxMemorySize' => 'Integer' do
|
51
|
+
map_out code: <<~__CODE
|
52
|
+
$result = LL2NUM(wxLongLongNative($1).GetValue());
|
53
|
+
__CODE
|
54
|
+
end
|
47
55
|
# we want only the functions that are not ignored
|
48
56
|
spec.do_not_generate(:classes, :typedefs, :variables, :enums, :defines)
|
49
57
|
super
|