Fix #7367 - only show add child on addable objects
[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\tvar res = _this.search(this.el.text);",
602          "\t\t _this.search_results.updateResults();",
603          "",
604          "\t\tGLib.Timeout.add_seconds(2,() => {",
605          "\t\t\t _this.search_results.updateResults();",
606          "\t\t\t return false;",
607          "\t\t });",
608          "\t ",
609          "\t\t",
610          "\t    return true;",
611          "",
612          "\t}    ",
613          "   // print(event.key.keyval)",
614          "   ",
615          "    return false;",
616          "",
617          "} "
618         ]
619        },
620        "string placeholder_text" : "Press enter to search",
621        "xtype" : "SearchEntry",
622        "| void forwardSearch" : [
623         "(bool change_focus) {",
624         "",
625         "",
626         "\t_this.forwardSearch(change_focus);",
627         "",
628         "/*",
629         "",
630         "\tswitch(_this.windowstate.state) {",
631         "\t\tcase WindowState.State.CODEONLY:",
632         "\t\t//case WindowState.State.CODE:",
633         "\t\t\t// search the code being edited..",
634         "\t\t\t_this.windowstate.code_editor_tab.forwardSearch(change_focus);",
635         "\t\t\t ",
636         "\t\t\tbreak;",
637         "\t\tcase WindowState.State.PREVIEW:",
638         "\t\t\tif (_this.windowstate.file.xtype == \"Gtk\") {",
639         "\t\t\t\t_this.windowstate.window_gladeview.forwardSearch(change_focus);",
640         "\t\t\t} else { ",
641         "\t\t\t\t _this.windowstate.window_rooview.forwardSearch(change_focus);",
642         "\t\t\t}",
643         "\t\t",
644         "\t\t\tbreak;",
645         "\t}",
646         "\t*/",
647         "\t",
648         "}",
649         ""
650        ]
651       },
652       {
653        "$ xns" : "Gtk",
654        "* pack" : "add",
655        "items" : [
656         {
657          "$ xns" : "Gtk",
658          "* pack" : "add",
659          "bool always_show_image" : true,
660          "bool visible" : false,
661          "id" : "search_results",
662          "listeners" : {
663           "button_press_event" : [
664            "() => {",
665            "/*",
666            "    if (this.popup == null) {",
667            "        this.popup = new Xcls_ValaCompileErrors();",
668            "        this.popup.window = _this;",
669            "    }",
670            "   ",
671            "    ",
672            "    this.popup.show(this.notices, this.el);",
673            "    */",
674            "    return true;",
675            "}"
676           ]
677          },
678          "xtype" : "ImageMenuItem",
679          "| void updateResults" : [
680           "() {",
681           "\tthis.el.visible = true;",
682           "\t",
683           "\tvar res = _this.searchcontext.get_occurrences_count();",
684           "\tif (res < 0) {",
685           "\t\t_this.search_results.el.label = \"??? Matches\";\t\t",
686           "\t\treturn;",
687           "\t}",
688           "",
689           "\t_this.nextBtn.el.sensitive = false;",
690           "\t_this.backBtn.el.sensitive = false;\t",
691           "",
692           "\tif (res > 0) {",
693           "\t\t_this.search_results.el.label = \"%d Matches\".printf(res);",
694           "\t\t_this.nextBtn.el.sensitive = true;",
695           "\t\t_this.backBtn.el.sensitive = true;",
696           "\t\treturn;",
697           "\t} ",
698           "\t_this.search_results.el.label = \"No Matches\";",
699           "\t",
700           "}"
701          ]
702         }
703        ],
704        "xtype" : "MenuBar"
705       },
706       {
707        "$ xns" : "Gtk",
708        "bool always_show_image" : true,
709        "bool sensitive" : false,
710        "id" : "nextBtn",
711        "items" : [
712         {
713          "$ xns" : "Gtk",
714          "* prop" : "image",
715          "string icon_name" : "go-down",
716          "xtype" : "Image"
717         }
718        ],
719        "listeners" : {
720         "button_press_event" : [
721          "(event) => {",
722          "",
723          "\t_this.forwardSearch(true);",
724          "\t",
725          "\treturn true;",
726          "}",
727          ""
728         ]
729        },
730        "string label" : "Next",
731        "xtype" : "Button"
732       },
733       {
734        "$ xns" : "Gtk",
735        "bool always_show_image" : true,
736        "bool sensitive" : false,
737        "id" : "backBtn",
738        "items" : [
739         {
740          "$ xns" : "Gtk",
741          "* prop" : "image",
742          "string icon_name" : "go-up",
743          "xtype" : "Image"
744         }
745        ],
746        "listeners" : {
747         "button_press_event" : [
748          "(event) => {",
749          "",
750          "\t_this.backSearch(true);",
751          "\t",
752          "\treturn true;",
753          "}",
754          ""
755         ]
756        },
757        "string label" : "Previous",
758        "xtype" : "Button"
759       },
760       {
761        "$ xns" : "Gtk",
762        "bool always_show_image" : true,
763        "items" : [
764         {
765          "$ xns" : "Gtk",
766          "* prop" : "image",
767          "string icon_name" : "emblem-system",
768          "xtype" : "Image"
769         },
770         {
771          "$ xns" : "Gtk",
772          "* prop" : "popup",
773          "id" : "search_settings",
774          "items" : [
775           {
776            "$ xns" : "Gtk",
777            "* init" : [
778             "{",
779             "\tthis.el.show();",
780             "}",
781             ""
782            ],
783            "id" : "case_sensitive",
784            "string label" : "Case Sensitive",
785            "xtype" : "CheckMenuItem"
786           },
787           {
788            "$ xns" : "Gtk",
789            "* init" : [
790             "{",
791             "\tthis.el.show();",
792             "}",
793             ""
794            ],
795            "id" : "regex",
796            "string label" : "Regex",
797            "xtype" : "CheckMenuItem"
798           },
799           {
800            "$ xns" : "Gtk",
801            "* init" : [
802             "{",
803             "\tthis.el.show();",
804             "}",
805             ""
806            ],
807            "id" : "multiline",
808            "string label" : "Multi-line (add \\n)",
809            "xtype" : "CheckMenuItem"
810           }
811          ],
812          "xtype" : "Menu"
813         }
814        ],
815        "string label" : "Settings",
816        "xtype" : "MenuButton"
817       }
818      ],
819      "xtype" : "Box"
820     }
821    ],
822    "xtype" : "Box",
823    "| bool saveContents" : [
824     "  ()  {",
825     "    ",
826     "    ",
827     "    if (_this.file == null) {",
828     "        return true;",
829     "    }",
830     "    ",
831     "     ",
832     "     ",
833     "     var str = _this.buffer.toString();",
834     "     ",
835     "     _this.buffer.checkSyntax();",
836     "     ",
837     "     ",
838     "     ",
839     "     // LeftPanel.model.changed(  str , false);",
840     "     _this.dirty = false;",
841     "     _this.save_button.el.sensitive = false;",
842     "     ",
843     "    // find the text for the node..",
844     "    if (_this.file.xtype != \"PlainFile\") {",
845     "       // in theory these properties have to exist!?!",
846     "    \tthis.prop.val = str;",
847     "        this.window.windowstate.left_props.reload();",
848     "    } else {",
849     "        _this.file.setSource(  str );",
850     "     }",
851     "    ",
852     "    // call the signal..",
853     "    this.save();",
854     "    ",
855     "    return true;",
856     "",
857     "} "
858    ],
859    "| int search" : [
860     "(string in_txt) {",
861     "",
862     "\tvar s = new Gtk.SourceSearchSettings();",
863     "\ts.case_sensitive = _this.case_sensitive.el.active;",
864     "\ts.regex_enabled = _this.regex.el.active;\t",
865     "\ts.wrap_around = false;",
866     "\t",
867     "\tthis.searchcontext = new Gtk.SourceSearchContext(this.buffer.el,s);",
868     "\tthis.searchcontext.set_highlight(true);",
869     "\tvar txt = in_txt;",
870     "\t",
871     "\tif (_this.multiline.el.active) {",
872     "\t\ttxt = in_txt.replace(\"\\\\n\", \"\\n\");",
873     "\t}",
874     "\t",
875     "\ts.set_search_text(txt);",
876     "\tGtk.TextIter beg, st,en;",
877     "\t ",
878     "\tthis.buffer.el.get_start_iter(out beg);",
879     "\tthis.searchcontext.forward(beg, out st, out en);",
880     "\tthis.last_search_end = 0;",
881     "\t",
882     "\treturn this.searchcontext.get_occurrences_count();",
883     "",
884     " ",
885     "   ",
886     "",
887     "}",
888     ""
889    ],
890    "| void backSearch" : [
891     "(bool change_focus) {",
892     "",
893     "\tif (this.searchcontext == null) {",
894     "\t\treturn;",
895     "\t} ",
896     "\t",
897     "\tGtk.TextIter beg, st,en;",
898     "\tbool has_wrapped_around;",
899     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end -1 );",
900     "\t",
901     "\tif (!this.searchcontext.backward2(beg, out st, out en, out has_wrapped_around)) {",
902     "\t",
903     "\t\tthis.last_search_end = 0;",
904     "\t} else {",
905     "\t\tthis.last_search_end = en.get_offset();",
906     "\t\tif (change_focus) {",
907     "\t\t\tthis.view.el.grab_focus();",
908     "\t\t}",
909     "\t\tthis.buffer.el.place_cursor(st);",
910     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
911     "\t}",
912     " ",
913     "}",
914     ""
915    ],
916    "| void forwardSearch" : [
917     "(bool change_focus) {",
918     "",
919     "\tif (this.searchcontext == null) {",
920     "\t\treturn;",
921     "\t} ",
922     "\t",
923     "\tGtk.TextIter beg, st,en;",
924     "\t bool has_wrapped_around;",
925     "\tthis.buffer.el.get_iter_at_offset(out beg, this.last_search_end);",
926     "\tif (!this.searchcontext.forward2(beg, out st, out en, out has_wrapped_around)) {",
927     "\t",
928     "\t\tthis.last_search_end = 0; // not sure if this should happen",
929     "\t} else {",
930     "\t\tif (has_wrapped_around) {",
931     "\t\t\treturn;",
932     "\t\t}",
933     "\t",
934     "\t\tthis.last_search_end = en.get_offset();",
935     "\t\tif (change_focus) {",
936     "\t\t\tthis.view.el.grab_focus();",
937     "\t\t}",
938     "\t\tthis.buffer.el.place_cursor(st);",
939     "\t\tthis.view.el.scroll_to_iter(st,  0.1f, true, 0.0f, 0.5f);",
940     "\t}",
941     " ",
942     "}",
943     ""
944    ],
945    "| void reset" : [
946     "() {",
947     "\t this.file = null;    ",
948     "     ",
949     "    this.node = null;",
950     "    this.prop = null;",
951     "\tthis.searchcontext = null;",
952     "  ",
953     "}",
954     ""
955    ],
956    "| void scroll_to_line" : [
957     "(int line) {",
958     "",
959     "\tGLib.Timeout.add(500, () => {",
960     "   ",
961     "\t\tvar buf = this.view.el.get_buffer();",
962     "",
963     "\t\tvar sbuf = (Gtk.SourceBuffer) buf;",
964     "",
965     "",
966     "\t\tGtk.TextIter iter;   ",
967     "\t\tsbuf.get_iter_at_line(out iter,  line);",
968     "\t\tthis.view.el.scroll_to_iter(iter,  0.1f, true, 0.0f, 0.5f);",
969     "\t\treturn false;",
970     "\t});   ",
971     "}",
972     ""
973    ],
974    "| void show" : [
975     "(JsRender.JsRender file, JsRender.Node? node, JsRender.NodeProp? prop)",
976     "{",
977     "    this.reset();",
978     "    this.file = file;    ",
979     "    ",
980     "    if (file.xtype != \"PlainFile\") {",
981     "    \tthis.prop = prop;",
982     "        this.node = node;",
983     "",
984     "        // find the text for the node..",
985     "        this.view.load( prop.val );",
986     "        this.close_btn.el.show();       ",
987     "    ",
988     "    } else {",
989     "        this.view.load(        file.toSource() );",
990     "        this.close_btn.el.hide();",
991     "    }",
992     " ",
993     "}"
994    ]
995   }
996  ],
997  "modOrder" : "",
998  "name" : "Editor",
999  "parent" : "",
1000  "path" : "/home/alan/gitlive/roobuilder/src/Builder4/Editor.bjs",
1001  "permname" : "",
1002  "title" : ""
1003 }