JsRender/Gtk.js
authorAlan Knowles <alan@roojs.com>
Tue, 13 Sep 2011 02:22:23 +0000 (10:22 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 13 Sep 2011 02:22:23 +0000 (10:22 +0800)
JsRender/Gtk.js [deleted file]

diff --git a/JsRender/Gtk.js b/JsRender/Gtk.js
deleted file mode 100755 (executable)
index c98a81e..0000000
+++ /dev/null
@@ -1,190 +0,0 @@
-//<Script type="text/javascript">
-Gio = imports.gi.Gio;
-GLib = imports.gi.GLib;
-
-XObject = imports.XObject.XObject;
-File = imports.File.File;
-  
-//----------------------- our roo verison
-Base = imports.JsRender.Base.Base;
-
-var gid = 1;
-
-Gtk = XObject.define( 
-    
-    
-    function(cfg) {
-        
-        // id ,
-        //"name":"Edit Module Details",
-        // items : 
-        //"btype":"FORM", // was to be components...
-        //"app":"Builder",
-        //"module":"Pman.Tab.BuilderTop2"
-        //console.dump(cfg);
-        cfg.parent = cfg.parent || '';
-        if (!cfg.name || !cfg.fullname ) {
-            
-            // name is in theory filename without .bjs (or .js eventually...)
-            cfg.name = cfg.path.split('/').pop().replace(/\.(bjs|js)$/, '');
-            
-            cfg.fullname = (cfg.parent.length ? (cfg.parent + '.') : '' ) + cfg.name;
-        }
-        
-        
-        this.items = false;
-        if (cfg.json) {
-            var jstr =  JSON.parse(cfg.json);
-            this.items = [ jstr ];
-            //console.log(cfg.items.length);
-            delete cfg.json; // not needed!
-        }
-        this.cn = [];
-         /*
-        var p = cfg.items && cfg.items.length && cfg.items[0].parent ? cfg.items[0].parent : false;
-        
-        // ensure real data is set...
-        Roo.apply(this, {
-            name : cfg.module,
-            parent : p,
-            title : cfg.name,
-            project : cfg.app
-            
-        });
-        
-        this.cn = [];
-        */
-        Gtk.superclass.constructor.call(this, cfg);
-
-        
-        // super?!?!
-        this.id = 'file-gtk-' + gid++;
-        //console.dump(this);
-        // various loader methods..
-       
-    },
-    Base,   
-    {
-        xtype : 'Gtk',
-        setNSID : function(id)
-        {
-            
-            this.items[0]['*class'] = id;
-            
-            
-        },
-        getType: function() {
-            return 'Gtk';
-        },
-        
-        loadItems : function(cb)
-        {
-          
-            print("load Items!");
-            if (this.items !== false) {
-                return false;
-            }
-            if (!cb) {  
-                throw {
-                    name: "ArgumentError", 
-                    message : "no callback for loadItems"
-                };
-            }
-            Seed.print("load: " + this.path);
-            
-            
-
-            
-            var _this = this;     
-            var src = File.read(this.path);
-            
-            var cfg = JSON.parse(src);
-            print("loaded data");
-            //console.dump(cfg);
-            
-            //_this.name = cfg.name; -- this should not happen - name should always match filename!!
-            _this.parent =  cfg.parent;
-            _this.title =  cfg.title;
-            _this.items = cfg.items || []; 
-           
-             cb();
-             
-             
-            
-            
-            
-        },
-        /**
-         * convert xtype for munged output..
-         * 
-         */
-        mungeXtype : function(xtype, els)
-        {
-            els.push('xtype: '+ xtype);
-        },
-        
-        toSource : function()
-        {
-            
-            if (!this.items[0]) {
-                return false;
-            }
-            var data = JSON.parse(JSON.stringify(this.items[0]));
-            // we should base this on the objects in the tree really..
-            var i = [ 'Gtk', 'Gdk', 'Pango', 'GLib', 'Gio', 'GObject', 
-                'GtkSource', 'WebKit', 'Vte' ]; //, 'GtkClutter' , 'Gdl'];
-            var src = "";
-            i.forEach(function(e) {
-                src += e+" = imports.gi." + e +";\n";
-            });
-            
-            src += "console = imports.console;\n"; // path?!!?
-            src += "XObject = imports.XObject.XObject;\n"; // path?!!?
-            
-            
-            src += this.name + '=new XObject('+ this.mungeToString(data) + ");\n";
-            src += this.name + '.init();\n';
-            // register it in the cache
-            src += "XObject.cache['/" + this.name + "'] = " + this.name + ";\n";
-            
-            
-            return src;
-            
-            
-        },
-        save : function() {
-            Base.prototype.save.call(this);
-            this.saveJS();
-        },
-        
-        /** 
-         *  saveJS
-         * 
-         * save as a javascript file.
-         * why is this not save...???
-         * 
-         * 
-         */
-        saveJS: function()
-        {
-             
-            var fn = GLib.path_get_dirname(this.path) + '/' + this.name + '.js';
-            print("WRITE : " + fn);
-            File.write(fn, this.toSource());
-            
-            return fn;
-        },
-        /*
-        getTree : function( o ) {
-            
-            
-            
-        }
-        */
-        getHelpUrl : function(cls)
-        {
-            return 'http://devel.akbkhome.com/seed/' + cls + '.html';
-        }
-        
-    });
\ No newline at end of file