2002-01-05 12:45:55 +00:00
|
|
|
// GtkSharp.Generation.SymbolTable.cs - The Symbol Table Class.
|
|
|
|
//
|
2005-03-04 18:59:09 +00:00
|
|
|
// Author: Mike Kestner <mkestner@novell.com>
|
2002-01-05 12:45:55 +00:00
|
|
|
//
|
2004-06-25 16:35:15 +00:00
|
|
|
// Copyright (c) 2001-2003 Mike Kestner
|
2005-03-04 18:59:09 +00:00
|
|
|
// Copyright (c) 2004-2005 Novell, Inc.
|
2004-06-25 16:35:15 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the GNU General Public
|
|
|
|
// License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2002-01-05 12:45:55 +00:00
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
public class SymbolTable {
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
static SymbolTable table = null;
|
|
|
|
|
|
|
|
Hashtable types = new Hashtable ();
|
2002-01-05 12:45:55 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public static SymbolTable Table {
|
|
|
|
get {
|
|
|
|
if (table == null)
|
|
|
|
table = new SymbolTable ();
|
|
|
|
|
|
|
|
return table;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public SymbolTable ()
|
2002-01-05 13:24:13 +00:00
|
|
|
{
|
2004-12-27 17:38:52 +00:00
|
|
|
// Simple easily mapped types
|
2007-09-21 16:37:04 +00:00
|
|
|
AddType (new SimpleGen ("void", "void", String.Empty));
|
|
|
|
AddType (new SimpleGen ("gpointer", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("gboolean", "bool", "false"));
|
|
|
|
AddType (new SimpleGen ("gint", "int", "0"));
|
|
|
|
AddType (new SimpleGen ("guint", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("int", "int", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned int", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned-int", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("gshort", "short", "0"));
|
|
|
|
AddType (new SimpleGen ("gushort", "ushort", "0"));
|
|
|
|
AddType (new SimpleGen ("short", "short", "0"));
|
|
|
|
AddType (new SimpleGen ("guchar", "byte", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned char", "byte", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned-char", "byte", "0"));
|
|
|
|
AddType (new SimpleGen ("guint1", "bool", "false"));
|
|
|
|
AddType (new SimpleGen ("uint1", "bool", "false"));
|
|
|
|
AddType (new SimpleGen ("gint8", "sbyte", "0"));
|
|
|
|
AddType (new SimpleGen ("guint8", "byte", "0"));
|
|
|
|
AddType (new SimpleGen ("gint16", "short", "0"));
|
|
|
|
AddType (new SimpleGen ("guint16", "ushort", "0"));
|
|
|
|
AddType (new SimpleGen ("gint32", "int", "0"));
|
|
|
|
AddType (new SimpleGen ("guint32", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("gint64", "long", "0"));
|
|
|
|
AddType (new SimpleGen ("guint64", "ulong", "0"));
|
|
|
|
AddType (new SimpleGen ("long long", "long", "0"));
|
|
|
|
AddType (new SimpleGen ("gfloat", "float", "0.0"));
|
|
|
|
AddType (new SimpleGen ("float", "float", "0.0"));
|
|
|
|
AddType (new SimpleGen ("gdouble", "double", "0.0"));
|
|
|
|
AddType (new SimpleGen ("double", "double", "0.0"));
|
2007-12-05 15:25:45 +00:00
|
|
|
AddType (new SimpleGen ("goffset", "long", "0"));
|
2007-09-21 16:37:04 +00:00
|
|
|
AddType (new SimpleGen ("GQuark", "int", "0"));
|
2004-12-20 22:08:43 +00:00
|
|
|
|
2007-10-22 17:34:02 +00:00
|
|
|
// platform specific integer types.
|
2008-09-18 14:23:29 +00:00
|
|
|
#if WIN64LONGS
|
|
|
|
AddType (new SimpleGen ("long", "int", "0"));
|
|
|
|
AddType (new SimpleGen ("glong", "int", "0"));
|
|
|
|
AddType (new SimpleGen ("ulong", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("gulong", "uint", "0"));
|
|
|
|
AddType (new SimpleGen ("unsigned long", "uint", "0"));
|
|
|
|
#else
|
2004-12-20 22:08:43 +00:00
|
|
|
AddType (new LPGen ("long"));
|
|
|
|
AddType (new LPGen ("glong"));
|
|
|
|
AddType (new LPUGen ("ulong"));
|
|
|
|
AddType (new LPUGen ("gulong"));
|
2008-01-07 21:12:33 +00:00
|
|
|
AddType (new LPUGen ("unsigned long"));
|
2008-09-18 14:23:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
AddType (new LPGen ("ssize_t"));
|
|
|
|
AddType (new LPGen ("gssize"));
|
|
|
|
AddType (new LPUGen ("size_t"));
|
2005-03-10 22:15:07 +00:00
|
|
|
AddType (new LPUGen ("gsize"));
|
2008-09-18 14:23:29 +00:00
|
|
|
|
2007-12-04 23:52:08 +00:00
|
|
|
#if OFF_T_8
|
|
|
|
AddType (new AliasGen ("off_t", "long"));
|
|
|
|
#else
|
|
|
|
AddType (new LPGen ("off_t"));
|
|
|
|
#endif
|
2004-12-27 17:38:52 +00:00
|
|
|
|
|
|
|
// string types
|
|
|
|
AddType (new ConstStringGen ("const-gchar"));
|
|
|
|
AddType (new ConstStringGen ("const-xmlChar"));
|
|
|
|
AddType (new ConstStringGen ("const-char"));
|
2005-06-02 14:16:52 +00:00
|
|
|
AddType (new ConstFilenameGen ("const-gfilename"));
|
|
|
|
AddType (new MarshalGen ("gfilename", "string", "IntPtr", "GLib.Marshaller.StringToFilenamePtr({0})", "GLib.Marshaller.FilenamePtrToStringGFree({0})"));
|
2005-03-04 18:59:09 +00:00
|
|
|
AddType (new MarshalGen ("gchar", "string", "IntPtr", "GLib.Marshaller.StringToPtrGStrdup({0})", "GLib.Marshaller.PtrToStringGFree({0})"));
|
|
|
|
AddType (new MarshalGen ("char", "string", "IntPtr", "GLib.Marshaller.StringToPtrGStrdup({0})", "GLib.Marshaller.PtrToStringGFree({0})"));
|
2007-09-21 16:37:04 +00:00
|
|
|
AddType (new SimpleGen ("GStrv", "string[]", "null"));
|
2004-12-27 17:38:52 +00:00
|
|
|
|
|
|
|
// manually wrapped types requiring more complex marshaling
|
2006-05-10 17:13:30 +00:00
|
|
|
AddType (new ManualGen ("GInitiallyUnowned", "GLib.InitiallyUnowned", "GLib.Object.GetObject ({0})"));
|
2004-12-27 17:38:52 +00:00
|
|
|
AddType (new ManualGen ("GObject", "GLib.Object", "GLib.Object.GetObject ({0})"));
|
|
|
|
AddType (new ManualGen ("GList", "GLib.List"));
|
2008-11-04 20:17:00 +00:00
|
|
|
AddType (new ManualGen ("GPtrArray", "GLib.PtrArray"));
|
2004-12-27 17:38:52 +00:00
|
|
|
AddType (new ManualGen ("GSList", "GLib.SList"));
|
|
|
|
AddType (new MarshalGen ("gunichar", "char", "uint", "GLib.Marshaller.CharToGUnichar ({0})", "GLib.Marshaller.GUnicharToChar ({0})"));
|
|
|
|
AddType (new MarshalGen ("time_t", "System.DateTime", "IntPtr", "GLib.Marshaller.DateTimeTotime_t ({0})", "GLib.Marshaller.time_tToDateTime ({0})"));
|
|
|
|
AddType (new MarshalGen ("GString", "string", "IntPtr", "new GLib.GString ({0}).Handle", "GLib.GString.PtrToString ({0})"));
|
|
|
|
AddType (new MarshalGen ("GType", "GLib.GType", "IntPtr", "{0}.Val", "new GLib.GType({0})"));
|
|
|
|
AddType (new ByRefGen ("GValue", "GLib.Value"));
|
2007-09-21 16:37:04 +00:00
|
|
|
AddType (new SimpleGen ("GDestroyNotify", "GLib.DestroyNotify", "null"));
|
2004-12-27 17:38:52 +00:00
|
|
|
|
2002-01-05 13:24:13 +00:00
|
|
|
// FIXME: These ought to be handled properly.
|
2007-09-21 16:37:04 +00:00
|
|
|
AddType (new SimpleGen ("GC", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GError", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GMemChunk", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GTimeVal", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GClosure", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GArray", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GByteArray", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GData", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GIOChannel", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GTypeModule", "GLib.Object", "null"));
|
|
|
|
AddType (new SimpleGen ("GHashTable", "System.IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("va_list", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("GParamSpec", "IntPtr", "IntPtr.Zero"));
|
|
|
|
AddType (new SimpleGen ("gconstpointer", "IntPtr", "IntPtr.Zero"));
|
2002-01-05 13:24:13 +00:00
|
|
|
}
|
|
|
|
|
2003-10-03 22:11:47 +00:00
|
|
|
public void AddType (IGeneratable gen)
|
2002-05-26 16:23:40 +00:00
|
|
|
{
|
2003-10-03 22:11:47 +00:00
|
|
|
types [gen.CName] = gen;
|
2002-05-26 16:23:40 +00:00
|
|
|
}
|
|
|
|
|
2003-10-03 22:11:47 +00:00
|
|
|
public void AddTypes (IGeneratable[] gens)
|
2002-01-05 12:45:55 +00:00
|
|
|
{
|
2003-10-03 22:11:47 +00:00
|
|
|
foreach (IGeneratable gen in gens)
|
|
|
|
types [gen.CName] = gen;
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public int Count {
|
2002-01-05 12:45:55 +00:00
|
|
|
get
|
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
return types.Count;
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public IEnumerable Generatables {
|
2002-03-08 22:40:00 +00:00
|
|
|
get {
|
2003-05-19 02:45:17 +00:00
|
|
|
return types.Values;
|
2002-03-08 22:40:00 +00:00
|
|
|
}
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public IGeneratable this [string ctype] {
|
|
|
|
get {
|
2003-10-03 22:11:47 +00:00
|
|
|
return DeAlias (ctype) as IGeneratable;
|
2003-05-19 02:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-02 14:16:52 +00:00
|
|
|
private bool IsConstString (string type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case "const-gchar":
|
|
|
|
case "const-char":
|
|
|
|
case "const-xmlChar":
|
|
|
|
case "const-gfilename":
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
private string Trim(string type)
|
2002-02-03 03:44:10 +00:00
|
|
|
{
|
2002-08-21 00:57:52 +00:00
|
|
|
// HACK: If we don't detect this here, there is no
|
|
|
|
// way of indicating it in the symbol table
|
|
|
|
if (type == "void*" || type == "const-void*") return "gpointer";
|
|
|
|
|
2002-04-04 16:20:53 +00:00
|
|
|
string trim_type = type.TrimEnd('*');
|
2003-05-29 Rachel Hestilow <rachel@nullenvoid.com>
* gconf/Value.cs: Update to use new string marshalling.
* generator/StringGen.cs, ConstStringGen.cs: Added.
* generator/IGeneratable.cs: Add new method ToNativeReturn.
* generator/CallbackGen.cs: Implement ToNativeReturn. Call
ToNativeReturn for the return statement. Fix a couple of
places where s_ret was being used incorrectly for m_ret.
* generator/ClassGen.cs, EnumGen.cs, ManualGen.cs,
SimpleGen.cs, StructBase.cs: Implement ToNativeReturn.
* generator/SignalHandler.cs: Call ToNativeReturn for the
return statement, instead of CallByName.
* generator/SymbolTable.cs: Use StringGen for gchar, char,
and gunichar, and ConstStringGen for their const variants.
Add a new method wrapper for ToNativeReturn.
(Trim): Add a special-case for const strings so that the
const is not stripped. Otherwise there is no way of
resolving the const case.
* glade/XML.custom: Update to use new string marshalling.
* glib/Marshaller.cs: Added.
* glib/GException.cs, Markup.cs, ObjectManager.cs,
Value.cs: Update to use new string marshalling.
* glib/Object.cs: Remove old g_type_name DllImport
as it is no longer used.
* glue/fileselection.c (gtksharp_file_selection_get_fileop_entry):
Mark this as const return.
* gtk/ColorSelection.custom, FileSelection.custom,
SelectionData.custom: Update to use new string marshalling.
svn path=/trunk/gtk-sharp/; revision=15286
2003-06-10 18:09:47 +00:00
|
|
|
|
2005-06-02 14:16:52 +00:00
|
|
|
if (IsConstString (trim_type))
|
|
|
|
return trim_type;
|
2003-05-29 Rachel Hestilow <rachel@nullenvoid.com>
* gconf/Value.cs: Update to use new string marshalling.
* generator/StringGen.cs, ConstStringGen.cs: Added.
* generator/IGeneratable.cs: Add new method ToNativeReturn.
* generator/CallbackGen.cs: Implement ToNativeReturn. Call
ToNativeReturn for the return statement. Fix a couple of
places where s_ret was being used incorrectly for m_ret.
* generator/ClassGen.cs, EnumGen.cs, ManualGen.cs,
SimpleGen.cs, StructBase.cs: Implement ToNativeReturn.
* generator/SignalHandler.cs: Call ToNativeReturn for the
return statement, instead of CallByName.
* generator/SymbolTable.cs: Use StringGen for gchar, char,
and gunichar, and ConstStringGen for their const variants.
Add a new method wrapper for ToNativeReturn.
(Trim): Add a special-case for const strings so that the
const is not stripped. Otherwise there is no way of
resolving the const case.
* glade/XML.custom: Update to use new string marshalling.
* glib/Marshaller.cs: Added.
* glib/GException.cs, Markup.cs, ObjectManager.cs,
Value.cs: Update to use new string marshalling.
* glib/Object.cs: Remove old g_type_name DllImport
as it is no longer used.
* glue/fileselection.c (gtksharp_file_selection_get_fileop_entry):
Mark this as const return.
* gtk/ColorSelection.custom, FileSelection.custom,
SelectionData.custom: Update to use new string marshalling.
svn path=/trunk/gtk-sharp/; revision=15286
2003-06-10 18:09:47 +00:00
|
|
|
|
2002-02-18 19:26:33 +00:00
|
|
|
if (trim_type.StartsWith("const-")) return trim_type.Substring(6);
|
2002-02-03 03:44:10 +00:00
|
|
|
return trim_type;
|
|
|
|
}
|
|
|
|
|
2003-10-03 22:11:47 +00:00
|
|
|
private object DeAlias (string type)
|
2002-05-26 16:23:40 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
type = Trim (type);
|
2003-10-03 22:11:47 +00:00
|
|
|
while (types [type] is AliasGen) {
|
|
|
|
IGeneratable igen = types [type] as AliasGen;
|
|
|
|
types [type] = types [igen.Name];
|
|
|
|
type = igen.Name;
|
|
|
|
}
|
2002-05-26 16:23:40 +00:00
|
|
|
|
2003-10-03 22:11:47 +00:00
|
|
|
return types [type];
|
2002-05-26 16:23:40 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string FromNativeReturn(string c_type, string val)
|
2002-07-26 06:08:52 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
|
|
|
return "";
|
|
|
|
return gen.FromNativeReturn (val);
|
2002-07-26 06:08:52 +00:00
|
|
|
}
|
2003-05-29 Rachel Hestilow <rachel@nullenvoid.com>
* gconf/Value.cs: Update to use new string marshalling.
* generator/StringGen.cs, ConstStringGen.cs: Added.
* generator/IGeneratable.cs: Add new method ToNativeReturn.
* generator/CallbackGen.cs: Implement ToNativeReturn. Call
ToNativeReturn for the return statement. Fix a couple of
places where s_ret was being used incorrectly for m_ret.
* generator/ClassGen.cs, EnumGen.cs, ManualGen.cs,
SimpleGen.cs, StructBase.cs: Implement ToNativeReturn.
* generator/SignalHandler.cs: Call ToNativeReturn for the
return statement, instead of CallByName.
* generator/SymbolTable.cs: Use StringGen for gchar, char,
and gunichar, and ConstStringGen for their const variants.
Add a new method wrapper for ToNativeReturn.
(Trim): Add a special-case for const strings so that the
const is not stripped. Otherwise there is no way of
resolving the const case.
* glade/XML.custom: Update to use new string marshalling.
* glib/Marshaller.cs: Added.
* glib/GException.cs, Markup.cs, ObjectManager.cs,
Value.cs: Update to use new string marshalling.
* glib/Object.cs: Remove old g_type_name DllImport
as it is no longer used.
* glue/fileselection.c (gtksharp_file_selection_get_fileop_entry):
Mark this as const return.
* gtk/ColorSelection.custom, FileSelection.custom,
SelectionData.custom: Update to use new string marshalling.
svn path=/trunk/gtk-sharp/; revision=15286
2003-06-10 18:09:47 +00:00
|
|
|
|
|
|
|
public string ToNativeReturn(string c_type, string val)
|
|
|
|
{
|
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
|
|
|
return "";
|
|
|
|
return gen.ToNativeReturn (val);
|
|
|
|
}
|
2002-07-26 06:08:52 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string FromNative(string c_type, string val)
|
2002-07-26 06:08:52 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
|
|
|
return "";
|
|
|
|
return gen.FromNative (val);
|
2002-07-26 06:08:52 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string GetCSType(string c_type)
|
2002-02-08 23:56:27 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
2002-02-08 23:56:27 +00:00
|
|
|
return "";
|
2003-05-19 02:45:17 +00:00
|
|
|
return gen.QualifiedName;
|
2002-02-08 23:56:27 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string GetName(string c_type)
|
2002-01-05 12:45:55 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
2002-01-05 13:24:13 +00:00
|
|
|
return "";
|
2003-05-19 02:45:17 +00:00
|
|
|
return gen.Name;
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string GetMarshalReturnType(string c_type)
|
2002-02-15 01:08:57 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
2002-02-15 01:08:57 +00:00
|
|
|
return "";
|
2003-05-19 02:45:17 +00:00
|
|
|
return gen.MarshalReturnType;
|
2002-02-15 01:08:57 +00:00
|
|
|
}
|
|
|
|
|
2004-11-18 22:19:31 +00:00
|
|
|
public string GetToNativeReturnType(string c_type)
|
|
|
|
{
|
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
|
|
|
return "";
|
|
|
|
return gen.ToNativeReturnType;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string GetMarshalType(string c_type)
|
2002-07-26 06:08:52 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
2002-01-12 02:08:16 +00:00
|
|
|
return "";
|
2003-05-19 02:45:17 +00:00
|
|
|
return gen.MarshalType;
|
2002-01-12 02:08:16 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public string CallByName(string c_type, string var_name)
|
2002-02-06 20:09:14 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
IGeneratable gen = this[c_type];
|
|
|
|
if (gen == null)
|
2002-02-06 20:09:14 +00:00
|
|
|
return "";
|
2003-05-19 02:45:17 +00:00
|
|
|
return gen.CallByName(var_name);
|
2002-02-06 20:09:14 +00:00
|
|
|
}
|
2002-07-26 06:08:52 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsOpaque(string c_type)
|
2002-07-26 06:08:52 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is OpaqueGen)
|
|
|
|
return true;
|
|
|
|
|
2002-07-26 06:08:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsBoxed(string c_type)
|
2002-01-17 00:26:46 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is BoxedGen)
|
|
|
|
return true;
|
|
|
|
|
2002-01-17 00:26:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsStruct(string c_type)
|
2002-07-14 01:32:18 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is StructGen)
|
|
|
|
return true;
|
|
|
|
|
2002-07-14 01:32:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsEnum(string c_type)
|
2002-05-02 21:57:41 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is EnumGen)
|
|
|
|
return true;
|
|
|
|
|
2002-05-02 21:57:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-08-03 22:24:37 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsEnumFlags(string c_type)
|
2002-08-03 22:24:37 +00:00
|
|
|
{
|
2003-10-03 22:11:47 +00:00
|
|
|
EnumGen gen = this [c_type] as EnumGen;
|
|
|
|
return (gen != null && gen.Elem.GetAttribute ("type") == "flags");
|
2002-08-03 22:24:37 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsInterface(string c_type)
|
2002-01-17 00:26:46 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is InterfaceGen)
|
|
|
|
return true;
|
|
|
|
|
2002-01-17 00:26:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public ClassBase GetClassGen(string c_type)
|
2002-05-23 23:43:25 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
return this[c_type] as ClassBase;
|
2002-05-23 23:43:25 +00:00
|
|
|
}
|
2002-06-21 Rachel Hestilow <hestilow@ximian.com>
* generator/ClassBase.cs: New base class for classes and interfaces.
* generator/InterfaceGen.cs: Inherit from ClassBase, generate declarations.
* generator/ObjectGen.cs: Move half of this into ClassBase.
* generator/Method.cs: Turn all applicable Get/Set functions into .NET
accessors. Remove redundant == overload and move into Equals, as
it was confusing "!= null".
* generator/Parameters.cs: Alter signature creation to accept "is_set"
option, add support for variable arguments. Add properties "Count",
"IsVarArgs", "VAType".
* generator/Ctor.cs: Fixup for changes in Parameters (indenting,
signature creation).
* generator/Signal.cs: Support generating declarations.
* generator/SymbolTable: Change GetObjectGen to GetClassGen.
* glib/IWrapper.cs: Move "Handle" declaration to here, so
both classes and interfaces can benefit from it.
* glib/Object.cs: Inherit from IWrapper.cs
* parser/Metadata.pm: Support attribute changes on constructors,
methods, signals, and paramater lists.
* parser/gapi2xml.pl: Parse init funcs for interfaces. Ignore "_"
functions here.
* parser/gapi_pp.pl: Remove boxed_type_register check, as it will
be caught in the init funcs.
* parser/Atk.metadata: Added.
* parser/Gtk.metadata: Add all needed signal/method collision
renames. Rename GtkEditable.Editable accessors to IsEditable,
as .NET does not like accessors with the same name as their
declaring type. Tag TreeStore constructor as varargs.
* samples/ButtonApp.cs: s/EmitAdd/Add.
* samples/Menu.cs: s/EmitAdd/Add, s/Activate/Activated.
svn path=/trunk/gtk-sharp/; revision=5394
2002-06-21 17:15:19 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsObject(string c_type)
|
2002-01-12 02:08:16 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is ObjectGen)
|
|
|
|
return true;
|
|
|
|
|
2002-01-12 02:08:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-06-26 Rachel Hestilow <hestilow@ximian.com>
* configure.in, makefile, makefile.win32: add gnome.
* doc/index.html, netdoc.xsl: Add gnome.
* gdk/Event.cs: New manual wrap for GdkEvent.
* generator/ClassBase.cs: Add methods GetProperty,
GetPropertyRecursively, GetMethodRecursively.
Move Parent property here from ObjectGen.cs. Pass this pointer
into Property.
* generator/Ctor.cs: Generate docs.
* generator/Method.cs, Property.cs: Tag method as "new" if a
Method/Property with the same name is found in the class hierarchy.
* generator/SignalHandler.cs: Correctly wrap complex signal argument
types. Add gnome directory.
* generator/SymbolTable.cs: Add manually wrapped types hash
(contains GLib.GSList and Gdk.Event). Add method IsManuallyWrapped.
* glib/SList.cs: Add constructor from IntPtr.
* glue/slist.c, glue/event.c: Added (field accessor glue).
* glue/Makefile.am: Update.
* parser/Gtk.metadata: Add new signal renames for new signals
exposed by GdkEvent changes.
* parser/README, parser/build.pl: Add libgnome, libgnomecanvas,
libgnomeui.
* parser/gapi2xml.pl: Handle literal-length array parameters,
and NULL property doc strings.
* sample/: Add new test GnomeHelloWorld.cs.
* gnome/: Added.
* parser/Gnome.metadata: Added.
svn path=/trunk/gtk-sharp/; revision=5461
2002-06-26 08:36:05 +00:00
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsCallback(string c_type)
|
2002-07-31 19:18:37 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is CallbackGen)
|
|
|
|
return true;
|
|
|
|
|
2002-07-31 19:18:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 02:45:17 +00:00
|
|
|
public bool IsManuallyWrapped(string c_type)
|
2002-06-26 Rachel Hestilow <hestilow@ximian.com>
* configure.in, makefile, makefile.win32: add gnome.
* doc/index.html, netdoc.xsl: Add gnome.
* gdk/Event.cs: New manual wrap for GdkEvent.
* generator/ClassBase.cs: Add methods GetProperty,
GetPropertyRecursively, GetMethodRecursively.
Move Parent property here from ObjectGen.cs. Pass this pointer
into Property.
* generator/Ctor.cs: Generate docs.
* generator/Method.cs, Property.cs: Tag method as "new" if a
Method/Property with the same name is found in the class hierarchy.
* generator/SignalHandler.cs: Correctly wrap complex signal argument
types. Add gnome directory.
* generator/SymbolTable.cs: Add manually wrapped types hash
(contains GLib.GSList and Gdk.Event). Add method IsManuallyWrapped.
* glib/SList.cs: Add constructor from IntPtr.
* glue/slist.c, glue/event.c: Added (field accessor glue).
* glue/Makefile.am: Update.
* parser/Gtk.metadata: Add new signal renames for new signals
exposed by GdkEvent changes.
* parser/README, parser/build.pl: Add libgnome, libgnomecanvas,
libgnomeui.
* parser/gapi2xml.pl: Handle literal-length array parameters,
and NULL property doc strings.
* sample/: Add new test GnomeHelloWorld.cs.
* gnome/: Added.
* parser/Gnome.metadata: Added.
svn path=/trunk/gtk-sharp/; revision=5461
2002-06-26 08:36:05 +00:00
|
|
|
{
|
2003-05-19 02:45:17 +00:00
|
|
|
if (this[c_type] is ManualGen)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2002-06-26 Rachel Hestilow <hestilow@ximian.com>
* configure.in, makefile, makefile.win32: add gnome.
* doc/index.html, netdoc.xsl: Add gnome.
* gdk/Event.cs: New manual wrap for GdkEvent.
* generator/ClassBase.cs: Add methods GetProperty,
GetPropertyRecursively, GetMethodRecursively.
Move Parent property here from ObjectGen.cs. Pass this pointer
into Property.
* generator/Ctor.cs: Generate docs.
* generator/Method.cs, Property.cs: Tag method as "new" if a
Method/Property with the same name is found in the class hierarchy.
* generator/SignalHandler.cs: Correctly wrap complex signal argument
types. Add gnome directory.
* generator/SymbolTable.cs: Add manually wrapped types hash
(contains GLib.GSList and Gdk.Event). Add method IsManuallyWrapped.
* glib/SList.cs: Add constructor from IntPtr.
* glue/slist.c, glue/event.c: Added (field accessor glue).
* glue/Makefile.am: Update.
* parser/Gtk.metadata: Add new signal renames for new signals
exposed by GdkEvent changes.
* parser/README, parser/build.pl: Add libgnome, libgnomecanvas,
libgnomeui.
* parser/gapi2xml.pl: Handle literal-length array parameters,
and NULL property doc strings.
* sample/: Add new test GnomeHelloWorld.cs.
* gnome/: Added.
* parser/Gnome.metadata: Added.
svn path=/trunk/gtk-sharp/; revision=5461
2002-06-26 08:36:05 +00:00
|
|
|
}
|
|
|
|
|
2003-08-28 16:49:29 +00:00
|
|
|
public string MangleName(string name)
|
|
|
|
{
|
|
|
|
switch (name) {
|
|
|
|
case "string":
|
|
|
|
return "str1ng";
|
|
|
|
case "event":
|
|
|
|
return "evnt";
|
|
|
|
case "null":
|
|
|
|
return "is_null";
|
|
|
|
case "object":
|
|
|
|
return "objekt";
|
|
|
|
case "params":
|
|
|
|
return "parms";
|
|
|
|
case "ref":
|
|
|
|
return "reference";
|
|
|
|
case "in":
|
|
|
|
return "in_param";
|
|
|
|
case "out":
|
|
|
|
return "out_param";
|
|
|
|
case "fixed":
|
|
|
|
return "mfixed";
|
|
|
|
case "byte":
|
|
|
|
return "_byte";
|
|
|
|
case "new":
|
|
|
|
return "_new";
|
|
|
|
case "base":
|
|
|
|
return "_base";
|
2003-12-17 15:27:34 +00:00
|
|
|
case "lock":
|
|
|
|
return "_lock";
|
|
|
|
case "callback":
|
|
|
|
return "cb";
|
2004-01-19 05:27:42 +00:00
|
|
|
case "readonly":
|
|
|
|
return "read_only";
|
2004-02-02 21:35:01 +00:00
|
|
|
case "interface":
|
|
|
|
return "iface";
|
2005-08-09 17:33:46 +00:00
|
|
|
case "internal":
|
|
|
|
return "_internal";
|
2007-12-03 17:08:03 +00:00
|
|
|
case "where":
|
|
|
|
return "wh3r3";
|
2008-01-29 18:48:04 +00:00
|
|
|
case "foreach":
|
|
|
|
return "for_each";
|
|
|
|
case "remove":
|
|
|
|
return "_remove";
|
2003-08-28 16:49:29 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
}
|