2002-01-05 12:45:55 +00:00
|
|
|
// GtkSharp.Generation.EnumGen.cs - The Enumeration Generatable.
|
2002-01-04 02:02:28 +00:00
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001 Mike Kestner
|
|
|
|
|
2002-01-05 12:45:55 +00:00
|
|
|
namespace GtkSharp.Generation {
|
2002-01-04 02:02:28 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
public class EnumGen : GenBase, IGeneratable {
|
2002-01-04 02:02:28 +00:00
|
|
|
|
2002-06-21 20:25:43 +00:00
|
|
|
public EnumGen (XmlElement ns, XmlElement elem) : base (ns, elem) {}
|
2002-01-05 12:45:55 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
public String MarshalType {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return "int";
|
|
|
|
}
|
|
|
|
}
|
2002-07-26 06:08:52 +00:00
|
|
|
public String MarshalReturnType {
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return MarshalType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
public String CallByName (String var_name)
|
|
|
|
{
|
|
|
|
return "(int) " + var_name;
|
|
|
|
}
|
|
|
|
|
2002-02-08 23:56:27 +00:00
|
|
|
public String FromNative(String var)
|
|
|
|
{
|
|
|
|
return "(" + QualifiedName + ")" + var;
|
|
|
|
}
|
|
|
|
|
2002-07-26 06:08:52 +00:00
|
|
|
public String FromNativeReturn(String var)
|
|
|
|
{
|
|
|
|
return FromNative (var);
|
|
|
|
}
|
|
|
|
|
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 virtual String ToNativeReturn(String var)
|
|
|
|
{
|
|
|
|
return CallByName (var);
|
|
|
|
}
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
public void Generate ()
|
2002-01-04 02:02:28 +00:00
|
|
|
{
|
2003-10-05 00:20:17 +00:00
|
|
|
GenerationInfo gen_info = new GenerationInfo (NSElem);
|
|
|
|
Generate (gen_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Generate (GenerationInfo gen_info)
|
|
|
|
{
|
|
|
|
StreamWriter sw = gen_info.OpenStream (Name);
|
|
|
|
|
|
|
|
sw.WriteLine ("namespace " + NS + " {");
|
|
|
|
sw.WriteLine ();
|
|
|
|
sw.WriteLine ("\tusing System;");
|
|
|
|
sw.WriteLine ();
|
2002-05-23 23:43:25 +00:00
|
|
|
|
|
|
|
if (Elem.GetAttribute("type") == "flags") {
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ();
|
2002-06-24 22:04:10 +00:00
|
|
|
sw.WriteLine ("\t[Flags]");
|
2003-05-19 02:45:17 +00:00
|
|
|
}
|
2003-01-05 23:51:37 +00:00
|
|
|
|
2003-02-18 17:28:51 +00:00
|
|
|
// Ok, this is obscene. We need to go through the enums first
|
|
|
|
// to find "large" values. If we find some, we need to change
|
|
|
|
// the base type of the enum.
|
|
|
|
|
|
|
|
string enum_type = null;
|
|
|
|
|
|
|
|
foreach (XmlNode node in Elem.ChildNodes) {
|
|
|
|
if (!(node is XmlElement) || node.Name != "member") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlElement member = (XmlElement) node;
|
|
|
|
|
|
|
|
if (member.HasAttribute("value")) {
|
|
|
|
string value = member.GetAttribute("value");
|
|
|
|
if (value.EndsWith("U")) {
|
|
|
|
enum_type = "uint";
|
|
|
|
member.SetAttribute("value", value.TrimEnd('U'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#region Autogenerated code");
|
2003-02-18 17:28:51 +00:00
|
|
|
|
|
|
|
if (enum_type != null)
|
|
|
|
sw.WriteLine ("\tpublic enum " + Name + " : " + enum_type + " {");
|
|
|
|
else
|
|
|
|
sw.WriteLine ("\tpublic enum " + Name + " {");
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ();
|
|
|
|
|
2002-05-23 23:43:25 +00:00
|
|
|
foreach (XmlNode node in Elem.ChildNodes) {
|
2002-06-26 13:10:48 +00:00
|
|
|
if (!(node is XmlElement) || node.Name != "member") {
|
2002-01-04 02:02:28 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlElement member = (XmlElement) node;
|
2002-06-24 22:04:10 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.Write ("\t\t" + member.GetAttribute("name"));
|
|
|
|
if (member.HasAttribute("value")) {
|
|
|
|
sw.WriteLine (" = " + member.GetAttribute("value") + ",");
|
|
|
|
} else {
|
|
|
|
sw.WriteLine (",");
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 23:51:37 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
sw.WriteLine ("\t}");
|
2003-01-05 23:51:37 +00:00
|
|
|
sw.WriteLine ("#endregion");
|
2003-10-05 00:20:17 +00:00
|
|
|
sw.WriteLine ("}");
|
|
|
|
sw.Close ();
|
2002-02-19 03:12:47 +00:00
|
|
|
Statistics.EnumCount++;
|
2002-01-04 02:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|