src/Builder4/Editor.bjs
[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                         //listeners
1317                         this.el.pressed.connect( (n_press, x, y) => {
1318                                 Gtk.TextIter iter;
1319                         
1320                                 var gut = _this.view.el.get_gutter(Gtk.TextWindowType.LEFT);
1321                                 
1322                                  
1323                                 _this.view.el.get_iter_at_location (out  iter,  
1324                                                 (int)x - gut.get_width(),  (int)y);
1325                                 if (_this.buffer.el.iter_has_context_class(iter, "comment") ||
1326                                         _this.buffer.el.iter_has_context_class(iter, "string")
1327                                 ) { 
1328                                         return ;
1329                                 }
1330                                 var back = iter.copy();
1331                                 back.backward_char();
1332                                 
1333                                 var forward = iter.copy();
1334                                 forward.forward_char();
1335                                 
1336                                 // what's the character at the iter?
1337                                 var str = back.get_text(iter);
1338                                 str += iter.get_text(forward);
1339                                 if (str.strip().length < 1) {
1340                                         return;
1341                                 }
1342                                 
1343                                 var ls = _this.file.getLanguageServer();
1344                                 ls.hover.begin(
1345                                         _this.file, iter.get_line(), iter.get_line_offset(),
1346                                         ( a, o)  => {
1347                                                 var res = ls.hover.end(o );
1348                                                 
1349                                         });
1350                                         
1351                                                 
1352                         
1353                         });
1354                 }
1355
1356                 // user defined functions
1357         }
1358
1359
1360
1361         public class Xcls_Box15 : Object
1362         {
1363                 public Gtk.Box el;
1364                 private Editor  _this;
1365
1366
1367                         // my vars (def)
1368
1369                 // ctor
1370                 public Xcls_Box15(Editor _owner )
1371                 {
1372                         _this = _owner;
1373                         this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
1374
1375                         // my vars (dec)
1376
1377                         // set gobject values
1378                         this.el.homogeneous = false;
1379                         this.el.vexpand = false;
1380                         new Xcls_search_entry( _this );
1381                         this.el.append( _this.search_entry.el );
1382                         new Xcls_search_results( _this );
1383                         this.el.append( _this.search_results.el );
1384                         new Xcls_nextBtn( _this );
1385                         this.el.append( _this.nextBtn.el );
1386                         new Xcls_backBtn( _this );
1387                         this.el.append( _this.backBtn.el );
1388                         var child_5 = new Xcls_MenuButton21( _this );
1389                         child_5.ref();
1390                         this.el.append( child_5.el );
1391                 }
1392
1393                 // user defined functions
1394         }
1395         public class Xcls_search_entry : Object
1396         {
1397                 public Gtk.SearchEntry el;
1398                 private Editor  _this;
1399
1400
1401                         // my vars (def)
1402                 public Gtk.CssProvider css;
1403
1404                 // ctor
1405                 public Xcls_search_entry(Editor _owner )
1406                 {
1407                         _this = _owner;
1408                         _this.search_entry = this;
1409                         this.el = new Gtk.SearchEntry();
1410
1411                         // my vars (dec)
1412
1413                         // set gobject values
1414                         this.el.name = "editor-search-entry";
1415                         this.el.hexpand = true;
1416                         this.el.placeholder_text = "Press enter to search";
1417                         this.el.search_delay = 3;
1418                         var child_1 = new Xcls_EventControllerKey17( _this );
1419                         child_1.ref();
1420                         this.el.add_controller(  child_1.el );
1421
1422                         //listeners
1423                         this.el.search_changed.connect( ( ) => {
1424                         
1425                         _this.search(_this.search_entry.el.text);
1426                                  _this.search_results.updateResults();
1427                         
1428                                 GLib.Timeout.add_seconds(1,() => {
1429                                          _this.search_results.updateResults();
1430                                          return false;
1431                                  });
1432                         });
1433                 }
1434
1435                 // user defined functions
1436                 public void forwardSearch (bool change_focus) {
1437                 
1438                 
1439                         _this.forwardSearch(change_focus);
1440                 
1441                 /*
1442                 
1443                         switch(_this.windowstate.state) {
1444                                 case WindowState.State.CODEONLY:
1445                                 //case WindowState.State.CODE:
1446                                         // search the code being edited..
1447                                         _this.windowstate.code_editor_tab.forwardSearch(change_focus);
1448                                          
1449                                         break;
1450                                 case WindowState.State.PREVIEW:
1451                                         if (_this.windowstate.file.xtype == "Gtk") {
1452                                                 _this.windowstate.window_gladeview.forwardSearch(change_focus);
1453                                         } else { 
1454                                                  _this.windowstate.window_rooview.forwardSearch(change_focus);
1455                                         }
1456                                 
1457                                         break;
1458                         }
1459                         */
1460                         
1461                 }
1462         }
1463         public class Xcls_EventControllerKey17 : Object
1464         {
1465                 public Gtk.EventControllerKey el;
1466                 private Editor  _this;
1467
1468
1469                         // my vars (def)
1470
1471                 // ctor
1472                 public Xcls_EventControllerKey17(Editor _owner )
1473                 {
1474                         _this = _owner;
1475                         this.el = new Gtk.EventControllerKey();
1476
1477                         // my vars (dec)
1478
1479                         // set gobject values
1480
1481                         //listeners
1482                         this.el.key_pressed.connect( (keyval, keycode, state) => {
1483                         
1484                                 if (keyval == Gdk.Key.g && (state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
1485                                     GLib.debug("SAVE: ctrl-g  pressed");
1486                                         _this.forwardSearch(true);
1487                                     return true;
1488                                 }
1489                             
1490                           
1491                                 if (keyval == Gdk.Key.Return && _this.search_entry.el.text.length > 0) {
1492                                         _this.forwardSearch(true);
1493                                         
1494                                         
1495                                     return true;
1496                         
1497                                 }    
1498                            // print(event.key.keyval)
1499                            
1500                             return false;
1501                         });
1502                 }
1503
1504                 // user defined functions
1505         }
1506
1507
1508         public class Xcls_search_results : Object
1509         {
1510                 public Gtk.Label el;
1511                 private Editor  _this;
1512
1513
1514                         // my vars (def)
1515
1516                 // ctor
1517                 public Xcls_search_results(Editor _owner )
1518                 {
1519                         _this = _owner;
1520                         _this.search_results = this;
1521                         this.el = new Gtk.Label( "No Results" );
1522
1523                         // my vars (dec)
1524
1525                         // set gobject values
1526                         this.el.margin_end = 4;
1527                         this.el.margin_start = 4;
1528                 }
1529
1530                 // user defined functions
1531                 public void updateResults () {
1532                         this.el.visible = true;
1533                         
1534                         var res = _this.searchcontext.get_occurrences_count();
1535                         if (res < 0) {
1536                                 _this.search_results.el.label = "??? Matches";          
1537                                 return;
1538                         }
1539                 
1540                         _this.nextBtn.el.sensitive = false;
1541                         _this.backBtn.el.sensitive = false;     
1542                 
1543                         if (res > 0) {
1544                                 _this.search_results.el.label = "%d Matches".printf(res);
1545                                 _this.nextBtn.el.sensitive = true;
1546                                 _this.backBtn.el.sensitive = true;
1547                                 return;
1548                         } 
1549                         _this.search_results.el.label = "No Matches";
1550                         
1551                 }
1552         }
1553
1554         public class Xcls_nextBtn : Object
1555         {
1556                 public Gtk.Button el;
1557                 private Editor  _this;
1558
1559
1560                         // my vars (def)
1561                 public bool always_show_image;
1562
1563                 // ctor
1564                 public Xcls_nextBtn(Editor _owner )
1565                 {
1566                         _this = _owner;
1567                         _this.nextBtn = this;
1568                         this.el = new Gtk.Button();
1569
1570                         // my vars (dec)
1571                         this.always_show_image = true;
1572
1573                         // set gobject values
1574                         this.el.icon_name = "go-down";
1575                         this.el.sensitive = false;
1576
1577                         //listeners
1578                         this.el.clicked.connect( (event) => {
1579                         
1580                                 _this.forwardSearch(true);
1581                                 
1582                                  
1583                         });
1584                 }
1585
1586                 // user defined functions
1587         }
1588
1589         public class Xcls_backBtn : Object
1590         {
1591                 public Gtk.Button el;
1592                 private Editor  _this;
1593
1594
1595                         // my vars (def)
1596                 public bool always_show_image;
1597
1598                 // ctor
1599                 public Xcls_backBtn(Editor _owner )
1600                 {
1601                         _this = _owner;
1602                         _this.backBtn = this;
1603                         this.el = new Gtk.Button();
1604
1605                         // my vars (dec)
1606                         this.always_show_image = true;
1607
1608                         // set gobject values
1609                         this.el.icon_name = "go-up";
1610                         this.el.sensitive = false;
1611
1612                         //listeners
1613                         this.el.clicked.connect( (event) => {
1614                         
1615                                 _this.backSearch(true);
1616                                  
1617                         });
1618                 }
1619
1620                 // user defined functions
1621         }
1622
1623         public class Xcls_MenuButton21 : Object
1624         {
1625                 public Gtk.MenuButton el;
1626                 private Editor  _this;
1627
1628
1629                         // my vars (def)
1630                 public bool always_show_image;
1631
1632                 // ctor
1633                 public Xcls_MenuButton21(Editor _owner )
1634                 {
1635                         _this = _owner;
1636                         this.el = new Gtk.MenuButton();
1637
1638                         // my vars (dec)
1639                         this.always_show_image = true;
1640
1641                         // set gobject values
1642                         this.el.icon_name = "emblem-system";
1643                         this.el.always_show_arrow = true;
1644                         new Xcls_search_settings( _this );
1645                         this.el.popover = _this.search_settings.el;
1646                 }
1647
1648                 // user defined functions
1649         }
1650         public class Xcls_search_settings : Object
1651         {
1652                 public Gtk.Popover el;
1653                 private Editor  _this;
1654
1655
1656                         // my vars (def)
1657
1658                 // ctor
1659                 public Xcls_search_settings(Editor _owner )
1660                 {
1661                         _this = _owner;
1662                         _this.search_settings = this;
1663                         this.el = new Gtk.Popover();
1664
1665                         // my vars (dec)
1666
1667                         // set gobject values
1668                         var child_1 = new Xcls_Box23( _this );
1669                         child_1.ref();
1670                         this.el.child = child_1.el;
1671                 }
1672
1673                 // user defined functions
1674         }
1675         public class Xcls_Box23 : Object
1676         {
1677                 public Gtk.Box el;
1678                 private Editor  _this;
1679
1680
1681                         // my vars (def)
1682
1683                 // ctor
1684                 public Xcls_Box23(Editor _owner )
1685                 {
1686                         _this = _owner;
1687                         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1688
1689                         // my vars (dec)
1690
1691                         // set gobject values
1692                         new Xcls_case_sensitive( _this );
1693                         this.el.append( _this.case_sensitive.el );
1694                         new Xcls_regex( _this );
1695                         this.el.append( _this.regex.el );
1696                         new Xcls_multiline( _this );
1697                         this.el.append( _this.multiline.el );
1698                 }
1699
1700                 // user defined functions
1701         }
1702         public class Xcls_case_sensitive : Object
1703         {
1704                 public Gtk.CheckButton el;
1705                 private Editor  _this;
1706
1707
1708                         // my vars (def)
1709
1710                 // ctor
1711                 public Xcls_case_sensitive(Editor _owner )
1712                 {
1713                         _this = _owner;
1714                         _this.case_sensitive = this;
1715                         this.el = new Gtk.CheckButton();
1716
1717                         // my vars (dec)
1718
1719                         // set gobject values
1720                         this.el.label = "Case Sensitive";
1721
1722                         // init method
1723
1724                         {
1725                                 this.el.show();
1726                         }
1727                 }
1728
1729                 // user defined functions
1730         }
1731
1732         public class Xcls_regex : Object
1733         {
1734                 public Gtk.CheckButton el;
1735                 private Editor  _this;
1736
1737
1738                         // my vars (def)
1739
1740                 // ctor
1741                 public Xcls_regex(Editor _owner )
1742                 {
1743                         _this = _owner;
1744                         _this.regex = this;
1745                         this.el = new Gtk.CheckButton();
1746
1747                         // my vars (dec)
1748
1749                         // set gobject values
1750                         this.el.label = "Regex";
1751
1752                         // init method
1753
1754                         {
1755                                 this.el.show();
1756                         }
1757                 }
1758
1759                 // user defined functions
1760         }
1761
1762         public class Xcls_multiline : Object
1763         {
1764                 public Gtk.CheckButton el;
1765                 private Editor  _this;
1766
1767
1768                         // my vars (def)
1769
1770                 // ctor
1771                 public Xcls_multiline(Editor _owner )
1772                 {
1773                         _this = _owner;
1774                         _this.multiline = this;
1775                         this.el = new Gtk.CheckButton();
1776
1777                         // my vars (dec)
1778
1779                         // set gobject values
1780                         this.el.label = "Multi-line (add \\n)";
1781                 }
1782
1783                 // user defined functions
1784         }
1785
1786
1787
1788
1789
1790
1791         public class Xcls_Box27 : Object
1792         {
1793                 public Gtk.Box el;
1794                 private Editor  _this;
1795
1796
1797                         // my vars (def)
1798
1799                 // ctor
1800                 public Xcls_Box27(Editor _owner )
1801                 {
1802                         _this = _owner;
1803                         this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1804
1805                         // my vars (dec)
1806
1807                         // set gobject values
1808                         this.el.hexpand = true;
1809                         this.el.vexpand = true;
1810                         var child_1 = new Xcls_Box28( _this );
1811                         child_1.ref();
1812                         this.el.append( child_1.el );
1813                         new Xcls_navigationwindow( _this );
1814                         this.el.append( _this.navigationwindow.el );
1815                 }
1816
1817                 // user defined functions
1818         }
1819         public class Xcls_Box28 : Object
1820         {
1821                 public Gtk.Box el;
1822                 private Editor  _this;
1823
1824
1825                         // my vars (def)
1826
1827                 // ctor
1828                 public Xcls_Box28(Editor _owner )
1829                 {
1830                         _this = _owner;
1831                         this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
1832
1833                         // my vars (dec)
1834
1835                         // set gobject values
1836                 }
1837
1838                 // user defined functions
1839         }
1840
1841         public class Xcls_navigationwindow : Object
1842         {
1843                 public Gtk.ScrolledWindow el;
1844                 private Editor  _this;
1845
1846
1847                         // my vars (def)
1848
1849                 // ctor
1850                 public Xcls_navigationwindow(Editor _owner )
1851                 {
1852                         _this = _owner;
1853                         _this.navigationwindow = this;
1854                         this.el = new Gtk.ScrolledWindow();
1855
1856                         // my vars (dec)
1857
1858                         // set gobject values
1859                         this.el.hexpand = true;
1860                         this.el.vexpand = true;
1861                         this.el.visible = false;
1862                         new Xcls_navigation( _this );
1863                         this.el.child = _this.navigation.el;
1864                 }
1865
1866                 // user defined functions
1867         }
1868         public class Xcls_navigation : Object
1869         {
1870                 public Gtk.ColumnView el;
1871                 private Editor  _this;
1872
1873
1874                         // my vars (def)
1875                 public int last_selected_line;
1876                 public Gtk.Widget? selected_row;
1877
1878                 // ctor
1879                 public Xcls_navigation(Editor _owner )
1880                 {
1881                         _this = _owner;
1882                         _this.navigation = this;
1883                         new Xcls_navigationselmodel( _this );
1884                         this.el = new Gtk.ColumnView( _this.navigationselmodel.el );
1885
1886                         // my vars (dec)
1887                         this.last_selected_line = -1;
1888                         this.selected_row = null;
1889
1890                         // set gobject values
1891                         this.el.name = "editor-navigation";
1892                         var child_2 = new Xcls_ColumnViewColumn31( _this );
1893                         child_2.ref();
1894                         this.el.append_column( child_2.el );
1895                         var child_3 = new Xcls_GestureClick40( _this );
1896                         child_3.ref();
1897                         this.el.add_controller(  child_3.el );
1898                 }
1899
1900                 // user defined functions
1901                 public Gtk.Widget? getRowWidgetAt (double x,  double  y, out string pos) {
1902                 
1903                         pos = "";
1904                         var w = this.el.pick(x, y, Gtk.PickFlags.DEFAULT);
1905                         //GLib.debug("got widget %s", w == null ? "nothing" : w.get_type().name());
1906                         if (w == null) {
1907                                 return null;
1908                         }
1909                         
1910                         var row= w.get_ancestor(GLib.Type.from_name("GtkColumnViewRowWidget"));
1911                         if (row == null) {
1912                                 return null;
1913                         }
1914                         
1915                         //GLib.debug("got colview %s", row == null ? "nothing" : row.get_type().name());
1916                          
1917                  
1918                         
1919                         //GLib.debug("row number is %d", rn);
1920                         //GLib.debug("click %d, %d", (int)x, (int)y);
1921                         // above or belw
1922                         Graphene.Rect  bounds;
1923                         row.compute_bounds(this.el, out bounds);
1924                         //GLib.debug("click x=%d, y=%d, w=%d, h=%d", 
1925                         //      (int)bounds.get_x(), (int)bounds.get_y(),
1926                         //      (int)bounds.get_width(), (int)bounds.get_height()
1927                         //      );
1928                         var ypos = y - bounds.get_y();
1929                         //GLib.debug("rel ypos = %d", (int)ypos);       
1930                         var rpos = 100.0 * (ypos / bounds.get_height());
1931                         //GLib.debug("rel pos = %d %%", (int)rpos);
1932                         pos = "over";
1933                         
1934                         if (rpos > 80) {
1935                                 pos = "below";
1936                         } else if (rpos < 20) {
1937                                 pos = "above";
1938                         } 
1939                         return row;
1940                  }
1941                 public void show (Gee.ArrayList<Lsp.DocumentSymbol> syms) {
1942                         _this.navigationwindow.el.show();
1943                         //_this.navliststore.el.remove_all();
1944                         
1945                         
1946                         var ls  = new GLib.ListStore(typeof(Lsp.DocumentSymbol));
1947                         
1948                         foreach(var sym in syms) {
1949                                 ls.append(sym);
1950                         }
1951                         Lsp.DocumentSymbol.copyList(ls, _this.navliststore.el);
1952                         //_this.navliststore.el.append(sym);
1953                         this.last_selected_line = -1;
1954                         GLib.Idle.add(() => {
1955                                 _this.navigationsort.collapseOnLoad();
1956                                 Gtk.TextIter iter;
1957                                 _this.buffer.el.get_iter_at_offset (
1958                                                 out iter, _this.buffer.el.cursor_position);
1959                                 
1960                                 GLib.debug("idle update scroll %d, %d", iter.get_line(),
1961                                                 iter.get_line_offset());
1962                                 this.updateSelectedLine(
1963                                                 (uint)iter.get_line(),
1964                                                 (uint)iter.get_line_offset()
1965                                 );
1966                                 return false;
1967                         });
1968                 
1969                 }
1970                 public int getRowAt (double x,  double  y, out string pos) {
1971                 
1972                         pos = "";
1973                         var w = this.el.pick(x, y, Gtk.PickFlags.DEFAULT);
1974                         //GLib.debug("got widget %s", w == null ? "nothing" : w.get_type().name());
1975                         if (w == null) {
1976                                 return -1;
1977                         }
1978                         
1979                         var row= w.get_ancestor(GLib.Type.from_name("GtkColumnViewRowWidget"));
1980                         if (row == null) {
1981                                 return -1;
1982                         }
1983                         
1984                         //GLib.debug("got colview %s", row == null ? "nothing" : row.get_type().name());
1985                          
1986                         var rn = 0;
1987                         var cr = row;
1988                          
1989                         while (cr.get_prev_sibling() != null) {
1990                                 rn++;
1991                                 cr = cr.get_prev_sibling();
1992                         }
1993                         
1994                         //GLib.debug("row number is %d", rn);
1995                         //GLib.debug("click %d, %d", (int)x, (int)y);
1996                         // above or belw
1997                         Graphene.Rect  bounds;
1998                         row.compute_bounds(this.el, out bounds);
1999                         //GLib.debug("click x=%d, y=%d, w=%d, h=%d", 
2000                         //      (int)bounds.get_x(), (int)bounds.get_y(),
2001                         //      (int)bounds.get_width(), (int)bounds.get_height()
2002                         //      );
2003                         var ypos = y - bounds.get_y();
2004                         //GLib.debug("rel ypos = %d", (int)ypos);       
2005                         var rpos = 100.0 * (ypos / bounds.get_height());
2006                         //GLib.debug("rel pos = %d %%", (int)rpos);
2007                         pos = "over";
2008                         
2009                         if (rpos > 80) {
2010                                 pos = "below";
2011                         } else if (rpos < 20) {
2012                                 pos = "above";
2013                         } 
2014                         return rn;
2015                  }
2016                 public void updateSelectedLine (uint line, uint chr) {
2017                         if (line == this.last_selected_line) {
2018                                 return;
2019                         }
2020                         GLib.debug("select line %d", (int)line);
2021                         this.last_selected_line = (int)line;
2022                         
2023                         
2024                         var new_row = -1;
2025                         var sym = _this.navliststore.symbolAtLine(line, chr);
2026                         if (sym != null) {
2027                                 new_row = _this.navigationsort.getRowFromSymbol(sym);
2028                                 GLib.debug("select line %d - row found %d", (int)line, new_row);
2029                         } else {
2030                                 GLib.debug(" no symbol found at line %d", (int)line);
2031                         }
2032                         
2033                         if (this.selected_row != null) { 
2034                                 GLib.debug(" remove selected row");
2035                                 this.selected_row.remove_css_class("selected-row");
2036                         }
2037                         this.selected_row  = null;
2038                         if (new_row > -1) {
2039                                 this.el.scroll_to(new_row,null,Gtk.ListScrollFlags.NONE, null);
2040                                 var row = sym.get_data<Gtk.Widget>("widget");
2041                                 if (row != null) {
2042                                         GLib.debug(" Add selected row");
2043                                         
2044                                         row.add_css_class("selected-row");
2045                                         this.selected_row = row;
2046                 
2047                                         
2048                                 } else {
2049                                         GLib.debug("could not find widget on row %d", new_row);
2050                                 }
2051                 
2052                         }
2053                 
2054                 
2055                 }
2056         }
2057         public class Xcls_ColumnViewColumn31 : Object
2058         {
2059                 public Gtk.ColumnViewColumn el;
2060                 private Editor  _this;
2061
2062
2063                         // my vars (def)
2064
2065                 // ctor
2066                 public Xcls_ColumnViewColumn31(Editor _owner )
2067                 {
2068                         _this = _owner;
2069                         var child_1 = new Xcls_SignalListItemFactory32( _this );
2070                         child_1.ref();
2071                         this.el = new Gtk.ColumnViewColumn( "Code Navigation", child_1.el );
2072
2073                         // my vars (dec)
2074
2075                         // set gobject values
2076                         this.el.expand = true;
2077                 }
2078
2079                 // user defined functions
2080         }
2081         public class Xcls_SignalListItemFactory32 : Object
2082         {
2083                 public Gtk.SignalListItemFactory el;
2084                 private Editor  _this;
2085
2086
2087                         // my vars (def)
2088
2089                 // ctor
2090                 public Xcls_SignalListItemFactory32(Editor _owner )
2091                 {
2092                         _this = _owner;
2093                         this.el = new Gtk.SignalListItemFactory();
2094
2095                         // my vars (dec)
2096
2097                         // set gobject values
2098
2099                         //listeners
2100                         this.el.setup.connect( (listitem) => {
2101                                 
2102                                 var expand = new Gtk.TreeExpander();
2103                                  
2104                                 expand.set_indent_for_depth(true);
2105                                 expand.set_indent_for_icon(true);
2106                                 var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL,0);
2107                                 var icon = new Gtk.Image();
2108                                 var lbl = new Gtk.Label("");
2109                                 lbl.use_markup = true;
2110                                 lbl.ellipsize = Pango.EllipsizeMode.END;
2111                                 
2112                                 icon.margin_end = 4;
2113                                 lbl.justify = Gtk.Justification.LEFT;
2114                                 lbl.xalign = 0;
2115                         
2116                         //      listitem.activatable = true; ??
2117                                 
2118                                 hbox.append(icon);
2119                                 hbox.append(lbl);
2120                                 expand.set_child(hbox);
2121                                 ((Gtk.ListItem)listitem).set_child(expand);
2122                                 
2123                         });
2124                         this.el.bind.connect( (listitem) => {
2125                                  
2126                                 // GLib.debug("listitme is is %s", ((Gtk.ListItem)listitem).get_type().name());
2127                                 
2128                                 //var expand = (Gtk.TreeExpander) ((Gtk.ListItem)listitem).get_child();
2129                                 var expand = (Gtk.TreeExpander)  ((Gtk.ListItem)listitem).get_child();
2130                                  
2131                                  
2132                                 var hbox = (Gtk.Box) expand.child;
2133                          
2134                                 
2135                                 var img = (Gtk.Image) hbox.get_first_child();
2136                                 var lbl = (Gtk.Label) img.get_next_sibling();
2137                                 
2138                                 var lr = (Gtk.TreeListRow)((Gtk.ListItem)listitem).get_item();
2139                                 var sym = (Lsp.DocumentSymbol) lr.get_item();
2140                                 
2141                                 sym.set_data<Gtk.Widget>("widget", expand.get_parent());
2142                                 expand.get_parent().get_parent().set_data<Lsp.DocumentSymbol>("symbol", sym);
2143                                 
2144                                 //GLib.debug("save sym on %s", expand.get_parent().get_parent().get_type().name());
2145                                 
2146                                 //GLib.debug("got %d children for %s" , (int)sym.children.get_n_items(), sym.name);
2147                             
2148                             expand.set_hide_expander( sym.children.get_n_items()  < 1);
2149                                 expand.set_list_row(lr);
2150                                 //this.in_bind = true;
2151                                 // default is to expand
2152                          
2153                                 //this.in_bind = false;
2154                                 
2155                                 sym.bind_property("symbol_icon",
2156                                             img, "icon_name",
2157                                            GLib.BindingFlags.SYNC_CREATE);
2158                                 
2159                                 hbox.css_classes = { sym.symbol_icon };
2160                                 
2161                                 sym.bind_property("name",
2162                                             lbl, "label",
2163                                            GLib.BindingFlags.SYNC_CREATE);
2164                                 // should be better?- --line no?
2165                                 sym.bind_property("tooltip",
2166                                             lbl, "tooltip_markup",
2167                                            GLib.BindingFlags.SYNC_CREATE);
2168                                 // bind image...
2169                                 
2170                         });
2171                 }
2172
2173                 // user defined functions
2174         }
2175
2176
2177         public class Xcls_navigationselmodel : Object
2178         {
2179                 public Gtk.NoSelection el;
2180                 private Editor  _this;
2181
2182
2183                         // my vars (def)
2184
2185                 // ctor
2186                 public Xcls_navigationselmodel(Editor _owner )
2187                 {
2188                         _this = _owner;
2189                         _this.navigationselmodel = this;
2190                         new Xcls_navigationsort( _this );
2191                         this.el = new Gtk.NoSelection( _this.navigationsort.el );
2192
2193                         // my vars (dec)
2194
2195                         // set gobject values
2196                 }
2197
2198                 // user defined functions
2199         }
2200         public class Xcls_navigationsort : Object
2201         {
2202                 public Gtk.SortListModel el;
2203                 private Editor  _this;
2204
2205
2206                         // my vars (def)
2207
2208                 // ctor
2209                 public Xcls_navigationsort(Editor _owner )
2210                 {
2211                         _this = _owner;
2212                         _this.navigationsort = this;
2213                         var child_1 = new Xcls_TreeListModel35( _this );
2214                         child_1.ref();
2215                         var child_2 = new Xcls_TreeListRowSorter37( _this );
2216                         child_2.ref();
2217                         this.el = new Gtk.SortListModel( child_1.el, child_2.el );
2218
2219                         // my vars (dec)
2220
2221                         // set gobject values
2222                 }
2223
2224                 // user defined functions
2225                 public void collapseOnLoad () {
2226                         for (var i=0;i < this.el.get_n_items(); i++) {
2227                                 var tr = (Gtk.TreeListRow)this.el.get_item(i);
2228                                 var sym =  (Lsp.DocumentSymbol)tr.get_item();
2229                                 switch (sym.kind) {
2230                                         case Lsp.SymbolKind.Enum: 
2231                                                 tr.expanded = false;
2232                                                 break;
2233                                         default:
2234                                                 //tr.expanded = true;
2235                                                 break;
2236                                 }
2237                         }
2238                  
2239                         
2240                 
2241                 
2242                 }
2243                 public int getRowFromSymbol (Lsp.DocumentSymbol sym) {
2244                 
2245                         for (var i=0;i < this.el.get_n_items(); i++) {
2246                                 var tr = (Gtk.TreeListRow)this.el.get_item(i);
2247                            
2248                                 if (sym.equals( (Lsp.DocumentSymbol)tr.get_item())) {
2249                                         return i;
2250                                 }
2251                         }
2252                         return -1;
2253                 }
2254                 public Lsp.DocumentSymbol? getSymbolAt (uint row) {
2255                 
2256                    var tr = (Gtk.TreeListRow)this.el.get_item(row);
2257                    
2258                    var a = tr.get_item();;   
2259                    GLib.debug("get_item (2) = %s", a.get_type().name());
2260                         
2261                    
2262                    return (Lsp.DocumentSymbol)tr.get_item();
2263                          
2264                 }
2265         }
2266         public class Xcls_TreeListModel35 : Object
2267         {
2268                 public Gtk.TreeListModel el;
2269                 private Editor  _this;
2270
2271
2272                         // my vars (def)
2273
2274                 // ctor
2275                 public Xcls_TreeListModel35(Editor _owner )
2276                 {
2277                         _this = _owner;
2278                         new Xcls_navliststore( _this );
2279                         this.el = new Gtk.TreeListModel( _this.navliststore.el, false, true, (item) => {
2280  
2281         return ((Lsp.DocumentSymbol)item).children;
2282 }
2283  );
2284
2285                         // my vars (dec)
2286
2287                         // set gobject values
2288
2289                         //listeners
2290                         this.el.items_changed.connect( (position, removed, added) => {
2291                                 GLib.debug("tree item changed %d , %d , %d",(int) position, (int)removed, (int) added);
2292                                  if (added < 1) { 
2293                                         return;
2294                                 }
2295                                 //var sym = (Lsp.DocumentSymbol) this.el.get_item(position);
2296                                 var row = this.el.get_row(position);
2297                                 
2298                                 GLib.debug("got %s", row.get_item().get_type().name());
2299                                 
2300                         
2301                         });
2302                 }
2303
2304                 // user defined functions
2305         }
2306         public class Xcls_navliststore : Object
2307         {
2308                 public GLib.ListStore el;
2309                 private Editor  _this;
2310
2311
2312                         // my vars (def)
2313
2314                 // ctor
2315                 public Xcls_navliststore(Editor _owner )
2316                 {
2317                         _this = _owner;
2318                         _this.navliststore = this;
2319                         this.el = new GLib.ListStore( typeof(Lsp.DocumentSymbol) );
2320
2321                         // my vars (dec)
2322
2323                         // set gobject values
2324                 }
2325
2326                 // user defined functions
2327                 public Lsp.DocumentSymbol? symbolAtLine (uint line, uint chr) {
2328                  
2329                         
2330                         for(var i = 0; i < this.el.get_n_items();i++) {
2331                                 var el = (Lsp.DocumentSymbol)this.el.get_item(i);
2332                                 //GLib.debug("Check sym %s : %d-%d",
2333                                 //      el.name , (int)el.range.start.line,
2334                                 //      (int)el.range.end.line
2335                                 //);
2336                                 var ret = el.containsLine(line,chr);
2337                                 if (ret != null) {
2338                                         return ret;
2339                                 }
2340                                 
2341                         }
2342                         
2343                         return null;
2344                 }
2345         }
2346
2347
2348         public class Xcls_TreeListRowSorter37 : Object
2349         {
2350                 public Gtk.TreeListRowSorter el;
2351                 private Editor  _this;
2352
2353
2354                         // my vars (def)
2355
2356                 // ctor
2357                 public Xcls_TreeListRowSorter37(Editor _owner )
2358                 {
2359                         _this = _owner;
2360                         var child_1 = new Xcls_StringSorter38( _this );
2361                         child_1.ref();
2362                         this.el = new Gtk.TreeListRowSorter( child_1.el );
2363
2364                         // my vars (dec)
2365
2366                         // set gobject values
2367                 }
2368
2369                 // user defined functions
2370         }
2371         public class Xcls_StringSorter38 : Object
2372         {
2373                 public Gtk.StringSorter el;
2374                 private Editor  _this;
2375
2376
2377                         // my vars (def)
2378
2379                 // ctor
2380                 public Xcls_StringSorter38(Editor _owner )
2381                 {
2382                         _this = _owner;
2383                         var child_1 = new Xcls_PropertyExpression39( _this );
2384                         child_1.ref();
2385                         this.el = new Gtk.StringSorter( child_1.el );
2386
2387                         // my vars (dec)
2388
2389                         // set gobject values
2390                 }
2391
2392                 // user defined functions
2393         }
2394         public class Xcls_PropertyExpression39 : Object
2395         {
2396                 public Gtk.PropertyExpression el;
2397                 private Editor  _this;
2398
2399
2400                         // my vars (def)
2401
2402                 // ctor
2403                 public Xcls_PropertyExpression39(Editor _owner )
2404                 {
2405                         _this = _owner;
2406                         this.el = new Gtk.PropertyExpression( typeof(Lsp.DocumentSymbol), null, "sort_key" );
2407
2408                         // my vars (dec)
2409
2410                         // set gobject values
2411                 }
2412
2413                 // user defined functions
2414         }
2415
2416
2417
2418
2419
2420         public class Xcls_GestureClick40 : Object
2421         {
2422                 public Gtk.GestureClick el;
2423                 private Editor  _this;
2424
2425
2426                         // my vars (def)
2427
2428                 // ctor
2429                 public Xcls_GestureClick40(Editor _owner )
2430                 {
2431                         _this = _owner;
2432                         this.el = new Gtk.GestureClick();
2433
2434                         // my vars (dec)
2435
2436                         // set gobject values
2437
2438                         //listeners
2439                         this.el.pressed.connect( (n_press, x, y) => {
2440                                 string pos;
2441                                 var row = _this.navigation.getRowWidgetAt(x,y, out pos );
2442                         
2443                             if (row == null) {
2444                                     GLib.debug("no row selected items");
2445                                     return;
2446                             }
2447                                 GLib.debug("got click on %s", row.get_type().name());    
2448                             //Lsp.DocumentSymbol
2449                             var sym =  row.get_data<Lsp.DocumentSymbol>("symbol");
2450                             if (sym == null) {
2451                                 return;
2452                                 }
2453                                 /*
2454                                  "range" : {
2455                                       "start" : {
2456                                         "line" : 1410,
2457                                         "character" : 8
2458                                       },
2459                                       "end" : {
2460                                         "line" : 1410,
2461                                         "character" : 39
2462                                       }
2463                                     },
2464                                 */
2465                              GLib.debug("goto line %d",   (int)sym.range.start.line); 
2466                             _this.scroll_to_line((int)sym.range.start.line);
2467                             Gtk.TextIter iter;
2468                             _this.buffer.el.get_iter_at_line_offset(out iter, 
2469                                 (int)sym.range.start.line,
2470                                 (int)sym.range.start.character
2471                                 );
2472                             _this.buffer.el.place_cursor(iter);
2473                                 
2474                         });
2475                 }
2476
2477                 // user defined functions
2478         }
2479
2480
2481
2482
2483
2484 }