resources/RooUsage.txt
[app.Builder.js] / src / Builder4 / GtkView.vala
index 433d7de..9851abb 100644 (file)
@@ -1,8 +1,8 @@
 static Xcls_GtkView  _GtkView;
 
-public class Xcls_GtkView : Object 
+public class Xcls_GtkView : Object
 {
-    public Gtk.VBox el;
+    public Gtk.Box el;
     private Xcls_GtkView  _this;
 
     public static Xcls_GtkView singleton()
@@ -12,6 +12,7 @@ public class Xcls_GtkView : Object
         }
         return _GtkView;
     }
+    public Xcls_notebook notebook;
     public Xcls_label_preview label_preview;
     public Xcls_label_code label_code;
     public Xcls_view_layout view_layout;
@@ -21,57 +22,90 @@ public class Xcls_GtkView : Object
         // my vars (def)
     public Gtk.Widget lastObj;
     public int width;
+    public int last_search_end;
+    public Gtk.SourceSearchContext searchcontext;
     public JsRender.JsRender file;
     public int height;
     public Xcls_MainWindow main_window;
 
-    // ctor 
+    // ctor
     public Xcls_GtkView()
     {
         _this = this;
-        this.el = new Gtk.VBox( true, 0 );
+        this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
 
         // my vars (dec)
         this.lastObj = null;
         this.width = 0;
+        this.last_search_end = 0;
         this.file = null;
         this.height = 0;
 
         // set gobject values
-        var child_0 = new Xcls_Notebook2( _this );
+        this.el.hexpand = true;
+        var child_0 = new Xcls_notebook( _this );
         child_0.ref();
         this.el.pack_start (  child_0.el , true,true,0 );
 
-        // listeners 
+        //listeners
         this.el.size_allocate.connect( (aloc) => {
-        
+         
             this.width = aloc.width;
             this.height =aloc.height;
-            });
+        });
     }
 
-    // user defined functions 
+    // user defined functions
+    public void scroll_to_line (int line) {
+       this.notebook.el.page = 1;// code preview...
+       
+       GLib.Timeout.add(500, () => {
+       
+       
+          
+          
+                 var buf = this.sourceview.el.get_buffer();
+        
+               var sbuf = (Gtk.SourceBuffer) buf;
+    
+    
+               Gtk.TextIter iter;   
+               sbuf.get_iter_at_line(out iter,  line);
+               this.sourceview.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);
+               return false;
+       });   
+    
+       
+    }
     public void createThumb () {
         
         
         if (this.file == null) {
             return;
         }
+        // only screenshot the gtk preview..
+        if (this.notebook.el.page > 0 ) {
+            return;
+        }
+        
+        
         var filename = this.file.getIconFileName(false);
         
         var  win = this.el.get_parent_window();
         var width = win.get_width();
         var height = win.get_height();
+        try {
+             Gdk.Pixbuf screenshot = Gdk.pixbuf_get_from_window(win, 0, 0, width, height); // this.el.position?
+             screenshot.save(filename,"png");
+        } catch (Error e) {
+            
+        }
     
-        Gdk.Pixbuf screenshot = Gdk.pixbuf_get_from_window(win, 0, 0, width, height); // this.el.position?
-    
-        screenshot.save(filename,"png");
+       
         return;
         
         
-        
-        
-        
+         
          
         
         // should we hold until it's printed...
@@ -92,7 +126,15 @@ public class Xcls_GtkView : Object
             if (file.tree == null) {
                 return;
             }
-            this.file = file;
+            this.notebook.el.page = 0;// gtk preview 
+       
+      
+            
+           this.file = file;     
+            this.sourceview.loadFile();
+            this.searchcontext = null;
+            
+    
             if (this.lastObj != null) {
                 this.container.el.remove(this.lastObj);
             }
@@ -132,7 +174,49 @@ public class Xcls_GtkView : Object
              
             
     }
-    public class Xcls_Notebook2 : Object 
+    public int search (string txt) {
+       this.notebook.el.page = 1;
+       var s = new Gtk.SourceSearchSettings();
+       var buf = (Gtk.SourceBuffer) this.sourceview.el.get_buffer();
+       this.searchcontext = new Gtk.SourceSearchContext(buf,s);
+       this.searchcontext.set_highlight(true);
+       s.set_search_text(txt);
+       
+       Gtk.TextIter beg, st,en;
+        
+       buf.get_start_iter(out beg);
+       this.searchcontext.forward(beg, out st, out en);
+       this.last_search_end  = 0;
+       return this.searchcontext.get_occurrences_count();
+    
+       
+    }
+    public void forwardSearch (bool change_focus) {
+    
+       if (this.searchcontext == null) {
+               return;
+       }
+       this.notebook.el.page = 1;
+       Gtk.TextIter beg, st,en, stl;
+       
+       var buf = this.sourceview.el.get_buffer();
+       buf.get_iter_at_offset(out beg, this.last_search_end);
+       if (!this.searchcontext.forward(beg, out st, out en)) {
+               this.last_search_end = 0;
+       } else { 
+               this.last_search_end = en.get_offset();
+               if (change_focus) {
+                       this.sourceview.el.grab_focus();        
+               }
+               buf.place_cursor(st);
+               var ln = st.get_line();
+               buf.get_iter_at_line(out stl,ln);
+                
+               this.sourceview.el.scroll_to_iter(stl,  0.0f, true, 0.0f, 0.5f);
+       }
+    
+    }
+    public class Xcls_notebook : Object
     {
         public Gtk.Notebook el;
         private Xcls_GtkView  _this;
@@ -140,10 +224,11 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
-        public Xcls_Notebook2(Xcls_GtkView _owner )
+        // ctor
+        public Xcls_notebook(Xcls_GtkView _owner )
         {
             _this = _owner;
+            _this.notebook = this;
             this.el = new Gtk.Notebook();
 
             // my vars (dec)
@@ -161,9 +246,9 @@ public class Xcls_GtkView : Object
             this.el.append_page (  child_3.el , _this.label_code.el );
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_label_preview : Object 
+    public class Xcls_label_preview : Object
     {
         public Gtk.Label el;
         private Xcls_GtkView  _this;
@@ -171,7 +256,7 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_label_preview(Xcls_GtkView _owner )
         {
             _this = _owner;
@@ -183,9 +268,10 @@ public class Xcls_GtkView : Object
             // set gobject values
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_label_code : Object 
+
+    public class Xcls_label_code : Object
     {
         public Gtk.Label el;
         private Xcls_GtkView  _this;
@@ -193,21 +279,22 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_label_code(Xcls_GtkView _owner )
         {
             _this = _owner;
             _this.label_code = this;
-            this.el = new Gtk.Label( "Code" );
+            this.el = new Gtk.Label( "Preview Generated Code" );
 
             // my vars (dec)
 
             // set gobject values
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_ScrolledWindow5 : Object 
+
+    public class Xcls_ScrolledWindow5 : Object
     {
         public Gtk.ScrolledWindow el;
         private Xcls_GtkView  _this;
@@ -215,7 +302,7 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_ScrolledWindow5(Xcls_GtkView _owner )
         {
             _this = _owner;
@@ -229,9 +316,9 @@ public class Xcls_GtkView : Object
             this.el.add (  child_0.el  );
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_view_layout : Object 
+    public class Xcls_view_layout : Object
     {
         public Gtk.Layout el;
         private Xcls_GtkView  _this;
@@ -239,7 +326,7 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_view_layout(Xcls_GtkView _owner )
         {
             _this = _owner;
@@ -254,31 +341,34 @@ public class Xcls_GtkView : Object
             this.el.put (  child_0.el , 10,10 );
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_container : Object 
+    public class Xcls_container : Object
     {
-        public Gtk.HBox el;
+        public Gtk.Box el;
         private Xcls_GtkView  _this;
 
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_container(Xcls_GtkView _owner )
         {
             _this = _owner;
             _this.container = this;
-            this.el = new Gtk.HBox( true, 0 );
+            this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
 
             // my vars (dec)
 
             // set gobject values
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_ScrolledWindow8 : Object 
+
+
+
+    public class Xcls_ScrolledWindow8 : Object
     {
         public Gtk.ScrolledWindow el;
         private Xcls_GtkView  _this;
@@ -286,7 +376,7 @@ public class Xcls_GtkView : Object
 
             // my vars (def)
 
-        // ctor 
+        // ctor
         public Xcls_ScrolledWindow8(Xcls_GtkView _owner )
         {
             _this = _owner;
@@ -300,17 +390,19 @@ public class Xcls_GtkView : Object
             this.el.add (  child_0.el  );
         }
 
-        // user defined functions 
+        // user defined functions
     }
-    public class Xcls_sourceview : Object 
+    public class Xcls_sourceview : Object
     {
         public Gtk.SourceView el;
         private Xcls_GtkView  _this;
 
 
             // my vars (def)
+        public bool loading;
+        public bool allow_node_scroll;
 
-        // ctor 
+        // ctor
         public Xcls_sourceview(Xcls_GtkView _owner )
         {
             _this = _owner;
@@ -318,17 +410,65 @@ public class Xcls_GtkView : Object
             this.el = new Gtk.SourceView();
 
             // my vars (dec)
+            this.loading = true;
+            this.allow_node_scroll = true;
 
-            // init method 
+            // set gobject values
+            this.el.editable = false;
+            this.el.show_line_marks = true;
+            this.el.show_line_numbers = true;
+
+            // init method
 
             {
-                this.curfname = "";
-                   var description =   Pango.FontDescription.from_string("monospace");
+               
+                var description =   Pango.FontDescription.from_string("monospace");
                 description.set_size(8000);
                 this.el.override_font(description);
             
+                this.loading = true;
+                var buf = this.el.get_buffer();
+                buf.notify.connect((ps) => {
+                    if (this.loading) {
+                        return;
+                    }
+                    if (ps.name != "cursor-position") {
+                        return;
+                    }
+                    print("cursor changed : %d\n", buf.cursor_position);
+                    Gtk.TextIter cpos;
+                    buf.get_iter_at_offset(out cpos, buf.cursor_position);
+                    
+                    var ln = cpos.get_line();
+             
+                    var node = _this.file.lineToNode(ln);
+             
+                    if (node == null) {
+                        print("can not find node\n");
+                        return;
+                    }
+                    var ltree = _this.main_window.windowstate.left_tree;
+                    var tp = ltree.model.treePathFromNode(node);
+                    print("got tree path %s\n", tp);
+                    if (tp != "") {
+                      this.allow_node_scroll = false;        
+                      print("changing cursor on tree..\n");
+                        ltree.view.el.set_cursor(new Gtk.TreePath.from_string(tp), null, false);
+                        // scrolling is disabled... as node selection calls scroll 10ms after it changes.
+                        GLib.Timeout.add_full(GLib.Priority.DEFAULT,100 , () => {
+                           this.allow_node_scroll = true;
+                           return false;
+                        });
+                    }
+                    
+                    // highlight the node..
+                    
+                });
+              
+              
+              
                 var attrs = new Gtk.SourceMarkAttributes();
-                var  pink = new Gdk.RGBA();
+                var  pink =   Gdk.RGBA();
                 pink.parse ( "pink");
                 attrs.set_background ( pink);
                 attrs.set_icon_name ( "process-stop");    
@@ -337,44 +477,263 @@ public class Xcls_GtkView : Object
                     return mark.name;
                 });
                 
-                this.el.set_mark_attributes ("error", attrs, 1);
+                this.el.set_mark_attributes ("ERR", attrs, 1);
                 
-                _this.main_window.windowstate.left_tree.node_selected.connect((sel) => {
-               this.nodeSelected(sel);
+                 var wattrs = new Gtk.SourceMarkAttributes();
+                var  blue =   Gdk.RGBA();
+                blue.parse ( "#ABF4EB");
+                wattrs.set_background ( blue);
+                wattrs.set_icon_name ( "process-stop");    
+                wattrs.query_tooltip_text.connect(( mark) => {
+                    //print("tooltip query? %s\n", mark.name);
+                    return mark.name;
                 });
                 
+                this.el.set_mark_attributes ("WARN", wattrs, 1);
+                
+             
+                
+                 var dattrs = new Gtk.SourceMarkAttributes();
+                var  purple =   Gdk.RGBA();
+                purple.parse ( "#EEA9FF");
+                dattrs.set_background ( purple);
+                dattrs.set_icon_name ( "process-stop");    
+                dattrs.query_tooltip_text.connect(( mark) => {
+                    //print("tooltip query? %s\n", mark.name);
+                    return mark.name;
+                });
+                
+                this.el.set_mark_attributes ("DEPR", dattrs, 1);
+                
+                
+                var gattrs = new Gtk.SourceMarkAttributes();
+                var  grey =   Gdk.RGBA();
+                grey.parse ( "#ccc");
+                gattrs.set_background ( grey);
+             
+                
+                this.el.set_mark_attributes ("grey", gattrs, 1);
+                
+                
+                
+                
+                
+                
             }
         }
 
-        // user defined functions 
+        // user defined functions
         public void nodeSelected (JsRender.Node? sel) {
-            print("node selected");
+          
+            
+          
+            // this is connected in widnowstate
+            print("Roo-view - node selected\n");
             var buf = this.el.get_buffer();
-            buf.set_text("",0);
+         
+            var sbuf = (Gtk.SourceBuffer) buf;
         
-            if (sel == null) {
-                // clear the window..
-                return;
+           
+            while(Gtk.events_pending()) {
+                Gtk.main_iteration();
+            }
+            
+           
+            // clear all the marks..
+             Gtk.TextIter start;
+            Gtk.TextIter end;     
                 
+            sbuf.get_bounds (out start, out end);
+            sbuf.remove_source_marks (start, end, "grey");
+            
+            
+             if (sel == null) {
+                // no highlighting..
+                return;
+            }
+            Gtk.TextIter iter;   
+            sbuf.get_iter_at_line(out iter,  sel.line_start);
+            
+            
+            Gtk.TextIter cur_iter;
+            sbuf.get_iter_at_offset(out cur_iter, sbuf.cursor_position);
+            
+            //var cur_line = cur_iter.get_line();
+            //if (cur_line > sel.line_start && cur_line < sel.line_end) {
+            
+            //} else {
+            if (this.allow_node_scroll) {
+                        
+               this.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);
+               }
+            
+             
+            
+            for (var i = 0; i < buf.get_line_count();i++) {
+                if (i < sel.line_start || i > sel.line_end) {
+                   
+                    sbuf.get_iter_at_line(out iter, i);
+                    sbuf.create_source_mark(null, "grey", iter);
+                    
+                }
+            
             }
-            var f =  _this.main_window.windowstate.left_tree.model.file;
-            if (f.xtype != "Gtk") {
+            
+        
+        }
+        public string toString () {
+           Gtk.TextIter s;
+            Gtk.TextIter e;
+            this.el.get_buffer().get_start_iter(out s);
+            this.el.get_buffer().get_end_iter(out e);
+            var ret = this.el.get_buffer().get_text(s,e,true);
+            //print("TO STRING? " + ret);
+            return ret;
+        }
+        public void loadFile ( ) {
+            this.loading = true;
+            var buf = this.el.get_buffer();
+            buf.set_text("",0);
+            var sbuf = (Gtk.SourceBuffer) buf;
+        
+            
+        
+            if (_this.file == null || _this.file.xtype != "Gtk") {
                 print("xtype != Gtk");
+                this.loading = false;
                 return;
             }
             
-            var str = JsRender.NodeToVala.mungeFile(f);
-            print("setting str %d\n", str.length);
+            var valafn = "";
+              try {             
+                   var  regex = new Regex("\\.bjs$");
+                
+                 
+                    valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , ".vala");
+                 } catch (GLib.RegexError e) {
+                     this.loading = false;
+                    return;
+                }   
+            
+        
+           if (!FileUtils.test(valafn,FileTest.IS_REGULAR) ) {
+                print("File path has no errors\n");
+                this.loading = false;
+                return  ;
+            }
+            
+            string str;
+            try {
+            
+                GLib.FileUtils.get_contents (valafn, out str);
+            } catch (Error e) {
+                this.loading = false;
+                return  ;
+            }
+        
+        //    print("setting str %d\n", str.length);
             buf.set_text(str, str.length);
             var lm = Gtk.SourceLanguageManager.get_default();
-            
-            var lang = f.language;
+             
             //?? is javascript going to work as js?
             
-            ((Gtk.SourceBuffer)(buf)) .set_language(lm.get_language(lang));
+            ((Gtk.SourceBuffer)(buf)) .set_language(lm.get_language(_this.file.language));
+          
+            
+            Gtk.TextIter start;
+            Gtk.TextIter end;     
+                
+            sbuf.get_bounds (out start, out end);
+            sbuf.remove_source_marks (start, end, null); // remove all marks..
+            
+            
+            if (_this.main_window.windowstate.last_compile_result != null) {
+                var obj = _this.main_window.windowstate.last_compile_result;
+                this.highlightErrorsJson("ERR", obj);
+                this.highlightErrorsJson("WARN", obj);
+                this.highlightErrorsJson("DEPR", obj);                 
+            }
+            //while (Gtk.events_pending()) {
+             //   Gtk.main_iteration();
+           // }
+            
+            this.loading = false; 
+        }
+        public void highlightErrorsJson (string type, Json.Object obj) {
+              Gtk.TextIter start;
+             Gtk.TextIter end;   
+             
+             var buf =  this.el.get_buffer();
+               var sbuf = (Gtk.SourceBuffer)buf;
+                buf.get_bounds (out start, out end);
+                
+                sbuf.remove_source_marks (start, end, type);
+                         
+             
+             // we should highlight other types of errors..
+            
+            if (!obj.has_member(type)) {
+                print("Return has no errors\n");
+                return  ;
+            }
+            var err = obj.get_object_member(type);
+            
+            if (_this.file == null) { 
+                return; // just in case the file has not loaded yet?
+            }
          
+        
+            var valafn = "";
+              try {             
+                   var  regex = new Regex("\\.bjs$");
+                
+                 
+                    valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , ".vala");
+                 } catch (GLib.RegexError e) {
+                    return;
+                }   
+        
+           if (!err.has_member(valafn)) {
+                print("File path has no errors\n");
+                return  ;
+            }
+            var lines = err.get_object_member(valafn);
             
+           
             
+            var tlines = buf.get_line_count () +1;
+            
+            lines.foreach_member((obj, line, node) => {
+                
+                     Gtk.TextIter iter;
+            //        print("get inter\n");
+                    var eline = int.parse(line) -1  ;
+                    print("GOT ERROR on line %s -- converted to %d\n", line,eline);
+                    
+                    
+                    if (eline > tlines || eline < 0) {
+                        return;
+                    }
+                    sbuf.get_iter_at_line( out iter, eline);
+                    //print("mark line\n");
+                    var msg  = type + " on line: %d - %s".printf(eline+1, valafn);
+                    var ar = lines.get_array_member(line);
+                    for (var i = 0 ; i < ar.get_length(); i++) {
+                           msg += (msg.length > 0) ? "\n" : "";
+                           msg += ar.get_string_element(i);
+                   }
+                    
+                    
+                    sbuf.create_source_mark(msg, type, iter);
+                } );
+                return  ;
+            
+         
+        
+        
         }
     }
+
+
+
 }