X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=tools%2Fbuild_gtk_tree.js;h=cb03eeb1f35cc48f0ce5a967709b070e25910e0f;hb=2b6abdc27b5fbcf1ccadc344d089ea81338dd452;hp=1dd0a3b3d15bd4d9b093fd57f2c997b499920a8b;hpb=cbeb259811139fd59685159d24d967222fc9f2fe;p=app.Builder.js diff --git a/tools/build_gtk_tree.js b/tools/build_gtk_tree.js index 1dd0a3b3d..cb03eeb1f 100644 --- a/tools/build_gtk_tree.js +++ b/tools/build_gtk_tree.js @@ -276,9 +276,41 @@ 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 match = imports.gi.GObject.type_from_name(ar.join('')) + print ("matching?" + ( match & ct ) ? "YES" : "NO"); + + return true; } @@ -290,14 +322,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