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,133 @@
|
|
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_cGIConstructorInfo
|
24
|
+
#define SELF(self) RVAL2GI_FUNCTION_INFO(self)
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_constructor_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GIConstructorInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
static void
|
39
|
+
initialize_receiver(VALUE receiver, GITypeInfo *info, GIArgument *value)
|
40
|
+
{
|
41
|
+
GIBaseInfo *interface_info;
|
42
|
+
GIInfoType interface_type;
|
43
|
+
|
44
|
+
if (g_type_info_get_tag(info) != GI_TYPE_TAG_INTERFACE) {
|
45
|
+
rb_raise(rb_eRuntimeError, "TODO: returned value isn't interface");
|
46
|
+
}
|
47
|
+
|
48
|
+
interface_info = g_type_info_get_interface(info);
|
49
|
+
interface_type = g_base_info_get_type(interface_info);
|
50
|
+
g_base_info_unref(interface_info);
|
51
|
+
switch (interface_type) {
|
52
|
+
case GI_INFO_TYPE_OBJECT:
|
53
|
+
g_object_ref_sink(value->v_pointer);
|
54
|
+
G_INITIALIZE(receiver, value->v_pointer);
|
55
|
+
break;
|
56
|
+
case GI_INFO_TYPE_STRUCT:
|
57
|
+
G_INITIALIZE(receiver, value->v_pointer);
|
58
|
+
break;
|
59
|
+
case GI_INFO_TYPE_INVALID:
|
60
|
+
case GI_INFO_TYPE_FUNCTION:
|
61
|
+
case GI_INFO_TYPE_CALLBACK:
|
62
|
+
case GI_INFO_TYPE_BOXED:
|
63
|
+
case GI_INFO_TYPE_ENUM:
|
64
|
+
case GI_INFO_TYPE_FLAGS:
|
65
|
+
case GI_INFO_TYPE_INTERFACE:
|
66
|
+
case GI_INFO_TYPE_CONSTANT:
|
67
|
+
case GI_INFO_TYPE_INVALID_0:
|
68
|
+
rb_raise(rb_eRuntimeError,
|
69
|
+
"TODO: returned value isn't object, struct or union");
|
70
|
+
break;
|
71
|
+
case GI_INFO_TYPE_UNION:
|
72
|
+
G_INITIALIZE(receiver, value->v_pointer);
|
73
|
+
break;
|
74
|
+
case GI_INFO_TYPE_VALUE:
|
75
|
+
case GI_INFO_TYPE_SIGNAL:
|
76
|
+
case GI_INFO_TYPE_VFUNC:
|
77
|
+
case GI_INFO_TYPE_PROPERTY:
|
78
|
+
case GI_INFO_TYPE_FIELD:
|
79
|
+
case GI_INFO_TYPE_ARG:
|
80
|
+
case GI_INFO_TYPE_TYPE:
|
81
|
+
case GI_INFO_TYPE_UNRESOLVED:
|
82
|
+
default:
|
83
|
+
rb_raise(rb_eRuntimeError,
|
84
|
+
"TODO: returned value isn't object, struct or union");
|
85
|
+
break;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
static VALUE
|
90
|
+
rg_invoke(VALUE self, VALUE rb_options)
|
91
|
+
{
|
92
|
+
GIFunctionInfo *info;
|
93
|
+
GICallableInfo *callable_info;
|
94
|
+
VALUE receiver;
|
95
|
+
GIArgument return_value;
|
96
|
+
GITypeInfo return_value_info;
|
97
|
+
|
98
|
+
info = SELF(self);
|
99
|
+
callable_info = (GICallableInfo *)info;
|
100
|
+
|
101
|
+
rb_options = rbg_to_hash(rb_options);
|
102
|
+
receiver = rb_hash_delete(rb_options, ID2SYM(rb_intern("receiver")));
|
103
|
+
if (NIL_P(receiver)) {
|
104
|
+
receiver = rb_hash_delete(rb_options, rb_str_new_cstr("receiver"));
|
105
|
+
}
|
106
|
+
if (NIL_P(receiver)) {
|
107
|
+
rb_raise(rb_eArgError,
|
108
|
+
"receiver is missing: %s",
|
109
|
+
RBG_INSPECT(rb_options));
|
110
|
+
}
|
111
|
+
/* TODO: use rb_protect */
|
112
|
+
rb_gi_function_info_invoke_raw(info,
|
113
|
+
rb_options,
|
114
|
+
&return_value);
|
115
|
+
|
116
|
+
g_callable_info_load_return_type(callable_info, &return_value_info);
|
117
|
+
initialize_receiver(receiver, &return_value_info, &return_value);
|
118
|
+
|
119
|
+
return receiver;
|
120
|
+
}
|
121
|
+
|
122
|
+
void
|
123
|
+
rb_gi_constructor_info_init(VALUE rb_mGI, VALUE rb_cGIFunctionInfo)
|
124
|
+
{
|
125
|
+
VALUE RG_TARGET_NAMESPACE;
|
126
|
+
|
127
|
+
RG_TARGET_NAMESPACE =
|
128
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_CONSTRUCTOR_INFO,
|
129
|
+
"ConstructorInfo", rb_mGI,
|
130
|
+
rb_cGIFunctionInfo);
|
131
|
+
|
132
|
+
RG_DEF_METHOD(invoke, 1);
|
133
|
+
}
|
@@ -0,0 +1,145 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012-2014 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_CONVERSIONS_H
|
22
|
+
#define RB_GI_CONVERSIONS_H
|
23
|
+
|
24
|
+
#define RVAL2GI_REPOSITORY(rb_object) (G_IREPOSITORY(RVAL2GOBJ(rb_object)))
|
25
|
+
#define RVAL2GI_REPOSITORY_LOAD_FLAGS(rb_flags) \
|
26
|
+
(RVAL2GFLAGS(rb_flags, G_TYPE_I_REPOSITORY_LOAD_FLAGS))
|
27
|
+
|
28
|
+
#define GI_BASE_INFO2RVAL(info) \
|
29
|
+
(rb_gi_base_info_to_ruby((GIBaseInfo *)(info)))
|
30
|
+
#define GI_BASE_INFO2RVAL_WITH_UNREF(info) \
|
31
|
+
(rb_gi_base_info_to_ruby_with_unref((GIBaseInfo *)(info)))
|
32
|
+
#define RVAL2GI_BASE_INFO(rb_object) (rb_gi_base_info_from_ruby(rb_object))
|
33
|
+
|
34
|
+
#define GI_ARGUMENT2RVAL(argument, type_info) \
|
35
|
+
(rb_gi_argument_to_ruby((argument), (type_info)))
|
36
|
+
#define GI_ARRAY_ARGUMENT2RVAL(array_argument, length_argument, \
|
37
|
+
array_type_info, length_type_info) \
|
38
|
+
(rb_gi_array_argument_to_ruby((array_argument), \
|
39
|
+
(length_argument), \
|
40
|
+
(array_type_info), \
|
41
|
+
(length_type_info)))
|
42
|
+
#define GI_OUT_ARGUMENT2RVAL(argument, arg_info) \
|
43
|
+
(rb_gi_out_argument_to_ruby((argument), (arg_info)))
|
44
|
+
#define GI_OUT_ARRAY_ARGUMENT2RVAL(array_argument, length_argument, \
|
45
|
+
array_arg_info, length_arg_info) \
|
46
|
+
(rb_gi_out_array_argument_to_ruby((array_argument), (length_argument), \
|
47
|
+
(array_arg_info), (length_arg_info)))
|
48
|
+
#define GI_RETURN_ARGUMENT2RVAL(argument, callable_info) \
|
49
|
+
(rb_gi_return_argument_to_ruby((argument), (callable_info)))
|
50
|
+
#define RVAL2GI_VALUE_ARGUMENT(argument, type_info, rb_argument) \
|
51
|
+
(rb_gi_value_argument_from_ruby((argument), (type_info), (rb_argument)))
|
52
|
+
#define RVAL2GI_IN_ARGUMENT(argument, arg_info, rb_argument) \
|
53
|
+
(rb_gi_in_argument_from_ruby((argument), (arg_info), (rb_argument)))
|
54
|
+
#define RVAL2GI_IN_ARRAY_ARGUMENT(array_argument, length_argument, \
|
55
|
+
array_arg_info, length_arg_info, \
|
56
|
+
rb_argument) \
|
57
|
+
(rb_gi_in_array_argument_from_ruby((array_argument), (length_argument), \
|
58
|
+
(array_arg_info), (length_arg_info), \
|
59
|
+
(rb_argument)))
|
60
|
+
|
61
|
+
|
62
|
+
#define RVAL2GI_REGISTERED_TYPE_INFO(rb_object) \
|
63
|
+
((GIRegisteredTypeInfo *)RVAL2GI_BASE_INFO(rb_object))
|
64
|
+
#define RVAL2GI_FUNCTION_INFO(rb_object) \
|
65
|
+
((GIFunctionInfo *)RVAL2GI_BASE_INFO(rb_object))
|
66
|
+
#define RVAL2GI_STRUCT_INFO(rb_object) \
|
67
|
+
((GIStructInfo *)RVAL2GI_BASE_INFO(rb_object))
|
68
|
+
#define RVAL2GI_ENUM_INFO(rb_object) \
|
69
|
+
((GIEnumInfo *)RVAL2GI_BASE_INFO(rb_object))
|
70
|
+
#define RVAL2GI_OBJECT_INFO(rb_object) \
|
71
|
+
((GIObjectInfo *)RVAL2GI_BASE_INFO(rb_object))
|
72
|
+
#define RVAL2GI_INTERFACE_INFO(rb_object) \
|
73
|
+
((GIInterfaceInfo *)RVAL2GI_BASE_INFO(rb_object))
|
74
|
+
#define RVAL2GI_CONSTANT_INFO(rb_object) \
|
75
|
+
((GIConstantInfo *)RVAL2GI_BASE_INFO(rb_object))
|
76
|
+
#define RVAL2GI_UNION_INFO(rb_object) \
|
77
|
+
((GIUnionInfo *)RVAL2GI_BASE_INFO(rb_object))
|
78
|
+
#define RVAL2GI_VALUE_INFO(rb_object) \
|
79
|
+
((GIValueInfo *)RVAL2GI_BASE_INFO(rb_object))
|
80
|
+
#define RVAL2GI_ARG_INFO(rb_object) \
|
81
|
+
((GIArgInfo *)RVAL2GI_BASE_INFO(rb_object))
|
82
|
+
#define RVAL2GI_FIELD_INFO(rb_object) \
|
83
|
+
((GIFieldInfo *)RVAL2GI_BASE_INFO(rb_object))
|
84
|
+
#define RVAL2GI_TYPE_INFO(rb_object) \
|
85
|
+
((GITypeInfo *)RVAL2GI_BASE_INFO(rb_object))
|
86
|
+
|
87
|
+
#define GI_INFO_TYPE2RVAL(type) (GENUM2RVAL(type, G_TYPE_I_INFO_TYPE))
|
88
|
+
#define GI_TRANSFER2RVAL(transfer) (GENUM2RVAL(transfer, G_TYPE_I_TRANSFER))
|
89
|
+
#define GI_DIRECTION2RVAL(direction) (GENUM2RVAL(direction, G_TYPE_I_DIRECTION))
|
90
|
+
#define GI_SCOPE_TYPE2RVAL(scope) (GENUM2RVAL(scope, G_TYPE_I_SCOPE_TYPE))
|
91
|
+
#define RVAL2GI_TYPE_TAG(rb_tag) (RVAL2GENUM(rb_tag, G_TYPE_I_TYPE_TAG))
|
92
|
+
#define GI_TYPE_TAG2RVAL(tag) (GENUM2RVAL(tag, G_TYPE_I_TYPE_TAG))
|
93
|
+
#define GI_ARRAY_TYPE2RVAL(type) (rb_gi_array_type_to_ruby(type))
|
94
|
+
|
95
|
+
#define GI_FUNCTION_INFO_FLAGS2RVAL(tag) \
|
96
|
+
(GFLAGS2RVAL(tag, G_TYPE_I_FUNCTION_INFO_FLAGS))
|
97
|
+
#define GI_SIGNAL_FLAGS2RVAL(tag) \
|
98
|
+
(GFLAGS2RVAL(tag, G_TYPE_SIGNAL_FLAGS))
|
99
|
+
#define GI_VFUNC_INFO_FLAGS2RVAL(tag) \
|
100
|
+
(GFLAGS2RVAL(tag, G_TYPE_IV_FUNC_INFO_FLAGS))
|
101
|
+
#define GI_FIELD_INFO_FLAGS2RVAL(tag) \
|
102
|
+
(GFLAGS2RVAL(tag, G_TYPE_I_FIELD_INFO_FLAGS))
|
103
|
+
|
104
|
+
VALUE rb_gi_base_info_to_ruby (GIBaseInfo *info);
|
105
|
+
VALUE rb_gi_base_info_to_ruby_with_unref(GIBaseInfo *info);
|
106
|
+
GIBaseInfo *rb_gi_base_info_from_ruby (VALUE rb_info);
|
107
|
+
|
108
|
+
VALUE rb_gi_argument_to_ruby (GIArgument *argument,
|
109
|
+
GITypeInfo *type_info);
|
110
|
+
VALUE rb_gi_array_argument_to_ruby (GIArgument *array_argument,
|
111
|
+
GIArgument *length_argument,
|
112
|
+
GITypeInfo *array_type_info,
|
113
|
+
GITypeInfo *length_type_info);
|
114
|
+
void rb_gi_out_argument_init (GIArgument *argument,
|
115
|
+
GIArgInfo *arg_info);
|
116
|
+
VALUE rb_gi_out_argument_to_ruby (GIArgument *argument,
|
117
|
+
GIArgInfo *arg_info);
|
118
|
+
VALUE rb_gi_out_array_argument_to_ruby (GIArgument *array_argument,
|
119
|
+
GIArgument *length_argument,
|
120
|
+
GIArgInfo *array_arg_info,
|
121
|
+
GIArgInfo *length_arg_info);
|
122
|
+
void rb_gi_out_argument_fin (GIArgument *argument,
|
123
|
+
GIArgInfo *arg_info);
|
124
|
+
VALUE rb_gi_return_argument_to_ruby (GIArgument *argument,
|
125
|
+
GICallableInfo *callable_info);
|
126
|
+
GIArgument *rb_gi_value_argument_from_ruby (GIArgument *argument,
|
127
|
+
GITypeInfo *type_info,
|
128
|
+
VALUE rb_argument);
|
129
|
+
GIArgument *rb_gi_in_argument_from_ruby (GIArgument *argument,
|
130
|
+
GIArgInfo *arg_info,
|
131
|
+
VALUE rb_argument);
|
132
|
+
GIArgument *rb_gi_in_array_argument_from_ruby (GIArgument *array_argument,
|
133
|
+
GIArgument *length_argument,
|
134
|
+
GIArgInfo *array_arg_info,
|
135
|
+
GIArgInfo *length_arg_info,
|
136
|
+
VALUE rb_argument);
|
137
|
+
void rb_gi_value_argument_free (GIArgument *argument,
|
138
|
+
GITypeInfo *type_info);
|
139
|
+
void rb_gi_in_argument_free (GIArgument *argument,
|
140
|
+
GIArgInfo *arg_info);
|
141
|
+
|
142
|
+
VALUE rb_gi_array_type_to_ruby (GIArrayType type);
|
143
|
+
|
144
|
+
#endif
|
145
|
+
|
@@ -0,0 +1,155 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2012-2014 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_cGIEnumInfo
|
24
|
+
#define SELF(self) (RVAL2GI_ENUM_INFO(self))
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_enum_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GIEnumInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
rg_n_values(VALUE self)
|
40
|
+
{
|
41
|
+
GIEnumInfo *info;
|
42
|
+
|
43
|
+
info = SELF(self);
|
44
|
+
return INT2NUM(g_enum_info_get_n_values(info));
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_get_value(VALUE self, VALUE rb_n)
|
49
|
+
{
|
50
|
+
GIEnumInfo *info;
|
51
|
+
gint n;
|
52
|
+
|
53
|
+
info = SELF(self);
|
54
|
+
n = NUM2INT(rb_n);
|
55
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_enum_info_get_value(info, n));
|
56
|
+
}
|
57
|
+
|
58
|
+
static VALUE
|
59
|
+
rg_values(VALUE self)
|
60
|
+
{
|
61
|
+
GIEnumInfo *info;
|
62
|
+
gint i, n;
|
63
|
+
VALUE rb_values;
|
64
|
+
|
65
|
+
info = SELF(self);
|
66
|
+
|
67
|
+
rb_values = rb_ary_new();
|
68
|
+
n = g_enum_info_get_n_values(info);
|
69
|
+
for (i = 0; i < n; i++) {
|
70
|
+
GIValueInfo *value_info;
|
71
|
+
value_info = g_enum_info_get_value(info, i);
|
72
|
+
rb_ary_push(rb_values, GI_BASE_INFO2RVAL_WITH_UNREF(value_info));
|
73
|
+
}
|
74
|
+
|
75
|
+
return rb_values;
|
76
|
+
}
|
77
|
+
|
78
|
+
static VALUE
|
79
|
+
rg_n_methods(VALUE self)
|
80
|
+
{
|
81
|
+
GIEnumInfo *info;
|
82
|
+
|
83
|
+
info = SELF(self);
|
84
|
+
return INT2NUM(g_enum_info_get_n_methods(info));
|
85
|
+
}
|
86
|
+
|
87
|
+
static VALUE
|
88
|
+
rg_get_method(VALUE self, VALUE rb_n)
|
89
|
+
{
|
90
|
+
GIEnumInfo *info;
|
91
|
+
gint n;
|
92
|
+
|
93
|
+
info = SELF(self);
|
94
|
+
n = NUM2INT(rb_n);
|
95
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_enum_info_get_method(info, n));
|
96
|
+
}
|
97
|
+
|
98
|
+
static VALUE
|
99
|
+
rg_methods(VALUE self)
|
100
|
+
{
|
101
|
+
GIEnumInfo *info;
|
102
|
+
gint i, n;
|
103
|
+
VALUE rb_methods;
|
104
|
+
|
105
|
+
info = SELF(self);
|
106
|
+
|
107
|
+
rb_methods = rb_ary_new();
|
108
|
+
n = g_enum_info_get_n_methods(info);
|
109
|
+
for (i = 0; i < n; i++) {
|
110
|
+
GIFunctionInfo *function_info;
|
111
|
+
function_info = g_enum_info_get_method(info, i);
|
112
|
+
rb_ary_push(rb_methods, GI_BASE_INFO2RVAL_WITH_UNREF(function_info));
|
113
|
+
}
|
114
|
+
|
115
|
+
return rb_methods;
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_storage_type(VALUE self)
|
120
|
+
{
|
121
|
+
GIEnumInfo *info;
|
122
|
+
|
123
|
+
info = SELF(self);
|
124
|
+
return GI_TYPE_TAG2RVAL(g_enum_info_get_storage_type(info));
|
125
|
+
}
|
126
|
+
|
127
|
+
static VALUE
|
128
|
+
rg_error_domain(VALUE self)
|
129
|
+
{
|
130
|
+
GIEnumInfo *info;
|
131
|
+
|
132
|
+
info = SELF(self);
|
133
|
+
return CSTR2RVAL(g_enum_info_get_error_domain(info));
|
134
|
+
}
|
135
|
+
|
136
|
+
void
|
137
|
+
rb_gi_enum_info_init(VALUE rb_mGI, VALUE rb_cGIRegisteredTypeInfo)
|
138
|
+
{
|
139
|
+
VALUE RG_TARGET_NAMESPACE;
|
140
|
+
|
141
|
+
RG_TARGET_NAMESPACE =
|
142
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_ENUM_INFO, "EnumInfo", rb_mGI,
|
143
|
+
rb_cGIRegisteredTypeInfo);
|
144
|
+
|
145
|
+
RG_DEF_METHOD(n_values, 0);
|
146
|
+
RG_DEF_METHOD(get_value, 1);
|
147
|
+
RG_DEF_METHOD(values, 0);
|
148
|
+
RG_DEF_METHOD(n_methods, 0);
|
149
|
+
RG_DEF_METHOD(get_method, 1);
|
150
|
+
RG_DEF_METHOD(methods, 0);
|
151
|
+
RG_DEF_METHOD(storage_type, 0);
|
152
|
+
RG_DEF_METHOD(error_domain, 0);
|
153
|
+
|
154
|
+
rb_gi_flags_info_init(rb_mGI, RG_TARGET_NAMESPACE);
|
155
|
+
}
|
@@ -0,0 +1,153 @@
|
|
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
|
+
#include "rb-gi-private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE rb_cGIFieldInfo
|
24
|
+
#define SELF(self) (RVAL2GI_FIELD_INFO(self))
|
25
|
+
|
26
|
+
GType
|
27
|
+
gi_field_info_get_type(void)
|
28
|
+
{
|
29
|
+
static GType type = 0;
|
30
|
+
if (type == 0) {
|
31
|
+
type = g_boxed_type_register_static("GIFieldInfo",
|
32
|
+
(GBoxedCopyFunc)g_base_info_ref,
|
33
|
+
(GBoxedFreeFunc)g_base_info_unref);
|
34
|
+
}
|
35
|
+
return type;
|
36
|
+
}
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
rg_flags(VALUE self)
|
40
|
+
{
|
41
|
+
GIFieldInfo *info;
|
42
|
+
|
43
|
+
info = SELF(self);
|
44
|
+
return GI_FIELD_INFO_FLAGS2RVAL(g_field_info_get_flags(info));
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_size(VALUE self)
|
49
|
+
{
|
50
|
+
GIFieldInfo *info;
|
51
|
+
|
52
|
+
info = SELF(self);
|
53
|
+
return INT2NUM(g_field_info_get_size(info));
|
54
|
+
}
|
55
|
+
|
56
|
+
static VALUE
|
57
|
+
rg_offset(VALUE self)
|
58
|
+
{
|
59
|
+
GIFieldInfo *info;
|
60
|
+
|
61
|
+
info = SELF(self);
|
62
|
+
return INT2NUM(g_field_info_get_offset(info));
|
63
|
+
}
|
64
|
+
|
65
|
+
static VALUE
|
66
|
+
rg_type(VALUE self)
|
67
|
+
{
|
68
|
+
GIFieldInfo *info;
|
69
|
+
|
70
|
+
info = SELF(self);
|
71
|
+
return GI_BASE_INFO2RVAL_WITH_UNREF(g_field_info_get_type(info));
|
72
|
+
}
|
73
|
+
|
74
|
+
VALUE
|
75
|
+
rb_gi_field_info_get_field_raw(GIFieldInfo *info, gpointer memory)
|
76
|
+
{
|
77
|
+
GIArgument argument;
|
78
|
+
GITypeInfo *type_info;
|
79
|
+
VALUE rb_field_value;
|
80
|
+
|
81
|
+
if (!g_field_info_get_field(info, memory, &argument)) {
|
82
|
+
rb_raise(rb_eArgError, "failed to get field value");
|
83
|
+
}
|
84
|
+
|
85
|
+
type_info = g_field_info_get_type(info);
|
86
|
+
rb_field_value = GI_ARGUMENT2RVAL(&argument, type_info);
|
87
|
+
g_base_info_unref(type_info);
|
88
|
+
|
89
|
+
return rb_field_value;
|
90
|
+
}
|
91
|
+
|
92
|
+
void
|
93
|
+
rb_gi_field_info_set_field_raw(GIFieldInfo *info, gpointer memory,
|
94
|
+
VALUE rb_field_value)
|
95
|
+
{
|
96
|
+
GIArgument field_value;
|
97
|
+
GITypeInfo *type_info;
|
98
|
+
gboolean succeeded;
|
99
|
+
|
100
|
+
type_info = g_field_info_get_type(info);
|
101
|
+
RVAL2GI_VALUE_ARGUMENT(&field_value, type_info, rb_field_value);
|
102
|
+
|
103
|
+
succeeded = g_field_info_set_field(info, memory, &field_value);
|
104
|
+
rb_gi_value_argument_free(&field_value, type_info);
|
105
|
+
g_base_info_unref(type_info);
|
106
|
+
|
107
|
+
if (!succeeded) {
|
108
|
+
rb_raise(rb_eArgError, "failed to set field value");
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
static VALUE
|
113
|
+
rg_get_field(VALUE self, VALUE rb_memory)
|
114
|
+
{
|
115
|
+
GIFieldInfo *info;
|
116
|
+
gpointer memory;
|
117
|
+
|
118
|
+
info = SELF(self);
|
119
|
+
memory = GUINT_TO_POINTER(NUM2ULONG(rb_memory));
|
120
|
+
return rb_gi_field_info_get_field_raw(info, memory);
|
121
|
+
}
|
122
|
+
|
123
|
+
static VALUE
|
124
|
+
rg_set_field(VALUE self, VALUE rb_memory, VALUE rb_field_value)
|
125
|
+
{
|
126
|
+
GIFieldInfo *info;
|
127
|
+
gpointer memory;
|
128
|
+
|
129
|
+
info = SELF(self);
|
130
|
+
memory = GUINT_TO_POINTER(NUM2ULONG(rb_memory));
|
131
|
+
rb_gi_field_info_set_field_raw(info, memory, rb_field_value);
|
132
|
+
|
133
|
+
return Qnil;
|
134
|
+
}
|
135
|
+
|
136
|
+
void
|
137
|
+
rb_gi_field_info_init(VALUE rb_mGI, VALUE rb_cGIBaseInfo)
|
138
|
+
{
|
139
|
+
VALUE RG_TARGET_NAMESPACE;
|
140
|
+
|
141
|
+
RG_TARGET_NAMESPACE =
|
142
|
+
G_DEF_CLASS_WITH_PARENT(GI_TYPE_FIELD_INFO, "FieldInfo", rb_mGI,
|
143
|
+
rb_cGIBaseInfo);
|
144
|
+
|
145
|
+
RG_DEF_METHOD(flags, 0);
|
146
|
+
RG_DEF_METHOD(size, 0);
|
147
|
+
RG_DEF_METHOD(offset, 0);
|
148
|
+
RG_DEF_METHOD(type, 0);
|
149
|
+
RG_DEF_METHOD(get_field, 1);
|
150
|
+
RG_DEF_METHOD(set_field, 2);
|
151
|
+
|
152
|
+
G_DEF_CLASS(G_TYPE_I_FIELD_INFO_FLAGS, "FieldInfoFlags", rb_mGI);
|
153
|
+
}
|