mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 03:16:47 +00:00
2004-05-17 Mike Kestner <mkestner@ximian.com>
* generator/ObjectGen.cs : Generate a .cctor that calls the assembly's ObjectManager.Initialize method if the class will need to be registered with GLib.ObjectManager. Enhance the Initialize method to allow multiple invocations. svn path=/trunk/gtk-sharp/; revision=27554
This commit is contained in:
parent
ffe268c415
commit
bfc77b2230
|
@ -1,3 +1,10 @@
|
||||||
|
2004-05-17 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
|
* generator/ObjectGen.cs : Generate a .cctor that calls the assembly's
|
||||||
|
ObjectManager.Initialize method if the class will need to be registered
|
||||||
|
with GLib.ObjectManager. Enhance the Initialize method to allow
|
||||||
|
multiple invocations.
|
||||||
|
|
||||||
2004-05-17 Mike Kestner <mkestner@ximian.com>
|
2004-05-17 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
* generator/SignalHandler.cs : fix some broken/redundant generation in
|
* generator/SignalHandler.cs : fix some broken/redundant generation in
|
||||||
|
|
|
@ -171,6 +171,14 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine (" {\n\t\t\t get { return \"" + str.GetAttribute ("value") + "\"; }\n\t\t}");
|
sw.WriteLine (" {\n\t\t\t get { return \"" + str.GetAttribute ("value") + "\"; }\n\t\t}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (GetExpected (CName) != (QualifiedName + "," + gen_info.AssemblyName)) {
|
||||||
|
sw.WriteLine ();
|
||||||
|
sw.WriteLine ("\t\tstatic " + Name + " ()");
|
||||||
|
sw.WriteLine ("\t\t{");
|
||||||
|
sw.WriteLine ("\t\t\tGtkSharp." + Studlify (gen_info.AssemblyName) + ".ObjectManager.Initialize ();");
|
||||||
|
sw.WriteLine ("\t\t}");
|
||||||
|
}
|
||||||
|
|
||||||
sw.WriteLine ("#endregion");
|
sw.WriteLine ("#endregion");
|
||||||
AppendCustom (sw, gen_info.CustomDir);
|
AppendCustom (sw, gen_info.CustomDir);
|
||||||
|
|
||||||
|
@ -300,11 +308,15 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine ();
|
sw.WriteLine ();
|
||||||
sw.WriteLine ("\tpublic class ObjectManager {");
|
sw.WriteLine ("\tpublic class ObjectManager {");
|
||||||
sw.WriteLine ();
|
sw.WriteLine ();
|
||||||
|
sw.WriteLine ("\t\tstatic bool initialized = false;");
|
||||||
sw.WriteLine ("\t\t// Call this method from the appropriate module init function.");
|
sw.WriteLine ("\t\t// Call this method from the appropriate module init function.");
|
||||||
sw.WriteLine ("\t\tpublic static void Initialize ()");
|
sw.WriteLine ("\t\tpublic static void Initialize ()");
|
||||||
sw.WriteLine ("\t\t{");
|
sw.WriteLine ("\t\t{");
|
||||||
|
sw.WriteLine ("\t\t\tif (initialized)");
|
||||||
|
sw.WriteLine ("\t\t\t\treturn;");
|
||||||
|
sw.WriteLine ("");
|
||||||
|
sw.WriteLine ("\t\t\tinitialized = true;");
|
||||||
|
|
||||||
Console.WriteLine ("Generating mappers");
|
|
||||||
foreach (string key in dir_info.objects.Keys) {
|
foreach (string key in dir_info.objects.Keys) {
|
||||||
if (GetExpected(key) != ((string) dir_info.objects[key] + "," + dir_info.assembly_name))
|
if (GetExpected(key) != ((string) dir_info.objects[key] + "," + dir_info.assembly_name))
|
||||||
sw.WriteLine ("\t\t\tGtkSharp.ObjectManager.RegisterType(\"" + key + "\", \"" + dir_info.objects [key] + "," + dir_info.assembly_name + "\");");
|
sw.WriteLine ("\t\t\tGtkSharp.ObjectManager.RegisterType(\"" + key + "\", \"" + dir_info.objects [key] + "," + dir_info.assembly_name + "\");");
|
||||||
|
|
Loading…
Reference in a new issue