gobject-introspection 2.2.4-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +129 -0
- data/ext/gobject-introspection/depend +10 -0
- data/ext/gobject-introspection/extconf.rb +94 -0
- data/ext/gobject-introspection/gobject_introspection.def +5 -0
- data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
- data/ext/gobject-introspection/rb-gi-argument.c +2053 -0
- data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
- data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
- data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-constructor-info.c +133 -0
- data/ext/gobject-introspection/rb-gi-conversions.h +145 -0
- data/ext/gobject-introspection/rb-gi-enum-info.c +155 -0
- data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
- data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-function-info.c +841 -0
- data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
- data/ext/gobject-introspection/rb-gi-loader.c +224 -0
- data/ext/gobject-introspection/rb-gi-method-info.c +83 -0
- data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
- data/ext/gobject-introspection/rb-gi-private.h +105 -0
- data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
- data/ext/gobject-introspection/rb-gi-repository.c +246 -0
- data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-struct-info.c +202 -0
- data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
- data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
- data/ext/gobject-introspection/rb-gi-types.h +71 -0
- data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
- data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
- data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
- data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
- data/ext/gobject-introspection/rb-gobject-introspection.h +60 -0
- data/extconf.rb +71 -0
- data/lib/2.0/gobject_introspection.so +0 -0
- data/lib/2.1/gobject_introspection.so +0 -0
- data/lib/2.2/gobject_introspection.so +0 -0
- data/lib/gobject-introspection.rb +53 -0
- data/lib/gobject-introspection/boxed-info.rb +28 -0
- data/lib/gobject-introspection/callable-info.rb +100 -0
- data/lib/gobject-introspection/collection-reader.rb +34 -0
- data/lib/gobject-introspection/interface-info.rb +32 -0
- data/lib/gobject-introspection/loader.rb +465 -0
- data/lib/gobject-introspection/object-info.rb +33 -0
- data/lib/gobject-introspection/repository.rb +32 -0
- data/lib/gobject-introspection/struct-info.rb +28 -0
- data/lib/gobject-introspection/union-info.rb +28 -0
- data/test/gobject-introspection-test-utils.rb +26 -0
- data/test/run-test.rb +45 -0
- data/test/test-arg-info.rb +68 -0
- data/test/test-base-info.rb +31 -0
- data/test/test-boxed-info.rb +21 -0
- data/test/test-callable-info.rb +49 -0
- data/test/test-callback-info.rb +29 -0
- data/test/test-constant-info.rb +24 -0
- data/test/test-enum-info.rb +61 -0
- data/test/test-field-type.rb +42 -0
- data/test/test-flags-info.rb +27 -0
- data/test/test-function-info.rb +39 -0
- data/test/test-interface-info.rb +97 -0
- data/test/test-loader.rb +30 -0
- data/test/test-object-info.rb +131 -0
- data/test/test-property-info.rb +38 -0
- data/test/test-registered-type-info.rb +35 -0
- data/test/test-repository.rb +62 -0
- data/test/test-signal-info.rb +40 -0
- data/test/test-struct-info.rb +57 -0
- data/test/test-type-info.rb +62 -0
- data/test/test-type-tag.rb +29 -0
- data/test/test-union-info.rb +21 -0
- data/test/test-value-info.rb +28 -0
- data/test/test-vfunc-info.rb +42 -0
- data/vendor/local/bin/g-ir-compiler.exe +0 -0
- data/vendor/local/bin/g-ir-generate.exe +0 -0
- data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
- data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +120 -0
- data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +110 -0
- data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +58 -0
- data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +71 -0
- data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +100 -0
- data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +106 -0
- data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +207 -0
- data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +56 -0
- data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +64 -0
- data/vendor/local/include/gobject-introspection-1.0/girepository.h +239 -0
- data/vendor/local/include/gobject-introspection-1.0/girffi.h +104 -0
- data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +57 -0
- data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +77 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +87 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +80 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypes.h +524 -0
- data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +84 -0
- data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
- data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +73 -0
- data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/cairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/freetype2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/win32-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xfixes-4.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +2161 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.py +1139 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +202 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +173 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +23 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.py +305 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py +120 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +72 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +60 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +30 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +21 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +38 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +18 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +41 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +20 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +61 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +958 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +338 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +529 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +593 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +612 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +240 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +1366 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +561 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +152 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +140 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +329 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +136 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +971 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.py +211 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +156 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
- data/vendor/local/lib/libgirepository-1.0.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/introspection.m4 +96 -0
- data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
- data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
- data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +4042 -0
- data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
- data/vendor/local/share/gir-1.0/GLib-2.0.gir +47221 -0
- data/vendor/local/share/gir-1.0/GModule-2.0.gir +301 -0
- data/vendor/local/share/gir-1.0/GObject-2.0.gir +14733 -0
- data/vendor/local/share/gir-1.0/Gio-2.0.gir +82459 -0
- data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
- data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
- data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
- data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
- data/vendor/local/share/gir-1.0/win32-1.0.gir +19 -0
- data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
- data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
- data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
- data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
- data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
- data/vendor/local/share/gobject-introspection-1.0/gdump.c +569 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +831 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +301 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +57 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +44 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1579 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +535 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +582 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5426 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1948 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h +10 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +4068 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +1415 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +102 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +46 -0
- data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
- data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
- data/vendor/local/share/man/man1/g-ir-compiler.1 +42 -0
- data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
- metadata +363 -0
@@ -0,0 +1,345 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "rb-gi-private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE rb_cGIObjectInfo
|
24
|
+
#define SELF(self) (RVAL2GI_OBJECT_INFO(self))
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_object_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GIObjectInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
rg_type_name(VALUE self)
|
40
|
+
{
|
41
|
+
GIObjectInfo *info;
|
42
|
+
|
43
|
+
info = SELF(self);
|
44
|
+
return CSTR2RVAL(g_object_info_get_type_name(info));
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_type_init(VALUE self)
|
49
|
+
{
|
50
|
+
GIObjectInfo *info;
|
51
|
+
|
52
|
+
info = SELF(self);
|
53
|
+
return CSTR2RVAL(g_object_info_get_type_init(info));
|
54
|
+
}
|
55
|
+
|
56
|
+
static VALUE
|
57
|
+
rg_abstract_p(VALUE self)
|
58
|
+
{
|
59
|
+
GIObjectInfo *info;
|
60
|
+
|
61
|
+
info = SELF(self);
|
62
|
+
return CBOOL2RVAL(g_object_info_get_abstract(info));
|
63
|
+
}
|
64
|
+
|
65
|
+
static VALUE
|
66
|
+
rg_fundamental_p(VALUE self)
|
67
|
+
{
|
68
|
+
GIObjectInfo *info;
|
69
|
+
|
70
|
+
info = SELF(self);
|
71
|
+
return CBOOL2RVAL(g_object_info_get_fundamental(info));
|
72
|
+
}
|
73
|
+
|
74
|
+
static VALUE
|
75
|
+
rg_parent(VALUE self)
|
76
|
+
{
|
77
|
+
GIObjectInfo *info;
|
78
|
+
|
79
|
+
info = SELF(self);
|
80
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_parent(info));
|
81
|
+
}
|
82
|
+
|
83
|
+
static VALUE
|
84
|
+
rg_n_interfaces(VALUE self)
|
85
|
+
{
|
86
|
+
GIObjectInfo *info;
|
87
|
+
|
88
|
+
info = SELF(self);
|
89
|
+
return INT2NUM(g_object_info_get_n_interfaces(info));
|
90
|
+
}
|
91
|
+
|
92
|
+
static VALUE
|
93
|
+
rg_get_interface(VALUE self, VALUE rb_n)
|
94
|
+
{
|
95
|
+
GIObjectInfo *info;
|
96
|
+
gint n;
|
97
|
+
|
98
|
+
info = SELF(self);
|
99
|
+
n = NUM2INT(rb_n);
|
100
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_interface(info, n));
|
101
|
+
}
|
102
|
+
|
103
|
+
static VALUE
|
104
|
+
rg_n_fields(VALUE self)
|
105
|
+
{
|
106
|
+
GIObjectInfo *info;
|
107
|
+
|
108
|
+
info = SELF(self);
|
109
|
+
return INT2NUM(g_object_info_get_n_fields(info));
|
110
|
+
}
|
111
|
+
|
112
|
+
static VALUE
|
113
|
+
rg_get_field(VALUE self, VALUE rb_n)
|
114
|
+
{
|
115
|
+
GIObjectInfo *info;
|
116
|
+
gint n;
|
117
|
+
|
118
|
+
info = SELF(self);
|
119
|
+
n = NUM2INT(rb_n);
|
120
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_field(info, n));
|
121
|
+
}
|
122
|
+
|
123
|
+
static VALUE
|
124
|
+
rg_get_field_value(VALUE self, VALUE rb_object, VALUE rb_n)
|
125
|
+
{
|
126
|
+
GIObjectInfo *info;
|
127
|
+
gint n;
|
128
|
+
GIFieldInfo *field_info;
|
129
|
+
VALUE rb_value;
|
130
|
+
|
131
|
+
info = SELF(self);
|
132
|
+
n = NUM2INT(rb_n);
|
133
|
+
field_info = g_object_info_get_field(info, n);
|
134
|
+
rb_value = rb_gi_field_info_get_field_raw(field_info, RVAL2GOBJ(rb_object));
|
135
|
+
g_base_info_unref(field_info);
|
136
|
+
|
137
|
+
return rb_value;
|
138
|
+
}
|
139
|
+
|
140
|
+
static VALUE
|
141
|
+
rg_set_field_value(VALUE self, VALUE rb_object, VALUE rb_n, VALUE rb_value)
|
142
|
+
{
|
143
|
+
GIObjectInfo *info;
|
144
|
+
gint n;
|
145
|
+
GIFieldInfo *field_info;
|
146
|
+
|
147
|
+
info = SELF(self);
|
148
|
+
n = NUM2INT(rb_n);
|
149
|
+
field_info = g_object_info_get_field(info, n);
|
150
|
+
rb_gi_field_info_set_field_raw(field_info, RVAL2GOBJ(rb_object), rb_value);
|
151
|
+
/* TODO: use rb_ensure() to unref field_info. */
|
152
|
+
g_base_info_unref(field_info);
|
153
|
+
|
154
|
+
return Qnil;
|
155
|
+
}
|
156
|
+
|
157
|
+
static VALUE
|
158
|
+
rg_n_properties(VALUE self)
|
159
|
+
{
|
160
|
+
GIObjectInfo *info;
|
161
|
+
|
162
|
+
info = SELF(self);
|
163
|
+
return INT2NUM(g_object_info_get_n_properties(info));
|
164
|
+
}
|
165
|
+
|
166
|
+
static VALUE
|
167
|
+
rg_get_property(VALUE self, VALUE rb_n)
|
168
|
+
{
|
169
|
+
GIObjectInfo *info;
|
170
|
+
gint n;
|
171
|
+
|
172
|
+
info = SELF(self);
|
173
|
+
n = NUM2INT(rb_n);
|
174
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_property(info, n));
|
175
|
+
}
|
176
|
+
|
177
|
+
static VALUE
|
178
|
+
rg_n_methods(VALUE self)
|
179
|
+
{
|
180
|
+
GIObjectInfo *info;
|
181
|
+
|
182
|
+
info = SELF(self);
|
183
|
+
return INT2NUM(g_object_info_get_n_methods(info));
|
184
|
+
}
|
185
|
+
|
186
|
+
static VALUE
|
187
|
+
rg_get_method(VALUE self, VALUE rb_n_or_name)
|
188
|
+
{
|
189
|
+
GIObjectInfo *info;
|
190
|
+
GIFunctionInfo *function_info;
|
191
|
+
|
192
|
+
info = SELF(self);
|
193
|
+
if (RB_TYPE_P(rb_n_or_name, T_FIXNUM)) {
|
194
|
+
gint n;
|
195
|
+
n = NUM2INT(rb_n_or_name);
|
196
|
+
function_info = g_object_info_get_method(info, n);
|
197
|
+
} else {
|
198
|
+
const gchar *name;
|
199
|
+
name = RVAL2CSTR(rb_n_or_name);
|
200
|
+
function_info = g_object_info_find_method(info, name);
|
201
|
+
}
|
202
|
+
|
203
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(function_info);
|
204
|
+
}
|
205
|
+
|
206
|
+
static VALUE
|
207
|
+
rg_n_signals(VALUE self)
|
208
|
+
{
|
209
|
+
GIObjectInfo *info;
|
210
|
+
|
211
|
+
info = SELF(self);
|
212
|
+
return INT2NUM(g_object_info_get_n_signals(info));
|
213
|
+
}
|
214
|
+
|
215
|
+
static VALUE
|
216
|
+
rg_get_signal(VALUE self, VALUE rb_n)
|
217
|
+
{
|
218
|
+
GIObjectInfo *info;
|
219
|
+
gint n;
|
220
|
+
|
221
|
+
info = SELF(self);
|
222
|
+
n = NUM2INT(rb_n);
|
223
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_signal(info, n));
|
224
|
+
}
|
225
|
+
|
226
|
+
static VALUE
|
227
|
+
rg_n_vfuncs(VALUE self)
|
228
|
+
{
|
229
|
+
GIObjectInfo *info;
|
230
|
+
|
231
|
+
info = SELF(self);
|
232
|
+
return INT2NUM(g_object_info_get_n_vfuncs(info));
|
233
|
+
}
|
234
|
+
|
235
|
+
static VALUE
|
236
|
+
rg_get_vfunc(VALUE self, VALUE rb_n_or_name)
|
237
|
+
{
|
238
|
+
GIObjectInfo *info;
|
239
|
+
GIVFuncInfo *vfunc_info;
|
240
|
+
|
241
|
+
info = SELF(self);
|
242
|
+
if (RB_TYPE_P(rb_n_or_name, T_FIXNUM)) {
|
243
|
+
gint n;
|
244
|
+
n = NUM2INT(rb_n_or_name);
|
245
|
+
vfunc_info = g_object_info_get_vfunc(info, n);
|
246
|
+
} else {
|
247
|
+
const gchar *name;
|
248
|
+
name = RVAL2CSTR(rb_n_or_name);
|
249
|
+
vfunc_info = g_object_info_find_vfunc(info, name);
|
250
|
+
}
|
251
|
+
|
252
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(vfunc_info);
|
253
|
+
}
|
254
|
+
|
255
|
+
static VALUE
|
256
|
+
rg_n_constants(VALUE self)
|
257
|
+
{
|
258
|
+
GIObjectInfo *info;
|
259
|
+
|
260
|
+
info = SELF(self);
|
261
|
+
return INT2NUM(g_object_info_get_n_constants(info));
|
262
|
+
}
|
263
|
+
|
264
|
+
static VALUE
|
265
|
+
rg_get_constant(VALUE self, VALUE rb_n)
|
266
|
+
{
|
267
|
+
GIObjectInfo *info;
|
268
|
+
gint n;
|
269
|
+
|
270
|
+
info = SELF(self);
|
271
|
+
n = NUM2INT(rb_n);
|
272
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_object_info_get_constant(info, n));
|
273
|
+
}
|
274
|
+
|
275
|
+
static VALUE
|
276
|
+
rg_unref_function(VALUE self)
|
277
|
+
{
|
278
|
+
GIObjectInfo *info;
|
279
|
+
|
280
|
+
info = SELF(self);
|
281
|
+
return CSTR2RVAL(g_object_info_get_unref_function(info));
|
282
|
+
}
|
283
|
+
|
284
|
+
static VALUE
|
285
|
+
rg_ref_function(VALUE self)
|
286
|
+
{
|
287
|
+
GIObjectInfo *info;
|
288
|
+
|
289
|
+
info = SELF(self);
|
290
|
+
return CSTR2RVAL(g_object_info_get_ref_function(info));
|
291
|
+
}
|
292
|
+
|
293
|
+
static VALUE
|
294
|
+
rg_set_value_function(VALUE self)
|
295
|
+
{
|
296
|
+
GIObjectInfo *info;
|
297
|
+
|
298
|
+
info = SELF(self);
|
299
|
+
return CSTR2RVAL(g_object_info_get_set_value_function(info));
|
300
|
+
}
|
301
|
+
|
302
|
+
static VALUE
|
303
|
+
rg_get_value_function(VALUE self)
|
304
|
+
{
|
305
|
+
GIObjectInfo *info;
|
306
|
+
|
307
|
+
info = SELF(self);
|
308
|
+
return CSTR2RVAL(g_object_info_get_get_value_function(info));
|
309
|
+
}
|
310
|
+
|
311
|
+
void
|
312
|
+
rb_gi_object_info_init(VALUE rb_mGI, VALUE rb_cGIRegisteredTypeInfo)
|
313
|
+
{
|
314
|
+
VALUE RG_TARGET_NAMESPACE;
|
315
|
+
|
316
|
+
RG_TARGET_NAMESPACE =
|
317
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_OBJECT_INFO, "ObjectInfo", rb_mGI,
|
318
|
+
rb_cGIRegisteredTypeInfo);
|
319
|
+
|
320
|
+
RG_DEF_METHOD(type_name, 0);
|
321
|
+
RG_DEF_METHOD(type_init, 0);
|
322
|
+
RG_DEF_METHOD_P(abstract, 0);
|
323
|
+
RG_DEF_METHOD_P(fundamental, 0);
|
324
|
+
RG_DEF_METHOD(parent, 0);
|
325
|
+
RG_DEF_METHOD(n_interfaces, 0);
|
326
|
+
RG_DEF_METHOD(get_interface, 1);
|
327
|
+
RG_DEF_METHOD(n_fields, 0);
|
328
|
+
RG_DEF_METHOD(get_field, 1);
|
329
|
+
RG_DEF_METHOD(get_field_value, 2);
|
330
|
+
RG_DEF_METHOD(set_field_value, 3);
|
331
|
+
RG_DEF_METHOD(n_properties, 0);
|
332
|
+
RG_DEF_METHOD(get_property, 1);
|
333
|
+
RG_DEF_METHOD(n_methods, 0);
|
334
|
+
RG_DEF_METHOD(get_method, 1);
|
335
|
+
RG_DEF_METHOD(n_signals, 0);
|
336
|
+
RG_DEF_METHOD(get_signal, 1);
|
337
|
+
RG_DEF_METHOD(n_vfuncs, 0);
|
338
|
+
RG_DEF_METHOD(get_vfunc, 1);
|
339
|
+
RG_DEF_METHOD(n_constants, 0);
|
340
|
+
RG_DEF_METHOD(get_constant, 1);
|
341
|
+
RG_DEF_METHOD(unref_function, 0);
|
342
|
+
RG_DEF_METHOD(ref_function, 0);
|
343
|
+
RG_DEF_METHOD(set_value_function, 0);
|
344
|
+
RG_DEF_METHOD(get_value_function, 0);
|
345
|
+
}
|
@@ -0,0 +1,105 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012-2013 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef RB_GI_PRIVATE_H
|
22
|
+
#define RB_GI_PRIVATE_H
|
23
|
+
|
24
|
+
#include <ruby.h>
|
25
|
+
#include <rbgobject.h>
|
26
|
+
#include <glib-enum-types.h>
|
27
|
+
|
28
|
+
#include <girffi.h>
|
29
|
+
#include "gobject-introspection-enum-types.h"
|
30
|
+
|
31
|
+
#include "rbgiversion.h"
|
32
|
+
|
33
|
+
#include "rb-gi-types.h"
|
34
|
+
#include "rb-gi-conversions.h"
|
35
|
+
|
36
|
+
#include "rb-gobject-introspection.h"
|
37
|
+
|
38
|
+
#ifndef RB_TYPE_P
|
39
|
+
# define RB_TYPE_P(object, type) (TYPE(object) == type)
|
40
|
+
#endif
|
41
|
+
|
42
|
+
extern void Init_gobject_introspection(void);
|
43
|
+
|
44
|
+
void rb_gi_argument_init (void);
|
45
|
+
|
46
|
+
void rb_gi_type_tag_init (VALUE rb_mGI);
|
47
|
+
void rb_gi_base_info_init (VALUE rb_mGI);
|
48
|
+
void rb_gi_callable_info_init (VALUE rb_mGI,
|
49
|
+
VALUE rb_cGIBaseInfo);
|
50
|
+
void rb_gi_function_info_init (VALUE rb_mGI,
|
51
|
+
VALUE rb_cGICallableInfo);
|
52
|
+
void rb_gi_method_info_init (VALUE rb_mGI,
|
53
|
+
VALUE rb_cGIFunctionInfo);
|
54
|
+
void rb_gi_constructor_info_init (VALUE rb_mGI,
|
55
|
+
VALUE rb_cGIFunctionInfo);
|
56
|
+
void rb_gi_callback_info_init (VALUE rb_mGI,
|
57
|
+
VALUE rb_cGICallableInfo);
|
58
|
+
void rb_gi_registered_type_info_init (VALUE rb_mGI,
|
59
|
+
VALUE rb_cGIBaseInfo);
|
60
|
+
void rb_gi_struct_info_init (VALUE rb_mGI,
|
61
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
62
|
+
void rb_gi_boxed_info_init (VALUE rb_mGI,
|
63
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
64
|
+
void rb_gi_enum_info_init (VALUE rb_mGI,
|
65
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
66
|
+
void rb_gi_flags_info_init (VALUE rb_mGI,
|
67
|
+
VALUE rb_cGIEnumInfo);
|
68
|
+
void rb_gi_object_info_init (VALUE rb_mGI,
|
69
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
70
|
+
void rb_gi_interface_info_init (VALUE rb_mGI,
|
71
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
72
|
+
void rb_gi_constant_info_init (VALUE rb_mGI,
|
73
|
+
VALUE rb_cGIBaseInfo);
|
74
|
+
void rb_gi_union_info_init (VALUE rb_mGI,
|
75
|
+
VALUE rb_cGIRegisteredTypeInfo);
|
76
|
+
void rb_gi_value_info_init (VALUE rb_mGI,
|
77
|
+
VALUE rb_cGIBaseInfo);
|
78
|
+
void rb_gi_signal_info_init (VALUE rb_mGI,
|
79
|
+
VALUE rb_cGICallableInfo);
|
80
|
+
void rb_gi_vfunc_info_init (VALUE rb_mGI,
|
81
|
+
VALUE rb_cGICallableInfo);
|
82
|
+
void rb_gi_property_info_init (VALUE rb_mGI,
|
83
|
+
VALUE rb_cGIBaseInfo);
|
84
|
+
void rb_gi_field_info_init (VALUE rb_mGI,
|
85
|
+
VALUE rb_cGIBaseInfo);
|
86
|
+
void rb_gi_arg_info_init (VALUE rb_mGI,
|
87
|
+
VALUE rb_cGIBaseInfo);
|
88
|
+
void rb_gi_type_info_init (VALUE rb_mGI,
|
89
|
+
VALUE rb_cGIBaseInfo);
|
90
|
+
void rb_gi_unresolved_info_init (VALUE rb_mGI,
|
91
|
+
VALUE rb_cGIBaseInfo);
|
92
|
+
void rb_gi_repository_init (VALUE rb_mGI);
|
93
|
+
void rb_gi_loader_init (VALUE rb_mGI);
|
94
|
+
|
95
|
+
VALUE rb_gi_function_info_invoke_raw (GIFunctionInfo *info,
|
96
|
+
VALUE rb_options,
|
97
|
+
GIArgument *return_value);
|
98
|
+
|
99
|
+
VALUE rb_gi_field_info_get_field_raw (GIFieldInfo *info,
|
100
|
+
gpointer memory);
|
101
|
+
void rb_gi_field_info_set_field_raw (GIFieldInfo *info,
|
102
|
+
gpointer memory,
|
103
|
+
VALUE rb_field_value);
|
104
|
+
|
105
|
+
#endif
|