resources/RooUsage.txt
[app.Builder.js] / tools / build_gtk_tree.js
index 2b9e172..15472bd 100644 (file)
@@ -133,9 +133,13 @@ function BuildLists () {
                 if (m.memberOf == 'Gtk.Buildable') {
                     return;
                 }
-                if (m.name =='add_mnemonic_label') {
+                               //"Gtk.Widget:add_accelerator",
+                               //"Gtk.Widget:add_device_events"
+
+                if (m.name.match(/^(add_mnemonic_label|add_accelerator|add_device_events)$/)) {
                     return;
                 }
+        
                 // in theory you can not add a window to anything.. ???
                 //if ('Gtk.Window' == addable_type || methods[addable_type].extendsClasses.indexOf('Gtk.Window') > -1) {
                 //    return;
@@ -263,8 +267,89 @@ function BuildLists () {
     this.methods = methods;
     this.allmethods = methods;
     this.implementations = implementations;
-    //print(JSON.stringify(methods,null,4));
+    //print(JSON.stringify(methods,null,4)); Seed.exit();
     // dump out a usage file..
+       this.failed = [];
+    var failed = this.failed;
+    function verifyUsageMethod(parent,child,method)
+    {
+        // currently only verifies add on container.
+        if (method !='Gtk.Container:add') {
+            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;
+        
+    }
+    
+    function is_a(cls, instance_of) {
+        return methods[cls].extendsClasses.indexOf(instance_of) > -1; 
+    }
+    
+    function verifyUsage(parent,child)
+    {
+        // find all the methods that child can be added to parent.
+        var mts = methods[parent].can_contain_using;
+        for(var i =0;i<mts.length;i++) {
+            var m = mts[i].split(':');
+            if (!is_a(child,m[0])) {
+                continue;
+                
+            }
+            if (verifyUsageMethod(parent,child,mts[i])) {
+                return true;
+            }
+        }
+        return false;
+        
+        
+    }
+    
+    
+    
+    
+    
     
     // basically anything that is a Gtk.Container, should be available at the top.
     /*
@@ -297,9 +382,16 @@ right:
         }
         for (var par in methods[cls].can_be_added_to_as) {
             
+            if (!verifyUsage(par,cls)) {
+                continue;
+            }
+            
             if (typeof(usage[par]) == 'undefined') {
                 usage[par] = [];
             }
+            
+           
+            
             usage[par].pushUnique(cls);
             if (typeof(tops[cls]) == 'undefined') {
                 tops[cls] = [];
@@ -307,6 +399,8 @@ right:
             tops[cls].pushUnique(par);
         }
     }
+    
+    
     function canTop(cls, rec) {
         
         rec = rec || 0;
@@ -329,8 +423,22 @@ right:
             }
         }
         return false;
-        
     }
+    var lefts = {};
+    for(var par in usage) {
+        var left = usage[par].join(',');
+        if (typeof(lefts[left]) == 'undefined') {
+            lefts[left] = [];
+        }
+        lefts[left].push(par);
+    }
+    print (JSON.stringify(lefts,null,4));
+    Seed.quit();
+        
+        
+        
+        
+    print (JSON.stringify(usage,null,4));
     var nusage = {};
        var usage_left = {};
     for(var par in usage) {
@@ -340,25 +448,28 @@ right:
         }
                var duped = false;
                for(var dupe in usage) {
-                       if (usage[par].join(',') == usage[dupe].join(',') ) {
+                       if (par != dupe
+                               && typeof(nusage[dupe]) != 'undefined'
+                               && usage[par].join(',') == usage[dupe].join(',')) {
                                duped = true;
+                               
                                if (typeof(usage_left[dupe]) == 'undefined') {
                                        usage_left[dupe] = []; 
                                }
+                               //print(par+ ' is a dupe of ' + dupe);
                                usage_left[dupe].pushUnique(par);
                                break;
                        }
                }
-               if (duped) {
-                       continue;
-               }
+                if (duped) {
+                       continue;
+                }
         nusage[par] = usage[par];
         
     }
-    
-    //r//int(JSON.stringify(nusage,null,4));
-    
-    //print(JSON.stringify(methods['Gtk.Switch'],null,4));
+    usage = nusage;
+    //print(JSON.stringify(nusage,null,4));  Seed.exit();
+    print(JSON.stringify(methods['Gtk.TextView'],null,4));
 
     var str = [];
        for(var par in usage) {
@@ -376,7 +487,7 @@ right:
     /*
       methods is
         [a class]
-            [has methods that use this object]
+            [has  methods that use this object]
                 [list of methods of the top class..]
      
      
@@ -406,6 +517,9 @@ right:
     //print(JSON.stringify(implementations,null,4));
     
 }
+imports.gi.Gtk.init(Seed.argv);
+
+imports.gi.GtkClutter.init(Seed.argv);
 BuildLists();
 
 // we now have a list of classes / methods that can be used..