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