Fix #7383 - reduce complier warnings
[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          "\tif (event.keyval == Gdk.Key.f && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {",
477          "\t    GLib.debug(\"SAVE: ctrl-f  pressed\");",
478          "\t\t_this.search_entry.el.grab_focus();",
479          "\t    return true;",
480          "\t}",
481          "    ",
482          "   // print(event.key.keyval)",
483          "    ",
484          "    return false;",
485          "",
486          "} ",
487          "",
488          " "
489         ]
490        },
491        "uint tab_width" : 4,
492        "xtype" : "SourceView",
493        "| void load" : [
494         " (string str) {",
495         "",
496         "// show the help page for the active node..",
497         "   //this.get('/Help').show();",
498         "",
499         "",
500         "  // this.get('/BottomPane').el.set_current_page(0);",
501         "    var buf = (Gtk.SourceBuffer)this.el.get_buffer();",
502         "    buf.set_text(str, str.length);",
503         "    buf.set_undo_manager(null);",
504         "    ",
505         "    var lm = Gtk.SourceLanguageManager.get_default();",
506         "    var lang = \"vala\";",
507         "    if (_this.file != null) {",
508         "         lang = _this.file.language;",
509         "    }",
510         "    print(\"lang=%s, content_type = %s\\n\", lang, _this.file.content_type);",
511         "    var lg = _this.file.content_type.length > 0  ?",
512         "            lm.guess_language(_this.file.path, _this.file.content_type) :",
513         "            lm.get_language(lang);",
514         "     ",
515         "   ",
516         "    ((Gtk.SourceBuffer)(this.el.get_buffer())) .set_language(lg); ",
517         "",
518         "    this.el.insert_spaces_instead_of_tabs = true;",
519         "    if (lg != null) {",
520         "\t\tprint(\"sourcelanguage  = %s\\n\", lg.name);",
521         "\t\tif (lg.name == \"Vala\") {",
522         "\t\t    this.el.insert_spaces_instead_of_tabs = false;",
523         "\t\t}",
524         "     }",
525         "    _this.dirty = false;",
526         "    this.el.grab_focus();",
527         "    _this.save_button.el.sensitive = false;",
528         "}"
529        ]
530       }
531      ],
532      "xtype" : "ScrolledWindow"
533     },
534     {
535      "$ xns" : "Gtk",
536      "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
537      "bool homogeneous" : false,
538      "bool vexpand" : false,
539      "int spacing" : 0,
540      "items" : [
541       {
542        "$ xns" : "Gtk",
543        "* init" : [
544         "var description =   Pango.FontDescription.from_string(\"monospace\");",
545         "\tdescription.set_size(8000);",
546         "\t this.el.override_font(description);",
547         "",
548         ""
549        ],
550        "bool hexpand" : true,
551        "id" : "search_entry",
552        "int width_request" : 300,
553        "listeners" : {
554         "changed" : [
555          "() => {",
556          "\t/*",
557          "\tif (this.el.text == \"\") {",
558          "\t\t_this.search_results.el.hide();",
559          "\t\treturn;",
560          "\t}",
561          "\tvar res = 0;",
562          "\tswitch(_this.windowstate.state) {",
563          "\t\tcase WindowState.State.CODEONLY:",
564          "\t\t///case WindowState.State.CODE:",
565          "\t\t\t// search the code being edited..",
566          "\t\t\tres = _this.windowstate.code_editor_tab.search(this.el.text);",
567          "\t\t\t",
568          "\t\t\tbreak;",
569          "\t\tcase WindowState.State.PREVIEW:",
570          "\t\t\tif (_this.windowstate.file.xtype == \"Gtk\") {",
571          "\t\t\t\t res = _this.windowstate.window_gladeview.search(this.el.text);",
572          "\t\t\t} else { ",
573          "\t\t\t\t res = _this.windowstate.window_rooview.search(this.el.text);\t\t\t",
574          "\t\t\t}",
575          "\t\t",
576          "\t\t",
577          "\t\t\tbreak;",
578          "\t}",
579          "\t_this.search_results.el.show();",
580          "\tif (res > 0) {",
581          "\t\t_this.search_results.el.label = \"%d Matches\".printf(res);",
582          "\t} else {",
583          "\t\t_this.search_results.el.label = \"No Matches\";",
584          "\t}",
585          "\t\t",
586          "\t*/",
587          "\t",
588          "}",
589          ""
590         ],
591         "key_press_event" : [
592          "(event) => {",
593          "     if (event.keyval == Gdk.Key.g && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {",
594          "\t    GLib.debug(\"SAVE: ctrl-g  pressed\");",
595          "\t\t_this.forwardSearch(true);",
596          "\t    return true;",
597          "\t}",
598          "    ",
599          "  ",
600          " \tif (event.keyval == Gdk.Key.Return && this.el.text.length > 0) {",
601          "\t\t//var res =",
602          "\t\t _this.search(this.el.text);",
603          "\t\t _this.search_results.updateResults();",
604          "",
605          "\t\tGLib.Timeout.add_seconds(2,() => {",
606          "\t\t\t _this.search_results.updateResults();",
607          "\t\t\t return false;",
608          "\t\t });",
609          "\t ",
610          "\t\t",
611          "\t    return true;",
612          "",
613          "\t}    ",
614          "   // print(event.key.keyval)",
615          "   ",
616          "    return false;",
617          "",
618          "} "
619         ]
620        },
621        "string placeholder_text" : "Press enter to search",
622        "xtype" : "SearchEntry",
623        "| void forwardSearch" : [
624         "(bool change_focus) {",
625         "",
626         "",
627         "\t_this.forwardSearch(change_focus);",
628         "",
629         "/*",
630         "",
631         "\tswitch(_this.windowstate.state) {",
632         "\t\tcase WindowState.State.CODEONLY:",
633         "\t\t//case WindowState.State.CODE:",
634         "\t\t\t// search the code being edited..",
635         "\t\t\t_this.windowstate.code_editor_tab.forwardSearch(change_focus);",
636         "\t\t\t ",
637         "\t\t\tbreak;",
638         "\t\tcase WindowState.State.PREVIEW:",
639         "\t\t\tif (_this.windowstate.file.xtype == \"Gtk\") {",
640         "\t\t\t\t_this.windowstate.window_gladeview.forwardSearch(change_focus);",
641         "\t\t\t} else { ",
642         "\t\t\t\t _this.windowstate.window_rooview.forwardSearch(change_focus);",
643         "\t\t\t}",
644         "\t\t",
645         "\t\t\tbreak;",
646         "\t}",
647         "\t*/",
648         "\t",
649         "}",
650         ""
651        ]
652       },
653       {
654        "$ xns" : "Gtk",
655        "* pack" : "add",
656        "items" : [
657         {
658          "$ xns" : "Gtk",
659          "* pack" : "add",
660          "bool always_show_image" : true,
661          "bool visible" : false,
662          "id" : "search_results",
663          "listeners" : {
664           "button_press_event" : [
665            "() => {",
666            "/*",
667            "    if (this.popup == null) {",
668            "        this.popup = new Xcls_ValaCompileErrors();",
669            "        this.popup.window = _this;",
670            "    }",
671            "   ",
672            "    ",
673            "    this.popup.show(this.notices, this.el);",
674            "    */",
675            "    return true;",
676            "}"
677           ]
678          },
679          "xtype" : "ImageMenuItem",
680          "| void updateResults" : [
681           "() {",
682           "\tthis.el.visible = true;",
683           "\t",
684           "\tvar res = _this.searchcontext.get_occurrences_count();",
685           "\tif (res < 0) {",
686           "\t\t_this.search_results.el.label = \"??? Matches\";\t\t",
687           "\t\treturn;",
688           "\t}",
689           "",
690           "\t_this.nextBtn.el.sensitive = false;",
691           "\t_this.backBtn.el.sensitive = false;\t",
692           "",
693           "\tif (res > 0) {",
694           "\t\t_this.search_results.el.label = \"%d Matches\".printf(res);",
695           "\t\t_this.nextBtn.el.sensitive = true;",
696           "\t\t_this.backBtn.el.sensitive = true;",
697           "\t\treturn;",
698           "\t} ",
699           "\t_this.search_results.el.label = \"No Matches\";",
700           "\t",
701           "}"
702          ]
703         }
704        ],
705        "xtype" : "MenuBar"
706       },
707       {
708        "$ xns" : "Gtk",
709        "bool always_show_image" : true,
710        "bool sensitive" : false,
711        "id" : "nextBtn",
712        "items" : [
713         {
714          "$ xns" : "Gtk",
715          "* prop" : "image",
716          "string icon_name" : "go-down",
717          "xtype" : "Image"
718         }
719        ],
720        "listeners" : {
721         "button_press_event" : [
722          "(event) => {",
723          "",
724          "\t_this.forwardSearch(true);",
725          "\t",
726          "\treturn true;",
727          "}",
728          ""
729         ]
730        },
731        "string label" : "Next",
732        "xtype" : "Button"
733       },
734       {
735        "$ xns" : "Gtk",
736        "bool always_show_image" : true,
737        "bool sensitive" : false,
738        "id" : "backBtn",
739        "items" : [
740         {
741          "$ xns" : "Gtk",
742          "* prop" : "image",
743          "string icon_name" : "go-up",
744          "xtype" : "Image"
745         }
746        ],
747        "listeners" : {
748         "button_press_event" : [
749          "(event) => {",
750          "",
751          "\t_this.backSearch(true);",
752          "\t",
753          "\treturn true;",
754          "}",
755          ""
756         ]
757        },
758        "string label" : "Previous",
759        "xtype" : "Button"
760       },
761       {
762        "$ xns" : "Gtk",
763        "bool always_show_image" : true,
764        "items" : [
765         {
766          "$ xns" : "Gtk",
767          "* prop" : "image",
768          "string icon_name" : "emblem-system",
769          "xtype" : "Image"
770         },
771         {
772          "$ xns" : "Gtk",
773          "* prop" : "popup",
774          "id" : "search_settings",
775          "items" : [
776           {
777            "$ xns" : "Gtk",
778            "* init" : [
779             "{",
780             "\tthis.el.show();",
781             "}",
782             ""
783            ],
784            "id" : "case_sensitive",
785            "string label" : "Case Sensitive",
786            "xtype" : "CheckMenuItem"
787           },
788           {
789            "$ xns" : "Gtk",
790            "* init" : [
791             "{",
792             "\tthis.el.show();",
793             "}",
794             ""
795            ],
796            "id" : "regex",
797            "string label" : "Regex",
798            "xtype" : "CheckMenuItem"
799           },
800           {
801            "$ xns" : "Gtk",
802            "* init" : [
803             "{",
804             "\tthis.el.show();",
805             "}",
806             ""
807            ],
808            "id" : "multiline",
809            "string label" : "Multi-line (add \\n)",
810            "xtype" : "CheckMenuItem"
811           }
812          ],
813          "xtype" : "Menu"
814         }
815        ],
816        "string label" : "Settings",
817        "xtype" : "MenuButton"
818       }
819      ],
820      "xtype" : "Box"
821     }
822    ],
823    "xtype" : "Box",
824    "| bool saveContents" : [
825     "  ()  {",
826     "    ",
827     "    ",
828     "    if (_this.file == null) {",
829     "        return true;",
830     "    }",
831     "    ",
832     "     ",
833     "     ",
834     "     var str = _this.buffer.toString();",
835     "     ",
836     "     _this.buffer.checkSyntax();",
837     "     ",
838     "     ",
839     "     ",
840     "     // LeftPanel.model.changed(  str , false);",
841     "     _this.dirty = false;",
842     "     _this.save_button.el.sensitive = false;",
843     "     ",
844     "    // find the text for the node..",
845     "    if (_this.file.xtype != \"PlainFile\") {",
846     "       // in theory these properties have to exist!?!",
847     "    \tthis.prop.val = str;",
848     "        this.window.windowstate.left_props.reload();",
849     "    } else {",
850     "        _this.file.setSource(  str );",
851     "     }",
852     "    ",
853     "    // call the signal..",
854     "    this.save();",
855     "    ",
856     "    return true;",
857     "",
858     "} "
859    ],
860    "| int search" : [
861     "(string in_txt) {",
862     "",
863     "\tvar s = new Gtk.SourceSearchSettings();",
864     "\ts.case_sensitive = _this.case_sensitive.el.active;",
865     "\ts.regex_enabled = _this.regex.el.active;\t",
866     "\ts.wrap_around = false;",
867     "\t",
868     "\tthis.searchcontext = new Gtk.SourceSearchContext(this.buffer.el,s);",
869     "\tthis.searchcontext.set_highlight(true);",
870     "\tvar txt = in_txt;",
871     "\t",
872     "\tif (_this.multiline.el.active) {",
873     "\t\ttxt = in_txt.replace(\"\\\\n\", \"\\n\");",
874     "\t}",
875     "\t",
876     "\ts.set_search_text(txt);",
877     "\tGtk.TextIter beg, st,en;",
878     "\t ",
879     "\tthis.buffer.el.get_start_iter(out beg);",
880     "\tthis.searchcontext.forward(beg, out st, out en);",
881     "\tthis.last_search_end = 0;",
882     "\t",
883     "\treturn this.searchcontext.get_occurrences_count();",
884     "",
885     " ",
886     "   ",
887     "",
888     "}",
889     ""
890    ],
891    "| void backSearch" : [
892     "(bool change_focus) {",
893     "",
894     "\tif (this.searchcontext == null) {",
895     "\t\treturn;",
896     "\t} ",
897     "\t",
898     "\tGtk.TextIter beg, st,en;",
899     "\tbool has_wrapped_around;",
900     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end -1 );",
901     "\t",
902     "\tif (!this.searchcontext.backward2(beg, out st, out en, out has_wrapped_around)) {",
903     "\t",
904     "\t\tthis.last_search_end = 0;",
905     "\t} else {",
906     "\t\tthis.last_search_end = en.get_offset();",
907     "\t\tif (change_focus) {",
908     "\t\t\tthis.view.el.grab_focus();",
909     "\t\t}",
910     "\t\tthis.buffer.el.place_cursor(st);",
911     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
912     "\t}",
913     " ",
914     "}",
915     ""
916    ],
917    "| void forwardSearch" : [
918     "(bool change_focus) {",
919     "",
920     "\tif (this.searchcontext == null) {",
921     "\t\treturn;",
922     "\t} ",
923     "\t",
924     "\tGtk.TextIter beg, st,en;",
925     "\t bool has_wrapped_around;",
926     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end);",
927     "\tif (!this.searchcontext.forward2(beg, out st, out en, out has_wrapped_around)) {",
928     "\t",
929     "\t\tthis.last_search_end = 0; // not sure if this should happen",
930     "\t} else {",
931     "\t\tif (has_wrapped_around) {",
932     "\t\t\treturn;",
933     "\t\t}",
934     "\t",
935     "\t\tthis.last_search_end = en.get_offset();",
936     "\t\tif (change_focus) {",
937     "\t\t\tthis.view.el.grab_focus();",
938     "\t\t}",
939     "\t\tthis.buffer.el.place_cursor(st);",
940     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
941     "\t}",
942     " ",
943     "}",
944     ""
945    ],
946    "| void reset" : [
947     "() {",
948     "\t this.file = null;    ",
949     "     ",
950     "    this.node = null;",
951     "    this.prop = null;",
952     "\tthis.searchcontext = null;",
953     "  ",
954     "}",
955     ""
956    ],
957    "| void scroll_to_line" : [
958     "(int line) {",
959     "",
960     "\tGLib.Timeout.add(500, () => {",
961     "   ",
962     "\t\tvar buf = this.view.el.get_buffer();",
963     "",
964     "\t\tvar sbuf = (Gtk.SourceBuffer) buf;",
965     "",
966     "",
967     "\t\tGtk.TextIter iter;   ",
968     "\t\tsbuf.get_iter_at_line(out iter,  line);",
969     "\t\tthis.view.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);",
970     "\t\treturn false;",
971     "\t});   ",
972     "}",
973     ""
974    ],
975    "| void show" : [
976     "(JsRender.JsRender file, JsRender.Node? node, JsRender.NodeProp? prop)",
977     "{",
978     "    this.reset();",
979     "    this.file = file;    ",
980     "    ",
981     "    if (file.xtype != \"PlainFile\") {",
982     "    \tthis.prop = prop;",
983     "        this.node = node;",
984     "",
985     "        // find the text for the node..",
986     "        this.view.load( prop.val );",
987     "        this.close_btn.el.show();       ",
988     "    ",
989     "    } else {",
990     "        this.view.load(        file.toSource() );",
991     "        this.close_btn.el.hide();",
992     "    }",
993     " ",
994     "}"
995    ]
996   }
997  ],
998  "modOrder" : "",
999  "name" : "Editor",
1000  "parent" : "",
1001  "path" : "/home/alan/gitlive/roobuilder/src/Builder4/Editor.bjs",
1002  "permname" : "",
1003  "title" : ""
1004 }