src/Builder4/GtkView.bjs
[app.Builder.js] / src / Builder4 / GtkView.vala
1 static Xcls_GtkView  _GtkView;
2
3 public class Xcls_GtkView : Object
4 {
5     public Gtk.Box el;
6     private Xcls_GtkView  _this;
7
8     public static Xcls_GtkView singleton()
9     {
10         if (_GtkView == null) {
11             _GtkView= new Xcls_GtkView();
12         }
13         return _GtkView;
14     }
15     public Xcls_notebook notebook;
16     public Xcls_label_preview label_preview;
17     public Xcls_label_code label_code;
18     public Xcls_view_layout view_layout;
19     public Xcls_container container;
20     public Xcls_sourceview sourceview;
21
22         // my vars (def)
23     public Gtk.Widget lastObj;
24     public int width;
25     public int last_search_end;
26     public Gtk.SourceSearchContext searchcontext;
27     public JsRender.JsRender file;
28     public int height;
29     public Xcls_MainWindow main_window;
30
31     // ctor
32     public Xcls_GtkView()
33     {
34         _this = this;
35         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
36
37         // my vars (dec)
38         this.lastObj = null;
39         this.width = 0;
40         this.last_search_end = 0;
41         this.file = null;
42         this.height = 0;
43
44         // set gobject values
45         this.el.hexpand = true;
46         var child_0 = new Xcls_notebook( _this );
47         child_0.ref();
48         this.el.pack_start (  child_0.el , true,true,0 );
49
50         //listeners
51         this.el.size_allocate.connect( (aloc) => {
52         
53             this.width = aloc.width;
54             this.height =aloc.height;
55             });
56     }
57
58     // user defined functions
59     public void scroll_to_line (int line) {
60        this.notebook.el.page = 1;// code preview...
61        
62        GLib.Timeout.add(500, () => {
63        
64        
65            
66            
67                   var buf = this.sourceview.el.get_buffer();
68          
69                 var sbuf = (Gtk.SourceBuffer) buf;
70     
71     
72                 Gtk.TextIter iter;   
73                 sbuf.get_iter_at_line(out iter,  line);
74                 this.sourceview.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);
75                 return false;
76         });   
77     
78        
79     }
80     public void createThumb () {
81         
82         
83         if (this.file == null) {
84             return;
85         }
86         // only screenshot the gtk preview..
87         if (this.notebook.el.page > 0 ) {
88             return;
89         }
90         
91         
92         var filename = this.file.getIconFileName(false);
93         
94         var  win = this.el.get_parent_window();
95         var width = win.get_width();
96         var height = win.get_height();
97         try {
98              Gdk.Pixbuf screenshot = Gdk.pixbuf_get_from_window(win, 0, 0, width, height); // this.el.position?
99              screenshot.save(filename,"png");
100         } catch (Error e) {
101             
102         }
103     
104        
105         return;
106         
107         
108          
109          
110         
111         // should we hold until it's printed...
112         
113           
114     
115         
116         
117     
118     
119         
120          
121     }
122     public void loadFile (JsRender.JsRender file) 
123     {
124             this.file = null;
125             
126             if (file.tree == null) {
127                 return;
128             }
129             this.notebook.el.page = 0;// gtk preview 
130        
131       
132             
133            this.file = file;     
134             this.sourceview.loadFile();
135             this.searchcontext = null;
136             
137     
138             if (this.lastObj != null) {
139                 this.container.el.remove(this.lastObj);
140             }
141             
142             // hide the compile view at present..
143               
144             
145             var w = this.width;
146             var h = this.height;
147             
148             print("ALLOC SET SIZES %d, %d\n", w,h); 
149             
150             // set the container size min to 500/500 or 20 px less than max..
151             w = int.max (w-20, 500);
152             h = int.max (h-20, 500); 
153             
154             print("SET SIZES %d, %d\n", w,h);       
155             _this.container.el.set_size_request(w,h);
156             
157             _this.view_layout.el.set_size(w,h); // should be baded on calc.. -- see update_scrolled.
158             var rgba = Gdk.RGBA ();
159             rgba.parse ("#ccc");
160             _this.view_layout.el.override_background_color(Gtk.StateFlags.NORMAL, rgba);
161             
162             
163         var x = new JsRender.NodeToGtk(file.tree);
164             var obj = x.munge() as Gtk.Widget;
165             this.lastObj = null;
166         if (obj == null) {
167                 return;
168         }
169         this.lastObj = obj;
170             
171             this.container.el.add(obj);
172             obj.show_all();
173             
174              
175             
176     }
177     public int search (string txt) {
178         var s = new Gtk.SourceSearchSettings();
179         var buf = (Gtk.SourceBuffer) this.sourceview.el.get_buffer();
180         this.searchcontext = new Gtk.SourceSearchContext(buf,s);
181         this.searchcontext.set_highlight(true);
182         s.set_search_text(txt);
183         
184         Gtk.TextIter beg, st,en;
185          
186         buf.get_start_iter(out beg);
187         this.searchcontext.forward(beg, out st, out en);
188         this.last_search_end  = 0;
189         return this.searchcontext.get_occurrences_count();
190     
191        
192     }
193     public void forwardSearch () {
194     
195         if (this.searchcontext == null) {
196                 return;
197         }
198         
199         Gtk.TextIter beg, st,en;
200         
201         var buf = this.sourceview.el.get_buffer();
202         buf.get_iter_at_offset(out beg, this.last_search_end);
203         if (!this.searchcontext.forward(beg, out st, out en)) {
204                 this.last_search_end = 0;
205         } else { 
206                 this.last_search_end = en.get_offset();
207         
208                 this.sourceview.el.grab_focus();
209                 buf.place_cursor(st);
210                 this.sourceview.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);
211         }
212     
213     }
214     public class Xcls_notebook : Object
215     {
216         public Gtk.Notebook el;
217         private Xcls_GtkView  _this;
218
219
220             // my vars (def)
221
222         // ctor
223         public Xcls_notebook(Xcls_GtkView _owner )
224         {
225             _this = _owner;
226             _this.notebook = this;
227             this.el = new Gtk.Notebook();
228
229             // my vars (dec)
230
231             // set gobject values
232             var child_0 = new Xcls_label_preview( _this );
233             child_0.ref();
234             var child_1 = new Xcls_label_code( _this );
235             child_1.ref();
236             var child_2 = new Xcls_ScrolledWindow5( _this );
237             child_2.ref();
238             this.el.append_page (  child_2.el , _this.label_preview.el );
239             var child_3 = new Xcls_ScrolledWindow8( _this );
240             child_3.ref();
241             this.el.append_page (  child_3.el , _this.label_code.el );
242         }
243
244         // user defined functions
245     }
246     public class Xcls_label_preview : Object
247     {
248         public Gtk.Label el;
249         private Xcls_GtkView  _this;
250
251
252             // my vars (def)
253
254         // ctor
255         public Xcls_label_preview(Xcls_GtkView _owner )
256         {
257             _this = _owner;
258             _this.label_preview = this;
259             this.el = new Gtk.Label( "Preview" );
260
261             // my vars (dec)
262
263             // set gobject values
264         }
265
266         // user defined functions
267     }
268
269     public class Xcls_label_code : Object
270     {
271         public Gtk.Label el;
272         private Xcls_GtkView  _this;
273
274
275             // my vars (def)
276
277         // ctor
278         public Xcls_label_code(Xcls_GtkView _owner )
279         {
280             _this = _owner;
281             _this.label_code = this;
282             this.el = new Gtk.Label( "Preview Generated Code" );
283
284             // my vars (dec)
285
286             // set gobject values
287         }
288
289         // user defined functions
290     }
291
292     public class Xcls_ScrolledWindow5 : Object
293     {
294         public Gtk.ScrolledWindow el;
295         private Xcls_GtkView  _this;
296
297
298             // my vars (def)
299
300         // ctor
301         public Xcls_ScrolledWindow5(Xcls_GtkView _owner )
302         {
303             _this = _owner;
304             this.el = new Gtk.ScrolledWindow( null, null );
305
306             // my vars (dec)
307
308             // set gobject values
309             var child_0 = new Xcls_view_layout( _this );
310             child_0.ref();
311             this.el.add (  child_0.el  );
312         }
313
314         // user defined functions
315     }
316     public class Xcls_view_layout : Object
317     {
318         public Gtk.Layout el;
319         private Xcls_GtkView  _this;
320
321
322             // my vars (def)
323
324         // ctor
325         public Xcls_view_layout(Xcls_GtkView _owner )
326         {
327             _this = _owner;
328             _this.view_layout = this;
329             this.el = new Gtk.Layout( null, null );
330
331             // my vars (dec)
332
333             // set gobject values
334             var child_0 = new Xcls_container( _this );
335             child_0.ref();
336             this.el.put (  child_0.el , 10,10 );
337         }
338
339         // user defined functions
340     }
341     public class Xcls_container : Object
342     {
343         public Gtk.Box el;
344         private Xcls_GtkView  _this;
345
346
347             // my vars (def)
348
349         // ctor
350         public Xcls_container(Xcls_GtkView _owner )
351         {
352             _this = _owner;
353             _this.container = this;
354             this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
355
356             // my vars (dec)
357
358             // set gobject values
359         }
360
361         // user defined functions
362     }
363
364
365
366     public class Xcls_ScrolledWindow8 : Object
367     {
368         public Gtk.ScrolledWindow el;
369         private Xcls_GtkView  _this;
370
371
372             // my vars (def)
373
374         // ctor
375         public Xcls_ScrolledWindow8(Xcls_GtkView _owner )
376         {
377             _this = _owner;
378             this.el = new Gtk.ScrolledWindow( null, null );
379
380             // my vars (dec)
381
382             // set gobject values
383             var child_0 = new Xcls_sourceview( _this );
384             child_0.ref();
385             this.el.add (  child_0.el  );
386         }
387
388         // user defined functions
389     }
390     public class Xcls_sourceview : Object
391     {
392         public Gtk.SourceView el;
393         private Xcls_GtkView  _this;
394
395
396             // my vars (def)
397         public bool loading;
398         public bool allow_node_scroll;
399
400         // ctor
401         public Xcls_sourceview(Xcls_GtkView _owner )
402         {
403             _this = _owner;
404             _this.sourceview = this;
405             this.el = new Gtk.SourceView();
406
407             // my vars (dec)
408             this.loading = true;
409             this.allow_node_scroll = true;
410
411             // set gobject values
412             this.el.editable = false;
413             this.el.show_line_marks = true;
414             this.el.show_line_numbers = true;
415
416             // init method
417
418             {
419                
420                 var description =   Pango.FontDescription.from_string("monospace");
421                 description.set_size(8000);
422                 this.el.override_font(description);
423             
424                 this.loading = true;
425                 var buf = this.el.get_buffer();
426                 buf.notify.connect((ps) => {
427                     if (this.loading) {
428                         return;
429                     }
430                     if (ps.name != "cursor-position") {
431                         return;
432                     }
433                     print("cursor changed : %d\n", buf.cursor_position);
434                     Gtk.TextIter cpos;
435                     buf.get_iter_at_offset(out cpos, buf.cursor_position);
436                     
437                     var ln = cpos.get_line();
438                     
439                     var node = _this.file.lineToNode(ln);
440                     if (node == null) {
441                         print("can not find node\n");
442                         return;
443                     }
444                     var ltree = _this.main_window.windowstate.left_tree;
445                     var tp = ltree.model.treePathFromNode(node);
446                     print("got tree path %s\n", tp);
447                     if (tp != "") {
448                         ltree.view.el.set_cursor(new Gtk.TreePath.from_string(tp), null, false);
449                     }
450                     
451                     // highlight the node..
452                     
453                 });
454               
455               
456               
457                 var attrs = new Gtk.SourceMarkAttributes();
458                 var  pink =   Gdk.RGBA();
459                 pink.parse ( "pink");
460                 attrs.set_background ( pink);
461                 attrs.set_icon_name ( "process-stop");    
462                 attrs.query_tooltip_text.connect(( mark) => {
463                     //print("tooltip query? %s\n", mark.name);
464                     return mark.name;
465                 });
466                 
467                 this.el.set_mark_attributes ("ERR", attrs, 1);
468                 
469                  var wattrs = new Gtk.SourceMarkAttributes();
470                 var  blue =   Gdk.RGBA();
471                 blue.parse ( "#ABF4EB");
472                 wattrs.set_background ( blue);
473                 wattrs.set_icon_name ( "process-stop");    
474                 wattrs.query_tooltip_text.connect(( mark) => {
475                     //print("tooltip query? %s\n", mark.name);
476                     return mark.name;
477                 });
478                 
479                 this.el.set_mark_attributes ("WARN", wattrs, 1);
480                 
481              
482                 
483                  var dattrs = new Gtk.SourceMarkAttributes();
484                 var  purple =   Gdk.RGBA();
485                 purple.parse ( "#EEA9FF");
486                 dattrs.set_background ( purple);
487                 dattrs.set_icon_name ( "process-stop");    
488                 dattrs.query_tooltip_text.connect(( mark) => {
489                     //print("tooltip query? %s\n", mark.name);
490                     return mark.name;
491                 });
492                 
493                 this.el.set_mark_attributes ("DEPR", dattrs, 1);
494                 
495                 
496                 var gattrs = new Gtk.SourceMarkAttributes();
497                 var  grey =   Gdk.RGBA();
498                 grey.parse ( "#ccc");
499                 gattrs.set_background ( grey);
500              
501                 
502                 this.el.set_mark_attributes ("grey", gattrs, 1);
503                 
504                 
505                 
506                 
507                 
508                 
509             }
510         }
511
512         // user defined functions
513         public void nodeSelected (JsRender.Node? sel) {
514           
515             
516           
517             // this is connected in widnowstate
518             print("node selected");
519             var buf = this.el.get_buffer();
520          
521             var sbuf = (Gtk.SourceBuffer) buf;
522         
523            
524             while(Gtk.events_pending()) {
525                 Gtk.main_iteration();
526             }
527             
528            
529             // clear all the marks..
530              Gtk.TextIter start;
531             Gtk.TextIter end;     
532                 
533             sbuf.get_bounds (out start, out end);
534             sbuf.remove_source_marks (start, end, "grey");
535             
536             
537              if (sel == null) {
538                 // no highlighting..
539                 return;
540             }
541             Gtk.TextIter iter;   
542             sbuf.get_iter_at_line(out iter,  sel.line_start);
543             if (this.allow_node_scroll) {
544             
545                     this.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.0f);
546             }
547             
548             for (var i = 0; i < buf.get_line_count();i++) {
549                 if (i < sel.line_start || i > sel.line_end) {
550                    
551                     sbuf.get_iter_at_line(out iter, i);
552                     sbuf.create_source_mark(null, "grey", iter);
553                     
554                 }
555             
556             }
557             
558         
559         }
560         public string toString () {
561            Gtk.TextIter s;
562             Gtk.TextIter e;
563             this.el.get_buffer().get_start_iter(out s);
564             this.el.get_buffer().get_end_iter(out e);
565             var ret = this.el.get_buffer().get_text(s,e,true);
566             //print("TO STRING? " + ret);
567             return ret;
568         }
569         public void loadFile ( ) {
570             this.loading = true;
571             var buf = this.el.get_buffer();
572             buf.set_text("",0);
573             var sbuf = (Gtk.SourceBuffer) buf;
574         
575             
576         
577             if (_this.file == null || _this.file.xtype != "Gtk") {
578                 print("xtype != Gtk");
579                 this.loading = false;
580                 return;
581             }
582             
583             var valafn = "";
584               try {             
585                    var  regex = new Regex("\\.bjs$");
586                 
587                  
588                     valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , ".vala");
589                  } catch (GLib.RegexError e) {
590                      this.loading = false;
591                     return;
592                 }   
593             
594         
595            if (!FileUtils.test(valafn,FileTest.IS_REGULAR) ) {
596                 print("File path has no errors\n");
597                 this.loading = false;
598                 return  ;
599             }
600             
601             string str;
602             try {
603             
604                 GLib.FileUtils.get_contents (valafn, out str);
605             } catch (Error e) {
606                 this.loading = false;
607                 return  ;
608             }
609         
610         //    print("setting str %d\n", str.length);
611             buf.set_text(str, str.length);
612             var lm = Gtk.SourceLanguageManager.get_default();
613              
614             //?? is javascript going to work as js?
615             
616             ((Gtk.SourceBuffer)(buf)) .set_language(lm.get_language(_this.file.language));
617           
618             
619             Gtk.TextIter start;
620             Gtk.TextIter end;     
621                 
622             sbuf.get_bounds (out start, out end);
623             sbuf.remove_source_marks (start, end, null); // remove all marks..
624             
625             
626             if (_this.main_window.windowstate.last_compile_result != null) {
627                 var obj = _this.main_window.windowstate.last_compile_result;
628                 this.highlightErrorsJson("ERR", obj);
629                 this.highlightErrorsJson("WARN", obj);
630                 this.highlightErrorsJson("DEPR", obj);                  
631             }
632             //while (Gtk.events_pending()) {
633              //   Gtk.main_iteration();
634            // }
635             
636             this.loading = false; 
637         }
638         public void highlightErrorsJson (string type, Json.Object obj) {
639               Gtk.TextIter start;
640              Gtk.TextIter end;   
641              
642              var buf =  this.el.get_buffer();
643                var sbuf = (Gtk.SourceBuffer)buf;
644                 buf.get_bounds (out start, out end);
645                 
646                 sbuf.remove_source_marks (start, end, type);
647                          
648              
649              // we should highlight other types of errors..
650             
651             if (!obj.has_member(type)) {
652                 print("Return has no errors\n");
653                 return  ;
654             }
655             var err = obj.get_object_member(type);
656             
657             if (_this.file == null) { 
658                 return; // just in case the file has not loaded yet?
659             }
660          
661         
662             var valafn = "";
663               try {             
664                    var  regex = new Regex("\\.bjs$");
665                 
666                  
667                     valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , ".vala");
668                  } catch (GLib.RegexError e) {
669                     return;
670                 }   
671         
672            if (!err.has_member(valafn)) {
673                 print("File path has no errors\n");
674                 return  ;
675             }
676             var lines = err.get_object_member(valafn);
677             
678            
679             
680             var tlines = buf.get_line_count () +1;
681             
682             lines.foreach_member((obj, line, node) => {
683                 
684                      Gtk.TextIter iter;
685             //        print("get inter\n");
686                     var eline = int.parse(line) -1  ;
687                     print("GOT ERROR on line %s -- converted to %d\n", line,eline);
688                     
689                     
690                     if (eline > tlines || eline < 0) {
691                         return;
692                     }
693                     sbuf.get_iter_at_line( out iter, eline);
694                     //print("mark line\n");
695                     var msg  = type + " on line: %d - %s".printf(eline+1, valafn);
696                     var ar = lines.get_array_member(line);
697                     for (var i = 0 ; i < ar.get_length(); i++) {
698                             msg += (msg.length > 0) ? "\n" : "";
699                             msg += ar.get_string_element(i);
700                     }
701                     
702                     
703                     sbuf.create_source_mark(msg, type, iter);
704                 } );
705                 return  ;
706             
707          
708         
709         
710         }
711     }
712
713
714
715 }