X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=tools%2Fbuild_gtk_tree.js;h=cb03eeb1f35cc48f0ce5a967709b070e25910e0f;hb=2b6abdc27b5fbcf1ccadc344d089ea81338dd452;hp=2c142b1b5400fe8d87b34dfa67a8652472f378a9;hpb=12e4dc0dd4b1288681cbad95ad443a0aad127895;p=app.Builder.js diff --git a/tools/build_gtk_tree.js b/tools/build_gtk_tree.js index 2c142b1b5..cb03eeb1f 100644 --- a/tools/build_gtk_tree.js +++ b/tools/build_gtk_tree.js @@ -273,11 +273,46 @@ function BuildLists () { function verifyUsageMethod(parent,child,method) { // currently only verifies add on container. - if (method !='add') { - + if (method !='Gtk.Container:add') { + return true; + } + 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; + } function is_a(cls, instance_of) { @@ -287,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