Revert "File.js"
[app.Builder.js] / Builder / Window.js
index b686992..ee270cf 100644 (file)
@@ -7,13 +7,33 @@ GObject = imports.gi.GObject;
 GtkSource = imports.gi.GtkSource;
 WebKit = imports.gi.WebKit;
 Vte = imports.gi.Vte;
+GtkClutter = imports.gi.GtkClutter;
 console = imports.console;
 XObject = imports.XObject.XObject;
 Window=new XObject({
     xtype: Gtk.Window,
-    type : Gtk.WindowType.TOPLEVEL,
-    title : "Application Builder",
+    listeners : {
+        delete_event : function (self, event) {
+            return false;
+        },
+        destroy : function (self) {
+           Gtk.main_quit();
+        },
+        show : function (self) {
+          print("WINDOW SHOWING - trying to hide");
+        imports.Builder.Provider.ProjectManager.ProjectManager.loadConfig();
+               this.get('/MidPropTree').hideWin();
+            this.get('/RightPalete').hide();
+            this.get('/BottomPane').el.hide();
+            //this.get('/Editor').el.show_all();
+        
+        }
+    },
     border_width : 0,
+    default_height : 500,
+    default_width : 800,
+    id : "Window",
+    title : "Application Builder",
     init : function() {
          this.atoms = {
                "STRING" : Gdk.atom_intern("STRING")
@@ -32,24 +52,10 @@ Window=new XObject({
        
                   
     },
-    default_width : 800,
-    default_height : 500,
-    id : "Window",
-    listeners : {
-        "delete_event":function (self, event) {
-            return false;
-        },
-        "destroy":function (self) {
-           Gtk.main_quit();
-        },
-        "show":function (self) {
-          print("WINDOW SHOWING - trying to hide");
-        imports.Builder.Provider.ProjectManager.ProjectManager.loadConfig();
-               this.get('/MidPropTree').hideWin();
-            this.get('/RightPalete').hide();
-        
-        }
+    setTitle : function(str) {
+        this.el.set_title(this.title + ' - ' + str);
     },
+    type : Gtk.WindowType.TOPLEVEL,
     items : [
         {
             xtype: Gtk.VBox,
@@ -73,10 +79,11 @@ Window=new XObject({
                                             use_underline : true,
                                             label : "New _Project",
                                             listeners : {
-                                                "activate":function (self) {
+                                                activate : function (self) {
+                                                         var _this = this;
                                                        this.get('/EditProject').show({
                                                            success : function(pr) {
-                                                                    this.get('/LeftProjectTree').get('combo').setValue(pr.fn);
+                                                                    _this.get('/LeftProjectTree').get('combo').setValue(pr.fn);
                                                            }
                                                        });
                                                 }
@@ -87,7 +94,7 @@ Window=new XObject({
                                             label : "_New File",
                                             use_underline : true,
                                             listeners : {
-                                                "activate":function (self) {
+                                                activate : function (self) {
                                                        var fn = this.get('/LeftProjectTree.combo').getValue();
                                                         if (!fn) {
                                                             this.get('/LeftProjectTree').showNoProjectSelected();
@@ -104,13 +111,42 @@ Window=new XObject({
                                             xtype: Gtk.SeparatorMenuItem,
                                             pack : "add"
                                         },
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            use_underline : true,
+                                            pack : "add",
+                                            label : "D_elete Project",
+                                            listeners : {
+                                                activate : function (self) {
+                                                
+                                                       var fn =  this.get('/LeftProjectTree').get('combo').getValue();
+                                                       if (!fn.length) {
+                                                               this.get('/StandardErrorDialog').show("Select a project")
+                                                               return;
+                                                        }
+                                                       var pm = imports.Builder.Provider.ProjectManager.ProjectManager;
+                                                       var pr  = pm.getByFn(fn);
+                                                
+                                                       // confirm..
+                                                       this.get('/DialogConfirm').show("Are you sure you want to delete project '" + pr.name + "'", function() {
+                                                               pm.deleteProject(fn);
+                                                               print("DELETE?");
+                                                       });
+                                                
+                                                }
+                                            }
+                                        },
+                                        {
+                                            xtype: Gtk.SeparatorMenuItem,
+                                            pack : "add"
+                                        },
                                         {
                                             xtype: Gtk.MenuItem,
                                             pack : "add",
                                             label : "_Quit",
                                             use_underline : true,
                                             listeners : {
-                                                "activate":function (self) {
+                                                activate : function (self) {
                                                    Gtk.main_quit();
                                                 }
                                             }
@@ -121,7 +157,164 @@ Window=new XObject({
                         },
                         {
                             xtype: Gtk.MenuItem,
-                            label : "Help"
+                            label : "_Edit",
+                            use_underline : true,
+                            pack : "add",
+                            items : [
+                                {
+                                    xtype: Gtk.Menu,
+                                    pack : "set_submenu",
+                                    items : [
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            listeners : {
+                                                activate : function (self) {
+                                                       var fn = this.get('/LeftTree').getActiveFile();
+                                                        if (!fn) {
+                                                            this.get('/StandardErrorDialog').show("No File active");
+                                                            return true;
+                                                        }
+                                                 
+                                                        this.get('/DialogNewComponent').show(fn);
+                                                        return true;
+                                                }
+                                            },
+                                            label : "File _Properties",
+                                            pack : "add",
+                                            use_underline : true
+                                        },
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            listeners : {
+                                                activate : function (self, event) {
+                                                    this.get('/RooProjectProperties').show();
+                                                    return false;
+                                                }
+                                            },
+                                            label : "Modify Project HTML ",
+                                            pack : "add",
+                                            use_underline : true
+                                        }
+                                    ]
+                                }
+                            ]
+                        },
+                        {
+                            xtype: Gtk.MenuItem,
+                            label : "_View",
+                            use_underline : true,
+                            items : [
+                                {
+                                    xtype: Gtk.Menu,
+                                    pack : "set_submenu",
+                                    items : [
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            listeners : {
+                                                activate : function (self, event) {
+                                                      var js = this.get('/LeftTree.model').toJS();
+                                                    if (js && js[0]) {
+                                                        this.get('/RightBrowser.view').renderJS(js[0], true);
+                                                    } 
+                                                    return false;
+                                                }
+                                            },
+                                            label : "_Redraw (Roo)",
+                                            pack : "add",
+                                            use_underline : true
+                                        },
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            listeners : {
+                                                activate : function (self, event) 
+                                                {
+                                                        /* Firefox testing for debugging..
+                                                          - we can create a /tmp directory, and put.
+                                                            builder.html, builder.html.js, link roojs1 
+                                                            add at the end of builder.html Roo.onload(function() {
+                                                         */
+                                                        if (!this.get('/Window.LeftTree').getActiveFile()) {
+                                                            return;
+                                                        }
+                                                        
+                                                        var js = this.get('/LeftTree.model').toJS();
+                                                         if (!js ||  !js[0]) {
+                                                            return;
+                                                        }
+                                                        var project = this.get('/Window.LeftTree').getActiveFile().project;
+                                                        //print (project.fn);
+                                                        
+                                                        project.runhtml  = project.runhtml || '';
+                                                
+                                                
+                                                       var File = imports.File.File;
+                                                       
+                                                       var target = "/tmp/firetest"; // fixme..
+                                                       if (!File.isDirectory(target)) {
+                                                           File.mkdir(target);
+                                                        }
+                                                       File.copy(__script_path__ + '/../builder.html.js', target+ '/builder.html.js', Gio.FileCopyFlags.OVERWRITE);
+                                                       if (!File.exists( target+ '/roojs1')) {
+                                                            File.link( target+ '/roojs1', __script_path__ + '/../roojs1');
+                                                       }
+                                                        
+                                                        
+                                                        
+                                                        var html = imports.File.File.read(__script_path__ + '/../builder.html');
+                                                        html = html.replace('</head>', project.runhtml + '</head>');
+                                                        
+                                                       
+                                                        var     jsstr = JSON.stringify(js[0], null, 4);
+                                                       
+                                                        var runbuilder = '<script type="text/javascript">' + "\n" + 
+                                                            " Builder.render(" + jsstr + ");\n" +
+                                                            '</script>';
+                                                        
+                                                        html = html.replace('</body>', runbuilder + '</body>');
+                                                
+                                                       File.write( target+ '/builder.html', html);
+                                                       
+                                                        this.get('/Terminal').feed("RUN DIR:" + target);
+                                                    
+                                                    this.get('/Terminal').el.fork_command( null , [], [], target
+                                                       , false,false,false); 
+                                                    var cmd = "firefox file://" + target + "/builder.html  \n";
+                                                    this.get('/Terminal').el.feed_child(cmd, cmd.length);
+                                                     return false;
+                                                }
+                                            },
+                                            label : "_Test in Firefox (Roo)",
+                                            pack : "add",
+                                            use_underline : true
+                                        }
+                                    ]
+                                }
+                            ]
+                        },
+                        {
+                            xtype: Gtk.MenuItem,
+                            label : "_Help",
+                            use_underline : true,
+                            pack : "add",
+                            items : [
+                                {
+                                    xtype: Gtk.Menu,
+                                    pack : "set_submenu",
+                                    items : [
+                                        {
+                                            xtype: Gtk.MenuItem,
+                                            pack : "add",
+                                            label : "_About",
+                                            use_underline : true,
+                                            listeners : {
+                                                activate : function (self) {
+                                                    this.get('/About').el.run();
+                                                }
+                                            }
+                                        }
+                                    ]
+                                }
+                            ]
                         }
                     ]
                 },
@@ -144,38 +337,22 @@ Window=new XObject({
                                             items : [
                                                 {
                                                     xtype: Gtk.Expander,
-                                                    label : "Select Project",
-                                                    id : "expander",
-                                                    pack : "pack_start,false,true",
-                                                    init : function() {
-                                                        XObject.prototype.init.call(this);
-                                                       this.el.add_events (Gdk.EventMask.BUTTON_MOTION_MASK );
-                                                    },
                                                     listeners : {
-                                                        "activate":function (self) {
-                                                               var nb = this.get('/LeftTopPanel.notebook');
-                                                               if (this.el.expanded) {
-                                                                   // now expanded..
-                                                                    
-                                                                   var pm  = imports.Builder.Provider.ProjectManager.ProjectManager;
-                                                                   
-                                                                  
-                                                                   var model = this.get('/LeftProjectTree.combomodel');
-                                                                 //  print ("loading Projects?")
-                                                               //console.dump(pm.projects);
-                                                                   model.loadData(pm.projects);
-                                                                    
-                                                                   
-                                                                   nb.el.set_current_page(1);
-                                                                   //pm.on('changed', function() {
-                                                                       //console.log("CAUGHT project manager change");
-                                                                   //    _combo.model.loadData(pm.projects);
-                                                                   //}
-                                                                   return;
-                                                               }
-                                                               nb.el.set_current_page(0);
+                                                        activate : function (self) {
+                                                            // this does not actually expand it..
+                                                            // that is done by GTK..
+                                                            
+                                                            
+                                                        
+                                                            if (!this.el.expanded) {
+                                                                this.onExpand();
+                                                            } else {
+                                                                this.onCollapse();
+                                                            }
+                                                                 
                                                         },
-                                                        "enter_notify_event":function (self, event) {
+                                                        enter_notify_event : function (self, event) {
+                                                        return;
                                                              this.el.expanded = !this.el.expanded;
                                                         //if (this.el.expanded ) {
                                                             this.listeners.activate.call(this);
@@ -183,126 +360,135 @@ Window=new XObject({
                                                         
                                                         return true;
                                                         }
+                                                    },
+                                                    id : "expander",
+                                                    label : "Select Project or File",
+                                                    pack : "pack_start,false,true",
+                                                    onCollapse : function() {
+                                                        
+                                                        var nb = this.get('/LeftTopPanel.notebook');
+                                                        nb.el.set_current_page(0);
+                                                    },
+                                                    init : function() {
+                                                        XObject.prototype.init.call(this);
+                                                       this.el.add_events (Gdk.EventMask.BUTTON_MOTION_MASK );
+                                                    },
+                                                    onExpand : function() {
+                                                        var nb = this.get('/LeftTopPanel.notebook');            
+                                                        var pm  = imports.Builder.Provider.ProjectManager.ProjectManager;
+                                                        
+                                                       
+                                                        var model = this.get('/LeftProjectTree.combomodel');
+                                                        //  print ("loading Projects?")
+                                                        //console.dump(pm.projects);
+                                                        model.loadData(pm.projects);
+                                                         
+                                                        
+                                                        nb.el.set_current_page(1);
+                                                        //pm.on('changed', function() {
+                                                       //console.log("CAUGHT project manager change");
+                                                        //    _combo.model.loadData(pm.projects);
+                                                        //}
+                                                        return;
                                                     }
                                                 },
                                                 {
                                                     xtype: Gtk.Notebook,
                                                     id : "notebook",
-                                                    show_border : false,
-                                                    show_tabs : false,
                                                     pack : "pack_start,true,true",
                                                     init : function() {
                                                         XObject.prototype.init.call(this);
                                                        this.el.set_current_page(0);
                                                     
                                                     },
+                                                    show_border : false,
+                                                    show_tabs : false,
                                                     items : [
                                                         {
                                                             xtype: Gtk.ScrolledWindow,
+                                                            id : "LeftTree",
                                                             pack : "add",
-                                                            shadow_type : Gtk.ShadowType.IN,
-                                                            init : function() {
-                                                                XObject.prototype.init.call(this);
-                                                                this.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
+                                                            getActiveElement : function() { // return path to actie node.
+                                                            
+                                                                 var path = this.getActivePath();
+                                                                 if (!path) {
+                                                                    return false;
+                                                                 }
+                                                                 var iter = new Gtk.TreeIter();
+                                                                 this.get('model').el.get_iter_from_string(iter, path);
+                                                                 
+                                                                 var value = new GObject.Value('');
+                                                                 this.get('model').el.get_value(iter, 2, value);
+                                                                    
+                                                                 return JSON.parse(value.value);
+                                                            },
+                                                            getActiveFile : function() {
+                                                                return this.get('model').file;
+                                                            },
+                                                            getActivePath : function() {
+                                                                var model = this.get('model');
+                                                                var view = this.get('view');
+                                                                if (view.selection.count_selected_rows() < 1) {
+                                                                    return false;
+                                                                }
+                                                                var iter = new Gtk.TreeIter();
+                                                            
+                                                                view.selection.get_selected(model.el, iter);
+                                                                return model.el.get_path(iter).to_string();
                                                             },
-                                                            id : "LeftTree",
                                                             getPaleteProvider : function() {
                                                                 var model = this.get('model');
                                                                 var pm = imports.Builder.Provider.ProjectManager.ProjectManager;
                                                                 return pm.getPalete(model.file.getType());
                                                             },
-                                                            renderView : function() {
-                                                                        var model = this.get('model');
-                                                               print("RENDER VIEW?" + model.file.getType());
-                                                               switch( model.file.getType()) {
+                                                            getRenderer : function() {
+                                                            
+                                                               switch( this.getActiveFile().getType()) {
                                                                        case 'Roo':
-                                                                           this.get('/RightBrowser.view').renderJS(model.toJS(false,true)[0]);
+                                                                           return this.get('/RightBrowser.view');
                                                                        case 'Gtk':
-                                                                           this.get('/RightGtkView').renderJS(model.toJS(false,true)[0]);
+                                                                           return this.get('/RightGtkView');
                                                                }
+                                                            
+                                                            },
+                                                            init : function() {
+                                                                XObject.prototype.init.call(this);
+                                                                this.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
+                                                            },
+                                                            renderView : function() {
+                                                                var render = this.getRenderer();
+                                                                var model = this.get('model');
+                                                                if (render) {
+                                                                    render.renderJS(model.toJS(false,true)[0]);
+                                                                } else {
+                                                                    print("NO RENDER JS METHOD?");
+                                                                }
                                                             },
+                                                            shadow_type : Gtk.ShadowType.IN,
                                                             items : [
                                                                 {
                                                                     xtype: Gtk.TreeView,
-                                                                    pack : "add",
-                                                                    id : "view",
-                                                                    headers_visible : false,
-                                                                    enable_tree_lines : true,
-                                                                    tooltip_column : 0,
-                                                                    init : function() {
-                                                                               XObject.prototype.init.call(this);
-                                                                       var description = new Pango.FontDescription.c_new();
-                                                                       description.set_size(8000);
-                                                                       this.el.modify_font(description);
-                                                                    
-                                                                       this.selection = this.el.get_selection();
-                                                                       this.selection.set_mode( Gtk.SelectionMode.SINGLE);
-                                                                       var _this = this;
-                                                                       this.selection.signal['changed'].connect(function() {
-                                                                               _this.get('/LeftTree.view').listeners.cursor_changed.apply(
-                                                                                   _this.get('/LeftTree.view'), [ _this.get('/LeftTree.view'), '']
-                                                                               );
-                                                                       });
-                                                                    
-                                                                       Gtk.drag_source_set (
-                                                                               this.el,            /* widget will be drag-able */
-                                                                               Gdk.ModifierType.BUTTON1_MASK,       /* modifier that will start a drag */
-                                                                               null,            /* lists of target to support */
-                                                                               0,              /* size of list */
-                                                                               Gdk.DragAction.COPY   | Gdk.DragAction.MOVE           /* what to do with data after dropped */
-                                                                       );
-                                                                    
-                                                                       Gtk.drag_source_set_target_list(this.el, this.get('/Window').targetList);
-                                                                    
-                                                                       Gtk.drag_source_add_text_targets(this.el); 
-                                                                       Gtk.drag_dest_set
-                                                                       (
-                                                                           this.el,              /* widget that will accept a drop */
-                                                                           Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
-                                                                           null,            /* lists of target to support */
-                                                                           0,              /* size of list */
-                                                                           Gdk.DragAction.COPY   | Gdk.DragAction.MOVE       /* what to do with data after dropped */
-                                                                       );
-                                                                    
-                                                                       Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
-                                                                       Gtk.drag_dest_add_text_targets(this.el);
-                                                                    },
-                                                                    highlight : function(treepath_ar) {
-                                                                                        if (treepath_ar.length && treepath_ar[0].length ) {
-                                                                                    this.el.set_drag_dest_row( 
-                                                                                        new  Gtk.TreePath.from_string( treepath_ar[0] ),  treepath_ar[1]);
-                                                                                } else {
-                                                                                    this.el.set_drag_dest_row(null, Gtk.TreeViewDropPosition.INTO_OR_AFTER);
-                                                                                }
-                                                                                 
-                                                                            },
-                                                                    selectNode : function(treepath_str) {
-                                                                        //this.selection.select_path(new  Gtk.TreePath.from_string( treepath_str));
-                                                                     var tp = new Gtk.TreePath.from_string(treepath_str);
-                                                                              this.el.set_cursor(tp, null, false);  
-                                                                          this.el.scroll_to_cell(tp, null, false, 0,0);
-                                                                    },
                                                                     listeners : {
-                                                                        "button_press_event":function (self, ev) {
+                                                                        button_press_event : function (self, ev) {
                                                                                console.log("button press?");
-                                                                                        if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button.button != 3) {
-                                                                                            print("click" + ev.type);
-                                                                                            return false;
-                                                                                        }
-                                                                                      
-                                                                                    
-                                                                                        var res = {}; 
-                                                                                        this.get('/LeftTree.view').el.get_path_at_pos(ev.button.x,ev.button.y, res);
-                                                                                        
-                                                                                        if (!this.get('/LeftTreeMenu').el)  this.get('/LeftTreeMenu').init();
-                                                                                        
-                                                                                        this.get('/LeftTreeMenu').el.set_screen(Gdk.Screen.get_default());
-                                                                                        this.get('/LeftTreeMenu').el.show_all();
-                                                                                        this.get('/LeftTreeMenu').el.popup(null, null, null, null, 3, ev.button.time);
-                                                                                        print("click:" + res.path.to_string());
-                                                                                        return false;
+                                                                                if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button.button != 3) {
+                                                                                    print("click" + ev.type);
+                                                                                    return false;
+                                                                                }
+                                                                              
+                                                                            
+                                                                                var res = {}; 
+                                                                                this.get('/LeftTree.view').el.get_path_at_pos(ev.button.x,ev.button.y, res);
+                                                                                
+                                                                                if (!this.get('/LeftTreeMenu').el)  this.get('/LeftTreeMenu').init();
+                                                                                
+                                                                                this.get('/LeftTreeMenu').el.set_screen(Gdk.Screen.get_default());
+                                                                                this.get('/LeftTreeMenu').el.show_all();
+                                                                                this.get('/LeftTreeMenu').el.popup(null, null, null, null, 3, ev.button.time);
+                                                                                print("click:" + res.path.to_string());
+                                                                                return false;
                                                                         },
-                                                                        "drag_begin":function (self, drag_context) {
+                                                                        drag_begin : function (self, drag_context) {
                                                                                print('SOURCE: drag-begin');
                                                                                  this.targetData = false;
                                                                                 // find what is selected in our tree...
@@ -335,7 +521,7 @@ Window=new XObject({
                                                                                 
                                                                                 return true;
                                                                         },
-                                                                        "drag_end":function (self, drag_context) {
+                                                                        drag_end : function (self, drag_context) {
                                                                                Seed.print('LEFT-TREE: drag-end');
                                                                                 this.el.dragData = false;
                                                                                 this.el.dropList = false;
@@ -343,7 +529,7 @@ Window=new XObject({
                                                                                 this.get('/LeftTree.view').highlight(false);
                                                                                 return true;
                                                                         },
-                                                                        "drag_motion":function (self, ctx, x, y, time) {
+                                                                        drag_motion : function (self, ctx, x, y, time) {
                                                                             console.log("LEFT-TREE: drag-motion");
                                                                                         var src = Gtk.drag_get_source_widget(ctx);
                                                                         
@@ -416,7 +602,7 @@ Window=new XObject({
                                                                                          
                                                                                         return true;
                                                                         },
-                                                                        "drag_drop":function (w, ctx, x, y, time) {
+                                                                        drag_drop : function (w, ctx, x, y, time) {
                                                                               Seed.print("TARGET: drag-drop");
                                                                                                
                                                                                                 Gtk.drag_get_data
@@ -433,7 +619,7 @@ Window=new XObject({
                                                                         
                                                                                                 return  true;
                                                                         },
-                                                                        "drag_data_received":function (self, ctx, x, y, sel_data, info, time) {
+                                                                        drag_data_received : function (self, ctx, x, y, sel_data, info, time) {
                                                                                 print("Tree: drag-data-received");
                                                                         
                                                                                       var   delete_selection_data = false;
@@ -480,176 +666,288 @@ Window=new XObject({
                                                                                         Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
                                                                                         return true;
                                                                         },
-                                                                        "cursor_changed":function (self) {
-                                                                         if (this.blockChanges) {
-                                                                           return true;
-                                                                         }
-                                                                         var iter = new Gtk.TreeIter();
-                                                                                        
-                                                                                        if (this.selection.count_selected_rows() < 1) {
-                                                                                            this.get('/LeftPanel.model').load( false);
-                                                                                            this.get('/MidPropTree').activeElement =  false;
-                                                                                            this.get('/MidPropTree').hideWin();
+                                                                        cursor_changed : function (self) {
+                                                                             if (this.blockChanges) { // probably not needed.. 
+                                                                               return true;
+                                                                             }
+                                                                             var render = this.get('/LeftTree').getRenderer();                
+                                                                           
+                                                                            
+                                                                            if (this.selection.count_selected_rows() < 1) {
+                                                                                this.get('/LeftPanel.model').load( false);
+                                                                                this.get('/MidPropTree').activeElement =  false;
+                                                                                this.get('/MidPropTree').hideWin();
                                                                         
-                                                                                            var pm = this.get('/RightPalete.model');
-                                                                                            if (!this.get('/LeftTree').getPaleteProvider()) {
-                                                                                                // it may not be loaded yet..
-                                                                                                return  true;
-                                                                                            }
-                                                                                            pm.load( this.get('/LeftTree').getPaleteProvider().gatherList(
-                                                                                                this.get('/LeftTree.model').listAllTypes()));
-                                                                                           
-                                                                                            return true;
-                                                                                        }
-                                                                                        
-                                                                                        //console.log('changed');
-                                                                                        var s = this.selection;
-                                                                                        s.get_selected(this.get('/LeftTree.model').el, iter);
-                                                                                        
-                                                                                        
-                                                                                        // var val = "";
-                                                                                        value = new GObject.Value('');
-                                                                                        this.get('/LeftTree.model').el.get_value(iter, 2, value);
-                                                                                        this.get('/LeftTree.model').activePath = this.get('/LeftTree.model').el.get_path(iter).to_string();
-                                                                                        
-                                                                                        var data = JSON.parse(value.value);
-                                                                                        this.get('/MidPropTree').activeElement =  data;
-                                                                                        this.get('/MidPropTree').hideWin();
-                                                                                        this.get('/LeftPanel.model').load( data);
-                                                                                        
-                                                                                        console.log(value.value);
-                                                                                       // _g.button.set_label(''+value.get_string());
+                                                                                var pm = this.get('/RightPalete.model');
+                                                                                if (!this.get('/LeftTree').getPaleteProvider()) {
+                                                                                    // it may not be loaded yet..
+                                                                                    return  true;
+                                                                                }
+                                                                                pm.load( this.get('/LeftTree').getPaleteProvider().gatherList(
+                                                                                    this.get('/LeftTree.model').listAllTypes()));
+                                                                                if (render && render.redraw) {
+                                                                                    render.redraw();
+                                                                                }
+                                                                                return true;
+                                                                            }
+                                                                                    
+                                                                                    //console.log('changed');
+                                                                                var s = this.selection;
+                                                                                  var iter = new Gtk.TreeIter();
+                                                                                s.get_selected(this.get('/LeftTree.model').el, iter);
+                                                                                
+                                                                                
+                                                                                // var val = "";
+                                                                                var value = new GObject.Value('');
+                                                                                this.get('/LeftTree.model').el.get_value(iter, 2, value);
+                                                                                this.get('/LeftTree.model').activePath = this.get('/LeftTree.model').el.get_path(iter).to_string();
+                                                                                
+                                                                                var data = JSON.parse(value.value);
+                                                                                this.get('/MidPropTree').activeElement =  data;
+                                                                                this.get('/MidPropTree').hideWin();
+                                                                                this.get('/LeftPanel.model').load( data);
+                                                                                
+                                                                                console.log(value.value);
+                                                                               // _g.button.set_label(''+value.get_string());
                                                                         
-                                                                                        var pm =this.get('/RightPalete.model');
-                                                                                        pm.load( this.get('/RightPalete').provider.gatherList(
-                                                                                             this.get('/LeftTree.model').listAllTypes()));
-                                                                                       
-                                                                                        
-                                                                                       
-                                                                                       
-                                                                                        //Seed.print( value.get_string());
-                                                                                        return true;
+                                                                                var pm =this.get('/RightPalete.model');
+                                                                                pm.load(  this.get('/LeftTree').getPaleteProvider().gatherList(
+                                                                                     this.get('/LeftTree.model').listAllTypes()));
+                                                                               
+                                                                                
+                                                                                   if (render && render.redraw) {
+                                                                                    render.redraw();
+                                                                                }
+                                                                                   
+                                                                                    //Seed.print( value.get_string());
+                                                                                    return true;
                                                                                         
                                                                         }
                                                                     },
+                                                                    id : "view",
+                                                                    pack : "add",
+                                                                    tooltip_column : 1,
+                                                                    enable_tree_lines : true,
+                                                                    headers_visible : false,
+                                                                    highlight : function(treepath_ar) {
+                                                                    
+                                                                            // highlighting for drag/drop
+                                                                            if (treepath_ar.length && treepath_ar[0].length ) {
+                                                                                this.el.set_drag_dest_row( 
+                                                                                        new  Gtk.TreePath.from_string( treepath_ar[0] ),  treepath_ar[1]);
+                                                                                } else {
+                                                                                    this.el.set_drag_dest_row(null, Gtk.TreeViewDropPosition.INTO_OR_AFTER);
+                                                                                }
+                                                                                 
+                                                                            },
+                                                                    init : function() {
+                                                                               XObject.prototype.init.call(this);
+                                                                       var description = new Pango.FontDescription.c_new();
+                                                                       description.set_size(8000);
+                                                                       this.el.modify_font(description);
+                                                                    
+                                                                       this.selection = this.el.get_selection();
+                                                                       this.selection.set_mode( Gtk.SelectionMode.SINGLE);
+                                                                       var _this = this;
+                                                                    
+                                                                       // is this really needed??
+                                                                       this.selection.signal['changed'].connect(function() {
+                                                                               _this.get('/LeftTree.view').listeners.cursor_changed.apply(
+                                                                                   _this.get('/LeftTree.view'), [ _this.get('/LeftTree.view'), '']
+                                                                               );
+                                                                       });
+                                                                    
+                                                                       Gtk.drag_source_set (
+                                                                               this.el,            /* widget will be drag-able */
+                                                                               Gdk.ModifierType.BUTTON1_MASK,       /* modifier that will start a drag */
+                                                                               null,            /* lists of target to support */
+                                                                               0,              /* size of list */
+                                                                               Gdk.DragAction.COPY   | Gdk.DragAction.MOVE           /* what to do with data after dropped */
+                                                                       );
+                                                                    
+                                                                       Gtk.drag_source_set_target_list(this.el, this.get('/Window').targetList);
+                                                                    
+                                                                       Gtk.drag_source_add_text_targets(this.el); 
+                                                                       Gtk.drag_dest_set
+                                                                       (
+                                                                           this.el,              /* widget that will accept a drop */
+                                                                           Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
+                                                                           null,            /* lists of target to support */
+                                                                           0,              /* size of list */
+                                                                           Gdk.DragAction.COPY   | Gdk.DragAction.MOVE       /* what to do with data after dropped */
+                                                                       );
+                                                                    
+                                                                       Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
+                                                                       Gtk.drag_dest_add_text_targets(this.el);
+                                                                    },
+                                                                    selectNode : function(treepath_str) {
+                                                                        //this.selection.select_path(new  Gtk.TreePath.from_string( treepath_str));
+                                                                     var tp = new Gtk.TreePath.from_string(treepath_str);
+                                                                              this.el.set_cursor(tp, null, false);  
+                                                                          this.el.scroll_to_cell(tp, null, false, 0,0);
+                                                                    },
                                                                     items : [
                                                                         {
                                                                             xtype: Gtk.TreeStore,
-                                                                            pack : "set_model",
-                                                                            id : "model",
-                                                                            init : function() {
-                                                                                XObject.prototype.init.call(this);
-                                                                             this.el.set_column_types ( 3, [
-                                                                                        GObject.TYPE_STRING, // title 
-                                                                                        GObject.TYPE_STRING, // tip
-                                                                                        GObject.TYPE_STRING // source..
-                                                                                        ] );
-                                                                            },
                                                                             activePath : false,
+                                                                            currentTree : false,
+                                                                            id : "model",
+                                                                            pack : "set_model",
                                                                             changed : function(n, refresh) {
-                                                                                     print("MODEL CHANGED CALLED" + this.activePath);
+                                                                                //     print("MODEL CHANGED CALLED" + this.activePath);
                                                                                      if (this.activePath) {
-                                                                                            var iter = new Gtk.TreeIter();
-                                                                                            this.el.get_iter(iter, new Gtk.TreePath.from_string(this.activePath))
-                                                                                            this.el.set_value(iter, 0, [GObject.TYPE_STRING, this.nodeTitle(n)]);
-                                                                                            this.el.set_value(iter, 1, [GObject.TYPE_STRING, this.nodeTitle(n)]);
-                                                                                            
-                                                                                            this.el.set_value(iter, 2, [GObject.TYPE_STRING, this.nodeToJSON(n)]);
-                                                                                        }
-                                                                                            //this.currentTree = this.toJS(false, true)[0];
-                                                                                        this.file.items = this.toJS(false, false);
-                                                                                        print("AFTER CHANGED");
-                                                                                        //console.dump(this.file.items);
-                                                                                        this.file.save();
-                                                                                        this.currentTree = this.file.items[0];
-                                                                                        //console.log(this.file.toSource());
-                                                                                        
-                                                                                        if (refresh) {
-                                                                                            print("REDNER BROWSER?!");
-                                                                                            this.get('/LeftTree').renderView();
-                                                                            
-                                                                                            var pm = this.get('/RightPalete.model');
-                                                                                            if (!this.get('/RightPalete').provider) {
-                                                                                                pm.load([]);
-                                                                                                return;
-                                                                                            }
-                                                                                            
-                                                                                            
-                                                                                            pm.load( this.get('/RightPalete').provider.gatherList(this.listAllTypes()));
-                                                                                            //imports['Builder/RightBrowser.js'].renderJS(this.toJS());
-                                                                                        }
-                                                                                         
-                                                                            },
-                                                                            loadFile : function(f) {
-                                                                                //console.dump(f);
-                                                                                        this.el.clear();
-                                                                                        this.file = f;
+                                                                                        var iter = new Gtk.TreeIter();
+                                                                                        this.el.get_iter(iter, new Gtk.TreePath.from_string(this.activePath))
+                                                                                        this.el.set_value(iter, 0, [GObject.TYPE_STRING, this.nodeTitle(n)]);
+                                                                                        this.el.set_value(iter, 1, [GObject.TYPE_STRING, this.nodeTitle(n)]);
                                                                                         
-                                                                                        if (!f) {
-                                                                                            console.log('missing file');
+                                                                                        this.el.set_value(iter, 2, [GObject.TYPE_STRING, this.nodeToJSON(n)]);
+                                                                                    }
+                                                                                        //this.currentTree = this.toJS(false, true)[0];
+                                                                                    var d = new Date();
+                                                                                    this.file.items = this.toJS(false, false);
+                                                                                    print ("TO JS in " + ((new Date()) - d) + "ms");
+                                                                                  //  print("AFTER CHANGED");
+                                                                                    //console.dump(this.file.items);
+                                                                                    this.file.save();
+                                                                                    this.currentTree = this.file.items[0];
+                                                                                    //console.log(this.file.toSource());
+                                                                                    
+                                                                                    if (refresh) {
+                                                                                        print("REDNER BROWSER?!");
+                                                                                        this.get('/LeftTree').renderView();
+                                                                            
+                                                                                        var pm = this.get('/RightPalete.model');
+                                                                                        if (!this.get('/RightPalete').provider) {
+                                                                                            pm.load([]);
                                                                                             return;
                                                                                         }
                                                                                         
-                                                                                        // load the file if not loaded..
-                                                                                        if (f.items === false) {
-                                                                                            var _this = this;
-                                                                                            f.loadItems(function() {
-                                                                                                _this.loadFile(f);
-                                                                                            });
-                                                                                            return;
-                                                                                            
-                                                                                        }
-                                                                                        if (f.items.length && typeof(f.items[0]) == 'string') {
                                                                                         
-                                                                                            this.get('/RightEditor').el.show();
-                                                                                            this.get('/RightEditor.view').load( f.items[0]);
-                                                                                            return;
-                                                                                        }
-                                                                                        print("LOAD");
-                                                                                        //console.dump(f.items);
-                                                                                        this.load(f.items);
-                                                                                        this.get('/LeftTree.view').el.expand_all();
+                                                                                        pm.load( this.get('/RightPalete').provider.gatherList(this.listAllTypes()));
+                                                                                        //imports['Builder/RightBrowser.js'].renderJS(this.toJS());
+                                                                                    }
+                                                                                         
+                                                                            },
+                                                                            deleteSelected : function() {
+                                                                                this.get('/LeftTree.view').blockChanges = true;
+                                                                                var old_iter = new Gtk.TreeIter();
+                                                                                var s = this.get('/LeftTree.view').selection;
+                                                                                s.get_selected(this.el, old_iter);
+                                                                                var path = this.el.get_path(old_iter).to_string();
                                                                             
-                                                                                        if (!f.items.length) {
-                                                                                            // single item..
-                                                                                            
-                                                                                            this.get('/Window.leftvpaned').el.set_position(80);
-                                                                                            // select first...
-                                                                                            this.get('/LeftTree.view').el.set_cursor( 
-                                                                                                new  Gtk.TreePath.from_string('0'), null, false);
-                                                                                            
-                                                                                            
-                                                                                        } else {
-                                                                                              this.get('/Window.leftvpaned').el.set_position(200);
-                                                                                        }
-                                                                                        
-                                                                                        
-                                                                                        //print("hide right editior");
-                                                                                        this.get('/RightEditor').el.hide();
-                                                                                        //print("set current tree");
-                                                                                        this.currentTree = this.toJS(false, false)[0];
-                                                                                        //console.dump(this.currentTree);
-                                                                                        this.currentTree = this.currentTree || { items: [] };
-                                                                                        this.get('/LeftTree').renderView();
-                                                                                        //console.dump(this.map);
-                                                                                        //var RightPalete     = imports.Builder.RightPalete.RightPalete;
-                                                                                        var pm = this.get('/RightPalete.model');
-                                                                                        // set up provider..
+                                                                                this.activePath= false;      
+                                                                                s.unselect_all();
+                                                                            
+                                                                                this.activePath= false;      
+                                                                                 var iter = new Gtk.TreeIter();
+                                                                                this.el.get_iter_from_string(iter, path);
+                                                                                this.el.remove(iter);
+                                                                                
+                                                                                // rebuild treemap. -- depreciated.!!
+                                                                                this.map = {};
+                                                                                this.treemap = { };
+                                                                                //this.toJS(null, true) // does not do anything?
+                                                                                this.activePath= false;      
+                                                                                this.changed(false,true);
+                                                                                this.get('/LeftTree.view').blockChanges = false;
+                                                                            },
+                                                                            dropNode : function(target_data, node) {
+                                                                                     print("drop Node");
+                                                                                 // console.dump(node);
+                                                                              //    console.dump(target_data);
+                                                                                    var tp = target_data[0].length ? new  Gtk.TreePath.from_string( target_data[0] ) : false;
+                                                                                    
+                                                                                    print("add " + tp + "@" + target_data[1]  );
+                                                                                    var parent = tp;
+                                                                                    var after = false;
+                                                                                    if (tp && target_data[1]  < 2) { // before or after..
+                                                                                        var ar = target_data[0].split(':');
+                                                                                        ar.pop();
+                                                                                        parent  = new  Gtk.TreePath.from_string( ar.join(':') );
+                                                                                        after = tp;
+                                                                                    }
+                                                                                    var n_iter = new Gtk.TreeIter();
+                                                                                    var iter_par = new Gtk.TreeIter();
+                                                                                    var iter_after = after ? new Gtk.TreeIter() : false;
+                                                                                    
+                                                                                    
+                                                                                    
+                                                                                    if (parent !== false) {
+                                                                                        this.el.get_iter(iter_par, parent);
+                                                                                    } else {
+                                                                                        iter_par = null;
+                                                                                    }
+                                                                                    
+                                                                                    
+                                                                                    if (tp && after) {
+                                                                                        print(target_data[1]  > 0 ? 'insert_after' : 'insert_before');
+                                                                                        this.el.get_iter(iter_after, after);
+                                                                                        this.el[ target_data[1]  > 0 ? 'insert_after' : 'insert_before'](
+                                                                                                n_iter, iter_par, iter_after);
                                                                                         
-                                                                                        this.get('/RightPalete').provider = this.get('/LeftTree').getPaleteProvider();
+                                                                                    } else {
+                                                                                        this.el.append(n_iter, iter_par);
                                                                                         
-                                                                                        if (!this.get('/RightPalete').provider) {
-                                                                                            print ("********* PALETE PROVIDER MISSING?!!");
+                                                                                    }
+                                                                                    
+                                                                                    if (typeof(node) == 'string') {
+                                                                                        var ar = node.split('.');
+                                                                                        var xtype = ar.pop();
+                                                                                        
+                                                                                        node = {
+                                                                                            '|xns' : ar.join('.'),
+                                                                                            'xtype' : xtype
+                                                                                        };
+                                                                                        if (target_data.length == 3 && target_data[2].length) {
+                                                                                            node['*prop'] = target_data[2];
                                                                                         }
-                                                                                        this.get('/LeftTree').renderView();
+                                                                                        node = this.get('/DialogTemplateSelect').show(node);
                                                                                         
-                                                                                        pm.load( this.get('/LeftTree').getPaleteProvider().gatherList(this.listAllTypes()));
+                                                                                    }
+                                                                                    // work out what kind of packing to use..
+                                                                                    if (typeof(node.pack) == 'undefined'  && parent !== false) {
+                                                                                        var pal = this.get('/LeftTree').getPaleteProvider();
+                                                                                        if (pal.name == 'Gtk') {
+                                                                                            var pname = pal.guessName(this.singleNodeToJS(parent.to_string()));
+                                                                                            var cname = pal.guessName(node);
+                                                                                            node.pack = pal.getDefaultPack(pname, cname);
+                                                                                        }
                                                                                         
+                                                                                    }
+                                                                                    
+                                                                                    
+                                                                                    var xitems = [];
+                                                                                    if (node.items) {
+                                                                                        xitems = node.items;
+                                                                                        delete node.items;
+                                                                                    }
+                                                                            // load children - if it has any..
+                                                                            
+                                                                                    if (xitems) {
+                                                                                        this.load(xitems, n_iter);
+                                                                                        this.get('/LeftTree.view').el.expand_row(this.el.get_path(n_iter), true);
+                                                                                    }
+                                                                                    if (tp && (xitems || after)) {
+                                                                                        this.get('/LeftTree.view').el.expand_row(this.el.get_path(iter_par), true);
+                                                                                    }
+                                                                                    // wee need to get the empty proptypes from somewhere..
+                                                                                    
+                                                                                    //var olditer = this.activeIter;
+                                                                                    this.activePath = this.el.get_path(n_iter).to_string();
+                                                                            
+                                                                              // changed actually set's the node data..
+                                                                                    this.changed(node, true);
+                                                                                    
+                                                                                    
+                                                                                    
+                                                                                    this.get('/LeftTree.view').el.set_cursor(this.el.get_path(n_iter), null, false);
+                                                                                    
+                                                                                    //Builder.MidPropTree._model.load(node);
+                                                                                    //Builder.MidPropTree._win.hideWin();
+                                                                                    //Builder.LeftPanel._model.load( node);
+                                                                                    
                                                                                         
-                                                                                                
-                                                                                        this.get('/Window.view-notebook').el.set_current_page(
-                                                                                            this.get('/LeftTree.model').file.getType()== 'Roo' ? 0 : -1);
-                                                                                                
                                                                             },
                                                                             findDropNode : function(treepath_str, targets) {
                                                                             
@@ -722,150 +1020,21 @@ Window=new XObject({
                                                                                 return [];
                                                                                         
                                                                             },
-                                                                            dropNode : function(target_data, node) {
-                                                                              print("drop Node");
-                                                                                 console.dump(node);
-                                                                                 console.dump(target_data);
-                                                                                        var tp = target_data[0].length ? new  Gtk.TreePath.from_string( target_data[0] ) : false;
-                                                                                        
-                                                                                        print("add " + tp + "@" + target_data[1]  );
-                                                                                        var parent = tp;
-                                                                                        var after = false;
-                                                                                        if (tp && target_data[1]  < 2) { // before or after..
-                                                                                            var ar = target_data[0].split(':');
-                                                                                            ar.pop();
-                                                                                            parent  = new  Gtk.TreePath.from_string( ar.join(':') );
-                                                                                            after = tp;
-                                                                                        }
-                                                                                        var n_iter = new Gtk.TreeIter();
-                                                                                        var iter_par = new Gtk.TreeIter();
-                                                                                        var iter_after = after ? new Gtk.TreeIter() : false;
-                                                                                        
-                                                                                        
-                                                                                        
-                                                                                        if (parent !== false) {
-                                                                                            this.el.get_iter(iter_par, parent);
-                                                                                        } else {
-                                                                                            iter_par = null;
-                                                                                        }
-                                                                                        
-                                                                                        
-                                                                                        if (tp && after) {
-                                                                                            print(target_data[1]  > 0 ? 'insert_after' : 'insert_before');
-                                                                                            this.el.get_iter(iter_after, after);
-                                                                                            this.el[ target_data[1]  > 0 ? 'insert_after' : 'insert_before'](
-                                                                                                    n_iter, iter_par, iter_after);
-                                                                                            
-                                                                                        } else {
-                                                                                            this.el.append(n_iter, iter_par);
-                                                                                            
-                                                                                        }
-                                                                                        
-                                                                                        if (typeof(node) == 'string') {
-                                                                                            var ar = node.split('.');
-                                                                                            var xtype = ar.pop();
-                                                                                            
-                                                                                            node = {
-                                                                                                '|xns' : ar.join('.'),
-                                                                                                'xtype' : xtype
-                                                                                            };
-                                                                                            if (target_data.length == 3 && target_data[2].length) {
-                                                                                                node['*prop'] = target_data[2];
-                                                                                            }
-                                                                                            
-                                                                                        }
-                                                                                        // work out what kind of packing to use..
-                                                                                        if (typeof(node.pack) == 'undefined'  && parent !== false) {
-                                                                                            var pal = this.get('/LeftTree').getPaleteProvider();
-                                                                                            
-                                                                                            var pname = pal.guessName(this.singleNodeToJS(parent.to_string()));
-                                                                                            print ("PNAME : "  + pname);
-                                                                                            var cname = pal.guessName(node);
-                                                                                            print ("CNAME : "  + cname);
-                                                                                            node.pack = pal.getDefaultPack(pname, cname);
-                                                                                            
-                                                                                            
-                                                                                        }
-                                                                                        
-                                                                                        
-                                                                                        var xitems = [];
-                                                                                        if (node.items) {
-                                                                                            xitems = node.items;
-                                                                                            delete node.items;
-                                                                                        }
-                                                                            // load children - if it has any..
-                                                                            
-                                                                                        if (xitems) {
-                                                                                            this.load(xitems, n_iter);
-                                                                                        }
-                                                                                        if (tp && (xitems || after)) {
-                                                                                            this.get('/LeftTree.view').el.expand_row(this.el.get_path(iter_par), true);
-                                                                                        }
-                                                                                        // wee need to get the empty proptypes from somewhere..
-                                                                                        
-                                                                                        //var olditer = this.activeIter;
-                                                                                        this.activePath = this.el.get_path(n_iter).to_string();
-                                                                            
-                                                                                 // changed actually set's the node data..
-                                                                                        this.changed(node, true);
-                                                                                        
-                                                                                        
-                                                                                        
-                                                                                        this.get('/LeftTree.view').el.set_cursor(this.el.get_path(n_iter), null, false);
-                                                                                        
-                                                                                        //Builder.MidPropTree._model.load(node);
-                                                                                        //Builder.MidPropTree._win.hideWin();
-                                                                                        //Builder.LeftPanel._model.load( node);
-                                                                                        
-                                                                                        
-                                                                            },
-                                                                            moveNode : function(target_data, action) {
-                                                                                 //print("MOVE NODE");
-                                                                                       // console.dump(target_data);
-                                                                                        var old_iter = new Gtk.TreeIter();
-                                                                                        var s = this.get('/LeftTree.view').selection;
-                                                                                        s.get_selected(this.el, old_iter);
-                                                                                        var node = this.nodeToJS(old_iter,false);
-                                                                                        //console.dump(node);
-                                                                                        
-                                                                                        
-                                                                                        // needs to drop first, otherwise the target_data 
-                                                                                        // treepath will be invalid.
-                                                                                        
-                                                                                        this.dropNode(target_data, node);
-                                                                                 if (action & Gdk.DragAction.MOVE) {
-                                                                                                  //          print("REMOVING OLD NODE");
-                                                                                                            this.el.remove(old_iter);
-                                                                                                            
-                                                                                        }
-                                                                                        
-                                                                                        this.activePath= false;
-                                                                                        this.changed(false,true);
+                                                                            getIterValue : function (iter, col) {
+                                                                                var gval = new GObject.Value('');
+                                                                                this.el.get_value(iter, col ,gval);
+                                                                                return  gval.value;
+                                                                                
+                                                                                
                                                                             },
-                                                                            deleteSelected : function() {
-                                                                                        this.get('/LeftTree.view').blockChanges = true;
-                                                                                        var old_iter = new Gtk.TreeIter();
-                                                                                        var s = this.get('/LeftTree.view').selection;
-                                                                                        s.get_selected(this.el, old_iter);
-                                                                                        var path = this.el.get_path(old_iter).to_string();
-                                                                            
-                                                                                        this.activePath= false;      
-                                                                                        s.unselect_all();
-                                                                            
-                                                                                        this.activePath= false;      
-                                                                                   var iter = new Gtk.TreeIter();
-                                                                                        this.el.get_iter_from_string(iter, path);
-                                                                                        this.el.remove(iter);
-                                                                                        
-                                                                                        // rebuild treemap. -- depreciated.!!
-                                                                                        this.map = {};
-                                                                                        this.treemap = { };
-                                                                                        //this.toJS(null, true) // does not do anything?
-                                                                                    this.activePath= false;      
-                                                                                        this.changed(false,true);
-                                                                                      this.get('/LeftTree.view').blockChanges = false;
+                                                                            init : function() {
+                                                                                XObject.prototype.init.call(this);
+                                                                             this.el.set_column_types ( 3, [
+                                                                                        GObject.TYPE_STRING, // title 
+                                                                                        GObject.TYPE_STRING, // tip
+                                                                                        GObject.TYPE_STRING // source..
+                                                                                        ] );
                                                                             },
-                                                                            currentTree : false,
                                                                             listAllTypes : function() {
                                                                                 var s = this.get('/LeftTree.view').selection;
                                                                                 print ("LIST ALL TYPES: " + s.count_selected_rows() );
@@ -895,7 +1064,9 @@ Window=new XObject({
                                                                                 {
                                                                                     li.forEach(function(el) {
                                                                                         // this is specific to roo!!!?
-                                                                                        
+                                                                                        if (!el) { // skip empty?
+                                                                                            return;
+                                                                                        }
                                                                                         var fullpath =  _this.file.guessName(el);
                                                                                         if (fullpath.length && ret.indexOf(fullpath) < 0) {
                                                                                             ret.push(fullpath);
@@ -923,94 +1094,163 @@ Window=new XObject({
                                                                                 return ret;
                                                                                                         
                                                                             },
-                                                                            singleNodeToJS : function (treepath) 
+                                                                            load : function(tr,iter)
                                                                                     {
-                                                                                        var iter = new Gtk.TreeIter(); 
-                                                                                        if (!this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath))) {
-                                                                                            return false;
-                                                                                        }
-                                                                                        
-                                                                                        var iv = this.getIterValue(iter, 2);
-                                                                                       
-                                                                                        return JSON.parse(iv);
-                                                                                        
+                                                                                        var citer = new Gtk.TreeIter();
+                                                                                        //this.insert(citer,iter,0);
+                                                                                        for(var i =0 ; i < tr.length; i++) {
+                                                                                            if (iter) {
+                                                                                                this.el.insert(citer,iter,-1);
+                                                                                            } else {
+                                                                                                this.el.append(citer);
+                                                                                            }
+                                                                                            
+                                                                                            this.el.set_value(citer, 0, [GObject.TYPE_STRING, this.nodeTitle(tr[i]) ]);
+                                                                                            this.el.set_value(citer, 1, [GObject.TYPE_STRING, this.nodeTip(tr[i]) ]);
+                                                                                            this.el.set_value(citer, 2, [GObject.TYPE_STRING, this.nodeToJSON(tr[i])]);
+                                                                                            if (tr[i].items && tr[i].items.length) {
+                                                                                                this.load(tr[i].items, citer);
+                                                                                            }
+                                                                                        }     
                                                                                     },
-                                                                            nodeToJS : function (iter, with_id) 
-                                                                            {
-                                                                                var par = new Gtk.TreeIter(); 
-                                                                                var iv = this.getIterValue(iter, 2);
-                                                                               // print("IV" + iv);
-                                                                                var k = JSON.parse(iv);
-                                                                                if (k.json && !this.el.iter_parent( par, iter  )) {
-                                                                                    delete k.json;
-                                                                                }
-                                                                                
-                                                                                if (with_id) {
-                                                                                    var treepath_str = this.el.get_path(iter).to_string();
-                                                                                    // not sure how we can handle mixed id stuff..
-                                                                                    if (typeof(k.id) == 'undefined')  {
-                                                                                        k.id =  'builder-'+ treepath_str ;
-                                                                                    }
-                                                                                    
-                                                                                    // needed??
-                                                                                    this.treemap[  treepath_str ] = k;
-                                                                                    k.xtreepath = treepath_str ;
-                                                                                    
-                                                                                }
-                                                                                if (this.el.iter_has_child(iter)) {
-                                                                                    citer = new Gtk.TreeIter();
-                                                                                    this.el.iter_children(citer, iter);
-                                                                                    k.items = this.toJS(citer,with_id);
-                                                                                }
-                                                                                return k;
-                                                                            },
-                                                                            toJS : function(iter, with_id)
-                                                                                    {
-                                                                                        //Seed.print("WITHID: "+ with_id);
+                                                                            loadFile : function(f) {
+                                                                                //console.dump(f);
+                                                                                        this.el.clear();
+                                                                                        this.file = f;
                                                                                         
-                                                                                        var first = false;
-                                                                                        if (!iter) {
-                                                                                            
-                                                                                            this.treemap = { }; 
+                                                                                        if (!f) {
+                                                                                            console.log('missing file');
+                                                                                            return;
+                                                                                        }
+                                                                                        
+                                                                                        // load the file if not loaded..
+                                                                                        if (f.items === false) {
+                                                                                            var _this = this;
+                                                                                            f.loadItems(function() {
+                                                                                                _this.loadFile(f);
+                                                                                            });
+                                                                                            return;
                                                                                             
-                                                                                            iter = new Gtk.TreeIter();
-                                                                                            if (!this.el.get_iter_first(iter)) {
-                                                                                                return [];
-                                                                                            }
-                                                                                            first = true;
-                                                                                        } 
+                                                                                        }
+                                                                                        this.get('/Window').setTitle(f.project.getName() + ' - ' + f.name);
+                                                                                        
+                                                                                        if (f.items.length && typeof(f.items[0]) == 'string') {
                                                                                         
-                                                                                        var ar = [];
-                                                                                           
-                                                                                        while (true) {
+                                                                                            //this.get('/RightEditor').el.show();
+                                                                                            //this.get('/RightEditor.view').load( f.items[0]);
+                                                                                            return;
+                                                                                        }
+                                                                                        print("LOAD");
+                                                                                        print(JSON.stringify(f.items, null,4));
+                                                                                        //console.dump(f.items);
+                                                                                        this.load(f.items);
+                                                                                        this.get('/LeftTree.view').el.expand_all();
+                                                                            
+                                                                                        if (!f.items.length) {
+                                                                                            // single item..
                                                                                             
-                                                                                            var k = this.nodeToJS(iter, with_id); 
-                                                                                            ar.push(k);
+                                                                                            this.get('/Window.leftvpaned').el.set_position(80);
+                                                                                            // select first...
+                                                                                            this.get('/LeftTree.view').el.set_cursor( 
+                                                                                                new  Gtk.TreePath.from_string('0'), null, false);
                                                                                             
                                                                                             
-                                                                                            if (!this.el.iter_next(iter)) {
-                                                                                                break;
-                                                                                            }
+                                                                                        } else {
+                                                                                              this.get('/Window.leftvpaned').el.set_position(200);
                                                                                         }
                                                                                         
-                                                                                        return ar;
-                                                                                        // convert the list into a json string..
-                                                                                    
                                                                                         
-                                                                                    },
-                                                                            getIterValue : function (iter, col) {
-                                                                                var gval = new GObject.Value('');
-                                                                                this.el.get_value(iter, col ,gval);
-                                                                                return  gval.value;
+                                                                                        //print("hide right editior");
+                                                                                        //this.get('/RightEditor').el.hide();
+                                                                                        this.get('/Editor').el.hide();
+                                                                                        //print("set current tree");
+                                                                                        this.currentTree = this.toJS(false, false)[0];
+                                                                                        //console.dump(this.currentTree);
+                                                                                        this.currentTree = this.currentTree || { items: [] };
+                                                                                        this.get('/LeftTree').renderView();
+                                                                                        //console.dump(this.map);
+                                                                                        //var RightPalete     = imports.Builder.RightPalete.RightPalete;
+                                                                                        var pm = this.get('/RightPalete.model');
+                                                                                        // set up provider..
+                                                                                        
+                                                                                        this.get('/RightPalete').provider = this.get('/LeftTree').getPaleteProvider();
+                                                                                        
+                                                                                        if (!this.get('/RightPalete').provider) {
+                                                                                            print ("********* PALETE PROVIDER MISSING?!!");
+                                                                                        }
+                                                                                        this.get('/LeftTree').renderView();
+                                                                                        
+                                                                                        pm.load( this.get('/LeftTree').getPaleteProvider().gatherList(this.listAllTypes()));
+                                                                                        
+                                                                                        
+                                                                                                
+                                                                                        this.get('/Window.view-notebook').el.set_current_page(
+                                                                                            this.get('/LeftTree.model').file.getType()== 'Roo' ? 0 : -1);
+                                                                                                
+                                                                            },
+                                                                            moveNode : function(target_data, action) {
+                                                                                 //print("MOVE NODE");
+                                                                                       // console.dump(target_data);
+                                                                                        var old_iter = new Gtk.TreeIter();
+                                                                                        var s = this.get('/LeftTree.view').selection;
+                                                                                        s.get_selected(this.el, old_iter);
+                                                                                        var node = this.nodeToJS(old_iter,false);
+                                                                                        //console.dump(node);
+                                                                                        
+                                                                                        
+                                                                                        // needs to drop first, otherwise the target_data 
+                                                                                        // treepath will be invalid.
+                                                                                        
+                                                                                        this.dropNode(target_data, node);
+                                                                                 if (action & Gdk.DragAction.MOVE) {
+                                                                                                  //          print("REMOVING OLD NODE");
+                                                                                                            this.el.remove(old_iter);
+                                                                                                            
+                                                                                        }
+                                                                                        
+                                                                                        this.activePath= false;
+                                                                                        this.changed(false,true);
+                                                                            },
+                                                                            nodeTip : function(c) {
+                                                                                var ret = this.nodeTitle(c,true);
+                                                                                var funcs = '';
+                                                                            
                                                                                 
+                                                                                for( var i in c) {
+                                                                            
+                                                                                    if (!i.length || i[0] != '|') {
+                                                                                        continue;
+                                                                                    }
+                                                                                    if (i == '|init') { 
+                                                                                        continue;
+                                                                                    }
+                                                                                    if (typeof(c[i]) != 'string') {
+                                                                                       continue;
+                                                                                    }
+                                                                                    //print("prop : " + i + ':' + c[i]);
+                                                                                    if (!c[i].match(new RegExp('function'))) {
+                                                                                        continue;
+                                                                                    }
+                                                                                    funcs += "\n<b>" + i.substring(1) + '</b> : ' + c[i].split(/\n/).shift();
+                                                                                        
+                                                                                }
+                                                                                if (funcs.length) {
+                                                                                    ret+="\n\nMethods:" + funcs;
+                                                                                }
+                                                                                return ret;
                                                                                 
                                                                             },
-                                                                            nodeTitle : function(c) {
+                                                                            nodeTitle : function(c, renderfull) {
                                                                                   var txt = [];
                                                                                 c = c || {};
                                                                                 var sr = (typeof(c['+buildershow']) != 'undefined') &&  !c['+buildershow'] ? true : false;
                                                                                 if (sr) txt.push('<s>');
                                                                                 if (typeof(c['*prop']) != 'undefined')   { txt.push(c['*prop']+ ':'); }
+                                                                                
+                                                                                if (renderfull && c['|xns']) {
+                                                                                    txt.push(c['|xns']);
+                                                                                }
+                                                                                
                                                                                 if (c.xtype)      { txt.push(c.xtype); }
                                                                                 if (c.id)      { txt.push('<b>[id=' + c.id + ']</b>'); }
                                                                                 if (c.fieldLabel) { txt.push('[' + c.fieldLabel + ']'); }
@@ -1035,35 +1275,110 @@ Window=new XObject({
                                                                                 if (sr) txt.push('</s>');
                                                                                 return (txt.length == 0 ? "Element" : txt.join(" "));
                                                                             },
-                                                                            nodeToJSON : function(c) {
-                                                                                var o  = {}
-                                                                                for (var i in c) {
-                                                                                    if (i == 'items') {
-                                                                                         continue;
+                                                                            nodeToJS : function (treepath, with_id) 
+                                                                            {
+                                                                                
+                                                                                var iter = treepath;  // API used to be iter here..
+                                                                                if (typeof(iter) == 'string') {
+                                                                                    iter = new Gtk.TreeIter(); 
+                                                                                    if (!this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath))) {
+                                                                                        return false;
                                                                                     }
-                                                                                    o[i] = c[i];
+                                                                                } 
+                                                                                var par = new Gtk.TreeIter(); 
+                                                                                var iv = this.getIterValue(iter, 2);
+                                                                               // print("IV" + iv);
+                                                                                var k = JSON.parse(iv);
+                                                                                if (k.json && !this.el.iter_parent( par, iter  )) {
+                                                                                    delete k.json;
                                                                                 }
-                                                                                return JSON.stringify(o);
-                                                                            },
-                                                                            load : function(tr,iter)
-                                                                                    {
-                                                                                        var citer = new Gtk.TreeIter();
-                                                                                        //this.insert(citer,iter,0);
-                                                                                        for(var i =0 ; i < tr.length; i++) {
-                                                                                            if (iter) {
-                                                                                                this.el.insert(citer,iter,-1);
-                                                                                            } else {
-                                                                                                this.el.append(citer);
-                                                                                            }
-                                                                                            
-                                                                                            this.el.set_value(citer, 0, [GObject.TYPE_STRING, this.nodeTitle(tr[i]) ]);
-                                                                                            this.el.set_value(citer, 1, [GObject.TYPE_STRING, this.nodeTitle(tr[i]) ]);
-                                                                                            this.el.set_value(citer, 2, [GObject.TYPE_STRING, this.nodeToJSON(tr[i])]);
-                                                                                            if (tr[i].items && tr[i].items.length) {
-                                                                                                this.load(tr[i].items, citer);
-                                                                                            }
-                                                                                        }     
+                                                                                
+                                                                                if (with_id) {
+                                                                                    var treepath_str = this.el.get_path(iter).to_string();
+                                                                                    // not sure how we can handle mixed id stuff..
+                                                                                    if (typeof(k.id) == 'undefined')  {
+                                                                                        k.id =  'builder-'+ treepath_str ;
+                                                                                    }
+                                                                                    
+                                                                                    // needed??
+                                                                                    this.treemap[  treepath_str ] = k;
+                                                                                    k.xtreepath = treepath_str ;
+                                                                                    
+                                                                                }
+                                                                                if (this.el.iter_has_child(iter)) {
+                                                                                    citer = new Gtk.TreeIter();
+                                                                                    this.el.iter_children(citer, iter);
+                                                                                    k.items = this.toJS(citer,with_id);
+                                                                                }
+                                                                                return k;
+                                                                            },
+                                                                            nodeToJSON : function(c) {
+                                                                                var o  = {}
+                                                                                for (var i in c) {
+                                                                                    if (i == 'items') {
+                                                                                         continue;
+                                                                                    }
+                                                                                    o[i] = c[i];
+                                                                                }
+                                                                                return JSON.stringify(o);
+                                                                            },
+                                                                            singleNodeToJS : function (treepath) 
+                                                                                    {
+                                                                                        var iter = new Gtk.TreeIter(); 
+                                                                                        if (!this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath))) {
+                                                                                            return false;
+                                                                                        }
+                                                                                        
+                                                                                        var iv = this.getIterValue(iter, 2);
+                                                                                       
+                                                                                        return JSON.parse(iv);
+                                                                                        
+                                                                                    },
+                                                                            toJS : function(treepath, with_id)
+                                                                            {
+                                                                                //Seed.print("WITHID: "+ with_id);
+                                                                                var iter = treepath;  // API used to be iter here..
+                                                                                if (typeof(iter) == 'string') {
+                                                                                    iter = new Gtk.TreeIter(); 
+                                                                                    if (!this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath))) {
+                                                                                        return false;
+                                                                                    }
+                                                                                } 
+                                                                                var first = false;
+                                                                                if (!iter) {
+                                                                                    
+                                                                                    this.treemap = { }; 
+                                                                                    
+                                                                                    iter = new Gtk.TreeIter();
+                                                                                    if (!this.el.get_iter_first(iter)) {
+                                                                                        return [];
+                                                                                    }
+                                                                                    first = true;
+                                                                                } 
+                                                                                
+                                                                                var ar = [];
+                                                                                   
+                                                                                while (true) {
+                                                                                    
+                                                                                    var k = this.nodeToJS(iter, with_id); 
+                                                                                    ar.push(k);
+                                                                                    
+                                                                                    
+                                                                                    if (!this.el.iter_next(iter)) {
+                                                                                        break;
                                                                                     }
+                                                                                }
+                                                                                
+                                                                                if (treepath === false) {
+                                                                                    //dupe!!!
+                                                                                    return JSON.parse(JSON.stringify(ar));
+                                                                                }
+                                                                                
+                                                                                return ar;
+                                                                                // convert the list into a json string..
+                                                                            
+                                                                                
+                                                                            }
                                                                         },
                                                                         {
                                                                             xtype: Gtk.TreeViewColumn,
@@ -1091,11 +1406,30 @@ Window=new XObject({
                                                                             pack : "add",
                                                                             label : "Delete Element",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                      this.get('/LeftTree.model').deleteSelected();
                                                                                 }
                                                                             }
+                                                                        },
+                                                                        {
+                                                                            xtype: Gtk.MenuItem,
+                                                                            listeners : {
+                                                                                activate : function (self) {
+                                                                                
+                                                                                     var tree = this.get('/LeftTree');
+                                                                                      var model = this.get('/LeftTree.model');
+                                                                                     var el = tree.getActivePath();
+                                                                                     print(el);
+                                                                                     var js = model.toJS(el, false);
+                                                                                    // print(JSON.stringify(js[0], null,4));
+                                                                                     this.get('/DialogSaveTemplate').show(JSON.stringify(js[0], null,4));
+                                                                                     
+                                                                                    
+                                                                                }
+                                                                            },
+                                                                            label : "Save as Template",
+                                                                            pack : "add"
                                                                         }
                                                                     ]
                                                                 }
@@ -1112,7 +1446,7 @@ Window=new XObject({
                                                                  return this.project;
                                                             },
                                                             listeners : {
-                                                                "leave_notify_event":function (self, event) {
+                                                                leave_notify_event : function (self, event) {
                                                                     return false;
                                                                 }
                                                             },
@@ -1134,6 +1468,9 @@ Window=new XObject({
                                                                                     return false;
                                                                                 }
                                                                                 var data = imports.Builder.Provider.ProjectManager.ProjectManager.projects;
+                                                                                if (typeof(data[ix]) == 'undefined') {
+                                                                               return false; 
+                                                                                }
                                                                                 return data[ix].fn;
                                                                             },
                                                                             setValue : function(fn)
@@ -1149,7 +1486,7 @@ Window=new XObject({
                                                                                 });
                                                                             },
                                                                             listeners : {
-                                                                                "changed":function (self) {
+                                                                                changed : function (self) {
                                                                                        var fn = this.getValue();
                                                                                        var pm  = imports.Builder.Provider.ProjectManager.ProjectManager;
                                                                                        this.get('/LeftProjectTree.model').loadProject(pm.getByFn(fn))
@@ -1172,7 +1509,13 @@ Window=new XObject({
                                                                                             
                                                                                             
                                                                                         ] );
-                                                                                            
+                                                                                       var pm = imports.Builder.Provider.ProjectManager.ProjectManager;
+                                                                                       var _this = this;
+                                                                                       pm.on('changed', function() {
+                                                                                           print("caught changed hook on project manager - reloading data");
+                                                                                       _this.loadData(pm.projects);
+                                                                                    
+                                                                                       });
                                                                                     },
                                                                                     loadData : function(data) {
                                                                                          var ov = this.get('/LeftProjectTree.combo').getValue();
@@ -1208,21 +1551,8 @@ Window=new XObject({
                                                                     items : [
                                                                         {
                                                                             xtype: Gtk.TreeView,
-                                                                            headers_visible : false,
-                                                                            enable_tree_lines : true,
-                                                                            tooltip_column : 1,
-                                                                            init : function() {
-                                                                                XObject.prototype.init.call(this);
-                                                                            var description = new Pango.FontDescription.c_new();
-                                                                                                        description.set_size(8000);
-                                                                                                        this.el.modify_font(description);
-                                                                                                        
-                                                                                                        this.selection = this.el.get_selection();
-                                                                                                        this.selection.set_mode( Gtk.SelectionMode.SINGLE);
-                                                                            },
-                                                                            id : "view",
                                                                             listeners : {
-                                                                                "cursor_changed":function (self) {
+                                                                                cursor_changed : function (self) {
                                                                                        var iter = new Gtk.TreeIter();
                                                                                                                 
                                                                                         if (this.selection.count_selected_rows() < 1) {
@@ -1242,14 +1572,15 @@ Window=new XObject({
                                                                                         
                                                                                         var file = this.get('/LeftProjectTree').project.getById(value.value);
                                                                                         
-                                                                                        
+                                                                                        file.items = false;
                                                                                         console.log(file);
                                                                                         
                                                                                 
                                                                                 
                                                                                         var nb = this.get('/LeftTopPanel.expander');
                                                                                         nb.el.expanded = false;
-                                                                                        nb.listeners.activate.call(nb);
+                                                                                        nb.onCollapse();
+                                                                                        //nb.listeners.activate.call(nb);
                                                                                         //_expander.el.set_expanded(false);
                                                                                 
                                                                                         var ltm = this.get('/LeftTree.model');
@@ -1258,6 +1589,19 @@ Window=new XObject({
                                                                                         return true;
                                                                                 }
                                                                             },
+                                                                            id : "view",
+                                                                            tooltip_column : 1,
+                                                                            enable_tree_lines : true,
+                                                                            headers_visible : false,
+                                                                            init : function() {
+                                                                                XObject.prototype.init.call(this);
+                                                                            var description = new Pango.FontDescription.c_new();
+                                                                                                        description.set_size(8000);
+                                                                                                        this.el.modify_font(description);
+                                                                                                        
+                                                                                                        this.selection = this.el.get_selection();
+                                                                                                        this.selection.set_mode( Gtk.SelectionMode.SINGLE);
+                                                                            },
                                                                             items : [
                                                                                 {
                                                                                     xtype: Gtk.TreeStore,
@@ -1273,16 +1617,18 @@ Window=new XObject({
                                                                                        
                                                                                     },
                                                                                     loadProject : function(pr) {
+                                                                                    print("LOAD PROJECT");
                                                                                                this.el.clear();
                                                                                                 if (!pr) {
                                                                                                     return;
                                                                                                 }
+                                                                                                
                                                                                                 this.get('/LeftProjectTree').project = pr;
                                                                                                 this.load(pr.toTree());
                                                                                                 this.get('/LeftProjectTree.view').el.expand_all();
                                                                                     },
                                                                                     load : function(tr,iter) {
-                                                                                        console.dump(tr);
+                                                                                      //  console.dump(tr);
                                                                                                 console.log('Project tree load: ' + tr.length);
                                                                                                 var citer = new Gtk.TreeIter();
                                                                                                 //this.insert(citer,iter,0);
@@ -1335,9 +1681,6 @@ Window=new XObject({
                                         },
                                         {
                                             xtype: Gtk.VBox,
-                                            listeners : {
-                                                
-                                            },
                                             items : [
                                                 {
                                                     xtype: Gtk.HBox,
@@ -1348,7 +1691,7 @@ Window=new XObject({
                                                             xtype: Gtk.Button,
                                                             pack : "add",
                                                             listeners : {
-                                                                "button_press_event":function (self, event) {
+                                                                button_press_event : function (self, event) {
                                                                     this.get('/MidPropTree.model').showData('props');
                                                                     return false;
                                                                 }
@@ -1377,7 +1720,7 @@ Window=new XObject({
                                                             xtype: Gtk.Button,
                                                             pack : "add",
                                                             listeners : {
-                                                                "button_press_event":function (self, event) {
+                                                                button_press_event : function (self, event) {
                                                                     this.get('/MidPropTree.model').showData('events');
                                                                     return false;
                                                                 }
@@ -1406,7 +1749,7 @@ Window=new XObject({
                                                             xtype: Gtk.Button,
                                                             pack : "add",
                                                             listeners : {
-                                                                "button_press_event":function (self, ev) {
+                                                                button_press_event : function (self, ev) {
                                                                        var p = this.get('/AddPropertyPopup');
                                                                        if (!p.el) {
                                                                                p.init();
@@ -1446,7 +1789,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Using this.get('*someid') will find any id in an application.",
                                                                             label : "ID",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                         key : 'id', 
@@ -1464,7 +1807,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Add what type of packing is to be used",
                                                                             label : "PACK",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                         key : 'pack', 
@@ -1481,7 +1824,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Override the init method",
                                                                             label : "INIT",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                        key : '|init', 
@@ -1502,7 +1845,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Add a user defined string property",
                                                                             label : "String",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                                  key : '', 
@@ -1519,7 +1862,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Add a user defined number property",
                                                                             label : "Number",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                                  key : '', 
@@ -1536,7 +1879,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Add a user defined boolean property",
                                                                             label : "Boolean",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                                  key : '', 
@@ -1557,7 +1900,7 @@ Window=new XObject({
                                                                             tooltip_markup : "Add a user function boolean property",
                                                                             label : "Function",
                                                                             listeners : {
-                                                                                "activate":function (self) {
+                                                                                activate : function (self) {
                                                                                 
                                                                                     this.get('/LeftPanel.model').add( {
                                                                                            key : '|', 
@@ -1576,21 +1919,106 @@ Window=new XObject({
                                                 },
                                                 {
                                                     xtype: Gtk.ScrolledWindow,
+                                                    editing : false,
                                                     id : "LeftPanel",
                                                     pack : "add",
-                                                    shadow_type : Gtk.ShadowType.IN,
-                                                    editing : false,
                                                     init : function() {
                                                         XObject.prototype.init.call(this);
                                                        this.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
                                                     },
+                                                    shadow_type : Gtk.ShadowType.IN,
                                                     items : [
                                                         {
                                                             xtype: Gtk.TreeView,
+                                                            listeners : {
+                                                                button_press_event : function (self, ev) {
+                                                                
+                                                                    
+                                                                    var res = { }; 
+                                                                    
+                                                                    if (!this.el.get_path_at_pos(ev.button.x,ev.button.y, res)) {
+                                                                        return false; //not on a element.
+                                                                    }
+                                                                    
+                                                                     // right click.
+                                                                     if (ev.type == Gdk.EventType.BUTTON_PRESS  && ev.button.button == 3) {    
+                                                                        // show popup!.   
+                                                                        if (res.column.title == 'value' && this.get('/LeftPanel').editing) {
+                                                                            return false;
+                                                                        }
+                                                                        //if (! this.get('/LeftPanelPopup')LeftPanelPopup.el) LeftPanelPopup.init();
+                                                                        var p = this.get('/LeftPanelPopup');
+                                                                        if (!p.el) {
+                                                                            p.init();
+                                                                        }
+                                                                
+                                                                        p.el.set_screen(Gdk.Screen.get_default());
+                                                                        p.el.show_all();
+                                                                        p.el.popup(null, null, null, null, 3, ev.button.time);
+                                                                        //Seed.print("click:" + res.column.title);
+                                                                        
+                                                                        
+                                                                        return false;
+                                                                    }
+                                                                    
+                                                                     
+                                                                    if (res.column.title != 'value') {
+                                                                          //  XObject.error("column is not value?");
+                                                                        return false; // ignore.. - key click.. ??? should we do this??
+                                                                    }
+                                                                    
+                                                                    // currently editing???
+                                                                //    if (  this.activePath) {
+                                                                        
+                                                                     //   this.activePath = false;
+                                                                       // stop editing!!!!
+                                                                        if (this.get('/Editor').dirty) {
+                                                                            //if (!this.get('/Editor.buffer').checkSyntax()) {
+                                                                            //   this.get('/StandardErrorDialog').show("Fix errors in code and save.."); 
+                                                                            //   return true;
+                                                                            //    // error Dialog
+                                                                            //}
+                                                                            if (!this.get('/Editor.view').save()) {
+                                                                                return true;
+                                                                            }
+                                                                        }   
+                                                                        this.get('/LeftPanel').editableColumn.items[0].el.stop_editing();
+                                                                        this.get('/LeftPanel').editing = false;
+                                                                    
+                                                                    //    XObject.error("Currently editing?");
+                                                                     //   return false;
+                                                                   // }
+                                                                    
+                                                                    var renderer = this.get('/LeftPanel').editableColumn.items[0].el; // set has_entry..
+                                                                    
+                                                                    var type = this.get('/LeftPanel.model').getType(res.path.to_string());
+                                                                        
+                                                                    // get options for this type -- this is to support option lists etc..
+                                                                    var provider = this.get('/LeftTree').getPaleteProvider();
+                                                                    var opts = provider.findOptions(type);
+                                                                    
+                                                                    if (opts === false) {
+                                                                        // it's text etnry
+                                                                         this.get('/LeftPanel').editableColumn.setOptions([]);
+                                                                        renderer.has_entry = true;
+                                                                    } else {
+                                                                         this.get('/LeftPanel').editableColumn.setOptions(opts);
+                                                                        renderer.has_entry = false;
+                                                                    }
+                                                                    this.get('/LeftPanel.model').startEditing(res.path.to_string(), 1);
+                                                                        
+                                                                   //Seed.print("click" + ev.type);
+                                                                    //console.dump(res);
+                                                                    return false;
+                                                                
+                                                                              
+                                                                   
+                                                                }
+                                                            },
                                                             id : "view",
-                                                            tooltip_column : 1,
-                                                            headers_visible : false,
+                                                            tooltip_column : 5,
                                                             enable_tree_lines : true,
+                                                            headers_visible : false,
                                                             init : function() {
                                                                  XObject.prototype.init.call(this); 
                                                                                    
@@ -1602,136 +2030,15 @@ Window=new XObject({
                                                                                 description.set_size(8000);
                                                                                 this.el.modify_font(description);
                                                             },
-                                                            listeners : {
-                                                                "button_press_event":function (self, ev) {
-                                                                    
-                                                                                
-                                                                                var res = { }; 
-                                                                                if (!this.el.get_path_at_pos(ev.button.x,ev.button.y, res)) {
-                                                                                    return false; //not on a element.
-                                                                                }
-                                                                                
-                                                                                
-                                                                                if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button.button != 3) {
-                                                                                    
-                                                                                    if (res.column.title != 'value') {
-                                                                                        return false; // ignore..
-                                                                                    }
-                                                                                    if (  this.get('/LeftPanel').editing) {
-                                                                                        return false;
-                                                                                    }
-                                                                                    var renderer = this.get('/LeftPanel').editableColumn.items[0].el; // set has_entry..
-                                                                                    this.get('/LeftPanel').editableColumn.items[0].el.stop_editing();
-                                                                                    var type = this.get('/LeftPanel.model').getType(res.path.to_string());
-                                                                                    
-                                                                                     
-                                                                
-                                                                                    var provider = this.get('/LeftTree').getPaleteProvider();
-                                                                                    
-                                                                                    var opts = provider.findOptions(type);
-                                                                                    
-                                                                                    if (opts === false) {
-                                                                                         this.get('/LeftPanel').editableColumn.setOptions([]);
-                                                                                        renderer.has_entry = true;
-                                                                                    } else {
-                                                                                        LeftPanel.editableColumn.setOptions(opts);
-                                                                                        renderer.has_entry = false;
-                                                                                    }
-                                                                                    
-                                                                                    
-                                                                                   //Seed.print("click" + ev.type);
-                                                                                    //console.dump(res);
-                                                                                    return false;
-                                                                                }
-                                                                              
-                                                                            
-                                                                               
-                                                                                if (res.column.title == 'value') {
-                                                                                    return false;
-                                                                                }
-                                                                                //if (! this.get('/LeftPanelPopup')LeftPanelPopup.el) LeftPanelPopup.init();
-                                                                               var p = this.get('/LeftPanelPopup');
-                                                                               if (!p.el) {
-                                                                                       p.init();
-                                                                               }
-                                                                
-                                                                                p.el.set_screen(Gdk.Screen.get_default());
-                                                                                p.el.show_all();
-                                                                                p.el.popup(null, null, null, null, 3, ev.button.time);
-                                                                                //Seed.print("click:" + res.column.title);
-                                                                                
-                                                                                
-                                                                                return false;
-                                                                }
-                                                            },
                                                             items : [
                                                                 {
                                                                     xtype: Gtk.TreeStore,
-                                                                    pack : "set_model",
+                                                                    activePath : false,
                                                                     id : "model",
-                                                                    init : function() {
-                                                                        XObject.prototype.init.call(this);
-                                                                    this.el.set_column_types ( 5, [
-                                                                                                    GObject.TYPE_STRING,  // 0 real key
-                                                                                                    GObject.TYPE_STRING, // 1 real value 
-                                                                                                     GObject.TYPE_STRING,  // 2 visable key
-                                                                                                     GObject.TYPE_STRING, // 3 visable value
-                                                                                                     GObject.TYPE_STRING, // 4 need to store type of!!!
-                                                                                                  
-                                                                                                ]);
-                                                                    },
-                                                                    toShort : function(str) {
-                                                                        var a = typeof(str) == 'string' ? str.split("\n") : [];
-                                                                            return a.length > 1 ? a[0] + '....' : '' + str;
-                                                                    },
-                                                                    load : function(ar) {
-                                                                         this.el.clear();
-                                                                                                
-                                                                                this.get('/RightEditor').el.hide();
-                                                                                if (ar === false) {
-                                                                                    return ;
-                                                                                }
-                                                                                var ret = {}; 
-                                                                                
-                                                                    
-                                                                                var provider = this.get('/LeftTree').getPaleteProvider();
-                                                                                
-                                                                                // sort!!!?
-                                                                                var iter = new Gtk.TreeIter();
-                                                                                for (var i in ar) {
-                                                                                    if (typeof(ar[i]) == 'object') {
-                                                                                        continue;
-                                                                                    }
-                                                                                    
-                                                                                    var type = provider.findType(ar, i, ar[i]);
-                                                                                    
-                                                                                    this.el.append(iter);
-                                                                                    var p = this.el.get_path(iter).to_string();
-                                                                                    ret[i] = p;
-                                                                                    this.el.set_value(iter, 0, i);
-                                                                                    this.el.set_value(iter, 1, '' + ar[i]);
-                                                                                    this.el.set_value(iter, 2, i);
-                                                                                    this.el.set_value(iter, 3, this.toShort(ar[i]));
-                                                                                    this.el.set_value(iter, 4, type);
-                                                                                }
-                                                                                ar.listeners = ar.listeners || {};
-                                                                                for (var i in ar.listeners ) {
-                                                                                    this.el.append(iter);
-                                                                                    var p = this.el.get_path(iter).to_string();
-                                                                                    ret['!' + i] = p;
-                                                                                    
-                                                                                    this.el.set_value(iter, 0, '!'+  i  );
-                                                                                    this.el.set_value(iter, 1, '' + ar.listeners[i]);
-                                                                                    this.el.set_value(iter, 2, '<b>'+ i + '</b>');
-                                                                                    
-                                                                                    this.el.set_value(iter, 3, '' + this.toShort(ar.listeners[i]));
-                                                                                    this.el.set_value(iter, 4, 'function');
-                                                                                }
-                                                                                return ret;
-                                                                    },
+                                                                    pack : "set_model",
                                                                     add : function(info) {
                                                                           // info includes key, val, skel, etype..
-                                                                                                 console.dump(info);
+                                                                                  console.dump(info);
                                                                                 type = info.type.toLowerCase();
                                                                                 var data = this.toJS();
                                                                                 
@@ -1749,7 +2056,7 @@ Window=new XObject({
                                                                                 if (typeof(info.val) == 'undefined') {
                                                                                         
                                                                                     info.val = '';
-                                                                                    if (info.type == 'boolean') {
+                                                                                    if (info.type.toLowerCase() == 'boolean') {
                                                                                         info.val = true;
                                                                                     }
                                                                                     if (type == 'number') {
@@ -1785,65 +2092,21 @@ Window=new XObject({
                                                                                 );
                                                                                 */
                                                                     },
-                                                                    startEditing : function(path,col) {
-                                                                    /**
-                                                                    * start editing path (or selected if not set..)
-                                                                    * @param {String|false} path  (optional) treepath to edit - selected tree gets
-                                                                    *     edited by default.
-                                                                    * @param {Number} 0 or 1 (optional)- column to edit. 
-                                                                    */
-                                                                         var tp;
-                                                                                if (typeof(path) == 'string') {
-                                                                                    tp = new Gtk.TreePath.from_string(path);
-                                                                                } else {
-                                                                                    var iter = new Gtk.TreeIter();
-                                                                                    var s = this.get('/LeftPanel.view').selection;
-                                                                                    s.get_selected(this.el, iter);
-                                                                                    tp = this.el.get_path(iter);
-                                                                                    path = tp.to_string();
-                                                                                }
-                                                                                
-                                                                               
-                                                                                // which colum is to be edited..
-                                                                                var colObj = false;
-                                                                                if (typeof(col) == 'undefined') {
-                                                                                    var k = this.getValue(path, 0);
-                                                                                    colObj = (!k.length || k == '|') ? 
-                                                                                        this.get('/LeftPanel').propertyColumn : this.get('/LeftPanel').editableColumn;
-                                                                                } else {
-                                                                                    colObj = col ? this.get('/LeftPanel').editableColumn : this.get('/LeftPanel').propertyColumn;
-                                                                                }
-                                                                                
-                                                                                // make sure the pulldown is set correctly..
-                                                                                // not really needed for second col...
+                                                                    changed : function(str, doRefresh) {
+                                                                        if (!this.activePath) {
+                                                                            return;
+                                                                        }
+                                                                        var iter = new Gtk.TreeIter();
+                                                                        this.el.get_iter(iter, new Gtk.TreePath.from_string(this.activePath));
+                                                                        
+                                                                        this.el.set_value(iter, 1, '' +str);
+                                                                        this.el.set_value(iter, 3, '' + this.toShort(str));
+                                                                        var type = this.getIterValue(iter, 4);
                                                                     
-                                                                                var provider = this.get('/LeftTree').getPaleteProvider();
-                                                                               
-                                                                                var type = this.get('/LeftPanel.model').getType(path);
-                                                                                var opts = provider.findOptions(type);
-                                                                                var renderer = this.get('/LeftPanel').editableColumn.items[0].el;
-                                                                                
-                                                                                if (opts === false) {
-                                                                                    this.get('/LeftPanel').editableColumn.setOptions([]);
-                                                                                    renderer.has_entry = true; /// probably does not have any effect.
-                                                                                } else {
-                                                                                    this.get('/LeftPanel').editableColumn.setOptions(opts);
-                                                                                    renderer.has_entry = false;
-                                                                                }
-                                                                                
-                                                                                var _this=this;
-                                                                                // iter now has row...
-                                                                                GLib.timeout_add(0, 100, function() {
-                                                                                    
-                                                                                    colObj.items[0].el.editable = true; // esp. need for col 0..
-                                                                                    _this.get('/LeftPanel.view').el.set_cursor_on_cell(
-                                                                                        tp,
-                                                                                        colObj.el,
-                                                                                        colObj.items[0].el,
-                                                                                        true
-                                                                                    );
-                                                                                });
-                                                                                
+                                                                        this.el.set_value(iter, 5, type + ' : ' + str);
+                                                                        // update the tree...  
+                                                                    
+                                                                        this.get('/LeftTree.model').changed(this.toJS(), doRefresh); 
                                                                     },
                                                                     deleteSelected : function() {
                                                                          var data = this.toJS();
@@ -1878,19 +2141,223 @@ Window=new XObject({
                                                                         this.get('/LeftTree.model').changed(data, true);
                                                                         
                                                                     },
-                                                                    activePath : false,
-                                                                    changed : function(str, doRefresh) {
-                                                                        if (!this.activePath) {
-                                                                            return;
-                                                                        }
+                                                                    getIterValue : function(iter, col) {
+                                                                         var gval = new GObject.Value('');
+                                                                        this.get('/LeftPanel.model').el.get_value(iter, col ,gval);
+                                                                        return '' + gval.value;
+                                                                    },
+                                                                    getType : function(treepath) {
+                                                                         return this.getValue(treepath, 4);
+                                                                    },
+                                                                    getValue : function(treepath_str, col) 
+                                                                    {
+                                                                       // get's the  value in a row.. - keys - returns string, values - formats it..
+                                                                    
                                                                         var iter = new Gtk.TreeIter();
-                                                                        this.el.get_iter(iter, new Gtk.TreePath.from_string(this.activePath));
+                                                                        this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath_str));
+                                                                        
+                                                                        var gval = new GObject.Value('');
+                                                                        this.get('/LeftPanel.model').el.get_value(iter, col ,gval);
+                                                                        var val = '' + gval.value;
+                                                                       
+                                                                        if (col != 1) {
+                                                                            return val;
+                                                                        }
+                                                                        var type = this.getType(this.el.get_path(iter).to_string());
+                                                                        //print("TYPE: " +type + " -  val:" + val);
+                                                                        switch(type.toLowerCase()) {
+                                                                            case 'number':
+                                                                            case 'uint':
+                                                                            case 'int':
+                                                                                return parseFloat(val); // Nan ?? invalid!!?        
+                                                                            case 'float':
+                                                                            case 'gfloat':
+                                                                                return 1.0 * parseFloat(val); // Nan ?? invalid!!?
+                                                                            case 'boolean':
+                                                                                return val == 'true' ? true : false;
+                                                                            default: 
+                                                                                var nv = parseFloat(val);
+                                                                                if (!isNaN(nv) && (val == ''+nv)) {
+                                                                                    return nv;
+                                                                                }
+                                                                                return val;
+                                                                        }
+                                                                                                
+                                                                    },
+                                                                    init : function() {
+                                                                        XObject.prototype.init.call(this);
+                                                                    this.el.set_column_types ( 6, [
+                                                                                                    GObject.TYPE_STRING,  // 0 real key
+                                                                                                    GObject.TYPE_STRING, // 1 real value 
+                                                                                                     GObject.TYPE_STRING,  // 2 visable key
+                                                                                                     GObject.TYPE_STRING, // 3 visable value
+                                                                                                     GObject.TYPE_STRING, // 4 need to store type of!!!
+                                                                                                      GObject.TYPE_STRING // 5 tooltip
+                                                                                                  
+                                                                                                ]);
+                                                                    },
+                                                                    load : function(ar) {
+                                                                      this.el.clear();
+                                                                                            
+                                                                        //this.get('/RightEditor').el.hide();
+                                                                        if (ar === false) {
+                                                                            return ;
+                                                                        }
+                                                                        var ret = {}; 
                                                                         
-                                                                        this.el.set_value(iter, 1, '' +str);
-                                                                        this.el.set_value(iter, 3, '' + this.toShort(str));
-                                                                        // update the tree...  
                                                                     
-                                                                        this.get('/LeftTree.model').changed(this.toJS(), doRefresh); 
+                                                                        var provider = this.get('/LeftTree').getPaleteProvider();
+                                                                         var iter = new Gtk.TreeIter();
+                                                                         
+                                                                        // sort!!!?
+                                                                        var keys  = XObject.keys(ar);
+                                                                        keys.sort();
+                                                                        ar.listeners = ar.listeners || {};
+                                                                        
+                                                                        for (var i in ar.listeners ) {
+                                                                            this.el.append(iter);
+                                                                            var p = this.el.get_path(iter).to_string();
+                                                                            ret['!' + i] = p;
+                                                                            
+                                                                            this.el.set_value(iter, 0, '!'+  i  );
+                                                                            this.el.set_value(iter, 1, '' + ar.listeners[i]);
+                                                                            this.el.set_value(iter, 2, '<b>'+ i + '</b>');
+                                                                            
+                                                                            this.el.set_value(iter, 3, '' + this.toShort(ar.listeners[i]));
+                                                                            this.el.set_value(iter, 4, 'function');
+                                                                            this.el.set_value(iter, 5, i + ' : ' + ar.listeners[i]);
+                                                                        }
+                                                                        
+                                                                        
+                                                                       
+                                                                        var _this = this;
+                                                                        keys.forEach(function(i) {
+                                                                            if (typeof(ar[i]) == 'object') {
+                                                                                return;
+                                                                            }
+                                                                            
+                                                                            var type = provider.findType(ar, i, ar[i]);
+                                                                            
+                                                                            _this.el.append(iter);
+                                                                            var p = _this.el.get_path(iter).to_string();
+                                                                            ret[i] = p;
+                                                                            _this.el.set_value(iter, 0, ''+i);
+                                                                            _this.el.set_value(iter, 1, '' + ar[i]);  
+                                                                            _this.el.set_value(iter, 2, ''+i);
+                                                                            _this.el.set_value(iter, 3, ''+ _this.toShort(ar[i]));
+                                                                            _this.el.set_value(iter, 4, ''+type);
+                                                                            _this.el.set_value(iter, 5, type + ' : ' + ar[i]);
+                                                                        })
+                                                                        return ret;
+                                                                    },
+                                                                    startEditing : function(path,col) {
+                                                                        
+                                                                        // alled by menu 'edit' currently..
+                                                                        /**
+                                                                        * start editing path (or selected if not set..)
+                                                                        * @param {String|false} path  (optional) treepath to edit - selected tree gets
+                                                                        *     edited by default.
+                                                                        * @param {Number} 0 or 1 (optional)- column to edit. 
+                                                                        */
+                                                                        // fix tp to be the 'treepath' string (eg. 0/1/2...)
+                                                                        var tp;
+                                                                        if (typeof(path) == 'string') {
+                                                                            tp = new Gtk.TreePath.from_string(path);
+                                                                        } else {
+                                                                            var iter = new Gtk.TreeIter();
+                                                                            var s = this.get('/LeftPanel.view').selection;
+                                                                            s.get_selected(this.el, iter);
+                                                                            tp = this.el.get_path(iter);
+                                                                            path = tp.to_string();
+                                                                        }
+                                                                        
+                                                                       
+                                                                        // which colum is to be edited..
+                                                                        var colObj = false;
+                                                                        
+                                                                        // not sure what this does..
+                                                                        
+                                                                        if (typeof(col) == 'undefined') {
+                                                                            var k = this.getValue(path, 0);
+                                                                            col = 1;
+                                                                            colObj = (!k.length || k == '|') ? 
+                                                                                this.get('/LeftPanel').propertyColumn : this.get('/LeftPanel').editableColumn;
+                                                                        } else {
+                                                                            colObj = col ? this.get('/LeftPanel').editableColumn : this.get('/LeftPanel').propertyColumn;
+                                                                        }
+                                                                        
+                                                                        // make sure the pulldown is set correctly..
+                                                                        // not really needed for second col...
+                                                                        var showEditor = false;
+                                                                        
+                                                                        if (col) {
+                                                                            var provider = this.get('/LeftTree').getPaleteProvider();
+                                                                            var type = this.get('/LeftPanel.model').getType(path);
+                                                                            var opts = provider.findOptions(type);
+                                                                            var renderer = this.get('/LeftPanel').editableColumn.items[0].el;
+                                                                            
+                                                                            if (opts === false) {
+                                                                                this.get('/LeftPanel').editableColumn.setOptions([]);
+                                                                                renderer.has_entry = true; 
+                                                                            } else {
+                                                                                this.get('/LeftPanel').editableColumn.setOptions(opts);
+                                                                                renderer.has_entry = false;/// - pulldowns do not have entries
+                                                                            }
+                                                                            // determine if we should use the Text editor...
+                                                                            var keyname = this.getValue(path, 0);
+                                                                            var data_value = this.getValue(path, 1);
+                                                                        
+                                                                            if ((keyname[0] == '|') || 
+                                                                                (   
+                                                                                    (typeof(data_value) == 'string' ) && 
+                                                                                    ( data_value.match(/function/g) || data_value.match(/\n/g)) // || (data_value.length > 20))
+                                                                                )) {
+                                                                                showEditor = true;
+                                                                            }
+                                                                            print("SHOW EDITOR" + showEditor ? 'YES' :'no');
+                                                                            
+                                                                        }
+                                                                        var _this = this;    
+                                                                        // end editing..
+                                                                        this.get('/BottomPane').el.hide();
+                                                                        //this.get('/RightEditor').el.hide();
+                                                                         this.get('/Editor').el.hide();
+                                                                        
+                                                                        if (showEditor) {
+                                                                    
+                                                                            this.activePath = false;
+                                                                            _this.get('/Editor').el.show_all();
+                                                                            GLib.timeout_add(0, 1, function() {
+                                                                    
+                                                                                //_this.get('/BottomPane').el.show();
+                                                                                 //_this.get('/RightEditor').el.show();
+                                                                                
+                                                                                _this.get('/Editor.RightEditor.view').load( _this.getValue(path, 1) );
+                                                                                
+                                                                                //e.editing_done();
+                                                                                //e.remove_widget();
+                                                                                _this.activePath = path ;
+                                                                              
+                                                                                return false;
+                                                                            });
+                                                                            return;
+                                                                        }
+                                                                          
+                                                                        
+                                                                        
+                                                                    
+                                                                        // iter now has row...
+                                                                        GLib.timeout_add(0, 100, function() {
+                                                                            _this.activePath = path;
+                                                                            colObj.items[0].el.editable = true; // esp. need for col 0..
+                                                                            _this.get('/LeftPanel.view').el.set_cursor_on_cell(
+                                                                                tp,
+                                                                                colObj.el,
+                                                                                colObj.items[0].el,
+                                                                                true
+                                                                            );
+                                                                        });
+                                                                        
                                                                     },
                                                                     toJS : function() {
                                                                          var iter = new Gtk.TreeIter();
@@ -1919,86 +2386,9 @@ Window=new XObject({
                                                                         return ar;
                                                                         // convert the l
                                                                     },
-                                                                    getType : function(treepath) {
-                                                                         return this.getValue(treepath, 4);
-                                                                    },
-                                                                    getValue : function(treepath_str, col) {
-                                                                          var iter = new Gtk.TreeIter();
-                                                                        this.el.get_iter(iter, new Gtk.TreePath.from_string(treepath_str));
-                                                                        
-                                                                        var gval = new GObject.Value('');
-                                                                        this.get('/LeftPanel.model').el.get_value(iter, col ,gval);
-                                                                        var val = '' + gval.value;
-                                                                        if (col != 1) {
-                                                                            return val;
-                                                                        }
-                                                                        var type = this.getType(this.el.get_path(iter).to_string());
-                                                                        //print("TYPE: " +type + " -  val:" + val);
-                                                                        switch(type.toLowerCase()) {
-                                                                            case 'number':
-                                                                            case 'uint':
-                                                                            case 'int':
-                                                                                return parseFloat(val); // Nan ?? invalid!!?
-                                                                            case 'boolean':
-                                                                                return val == 'true' ? true : false;
-                                                                            default: 
-                                                                                return val;
-                                                                        }
-                                                                                                
-                                                                    },
-                                                                    editSelected : function(e) {
-                                                                        print("EDIT SELECTED?");
-                                                                                var iter = new Gtk.TreeIter();
-                                                                                var s = this.get('/LeftPanel.view').selection;
-                                                                                s.get_selected(this.get('/LeftPanel.model').el, iter);
-                                                                                var m = this.get('/LeftPanel.model')
-                                                                               
-                                                                                var gval = new GObject.Value('');
-                                                                                this.el.get_value(iter, 0 ,gval);
-                                                                                var val = '' + gval.value;
-                                                                                
-                                                                                gval = new GObject.Value('');
-                                                                                this.el.get_value(iter, 1 ,gval);
-                                                                                var rval = gval.value;
-                                                                                var activePath = this.el.get_path(iter).to_string(); 
-                                                                                this.activePath = activePath ;
-                                                                                // was activeIter...
-                                                                                //  not listener...
-                                                                                
-                                                                                var showEditor = false;
-                                                                                
-                                                                                if (val[0] == '!') {
-                                                                                    showEditor = true;
-                                                                                }
-                                                                                if (val[0] == '|') {
-                                                                                    if (rval.match(/function/g) || rval.match(/\n/g)) {
-                                                                                        showEditor = true;
-                                                                                    }
-                                                                                }
-                                                                                
-                                                                                if (showEditor) {
-                                                                                    var _this = this;
-                                                                                    this.activePath = false;
-                                                                                    GLib.timeout_add(0, 1, function() {
-                                                                                        //   Gdk.threads_enter();
-                                                                                        _this.get('/RightEditor').el.show();
-                                                                                  _this.get('/RightEditor.view').load( rval );
-                                                                                        
-                                                                                        e.editing_done();
-                                                                                        e.remove_widget();
-                                                                                        _this.activePath = activePath ;
-                                                                                        
-                                                                                 //       Gdk.threads_leave();
-                                                                                        return false;
-                                                                                    });
-                                                                                    return;
-                                                                                }
-                                                                                 
-                                                                                this.get('/RightEditor').el.hide();
-                                                                    
-                                                                                //var type = this.getValue(this.el.get_path(iter).to_string(),4);
-                                                                                
-                                                                                
+                                                                    toShort : function(str) {
+                                                                        var a = typeof(str) == 'string' ? str.split("\n") : [];
+                                                                            return a.length > 1 ? a[0] + '....' : '' + str;
                                                                     }
                                                                 },
                                                                 {
@@ -2016,12 +2406,12 @@ Window=new XObject({
                                                                             xtype: Gtk.CellRendererText,
                                                                             pack : "pack_start",
                                                                             listeners : {
-                                                                                "editing_started":function (self, editable, path) {
+                                                                                editing_started : function (self, editable, path) {
                                                                                 
                                                                                         this.get('/LeftPanel.model').activePath  = path;
                                                                                 
                                                                                 },
-                                                                                "edited":function (self, object, p0) {
+                                                                                edited : function (self, object, p0) {
                                                                                        var model = this.get('/LeftPanel.model');
                                                                                         var path = model.activePath;
                                                                                         var iter = new Gtk.TreeIter();
@@ -2041,11 +2431,12 @@ Window=new XObject({
                                                                 {
                                                                     xtype: Gtk.TreeViewColumn,
                                                                     pack : "append_column",
+                                                                    title : "value",
                                                                     init : function() {
                                                                         XObject.prototype.init.call(this);
                                                                        this.el.add_attribute(this.items[0].el , 'text', 3 );
                                                                        this.el.add_attribute(this.items[0].el , 'sensitive', 3 );
-                                                                       this.el.add_attribute(this.items[0].el , 'editable', 3 );
+                                                                       //this.el.add_attribute(this.items[0].el , 'editable', 3 );
                                                                               // this.el.set_cell_data_func(cell, age_cell_data_func, NULL, NULL);
                                                                     
                                                                        this.get('/LeftPanel').editableColumn= this;
@@ -2064,30 +2455,34 @@ Window=new XObject({
                                                                     items : [
                                                                         {
                                                                             xtype: Gtk.CellRendererCombo,
-                                                                            pack : "pack_start",
-                                                                            editable : true,
-                                                                            has_entry : true,
-                                                                            text_column : 0,
-                                                                            init : function() {
-                                                                                XObject.prototype.init.call(this);
-                                                                               this.el.model = new Gtk.ListStore();
-                                                                                this.el.model.set_column_types ( 1, [
-                                                                                    GObject.TYPE_STRING  // 0 real key
-                                                                                  ]);
-                                                                            },
                                                                             listeners : {
-                                                                                "edited":function (self, object, p0) {
+                                                                                edited : function (self, object, p0) {
                                                                                        this.get('/LeftPanel').editing = false;
-                                                                                       print("EDITED? p:" + p0 + " t:" + p0);
+                                                                                       var ap = this.get('/LeftPanel.model').activePath
+                                                                                       print("EDITED? "  + ap + " - p:" + p0 + " t:" + p0);
                                                                                         this.get('/LeftPanel.model').changed(p0, true);
                                                                                         this.get('/LeftPanel.model').activePath = false;
+                                                                                        this.el.editable = false;
                                                                                 },
-                                                                                "editing_started":function (self, editable, path) {
+                                                                                editing_started : function (self, editable, path) {
                                                                                    this.get('/LeftPanel').editing  = true;
                                                                                        //  console.log('editing started');
                                                                                        // r.has_entry = false;
-                                                                                   this.get('/LeftPanel.model').editSelected(editable);
+                                                                                
+                                                                                    this.el.editable = false; // make sure it's not editor...
+                                                                                   
                                                                                 }
+                                                                            },
+                                                                            editable : false,
+                                                                            pack : "pack_start",
+                                                                            text_column : 0,
+                                                                            has_entry : true,
+                                                                            init : function() {
+                                                                                XObject.prototype.init.call(this);
+                                                                               this.el.model = new Gtk.ListStore();
+                                                                                this.el.model.set_column_types ( 1, [
+                                                                                    GObject.TYPE_STRING  // 0 real key
+                                                                                  ]);
                                                                             }
                                                                         }
                                                                     ]
@@ -2104,7 +2499,7 @@ Window=new XObject({
                                                                     pack : "append",
                                                                     label : "Delete",
                                                                     listeners : {
-                                                                        "activate":function (self) {
+                                                                        activate : function (self) {
                                                                                this.get('/LeftPanel.model').deleteSelected();
                                                                         }
                                                                     }
@@ -2114,7 +2509,7 @@ Window=new XObject({
                                                                     pack : "append",
                                                                     label : "Edit",
                                                                     listeners : {
-                                                                        "activate":function (self) {
+                                                                        activate : function (self) {
                                                                                this.get('/LeftPanel.model').startEditing(false, 0);
                                                                         }
                                                                     }
@@ -2158,27 +2553,8 @@ Window=new XObject({
                                     items : [
                                         {
                                             xtype: Gtk.TreeView,
-                                            enable_tree_lines : true,
-                                            headers_visible : false,
-                                            tooltip_column : 2,
-                                            init : function() {
-                                               XObject.prototype.init.call(this); 
-                                                                
-                                                   var description = new Pango.FontDescription.c_new();
-                                                 description.set_size(8000);
-                                                this.el.modify_font(description);     
-                                                                
-                                                //this.selection = this.el.get_selection();
-                                                // this.selection.set_mode( Gtk.SelectionMode.SINGLE);
-                                             
-                                            
-                                                
-                                              
-                                                
-                                            },
-                                            pack : "add",
                                             listeners : {
-                                                "cursor_changed":function (self) {
+                                                cursor_changed : function (self) {
                                                        var iter = new Gtk.TreeIter();
                                                                         
                                                                         //console.log('changed');
@@ -2205,7 +2581,7 @@ Window=new XObject({
                                                         
                                                         this.get('/MidPropTree').hideWin();
                                                 
-                                                        if (type == 'function') {
+                                                        if (type.toLowerCase() == 'function') {
                                                             
                                                             if (etype != 'events') {
                                                                 key = '|' + key;
@@ -2219,11 +2595,10 @@ Window=new XObject({
                                                             })  
                                                             return;
                                                         }
-                                                        
-                                                        if (type.indexOf('.') > -1 || 
-                                                                type == 'boolean') {
-                                                             key = '|' + key;
-                                                        }
+                                                        // has dot in name, and is boolean???? this does not make sense..
+                                                        //if (type.indexOf('.') > -1 ||  type.toLowerCase() == 'boolean') {
+                                                        //     key = '|' + key;
+                                                       // }
                                                         
                                                         this.get('/LeftPanel.model').add( {
                                                             key : key, 
@@ -2232,11 +2607,41 @@ Window=new XObject({
                                                             etype : etype
                                                            }) //, 
                                                 }
+                                            },
+                                            pack : "add",
+                                            tooltip_column : 2,
+                                            enable_tree_lines : true,
+                                            headers_visible : false,
+                                            init : function() {
+                                               XObject.prototype.init.call(this); 
+                                                                
+                                                   var description = new Pango.FontDescription.c_new();
+                                                 description.set_size(8000);
+                                                this.el.modify_font(description);     
+                                                                
+                                                //this.selection = this.el.get_selection();
+                                                // this.selection.set_mode( Gtk.SelectionMode.SINGLE);
+                                             
+                                            
+                                                
+                                              
+                                                
                                             },
                                             items : [
                                                 {
                                                     xtype: Gtk.ListStore,
+                                                    id : "model",
                                                     pack : "set_model",
+                                                    getValue : function(treepath, col)
+                                                    {
+                                                        var tp = new Gtk.TreePath.from_string (treepath);
+                                                        var iter = new Gtk.TreeIter();
+                                                        this.el.get_iter (iter, tp);
+                                                        var value = new GObject.Value('');
+                                                        this.el.get_value(iter, col, value);
+                                                        return value.value;
+                                                        
+                                                    },
                                                     init : function() {
                                                         XObject.prototype.init.call(this);
                                                        this.el.set_column_types ( 6, [
@@ -2249,16 +2654,6 @@ Window=new XObject({
                                                             
                                                         ] );
                                                     },
-                                                    getValue : function(treepath, col)
-                                                    {
-                                                        var tp = new Gtk.TreePath.from_string (treepath);
-                                                        var iter = new Gtk.TreeIter();
-                                                        this.el.get_iter (iter, tp);
-                                                        var value = new GObject.Value('');
-                                                        this.el.get_value(iter, col, value);
-                                                        return value.value;
-                                                        
-                                                    },
                                                     showData : function(type) {
                                                         this.el.clear();
                                                                 if (!this.get('/MidPropTree').activeElement || !type) {
@@ -2278,7 +2673,9 @@ Window=new XObject({
                                                                     this.get('/MidPropTree').shown = true;
                                                                 }
                                                                 
-                                                                var elementList = palete.getPropertiesFor(fullpath, type);
+                                                                var elementList = palete.getPropertiesFor(fullpath, type).sort(function(a,b) { 
+                                                                    return a.name >  b.name ? 1 : -1;
+                                                                });
                                                                 print ("GOT " + elementList.length + " items for " + fullpath + "|" + type);
                                                                // console.dump(elementList);
                                                                
@@ -2303,8 +2700,7 @@ Window=new XObject({
                                                                     
                                                                 }
                                                                                  
-                                                    },
-                                                    id : "model"
+                                                    }
                                                 },
                                                 {
                                                     xtype: Gtk.TreeViewColumn,
@@ -2345,675 +2741,942 @@ Window=new XObject({
                                                 {
                                                     xtype: Gtk.Notebook,
                                                     pack : "pack_start,true,true",
-                                                    id : "view-notebook",
-                                                    tab_border : 0,
+                                                    id : "view-help-nb",
                                                     init : function() {
                                                         XObject.prototype.init.call(this);
-                                                        this.el.set_current_page(0);
-                                                        print("SET LABEL?")
-                                                        this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Roo View" }));
-                                                        this.el.set_tab_label(this.items[1].el, new Gtk.Label({ label : "Gtk View" }));
+                                                       this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Preview" }));
+                                                        this.el.set_tab_label(this.items[1].el, new Gtk.Label({ label : "Help" }));
                                                     },
-                                                    show_tabs : false,
                                                     items : [
                                                         {
-                                                            xtype: Gtk.VBox,
+                                                            xtype: Gtk.Notebook,
+                                                            id : "view-notebook",
                                                             pack : "add",
-                                                            id : "RightBrowser",
+                                                            tab_border : 0,
+                                                            init : function() {
+                                                                XObject.prototype.init.call(this);
+                                                                this.el.set_current_page(0);
+                                                                //print("SET LABEL?")
+                                                                this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Roo View" }));
+                                                                this.el.set_tab_label(this.items[1].el, new Gtk.Label({ label : "Gtk View" }));
+                                                            },
+                                                            show_tabs : false,
                                                             items : [
                                                                 {
-                                                                    xtype: Gtk.HBox,
-                                                                    pack : "pack_start,false,true,0",
+                                                                    xtype: Gtk.VBox,
+                                                                    id : "RightBrowser",
+                                                                    pack : "add",
                                                                     items : [
                                                                         {
-                                                                            xtype: Gtk.Button,
-                                                                            pack : "pack_start,false,false,0",
-                                                                            label : "Dump HTML to console",
-                                                                            listeners : {
-                                                                                "activate":function (self) {
-                                                                                       this.get('/RightBrowser.view').el.execute_script(
-                                                                                            "console.log(document.body.innerHTML);");
-                                                                                        this.get('/RightBrowser.view').el.execute_script(
-                                                                                           "console.log(Builder.dump(Builder));");   
+                                                                            xtype: Gtk.HBox,
+                                                                            pack : "pack_start,false,true,0",
+                                                                            items : [
+                                                                                {
+                                                                                    xtype: Gtk.Button,
+                                                                                    listeners : {
+                                                                                        clicked : function (self) {
+                                                                                          this.get('/RightBrowser.view').renderJS(null,true);
+                                                                                        }
+                                                                                    },
+                                                                                    label : "Redraw",
+                                                                                    pack : "pack_start,false,false,0"
+                                                                                },
+                                                                                {
+                                                                                    xtype: Gtk.CheckButton,
+                                                                                    listeners : {
+                                                                                        toggled : function (self, state) {
+                                                                                            this.el.set_label(this.el.active  ? "Auto Redraw On" : "Auto Redraw Off");
+                                                                                        }
+                                                                                    },
+                                                                                    active : true,
+                                                                                    id : "AutoRedraw",
+                                                                                    label : "Auto Redraw On",
+                                                                                    pack : "pack_start,false,false,0"
                                                                                 }
-                                                                            }
-                                                                        }
-                                                                    ]
-                                                                },
-                                                                {
-                                                                    xtype: Gtk.ScrolledWindow,
-                                                                    pack : "add",
-                                                                    shadow_type : Gtk.ShadowType.IN,
-                                                                    init : function() {
-                                                                        XObject.prototype.init.call(this);
-                                                                      this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
-                                                                    },
-                                                                    items : [
+                                                                            ]
+                                                                        },
                                                                         {
-                                                                            xtype: WebKit.WebView,
+                                                                            xtype: Gtk.ScrolledWindow,
                                                                             pack : "add",
-                                                                            id : "view",
                                                                             init : function() {
                                                                                 XObject.prototype.init.call(this);
-                                                                                // this may not work!?
-                                                                                this.el.open('file:///' + __script_path__ + '/../builder.html');
-                                                                                                        
-                                                                                Gtk.drag_dest_set
-                                                                                (
-                                                                                        this.el,              /* widget that will accept a drop */
-                                                                                        Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
-                                                                                        null,            /* lists of target to support */
-                                                                                        0,              /* size of list */
-                                                                                        Gdk.DragAction.COPY         /* what to do with data after dropped */
-                                                                                );
-                                                                                                        
-                                                                               // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
-                                                                                Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
-                                                                            },
-                                                                            renderJS : function(data) {
-                                                                                this.renderedData = data;
-                                                                                var str = JSON.stringify(data) ;
-                                                                                
-                                                                                if (!this.ready) {
-                                                                                    console.log('not loaded yet');
-                                                                                }
-                                                                                Seed.print("RENDER:" + str);
-                                                                                imports.File.File.write('/tmp/builder.debug.js', "Builder.render(" + JSON.stringify(data) + ");");
-                                                                                this.el.execute_script("Builder.render(" + JSON.stringify(data) + ");");
+                                                                                this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
                                                                             },
-                                                                            listeners : {
-                                                                                "load_finished":function (self, object) {
-                                                                                        if (this.ready) { // dont do it twice!
-                                                                                           return; 
-                                                                                       }
-                                                                                       this.ready = true;
-                                                                                
-                                                                                       this.renderJS(this.get('/LeftTree.model').toJS()[0]);
-                                                                                },
-                                                                                "script_alert":function (self, object, p0) {
-                                                                                       print(p0);
-                                                                                        return false;
-                                                                                        return true; // do not display anything...
-                                                                                },
-                                                                                "console_message":function (self, object, p0, p1) {
-                                                                                     console.log(object);
-                                                                                        if (!object.match(/^\{/)) {
-                                                                                            return false; // do not handle!!! -> later maybe in console..
-                                                                                        }
-                                                                                        console.log(object);
-                                                                                        var val =  JSON.parse(object);
-                                                                                
-                                                                                        if (typeof(val['hover-node']) != 'undefined') {
-                                                                                            this.activeNode = val['hover-node'];
-                                                                                            console.log('active node: ' + this.activeNode);
-                                                                                            return true;
-                                                                                        }
-                                                                                
-                                                                                         var ret = false;
-                                                                                         if (typeof(val['id']) != 'undefined') {
-                                                                                           // this.activeNode = val['id'];
-                                                                                            var tg = this.get('/LeftTree.model').findDropNode(val['id'], true); 
-                                                                                            if (!tg) {
+                                                                            shadow_type : Gtk.ShadowType.IN,
+                                                                            items : [
+                                                                                {
+                                                                                    xtype: WebKit.WebView,
+                                                                                    listeners : {
+                                                                                        load_finished : function (self, object) {
+                                                                                            print("load finished");
+                                                                                        //    print("load_finished"); return;
+                                                                                               // if (this.ready) { // dont do it twice!
+                                                                                                //   return; 
+                                                                                               //}
+                                                                                               if (!this.inspectorShown) {
+                                                                                                   this.el.get_inspector().show();
+                                                                                                   this.inspectorShown = true;
+                                                                                               }
+                                                                                        
+                                                                                               this.ready = true;
+                                                                                               
+                                                                                                if (this.pendingRedraw) {
+                                                                                                    this.pendingRedraw = false;
+                                                                                                    this.refreshRequired  = true;
+                                                                                                }
+                                                                                                //var js = this.get('/LeftTree.model').toJS();
+                                                                                                //if (js && js[0]) {
+                                                                                               //    this.renderJS(js[0]);
+                                                                                               //}
+                                                                                        
+                                                                                        },
+                                                                                        script_alert : function (self, object, p0) {
+                                                                                            //         print(p0);
                                                                                                 return false;
-                                                                                            }
-                                                                                            this.get('/LeftTree.view').selectNode(tg[0]);
-                                                                                            ret  = true;
+                                                                                                return true; // do not display anything...
+                                                                                        },
+                                                                                        console_message : function (self, object, p0, p1) {
+                                                                                            print(object);
+                                                                                           //  console.log(object);
+                                                                                                if (!object.match(/^\{/)) {
+                                                                                                
+                                                                                                    //this.get('/Terminal').feed(object);
+                                                                                                    return true; // do not handle!!! -> later maybe in console..
+                                                                                                }
+                                                                                               // console.log(object);
+                                                                                                var val =  JSON.parse(object);
+                                                                                        
+                                                                                                if (typeof(val['hover-node']) != 'undefined') {
+                                                                                                    this.activeNode = val['hover-node'];
+                                                                                                    console.log('active node: ' + this.activeNode);
+                                                                                                    return true;
+                                                                                                }
+                                                                                        
+                                                                                                 var ret = false;
+                                                                                                 if (typeof(val['id']) != 'undefined') {
+                                                                                                   // this.activeNode = val['id'];
+                                                                                                    var tg = this.get('/LeftTree.model').findDropNode(val['id'], true); 
+                                                                                                    if (!tg || typeof(tg[0]) == 'undefined') {
+                                                                                                        return false;
+                                                                                                    }
+                                                                                                    print("SELECT node " + tg[0]);
+                                                                                                    
+                                                                                                    this.get('/LeftTree.view').selectNode(tg[0]);
+                                                                                                    ret  = true;
+                                                                                                    
+                                                                                                } 
+                                                                                                if (ret && typeof(val['set']) != 'undefined') {
+                                                                                                   this.get('/LeftPanel.model').add({
+                                                                                                        key : val['set'],
+                                                                                                        val : val['value']
+                                                                                                    });
+                                                                                                    //console.log('active node: ' + this.activeNode);
+                                                                                                    
+                                                                                                }
+                                                                                                //Seed.print('a:'+a);
+                                                                                                //Seed.print('b:'+b);
+                                                                                                //Seed.print('c:'+c);
+                                                                                                return ret;
+                                                                                        },
+                                                                                        drag_motion : function (w, ctx,  x,   y,   time, ud) {
+                                                                                           // console.log('DRAG MOTION'); 
+                                                                                                // status:
+                                                                                                // if lastCurrentNode == this.currentNode.. -- don't change anything..
+                                                                                                this.targetData = [];
+                                                                                                this.el.execute_script("Builder.overPos(" + x +','+ y + ");");
+                                                                                                
+                                                                                                // A) find out from drag all the places that node could be dropped.
+                                                                                                var src = Gtk.drag_get_source_widget(ctx);
+                                                                                                if (!src.dropList) {
+                                                                                                    Gdk.drag_status(ctx, 0, time);
+                                                                                                    return true;
+                                                                                                }
+                                                                                                // b) get what we are over.. (from activeNode)
+                                                                                                // tree is empty.. - list should be correct..
+                                                                                                if (!this.get('/LeftTree.model').currentTree) {
+                                                                                                    Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
+                                                                                                    return true;
+                                                                                                    
+                                                                                                }
+                                                                                                // c) ask tree where it should be dropped... - eg. parent.. (after node ontop)
+                                                                                                
+                                                                                                var tg = this.get('/LeftTree.model').findDropNode(this.activeNode, src.dropList);
+                                                                                                console.dump(tg);
+                                                                                                if (!tg.length) {
+                                                                                                    Gdk.drag_status(ctx, 0,time);
+                                                                                                    this.get('/LeftTree.view').highlight(false);
+                                                                                                    return true;
+                                                                                                }
+                                                                                                 
+                                                                                                // if we have a target..
+                                                                                                // -> highlight it! (in browser)
+                                                                                                // -> highlight it! (in tree)
+                                                                                                
+                                                                                                Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
+                                                                                                this.get('/LeftTree.view').highlight(tg);
+                                                                                                this.targetData = tg;
+                                                                                                // for tree we should handle this...
+                                                                                                return true;
+                                                                                        },
+                                                                                        drag_drop : function (w, ctx, x, y,time, ud) {
+                                                                                               print("TARGET: drag-drop");
+                                                                                                var is_valid_drop_site = true;
+                                                                                                
+                                                                                                 
+                                                                                                Gtk.drag_get_data
+                                                                                                (
+                                                                                                        w,         /* will receive 'drag-data-received' signal */
+                                                                                                        ctx,        /* represents the current state of the DnD */
+                                                                                                        this.get('/Window').atoms["STRING"],    /* the target type we want */
+                                                                                                        time            /* time stamp */
+                                                                                                );
+                                                                                                                
+                                                                                                                
+                                                                                                                /* No target offered by source => error */
+                                                                                                               
+                                                                                        
+                                                                                               return  is_valid_drop_site;
+                                                                                        },
+                                                                                        drag_data_received : function (w, ctx,  x,  y, sel_data,  target_type,  time, ud) 
+                                                                                            {
+                                                                                                print("Browser: drag-data-received");
+                                                                                                var delete_selection_data = false;
+                                                                                                vardnd_success = false;
+                                                                                                /* Deal with what we are given from source */
+                                                                                                if( sel_data && sel_data.length ) {
+                                                                                                    
+                                                                                                    if (ctx.action == Gdk.DragAction.ASK)  {
+                                                                                                        /* Ask the user to move or copy, then set the ctx action. */
+                                                                                                    }
+                                                                                        
+                                                                                                    if (ctx.action == Gdk.DragAction.MOVE) {
+                                                                                                        delete_selection_data = true;
+                                                                                                    }
+                                                                                                    var source = Gtk.drag_get_source_widget(ctx);
+                                                                                        
+                                                                                                    print("Browser: source.DRAGDATA? " + source.dragData);
+                                                                                                    if (this.targetData) {
+                                                                                                        print(this.targetData);
+                                                                                                        this.get('/LeftTree.model').dropNode(this.targetData,  source.dragData);
+                                                                                                    }
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    dnd_success = true;
+                                                                                        
+                                                                                                }
+                                                                                        
+                                                                                                if (dnd_success == false)
+                                                                                                {
+                                                                                                        Seed.print ("DnD data transfer failed!\n");
+                                                                                                }
+                                                                                                
+                                                                                                Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
+                                                                                                return true;
+                                                                                            },
+                                                                                        create_web_view : function (self, object) {
+                                                                                          print("CREATE WEB VIEW");
+                                                                                           return null; //new WebKit.WebView();
+                                                                                        }
+                                                                                    },
+                                                                                    redraws : 0,
+                                                                                    id : "view",
+                                                                                    pack : "add",
+                                                                                    init : function() {
+                                                                                        XObject.prototype.init.call(this);
+                                                                                        // this may not work!?
+                                                                                        var settings =  this.el.get_settings();
+                                                                                        settings.enable_developer_extras = true;
+                                                                                        
+                                                                                        // this was an attempt to change the url perms.. did not work..
+                                                                                        // settings.enable_file_access_from_file_uris = true;
+                                                                                        // settings.enable_offline_web_application_cache - true;
+                                                                                        // settings.enable_universal_access_from_file_uris = true;
+                                                                                        var _this = this;
+                                                                                         
+                                                                                         // init inspector..
+                                                                                        this.el.get_inspector().signal.inspect_web_view.connect(function(wi, pg) {
+                                                                                             _this.get('/BottomPane.inspector').el.show();
+                                                                                             return _this.get('/BottomPane.inspector').el;
+                                                                                        
+                                                                                        });
+                                                                                         
+                                                                                         // FIXME - base url of script..
+                                                                                         // we need it so some of the database features work.
+                                                                                        this.el.load_html_string( "Render not ready" , 
+                                                                                                //fixme - should be a config option!
+                                                                                                // or should we catch stuff and fix it up..
+                                                                                                'http://localhost/app.Builder/'
+                                                                                        );
                                                                                             
-                                                                                        } 
-                                                                                        if (ret && typeof(val['set']) != 'undefined') {
-                                                                                           this.get('/LeftPanel.model').add({
-                                                                                                key : val['set'],
-                                                                                                val : val['value']
-                                                                                            });
-                                                                                            //console.log('active node: ' + this.activeNode);
                                                                                             
+                                                                                       //this.el.open('file:///' + __script_path__ + '/../builder.html');
+                                                                                                              
+                                                                                        Gtk.drag_dest_set
+                                                                                        (
+                                                                                                this.el,              /* widget that will accept a drop */
+                                                                                                Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
+                                                                                                null,            /* lists of target to support */
+                                                                                                0,              /* size of list */
+                                                                                                Gdk.DragAction.COPY         /* what to do with data after dropped */
+                                                                                        );
+                                                                                                                
+                                                                                       // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
+                                                                                        Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
+                                                                                        
+                                                                                        GLib.timeout_add_seconds(0, 1, function() {
+                                                                                            //    print("run refresh?");
+                                                                                             _this.runRefresh(); 
+                                                                                             return true;
+                                                                                         });
+                                                                                        
+                                                                                        
+                                                                                    },
+                                                                                    renderJS : function(data, force) {
+                                                                                    
+                                                                                        // this is the public redraw call..
+                                                                                        // we refresh in a loop privately..
+                                                                                        var autodraw = this.get('/RightBrowser.AutoRedraw').el.active;
+                                                                                        if (!autodraw && !force) {
+                                                                                            print("Skipping redraw - no force, and autodraw off");
+                                                                                            return;
                                                                                         }
-                                                                                        //Seed.print('a:'+a);
-                                                                                        //Seed.print('b:'+b);
-                                                                                        //Seed.print('c:'+c);
-                                                                                        return ret;
-                                                                                },
-                                                                                "drag_motion":function (w, ctx,  x,   y,   time, ud) {
-                                                                                   // console.log('DRAG MOTION'); 
-                                                                                        // status:
-                                                                                        // if lastCurrentNode == this.currentNode.. -- don't change anything..
-                                                                                        this.targetData = [];
-                                                                                        this.el.execute_script("Builder.overPos(" + x +','+ y + ");");
-                                                                                        
-                                                                                        // A) find out from drag all the places that node could be dropped.
-                                                                                        var src = Gtk.drag_get_source_widget(ctx);
-                                                                                        if (!src.dropList) {
-                                                                                            Gdk.drag_status(ctx, 0, time);
-                                                                                            return true;
+                                                                                        this.refreshRequired  = true;
+                                                                                    },
+                                                                                    runRefresh : function() 
+                                                                                    {
+                                                                                        // this is run every 2 seconds from the init..
+                                                                                    
+                                                                                      
+                                                                                        
+                                                                                        if (!this.refreshRequired) {
+                                                                                           // print("no refresh required");
+                                                                                            return;
                                                                                         }
-                                                                                        // b) get what we are over.. (from activeNode)
-                                                                                        // tree is empty.. - list should be correct..
-                                                                                        if (!this.get('/LeftTree.model').currentTree) {
-                                                                                            Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
-                                                                                            return true;
-                                                                                            
+                                                                                    
+                                                                                        if (this.lastRedraw) {
+                                                                                           // do not redraw if last redraw was less that 5 seconds ago.
+                                                                                           if (((new Date()) -  this.lastRedraw) < 5000) {
+                                                                                                return;
+                                                                                            }
                                                                                         }
-                                                                                        // c) ask tree where it should be dropped... - eg. parent.. (after node ontop)
                                                                                         
-                                                                                        var tg = this.get('/LeftTree.model').findDropNode(this.activeNode, src.dropList);
-                                                                                        console.dump(tg);
-                                                                                        if (!tg.length) {
-                                                                                            Gdk.drag_status(ctx, 0,time);
-                                                                                            this.get('/LeftTree.view').highlight(false);
-                                                                                            return true;
-                                                                                        }
-                                                                                         
-                                                                                        // if we have a target..
-                                                                                        // -> highlight it! (in browser)
-                                                                                        // -> highlight it! (in tree)
                                                                                         
-                                                                                        Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
-                                                                                        this.get('/LeftTree.view').highlight(tg);
-                                                                                        this.targetData = tg;
-                                                                                        // for tree we should handle this...
-                                                                                        return true;
-                                                                                },
-                                                                                "drag_drop":function (w, ctx, x, y,time, ud) {
-                                                                                       print("TARGET: drag-drop");
-                                                                                        var is_valid_drop_site = true;
                                                                                         
+                                                                                        
+                                                                                         if (!this.get('/Window.LeftTree').getActiveFile()) {
+                                                                                            return;
+                                                                                         }
+                                                                                         this.refreshRequired = false;
+                                                                                       //  print("HTML RENDERING");
                                                                                          
-                                                                                        Gtk.drag_get_data
-                                                                                        (
-                                                                                                w,         /* will receive 'drag-data-received' signal */
-                                                                                                ctx,        /* represents the current state of the DnD */
-                                                                                                this.get('/Window').atoms["STRING"],    /* the target type we want */
-                                                                                                time            /* time stamp */
-                                                                                        );
-                                                                                                        
-                                                                                                        
-                                                                                                        /* No target offered by source => error */
-                                                                                                       
-                                                                                
-                                                                                       return  is_valid_drop_site;
-                                                                                },
-                                                                                "drag_data_received":function (w, ctx,  x,  y, sel_data,  target_type,  time, ud) 
-                                                                                    {
-                                                                                        print("Browser: drag-data-received");
-                                                                                        var delete_selection_data = false;
-                                                                                        vardnd_success = false;
-                                                                                        /* Deal with what we are given from source */
-                                                                                        if( sel_data && sel_data.length ) {
+                                                                                         this.get('/BottomPane').el.show();
+                                                                                         this.get('/BottomPane').el.set_current_page(2);// webkit inspector
+                                                                                    
+                                                                                        
+                                                                                        var js = this.get('/LeftTree.model').toJS();
+                                                                                        if (!js || !js.length) {
+                                                                                            print("no data");
+                                                                                            return;
+                                                                                        }
+                                                                                        var  data = js[0];
+                                                                                        this.redraws++;
+                                                                                        
+                                                                                         var project = this.get('/Window.LeftTree').getActiveFile().project;
+                                                                                         //print (project.fn);
+                                                                                         // set it to non-empty.
+                                                                                         project.runhtml  =     project.runhtml  || '';
+                                                                                         project.runhtml  = project.runhtml.length ?  project.runhtml : '<script type="text/javascript"></script>'; 
+                                                                                        
+                                                                                    
+                                                                                         this.runhtml  = this.runhtml || '';
+                                                                                        
+                                                                                         if ((project.runhtml != this.runhtml) || (this.redraws > 10)) {
+                                                                                            // then we need to reload the browser using
+                                                                                            // load_html_string..
                                                                                             
-                                                                                            if (ctx.action == Gdk.DragAction.ASK)  {
-                                                                                                /* Ask the user to move or copy, then set the ctx action. */
-                                                                                            }
-                                                                                
-                                                                                            if (ctx.action == Gdk.DragAction.MOVE) {
-                                                                                                delete_selection_data = true;
-                                                                                            }
-                                                                                            var source = Gtk.drag_get_source_widget(ctx);
-                                                                                
-                                                                                            print("Browser: source.DRAGDATA? " + source.dragData);
-                                                                                            if (this.targetData) {
-                                                                                                print(this.targetData);
-                                                                                                this.get('/LeftTree.model').dropNode(this.targetData,  source.dragData);
-                                                                                            }
+                                                                                            // then trigger a redraw once it's loaded..
+                                                                                            this.pendingRedraw = true;
+                                                                                             var runhtml = '<script type="text/javascript">' + "\n" ;
+                                                                                             runhtml +=imports.File.File.read(__script_path__ + '/../builder.html.js') + "\n";
+                                                                                             runhtml += '</script>'+ "\n" ;
                                                                                             
+                                                                                            this.runhtml = project.runhtml;
+                                                                                            // need to modify paths
                                                                                             
                                                                                             
-                                                                                            dnd_success = true;
-                                                                                
+                                                                                            
+                                                                                            var html = imports.File.File.read(__script_path__ + '/../builder.html');
+                                                                                            html = html.replace('</head>', runhtml + this.runhtml + '</head>');
+                                                                                            print("LOAD HTML " + html);
+                                                                                            this.el.load_html_string( html , 
+                                                                                                //fixme - should be a config option!
+                                                                                                'http://localhost/app.Builder/'
+                                                                                            );
+                                                                                            this.redraws = 0;
+                                                                                            // should trigger load_finished! - which in truns shoudl set refresh Required;
+                                                                                            return;
+                                                                                        
                                                                                         }
-                                                                                
-                                                                                        if (dnd_success == false)
-                                                                                        {
-                                                                                                Seed.print ("DnD data transfer failed!\n");
+                                                                                        
+                                                                                        
+                                                                                        this.renderedData = data;
+                                                                                        var str = JSON.stringify(data) ;
+                                                                                        
+                                                                                        if (!this.ready) {
+                                                                                            console.log('not loaded yet');
                                                                                         }
+                                                                                        this.lastRedraw = new Date();
+                                                                                    
+                                                                                        this.el.execute_script("Builder.render(" + JSON.stringify(data) + ");");
+                                                                                         print( "before render" +    this.lastRedraw);
+                                                                                        print( "after render" +    (new Date()));
                                                                                         
-                                                                                        Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
-                                                                                        return true;
                                                                                     }
-                                                                            }
+                                                                                }
+                                                                            ]
                                                                         }
                                                                     ]
-                                                                }
-                                                            ]
-                                                        },
-                                                        {
-                                                            xtype: Gtk.VBox,
-                                                            pack : "add",
-                                                            id : "RightGtkView",
-                                                            renderJS : function(data, withDebug)
-                                                            {
-                                                                 if (!data) {
+                                                                },
+                                                                {
+                                                                    xtype: Gtk.VBox,
+                                                                    id : "RightGtkView",
+                                                                    pack : "add",
+                                                                    redraw : function() {
+                                                                       this.highlightWidget = false;
+                                                                        print("REDRAW CALLED");
+                                                                        this.activePath = this.get('/LeftTree').getActivePath();
+                                                                        if (this.renderedEl) {
+                                                                          print("QUEUE DRAW CALLING");
+                                                                          this.renderedEl.queue_draw();
+                                                                       }
+                                                                    },
+                                                                    renderJS : function(data, withDebug)
+                                                                    {
+                                                                          this.highlightWidget = false;
+                                                                       
+                                                                        this.withDebug = false;
+                                                                        while (this.get('view').el.get_children().length) {
+                                                                            var c = this.get('view').el.get_children()[0];
+                                                                            this.get('view').el.remove(c);        
+                                                                            c.destroy();
+                                                                        }
+                                                                         if (!data) {
                                                                              return; 
-                                                                }
-                                                                this.withDebug = false;
-                                                                
-                                                                if (this.renderedEl) {
-                                                                    this.get('view').el.remove(this.renderedEl);
-                                                                    this.renderedEl.destroy();
-                                                                    this.renderedEl = false;
-                                                                }
-                                                                
-                                                                var tree =  this.get('/LeftTree.model').toJS(false,true)[0];
-                                                                // in theory tree is actually window..  
-                                                               try {
-                                                                this.renderedEl = this.viewAdd(tree.items[0], this.get('view').el);
-                                                              } catch (e) {
-                                                                 print(e.message);
-                                                                return;
-                                                              }
-                                                                this.get('view').el.set_size_request(
-                                                                    tree.default_width * 1 || 400, tree.default_height * 1 || 400
-                                                                ) ;
-                                                                
-                                                                this.renderedEl.set_size_request(
-                                                                    tree.default_width || 600,
-                                                                    tree.default_height || 400
-                                                                );
-                                                                this.get('view').el.show_all();
-                                                                
-                                                                
-                                                                
-                                                            },
-                                                            showInWindow : function() {
-                                                              print("GET PROEJCT");
-                                                               var pr = this.get('/LeftProjectTree').getActiveProject();
-                                                              
-                                                               console.log(pr.paths);
-                                                                return;
-                                                            /*
-                                                                 var src= this.buildJS(
-                                                                       this.get('/LeftTree.model').toJS()[0], 
-                                                                       true);
-                                                                  // show term?? 
-                                                            
-                                                            
-                                                                //var x = new imports.sandbox.Context();
-                                                                //x.add_globals();
-                                                                //print(src);
-                                                                try {
-                                                                    Seed.check_syntax('var e = ' + src);
-                                                                    //x.eval(src);
-                                                                } catch( e) {
-                                                                    this.get('/Terminal').feed(e.message || e.toString() + "\n");
-                                                                    this.get('/Terminal').feed(console._dump(e)+"\n");
-                                                                    if (e.line) {
-                                                                        var lines = src.split("\n");
-                                                                        var start = Math.max(0, e.line - 10);
-                                                                        var end = Math.min(lines.length, e.line + 10);
-                                                                        for (var i =start ; i < end; i++) {
-                                                                            if (i == e.line) {
-                                                                                this.get('/Terminal').feed(">>>>>" + lines[i] + "\n");
+                                                                        }
+                                                                        
+                                                                        var tree =  this.get('/LeftTree.model').toJS(false,true)[0];
+                                                                        // in theory tree is actually window..  
+                                                                       try {
+                                                                      
+                                                                            this.renderedEl = this.viewAdd(tree.items[0], this.get('view').el);
+                                                                          
+                                                                      } catch (e) {
+                                                                         print(e.message);
+                                                                        return;
+                                                                      }
+                                                                        this.get('view').el.set_size_request(
+                                                                            tree.default_width * 1 || 400, tree.default_height * 1 || 400
+                                                                        ) ;
+                                                                        if (this.renderedEl) {
+                                                                            this.renderedEl.set_size_request(
+                                                                                tree.default_width || 600,
+                                                                                tree.default_height || 400
+                                                                            );
+                                                                        }
+                                                                        this.get('view').el.show_all();
+                                                                        
+                                                                        
+                                                                        
+                                                                    },
+                                                                    showInWindow : function() {
+                                                                      print("GET PROEJCT");
+                                                                       var pr = this.get('/LeftProjectTree').getActiveProject();
+                                                                      
+                                                                       console.log(pr.paths);
+                                                                        return;
+                                                                    /*
+                                                                         var src= this.buildJS(
+                                                                               this.get('/LeftTree.model').toJS()[0], 
+                                                                               true);
+                                                                          // show term?? 
+                                                                    
+                                                                    
+                                                                        //var x = new imports.sandbox.Context();
+                                                                        //x.add_globals();
+                                                                        //print(src);
+                                                                        try {
+                                                                            Seed.check_syntax('var e = ' + src);
+                                                                            //x.eval(src);
+                                                                        } catch( e) {
+                                                                            this.get('/Terminal').feed(e.message || e.toString() + "\n");
+                                                                            this.get('/Terminal').feed(console._dump(e)+"\n");
+                                                                            if (e.line) {
+                                                                                var lines = src.split("\n");
+                                                                                var start = Math.max(0, e.line - 10);
+                                                                                var end = Math.min(lines.length, e.line + 10);
+                                                                                for (var i =start ; i < end; i++) {
+                                                                                    if (i == e.line) {
+                                                                                        this.get('/Terminal').feed(">>>>>" + lines[i] + "\n");
+                                                                                        continue;
+                                                                                    }
+                                                                                    this.get('/Terminal').feed(lines[i] + "\n");
+                                                                                }
+                                                                                
+                                                                            }
+                                                                            
+                                                                            return;
+                                                                        }
+                                                                         this.get('/BottomPane').el.set_current_page(1);
+                                                                        this.get('/Terminal').el.fork_command( null , [], [], "/tmp", false,false,false); 
+                                                                        var cmd = "/usr/bin/seed /tmp/BuilderGtkView.js\n";
+                                                                        this.get('/Terminal').el.feed_child(cmd, cmd.length);
+                                                                         /*
+                                                                        var _top = x.get_global_object()._top;
+                                                                        
+                                                                        _top.el.set_screen(Gdk.Screen.get_default()); // just in case..
+                                                                        _top.el.show_all();
+                                                                        if (_top.el.popup) {
+                                                                            _top.el.popup(null, null, null, null, 3, null);
+                                                                        }
+                                                                    */
+                                                                    },
+                                                                    viewAdd : function(item, par)
+                                                                            {
+                                                                        // does something similar to xobject..
+                                                                        item.pack = (typeof(item.pack) == 'undefined') ?  'add' : item.pack;
+                                                                        
+                                                                        if (item.pack===false || item.pack === 'false') {  // no ;
+                                                                            return;
+                                                                        }
+                                                                        print("CREATE: " + item['|xns'] + '.' + item['xtype']);
+                                                                        var type = item['|xns'] + '.' + item['xtype'];
+                                                                        
+                                                                        if (item['|xns'] == 'GtkClutter') { // we can not add this yet!
+                                                                            return false;
+                                                                        }
+                                                                        var ns = imports.gi[item['|xns']];
+                                                                        var ctr = ns[item['xtype']];
+                                                                        var ctr_args = { };
+                                                                        for(var k in item) {
+                                                                            var kv = item[k];
+                                                                            if (typeof(kv) == 'object' || typeof(kv) == 'function') {
                                                                                 continue;
                                                                             }
-                                                                            this.get('/Terminal').feed(lines[i] + "\n");
+                                                                            if ( 
+                                                                                k == 'pack' ||
+                                                                                k == 'items' ||
+                                                                                k == 'id' ||
+                                                                                k == 'xtype' ||
+                                                                                k == 'xdebug' ||
+                                                                                k == 'xns' ||
+                                                                                k == '|xns'
+                                                                            ) {
+                                                                                continue;
+                                                                            }
+                                                                    
+                                                                       if (k[0] == '|' && typeof(kv) == 'string') {
+                                                                    
+                                                                               if (kv.match(new RegExp('function'))) {
+                                                                                       continue;
+                                                                                    }
+                                                                                print("WASL " + k + '=' + kv);
+                                                                               try {
+                                                                                       eval( 'kv = ' + kv);
+                                                                               } catch(e) {    continue; }
+                                                                                    
+                                                                               k = k.substring(1);
+                                                                                 // print(k + '=' + kv);
+                                                                       }
+                                                                            if (k[0] == '|') { // should be boolean or number..
+                                                                               k = k.substring(1);
+                                                                               //print(k + '=' + kv);
+                                                                            }
+                                                                             
+                                                                       if (k == 'show_tabs') { // force tab showing for notebooks.
+                                                                               kv = true;
+                                                                            }
+                                                                            print(k + '=' + typeof(kv) + " : " + kv);
+                                                                            ctr_args[k] = kv;
+                                                                            
+                                                                        } 
+                                                                        
+                                                                        
+                                                                        var el = new ctr(ctr_args);
+                                                                        
+                                                                        print("PACK" + item.pack);
+                                                                        //console.dump(item.pack);
+                                                                        
+                                                                        
+                                                                        
+                                                                        
+                                                                        var args = [];
+                                                                        var pack_m  = false;
+                                                                        if (typeof(item.pack) == 'string') {
+                                                                             
+                                                                            item.pack.split(',').forEach(function(e, i) {
+                                                                                
+                                                                                if (e == 'false') { args.push( false); return; }
+                                                                                if (e == 'true') {  args.push( true);  return; }
+                                                                                if (!isNaN(parseInt(e))) { args.push( parseInt(e)); return; }
+                                                                                args.push(e);
+                                                                            });
+                                                                            //print(args.join(","));
+                                                                            
+                                                                            pack_m = args.shift();
+                                                                        } else {
+                                                                            pack_m = item.pack.shift();
+                                                                            args = item.pack;
                                                                         }
                                                                         
-                                                                    }
+                                                                        // handle error.
+                                                                        if (pack_m && typeof(par[pack_m]) == 'undefined') {
+                                                                            throw {
+                                                                                    name: "ArgumentError", 
+                                                                                    message : 'pack method not available : ' + par.id + " : " + par + '.' +  pack_m +
+                                                                                            "ADDING : " + item.id + " " +  el
+                                                                                        
+                                                                           };
                                                                     
-                                                                    return;
-                                                                }
-                                                                 this.get('/BottomPane').el.set_current_page(1);
-                                                                this.get('/Terminal').el.fork_command( null , [], [], "/tmp", false,false,false); 
-                                                                var cmd = "/usr/bin/seed /tmp/BuilderGtkView.js\n";
-                                                                this.get('/Terminal').el.feed_child(cmd, cmd.length);
-                                                                 /*
-                                                                var _top = x.get_global_object()._top;
-                                                                
-                                                                _top.el.set_screen(Gdk.Screen.get_default()); // just in case..
-                                                                _top.el.show_all();
-                                                                if (_top.el.popup) {
-                                                                    _top.el.popup(null, null, null, null, 3, null);
-                                                                }
-                                                            */
-                                                            },
-                                                            viewAdd : function(item, par)
-                                                                    {
-                                                                // does something similar to xobject..
-                                                                item.pack = (typeof(item.pack) == 'undefined') ?  'add' : item.pack;
-                                                                
-                                                                if (item.pack===false || item.pack === 'false') {  // no ;
-                                                                    return;
-                                                                }
-                                                                print("CREATE: " + item['|xns'] + '.' + item['xtype']);
-                                                                var ns = imports.gi[item['|xns']];
-                                                                var ctr = ns[item['xtype']];
-                                                                var ctr_args = { };
-                                                                for(var k in item) {
-                                                                    var kv = item[k];
-                                                                    if (typeof(kv) == 'object' || typeof(kv) == 'function') {
-                                                                        continue;
-                                                                    }
-                                                                    if ( 
-                                                                        k == 'pack' ||
-                                                                        k == 'items' ||
-                                                                        k == 'id' ||
-                                                                        k == 'xtype' ||
-                                                                        k == 'xdebug' ||
-                                                                        k == 'xns' ||
-                                                                        k == '|xns'
-                                                                    ) {
-                                                                        continue;
-                                                                    }
-                                                            
-                                                               if (k[0] == '|' && typeof(kv) == 'string') {
-                                                            
-                                                                       if (kv.match(new RegExp('function'))) {
-                                                                               continue;
+                                                                            return;
+                                                                        }
+                                                                        
+                                                                        console.dump(args);
+                                                                        args.unshift(el);
+                                                                        //if (XObject.debug) print(pack_m + '[' + args.join(',') +']');
+                                                                        //Seed.print('args: ' + args.length);
+                                                                        if (pack_m) {
+                                                                            par[pack_m].apply(par, args);
+                                                                        }
+                                                                        
+                                                                        var _this = this;
+                                                                        item.items = item.items || [];
+                                                                        item.items.forEach(function(ch,n) {
+                                                                    
+                                                                              print ("type:" + type);
+                                                                              
+                                                                               print ("ch.pack:" + ch.pack);
+                                                                             if (type == 'Gtk.Table' && ch.pack == 'add') {
+                                                                                var c = n % item.n_columns;
+                                                                                var r = Math.floor(n/item.n_columns);
+                                                                                ch.pack = [ 'attach', c, c+1, r, r+1, 
+                                                                                         typeof(ch.x_options) == 'undefined' ?  5 : ch.x_options,
+                                                                                            typeof(ch.y_options) == 'undefined' ?  5 : ch.y_options,
+                                                                                            typeof(ch.x_padding) == 'undefined' ?  0 : ch.x_padding,
+                                                                                            typeof(ch.x_padding) == 'undefined' ?  0 : ch.x_padding
+                                                                                ].join(',');
                                                                             }
-                                                                        print("WASL " + k + '=' + kv);
-                                                                       try {
-                                                                               eval( 'kv = ' + kv);
-                                                                       } catch(e) {    continue; }
+                                                                        
+                                                                            _this.viewAdd(ch, el);
+                                                                        });
+                                                                        
+                                                                        
+                                                                        
+                                                                        // add the signal handlers.
+                                                                        // is it a widget!?!!?
+                                                                       
+                                                                        
+                                                                        try {
+                                                                             
                                                                             
-                                                                       k = k.substring(1);
-                                                                          print(k + '=' + kv);
-                                                               }
-                                                                    if (k[0] == '|') { // should be boolean or number..
-                                                                       k = k.substring(1);
-                                                                    }
-                                                               if (k == 'show_tabs') { // force tab showing for notebooks.
-                                                                       kv = true;
-                                                                    }
-                                                                    ctr_args[k] = kv;
+                                                                            el.signal.expose_event.connect(XObject.createDelegate(this.widgetExposeEvent, this, [ item  ], true));
+                                                                            el.signal.drag_motion.connect(XObject.createDelegate(this.widgetDragMotionEvent, this,[ item  ], true));
+                                                                            el.signal.drag_drop.connect(XObject.createDelegate(this.widgetDragDropEvent, this, [ item  ], true));
+                                                                            el.signal.button_press_event.connect(XObject.createDelegate(this.widgetPressEvent, this, [ item  ], true ));
+                                                                      el.signal.button_release_event.connect(XObject.createDelegate(this.widgetReleaseEvent, this, [ item  ], true ));
+                                                                        } catch(e) {
+                                                                            // ignore!
+                                                                           }
+                                                                        
+                                                                        
+                                                                        
+                                                                        return el;
+                                                                        
+                                                                    },
+                                                                    widgetDragDropEvent : function() {
+                                                                          print("WIDGET DRAGDROP"); 
+                                                                                return true;
+                                                                    },
+                                                                    widgetDragMotionEvent : function() {
+                                                                         print("WIDGET DRAGMOTION"); 
+                                                                                return true;
+                                                                    },
+                                                                    widgetExposeEvent : function(w, evt, ud, item) {
+                                                                        var widget = w;
+                                                                         if (this.inRender) {
+                                                                             return false;
+                                                                         }
+                                                                         
+                                                                         if ( this.highlightWidget) {
+                                                                              this.inRender = true;
+                                                                              if (item.xtreepath.substring(0, this.activePath.length) == this.activePath) {
+                                                                                     Gdk.draw_rectangle(this.highlightWidget.window, this.gc, false, this.box.x , this.box.y, this.box.w, this.box.h);
+                                                                                }
+                                                                               this.inRender = false;
+                                                                               return false;
+                                                                         }
+                                                                         
+                                                                         
+                                                                         if (this.activePath != item.xtreepath) {
+                                                                            return false;
+                                                                         }
+                                                                         
+                                                                       //  print("HIGHLIGHT: " + item.xtreepath ); // draw highlight??
+                                                                         // work out the coords of the window..
+                                                                         if (!this.gc) {
+                                                                          var dr = widget.window;
+                                                                          this.gc = (new Gdk.GC.c_new(dr));
+                                                                          this.gc.set_rgb_fg_color(new Gdk.Color({ red: 0xFFFF, green: 0, blue : 0 }));
+                                                                          this.gc.set_line_attributes(4,  Gdk.LineStyle.SOLID, Gdk.CapStyle.ROUND , Gdk.JoinStyle.ROUND);
+                                                                        }
                                                                     
-                                                                } 
-                                                                
-                                                                
-                                                                var el = new ctr(ctr_args);
-                                                                
-                                                                //print("PACK");
-                                                                //console.dump(item.pack);
-                                                                
-                                                                
-                                                                
-                                                                
-                                                                var args = [];
-                                                                var pack_m  = false;
-                                                                if (typeof(item.pack) == 'string') {
-                                                                     
-                                                                    item.pack.split(',').forEach(function(e, i) {
-                                                                        
-                                                                        if (e == 'false') { args.push( false); return; }
-                                                                        if (e == 'true') {  args.push( true);  return; }
-                                                                        if (!isNaN(parseInt(e))) { args.push( parseInt(e)); return; }
-                                                                        args.push(e);
-                                                                    });
-                                                                    //print(args.join(","));
+                                                                        
+                                                                         var r  = evt.expose.area;
+                                                                         // console.dump([r.x, r.y, r.width, r.height ] );
+                                                                         //return false;
+                                                                    //     print(widget.get_parent().toString().match(/GtkScrolledWindow/);
+                                                                         if (widget.get_parent().toString().match(/GtkScrolledWindow/)) { // eak
+                                                                             // happens with gtkscrollview embedded stuff..
+                                                                             var np =this.activePath.split(':');
+                                                                             np.pop();
+                                                                             this.activePath = np.join(':');
+                                                                             this.renderedEl.queue_draw();
+                                                                             return true;
                                                                     
-                                                                    pack_m = args.shift();
-                                                                } else {
-                                                                    pack_m = item.pack.shift();
-                                                                    args = item.pack;
-                                                                }
-                                                                
-                                                                // handle error.
-                                                                if (pack_m && typeof(par[pack_m]) == 'undefined') {
-                                                                    throw {
-                                                                            name: "ArgumentError", 
-                                                                            message : 'pack method not available : ' + par.id + " : " + par + '.' +  pack_m +
-                                                                                    "ADDING : " + item.id + " " +  el
-                                                                                
-                                                                   };
-                                                            
-                                                                    return;
-                                                                }
-                                                                
-                                                                console.dump(args);
-                                                                args.unshift(el);
-                                                                //if (XObject.debug) print(pack_m + '[' + args.join(',') +']');
-                                                                //Seed.print('args: ' + args.length);
-                                                                if (pack_m) {
-                                                                    par[pack_m].apply(par, args);
-                                                                }
-                                                                
-                                                                var _this = this;
-                                                                item.items = item.items || [];
-                                                                item.items.forEach(function(ch) {
-                                                                    _this.viewAdd(ch, el);
-                                                                });
-                                                                
-                                                                
-                                                                
-                                                                // add the signal handlers.
-                                                                // is it a widget!?!!?
-                                                               
-                                                                
-                                                                try {
+                                                                            
+                                                                         }
+                                                                    
+                                                                           
+                                                                         
+                                                                         
+                                                                          this.box = {
+                                                                            x : r.x - 2,
+                                                                            y : r.y - 2,
+                                                                            w: r.width + 4,
+                                                                            h: r.height + 4
+                                                                          }; 
+                                                                          // let's draw it..
+                                                                          this.inRender = true;
+                                                                    
+                                                                          
+                                                                          this.highlightWidget = widget;
+                                                                        
+                                                                        
                                                                      
                                                                     
-                                                                    el.signal.expose_event.connect(XObject.createDelegate(this.widgetExposeEvent, this, [ item  ], true));
-                                                                    el.signal.drag_motion.connect(XObject.createDelegate(this.widgetDragMotionEvent, this,[ item  ], true));
-                                                                    el.signal.drag_drop.connect(XObject.createDelegate(this.widgetDragDropEvent, this, [ item  ], true));
-                                                                    el.signal.button_press_event.connect(XObject.createDelegate(this.widgetPressEvent, this, [ item  ], true ));
-                                                              el.signal.button_release_event.connect(XObject.createDelegate(this.widgetReleaseEvent, this, [ item  ], true ));
-                                                                } catch(e) {
-                                                                    // ignore!
-                                                                   }
-                                                                
-                                                                
-                                                                
-                                                                return el;
-                                                                
-                                                            },
-                                                            widgetExposeEvent : function() {
-                                                               ///   print("WIDGET EXPOSE"); // draw highlight??
-                                                                        return false;
-                                                            },
-                                                            widgetDragMotionEvent : function() {
-                                                                 print("WIDGET DRAGMOTION"); 
-                                                                        return true;
-                                                            },
-                                                            widgetDragDropEvent : function() {
-                                                                  print("WIDGET DRAGDROP"); 
-                                                                        return true;
-                                                            },
-                                                            widgetPressEvent : function(w,e,u,d) {
-                                                                 if (this.get('view').pressed) {
-                                                                    return false;
-                                                                 }
-                                                            this.get('view').pressed = true;
-                                                                  print("WIDGET PRESS " + d.xtreepath );       
-                                                                      this.get('/LeftTree.view').selectNode(   d.xtreepath );        
-                                                                        return false;
-                                                            },
-                                                            widgetReleaseEvent : function() {
-                                                                this.get('view').pressed = false;
-                                                               return false;
-                                                            },
-                                                            items : [
-                                                                {
-                                                                    xtype: Gtk.HBox,
-                                                                    pack : "pack_start,false,true,0",
+                                                                        //  print("DRAW BOX");
+                                                                           //console.dump(this.box);
+                                                                          Gdk.draw_rectangle(widget.window, this.gc, false, this.box.x , this.box.y, this.box.w,this.box.h);
+                                                                                this.inRender = false;
+                                                                                return false;
+                                                                    },
+                                                                    widgetPressEvent : function(w,e,u,d) {
+                                                                         if (this.get('view').pressed) {
+                                                                            return false;
+                                                                         }
+                                                                    this.get('view').pressed = true;
+                                                                          print("WIDGET PRESS " + d.xtreepath );       
+                                                                              this.get('/LeftTree.view').selectNode(   d.xtreepath );        
+                                                                                return false;
+                                                                    },
+                                                                    widgetReleaseEvent : function() {
+                                                                        this.get('view').pressed = false;
+                                                                       return false;
+                                                                    },
                                                                     items : [
                                                                         {
-                                                                            xtype: Gtk.Button,
-                                                                            pack : "pack_start,false,false,0",
-                                                                            label : "Run The Application",
-                                                                            listeners : {
-                                                                                "button_press_event":function (self, event) {
-                                                                                  // call render on left tree - with special option!?!
-                                                                                 
-                                                                                
-                                                                                
-                                                                                       print("GET PROEJCT");
-                                                                                       var pr = this.get('/LeftProjectTree').getActiveProject();
-                                                                                  
-                                                                                var dir = '';
-                                                                                 for (var i in pr.paths) { 
-                                                                                      dir = i;
-                                                                                      break;
-                                                                                  }
-                                                                                   var runner = GLib.path_get_dirname (__script_path__) + '/gtkrun.js'; 
-                                                                                   print ("RUN DIR:" + dir);
-                                                                                   
-                                                                                   this.get('/BottomPane').el.set_current_page(1);
-                                                                                    this.get('/Terminal').el.fork_command( null , [], [], GLib.path_get_dirname (__script_path__) 
-                                                                                       , false,false,false); 
-                                                                                    var cmd = "/usr/bin/seed " + runner + " " + dir + "\n";
-                                                                                    this.get('/Terminal').el.feed_child(cmd, cmd.length);
-                                                                                    return false;
-                                                                                  
-                                                                                
+                                                                            xtype: Gtk.HBox,
+                                                                            pack : "pack_start,false,true,0",
+                                                                            items : [
+                                                                                {
+                                                                                    xtype: Gtk.Button,
+                                                                                    pack : "pack_start,false,false,0",
+                                                                                    label : "Run The Application",
+                                                                                    listeners : {
+                                                                                        button_press_event : function (self, event) {
+                                                                                            // call render on left tree - with special option!?!
+                                                                                         
+                                                                                            //print("GET PROEJCT");
+                                                                                            var pr = this.get('/LeftProjectTree').getActiveProject();
+                                                                                          
+                                                                                            var dir = '';
+                                                                                            for (var i in pr.paths) { 
+                                                                                                dir = i;
+                                                                                                break;
+                                                                                            }
+                                                                                            var runner = GLib.path_get_dirname (__script_path__) + '/gtkrun.js'; 
+                                                                                            this.get('/Terminal').feed("RUN DIR:" + dir);
+                                                                                            
+                                                                                            this.get('/Terminal').el.fork_command( null , [], [], GLib.path_get_dirname (__script_path__) 
+                                                                                               , false,false,false); 
+                                                                                            var cmd = "/usr/bin/seed " + runner + " " + dir + "\n";
+                                                                                            this.get('/Terminal').el.feed_child(cmd, cmd.length);
+                                                                                            return false;
+                                                                                          
+                                                                                        
+                                                                                        }
+                                                                                    }
                                                                                 }
-                                                                            }
-                                                                        }
-                                                                    ]
-                                                                },
-                                                                {
-                                                                    xtype: Gtk.ScrolledWindow,
-                                                                    pack : "add",
-                                                                    id : "view-sw",
-                                                                    shadow_type : Gtk.ShadowType.IN,
-                                                                    init : function() {
-                                                                        XObject.prototype.init.call(this);
-                                                                     this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
-                                                                    },
-                                                                    items : [
+                                                                            ]
+                                                                        },
                                                                         {
-                                                                            xtype: Gtk.EventBox,
+                                                                            xtype: Gtk.ScrolledWindow,
                                                                             pack : "add",
+                                                                            id : "view-sw",
+                                                                            shadow_type : Gtk.ShadowType.IN,
                                                                             init : function() {
                                                                                 XObject.prototype.init.call(this);
-                                                                            this.el.modify_bg(Gtk.StateType.NORMAL, new Gdk.Color({
-                                                                                        red: 0x9F00, green: 0xB800 , blue : 0xA800
-                                                                                       }));
+                                                                             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
                                                                             },
                                                                             items : [
                                                                                 {
-                                                                                    xtype: Gtk.Fixed,
-                                                                                    pack : "add",
+                                                                                    xtype: Gtk.EventBox,
+                                                                                    pack : "add_with_viewport",
                                                                                     init : function() {
-                                                                                       XObject.prototype.init.call(this);
-                                                                                       //this.el.set_hadjustment(this.parent.el.get_hadjustment());
-                                                                                       //this.el.set_vadjustment(this.parent.el.get_vadjustment());
-                                                                                     
+                                                                                        XObject.prototype.init.call(this);
+                                                                                    this.el.modify_bg(Gtk.StateType.NORMAL, new Gdk.Color({
+                                                                                                red: 0x9F00, green: 0xB800 , blue : 0xA800
+                                                                                               }));
                                                                                     },
                                                                                     items : [
                                                                                         {
-                                                                                            xtype: Gtk.EventBox,
-                                                                                            pack : "put,10,10",
+                                                                                            xtype: Gtk.Fixed,
+                                                                                            pack : "add",
                                                                                             init : function() {
-                                                                                               //this.el =     new Gtk.Image.from_stock (Gtk.STOCK_HOME,  Gtk.IconSize.MENU);
                                                                                                XObject.prototype.init.call(this);
-                                                                                            
-                                                                                                        Gtk.drag_dest_set
-                                                                                                        (
-                                                                                                                this.el,              /* widget that will accept a drop */
-                                                                                                                Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
-                                                                                                                null,            /* lists of target to support */
-                                                                                                                0,              /* size of list */
-                                                                                                                Gdk.DragAction.COPY         /* what to do with data after dropped */
-                                                                                                        );
-                                                                                                        
-                                                                                                       // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
-                                                                                                        Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
-                                                                                            },
-                                                                                            ready : false,
-                                                                                            getActiveNode : function(x,y)
-                                                                                            {
-                                                                                               // workout what node is here..
-                                                                                                return '0'; // top..
+                                                                                               //this.el.set_hadjustment(this.parent.el.get_hadjustment());
+                                                                                               //this.el.set_vadjustment(this.parent.el.get_vadjustment());
+                                                                                             
                                                                                             },
-                                                                                            id : "view",
-                                                                                            listeners : {
-                                                                                                "drag_motion":function (self, ctx, x, y, time) {
+                                                                                            items : [
+                                                                                                {
+                                                                                                    xtype: Gtk.EventBox,
+                                                                                                    pack : "put,10,10",
+                                                                                                    init : function() {
+                                                                                                       //this.el =     new Gtk.Image.from_stock (Gtk.STOCK_HOME,  Gtk.IconSize.MENU);
+                                                                                                       XObject.prototype.init.call(this);
                                                                                                     
-                                                                                                                // A) find out from drag all the places that node could be dropped.
-                                                                                                                var src = Gtk.drag_get_source_widget(ctx);
-                                                                                                                if (!src.dropList) {
-                                                                                                                    Gdk.drag_status(ctx, 0, time);
-                                                                                                                    return true;
-                                                                                                                }
-                                                                                                                // b) get what we are over.. (from activeNode)
-                                                                                                                // tree is empty.. - list should be correct..
-                                                                                                                if (!this.get('/LeftTree.model').currentTree) {
-                                                                                                                    Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
-                                                                                                                    return true;
-                                                                                                                    
-                                                                                                                }
-                                                                                                                // c) ask tree where it should be dropped... - eg. parent.. (after node ontop)
-                                                                                                                var activeNode = this.getActiveNode(x, y);
+                                                                                                                Gtk.drag_dest_set
+                                                                                                                (
+                                                                                                                        this.el,              /* widget that will accept a drop */
+                                                                                                                        Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
+                                                                                                                        null,            /* lists of target to support */
+                                                                                                                        0,              /* size of list */
+                                                                                                                        Gdk.DragAction.COPY         /* what to do with data after dropped */
+                                                                                                                );
                                                                                                                 
+                                                                                                               // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
+                                                                                                                Gtk.drag_dest_set_target_list(this.el, this.get('/Window').targetList);
+                                                                                                    },
+                                                                                                    ready : false,
+                                                                                                    getActiveNode : function(x,y)
+                                                                                                    {
+                                                                                                       // workout what node is here..
+                                                                                                        return '0'; // top..
+                                                                                                    },
+                                                                                                    id : "view",
+                                                                                                    listeners : {
+                                                                                                        drag_motion : function (self, ctx, x, y, time) {
+                                                                                                            
+                                                                                                                        // A) find out from drag all the places that node could be dropped.
+                                                                                                                        var src = Gtk.drag_get_source_widget(ctx);
+                                                                                                                        if (!src.dropList) {
+                                                                                                                            Gdk.drag_status(ctx, 0, time);
+                                                                                                                            return true;
+                                                                                                                        }
+                                                                                                                        // b) get what we are over.. (from activeNode)
+                                                                                                                        // tree is empty.. - list should be correct..
+                                                                                                                        if (!this.get('/LeftTree.model').currentTree) {
+                                                                                                                            Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
+                                                                                                                            return true;
+                                                                                                                            
+                                                                                                                        }
+                                                                                                                        // c) ask tree where it should be dropped... - eg. parent.. (after node ontop)
+                                                                                                                        var activeNode = this.getActiveNode(x, y);
+                                                                                                                        
+                                                                                                                        
+                                                                                                                        var tg = this.get('/LeftTree.model').findDropNode(activeNode, src.dropList);
+                                                                                                                        console.dump(tg);
+                                                                                                                        if (!tg.length) {
+                                                                                                                            Gdk.drag_status(ctx, 0,time);
+                                                                                                                            this.get('/LeftTree.view').highlight(false);
+                                                                                                                            return true;
+                                                                                                                        }
+                                                                                                                         
+                                                                                                                        // if we have a target..
+                                                                                                                        // -> highlight it! (in browser)
+                                                                                                                        // -> highlight it! (in tree)
+                                                                                                                        
+                                                                                                                        Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
+                                                                                                                        this.get('/LeftTree.view').highlight(tg);
+                                                                                                                        this.targetData = tg;
+                                                                                                                        // for tree we should handle this...
+                                                                                                                        return true;
+                                                                                                        },
+                                                                                                        drag_drop : function (self,ctx, x, y, time) {
+                                                                                                               Seed.print("TARGET: drag-drop");
+                                                                                                                var is_valid_drop_site = true;
                                                                                                                 
-                                                                                                                var tg = this.get('/LeftTree.model').findDropNode(activeNode, src.dropList);
-                                                                                                                console.dump(tg);
-                                                                                                                if (!tg.length) {
-                                                                                                                    Gdk.drag_status(ctx, 0,time);
-                                                                                                                    this.get('/LeftTree.view').highlight(false);
-                                                                                                                    return true;
-                                                                                                                }
                                                                                                                  
-                                                                                                                // if we have a target..
-                                                                                                                // -> highlight it! (in browser)
-                                                                                                                // -> highlight it! (in tree)
+                                                                                                                Gtk.drag_get_data
+                                                                                                                (
+                                                                                                                        self,         /* will receive 'drag-data-received' signal */
+                                                                                                                        ctx,        /* represents the current state of the this.gDnD */
+                                                                                                                        this.get('/Window').atoms["STRING"],    /* the target type we want */
+                                                                                                                        time            /* time stamp */
+                                                                                                                );
                                                                                                                 
-                                                                                                                Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
-                                                                                                                this.get('/LeftTree.view').highlight(tg);
-                                                                                                                this.targetData = tg;
-                                                                                                                // for tree we should handle this...
-                                                                                                                return true;
-                                                                                                },
-                                                                                                "drag_drop":function (self,ctx, x, y, time) {
-                                                                                                       Seed.print("TARGET: drag-drop");
-                                                                                                        var is_valid_drop_site = true;
+                                                                                                                
+                                                                                                                /* No target offered by source => error */
+                                                                                                               
                                                                                                         
-                                                                                                         
-                                                                                                        Gtk.drag_get_data
-                                                                                                        (
-                                                                                                                self,         /* will receive 'drag-data-received' signal */
-                                                                                                                ctx,        /* represents the current state of the this.gDnD */
-                                                                                                                this.get('/Window').atoms["STRING"],    /* the target type we want */
-                                                                                                                time            /* time stamp */
-                                                                                                        );
+                                                                                                                return  is_valid_drop_site;
+                                                                                                          
+                                                                                                        },
+                                                                                                        drag_data_received : function (w, ctx,  x,  y, sel_data,  target_type,  time, ud) 
+                                                                                                            {
+                                                                                                                Seed.print("GtkView: drag-data-received");
+                                                                                                                var delete_selection_data = false;
+                                                                                                                var dnd_success = false;
+                                                                                                                /* Deal with what we are given from source */
+                                                                                                                if( sel_data && sel_data.length ) {
+                                                                                                                    
+                                                                                                                    if (ctx.action == Gdk.DragAction.ASK)  {
+                                                                                                                        /* Ask the user to move or copy, then set the ctx action. */
+                                                                                                                    }
                                                                                                         
+                                                                                                                    if (ctx.action == Gdk.DragAction.MOVE) {
+                                                                                                                        delete_selection_data = true;
+                                                                                                                    }
+                                                                                                                    var source = Gtk.drag_get_source_widget(ctx);
                                                                                                         
-                                                                                                        /* No target offered by source => error */
-                                                                                                       
-                                                                                                
-                                                                                                        return  is_valid_drop_site;
-                                                                                                  
-                                                                                                },
-                                                                                                "drag_data_received":function (w, ctx,  x,  y, sel_data,  target_type,  time, ud) 
-                                                                                                    {
-                                                                                                        Seed.print("GtkView: drag-data-received");
-                                                                                                        var delete_selection_data = false;
-                                                                                                        var dnd_success = false;
-                                                                                                        /* Deal with what we are given from source */
-                                                                                                        if( sel_data && sel_data.length ) {
-                                                                                                            
-                                                                                                            if (ctx.action == Gdk.DragAction.ASK)  {
-                                                                                                                /* Ask the user to move or copy, then set the ctx action. */
-                                                                                                            }
-                                                                                                
-                                                                                                            if (ctx.action == Gdk.DragAction.MOVE) {
-                                                                                                                delete_selection_data = true;
-                                                                                                            }
-                                                                                                            var source = Gtk.drag_get_source_widget(ctx);
-                                                                                                
-                                                                                                            Seed.print("Browser: source.DRAGDATA? " + source.dragData);
-                                                                                                            if (this.targetData) {
-                                                                                                                Seed.print(this.targetData);
-                                                                                                                this.get('/LeftTree.model').dropNode(this.targetData,  source.dragData);
-                                                                                                            }
-                                                                                                            
-                                                                                                            
-                                                                                                            
-                                                                                                            dnd_success = true;
-                                                                                                
-                                                                                                        }
-                                                                                                
-                                                                                                        if (dnd_success == false)
-                                                                                                        {
-                                                                                                                Seed.print ("DnD data transfer failed!\n");
-                                                                                                        }
+                                                                                                                    Seed.print("Browser: source.DRAGDATA? " + source.dragData);
+                                                                                                                    if (this.targetData) {
+                                                                                                                        Seed.print(this.targetData);
+                                                                                                                        this.get('/LeftTree.model').dropNode(this.targetData,  source.dragData);
+                                                                                                                    }
+                                                                                                                    
+                                                                                                                    
+                                                                                                                    
+                                                                                                                    dnd_success = true;
                                                                                                         
-                                                                                                        Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
-                                                                                                        return true;
-                                                                                                    },
-                                                                                                "button_press_event":function (self, event) {
-                                                                                                  this.pressed = false;
-                                                                                                    return false;
+                                                                                                                }
+                                                                                                        
+                                                                                                                if (dnd_success == false)
+                                                                                                                {
+                                                                                                                        Seed.print ("DnD data transfer failed!\n");
+                                                                                                                }
+                                                                                                                
+                                                                                                                Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
+                                                                                                                return true;
+                                                                                                            },
+                                                                                                        button_press_event : function (self, event) {
+                                                                                                          this.pressed = false;
+                                                                                                            return false;
+                                                                                                        }
+                                                                                                    }
                                                                                                 }
-                                                                                            }
+                                                                                            ]
                                                                                         }
                                                                                     ]
                                                                                 }
@@ -3022,6 +3685,44 @@ Window=new XObject({
                                                                     ]
                                                                 }
                                                             ]
+                                                        },
+                                                        {
+                                                            xtype: Gtk.ScrolledWindow,
+                                                            id : "Help",
+                                                            pack : "add",
+                                                            show : function() {
+                                                                
+                                                                var file = this.get('/LeftTree').getActiveFile();
+                                                                if (!file) {
+                                                                    return;
+                                                                }
+                                                                var activeEl = this.get('/LeftTree').getActiveElement();
+                                                                var xtype = file.guessName( activeEl )
+                                                                if (!xtype || !xtype.length) {
+                                                                    return;
+                                                                }
+                                                                //this.get('/Window.view-help-nb').el.set_current_page(1);
+                                                                
+                                                                // get the active element being edited.
+                                                                var helpurl = file.getHelpUrl(xtype);       
+                                                                
+                                                                // now load the help info in the page..
+                                                                this.get('help-view').el.open(helpurl);
+                                                            },
+                                                            items : [
+                                                                {
+                                                                    xtype: WebKit.WebView,
+                                                                    pack : "add",
+                                                                    id : "help-view",
+                                                                    init : function() {
+                                                                        XObject.prototype.init.call(this);
+                                                                       this.get('/Window.help-view').el.open(
+                                                                         "http://devel.akbkhome.com/seed/");
+                                                                    
+                                                                    },
+                                                                    zoom_level : 0.8
+                                                                }
+                                                            ]
                                                         }
                                                     ]
                                                 }
@@ -3029,85 +3730,37 @@ Window=new XObject({
                                         },
                                         {
                                             xtype: Gtk.Notebook,
+                                            id : "BottomPane",
                                             pack : "add",
                                             init : function() {
                                                 XObject.prototype.init.call(this);
-                                               this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Code Editor" }));
-                                                       this.el.set_tab_label(this.items[1].el, new Gtk.Label({ label : "Console" }));
+                                               //this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Code Editor" }));
+                                                       this.el.set_tab_label(this.items[0].el, new Gtk.Label({ label : "Console" }));
+                                                       this.el.set_tab_label(this.items[1].el, new Gtk.Label({ label : "Inspector" }));
                                             },
-                                            id : "BottomPane",
                                             items : [
                                                 {
                                                     xtype: Gtk.ScrolledWindow,
                                                     pack : "add",
-                                                    id : "RightEditor",
                                                     items : [
                                                         {
-                                                            xtype: GtkSource.View,
+                                                            xtype: Vte.Terminal,
                                                             pack : "add",
-                                                            id : "view",
-                                                            init : function() {
-                                                                XObject.prototype.init.call(this);
-                                                                 var description = Pango.Font.description_from_string("monospace")
-                                                                description.set_size(8000);
-                                                                this.el.modify_font(description);
+                                                            id : "Terminal",
+                                                            feed : function(istr) {
+                                                                var str = istr.replace(/\n/g, "\r\n") + "\r\n";
+                                                                // we should make ourselves visable!!!
+                                                                this.get('/BottomPane').el.show();
+                                                                this.get('/BottomPane').el.set_current_page(1);
                                                             
+                                                                this.el.feed(str ,str.length);
                                                             },
-                                                            load : function(str) {
-                                                               this.get('/BottomPane').el.set_current_page(0);
-                                                                this.el.get_buffer().set_text(str, str.length);
-                                                                var lm = GtkSource.LanguageManager.get_default();
-                                                                
-                                                                this.el.get_buffer().set_language(lm.get_language('js'));
-                                                                var buf = this.el.get_buffer();
-                                                                var cursor = buf.get_mark("insert");
-                                                                var iter= new Gtk.TextIter;
-                                                                buf.get_iter_at_mark(iter, cursor);
-                                                                iter.set_line(1);
-                                                                iter.set_line_offset(4);
-                                                                buf.move_mark(cursor, iter);
-                                                                
-                                                                
-                                                                cursor = buf.get_mark("selection_bound");
-                                                                iter= new Gtk.TextIter;
-                                                                buf.get_iter_at_mark(iter, cursor);
-                                                                iter.set_line(1);
-                                                                iter.set_line_offset(4);
-                                                                buf.move_mark(cursor, iter);
-                                                                 
-                                                                this.el.grab_focus();
+                                                            scroll_on_output : true,
+                                                            init : function() {
+                                                                XObject.prototype.init.call(this);
+                                                                this.el.set_size (80, 1000);
                                                             },
-                                                            items : [
-                                                                {
-                                                                    xtype: GtkSource.Buffer,
-                                                                    pack : "set_buffer",
-                                                                    listeners : {
-                                                                        "changed":function (self) {
-                                                                            var s = new Gtk.TextIter();
-                                                                            var e = new Gtk.TextIter();
-                                                                            this.el.get_start_iter(s);
-                                                                            this.el.get_end_iter(e);
-                                                                            var str = this.el.get_text(s,e,true);
-                                                                            try {
-                                                                                Seed.check_syntax('var e = ' + str);
-                                                                            } catch (e) {
-                                                                                this.get('/RightEditor.view').el.modify_base(Gtk.StateType.NORMAL, new Gdk.Color({
-                                                                                    red: 0xFFFF, green: 0xCCCC , blue : 0xCCCC
-                                                                                   }));
-                                                                                print("SYNTAX ERROR IN EDITOR");   
-                                                                                print(e);
-                                                                                console.dump(e);
-                                                                                return;
-                                                                            }
-                                                                            this.get('/RightEditor.view').el.modify_base(Gtk.StateType.NORMAL, new Gdk.Color({
-                                                                                    red: 0xFFFF, green: 0xFFFF , blue : 0xFFFF
-                                                                                   }));
-                                                                            
-                                                                             this.get('/LeftPanel.model').changed(  str , false);
-                                                                        }
-                                                                    }
-                                                                }
-                                                            ]
+                                                            scrollback_lines : 1000
                                                         }
                                                     ]
                                                 },
@@ -3116,12 +3769,9 @@ Window=new XObject({
                                                     pack : "add",
                                                     items : [
                                                         {
-                                                            xtype: Vte.Terminal,
-                                                            pack : "add",
-                                                            id : "Terminal",
-                                                            feed : function(str) {
-                                                                this.el.feed(str,str.length);
-                                                            }
+                                                            xtype: WebKit.WebView,
+                                                            id : "inspector",
+                                                            pack : "add"
                                                         }
                                                     ]
                                                 }
@@ -3156,7 +3806,7 @@ Window=new XObject({
                                                     xtype: Gtk.Button,
                                                     pack : "pack_start,false,true",
                                                     listeners : {
-                                                        "clicked":function (self) {
+                                                        clicked : function (self) {
                                                                this.get('/RightPalete').show();
                                                         }
                                                     },
@@ -3179,7 +3829,7 @@ Window=new XObject({
                                                         this.el.add_events ( Gdk.EventMask.BUTTON_MOTION_MASK );
                                                     },
                                                     listeners : {
-                                                        "enter_notify_event":function (self, event) {
+                                                        enter_notify_event : function (self, event) {
                                                             this.get('/RightPalete').show();
                                                             return false;
                                                         }
@@ -3205,7 +3855,7 @@ Window=new XObject({
                                                             xtype: Gtk.Button,
                                                             pack : "pack_start,false,true",
                                                             listeners : {
-                                                                "clicked":function (self) {
+                                                                clicked : function (self) {
                                                                        this.get('/RightPalete').hide();
                                                                 }
                                                             },
@@ -3275,7 +3925,7 @@ Window=new XObject({
                                                             headers_visible : false,
                                                             enable_tree_lines : true,
                                                             listeners : {
-                                                                "drag_begin":function (self, ctx) {
+                                                                drag_begin : function (self, ctx) {
                                                                     // we could fill this in now...
                                                                         Seed.print('SOURCE: drag-begin');
                                                                         
@@ -3309,7 +3959,7 @@ Window=new XObject({
                                                                         
                                                                         return true;
                                                                 },
-                                                                "drag_data_get":function (self, drag_context, selection_data, info, time) {
+                                                                drag_data_get : function (self, drag_context, selection_data, info, time) {
                                                                        //Seed.print('Palete: drag-data-get: ' + target_type);
                                                                         if (this.el.dragData && this.el.dragData.length ) {
                                                                             selection_data.set_text(this.el.dragData ,this.el.dragData.length);
@@ -3320,7 +3970,7 @@ Window=new XObject({
                                                                         
                                                                         
                                                                 },
-                                                                "drag_end":function (self, drag_context) {
+                                                                drag_end : function (self, drag_context) {
                                                                        Seed.print('SOURCE: drag-end');
                                                                        this.el.dragData = false;
                                                                        this.el.dropList = false;