2003-10-05 00:20:17 +00:00
|
|
|
// GtkSharp.Generation.ClassGen.cs - The Class Generatable.
|
2003-07-11 02:00:13 +00:00
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2001-2003 Mike Kestner
|
|
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.IO;
|
|
|
|
using System.Text;
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
public class ClassGen : ClassBase, IGeneratable {
|
|
|
|
|
|
|
|
private ArrayList strings = new ArrayList();
|
|
|
|
private static Hashtable namespaces = new Hashtable ();
|
|
|
|
|
|
|
|
public ClassGen (XmlElement ns, XmlElement elem) : base (ns, elem) {}
|
|
|
|
|
|
|
|
public void Generate ()
|
|
|
|
{
|
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.Writer = gen_info.OpenStream(Name);
|
2003-07-11 02:00:13 +00:00
|
|
|
|
2003-10-05 00:20:17 +00:00
|
|
|
sw.WriteLine ("namespace " + NS + " {");
|
|
|
|
sw.WriteLine ();
|
|
|
|
sw.WriteLine ("\tusing System;");
|
2003-07-11 02:00:13 +00:00
|
|
|
sw.WriteLine ("\tusing System.Runtime.InteropServices;");
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
|
|
|
sw.WriteLine ("#region Autogenerated code");
|
|
|
|
sw.Write ("\tpublic class " + Name);
|
|
|
|
sw.WriteLine (" {");
|
|
|
|
sw.WriteLine ();
|
|
|
|
|
2003-10-05 00:20:17 +00:00
|
|
|
GenProperties (gen_info);
|
|
|
|
GenMethods (gen_info, null, null);
|
2003-07-11 02:00:13 +00:00
|
|
|
|
|
|
|
sw.WriteLine ("#endregion");
|
2003-10-05 00:20:17 +00:00
|
|
|
AppendCustom(sw, gen_info.CustomDir);
|
2003-07-11 02:00:13 +00:00
|
|
|
|
|
|
|
sw.WriteLine ("\t}");
|
2003-10-05 00:20:17 +00:00
|
|
|
sw.WriteLine ("}");
|
2003-07-11 02:00:13 +00:00
|
|
|
|
2003-10-05 00:20:17 +00:00
|
|
|
sw.Close ();
|
|
|
|
gen_info.Writer = null;
|
2003-07-11 02:00:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|