2002-01-05 12:45:55 +00:00
|
|
|
// GtkSharp.Generation.StructBase.cs - The Structure/Object Base Class.
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001 Mike Kestner
|
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public class StructBase {
|
|
|
|
|
|
|
|
protected String ns;
|
|
|
|
protected XmlElement elem;
|
|
|
|
|
|
|
|
public StructBase (String ns, XmlElement elem) {
|
|
|
|
|
|
|
|
this.ns = ns;
|
|
|
|
this.elem = elem;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void GenField (XmlElement field, SymbolTable table, StreamWriter sw)
|
|
|
|
{
|
2002-01-06 13:33:25 +00:00
|
|
|
String c_type;
|
|
|
|
|
|
|
|
if (field.HasAttribute("bits") && (field.GetAttribute("bits") == "1")) {
|
|
|
|
c_type = "gboolean";
|
|
|
|
} else {
|
|
|
|
c_type = field.GetAttribute("type");
|
|
|
|
}
|
|
|
|
char[] ast = {'*'};
|
|
|
|
c_type = c_type.TrimEnd(ast);
|
|
|
|
String cs_type = table.GetCSType(c_type);
|
|
|
|
|
|
|
|
if (cs_type == "") {
|
|
|
|
Console.WriteLine ("Unknown Type {0}", c_type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sw.Write ("\t\t" + cs_type);
|
|
|
|
if (field.HasAttribute("array_len")) {
|
|
|
|
sw.Write ("[]");
|
|
|
|
}
|
|
|
|
sw.WriteLine (" " + field.GetAttribute("cname") + ";");
|
2002-01-05 12:45:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|