X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=tools%2Fbuild_gtk_tree.js;h=4d0c934da31fbe7d24556e0eeed7be97fce04ec4;hb=373eece7083d2f13fb5bbf509cf1d6676900e531;hp=1dd0a3b3d15bd4d9b093fd57f2c997b499920a8b;hpb=cbeb259811139fd59685159d24d967222fc9f2fe;p=app.Builder.js diff --git a/tools/build_gtk_tree.js b/tools/build_gtk_tree.js index 1dd0a3b3d..4d0c934da 100644 --- a/tools/build_gtk_tree.js +++ b/tools/build_gtk_tree.js @@ -276,9 +276,43 @@ function BuildLists () { if (method !='Gtk.Container:add') { return true; } - var cls = parent.split('.').pop(); - var x = new Gtk[cls](); - print(parent + " : says children are of type : " + x.child_type()); + var ar = parent.split('.') + var cls =ar[1]; + var ns =ar[0]; + + /* + if (parent == 'Gtk.Bin' || methods['Gtk.Bin'].extendsClasses.indexOf(parent) > -1) { + return false; + } + if (['GtkSource.CompletionInfo', + 'Gtk.MenuShell', + 'GtkSource.View', // ??? nothing can be added to it? + 'WebKit.WebView', // ??? nothing can be added to it? + 'GtkClutter.Embed' + ].indexOf(parent) > -1) { + return false; + } + */ + + + try { + var x = new imports.gi[ns][cls](); + } catch(e) { + print("TRY ctor: " + parent ); + print(e.toString()); + return false; + } + + //print("TRY child type: " + parent); + var ct = x.child_type(); + print(parent + " : says children are of type : " + ct); + // get the Gtype for the child? + var GObject = imports.gi.GObject; + var match = GObject.type_from_name(ar.join('')); + print([ar, ct]); + print ("matching?" + (GObject.type_is_a(ar, ct ) ? "YES" : "NO")); + + return true; } @@ -290,14 +324,14 @@ function BuildLists () { function verifyUsage(parent,child) { // find all the methods that child can be added to parent. - var methods = methods[parent].can_contain_using; - for(var i =0;i