1828e0ec7987c6d568b169eec8be634d50e4b731
[roobuilder] / src / Builder4 / Editor.vala
1 static Editor  _Editor;
2
3 public class Editor : Object
4 {
5         public Gtk.Box el;
6         private Editor  _this;
7
8         public static Editor singleton()
9         {
10                 if (_Editor == null) {
11                     _Editor= new Editor();
12                 }
13                 return _Editor;
14         }
15         public Xcls_save_button save_button;
16         public Xcls_helper helper;
17         public Xcls_close_btn close_btn;
18         public Xcls_RightEditor RightEditor;
19         public Xcls_view view;
20         public Xcls_buffer buffer;
21         public Xcls_keystate keystate;
22         public Xcls_search_entry search_entry;
23         public Xcls_search_results search_results;
24         public Xcls_nextBtn nextBtn;
25         public Xcls_backBtn backBtn;
26         public Xcls_search_settings search_settings;
27         public Xcls_case_sensitive case_sensitive;
28         public Xcls_regex regex;
29         public Xcls_multiline multiline;
30         public Xcls_navigationwindow navigationwindow;
31         public Xcls_navigation navigation;
32         public Xcls_navigationselmodel navigationselmodel;
33         public Xcls_navigationsort navigationsort;
34         public Xcls_navliststore navliststore;
35
36                 // my vars (def)
37         public int pos_root_x;
38         public Xcls_MainWindow window;
39         public bool dirty;
40         public int pos_root_y;
41         public bool pos;
42         public int last_error_counter;
43         public GtkSource.SearchContext searchcontext;
44         public int last_search_end;
45         public signal void save ();
46         public JsRender.JsRender? file;
47         public JsRender.Node node;
48         public JsRender.NodeProp? prop;
49         public string activeEditor;
50
51         // ctor
52         public Editor()
53         {
54                 _this = this;
55                 this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
56
57                 // my vars (dec)
58                 this.window = null;
59                 this.dirty = false;
60                 this.pos = false;
61                 this.last_error_counter = 0;
62                 this.searchcontext = null;
63                 this.last_search_end = 0;
64                 this.file = null;
65                 this.node = null;
66                 this.prop = null;
67                 this.activeEditor = "\"\"";
68
69                 // set gobject values
70                 this.el.homogeneous = false;
71                 this.el.hexpand = true;
72                 this.el.vexpand = true;
73                 var child_1 = new Xcls_Paned1( _this );
74                 child_1.ref();
75                 this.el.append( child_1.el );
76         }
77
78         // user defined functions
79         public bool saveContents ()  {
80             
81             
82             if (_this.file == null) {
83                 return true;
84             }
85             
86              
87              
88              var str = _this.buffer.toString();
89              
90              _this.buffer.checkSyntax();
91              
92              
93              
94              // LeftPanel.model.changed(  str , false);
95              _this.dirty = false;
96              _this.save_button.el.sensitive = false;
97              
98             // find the text for the node..
99             if (_this.file.xtype != "PlainFile") {
100                // in theory these properties have to exist!?!
101                 this.prop.val = str;
102                 //this.window.windowstate.left_props.reload();
103             } else {
104                 _this.file.setSource(  str );
105              }
106             
107             // call the signal..
108             this.save();
109             
110             return true;
111         
112         }
113         public void forwardSearch (bool change_focus) {
114         
115                 if (this.searchcontext == null) {
116                         return;
117                 } 
118         
119                 Gtk.TextIter beg, st,en;
120                  bool has_wrapped_around;
121                 this.buffer.el.get_iter_at_offset(out beg, this.last_search_end);
122                 if (!this.searchcontext.forward(beg, out st, out en, out has_wrapped_around)) {
123                 
124                         this.last_search_end = 0; // not sure if this should happen
125                 } else {
126                         if (has_wrapped_around) {
127                                 return;
128                         }
129                 
130                         this.last_search_end = en.get_offset();
131                         if (change_focus) {
132                                 this.view.el.grab_focus();
133                         }
134                         this.buffer.el.place_cursor(st);
135                         this.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);
136                 }
137          
138         }
139         public void show (JsRender.JsRender file, JsRender.Node? node, JsRender.NodeProp? prop)
140         {
141             this.reset();
142             if (this.file != null) {
143                 this.file.navigation_tree_updated.disconnect(
144                         _this.navigation.show
145                 );
146             }
147             this.file = file;    
148             this.file.navigation_tree_updated.connect(
149                         _this.navigation.show
150                 );
151             if (file.xtype != "PlainFile") {
152                 this.prop = prop;
153                 this.node = node;
154         
155                 // find the text for the node..
156                 this.view.load( prop.val );
157                 this.updateErrorMarks();
158                 
159                 
160                 
161                 this.close_btn.el.show();       
162             
163             } else {
164                 this.view.load(        file.toSource() );
165                 this.updateErrorMarks();
166                 this.close_btn.el.hide();
167                 var ls = file.getLanguageServer();
168                 ls.queueDocumentSymbols(file);
169                 ////ls.documentSymbols.begin(file, (a,o) => {
170                 //      _this.navigation.show(ls.documentSymbols.end(o)); 
171                //});
172                 //documentSymbols
173                 
174             }
175          
176         }
177         public void backSearch (bool change_focus) {
178         
179                 if (this.searchcontext == null) {
180                         return;
181                 }
182                 
183                 Gtk.TextIter beg, st,en;
184                 bool has_wrapped_around;
185                 this.buffer.el.get_iter_at_offset(out beg, this.last_search_end -1 );
186                 
187                 if (!this.searchcontext.backward(beg, out st, out en, out has_wrapped_around)) {
188                         this.last_search_end = 0;
189                 } else {
190                         this.last_search_end = en.get_offset();
191                         if (change_focus) {
192                                 this.view.el.grab_focus();
193                         }
194                         this.buffer.el.place_cursor(st);
195                         this.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);
196                 }
197         
198         }
199         public string tempFileContents () {
200            
201            
202            if (_this.file == null) {
203                return "";
204            }
205                 var str= this.buffer.toString();
206                 if (_this.file.xtype == "PlainFile") {
207             
208                 return str;
209             
210             }
211           
212               
213              
214             GLib.debug("calling validate");    
215             // clear the buttons.
216                 if (_this.prop.name == "xns" || _this.prop.name == "xtype") {
217                         return this.file.toSource(); ;
218                 }
219                 
220                 var oldcode  = _this.prop.val;
221                 _this.prop.val = str;
222             var ret = _this.file.toSource();
223             _this.prop.val = oldcode;
224             return ret;
225             
226         }
227         public void reset () {
228                  this.file = null;    
229              
230             this.node = null;
231             this.prop = null;
232                 this.searchcontext = null;
233           
234         }
235         public int search (string in_txt) {
236         
237                 var s = new GtkSource.SearchSettings();
238                 s.case_sensitive = _this.case_sensitive.el.active;
239                 s.regex_enabled = _this.regex.el.active;        
240                 s.wrap_around = false;
241                 
242                 this.searchcontext = new GtkSource.SearchContext(this.buffer.el,s);
243                 this.searchcontext.set_highlight(true);
244                 var txt = in_txt;
245                 
246                 if (_this.multiline.el.active) {
247                         txt = in_txt.replace("\\n", "\n");
248                 }
249                 
250                 s.set_search_text(txt);
251                 Gtk.TextIter beg, st,en;
252                  
253                 this.buffer.el.get_start_iter(out beg);
254                 bool has_wrapped_around;
255                 this.searchcontext.forward(beg, out st, out en, out has_wrapped_around);
256                 this.last_search_end = 0;
257                 
258                 return this.searchcontext.get_occurrences_count();
259         
260          
261            
262         
263         }
264         public void updateErrorMarks () {
265                 
266          
267         
268                 var buf = _this.buffer.el;
269                 Gtk.TextIter start;
270                 Gtk.TextIter end;     
271                 buf.get_bounds (out start, out end);
272         
273                 
274         
275          
276                 //GLib.debug("highlight errors");                
277         
278                  // we should highlight other types of errors..
279         
280                 if (_this.window.windowstate.state != WindowState.State.CODEONLY 
281                         &&
282                         _this.window.windowstate.state != WindowState.State.CODE
283                         ) {
284                         //GLib.debug("windowstate != CODEONLY?");
285                         
286                         return;
287                 } 
288         
289                  
290                 if (_this.file == null) {
291                         GLib.debug("file is null?");
292                         return;
293         
294                 }
295                 var ar = this.file.getErrors();
296                 if (ar.size < 1) {
297                         buf.remove_source_marks (start, end, "ERR");
298                         buf.remove_source_marks (start, end, "WARN");
299                         buf.remove_source_marks (start, end, "DEPR");
300                         buf.remove_tag_by_name ("ERR", start, end);
301                         buf.remove_tag_by_name ("WARN", start, end);
302                         buf.remove_tag_by_name ("DEPR", start, end);
303                         this.last_error_counter = file.error_counter ;
304                         //GLib.debug("highlight %s :  %s has no errors", this.file.relpath, category);
305                         return;
306                 }
307                 
308         
309          // basicaly check if there is no change, then we do not do any update..
310          // we can do this by just using an error counter?
311          // if that's changed then we will do an update, otherwise dont bother.
312                   
313                 
314                 var offset = 0;
315                 var hoffset = 0;
316         
317                 var tlines = buf.get_line_count () +1;
318                 
319                 if (_this.prop != null) {
320                         // this still seems flaky...
321         
322                         tlines = _this.prop.end_line;
323                         offset = _this.prop.start_line;
324                         hoffset = _this.node.node_pad.length + 2; //shift it left  by 2 ? ..
325                         
326                          
327                 } else {
328                         // no update...
329                         if (this.last_error_counter == file.error_counter) {
330                         
331                                 return;
332                         }
333                 
334                 }
335                 buf.remove_source_marks (start, end, "ERR");
336                 buf.remove_source_marks (start, end, "WARN");
337                 buf.remove_source_marks (start, end, "DEPR");
338                 buf.remove_tag_by_name ("ERR", start, end);
339                 buf.remove_tag_by_name ("WARN", start, end);
340                 buf.remove_tag_by_name ("DEPR", start, end);
341                 
342                 foreach(var diag in ar) { 
343                      Gtk.TextIter iter;
344         //        print("get inter\n");
345                     var eline = (int)diag.range.start.line - offset;
346                     var eline_to = (int)diag.range.end.line - offset;
347                     //var eline =  diag.range.end_line - offset;
348                     //GLib.debug("GOT ERROR on line %d -- converted to %d  (offset = %d)",
349                     //  err.line ,eline, offset);
350                     
351                     
352                     if (eline > tlines || eline < 0) {
353                         continue;
354                     }
355                     
356                     buf.get_iter_at_line( out iter, eline);
357                         var msg = "Line: %d %s : %s".printf(eline+1, diag.category, diag.message);
358                     buf.create_source_mark( msg, diag.category, iter);
359                     
360                     var spos = (int)diag.range.start.character - hoffset;
361                     if (spos < 0) { spos =0 ; }
362                     if (spos > iter.get_chars_in_line()) {
363                         spos = iter.get_chars_in_line();
364                 }
365                         buf.get_iter_at_line( out iter, eline_to);
366                         var epos = (int)diag.range.end.character - hoffset;
367                     if (epos < 0) { epos =0 ; }
368                     if (epos > iter.get_chars_in_line()) {
369                         epos = iter.get_chars_in_line();
370                 }
371                      
372                     
373                     buf.get_iter_at_line_offset( out start, eline, spos); 
374                    
375                     buf.get_iter_at_line_offset( out end, eline_to,epos); 
376                         
377                     buf.apply_tag_by_name(diag.category, start, end);
378                     
379                    // GLib.debug("set line %d to %s", eline, msg);
380                     //this.marks.set(eline, msg);
381                 }
382                 this.last_error_counter = file.error_counter ;
383         
384         
385         
386          
387         
388         }
389         public void scroll_to_line (int line) {
390         
391                 GLib.Timeout.add(500, () => {
392            
393                         var buf = this.view.el.get_buffer();
394         
395                         var sbuf = (GtkSource.Buffer) buf;
396         
397         
398                         Gtk.TextIter iter;   
399                         sbuf.get_iter_at_line(out iter,  line);
400                         this.view.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);
401                         return false;
402                 });   
403         }
404         public class Xcls_Paned1 : Object
405         {
406                 public Gtk.Paned el;
407                 private Editor  _this;
408
409
410                         // my vars (def)
411
412                 // ctor
413                 public Xcls_Paned1(Editor _owner )
414                 {
415                         _this = _owner;
416                         this.el = new Gtk.Paned( Gtk.Orientation.HORIZONTAL );
417
418                         // my vars (dec)
419
420                         // set gobject values
421                         this.el.width_request = 200;
422                         this.el.shrink_end_child = false;
423                         var child_1 = new Xcls_Box2( _this );
424                         child_1.ref();
425                         this.el.start_child = child_1.el;
426                         var child_2 = new Xcls_Box27( _this );
427                         child_2.ref();
428                         this.el.end_child = child_2.el;
429                 }
430
431                 // user defined functions
432         }
433         public class Xcls_Box2 : Object
434         {
435                 public Gtk.Box el;
436                 private Editor  _this;
437
438
439                         // my vars (def)
440
441                 // ctor
442                 public Xcls_Box2(Editor _owner )
443                 {
444                         _this = _owner;
445                         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
446
447                         // my vars (dec)
448
449                         // set gobject values
450                         var child_1 = new Xcls_Box3( _this );
451                         child_1.ref();
452                         this.el.append( child_1.el );
453                         new Xcls_RightEditor( _this );
454                         this.el.append( _this.RightEditor.el );
455                         var child_3 = new Xcls_Box15( _this );
456                         child_3.ref();
457                         this.el.append ( child_3.el  );
458                 }
459
460                 // user defined functions
461         }
462         public class Xcls_Box3 : Object
463         {
464                 public Gtk.Box el;
465                 private Editor  _this;
466
467
468                         // my vars (def)
469
470                 // ctor
471                 public Xcls_Box3(Editor _owner )
472                 {
473                         _this = _owner;
474                         this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
475
476                         // my vars (dec)
477
478                         // set gobject values
479                         this.el.homogeneous = false;
480                         this.el.hexpand = true;
481                         this.el.vexpand = false;
482                         new Xcls_save_button( _this );
483                         this.el.append( _this.save_button.el );
484                         new Xcls_helper( _this );
485                         this.el.append( _this.helper.el );
486                         var child_3 = new Xcls_Scale6( _this );
487                         child_3.ref();
488                         this.el.append( child_3.el );
489                         new Xcls_close_btn( _this );
490                         this.el.append( _this.close_btn.el );
491                 }
492
493                 // user defined functions
494         }
495         public class Xcls_save_button : Object
496         {
497                 public Gtk.Button el;
498                 private Editor  _this;
499
500
501                         // my vars (def)
502
503                 // ctor
504                 public Xcls_save_button(Editor _owner )
505                 {
506                         _this = _owner;
507                         _this.save_button = this;
508                         this.el = new Gtk.Button();
509
510                         // my vars (dec)
511
512                         // set gobject values
513                         this.el.vexpand = true;
514                         this.el.label = "Save";
515
516                         //listeners
517                         this.el.clicked.connect( () => { 
518                             _this.saveContents();
519                         });
520                 }
521
522                 // user defined functions
523         }
524
525         public class Xcls_helper : Object
526         {
527                 public Gtk.Label el;
528                 private Editor  _this;
529
530
531                         // my vars (def)
532
533                 // ctor
534                 public Xcls_helper(Editor _owner )
535                 {
536                         _this = _owner;
537                         _this.helper = this;
538                         this.el = new Gtk.Label( null );
539
540                         // my vars (dec)
541
542                         // set gobject values
543                         this.el.margin_end = 4;
544                         this.el.margin_start = 4;
545                         this.el.justify = Gtk.Justification.LEFT;
546                         this.el.hexpand = true;
547                 }
548
549                 // user defined functions
550                 public void setHelp (Lsp.Hover? help) {
551                         if (help == null || help.contents == null
552                                 || help.contents.size < 1) {
553                                 this.el.set_text("");
554                                 return;
555                         }
556                         var sig = help.contents.get(0).value.split(" ");
557                         string[] str = {};
558                         for(var i =0; i < sig.length; i++) {
559                         
560                                 switch(sig[i]) {
561                                         case "public":
562                                         case "private":
563                                         case "protected":
564                                         case "async":
565                                         case "class":
566                                         case "{":
567                                         case "}":
568                                         case "(":
569                                         case ")":
570                                         
571                                                 str += sig[i];
572                                                 continue;
573                                                 
574                                                 
575                                         default:
576                         
577                                                 str += ("<span underline=\"single\" color=\"blue\" >" + 
578                                                         GLib.Markup.escape_text(sig[i])
579                                                         +"</span>");
580                                         continue;
581                                 }
582                         }
583                         if (help.contents.size > 1) {
584                                 sig += ("\n\n"  + help.contents[1].value);
585                         }
586                         
587                         this.el.set_markup(string.joinv(" ",str));
588                         
589                 }
590         }
591
592         public class Xcls_Scale6 : Object
593         {
594                 public Gtk.Scale el;
595                 private Editor  _this;
596
597
598                         // my vars (def)
599
600                 // ctor
601                 public Xcls_Scale6(Editor _owner )
602                 {
603                         _this = _owner;
604                         this.el = new Gtk.Scale.with_range (Gtk.Orientation.HORIZONTAL,6, 30, 1);
605
606                         // my vars (dec)
607
608                         // set gobject values
609                         this.el.width_request = 200;
610                         this.el.has_origin = true;
611                         this.el.draw_value = false;
612                         this.el.digits = 0;
613                         this.el.sensitive = true;
614
615                         // init method
616
617                         {
618                                 //this.el.set_range(6,30);
619                                 this.el.set_value ( BuilderApplication.settings.editor_font_size);
620                                 BuilderApplication.settings.editor_font_size_updated.connect(
621                                         () => {
622                                                 BuilderApplication.settings.editor_font_size_inchange = true;
623                                         //      GLib.debug("update range");
624                                                 this.el.set_value (BuilderApplication.settings.editor_font_size);
625                                                 BuilderApplication.settings.editor_font_size_inchange = false;
626                                         }
627                                 );
628                                 
629                          
630                         }
631
632                         //listeners
633                         this.el.change_value.connect( (st, val ) => {
634                                 if (BuilderApplication.settings.editor_font_size_inchange) {
635                                         return false;
636                                 }
637                                 BuilderApplication.settings.editor_font_size = val;
638                                 return false;
639                         });
640                 }
641
642                 // user defined functions
643         }
644
645         public class Xcls_close_btn : Object
646         {
647                 public Gtk.Button el;
648                 private Editor  _this;
649
650
651                         // my vars (def)
652
653                 // ctor
654                 public Xcls_close_btn(Editor _owner )
655                 {
656                         _this = _owner;
657                         _this.close_btn = this;
658                         this.el = new Gtk.Button();
659
660                         // my vars (dec)
661
662                         // set gobject values
663                         this.el.icon_name = "window-close";
664                         var child_1 = new Xcls_Image8( _this );
665                         child_1.ref();
666                         this.el.child = child_1.el;
667
668                         //listeners
669                         this.el.clicked.connect( () => { 
670                             _this.saveContents();
671                             _this.window.windowstate.switchState(WindowState.State.PREVIEW);
672                         });
673                 }
674
675                 // user defined functions
676         }
677         public class Xcls_Image8 : Object
678         {
679                 public Gtk.Image el;
680                 private Editor  _this;
681
682
683                         // my vars (def)
684
685                 // ctor
686                 public Xcls_Image8(Editor _owner )
687                 {
688                         _this = _owner;
689                         this.el = new Gtk.Image();
690
691                         // my vars (dec)
692
693                         // set gobject values
694                         this.el.icon_name = "window-close";
695                         this.el.icon_size = Gtk.IconSize.NORMAL;
696                 }
697
698                 // user defined functions
699         }
700
701
702
703         public class Xcls_RightEditor : Object
704         {
705                 public Gtk.ScrolledWindow el;
706                 private Editor  _this;
707
708
709                         // my vars (def)
710
711                 // ctor
712                 public Xcls_RightEditor(Editor _owner )
713                 {
714                         _this = _owner;
715                         _this.RightEditor = this;
716                         this.el = new Gtk.ScrolledWindow();
717
718                         // my vars (dec)
719
720                         // set gobject values
721                         this.el.vscrollbar_policy = Gtk.PolicyType.AUTOMATIC;
722                         this.el.vexpand = true;
723                         this.el.overlay_scrolling = false;
724                         this.el.hscrollbar_policy = Gtk.PolicyType.AUTOMATIC;
725                         new Xcls_view( _this );
726                         this.el.child = _this.view.el;
727                 }
728
729                 // user defined functions
730         }
731         public class Xcls_view : Object
732         {
733                 public GtkSource.View el;
734                 private Editor  _this;
735
736
737                         // my vars (def)
738                 public Gtk.CssProvider css;
739
740                 // ctor
741                 public Xcls_view(Editor _owner )
742                 {
743                         _this = _owner;
744                         _this.view = this;
745                         this.el = new GtkSource.View();
746
747                         // my vars (dec)
748                         this.css = null;
749
750                         // set gobject values
751                         this.el.auto_indent = true;
752                         this.el.indent_width = 4;
753                         this.el.name = "editor-view";
754                         this.el.show_line_marks = true;
755                         this.el.insert_spaces_instead_of_tabs = true;
756                         this.el.show_line_numbers = true;
757                         this.el.hexpand = true;
758                         this.el.vexpand = true;
759                         this.el.has_tooltip = true;
760                         this.el.css_classes = { "code-editor" };
761                         this.el.tab_width = 4;
762                         this.el.highlight_current_line = true;
763                         new Xcls_buffer( _this );
764                         this.el.buffer = _this.buffer.el;
765                         new Xcls_keystate( _this );
766                         this.el.add_controller(  _this.keystate.el );
767                         var child_3 = new Xcls_EventControllerScroll13( _this );
768                         child_3.ref();
769                         this.el.add_controller(  child_3.el );
770                         var child_4 = new Xcls_GestureClick14( _this );
771                         child_4.ref();
772                         this.el.add_controller(  child_4.el );
773
774                         // init method
775
776                         this.el.completion.add_provider(
777                                 new Palete.CompletionProvider(_this)
778                         );
779                         
780                         // hover seems pretty useless.. - ??
781                         //var hover = this.el.get_hover();
782                         //hover.add_provider(new Palete.HoverProvider(_this));
783                         
784                         //this.el.completion.unblock_interactive();
785                         this.el.completion.select_on_show = true; // select
786                         //this.el.completion.remember_info_visibility    = true;
787                         
788                         
789                         var attrs = new GtkSource.MarkAttributes();
790                         
791                         attrs.set_icon_name ( "process-stop");    
792                         attrs.query_tooltip_text.connect(( mark) => {
793                              GLib.debug("tooltip query? %s", mark.name);
794                             return strdup( mark.name);
795                         });
796                          attrs.query_tooltip_markup.connect(( mark) => {
797                              GLib.debug("tooltip query? %s", mark.name);
798                             return strdup( mark.name);
799                         });
800                         this.el.set_mark_attributes ("ERR", attrs, 1);
801                         attrs.ref();
802                         
803                         
804                         var wattrs = new GtkSource.MarkAttributes();
805                         wattrs.set_icon_name ( "process-stop");    
806                         wattrs.query_tooltip_text.connect(( mark) => {
807                              GLib.debug("tooltip query? %s", mark.name);
808                             return strdup(mark.name);
809                         });
810                         wattrs.query_tooltip_markup.connect(( mark) => {
811                              GLib.debug("tooltip query? %s", mark.name);
812                             return strdup(mark.name);
813                         });
814                         this.el.set_mark_attributes ("WARN", wattrs, 1);
815                         wattrs.ref();
816                         
817                          
818                         var dattrs = new GtkSource.MarkAttributes();
819                          
820                         dattrs.set_icon_name ( "process-stop"); 
821                         
822                         dattrs.query_tooltip_text.connect(( mark) => {
823                                 GLib.debug("tooltip query? %s", mark.name);
824                             return strdup(mark.name);
825                         });
826                         //dattrs.query_tooltip_markup.connect(( mark) => {
827                         //      GLib.debug("tooltip query? %s", mark.name);
828                          //   return strdup(mark.name);
829                         //});
830                         this.el.set_mark_attributes ("DEPR", dattrs, 1);
831                         dattrs.ref();    
832                         
833                          this.el.get_space_drawer().set_matrix(null);
834                          this.el.get_space_drawer().set_types_for_locations( 
835                                 GtkSource.SpaceLocationFlags.ALL,
836                                 GtkSource.SpaceTypeFlags.ALL
837                         );
838                         this.el.get_space_drawer().set_enable_matrix(true);
839
840                         //listeners
841                         this.el.query_tooltip.connect( (x, y, keyboard_tooltip, tooltip) => {
842                                 
843                                 //GLib.debug("query tooltip");
844                                 Gtk.TextIter iter;
845                                 int trailing;
846                                 
847                                 var yoff = (int) _this.RightEditor.el.vadjustment.value;
848                                 
849                                 // I think this is problematic - if it's compliing  / updating at same time as query.
850                                 
851                                 //if (_this.window.statusbar_compile_spinner.el.spinning) {
852                                 //      return false;
853                                 //}
854                                 
855                                 this.el.get_iter_at_position (out iter, out trailing,  x,  y + yoff);
856                                  
857                                 var l = iter.get_line();
858                         
859                                 
860                                  
861                                 // GLib.debug("query tooltip line %d", (int) l);
862                                 if (l < 0) {
863                         
864                                         return false;
865                                 }
866                                 /*
867                                 if (_this.buffer.marks != null && _this.buffer.marks.has_key(l)) {
868                                         GLib.debug("line %d setting tip to %s", l,  _this.buffer.marks.get(l));
869                                         tooltip.set_text(_this.buffer.marks.get(l).dup());
870                                         return true;
871                                 }
872                          
873                                 return false;
874                                 */
875                                 
876                                   
877                                 // this crashes?? - not sure why.
878                                 var marks = _this.buffer.el.get_source_marks_at_line(l, "ERR");
879                                 if (marks.is_empty()) {
880                                         marks = _this.buffer.el.get_source_marks_at_line(l, "WARN");
881                                 }
882                                 if (marks.is_empty()) {
883                                         marks = _this.buffer.el.get_source_marks_at_line(l, "DEPR");
884                                 }
885                                 
886                                 // GLib.debug("query tooltip line %d marks %d", (int)l, (int) marks.length());
887                                 var str = "";
888                                 marks.@foreach((m) => { 
889                                         //GLib.debug("got mark %s", m.name);
890                                         str += (str.length > 0 ? "\n" : "") + m.category + ": " + m.name;
891                                 });
892                                 // true if there is a mark..
893                                 if (str.length > 0 ) {
894                                         tooltip.set_text( str );
895                                 }
896                                 return str.length > 0 ? true : false;
897                                  
898                         });
899                 }
900
901                 // user defined functions
902                 public void load (string str) {
903                 
904                 // show the help page for the active node..
905                    //this.get('/Help').show();
906                  
907                   // this.get('/BottomPane').el.set_current_page(0);
908                         GLib.debug("load called - Reset undo buffer");
909                         
910                     var buf = (GtkSource.Buffer)this.el.get_buffer();
911                     buf.begin_irreversible_action();
912                     buf.set_text(str, str.length);
913                     buf.end_irreversible_action();
914                     
915                     var lm = GtkSource.LanguageManager.get_default();
916                     var lang = "vala";
917                     if (_this.file != null) {
918                          lang = _this.file.language;
919                     }
920                     print("lang=%s, content_type = %s\n", lang, _this.file.content_type);
921                     var lg = _this.file.content_type.length > 0  ?
922                             lm.guess_language(_this.file.path, _this.file.content_type) :
923                             lm.get_language(lang);
924                      
925                    
926                     ((GtkSource.Buffer)(this.el.get_buffer())) .set_language(lg); 
927                 
928                     this.el.insert_spaces_instead_of_tabs = true;
929                     if (lg != null) {
930                                 print("sourcelanguage  = %s\n", lg.name);
931                                 if (lg.name == "Vala") {
932                                     this.el.insert_spaces_instead_of_tabs = false;
933                                 }
934                      }
935                     _this.dirty = false;
936                     this.el.grab_focus();
937                     _this.save_button.el.sensitive = false;
938                     _this.last_error_counter = -1;
939                 }
940         }
941         public class Xcls_buffer : Object
942         {
943                 public GtkSource.Buffer el;
944                 private Editor  _this;
945
946
947                         // my vars (def)
948                 public int error_line;
949                 public Gee.HashMap<int,string>? xmarks;
950                 public bool check_queued;
951
952                 // ctor
953                 public Xcls_buffer(Editor _owner )
954                 {
955                         _this = _owner;
956                         _this.buffer = this;
957                         this.el = new GtkSource.Buffer( null );
958
959                         // my vars (dec)
960                         this.error_line = -1;
961                         this.xmarks = null;
962                         this.check_queued = false;
963
964                         // set gobject values
965                         this.el.highlight_syntax = true;
966                         this.el.highlight_matching_brackets = true;
967                         this.el.enable_undo = true;
968
969                         // init method
970
971                         var buf = this.el;
972                         buf.create_tag ("bold", "weight", Pango.Weight.BOLD);
973                         buf.create_tag ("type", "weight", Pango.Weight.BOLD, "foreground", "#204a87");
974                         buf.create_tag ("keyword", "weight", Pango.Weight.BOLD, "foreground", "#a40000");
975                         buf.create_tag ("text", "weight", Pango.Weight.NORMAL, "foreground", "#729fcf");
976                         buf.create_tag ("number", "weight", Pango.Weight.BOLD, "foreground", "#ad7fa8");
977                         buf.create_tag ("method", "weight", Pango.Weight.BOLD, "foreground", "#729fcf");
978                         buf.create_tag ("property", "weight", Pango.Weight.BOLD, "foreground", "#BC1F51");
979                         buf.create_tag ("variable", "weight", Pango.Weight.BOLD, "foreground", "#A518B5");
980                         
981                         
982                         buf.create_tag ("ERR", "weight", Pango.Weight.BOLD, "background", "pink");
983                         buf.create_tag ("WARN", "weight", Pango.Weight.BOLD, "background", "#ABF4EB");
984                         buf.create_tag ("DEPR", "weight", Pango.Weight.BOLD, "background", "#EEA9FF");
985
986                         //listeners
987                         this.el.cursor_moved.connect( ( ) => {
988                         
989                                 Gtk.TextIter iter;
990                                 this.el.get_iter_at_offset (
991                                                 out iter, this.el.cursor_position);
992                         
993                                 _this.navigation.updateSelectedLine(
994                                                 (uint)iter.get_line(),
995                                                 (uint)iter.get_line_offset()
996                                         );
997                                 this.showHelp(iter);
998                         
999                         });
1000                         this.el.changed.connect( () => {
1001                             // check syntax??
1002                             // ??needed..??
1003                             _this.save_button.el.sensitive = true;
1004                             print("EDITOR CHANGED");
1005                             this.checkSyntax();
1006                            
1007                             _this.dirty = true;
1008                         
1009                             // this.get('/LeftPanel.model').changed(  str , false);
1010                             return ;
1011                         });
1012                 }
1013
1014                 // user defined functions
1015                 public bool OLDhighlightErrorsJson (string type, Json.Object obj) {
1016                         Gtk.TextIter start;
1017                         Gtk.TextIter end;     
1018                         this.el.get_bounds (out start, out end);
1019                 
1020                         this.el.remove_source_marks (start, end, type);
1021                         GLib.debug("highlight errors");          
1022                 
1023                          // we should highlight other types of errors..
1024                 
1025                         if (!obj.has_member(type)) {
1026                                 GLib.debug("Return has no errors\n");
1027                                 return true;
1028                         }
1029                 
1030                         if (_this.window.windowstate.state != WindowState.State.CODEONLY 
1031                                 &&
1032                                 _this.window.windowstate.state != WindowState.State.CODE
1033                                 ) {
1034                                 GLib.debug("windowstate != CODEONLY?");
1035                                 
1036                                 return true;
1037                         } 
1038                 
1039                         //this.marks = new Gee.HashMap<int,string>();
1040                         var err = obj.get_object_member(type);
1041                  
1042                         if (_this.file == null) {
1043                                 GLib.debug("file is null?");
1044                                 return true;
1045                 
1046                         }
1047                         var valafn = _this.file.path;
1048                 
1049                         if (_this.file.xtype != "PlainFile") {
1050                 
1051                                 valafn = "";
1052                                 try {             
1053                                         var  regex = new Regex("\\.bjs$");
1054                                         // should not happen
1055                                         valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , ".vala");
1056                                 } catch (GLib.RegexError e) {
1057                                         return true;
1058                                 }   
1059                 
1060                 
1061                 
1062                         }
1063                         if (!err.has_member(valafn)) {
1064                                 GLib.debug("File path has no errors");
1065                                 return  true;
1066                         }
1067                 
1068                         var lines = err.get_object_member(valafn);
1069                         
1070                         var offset = 1;
1071                         if (obj.has_member("line_offset")) { // ?? why??
1072                                 offset = (int)obj.get_int_member("line_offset") + 1;
1073                         }
1074                 
1075                 
1076                         var tlines = this.el.get_line_count () +1;
1077                         
1078                         if (_this.prop != null) {
1079                         
1080                                 tlines = _this.prop.end_line + 1;
1081                                 offset = _this.prop.start_line + 1;
1082                         
1083                         }
1084                         
1085                 
1086                 
1087                         lines.foreach_member((obj, line, node) => {
1088                                 
1089                              Gtk.TextIter iter;
1090                 //        print("get inter\n");
1091                             var eline = int.parse(line) - offset;
1092                             GLib.debug("GOT ERROR on line %s -- converted to %d  (offset = %d)\n", line,eline, offset);
1093                             
1094                             
1095                             if (eline > tlines || eline < 0) {
1096                                 return;
1097                             }
1098                            
1099                             
1100                             this.el.get_iter_at_line( out iter, eline);
1101                             //print("mark line\n");
1102                             var msg  = "";
1103                             var ar = lines.get_array_member(line);
1104                             for (var i = 0 ; i < ar.get_length(); i++) {
1105                                 if (ar.get_string_element(i) == "Success") {
1106                                         continue;
1107                                 }
1108                                         msg += (msg.length > 0) ? "\n" : "";
1109                                         msg += ar.get_string_element(i);
1110                                 }
1111                                 if (msg == "") {
1112                                         return;
1113                                 }
1114                                 msg = "Line: %d".printf(eline+1) +  " " + msg;
1115                             this.el.create_source_mark(msg, type, iter);
1116                             GLib.debug("set line %d to %m", eline, msg);
1117                            // this.marks.set(eline, msg);
1118                         } );
1119                         return false;
1120                 
1121                 
1122                 
1123                 
1124                 
1125                         }
1126                 public bool checkSyntax () {
1127                  
1128                     
1129                     var str = this.toString();
1130                     
1131                     // needed???
1132                     if (this.error_line > 0) {
1133                          Gtk.TextIter start;
1134                          Gtk.TextIter end;     
1135                         this.el.get_bounds (out start, out end);
1136                 
1137                         this.el.remove_source_marks (start, end, null);
1138                     }
1139                     if (str.length < 1) {
1140                         print("checkSyntax - empty string?\n");
1141                         return true;
1142                     }
1143                     
1144                     // bit presumptiona
1145                     if (_this.file.xtype == "PlainFile") {
1146                     
1147                         // assume it's gtk...
1148                          var  oldcode =_this.file.toSource();
1149                         _this.file.setSource(str);
1150                             BuilderApplication.showSpinner("appointment soon","document change pending");
1151                         _this.file.getLanguageServer().document_change(_this.file);
1152                                 _this.file.getLanguageServer().queueDocumentSymbols(_this.file);
1153                         _this.file.setSource(oldcode);
1154                         
1155                                  
1156                         return true;
1157                     
1158                     }
1159                    if (_this.file == null) {
1160                        return true;
1161                    }
1162                  
1163                     
1164                 
1165                       
1166                      
1167                     GLib.debug("calling validate");    
1168                     // clear the buttons.
1169                         if (_this.prop.name == "xns" || _this.prop.name == "xtype") {
1170                                 return true ;
1171                         }
1172                         var oldcode  = _this.prop.val;
1173                         
1174                         _this.prop.val = str;
1175                         _this.node.updated_count++;
1176                     _this.file.getLanguageServer().document_change(_this.file);
1177                     _this.node.updated_count++;
1178                     _this.prop.val = oldcode;
1179                     
1180                     
1181                     //print("done mark line\n");
1182                      
1183                     return true; // at present allow saving - even if it's invalid..
1184                 }
1185                 public bool highlightErrors ( Gee.HashMap<int,string> validate_res) {
1186                          
1187                         this.error_line = validate_res.size;
1188                 
1189                         if (this.error_line < 1) {
1190                                 return true;
1191                         }
1192                         var tlines = this.el.get_line_count ();
1193                         Gtk.TextIter iter;
1194                         var valiter = validate_res.map_iterator();
1195                         while (valiter.next()) {
1196                 
1197                         //        print("get inter\n");
1198                                 var eline = valiter.get_key();
1199                                 if (eline > tlines) {
1200                                         continue;
1201                                 }
1202                                 this.el.get_iter_at_line( out iter, eline);
1203                                 //print("mark line\n");
1204                                 this.el.create_source_mark(valiter.get_value(), "ERR", iter);
1205                         }   
1206                         return false;
1207                 }
1208                 public string toString () {
1209                     
1210                     Gtk.TextIter s;
1211                     Gtk.TextIter e;
1212                     this.el.get_start_iter(out s);
1213                     this.el.get_end_iter(out e);
1214                     var ret = this.el.get_text(s,e,true);
1215                     //print("TO STRING? " + ret);
1216                     return ret;
1217                 }
1218                 public void showHelp (Gtk.TextIter iter) {
1219                         var back = iter.copy();
1220                         back.backward_char();
1221                         
1222                         var forward = iter.copy();
1223                         forward.forward_char();
1224                         
1225                         // what's the character at the iter?
1226                         var str = back.get_text(iter);
1227                         str += iter.get_text(forward);
1228                         if (str.strip().length < 1) {
1229                                 return;
1230                         }
1231                         var offset = iter.get_line_offset();
1232                         var line = iter.get_line();
1233                         if (_this.prop != null) {
1234                                                 // 
1235                                 line += _this.prop.start_line ; 
1236                                                         // this is based on Gtk using tabs (hence 1/2 chars);
1237                                 offset += _this.node.node_pad.length;
1238                                                         // javascript listeners are indented 2 more spaces.
1239                                 if (_this.prop.ptype == JsRender.NodePropType.LISTENER) {
1240                                         offset += 2;
1241                                 }
1242                         } 
1243                         
1244                         var ls = _this.file.getLanguageServer();
1245                         ls.hover.begin(
1246                                 _this.file, line, offset,
1247                                 ( a, o)  => {
1248                                         try {
1249                                                 var res = ls.hover.end(o );
1250                                         
1251                                                 _this.helper.setHelp(res);
1252                                         } catch (GLib.Error e) {
1253                                                 // noop..
1254                                         }
1255                                 });
1256                 }       
1257                                  
1258                  
1259                 }
1260         }
1261
1262         public class Xcls_keystate : Object
1263         {
1264                 public Gtk.EventControllerKey el;
1265                 private Editor  _this;
1266
1267
1268                         // my vars (def)
1269                 public bool is_control;
1270
1271                 // ctor
1272                 public Xcls_keystate(Editor _owner )
1273                 {
1274                         _this = _owner;
1275                         _this.keystate = this;
1276                         this.el = new Gtk.EventControllerKey();
1277
1278                         // my vars (dec)
1279                         this.is_control = false;
1280
1281                         // set gobject values
1282
1283                         //listeners
1284                         this.el.key_released.connect( (keyval, keycode, state) => {
1285                         
1286                                  if (keyval == Gdk.Key.Control_L || keyval == Gdk.Key.Control_R) {
1287                                         this.is_control = false;
1288                                 }
1289                             if (keyval == Gdk.Key.s && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1290                                 GLib.debug("SAVE: ctrl-S  pressed");
1291                                 _this.saveContents();
1292                                 return;
1293                             }
1294                             
1295                             if (keyval == Gdk.Key.g && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1296                                     GLib.debug("SAVE: ctrl-g  pressed");
1297                                         _this.forwardSearch(true);
1298                                     return;
1299                                 }
1300                                 if (keyval == Gdk.Key.f && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1301                                     GLib.debug("SAVE: ctrl-f  pressed");
1302                                         _this.search_entry.el.grab_focus();
1303                                         _this.search_entry.el.select_region(0,-1);
1304                                     return;
1305                                 }
1306                                 if (keyval == Gdk.Key.space && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1307                                         _this.view.el.show_completion();
1308                                 }
1309                                 
1310                                 Gtk.TextIter iter;
1311                                 _this.buffer.el.get_iter_at_offset( out iter, _this.buffer.el.cursor_position);  
1312                                 var line  = iter.get_line();
1313                                 var offset = iter.get_line_offset();
1314                                 GLib.debug("line  %d  off %d", line ,offset);
1315                                 if (_this.prop != null) {
1316                                         line += _this.prop.start_line + 1; // i think..
1317                                         offset += 12; // should probably be 8 without namespaced 
1318                                         GLib.debug("guess line  %d  off %d", line ,offset);
1319                                 } 
1320                             //_this.view.el.show_completion();
1321                            // print(event.key.keyval)
1322                             
1323                             
1324                             return;
1325                          
1326                          
1327                         });
1328                         this.el.key_pressed.connect( (keyval, keycode, state) => {
1329                         
1330                                 if (keyval == Gdk.Key.Control_L || keyval == Gdk.Key.Control_R) {
1331                                         this.is_control = true;
1332                                 }
1333                                 return false;
1334                         });
1335                 }
1336
1337                 // user defined functions
1338         }
1339
1340         public class Xcls_EventControllerScroll13 : Object
1341         {
1342                 public Gtk.EventControllerScroll el;
1343                 private Editor  _this;
1344
1345
1346                         // my vars (def)
1347                 public double distance;
1348
1349                 // ctor
1350                 public Xcls_EventControllerScroll13(Editor _owner )
1351                 {
1352                         _this = _owner;
1353                         this.el = new Gtk.EventControllerScroll( Gtk.EventControllerScrollFlags.VERTICAL );
1354
1355                         // my vars (dec)
1356                         this.distance = 0.0f;
1357
1358                         // set gobject values
1359
1360                         //listeners
1361                         this.el.scroll.connect( (dx, dy) => {
1362                                 if (!_this.keystate.is_control) {
1363                                         return false;
1364                                 }
1365                                  //GLib.debug("scroll %f",  dy);
1366                                 
1367                                 this.distance += dy;
1368                                 
1369                                 //GLib.debug("scroll %f / %f",  dy, this.distance);
1370                          
1371                                  if (this.distance < -1) {
1372                          
1373                                         BuilderApplication.settings.editor_font_size ++;
1374                                         this.distance = 0;
1375                                 }
1376                                 if (this.distance > 1) {
1377                                         BuilderApplication.settings.editor_font_size --;
1378                                         this.distance = 0;
1379                                 }
1380                                  
1381                                 return true;
1382                         });
1383                 }
1384
1385                 // user defined functions
1386         }
1387
1388         public class Xcls_GestureClick14 : Object
1389         {
1390                 public Gtk.GestureClick el;
1391                 private Editor  _this;
1392
1393
1394                         // my vars (def)
1395
1396                 // ctor
1397                 public Xcls_GestureClick14(Editor _owner )
1398                 {
1399                         _this = _owner;
1400                         this.el = new Gtk.GestureClick();
1401
1402                         // my vars (dec)
1403
1404                         // set gobject values
1405
1406                         //listeners
1407                         this.el.pressed.connect( (n_press, x, y) => {
1408                                 Gtk.TextIter iter;
1409                                 int  buffer_x, buffer_y;
1410                                 var gut = _this.view.el.get_gutter(Gtk.TextWindowType.LEFT);
1411                                 
1412                                  _this.view.el.window_to_buffer_coords (Gtk.TextWindowType.TEXT,
1413                                         (int)x - gut.get_width(),  (int)y,
1414                                         out  buffer_x, out  buffer_y);
1415                                 _this.view.el.get_iter_at_location (out  iter,  
1416                                                 buffer_x,  buffer_y);;
1417                                 
1418                                 
1419                                 if (_this.buffer.el.iter_has_context_class(iter, "comment") ||
1420                                         _this.buffer.el.iter_has_context_class(iter, "string")
1421                                 ) { 
1422                                         return ;
1423                                 }
1424                                 _this.buffer.showHelp(iter);
1425                                  
1426                                          
1427                          
1428                         });
1429                 }
1430
1431                 // user defined functions
1432         }
1433
1434
1435
1436         public class Xcls_Box15 : Object
1437         {
1438                 public Gtk.Box el;
1439                 private Editor  _this;
1440
1441
1442                         // my vars (def)
1443
1444                 // ctor
1445                 public Xcls_Box15(Editor _owner )
1446                 {
1447                         _this = _owner;
1448                         this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
1449
1450                         // my vars (dec)
1451
1452                         // set gobject values
1453                         this.el.homogeneous = false;
1454                         this.el.vexpand = false;
1455                         new Xcls_search_entry( _this );
1456                         this.el.append( _this.search_entry.el );
1457                         new Xcls_search_results( _this );
1458                         this.el.append( _this.search_results.el );
1459                         new Xcls_nextBtn( _this );
1460                         this.el.append( _this.nextBtn.el );
1461                         new Xcls_backBtn( _this );
1462                         this.el.append( _this.backBtn.el );
1463                         var child_5 = new Xcls_MenuButton21( _this );
1464                         child_5.ref();
1465                         this.el.append( child_5.el );
1466                 }
1467
1468                 // user defined functions
1469         }
1470         public class Xcls_search_entry : Object
1471         {
1472                 public Gtk.SearchEntry el;
1473                 private Editor  _this;
1474
1475
1476                         // my vars (def)
1477                 public Gtk.CssProvider css;
1478
1479                 // ctor
1480                 public Xcls_search_entry(Editor _owner )
1481                 {
1482                         _this = _owner;
1483                         _this.search_entry = this;
1484                         this.el = new Gtk.SearchEntry();
1485
1486                         // my vars (dec)
1487
1488                         // set gobject values
1489                         this.el.name = "editor-search-entry";
1490                         this.el.hexpand = true;
1491                         this.el.placeholder_text = "Press enter to search";
1492                         this.el.search_delay = 3;
1493                         var child_1 = new Xcls_EventControllerKey17( _this );
1494                         child_1.ref();
1495                         this.el.add_controller(  child_1.el );
1496
1497                         //listeners
1498                         this.el.search_changed.connect( ( ) => {
1499                         
1500                         _this.search(_this.search_entry.el.text);
1501                                  _this.search_results.updateResults();
1502                         
1503                                 GLib.Timeout.add_seconds(1,() => {
1504                                          _this.search_results.updateResults();
1505                                          return false;
1506                                  });
1507                         });
1508                 }
1509
1510                 // user defined functions
1511                 public void forwardSearch (bool change_focus) {
1512                 
1513                 
1514                         _this.forwardSearch(change_focus);
1515                 
1516                 /*
1517                 
1518                         switch(_this.windowstate.state) {
1519                                 case WindowState.State.CODEONLY:
1520                                 //case WindowState.State.CODE:
1521                                         // search the code being edited..
1522                                         _this.windowstate.code_editor_tab.forwardSearch(change_focus);
1523                                          
1524                                         break;
1525                                 case WindowState.State.PREVIEW:
1526                                         if (_this.windowstate.file.xtype == "Gtk") {
1527                                                 _this.windowstate.window_gladeview.forwardSearch(change_focus);
1528                                         } else { 
1529                                                  _this.windowstate.window_rooview.forwardSearch(change_focus);
1530                                         }
1531                                 
1532                                         break;
1533                         }
1534                         */
1535                         
1536                 }
1537         }
1538         public class Xcls_EventControllerKey17 : Object
1539         {
1540                 public Gtk.EventControllerKey el;
1541                 private Editor  _this;
1542
1543
1544                         // my vars (def)
1545
1546                 // ctor
1547                 public Xcls_EventControllerKey17(Editor _owner )
1548                 {
1549                         _this = _owner;
1550                         this.el = new Gtk.EventControllerKey();
1551
1552                         // my vars (dec)
1553
1554                         // set gobject values
1555
1556                         //listeners
1557                         this.el.key_pressed.connect( (keyval, keycode, state) => {
1558                         
1559                                 if (keyval == Gdk.Key.g && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1560                                     GLib.debug("SAVE: ctrl-g  pressed");
1561                                         _this.forwardSearch(true);
1562                                     return true;
1563                                 }
1564                             
1565                           
1566                                 if (keyval == Gdk.Key.Return && _this.search_entry.el.text.length > 0) {
1567                                         _this.forwardSearch(true);
1568                                         
1569                                         
1570                                     return true;
1571                         
1572                                 }    
1573                            // print(event.key.keyval)
1574                            
1575                             return false;
1576                         });
1577                 }
1578
1579                 // user defined functions
1580         }
1581
1582
1583         public class Xcls_search_results : Object
1584         {
1585                 public Gtk.Label el;
1586                 private Editor  _this;
1587
1588
1589                         // my vars (def)
1590
1591                 // ctor
1592                 public Xcls_search_results(Editor _owner )
1593                 {
1594                         _this = _owner;
1595                         _this.search_results = this;
1596                         this.el = new Gtk.Label( "No Results" );
1597
1598                         // my vars (dec)
1599
1600                         // set gobject values
1601                         this.el.margin_end = 4;
1602                         this.el.margin_start = 4;
1603                 }
1604
1605                 // user defined functions
1606                 public void updateResults () {
1607                         this.el.visible = true;
1608                         
1609                         var res = _this.searchcontext.get_occurrences_count();
1610                         if (res < 0) {
1611                                 _this.search_results.el.label = "??? Matches";          
1612                                 return;
1613                         }
1614                 
1615                         _this.nextBtn.el.sensitive = false;
1616                         _this.backBtn.el.sensitive = false;     
1617                 
1618                         if (res > 0) {
1619                                 _this.search_results.el.label = "%d Matches".printf(res);
1620                                 _this.nextBtn.el.sensitive = true;
1621                                 _this.backBtn.el.sensitive = true;
1622                                 return;
1623                         } 
1624                         _this.search_results.el.label = "No Matches";
1625                         
1626                 }
1627         }
1628
1629         public class Xcls_nextBtn : Object
1630         {
1631                 public Gtk.Button el;
1632                 private Editor  _this;
1633
1634
1635                         // my vars (def)
1636                 public bool always_show_image;
1637
1638                 // ctor
1639                 public Xcls_nextBtn(Editor _owner )
1640                 {
1641                         _this = _owner;
1642                         _this.nextBtn = this;
1643                         this.el = new Gtk.Button();
1644
1645                         // my vars (dec)
1646                         this.always_show_image = true;
1647
1648                         // set gobject values
1649                         this.el.icon_name = "go-down";
1650                         this.el.sensitive = false;
1651
1652                         //listeners
1653                         this.el.clicked.connect( (event) => {
1654                         
1655                                 _this.forwardSearch(true);
1656                                 
1657                                  
1658                         });
1659                 }
1660
1661                 // user defined functions
1662         }
1663
1664         public class Xcls_backBtn : Object
1665         {
1666                 public Gtk.Button el;
1667                 private Editor  _this;
1668
1669
1670                         // my vars (def)
1671                 public bool always_show_image;
1672
1673                 // ctor
1674                 public Xcls_backBtn(Editor _owner )
1675                 {
1676                         _this = _owner;
1677                         _this.backBtn = this;
1678                         this.el = new Gtk.Button();
1679
1680                         // my vars (dec)
1681                         this.always_show_image = true;
1682
1683                         // set gobject values
1684                         this.el.icon_name = "go-up";
1685                         this.el.sensitive = false;
1686
1687                         //listeners
1688                         this.el.clicked.connect( (event) => {
1689                         
1690                                 _this.backSearch(true);
1691                                  
1692                         });
1693                 }
1694
1695                 // user defined functions
1696         }
1697
1698         public class Xcls_MenuButton21 : Object
1699         {
1700                 public Gtk.MenuButton el;
1701                 private Editor  _this;
1702
1703
1704                         // my vars (def)
1705                 public bool always_show_image;
1706
1707                 // ctor
1708                 public Xcls_MenuButton21(Editor _owner )
1709                 {
1710                         _this = _owner;
1711                         this.el = new Gtk.MenuButton();
1712
1713                         // my vars (dec)
1714                         this.always_show_image = true;
1715
1716                         // set gobject values
1717                         this.el.icon_name = "emblem-system";
1718                         this.el.always_show_arrow = true;
1719                         new Xcls_search_settings( _this );
1720                         this.el.popover = _this.search_settings.el;
1721                 }
1722
1723                 // user defined functions
1724         }
1725         public class Xcls_search_settings : Object
1726         {
1727                 public Gtk.Popover el;
1728                 private Editor  _this;
1729
1730
1731                         // my vars (def)
1732
1733                 // ctor
1734                 public Xcls_search_settings(Editor _owner )
1735                 {
1736                         _this = _owner;
1737                         _this.search_settings = this;
1738                         this.el = new Gtk.Popover();
1739
1740                         // my vars (dec)
1741
1742                         // set gobject values
1743                         var child_1 = new Xcls_Box23( _this );
1744                         child_1.ref();
1745                         this.el.child = child_1.el;
1746                 }
1747
1748                 // user defined functions
1749         }
1750         public class Xcls_Box23 : Object
1751         {
1752                 public Gtk.Box el;
1753                 private Editor  _this;
1754
1755
1756                         // my vars (def)
1757
1758                 // ctor
1759                 public Xcls_Box23(Editor _owner )
1760                 {
1761                         _this = _owner;
1762                         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1763
1764                         // my vars (dec)
1765
1766                         // set gobject values
1767                         new Xcls_case_sensitive( _this );
1768                         this.el.append( _this.case_sensitive.el );
1769                         new Xcls_regex( _this );
1770                         this.el.append( _this.regex.el );
1771                         new Xcls_multiline( _this );
1772                         this.el.append( _this.multiline.el );
1773                 }
1774
1775                 // user defined functions
1776         }
1777         public class Xcls_case_sensitive : Object
1778         {
1779                 public Gtk.CheckButton el;
1780                 private Editor  _this;
1781
1782
1783                         // my vars (def)
1784
1785                 // ctor
1786                 public Xcls_case_sensitive(Editor _owner )
1787                 {
1788                         _this = _owner;
1789                         _this.case_sensitive = this;
1790                         this.el = new Gtk.CheckButton();
1791
1792                         // my vars (dec)
1793
1794                         // set gobject values
1795                         this.el.label = "Case Sensitive";
1796
1797                         // init method
1798
1799                         {
1800                                 this.el.show();
1801                         }
1802                 }
1803
1804                 // user defined functions
1805         }
1806
1807         public class Xcls_regex : Object
1808         {
1809                 public Gtk.CheckButton el;
1810                 private Editor  _this;
1811
1812
1813                         // my vars (def)
1814
1815                 // ctor
1816                 public Xcls_regex(Editor _owner )
1817                 {
1818                         _this = _owner;
1819                         _this.regex = this;
1820                         this.el = new Gtk.CheckButton();
1821
1822                         // my vars (dec)
1823
1824                         // set gobject values
1825                         this.el.label = "Regex";
1826
1827                         // init method
1828
1829                         {
1830                                 this.el.show();
1831                         }
1832                 }
1833
1834                 // user defined functions
1835         }
1836
1837         public class Xcls_multiline : Object
1838         {
1839                 public Gtk.CheckButton el;
1840                 private Editor  _this;
1841
1842
1843                         // my vars (def)
1844
1845                 // ctor
1846                 public Xcls_multiline(Editor _owner )
1847                 {
1848                         _this = _owner;
1849                         _this.multiline = this;
1850                         this.el = new Gtk.CheckButton();
1851
1852                         // my vars (dec)
1853
1854                         // set gobject values
1855                         this.el.label = "Multi-line (add \\n)";
1856                 }
1857
1858                 // user defined functions
1859         }
1860
1861
1862
1863
1864
1865
1866         public class Xcls_Box27 : Object
1867         {
1868                 public Gtk.Box el;
1869                 private Editor  _this;
1870
1871
1872                         // my vars (def)
1873
1874                 // ctor
1875                 public Xcls_Box27(Editor _owner )
1876                 {
1877                         _this = _owner;
1878                         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1879
1880                         // my vars (dec)
1881
1882                         // set gobject values
1883                         this.el.hexpand = true;
1884                         this.el.vexpand = true;
1885                         var child_1 = new Xcls_Box28( _this );
1886                         child_1.ref();
1887                         this.el.append( child_1.el );
1888                         new Xcls_navigationwindow( _this );
1889                         this.el.append( _this.navigationwindow.el );
1890                 }
1891
1892                 // user defined functions
1893         }
1894         public class Xcls_Box28 : Object
1895         {
1896                 public Gtk.Box el;
1897                 private Editor  _this;
1898
1899
1900                         // my vars (def)
1901
1902                 // ctor
1903                 public Xcls_Box28(Editor _owner )
1904                 {
1905                         _this = _owner;
1906                         this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
1907
1908                         // my vars (dec)
1909
1910                         // set gobject values
1911                 }
1912
1913                 // user defined functions
1914         }
1915
1916         public class Xcls_navigationwindow : Object
1917         {
1918                 public Gtk.ScrolledWindow el;
1919                 private Editor  _this;
1920
1921
1922                         // my vars (def)
1923
1924                 // ctor
1925                 public Xcls_navigationwindow(Editor _owner )
1926                 {
1927                         _this = _owner;
1928                         _this.navigationwindow = this;
1929                         this.el = new Gtk.ScrolledWindow();
1930
1931                         // my vars (dec)
1932
1933                         // set gobject values
1934                         this.el.hexpand = true;
1935                         this.el.vexpand = true;
1936                         this.el.visible = false;
1937                         new Xcls_navigation( _this );
1938                         this.el.child = _this.navigation.el;
1939                 }
1940
1941                 // user defined functions
1942         }
1943         public class Xcls_navigation : Object
1944         {
1945                 public Gtk.ColumnView el;
1946                 private Editor  _this;
1947
1948
1949                         // my vars (def)
1950                 public int last_selected_line;
1951                 public Gtk.Widget? selected_row;
1952
1953                 // ctor
1954                 public Xcls_navigation(Editor _owner )
1955                 {
1956                         _this = _owner;
1957                         _this.navigation = this;
1958                         new Xcls_navigationselmodel( _this );
1959                         this.el = new Gtk.ColumnView( _this.navigationselmodel.el );
1960
1961                         // my vars (dec)
1962                         this.last_selected_line = -1;
1963                         this.selected_row = null;
1964
1965                         // set gobject values
1966                         this.el.name = "editor-navigation";
1967                         var child_2 = new Xcls_ColumnViewColumn31( _this );
1968                         child_2.ref();
1969                         this.el.append_column( child_2.el );
1970                         var child_3 = new Xcls_GestureClick40( _this );
1971                         child_3.ref();
1972                         this.el.add_controller(  child_3.el );
1973                 }
1974
1975                 // user defined functions
1976                 public Gtk.Widget? getRowWidgetAt (double x,  double  y, out string pos) {
1977                 
1978                         pos = "";
1979                         var w = this.el.pick(x, y, Gtk.PickFlags.DEFAULT);
1980                         //GLib.debug("got widget %s", w == null ? "nothing" : w.get_type().name());
1981                         if (w == null) {
1982                                 return null;
1983                         }
1984                         
1985                         var row= w.get_ancestor(GLib.Type.from_name("GtkColumnViewRowWidget"));
1986                         if (row == null) {
1987                                 return null;
1988                         }
1989                         
1990                         //GLib.debug("got colview %s", row == null ? "nothing" : row.get_type().name());
1991                          
1992                  
1993                         
1994                         //GLib.debug("row number is %d", rn);
1995                         //GLib.debug("click %d, %d", (int)x, (int)y);
1996                         // above or belw
1997                         Graphene.Rect  bounds;
1998                         row.compute_bounds(this.el, out bounds);
1999                         //GLib.debug("click x=%d, y=%d, w=%d, h=%d", 
2000                         //      (int)bounds.get_x(), (int)bounds.get_y(),
2001                         //      (int)bounds.get_width(), (int)bounds.get_height()
2002                         //      );
2003                         var ypos = y - bounds.get_y();
2004                         //GLib.debug("rel ypos = %d", (int)ypos);       
2005                         var rpos = 100.0 * (ypos / bounds.get_height());
2006                         //GLib.debug("rel pos = %d %%", (int)rpos);
2007                         pos = "over";
2008                         
2009                         if (rpos > 80) {
2010                                 pos = "below";
2011                         } else if (rpos < 20) {
2012                                 pos = "above";
2013                         } 
2014                         return row;
2015                  }
2016                 public void show (Gee.ArrayList<Lsp.DocumentSymbol> syms) {
2017                         _this.navigationwindow.el.show();
2018                         //_this.navliststore.el.remove_all();
2019                         
2020                         
2021                         var ls  = new GLib.ListStore(typeof(Lsp.DocumentSymbol));
2022                         
2023                         foreach(var sym in syms) {
2024                                 ls.append(sym);
2025                         }
2026                         Lsp.DocumentSymbol.copyList(ls, _this.navliststore.el);
2027                         //_this.navliststore.el.append(sym);
2028                         this.last_selected_line = -1;
2029                         GLib.Idle.add(() => {
2030                                 _this.navigationsort.collapseOnLoad();
2031                                 Gtk.TextIter iter;
2032                                 _this.buffer.el.get_iter_at_offset (
2033                                                 out iter, _this.buffer.el.cursor_position);
2034                                 
2035                                 GLib.debug("idle update scroll %d, %d", iter.get_line(),
2036                                                 iter.get_line_offset());
2037                                 this.updateSelectedLine(
2038                                                 (uint)iter.get_line(),
2039                                                 (uint)iter.get_line_offset()
2040                                 );
2041                                 return false;
2042                         });
2043                 
2044                 }
2045                 public int getRowAt (double x,  double  y, out string pos) {
2046                 
2047                         pos = "";
2048                         var w = this.el.pick(x, y, Gtk.PickFlags.DEFAULT);
2049                         //GLib.debug("got widget %s", w == null ? "nothing" : w.get_type().name());
2050                         if (w == null) {
2051                                 return -1;
2052                         }
2053                         
2054                         var row= w.get_ancestor(GLib.Type.from_name("GtkColumnViewRowWidget"));
2055                         if (row == null) {
2056                                 return -1;
2057                         }
2058                         
2059                         //GLib.debug("got colview %s", row == null ? "nothing" : row.get_type().name());
2060                          
2061                         var rn = 0;
2062                         var cr = row;
2063                          
2064                         while (cr.get_prev_sibling() != null) {
2065                                 rn++;
2066                                 cr = cr.get_prev_sibling();
2067                         }
2068                         
2069                         //GLib.debug("row number is %d", rn);
2070                         //GLib.debug("click %d, %d", (int)x, (int)y);
2071                         // above or belw
2072                         Graphene.Rect  bounds;
2073                         row.compute_bounds(this.el, out bounds);
2074                         //GLib.debug("click x=%d, y=%d, w=%d, h=%d", 
2075                         //      (int)bounds.get_x(), (int)bounds.get_y(),
2076                         //      (int)bounds.get_width(), (int)bounds.get_height()
2077                         //      );
2078                         var ypos = y - bounds.get_y();
2079                         //GLib.debug("rel ypos = %d", (int)ypos);       
2080                         var rpos = 100.0 * (ypos / bounds.get_height());
2081                         //GLib.debug("rel pos = %d %%", (int)rpos);
2082                         pos = "over";
2083                         
2084                         if (rpos > 80) {
2085                                 pos = "below";
2086                         } else if (rpos < 20) {
2087                                 pos = "above";
2088                         } 
2089                         return rn;
2090                  }
2091                 public void updateSelectedLine (uint line, uint chr) {
2092                         if (line == this.last_selected_line) {
2093                                 return;
2094                         }
2095                         GLib.debug("select line %d", (int)line);
2096                         this.last_selected_line = (int)line;
2097                         
2098                         
2099                         var new_row = -1;
2100                         var sym = _this.navliststore.symbolAtLine(line, chr);
2101                         if (sym != null) {
2102                                 new_row = _this.navigationsort.getRowFromSymbol(sym);
2103                                 GLib.debug("select line %d - row found %d", (int)line, new_row);
2104                         } else {
2105                                 GLib.debug(" no symbol found at line %d", (int)line);
2106                         }
2107                         
2108                         if (this.selected_row != null) { 
2109                                 GLib.debug(" remove selected row");
2110                                 this.selected_row.remove_css_class("selected-row");
2111                         }
2112                         this.selected_row  = null;
2113                         if (new_row > -1) {
2114                                 this.el.scroll_to(new_row,null,Gtk.ListScrollFlags.NONE, null);
2115                                 var row = sym.get_data<Gtk.Widget>("widget");
2116                                 if (row != null) {
2117                                         GLib.debug(" Add selected row");
2118                                         
2119                                         row.add_css_class("selected-row");
2120                                         this.selected_row = row;
2121                 
2122                                         
2123                                 } else {
2124                                         GLib.debug("could not find widget on row %d", new_row);
2125                                 }
2126                 
2127                         }
2128                 
2129                 
2130                 }
2131         }
2132         public class Xcls_ColumnViewColumn31 : Object
2133         {
2134                 public Gtk.ColumnViewColumn el;
2135                 private Editor  _this;
2136
2137
2138                         // my vars (def)
2139
2140                 // ctor
2141                 public Xcls_ColumnViewColumn31(Editor _owner )
2142                 {
2143                         _this = _owner;
2144                         var child_1 = new Xcls_SignalListItemFactory32( _this );
2145                         child_1.ref();
2146                         this.el = new Gtk.ColumnViewColumn( "Code Navigation", child_1.el );
2147
2148                         // my vars (dec)
2149
2150                         // set gobject values
2151                         this.el.expand = true;
2152                 }
2153
2154                 // user defined functions
2155         }
2156         public class Xcls_SignalListItemFactory32 : Object
2157         {
2158                 public Gtk.SignalListItemFactory el;
2159                 private Editor  _this;
2160
2161
2162                         // my vars (def)
2163
2164                 // ctor
2165                 public Xcls_SignalListItemFactory32(Editor _owner )
2166                 {
2167                         _this = _owner;
2168                         this.el = new Gtk.SignalListItemFactory();
2169
2170                         // my vars (dec)
2171
2172                         // set gobject values
2173
2174                         //listeners
2175                         this.el.setup.connect( (listitem) => {
2176                                 
2177                                 var expand = new Gtk.TreeExpander();
2178                                  
2179                                 expand.set_indent_for_depth(true);
2180                                 expand.set_indent_for_icon(true);
2181                                 var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL,0);
2182                                 var icon = new Gtk.Image();
2183                                 var lbl = new Gtk.Label("");
2184                                 lbl.use_markup = true;
2185                                 lbl.ellipsize = Pango.EllipsizeMode.END;
2186                                 
2187                                 icon.margin_end = 4;
2188                                 lbl.justify = Gtk.Justification.LEFT;
2189                                 lbl.xalign = 0;
2190                         
2191                         //      listitem.activatable = true; ??
2192                                 
2193                                 hbox.append(icon);
2194                                 hbox.append(lbl);
2195                                 expand.set_child(hbox);
2196                                 ((Gtk.ListItem)listitem).set_child(expand);
2197                                 
2198                         });
2199                         this.el.bind.connect( (listitem) => {
2200                                  
2201                                 // GLib.debug("listitme is is %s", ((Gtk.ListItem)listitem).get_type().name());
2202                                 
2203                                 //var expand = (Gtk.TreeExpander) ((Gtk.ListItem)listitem).get_child();
2204                                 var expand = (Gtk.TreeExpander)  ((Gtk.ListItem)listitem).get_child();
2205                                  
2206                                  
2207                                 var hbox = (Gtk.Box) expand.child;
2208                          
2209                                 
2210                                 var img = (Gtk.Image) hbox.get_first_child();
2211                                 var lbl = (Gtk.Label) img.get_next_sibling();
2212                                 
2213                                 var lr = (Gtk.TreeListRow)((Gtk.ListItem)listitem).get_item();
2214                                 var sym = (Lsp.DocumentSymbol) lr.get_item();
2215                                 
2216                                 sym.set_data<Gtk.Widget>("widget", expand.get_parent());
2217                                 expand.get_parent().get_parent().set_data<Lsp.DocumentSymbol>("symbol", sym);
2218                                 
2219                                 //GLib.debug("save sym on %s", expand.get_parent().get_parent().get_type().name());
2220                                 
2221                                 //GLib.debug("got %d children for %s" , (int)sym.children.get_n_items(), sym.name);
2222                             
2223                             expand.set_hide_expander( sym.children.get_n_items()  < 1);
2224                                 expand.set_list_row(lr);
2225                                 //this.in_bind = true;
2226                                 // default is to expand
2227                          
2228                                 //this.in_bind = false;
2229                                 
2230                                 sym.bind_property("symbol_icon",
2231                                             img, "icon_name",
2232                                            GLib.BindingFlags.SYNC_CREATE);
2233                                 
2234                                 hbox.css_classes = { sym.symbol_icon };
2235                                 
2236                                 sym.bind_property("name",
2237                                             lbl, "label",
2238                                            GLib.BindingFlags.SYNC_CREATE);
2239                                 // should be better?- --line no?
2240                                 sym.bind_property("tooltip",
2241                                             lbl, "tooltip_markup",
2242                                            GLib.BindingFlags.SYNC_CREATE);
2243                                 // bind image...
2244                                 
2245                         });
2246                 }
2247
2248                 // user defined functions
2249         }
2250
2251
2252         public class Xcls_navigationselmodel : Object
2253         {
2254                 public Gtk.NoSelection el;
2255                 private Editor  _this;
2256
2257
2258                         // my vars (def)
2259
2260                 // ctor
2261                 public Xcls_navigationselmodel(Editor _owner )
2262                 {
2263                         _this = _owner;
2264                         _this.navigationselmodel = this;
2265                         new Xcls_navigationsort( _this );
2266                         this.el = new Gtk.NoSelection( _this.navigationsort.el );
2267
2268                         // my vars (dec)
2269
2270                         // set gobject values
2271                 }
2272
2273                 // user defined functions
2274         }
2275         public class Xcls_navigationsort : Object
2276         {
2277                 public Gtk.SortListModel el;
2278                 private Editor  _this;
2279
2280
2281                         // my vars (def)
2282
2283                 // ctor
2284                 public Xcls_navigationsort(Editor _owner )
2285                 {
2286                         _this = _owner;
2287                         _this.navigationsort = this;
2288                         var child_1 = new Xcls_TreeListModel35( _this );
2289                         child_1.ref();
2290                         var child_2 = new Xcls_TreeListRowSorter37( _this );
2291                         child_2.ref();
2292                         this.el = new Gtk.SortListModel( child_1.el, child_2.el );
2293
2294                         // my vars (dec)
2295
2296                         // set gobject values
2297                 }
2298
2299                 // user defined functions
2300                 public void collapseOnLoad () {
2301                         for (var i=0;i < this.el.get_n_items(); i++) {
2302                                 var tr = (Gtk.TreeListRow)this.el.get_item(i);
2303                                 var sym =  (Lsp.DocumentSymbol)tr.get_item();
2304                                 switch (sym.kind) {
2305                                         case Lsp.SymbolKind.Enum: 
2306                                                 tr.expanded = false;
2307                                                 break;
2308                                         default:
2309                                                 //tr.expanded = true;
2310                                                 break;
2311                                 }
2312                         }
2313                  
2314                         
2315                 
2316                 
2317                 }
2318                 public int getRowFromSymbol (Lsp.DocumentSymbol sym) {
2319                 
2320                         for (var i=0;i < this.el.get_n_items(); i++) {
2321                                 var tr = (Gtk.TreeListRow)this.el.get_item(i);
2322                            
2323                                 if (sym.equals( (Lsp.DocumentSymbol)tr.get_item())) {
2324                                         return i;
2325                                 }
2326                         }
2327                         return -1;
2328                 }
2329                 public Lsp.DocumentSymbol? getSymbolAt (uint row) {
2330                 
2331                    var tr = (Gtk.TreeListRow)this.el.get_item(row);
2332                    
2333                    var a = tr.get_item();;   
2334                    GLib.debug("get_item (2) = %s", a.get_type().name());
2335                         
2336                    
2337                    return (Lsp.DocumentSymbol)tr.get_item();
2338                          
2339                 }
2340         }
2341         public class Xcls_TreeListModel35 : Object
2342         {
2343                 public Gtk.TreeListModel el;
2344                 private Editor  _this;
2345
2346
2347                         // my vars (def)
2348
2349                 // ctor
2350                 public Xcls_TreeListModel35(Editor _owner )
2351                 {
2352                         _this = _owner;
2353                         new Xcls_navliststore( _this );
2354                         this.el = new Gtk.TreeListModel( _this.navliststore.el, false, true, (item) => {
2355  
2356         return ((Lsp.DocumentSymbol)item).children;
2357 }
2358  );
2359
2360                         // my vars (dec)
2361
2362                         // set gobject values
2363
2364                         //listeners
2365                         this.el.items_changed.connect( (position, removed, added) => {
2366                                 GLib.debug("tree item changed %d , %d , %d",(int) position, (int)removed, (int) added);
2367                                  if (added < 1) { 
2368                                         return;
2369                                 }
2370                                 //var sym = (Lsp.DocumentSymbol) this.el.get_item(position);
2371                                 var row = this.el.get_row(position);
2372                                 
2373                                 GLib.debug("got %s", row.get_item().get_type().name());
2374                                 
2375                         
2376                         });
2377                 }
2378
2379                 // user defined functions
2380         }
2381         public class Xcls_navliststore : Object
2382         {
2383                 public GLib.ListStore el;
2384                 private Editor  _this;
2385
2386
2387                         // my vars (def)
2388
2389                 // ctor
2390                 public Xcls_navliststore(Editor _owner )
2391                 {
2392                         _this = _owner;
2393                         _this.navliststore = this;
2394                         this.el = new GLib.ListStore( typeof(Lsp.DocumentSymbol) );
2395
2396                         // my vars (dec)
2397
2398                         // set gobject values
2399                 }
2400
2401                 // user defined functions
2402                 public Lsp.DocumentSymbol? symbolAtLine (uint line, uint chr) {
2403                  
2404                         
2405                         for(var i = 0; i < this.el.get_n_items();i++) {
2406                                 var el = (Lsp.DocumentSymbol)this.el.get_item(i);
2407                                 //GLib.debug("Check sym %s : %d-%d",
2408                                 //      el.name , (int)el.range.start.line,
2409                                 //      (int)el.range.end.line
2410                                 //);
2411                                 var ret = el.containsLine(line,chr);
2412                                 if (ret != null) {
2413                                         return ret;
2414                                 }
2415                                 
2416                         }
2417                         
2418                         return null;
2419                 }
2420         }
2421
2422
2423         public class Xcls_TreeListRowSorter37 : Object
2424         {
2425                 public Gtk.TreeListRowSorter el;
2426                 private Editor  _this;
2427
2428
2429                         // my vars (def)
2430
2431                 // ctor
2432                 public Xcls_TreeListRowSorter37(Editor _owner )
2433                 {
2434                         _this = _owner;
2435                         var child_1 = new Xcls_StringSorter38( _this );
2436                         child_1.ref();
2437                         this.el = new Gtk.TreeListRowSorter( child_1.el );
2438
2439                         // my vars (dec)
2440
2441                         // set gobject values
2442                 }
2443
2444                 // user defined functions
2445         }
2446         public class Xcls_StringSorter38 : Object
2447         {
2448                 public Gtk.StringSorter el;
2449                 private Editor  _this;
2450
2451
2452                         // my vars (def)
2453
2454                 // ctor
2455                 public Xcls_StringSorter38(Editor _owner )
2456                 {
2457                         _this = _owner;
2458                         var child_1 = new Xcls_PropertyExpression39( _this );
2459                         child_1.ref();
2460                         this.el = new Gtk.StringSorter( child_1.el );
2461
2462                         // my vars (dec)
2463
2464                         // set gobject values
2465                 }
2466
2467                 // user defined functions
2468         }
2469         public class Xcls_PropertyExpression39 : Object
2470         {
2471                 public Gtk.PropertyExpression el;
2472                 private Editor  _this;
2473
2474
2475                         // my vars (def)
2476
2477                 // ctor
2478                 public Xcls_PropertyExpression39(Editor _owner )
2479                 {
2480                         _this = _owner;
2481                         this.el = new Gtk.PropertyExpression( typeof(Lsp.DocumentSymbol), null, "sort_key" );
2482
2483                         // my vars (dec)
2484
2485                         // set gobject values
2486                 }
2487
2488                 // user defined functions
2489         }
2490
2491
2492
2493
2494
2495         public class Xcls_GestureClick40 : Object
2496         {
2497                 public Gtk.GestureClick el;
2498                 private Editor  _this;
2499
2500
2501                         // my vars (def)
2502
2503                 // ctor
2504                 public Xcls_GestureClick40(Editor _owner )
2505                 {
2506                         _this = _owner;
2507                         this.el = new Gtk.GestureClick();
2508
2509                         // my vars (dec)
2510
2511                         // set gobject values
2512
2513                         //listeners
2514                         this.el.pressed.connect( (n_press, x, y) => {
2515                                 string pos;
2516                                 var row = _this.navigation.getRowWidgetAt(x,y, out pos );
2517                         
2518                             if (row == null) {
2519                                     GLib.debug("no row selected items");
2520                                     return;
2521                             }
2522                                 GLib.debug("got click on %s", row.get_type().name());    
2523                             //Lsp.DocumentSymbol
2524                             var sym =  row.get_data<Lsp.DocumentSymbol>("symbol");
2525                             if (sym == null) {
2526                                 return;
2527                                 }
2528                                 /*
2529                                  "range" : {
2530                                       "start" : {
2531                                         "line" : 1410,
2532                                         "character" : 8
2533                                       },
2534                                       "end" : {
2535                                         "line" : 1410,
2536                                         "character" : 39
2537                                       }
2538                                     },
2539                                 */
2540                              GLib.debug("goto line %d",   (int)sym.range.start.line); 
2541                             _this.scroll_to_line((int)sym.range.start.line);
2542                             Gtk.TextIter iter;
2543                             _this.buffer.el.get_iter_at_line_offset(out iter, 
2544                                 (int)sym.range.start.line,
2545                                 (int)sym.range.start.character
2546                                 );
2547                             _this.buffer.el.place_cursor(iter);
2548                                 
2549                         });
2550                 }
2551
2552                 // user defined functions
2553         }
2554
2555
2556
2557
2558
2559 }