mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 04:55:36 +00:00
7648593a67
[ Mike, this is everything I wanted in for the release. ] * generator/StructBase.cs: Generate field accessors for wrapped types (opaque, object, and structs/boxed). Bitfields, unions, and arrays are still unsupported for accessors, and are probably marshalling incorrectly. But this is enough to get events working (see example in sample/GnomeHelloWorld.cs). * parser/Metadata.pm: Support a "delete" directive, and set metadata on structs and boxed (previously was only checking objects and interfaces). * parser/Gdk.metadata: Delete bogus entries GdkWindowObject and GdkPixmapObject (more evil drawable stuff.) * sample/GnomeHelloWorld.cs: Show an example of how to use marshalled events, in our selection callback. svn path=/trunk/gtk-sharp/; revision=6370
68 lines
1.3 KiB
XML
68 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<metadata>
|
|
|
|
<!-- constructor collision hints -->
|
|
<rule>
|
|
<class name="GdkPixbuf">
|
|
<constructor>gdk_pixbuf_new_from_file</constructor>
|
|
</class>
|
|
<data>
|
|
<attribute target="method">
|
|
<name>preferred</name>
|
|
<value>1</value>
|
|
</attribute>
|
|
</data>
|
|
</rule>
|
|
|
|
<!-- array hints -->
|
|
<rule>
|
|
<class name="GdkPixbufLoader">
|
|
<method>Write</method>
|
|
</class>
|
|
<data>
|
|
<attribute target="param">
|
|
<filter level="type">const-guchar*</filter>
|
|
<name>array</name>
|
|
<value>1</value>
|
|
</attribute>
|
|
</data>
|
|
</rule>
|
|
|
|
<!-- null args -->
|
|
<rule>
|
|
<class name="GdkPixmap">
|
|
<constructor>gdk_pixmap_new</constructor>
|
|
</class>
|
|
<data>
|
|
<attribute target="param">
|
|
<filter level="type">GdkWindow*</filter>
|
|
<name>null_ok</name>
|
|
<value>1</value>
|
|
</attribute>
|
|
</data>
|
|
</rule>
|
|
|
|
<!-- drawable hacks-->
|
|
<rule>
|
|
<class name="GdkBitmap"/>
|
|
<class name="GdkPixmap"/>
|
|
<class name="GdkWindow"/>
|
|
<data>
|
|
<attribute target="class">
|
|
<name>parent</name>
|
|
<value>GdkDrawable</value>
|
|
</attribute>
|
|
</data>
|
|
</rule>
|
|
<rule>
|
|
<class name="GdkPixmapObject"/>
|
|
<class name="GdkWindowObject"/>
|
|
<data>
|
|
<attribute target="class">
|
|
<delete/>
|
|
</attribute>
|
|
</data>
|
|
</rule>
|
|
|
|
</metadata>
|