src/Builder4/Editor.bjs
[app.Builder.js] / src / Builder4 / Editor.vala
index 56ae416..63980fc 100644 (file)
@@ -106,41 +106,37 @@ public class Editor : Object
         return true;
     
     }
-    public void showPlainFile (string fname)
+    public   void show (JsRender.JsRender file, JsRender.Node node, string ptype, string key)
     {
+        this.file = file;    
         this.ptype = "";
         this.key  = "";
         this.node = null;
-        this.file = null;
-        this.fname = fname;
-        string str;
-        try {
-            GLib.FileUtils.get_contents(fname, out str);
-        } catch (Error e) {
-            str = ""; // a tad dangerios... - perhaps we should block editing...
-        }
-        
-        this.view.load(str);
-        this.key_edit.el.text = "";    
     
-    }
-    public   void show (JsRender.JsRender file, JsRender.Node node, string ptype, string key)
-    {
-        this.ptype = ptype;
-        this.key  = key;
-        this.node = node;
-        this.file = file;
         
-       string val = "";
-        // find the text for the node..
-        if (ptype == "listener") {
-            val = node.listeners.get(key);
+        if (file.xtype != "PlainFile") {
+        
+            this.ptype = ptype;
+            this.key  = key;
+            this.node = node;
+             string val = "";
+            // find the text for the node..
+            if (ptype == "listener") {
+                val = node.listeners.get(key);
+            
+            } else {
+                val = node.props.get(key);
+            }
+            this.view.load(val);
+    
         
         } else {
-            val = node.props.get(key);
+            this.view.load(        file.toSource() );
+    
         }
-        this.view.load(val);
-        this.key_edit.el.text = key;    
+        this.key_edit.el.text = key;  
+        
+        
     
     }
     public class Xcls_Box2 : Object
@@ -411,6 +407,7 @@ public class Editor : Object
 
         // user defined functions
         public bool highlightErrors ( Gee.HashMap<int,string> validate_res) {
+                 
                 this.error_line = validate_res.size;
         
                 if (this.error_line < 1) {
@@ -428,7 +425,7 @@ public class Editor : Object
                     }
                     this.el.get_iter_at_line( out iter, eline);
                     //print("mark line\n");
-                    this.el.create_source_mark(valiter.get_value(), "error", iter);
+                    this.el.create_source_mark(valiter.get_value(), "ERR", iter);
                 }   
                 return false;
             }
@@ -491,7 +488,7 @@ public class Editor : Object
             
             }
            if (_this.file == null) {
-               return;
+               return true;
            }
             var p = Palete.factory(_this.file.xtype);