X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=tools%2Fbuild_gtk_tree.js;h=f6a8479353dd0337833748c4077e4e1d54788535;hb=2ac566756ac2af019cc0d8c5e99b34d649519c74;hp=1dd0a3b3d15bd4d9b093fd57f2c997b499920a8b;hpb=cbeb259811139fd59685159d24d967222fc9f2fe;p=app.Builder.js diff --git a/tools/build_gtk_tree.js b/tools/build_gtk_tree.js index 1dd0a3b3d..f6a847935 100644 --- a/tools/build_gtk_tree.js +++ b/tools/build_gtk_tree.js @@ -276,10 +276,49 @@ 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()); - return true; + if (failed.indexOf(parent) > -1) { + return false; + } + + 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) { + failed.push(parent); + print("TRY ctor: " + parent ); + print(JSON.stringify(e)); + 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([match, ct]); + //print ("matching?" + (GObject.type_is_a(match, ct ) ? "YES" : "NO")); + + + return GObject.type_is_a(match, ct ) ? true : false; } @@ -290,14 +329,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