2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<api>
|
2004-12-03 20:42:12 +00:00
|
|
|
<symbol type="alias" cname="GdkBitmap" name="GdkPixmap" />
|
2005-03-29 18:02:04 +00:00
|
|
|
<symbol type="marshal" cname="GdkEvent" name="Gdk.Event" marshal_type="IntPtr" call_fmt="{0}.Handle" from_fmt="Gdk.Event.GetEvent ({0})"/>
|
|
|
|
<symbol type="marshal" cname="GdkEventAny" name="Gdk.Event" marshal_type="IntPtr" call_fmt="{0}.Handle" from_fmt="Gdk.Event.GetEvent ({0})"/>
|
2004-02-18 16:34:45 +00:00
|
|
|
<symbol type="manual" cname="GdkEventButton" name="Gdk.EventButton"/>
|
2004-02-20 22:33:32 +00:00
|
|
|
<symbol type="manual" cname="GdkEventClient" name="Gdk.EventClient"/>
|
2004-02-18 20:29:21 +00:00
|
|
|
<symbol type="manual" cname="GdkEventConfigure" name="Gdk.EventConfigure"/>
|
2004-02-18 20:05:03 +00:00
|
|
|
<symbol type="manual" cname="GdkEventCrossing" name="Gdk.EventCrossing"/>
|
2004-02-20 17:55:03 +00:00
|
|
|
<symbol type="manual" cname="GdkEventDND" name="Gdk.EventDND"/>
|
2004-02-18 17:59:54 +00:00
|
|
|
<symbol type="manual" cname="GdkEventExpose" name="Gdk.EventExpose"/>
|
2004-02-18 20:29:21 +00:00
|
|
|
<symbol type="manual" cname="GdkEventFocus" name="Gdk.EventFocus"/>
|
2004-02-16 18:41:52 +00:00
|
|
|
<symbol type="manual" cname="GdkEventKey" name="Gdk.EventKey"/>
|
2004-02-18 17:22:03 +00:00
|
|
|
<symbol type="manual" cname="GdkEventMotion" name="Gdk.EventMotion"/>
|
2005-03-29 18:02:04 +00:00
|
|
|
<symbol type="marshal" cname="GdkEventNoExpose" name="Gdk.Event" marshal_type="IntPtr" call_fmt="{0}.Handle" from_fmt="Gdk.Event.GetEvent ({0})"/>
|
2004-02-20 17:55:03 +00:00
|
|
|
<symbol type="manual" cname="GdkEventProperty" name="Gdk.EventProperty"/>
|
2004-02-20 22:33:32 +00:00
|
|
|
<symbol type="manual" cname="GdkEventProximity" name="Gdk.EventProximity"/>
|
2004-02-18 16:55:54 +00:00
|
|
|
<symbol type="manual" cname="GdkEventScroll" name="Gdk.EventScroll"/>
|
2004-02-20 17:55:03 +00:00
|
|
|
<symbol type="manual" cname="GdkEventSelection" name="Gdk.EventSelection"/>
|
2004-02-20 22:33:32 +00:00
|
|
|
<symbol type="manual" cname="GdkEventSetting" name="Gdk.EventSetting"/>
|
2004-02-18 18:16:24 +00:00
|
|
|
<symbol type="manual" cname="GdkEventVisibility" name="Gdk.EventVisibility"/>
|
2004-02-20 22:33:32 +00:00
|
|
|
<symbol type="manual" cname="GdkEventWindowState" name="Gdk.EventWindowState"/>
|
2005-02-23 17:37:33 +00:00
|
|
|
<symbol type="simple" cname="GdkKey" name="Gdk.Key"/>
|
2002-08-19 Rachel Hestilow <hestilow@ximian.com>
* art/Makefile.in (clean): Change to avoid bugging out on generated/CVS.
* glib/ObjectManager.cs: Added. Used to be auto-generated, but
now it can infer names, and relies on per-namespace ObjectManager
classes to inform it of oddly-named classes.
* generator/IGeneratable.cs, GenBase.cs: New "DoGenerate" property.
* generator/*Gen.cs: Honor DoGenerate.
* generator/CodeGenerator.cs: Support including dependency files
which will not be generated.
* generator/ObjectGen.cs: Generate mapping file per-namespace, as one
that calls back to the one in glib. Only generate if the name does
not follow the normal conventions, otherwise, GtkSharp.ObjectManager
can infer the name.
* generator/Parser.cs: Accept 'generate' flag to pass on to the
IGeneratables. Parse a new toplevel element, "symbol", which adds
a type to the SymbolTable (instead of hard-coding it).
* generator/SignalHandler.cs: Do not optimize signal handler creation,
instead creating them in their own namespaces. Do not generate
if the calling Signal told us not to.
* generator/Signal.cs: Do not generate handlers if container's DoGenerate
is false. Adjust to the marshaller name being in a sub-namespace.
* generator/SymbolTable.cs (AddSimpleType, AddManualType): Used
to add simple and manually wrapped types at runtime instead of
compile-time.
(FromNative): Remove hard-coded cases for manually wrapped types, use
a generic case instead.
* api: Added. Move api files and generation targets here.
* source: Added. Move source parsing here.
* generator/makefile: Move actual generation to api/.
* glib/Makefile.in: Remove generated/* target.
* glue/Makefile.am: Fix to include canvas-marshal. Move canvas stuff
to GNOME target.
* gnome/CanvasProxy.cs: Update to work with SignalHandlers being
namespace-specific.
* parser/Metadata.pm: Moved to GAPI/Metadata.pm, renamed, etc.
* parser/gapi2xml.pl: Use GAPI::Metadata.
* parser/makefile: Install scripts, remove source parse build target.
Rename formatXML to gapi_format_xml.
svn path=/trunk/gtk-sharp/; revision=6818
2002-08-20 19:56:18 +00:00
|
|
|
</api>
|
|
|
|
|