Fix #7352 - search improvements
[roobuilder] / src / Builder4 / Editor.bjs
1 {
2  "build_module" : "builder",
3  "items" : [
4   {
5    "# JsRender.JsRender? file" : "null",
6    "# JsRender.Node node" : "null",
7    "# JsRender.NodeProp? prop" : "null",
8    "# Xcls_MainWindow window" : "null",
9    "# bool dirty" : false,
10    "# bool pos" : false,
11    "# int pos_root_x" : "",
12    "# int pos_root_y" : "",
13    "# string activeEditor" : "\"\"",
14    "$ homogeneous" : false,
15    "$ xns" : "Gtk",
16    "* pack" : "add",
17    "@ void save" : "()",
18    "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
19    "Gtk.SourceSearchContext searchcontext" : "null",
20    "bool hexpand" : true,
21    "bool vexpand" : true,
22    "int last_search_end" : 0,
23    "items" : [
24     {
25      "$ homogeneous" : false,
26      "$ xns" : "Gtk",
27      "* pack" : "pack_start,false,true",
28      "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
29      "items" : [
30       {
31        "$ xns" : "Gtk",
32        "* pack" : "add",
33        "bool always_show_image" : true,
34        "id" : "save_button",
35        "items" : [
36         {
37          "$ xns" : "Gtk",
38          "* prop" : "image",
39          "string icon_name" : "document-save",
40          "xtype" : "Image"
41         }
42        ],
43        "label" : "Save",
44        "listeners" : {
45         "clicked" : [
46          " () => { ",
47          "    _this.saveContents();",
48          "}",
49          "  "
50         ]
51        },
52        "xtype" : "Button"
53       },
54       {
55        "$ xns" : "Gtk",
56        "* pack" : "add",
57        "bool hexpand" : true,
58        "xtype" : "Label"
59       },
60       {
61        "$ xns" : "Gtk",
62        "* ctor" : "new Gtk.HScale.with_range (6, 30, 1)",
63        "* init" : [
64         "{",
65         "\tthis.el.set_range(6,30);",
66         "\tthis.el.set_value(8);",
67         "}",
68         ""
69        ],
70        "* pack" : "add",
71        "bool draw_value" : true,
72        "bool has_origin" : true,
73        "bool sensitive" : true,
74        "int digits" : 0,
75        "int width_request" : 200,
76        "listeners" : {
77         "change_value" : [
78          "(st, val ) => {",
79          "\t ",
80          "\t  var description =   Pango.FontDescription.from_string(\"monospace\");",
81          "\t  print(\"resize to %d\", (int)val*1000);",
82          "      description.set_size((int)val*1000);",
83          "      _this.view.el.override_font(description);",
84          "      return false;",
85          "}"
86         ]
87        },
88        "xtype" : "HScale"
89       },
90       {
91        "$ xns" : "Gtk",
92        "* pack" : "add",
93        "bool always_show_image" : true,
94        "id" : "close_btn",
95        "items" : [
96         {
97          "$ xns" : "Gtk",
98          "* prop" : "image",
99          "string icon_name" : "window-close",
100          "xtype" : "Image"
101         }
102        ],
103        "listeners" : {
104         "clicked" : [
105          " () => { ",
106          "    _this.saveContents();",
107          "    _this.window.windowstate.switchState(WindowState.State.PREVIEW);",
108          "}",
109          "  "
110         ]
111        },
112        "xtype" : "Button"
113       }
114      ],
115      "xtype" : "Box"
116     },
117     {
118      "$ xns" : "Gtk",
119      "* init" : [
120       "this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);",
121       ""
122      ],
123      "bool vexpand" : true,
124      "id" : "RightEditor",
125      "items" : [
126       {
127        "$ Gtk.SourceDrawSpacesFlags draw_spaces" : "Gtk.SourceDrawSpacesFlags.LEADING + Gtk.SourceDrawSpacesFlags.TRAILING + Gtk.SourceDrawSpacesFlags.TAB + Gtk.SourceDrawSpacesFlags.SPACE",
128        "$ gboolean auto_indent" : true,
129        "$ show_line_numbers" : true,
130        "$ xns" : "Gtk",
131        "* init" : [
132         " ",
133         "",
134         "\t\tvar description =   Pango.FontDescription.from_string(\"monospace\");",
135         "\t\tdescription.set_size(8000);",
136         "",
137         "\t\t this.el.override_font(description);",
138         "",
139         "\ttry {        ",
140         "\t\tthis.el.completion.add_provider(new Palete.CompletionProvider(_this));",
141         "    } catch (GLib.Error  e) {}",
142         "    ",
143         "\tthis.el.completion.unblock_interactive();",
144         "\tthis.el.completion.select_on_show\t\t\t= true; // select",
145         "\tthis.el.completion.show_headers\t\t\t= false;",
146         "\tthis.el.completion.remember_info_visibility\t\t= true;",
147         "    ",
148         "  ",
149         "    var attrs = new Gtk.SourceMarkAttributes();",
150         "    var  pink =   Gdk.RGBA();",
151         "    pink.parse ( \"pink\");",
152         "    attrs.set_background ( pink);",
153         "    attrs.set_icon_name ( \"process-stop\");    ",
154         "    attrs.query_tooltip_text.connect(( mark) => {",
155         "        //print(\"tooltip query? %s\\n\", mark.name);",
156         "        return mark.name;",
157         "    });",
158         "    ",
159         "    this.el.set_mark_attributes (\"ERR\", attrs, 1);",
160         "    ",
161         "     var wattrs = new Gtk.SourceMarkAttributes();",
162         "    var  blue =   Gdk.RGBA();",
163         "    blue.parse ( \"#ABF4EB\");",
164         "    wattrs.set_background ( blue);",
165         "    wattrs.set_icon_name ( \"process-stop\");    ",
166         "    wattrs.query_tooltip_text.connect(( mark) => {",
167         "        //print(\"tooltip query? %s\\n\", mark.name);",
168         "        return mark.name;",
169         "    });",
170         "    ",
171         "    this.el.set_mark_attributes (\"WARN\", wattrs, 1);",
172         "    ",
173         " ",
174         "    ",
175         "     var dattrs = new Gtk.SourceMarkAttributes();",
176         "    var  purple =   Gdk.RGBA();",
177         "    purple.parse ( \"#EEA9FF\");",
178         "    dattrs.set_background ( purple);",
179         "    dattrs.set_icon_name ( \"process-stop\");    ",
180         "    dattrs.query_tooltip_text.connect(( mark) => {",
181         "        //print(\"tooltip query? %s\\n\", mark.name);",
182         "        return mark.name;",
183         "    });",
184         "    ",
185         "    this.el.set_mark_attributes (\"DEPR\", dattrs, 1);",
186         "    ",
187         "    "
188        ],
189        "* pack" : "add",
190        "bool insert_spaces_instead_of_tabs" : true,
191        "gboolean highlight_current_line" : true,
192        "gboolean show_line_marks" : true,
193        "id" : "view",
194        "indent_width" : 4,
195        "items" : [
196         {
197          "$ xns" : "Gtk",
198          "* pack" : "set_buffer",
199          "bool check_queued" : false,
200          "bool check_running" : false,
201          "id" : "buffer",
202          "int error_line" : "-1",
203          "listeners" : {
204           "changed" : [
205            " () => {",
206            "    // check syntax??",
207            "    // ??needed..??",
208            "    _this.save_button.el.sensitive = true;",
209            "    print(\"EDITOR CHANGED\");",
210            "    this.checkSyntax();",
211            "   ",
212            "    _this.dirty = true;",
213            "",
214            "    // this.get('/LeftPanel.model').changed(  str , false);",
215            "    return ;",
216            "}",
217            "",
218            " ",
219            ""
220           ]
221          },
222          "xtype" : "SourceBuffer",
223          "| bool checkSyntax" : [
224           " () {",
225           " ",
226           "    if (this.check_running) {",
227           "        print(\"Check is running\\n\");",
228           "        if (this.check_queued) { ",
229           "            print(\"Check is already queued\");",
230           "            return true;",
231           "        }",
232           "        this.check_queued = true;",
233           "        print(\"Adding queued Check \");",
234           "        GLib.Timeout.add_seconds(1, () => {",
235           "            this.check_queued = false;",
236           "            ",
237           "            this.checkSyntax();",
238           "            return false;",
239           "        });",
240           "    ",
241           "",
242           "        return true;",
243           "    }",
244           "    var str = this.toString();",
245           "    ",
246           "    // needed???",
247           "    if (this.error_line > 0) {",
248           "         Gtk.TextIter start;",
249           "         Gtk.TextIter end;     ",
250           "        this.el.get_bounds (out start, out end);",
251           "",
252           "        this.el.remove_source_marks (start, end, null);",
253           "    }",
254           "    if (str.length < 1) {",
255           "        print(\"checkSyntax - empty string?\\n\");",
256           "        return true;",
257           "    }",
258           "    ",
259           "    if (_this.file.xtype == \"PlainFile\") {",
260           "    ",
261           "        // assume it's gtk...",
262           "           this.check_running = true;",
263           " ",
264           "         if (!BuilderApplication.valasource.checkPlainFileSpawn(",
265           "\t   _this.file,",
266           "\t    str",
267           "\t )) {",
268           "            this.check_running = false;",
269           "        }",
270           "\t",
271           "        return true;",
272           "    ",
273           "    }",
274           "   if (_this.file == null) {",
275           "       return true;",
276           "   }",
277           "    var p = _this.file.project.palete;",
278           "    ",
279           "",
280           "     ",
281           "    this.check_running = true;",
282           "    ",
283           "    ",
284           "    if (_this.file.language == \"js\") {",
285           "        this.check_running = false;",
286           "        print(\"calling validate javascript\\n\"); ",
287           "        Gee.HashMap<int,string> errors;",
288           "        p.javascriptHasErrors(",
289           "    \t\t_this.window.windowstate,",
290           "            str, ",
291           "             _this.prop,",
292           "            _this.file,   // no reference not node?",
293           "            out errors",
294           "        );",
295           "        return this.highlightErrors(errors);    ",
296           "        ",
297           "    }",
298           "        ",
299           "        ",
300           "    print(\"calling validate vala\\n\");    ",
301           "    // clear the buttons.",
302           " ",
303           "    ",
304           "   if (! BuilderApplication.valasource.checkFileWithNodePropChange(",
305           "        _this.file,",
306           "        _this.node,",
307           "         _this.prop,        ",
308           "            str",
309           "        )) {",
310           "        this.check_running = false;",
311           "    } ",
312           "     ",
313           "    ",
314           "    ",
315           "    //print(\"done mark line\\n\");",
316           "     ",
317           "    return true; // at present allow saving - even if it's invalid..",
318           "}",
319           ""
320          ],
321          "| bool highlightErrors" : [
322           "( Gee.HashMap<int,string> validate_res) {",
323           "         ",
324           "        this.error_line = validate_res.size;",
325           "",
326           "        if (this.error_line < 1) {",
327           "              return true;",
328           "        }",
329           "        var tlines = this.el.get_line_count ();",
330           "        Gtk.TextIter iter;",
331           "        var valiter = validate_res.map_iterator();",
332           "        while (valiter.next()) {",
333           "        ",
334           "    //        print(\"get inter\\n\");",
335           "            var eline = valiter.get_key();",
336           "            if (eline > tlines) {",
337           "                continue;",
338           "            }",
339           "            this.el.get_iter_at_line( out iter, eline);",
340           "            //print(\"mark line\\n\");",
341           "            this.el.create_source_mark(valiter.get_value(), \"ERR\", iter);",
342           "        }   ",
343           "        return false;",
344           "    }"
345          ],
346          "| bool highlightErrorsJson" : [
347           "(string type, Json.Object obj) {",
348           "      Gtk.TextIter start;",
349           "     Gtk.TextIter end;     ",
350           "        this.el.get_bounds (out start, out end);",
351           "        ",
352           "        this.el.remove_source_marks (start, end, type);",
353           "                 ",
354           "     ",
355           "     // we should highlight other types of errors..",
356           "    ",
357           "    if (!obj.has_member(type)) {",
358           "        print(\"Return has no errors\\n\");",
359           "        return true;",
360           "    }",
361           "    ",
362           "    if (_this.window.windowstate.state != WindowState.State.CODEONLY ",
363           "      ",
364           "        ) {",
365           "        return true;",
366           "    } ",
367           "    ",
368           "    ",
369           "    var err = obj.get_object_member(type);",
370           "    ",
371           "    ",
372           "    if (_this.file == null) {",
373           "        return true;",
374           "    ",
375           "    }",
376           "    var valafn = _this.file.path;",
377           " ",
378           "    if (_this.file.xtype != \"PlainFile\") {",
379           "",
380           "",
381           "        ",
382           "        ",
383           "         valafn = \"\";",
384           "          try {             ",
385           "               var  regex = new Regex(\"\\\\.bjs$\");",
386           "               // should not happen",
387           "              ",
388           "             ",
389           "                valafn = regex.replace(_this.file.path,_this.file.path.length , 0 , \".vala\");",
390           "             } catch (GLib.RegexError e) {",
391           "                return true;",
392           "            }   ",
393           "",
394           "",
395           "",
396           "      }",
397           "       if (!err.has_member(valafn)) {",
398           "            print(\"File path has no errors\\n\");",
399           "            return  true;",
400           "        }",
401           "",
402           "        var lines = err.get_object_member(valafn);",
403           "        ",
404           "        var offset = 1;",
405           "        if (obj.has_member(\"line_offset\")) {",
406           "            offset = (int)obj.get_int_member(\"line_offset\") + 1;",
407           "        }",
408           "    ",
409           "",
410           "     ",
411           "    ",
412           "    var tlines = this.el.get_line_count () +1;",
413           "    ",
414           "    lines.foreach_member((obj, line, node) => {",
415           "        ",
416           "             Gtk.TextIter iter;",
417           "    //        print(\"get inter\\n\");",
418           "            var eline = int.parse(line) - offset;",
419           "            print(\"GOT ERROR on line %s -- converted to %d\\n\", line,eline);",
420           "            ",
421           "            ",
422           "            if (eline > tlines || eline < 0) {",
423           "                return;",
424           "            }",
425           "            this.el.get_iter_at_line( out iter, eline);",
426           "            //print(\"mark line\\n\");",
427           "            var msg  = \"Line: %d\".printf(eline+1);",
428           "            var ar = lines.get_array_member(line);",
429           "            for (var i = 0 ; i < ar.get_length(); i++) {",
430           "\t\t    msg += (msg.length > 0) ? \"\\n\" : \"\";",
431           "\t\t    msg += ar.get_string_element(i);",
432           "\t    }",
433           "            ",
434           "            ",
435           "            this.el.create_source_mark(msg, type, iter);",
436           "        } );",
437           "        return false;",
438           "    ",
439           "",
440           "",
441           "",
442           "",
443           "}",
444           ""
445          ],
446          "| string toString" : [
447           "  () {",
448           "    ",
449           "    Gtk.TextIter s;",
450           "    Gtk.TextIter e;",
451           "    this.el.get_start_iter(out s);",
452           "    this.el.get_end_iter(out e);",
453           "    var ret = this.el.get_text(s,e,true);",
454           "    //print(\"TO STRING? \" + ret);",
455           "    return ret;",
456           "}",
457           " "
458          ]
459         }
460        ],
461        "listeners" : {
462         "key_release_event" : [
463          " (event) => {",
464          "    ",
465          "    if (event.keyval == Gdk.Key.s && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {",
466          "        GLib.debug(\"SAVE: ctrl-S  pressed\");",
467          "        _this.saveContents();",
468          "        return false;",
469          "    }",
470          "    ",
471          "    if (event.keyval == Gdk.Key.g && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {",
472          "\t    GLib.debug(\"SAVE: ctrl-g  pressed\");",
473          "\t\t_this.forwardSearch(true);",
474          "\t    return true;",
475          "\t}",
476          "    ",
477          "   // print(event.key.keyval)",
478          "    ",
479          "    return false;",
480          "",
481          "} ",
482          "",
483          " "
484         ]
485        },
486        "uint tab_width" : 4,
487        "xtype" : "SourceView",
488        "| void load" : [
489         " (string str) {",
490         "",
491         "// show the help page for the active node..",
492         "   //this.get('/Help').show();",
493         "",
494         "",
495         "  // this.get('/BottomPane').el.set_current_page(0);",
496         "    var buf = (Gtk.SourceBuffer)this.el.get_buffer();",
497         "    buf.set_text(str, str.length);",
498         "    buf.set_undo_manager(null);",
499         "    ",
500         "    var lm = Gtk.SourceLanguageManager.get_default();",
501         "    var lang = \"vala\";",
502         "    if (_this.file != null) {",
503         "         lang = _this.file.language;",
504         "    }",
505         "    print(\"lang=%s, content_type = %s\\n\", lang, _this.file.content_type);",
506         "    var lg = _this.file.content_type.length > 0  ?",
507         "            lm.guess_language(_this.file.path, _this.file.content_type) :",
508         "            lm.get_language(lang);",
509         "     ",
510         "   ",
511         "    ((Gtk.SourceBuffer)(this.el.get_buffer())) .set_language(lg); ",
512         "",
513         "    this.el.insert_spaces_instead_of_tabs = true;",
514         "    if (lg != null) {",
515         "\t\tprint(\"sourcelanguage  = %s\\n\", lg.name);",
516         "\t\tif (lg.name == \"Vala\") {",
517         "\t\t    this.el.insert_spaces_instead_of_tabs = false;",
518         "\t\t}",
519         "     }",
520         "    _this.dirty = false;",
521         "    this.el.grab_focus();",
522         "    _this.save_button.el.sensitive = false;",
523         "}"
524        ]
525       }
526      ],
527      "xtype" : "ScrolledWindow"
528     },
529     {
530      "$ xns" : "Gtk",
531      "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
532      "bool homogeneous" : false,
533      "bool vexpand" : false,
534      "int spacing" : 0,
535      "items" : [
536       {
537        "$ xns" : "Gtk",
538        "* init" : [
539         "var description =   Pango.FontDescription.from_string(\"monospace\");",
540         "\tdescription.set_size(8000);",
541         "\t this.el.override_font(description);",
542         "",
543         ""
544        ],
545        "bool hexpand" : true,
546        "id" : "search_entry",
547        "int width_request" : 300,
548        "listeners" : {
549         "changed" : [
550          "() => {",
551          "\t/*",
552          "\tif (this.el.text == \"\") {",
553          "\t\t_this.search_results.el.hide();",
554          "\t\treturn;",
555          "\t}",
556          "\tvar res = 0;",
557          "\tswitch(_this.windowstate.state) {",
558          "\t\tcase WindowState.State.CODEONLY:",
559          "\t\t///case WindowState.State.CODE:",
560          "\t\t\t// search the code being edited..",
561          "\t\t\tres = _this.windowstate.code_editor_tab.search(this.el.text);",
562          "\t\t\t",
563          "\t\t\tbreak;",
564          "\t\tcase WindowState.State.PREVIEW:",
565          "\t\t\tif (_this.windowstate.file.xtype == \"Gtk\") {",
566          "\t\t\t\t res = _this.windowstate.window_gladeview.search(this.el.text);",
567          "\t\t\t} else { ",
568          "\t\t\t\t res = _this.windowstate.window_rooview.search(this.el.text);\t\t\t",
569          "\t\t\t}",
570          "\t\t",
571          "\t\t",
572          "\t\t\tbreak;",
573          "\t}",
574          "\t_this.search_results.el.show();",
575          "\tif (res > 0) {",
576          "\t\t_this.search_results.el.label = \"%d Matches\".printf(res);",
577          "\t} else {",
578          "\t\t_this.search_results.el.label = \"No Matches\";",
579          "\t}",
580          "\t\t",
581          "\t*/",
582          "\t",
583          "}",
584          ""
585         ],
586         "key_press_event" : [
587          "(event) => {",
588          "     if (event.keyval == Gdk.Key.g && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {",
589          "\t    GLib.debug(\"SAVE: ctrl-g  pressed\");",
590          "\t\t_this.forwardSearch(true);",
591          "\t    return true;",
592          "\t}",
593          "    ",
594          "  ",
595          " \tif (event.keyval == Gdk.Key.Return && this.el.text.length > 0) {",
596          "\t\tvar res = _this.search(this.el.text);",
597          "\t\tif (res > 0) {",
598          "\t\t\t_this.search_results.el.label = \"%d Matches\".printf(res);",
599          "\t\t} else {",
600          "\t\t\t_this.search_results.el.label = \"No Matches\";",
601          "\t\t}",
602          "\t\t",
603          "\t    return true;",
604          "",
605          "\t}    ",
606          "   // print(event.key.keyval)",
607          "   ",
608          "    return false;",
609          "",
610          "} "
611         ]
612        },
613        "string placeholder_text" : "Press enter to search",
614        "xtype" : "SearchEntry",
615        "| void forwardSearch" : [
616         "(bool change_focus) {",
617         "",
618         "",
619         "\t_this.forwardSearch(change_focus);",
620         "",
621         "/*",
622         "",
623         "\tswitch(_this.windowstate.state) {",
624         "\t\tcase WindowState.State.CODEONLY:",
625         "\t\t//case WindowState.State.CODE:",
626         "\t\t\t// search the code being edited..",
627         "\t\t\t_this.windowstate.code_editor_tab.forwardSearch(change_focus);",
628         "\t\t\t ",
629         "\t\t\tbreak;",
630         "\t\tcase WindowState.State.PREVIEW:",
631         "\t\t\tif (_this.windowstate.file.xtype == \"Gtk\") {",
632         "\t\t\t\t_this.windowstate.window_gladeview.forwardSearch(change_focus);",
633         "\t\t\t} else { ",
634         "\t\t\t\t _this.windowstate.window_rooview.forwardSearch(change_focus);",
635         "\t\t\t}",
636         "\t\t",
637         "\t\t\tbreak;",
638         "\t}",
639         "\t*/",
640         "\t",
641         "}",
642         ""
643        ]
644       },
645       {
646        "$ xns" : "Gtk",
647        "* pack" : "add",
648        "items" : [
649         {
650          "$ xns" : "Gtk",
651          "* pack" : "add",
652          "Xcls_ValaCompileErrors popup" : "",
653          "bool always_show_image" : true,
654          "id" : "search_results",
655          "items" : [
656           {
657            "$ xns" : "Gtk",
658            "* pack" : "set_image",
659            "bool sensitive" : false,
660            "utf8 icon_name" : "system-search",
661            "xtype" : "Image"
662           }
663          ],
664          "listeners" : {
665           "button_press_event" : [
666            "() => {",
667            "/*",
668            "    if (this.popup == null) {",
669            "        this.popup = new Xcls_ValaCompileErrors();",
670            "        this.popup.window = _this;",
671            "    }",
672            "   ",
673            "    ",
674            "    this.popup.show(this.notices, this.el);",
675            "    */",
676            "    return true;",
677            "}"
678           ]
679          },
680          "string label" : "Matches",
681          "xtype" : "ImageMenuItem"
682         }
683        ],
684        "xtype" : "MenuBar"
685       },
686       {
687        "$ xns" : "Gtk",
688        "bool always_show_image" : true,
689        "items" : [
690         {
691          "$ xns" : "Gtk",
692          "* prop" : "image",
693          "string icon_name" : "go-down",
694          "xtype" : "Image"
695         }
696        ],
697        "listeners" : {
698         "button_press_event" : [
699          "(event) => {",
700          "",
701          "\t_this.forwardSearch(true);",
702          "\t",
703          "\treturn true;",
704          "}",
705          ""
706         ]
707        },
708        "string label" : "Next",
709        "xtype" : "Button"
710       },
711       {
712        "$ xns" : "Gtk",
713        "bool always_show_image" : true,
714        "items" : [
715         {
716          "$ xns" : "Gtk",
717          "* prop" : "image",
718          "string icon_name" : "go-up",
719          "xtype" : "Image"
720         }
721        ],
722        "listeners" : {
723         "button_press_event" : [
724          "(event) => {",
725          "",
726          "\t_this.backSearch(true);",
727          "\t",
728          "\treturn true;",
729          "}",
730          ""
731         ]
732        },
733        "string label" : "Previous",
734        "xtype" : "Button"
735       },
736       {
737        "$ xns" : "Gtk",
738        "bool always_show_image" : true,
739        "items" : [
740         {
741          "$ xns" : "Gtk",
742          "* prop" : "image",
743          "string icon_name" : "emblem-system",
744          "xtype" : "Image"
745         },
746         {
747          "$ xns" : "Gtk",
748          "* prop" : "popup",
749          "id" : "search_settings",
750          "items" : [
751           {
752            "$ xns" : "Gtk",
753            "* init" : [
754             "{",
755             "\tthis.el.show();",
756             "}",
757             ""
758            ],
759            "id" : "case_sensitive",
760            "string label" : "Case Sensitive",
761            "xtype" : "CheckMenuItem"
762           },
763           {
764            "$ xns" : "Gtk",
765            "* init" : [
766             "{",
767             "\tthis.el.show();",
768             "}",
769             ""
770            ],
771            "id" : "regex",
772            "string label" : "Regex",
773            "xtype" : "CheckMenuItem"
774           },
775           {
776            "$ xns" : "Gtk",
777            "* init" : [
778             "{",
779             "\tthis.el.show();",
780             "}",
781             ""
782            ],
783            "id" : "multiline",
784            "string label" : "Multi-line (add \\n)",
785            "xtype" : "CheckMenuItem"
786           }
787          ],
788          "xtype" : "Menu"
789         }
790        ],
791        "string label" : "Settings",
792        "xtype" : "MenuButton"
793       }
794      ],
795      "xtype" : "Box"
796     }
797    ],
798    "xtype" : "Box",
799    "| bool saveContents" : [
800     "  ()  {",
801     "    ",
802     "    ",
803     "    if (_this.file == null) {",
804     "        return true;",
805     "    }",
806     "    ",
807     "     ",
808     "     ",
809     "     var str = _this.buffer.toString();",
810     "     ",
811     "     _this.buffer.checkSyntax();",
812     "     ",
813     "     ",
814     "     ",
815     "     // LeftPanel.model.changed(  str , false);",
816     "     _this.dirty = false;",
817     "     _this.save_button.el.sensitive = false;",
818     "     ",
819     "    // find the text for the node..",
820     "    if (_this.file.xtype != \"PlainFile\") {",
821     "       // in theory these properties have to exist!?!",
822     "    \tthis.prop.val = str;",
823     "        this.window.windowstate.left_props.reload();",
824     "    } else {",
825     "        _this.file.setSource(  str );",
826     "     }",
827     "    ",
828     "    // call the signal..",
829     "    this.save();",
830     "    ",
831     "    return true;",
832     "",
833     "} "
834    ],
835    "| int search" : [
836     "(string in_txt) {",
837     "",
838     "\tvar s = new Gtk.SourceSearchSettings();",
839     "\ts.case_sensitive = _this.case_sensitive.el.active;",
840     "\ts.regex_enabled = _this.regex.el.active;\t",
841     "\ts.wrap_around = false;",
842     "\t",
843     "\tthis.searchcontext = new Gtk.SourceSearchContext(this.buffer.el,s);",
844     "\tthis.searchcontext.set_highlight(true);",
845     "\tvar txt = in_txt;",
846     "\t",
847     "\tif (_this.multiline.el.active) {",
848     "\t\ttxt = in_txt.replace(\"\\\\n\", \"\\n\");",
849     "\t}",
850     "\t",
851     "\ts.set_search_text(txt);",
852     "\tGtk.TextIter beg, st,en;",
853     "\t ",
854     "\tthis.buffer.el.get_start_iter(out beg);",
855     "\tthis.searchcontext.forward(beg, out st, out en);",
856     "\tthis.last_search_end = 0;",
857     "\t",
858     "\treturn this.searchcontext.get_occurrences_count();",
859     "",
860     " ",
861     "   ",
862     "",
863     "}",
864     ""
865    ],
866    "| void backSearch" : [
867     "(bool change_focus) {",
868     "",
869     "\tif (this.searchcontext == null) {",
870     "\t\treturn;",
871     "\t} ",
872     "\t",
873     "\tGtk.TextIter beg, st,en;",
874     "\tbool has_wrapped_around;",
875     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end -1 );",
876     "\t",
877     "\tif (!this.searchcontext.backward2(beg, out st, out en, out has_wrapped_around)) {",
878     "\t",
879     "\t\tthis.last_search_end = 0;",
880     "\t} else {",
881     "\t\tthis.last_search_end = en.get_offset();",
882     "\t\tif (change_focus) {",
883     "\t\t\tthis.view.el.grab_focus();",
884     "\t\t}",
885     "\t\tthis.buffer.el.place_cursor(st);",
886     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
887     "\t}",
888     " ",
889     "}",
890     ""
891    ],
892    "| void forwardSearch" : [
893     "(bool change_focus) {",
894     "",
895     "\tif (this.searchcontext == null) {",
896     "\t\treturn;",
897     "\t} ",
898     "\t",
899     "\tGtk.TextIter beg, st,en;",
900     "\t bool has_wrapped_around;",
901     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end);",
902     "\tif (!this.searchcontext.forward2(beg, out st, out en, out has_wrapped_around)) {",
903     "\t",
904     "\t\tthis.last_search_end = 0; // not sure if this should happen",
905     "\t} else {",
906     "\t\tif (has_wrapped_around) {",
907     "\t\t\treturn;",
908     "\t\t}",
909     "\t",
910     "\t\tthis.last_search_end = en.get_offset();",
911     "\t\tif (change_focus) {",
912     "\t\t\tthis.view.el.grab_focus();",
913     "\t\t}",
914     "\t\tthis.buffer.el.place_cursor(st);",
915     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
916     "\t}",
917     " ",
918     "}",
919     ""
920    ],
921    "| void reset" : [
922     "() {",
923     "\t this.file = null;    ",
924     "     ",
925     "    this.node = null;",
926     "    this.prop = null;",
927     "\tthis.searchcontext = null;",
928     "  ",
929     "}",
930     ""
931    ],
932    "| void scroll_to_line" : [
933     "(int line) {",
934     "",
935     "\tGLib.Timeout.add(500, () => {",
936     "   ",
937     "\t\tvar buf = this.view.el.get_buffer();",
938     "",
939     "\t\tvar sbuf = (Gtk.SourceBuffer) buf;",
940     "",
941     "",
942     "\t\tGtk.TextIter iter;   ",
943     "\t\tsbuf.get_iter_at_line(out iter,  line);",
944     "\t\tthis.view.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);",
945     "\t\treturn false;",
946     "\t});   ",
947     "}",
948     ""
949    ],
950    "| void show" : [
951     "(JsRender.JsRender file, JsRender.Node? node, JsRender.NodeProp? prop)",
952     "{",
953     "    this.reset();",
954     "    this.file = file;    ",
955     "    ",
956     "    if (file.xtype != \"PlainFile\") {",
957     "    \tthis.prop = prop;",
958     "        this.node = node;",
959     "",
960     "        // find the text for the node..",
961     "        this.view.load( prop.val );",
962     "        this.close_btn.el.show();       ",
963     "    ",
964     "    } else {",
965     "        this.view.load(        file.toSource() );",
966     "        this.close_btn.el.hide();",
967     "    }",
968     " ",
969     "}"
970    ]
971   }
972  ],
973  "modOrder" : "",
974  "name" : "Editor",
975  "parent" : "",
976  "path" : "/home/alan/gitlive/roobuilder/src/Builder4/Editor.bjs",
977  "permname" : "",
978  "title" : ""
979 }