683a9884f80baa2ab49c9892f1b04e32ac27941b
[roobuilder] / src / Builder4 / WindowLeftProps.bjs
1 {
2  "build_module" : "builder",
3  "gen_extended" : false,
4  "items" : [
5   {
6    "# Gee.ArrayList<Gtk.Widget>? error_widgets" : "null",
7    "# JsRender.JsRender file" : "",
8    "# JsRender.Node node" : "",
9    "# Xcls_MainWindow main_window" : "null",
10    "# bool allow_edit" : false,
11    "$ homogeneous" : "false   ",
12    "$ xns" : "Gtk",
13    "@ bool stop_editor" : "()",
14    "@ void changed" : "()",
15    "@ void show_add_props" : "(string type)",
16    "@ void show_editor" : "(JsRender.JsRender file, JsRender.Node node, JsRender.NodeProp prop)",
17    "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
18    "bool hexpand" : true,
19    "bool loading" : false,
20    "bool vexpand" : true,
21    "id" : "LeftProps",
22    "int last_error_counter" : "-1",
23    "items" : [
24     {
25      "$ xns" : "Gtk",
26      "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
27      "bool hexpand" : true,
28      "items" : [
29       {
30        "$ xns" : "Gtk",
31        "int margin_end" : 5,
32        "int margin_start" : 5,
33        "string label" : "Add:",
34        "xtype" : "Label"
35       },
36       {
37        "$ tooltip_text" : "\"Add Property\"",
38        "$ xns" : "Gtk",
39        "bool always_show_image" : true,
40        "bool hexpand" : true,
41        "listeners" : {
42         "clicked" : [
43          "  ( ) => {",
44          "    ",
45          "     _this.main_window.windowstate.showProps(",
46          "     \t_this.view.el, ",
47          " \t\tJsRender.NodePropType.PROP",
48          "\t);",
49          "  ",
50          "}"
51         ]
52        },
53        "string icon_name" : "format-justify-left",
54        "string label" : "Property",
55        "xtype" : "Button"
56       },
57       {
58        "$ tooltip_text" : "\"Add Event Code\"",
59        "$ xns" : "Gtk",
60        "bool always_show_image" : true,
61        "bool hexpand" : true,
62        "listeners" : {
63         "clicked" : [
64          "  ( ) => {",
65          "    ",
66          " ",
67          "   _this.main_window.windowstate.showProps(",
68          "   \t\t_this.view.el, ",
69          "   \t\tJsRender.NodePropType.LISTENER",
70          "\t);",
71          "",
72          " ",
73          "}"
74         ]
75        },
76        "string icon_name" : "appointment-new",
77        "string label" : "Event",
78        "xtype" : "Button"
79       },
80       {
81        "$ xns" : "Gtk",
82        "items" : [
83         {
84          "$ xns" : "Gtk",
85          "* prop" : "popover",
86          "id" : "addpop",
87          "items" : [
88           {
89            "$ xns" : "Gtk",
90            "* prop" : "child",
91            "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
92            "int spacing" : 0,
93            "items" : [
94             {
95              "$ xns" : "Gtk",
96              "bool has_frame" : false,
97              "items" : [
98               {
99                "$ xns" : "Gtk",
100                "* prop" : "child",
101                "Gtk.Align halign" : "Gtk.Align.START",
102                "string label" : "id: _this.{ID} (Vala)",
103                "string tooltip_text" : "Using _this.{ID} will map to this element",
104                "xtype" : "Label"
105               }
106              ],
107              "listeners" : {
108               "clicked" : [
109                " ()  => {",
110                " \t_this.addpop.el.hide();",
111                " \t// is this userdef or special??",
112                " \tvar add = new JsRender.NodeProp.prop(\"id\");",
113                " \tif (_this.node.has_prop_key(add)) {",
114                "\t \treturn;",
115                " \t}",
116                " \t",
117                " \t_this.node.add_prop( add );",
118                " \t",
119                " \t_this.view.editProp( add );",
120                " \t",
121                "}"
122               ]
123              },
124              "xtype" : "Button"
125             },
126             {
127              "$ xns" : "Gtk",
128              "bool has_frame" : false,
129              "items" : [
130               {
131                "$ xns" : "Gtk",
132                "* prop" : "child",
133                "Gtk.Align halign" : "Gtk.Align.START",
134                "string label" : "pack: Pack method (Vala)",
135                "string tooltip_text" : "how to pack this element onto parent, (method, 2nd arg, 3rd arg) .. the 1st argument is filled by the element",
136                "xtype" : "Label"
137               }
138              ],
139              "listeners" : {
140               "clicked" : [
141                "  ( ) => {",
142                " ",
143                "",
144                "  \t_this.addpop.el.hide();",
145                " \t// is this userdef or special??",
146                " \tvar add = new JsRender.NodeProp.special(\"pack\", \"add\");",
147                " \tif (_this.node.has_prop_key(add)) {",
148                "\t \treturn;",
149                " \t}",
150                " \t",
151                " \t_this.node.add_prop( add );",
152                " \t",
153                " \t_this.view.editProp( add );",
154                " \t",
155                "",
156                "}"
157               ]
158              },
159              "xtype" : "Button"
160             },
161             {
162              "$ xns" : "Gtk",
163              "bool has_frame" : false,
164              "items" : [
165               {
166                "$ xns" : "Gtk",
167                "* prop" : "child",
168                "Gtk.Align halign" : "Gtk.Align.START",
169                "string label" : "ctor: Alterative to default contructor (Vala)",
170                "string tooltip_text" : [
171                 "eg. ",
172                 "",
173                 "new Clutter.Image.from_file(.....)"
174                ],
175                "xtype" : "Label"
176               }
177              ],
178              "listeners" : {
179               "clicked" : [
180                "  ( ) => {",
181                "   ",
182                "  \t_this.addpop.el.hide();",
183                " \t// is this userdef or special??",
184                " \tvar add = new JsRender.NodeProp.special(\"ctor\");",
185                " \tif (_this.node.has_prop_key(add)) {",
186                "\t \treturn;",
187                " \t}",
188                " \t",
189                " \t_this.node.add_prop( add );",
190                " \t",
191                " \t_this.view.editProp( add );",
192                " \t",
193                "}"
194               ]
195              },
196              "xtype" : "Button"
197             },
198             {
199              "$ xns" : "Gtk",
200              "bool has_frame" : false,
201              "items" : [
202               {
203                "$ xns" : "Gtk",
204                "* prop" : "child",
205                "Gtk.Align halign" : "Gtk.Align.START",
206                "string label" : "init: initialziation code (vala)",
207                "string tooltip_text" : "This code is called after the ctor",
208                "xtype" : "Label"
209               }
210              ],
211              "listeners" : {
212               "clicked" : [
213                "  ( ) => {",
214                "    ",
215                "  \t_this.addpop.el.hide();",
216                " \t// is this userdef or special??",
217                " \tvar add =  new JsRender.NodeProp.special(\"init\",\"{\\n\\n}\\n\" ) ;",
218                " \tif (_this.node.has_prop_key(add)) {",
219                "\t \treturn;",
220                " \t}",
221                " \t",
222                " \t_this.node.add_prop( add );",
223                " \t",
224                " \t_this.view.editProp( add );",
225                "}"
226               ]
227              },
228              "xtype" : "Button"
229             },
230             {
231              "$ xns" : "Gtk",
232              "bool has_frame" : false,
233              "items" : [
234               {
235                "$ xns" : "Gtk",
236                "* prop" : "child",
237                "Gtk.Align halign" : "Gtk.Align.START",
238                "string label" : "cms-id: (Roo JS/Pman library)",
239                "string tooltip_text" : [
240                 "set the cms-id for this element, when converted to javascript, the html value will be wrapped with Pman.Cms.content({cms-id},{original-html})",
241                 ""
242                ],
243                "xtype" : "Label"
244               }
245              ],
246              "listeners" : {
247               "clicked" : [
248                " ()  => {",
249                "    \t_this.addpop.el.hide();",
250                " ",
251                " \t// is this userdef or special??",
252                " \tvar add =   new JsRender.NodeProp.prop(\"cms-id\",\"string\", \"\" ) ;",
253                " \tif (_this.node.has_prop_key(add)) {",
254                "\t \treturn;",
255                " \t}",
256                " \t",
257                " \t_this.node.add_prop( add );",
258                " \t",
259                " \t_this.view.editProp( add );",
260                "    ",
261                "}"
262               ]
263              },
264              "xtype" : "Button"
265             },
266             {
267              "$ Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
268              "$ xns" : "Gtk",
269              "xtype" : "Separator"
270             },
271             {
272              "$ xns" : "Gtk",
273              "bool has_frame" : false,
274              "items" : [
275               {
276                "$ xns" : "Gtk",
277                "* prop" : "child",
278                "Gtk.Align halign" : "Gtk.Align.START",
279                "string label" : "String",
280                "string tooltip_text" : "Add a user defined string property",
281                "xtype" : "Label"
282               }
283              ],
284              "listeners" : {
285               "clicked" : [
286                "(self) => {",
287                "  \t_this.addpop.el.hide();",
288                "\t_this.view.popover.show(",
289                "\t\t_this.view.el, ",
290                "\t\t_this.node, ",
291                "\t\t new JsRender.NodeProp.user(\"\", \"string\", \"\") ,",
292                "\t\t-1,  ",
293                "\t\ttrue",
294                "\t);",
295                " ",
296                "}"
297               ]
298              },
299              "xtype" : "Button"
300             },
301             {
302              "$ xns" : "Gtk",
303              "bool has_frame" : false,
304              "items" : [
305               {
306                "$ xns" : "Gtk",
307                "* prop" : "child",
308                "Gtk.Align halign" : "Gtk.Align.START",
309                "string label" : "Number",
310                "string tooltip_text" : "Add a user defined number property",
311                "xtype" : "Label"
312               }
313              ],
314              "listeners" : {
315               "clicked" : [
316                "  ( ) =>{",
317                " ",
318                "       \t_this.addpop.el.hide();",
319                "       _this.view.popover.show(",
320                "\t\t_this.view.el, ",
321                "\t\t_this.node, ",
322                "\t\t new JsRender.NodeProp.user(\"\", \"int\", \"0\") ,",
323                "\t\t-1,  ",
324                "\t\ttrue",
325                "\t);",
326                " ",
327                "}"
328               ]
329              },
330              "xtype" : "Button"
331             },
332             {
333              "$ xns" : "Gtk",
334              "bool has_frame" : false,
335              "items" : [
336               {
337                "$ xns" : "Gtk",
338                "* prop" : "child",
339                "Gtk.Align halign" : "Gtk.Align.START",
340                "string label" : "Boolean",
341                "string tooltip_text" : "Add a user defined boolean property",
342                "xtype" : "Label"
343               }
344              ],
345              "listeners" : {
346               "clicked" : [
347                "  ( ) =>{",
348                "  ",
349                "  \t_this.addpop.el.hide();",
350                "   _this.view.popover.show(",
351                "\t\t_this.view.el, ",
352                "\t\t_this.node, ",
353                "\t\t new JsRender.NodeProp.user(\"\", \"bool\", \"true\") ,",
354                "\t\t-1,  ",
355                "\t\ttrue",
356                "\t); ",
357                " ",
358                "}"
359               ]
360              },
361              "xtype" : "Button"
362             },
363             {
364              "$ Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
365              "$ xns" : "Gtk",
366              "xtype" : "Separator"
367             },
368             {
369              "$ xns" : "Gtk",
370              "bool has_frame" : false,
371              "items" : [
372               {
373                "$ xns" : "Gtk",
374                "* prop" : "child",
375                "Gtk.Align halign" : "Gtk.Align.START",
376                "string label" : "Javascript Function",
377                "string tooltip_text" : "Add a javascript  function",
378                "xtype" : "Label"
379               }
380              ],
381              "listeners" : {
382               "clicked" : [
383                "  ( ) =>{",
384                "  \t_this.addpop.el.hide();",
385                "   _this.view.popover.show(",
386                "\t\t_this.view.el, ",
387                "\t\t_this.node, ",
388                "\t\t new JsRender.NodeProp.jsmethod(\"\") ,",
389                "\t\t-1,  ",
390                "\t\ttrue",
391                "\t);",
392                "",
393                " ",
394                "}"
395               ]
396              },
397              "xtype" : "Button"
398             },
399             {
400              "$ xns" : "Gtk",
401              "bool has_frame" : false,
402              "items" : [
403               {
404                "$ xns" : "Gtk",
405                "* prop" : "child",
406                "Gtk.Align halign" : "Gtk.Align.START",
407                "string label" : "Vala Method",
408                "string tooltip_text" : "Add a user defined method to a object",
409                "xtype" : "Label"
410               }
411              ],
412              "listeners" : {
413               "clicked" : [
414                "  ( ) =>{",
415                "  \t_this.addpop.el.hide();",
416                "    _this.view.popover.show(",
417                "\t\t_this.view.el, ",
418                "\t\t_this.node, ",
419                "\t\t new JsRender.NodeProp.valamethod(\"\") ,",
420                "\t\t-1,  ",
421                "\t\ttrue",
422                "\t); ",
423                "}"
424               ]
425              },
426              "xtype" : "Button"
427             },
428             {
429              "$ xns" : "Gtk",
430              "bool has_frame" : false,
431              "items" : [
432               {
433                "$ xns" : "Gtk",
434                "* prop" : "child",
435                "Gtk.Align halign" : "Gtk.Align.START",
436                "string label" : "Vala Signal",
437                "string tooltip_text" : "Add a user defined signal to a object",
438                "xtype" : "Label"
439               }
440              ],
441              "listeners" : {
442               "clicked" : [
443                "  ( ) =>{",
444                " \t_this.addpop.el.hide(); ",
445                "  _this.view.popover.show(",
446                "\t\t_this.view.el, ",
447                "\t\t_this.node, ",
448                "\t\t new JsRender.NodeProp.sig(\"\" ) ,",
449                "\t\t-1,  ",
450                "\t\ttrue",
451                "\t);    ",
452                "}"
453               ]
454              },
455              "xtype" : "Button"
456             },
457             {
458              "$ Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
459              "$ xns" : "Gtk",
460              "xtype" : "Separator"
461             },
462             {
463              "$ xns" : "Gtk",
464              "bool has_frame" : false,
465              "items" : [
466               {
467                "$ xns" : "Gtk",
468                "* prop" : "child",
469                "Gtk.Align halign" : "Gtk.Align.START",
470                "string label" : "Flexy - If",
471                "string tooltip_text" : "Add a flexy if (for HTML templates)",
472                "xtype" : "Label"
473               }
474              ],
475              "listeners" : {
476               "clicked" : [
477                "  ( ) =>{",
478                "  \t_this.addpop.el.hide();",
479                " \t_this.view.popover.show(",
480                "\t\t_this.view.el, ",
481                "\t\t_this.node, ",
482                "\t\t new JsRender.NodeProp.prop(\"flexy:if\", \"string\", \"value_or_condition\") ,",
483                "\t\t-1,  ",
484                "\t\ttrue",
485                "\t);",
486                "",
487                "",
488                "}"
489               ]
490              },
491              "xtype" : "Button"
492             },
493             {
494              "$ xns" : "Gtk",
495              "bool has_frame" : false,
496              "items" : [
497               {
498                "$ xns" : "Gtk",
499                "* prop" : "child",
500                "Gtk.Align halign" : "Gtk.Align.START",
501                "string label" : "Flexy - Include",
502                "string tooltip_text" : "Add a flexy include (for HTML templates)",
503                "xtype" : "Label"
504               }
505              ],
506              "listeners" : {
507               "clicked" : [
508                "  ( ) =>{",
509                "  \t_this.addpop.el.hide();",
510                " \t_this.view.popover.show(",
511                "\t\t_this.view.el, ",
512                "\t\t_this.node, ",
513                "\t\t new JsRender.NodeProp.prop(\"flexy:include\", \"string\", \"name_of_file.html\") ,",
514                "\t\t-1,  ",
515                "\t\ttrue",
516                "\t);",
517                "",
518                "  ",
519                "}"
520               ]
521              },
522              "xtype" : "Button"
523             },
524             {
525              "$ xns" : "Gtk",
526              "bool has_frame" : false,
527              "items" : [
528               {
529                "$ xns" : "Gtk",
530                "* prop" : "child",
531                "Gtk.Align halign" : "Gtk.Align.START",
532                "string label" : "Flexy - Foreach",
533                "string tooltip_text" : "Add a flexy foreach (for HTML templates)",
534                "xtype" : "Label"
535               }
536              ],
537              "listeners" : {
538               "clicked" : [
539                "  ( ) =>{",
540                "  \t_this.addpop.el.hide();",
541                " \t_this.view.popover.show(",
542                "\t\t_this.view.el, ",
543                "\t\t_this.node, ",
544                "\t\t new JsRender.NodeProp.prop(\"flexy:if\", \"string\", \"value_or_condition\") ,",
545                "\t\t-1,  ",
546                "\t\ttrue",
547                "\t);",
548                "  ",
549                "}"
550               ]
551              },
552              "tooltip_markup" : "Add a flexy include (for HTML templates)",
553              "xtype" : "Button"
554             }
555            ],
556            "xtype" : "Box"
557           }
558          ],
559          "xtype" : "Popover"
560         }
561        ],
562        "string label" : "Other",
563        "xtype" : "MenuButton"
564       }
565      ],
566      "xtype" : "Box"
567     },
568     {
569      "# bool editing" : false,
570      "$ shadow_type" : "Gtk.ShadowType.IN",
571      "$ xns" : "Gtk",
572      "* init" : [
573       "  {",
574       "  ",
575       "   this.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);",
576       "}",
577       ""
578      ],
579      "bool hexpand" : true,
580      "bool vexpand" : true,
581      "id" : "EditProps",
582      "items" : [
583       {
584        "# Xcls_PopoverProperty popover" : "null",
585        "$ enable_tree_lines" : true,
586        "$ headers_visible" : true,
587        "$ xns" : "Gtk",
588        "* pack" : "set_child",
589        "bool hexpand" : true,
590        "bool show_row_separators" : true,
591        "bool single_click_activate" : false,
592        "bool vexpand" : true,
593        "id" : "view",
594        "items" : [
595         {
596          "$ xns" : "Gtk",
597          "* pack" : false,
598          "id" : "deletemenu",
599          "items" : [
600           {
601            "$ xns" : "Gtk",
602            "* prop" : "child",
603            "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
604            "int spacing" : 0,
605            "items" : [
606             {
607              "$ xns" : "Gtk",
608              "bool has_frame" : false,
609              "items" : [
610               {
611                "$ xns" : "Gtk",
612                "* prop" : "child",
613                "Gtk.Align halign" : "Gtk.Align.START",
614                "string label" : "Delete Property / Method",
615                "xtype" : "Label"
616               }
617              ],
618              "listeners" : {
619               "clicked" : [
620                "( ) => {",
621                "\t",
622                "",
623                "\tvar n = (JsRender.NodeProp) _this.selmodel.el.selected_item;",
624                "",
625                "\t_this.deletemenu.el.hide();",
626                "\t_this.node.remove_prop(n);",
627                "}",
628                ""
629               ]
630              },
631              "string label" : "Delete",
632              "xtype" : "Button"
633             }
634            ],
635            "xtype" : "Box"
636           }
637          ],
638          "xtype" : "Popover"
639         },
640         {
641          "$ xns" : "Gtk",
642          "listeners" : {
643           "pressed" : [
644            "(n_press, in_x, in_y) => {",
645            "",
646            "\tGLib.debug(\"Prssed %d\", (int)  this.el.get_current_button());",
647            "\t",
648            "\tvar col = _this.view.getColAt(in_x, in_y);",
649            "\tif (col != 0) {",
650            "\t\treturn;",
651            "\t}",
652            "\tstring pos;",
653            "\tvar row = _this.view.getRowAt(in_x, in_y, out pos);",
654            "\t",
655            "\tif (row < 0) {",
656            "\t\treturn;",
657            "",
658            "\t}",
659            "\tGLib.debug(\"hit row %d\", row);",
660            "\tvar prop = _this.selmodel.getPropAt(row);",
661            "\t_this.selmodel.selectProp(prop);",
662            "",
663            "\t//var point_at = _this.view.getWidgetAtRow(row);",
664            "\t",
665            "\t    \t// need to shift down, as ev.y does not inclucde header apparently..",
666            "     \t// or popover might be trying to do a central?",
667            "//\t _this.view.editPropertyDetails(prop, (int) in_y + 12); ",
668            "  \t _this.stop_editor();",
669            "     _this.view.popover.show(",
670            " \t\t\t_this.view.el, ",
671            " \t\t\t_this.node, prop,  ",
672            "\t\t (int)in_y);",
673            "    ",
674            "    ",
675            "      ",
676            "}",
677            ""
678           ]
679          },
680          "xtype" : "GestureClick"
681         },
682         {
683          "$ xns" : "Gtk",
684          "listeners" : {
685           "pressed" : [
686            "(n_press, in_x, in_y) => {",
687            "",
688            "\t",
689            "\t ",
690            "\tstring pos;",
691            "\tvar row = _this.view.getRowAt(in_x, in_y, out pos);",
692            "\t",
693            "\tif (row < 0) {",
694            "\t\treturn;",
695            "",
696            "\t}",
697            "\t",
698            "\t_this.stop_editor();",
699            "\tGLib.debug(\"hit row %d\", row);",
700            "\tvar prop = _this.selmodel.getPropAt(row);",
701            "\t_this.selmodel.selectProp(prop);",
702            "\t",
703            "\t",
704            "\t",
705            "\tGLib.debug(\"Prssed %d\", (int)  this.el.get_current_button());",
706            "\t//_this.deletemenu.el.set_parent(_this.view.el);",
707            "\tif (_this.deletemenu.el.parent == null) {",
708            "\t\t_this.deletemenu.el.set_parent(_this.main_window.el);",
709            "\t}",
710            "\t",
711            "\t",
712            "\t ",
713            "\t_this.deletemenu.el.set_offset(",
714            "\t\t\t(int)in_x  - _this.view.el.get_width() ,",
715            "\t\t\t(int)in_y - _this.view.el.get_height()",
716            "\t\t);",
717            "\t_this.deletemenu.el.set_position(Gtk.PositionType.BOTTOM); ",
718            "    _this.deletemenu.el.popup();",
719            "      ",
720            "}",
721            ""
722           ]
723          },
724          "uint button" : 3,
725          "xtype" : "GestureClick"
726         },
727         {
728          "$ xns" : "Gtk",
729          "* prop" : "model",
730          "bool can_unselect" : true,
731          "id" : "selmodel",
732          "items" : [
733           {
734            "$ xns" : "GLib",
735            "* ctor" : "new GLib.ListStore(typeof(JsRender.NodeProp))",
736            "* prop" : "model",
737            "id" : "model",
738            "xtype" : "ListStore"
739           }
740          ],
741          "xtype" : "SingleSelection",
742          "| JsRender.NodeProp getPropAt" : [
743           "(uint row) {",
744           "",
745           "\treturn   (JsRender.NodeProp) this.el.get_item(row);",
746           "",
747           "\t ",
748           "}"
749          ],
750          "| int propToRow" : [
751           "(JsRender.NodeProp prop) {",
752           "\tfor (var i = 0 ; i < this.el.n_items; i++) {",
753           "\t\tvar r = (JsRender.NodeProp)this.el.get_item(i);",
754           "\t\tif (r.equals(prop)) {",
755           "\t\t\treturn i;",
756           "\t\t\t",
757           "\t\t}",
758           "\t}",
759           "\treturn -1;",
760           "\t ",
761           "}"
762          ],
763          "| void selectProp" : [
764           "(JsRender.NodeProp prop) {",
765           "\tfor (var i = 0 ; i < this.el.n_items; i++) {",
766           "\t\tvar r = (JsRender.NodeProp)this.el.get_item(i);",
767           "\t\tif (r.equals(prop)) {",
768           "\t\t\tthis.el.selected = i;",
769           "\t\t\treturn;",
770           "\t\t}",
771           "\t}",
772           "\t ",
773           "}"
774          ],
775          "| void startEditing" : [
776           "(JsRender.NodeProp prop) {",
777           "\t// should we call select?? - caller does int (from windowstate)",
778           "\t",
779           "}"
780          ]
781         },
782         {
783          "$ xns" : "Gtk",
784          "* pack" : "append_column",
785          "bool expand" : true,
786          "bool resizable" : true,
787          "id" : "keycol",
788          "items" : [
789           {
790            "$ xns" : "Gtk",
791            "* prop" : "factory",
792            "listeners" : {
793             "bind" : [
794              "(listitem) => {",
795              " var lb = (Gtk.Label) ((Gtk.ListItem)listitem).get_child();",
796              " var item = (JsRender.NodeProp) ((Gtk.ListItem)listitem).get_item();",
797              "",
798              " if (item == null) {",
799              " \treturn;",
800              "}",
801              "item.bind_property(\"to_display_name_prop\",",
802              "                    lb, \"label\",",
803              "                   GLib.BindingFlags.SYNC_CREATE);",
804              "item.bind_property(\"to_tooltip_name_prop\",",
805              "                    lb, \"tooltip_markup\",",
806              "                   GLib.BindingFlags.SYNC_CREATE);",
807              "// was item (1) in old layout",
808              " ",
809              "",
810              "}",
811              ""
812             ],
813             "setup" : [
814              "(listitem) => {",
815              "\tvar lbl = new Gtk.Label(\"\");",
816              " \t((Gtk.ListItem)listitem).set_child(lbl);",
817              " \tlbl.justify = Gtk.Justification.LEFT;",
818              " \tlbl.xalign = 1;",
819              " \tlbl.use_markup = true;",
820              "\tlbl.ellipsize = Pango.EllipsizeMode.START;",
821              " \t/*lbl.changed.connect(() => {",
822              "\t\t// notify and save the changed value...",
823              "\t \t//var prop = (JsRender.NodeProp) ((Gtk.ListItem)listitem.get_item());",
824              "         ",
825              "        //prop.val = lbl.text;",
826              "        //_this.updateIter(iter,prop);",
827              "        _this.changed();",
828              "\t});",
829              "\t*/",
830              "\t((Gtk.ListItem)listitem).activatable = true;",
831              "}",
832              ""
833             ]
834            },
835            "xtype" : "SignalListItemFactory"
836           }
837          ],
838          "title" : "Property",
839          "xtype" : "ColumnViewColumn"
840         },
841         {
842          "$ xns" : "Gtk",
843          "* pack" : "append_column",
844          "bool expand" : true,
845          "bool resizable" : true,
846          "id" : "valcol",
847          "items" : [
848           {
849            "$ xns" : "Gtk",
850            "* prop" : "factory",
851            "bool is_setting" : false,
852            "listeners" : {
853             "bind" : [
854              "(listitem) => {",
855              "\t this.is_setting = true;",
856              "",
857              "",
858              "\tvar bx = (Gtk.Box) ((Gtk.ListItem)listitem).get_child();",
859              " ",
860              "\t",
861              "\t",
862              "\t",
863              "\tvar elbl = (Gtk.EditableLabel)bx.get_first_child();",
864              "\tvar lbl = (Gtk.Label) elbl.get_next_sibling();",
865              "\tvar cb  = (Gtk.DropDown) lbl.get_next_sibling();",
866              "\t// decide if it's a combo or editable text..",
867              "\tvar model = (Gtk.StringList) cb.model;",
868              " ",
869              "\telbl.hide();",
870              "\tlbl.hide();",
871              "\tcb.hide();",
872              "\t",
873              "\tvar prop = (JsRender.NodeProp) ((Gtk.ListItem)listitem).get_item();",
874              " \tif (prop == null || _this.node == null ) {",
875              " \t\tGLib.error(\"something is wrong\");",
876              "\t \treturn;",
877              "\t}",
878              "\tif ( _this.node.fqn() == \"\") {",
879              " \t\tGLib.debug(\"node is missing fqn\");",
880              "\t \treturn;",
881              "\t}",
882              "\t",
883              "\t//GLib.debug(\"prop = %s\", prop.get_type().name());",
884              "\t//GLib.debug(\"prop.val = %s\", prop.val);",
885              "\t//GLib.debug(\"prop.key = %s\", prop.to_display_name());",
886              "\t ",
887              "    var use_textarea =  prop.useTextArea();",
888              "    ",
889              "    ",
890              "    var pal = _this.file.project.palete;",
891              "        ",
892              "    string[] opts;",
893              "    var has_opts = pal.typeOptions(_this.node.fqn(), prop.name, prop.rtype, out opts);",
894              "    ",
895              "    if (!has_opts && prop.ptype == JsRender.NodePropType.RAW) {",
896              "      \tuse_textarea = true;",
897              "    }",
898              "    ",
899              "    ",
900              "    if (use_textarea) {",
901              "    \tprop.bind_property(\"val_short\",",
902              "                    lbl, \"label\",",
903              "                   GLib.BindingFlags.SYNC_CREATE);",
904              "        prop.bind_property(\"val_tooltip\",",
905              "                    lbl, \"tooltip_markup\",",
906              "                   GLib.BindingFlags.SYNC_CREATE);",
907              "        lbl.show();",
908              "\t\tthis.is_setting = false;        ",
909              "        return;",
910              "    \t",
911              "    }",
912              "     ",
913              "        ",
914              "        ",
915              "        ",
916              "        ",
917              "        // others... - fill in options for true/false?",
918              "           // GLib.debug (ktype.up());",
919              "    if (has_opts) {",
920              "\t",
921              "\t\twhile(model.get_n_items() > 0) {",
922              "\t\t\tmodel.remove(0);",
923              "\t\t}",
924              "\t\tcb.show();",
925              " \t\t// can not remove - hopefully always empty.",
926              "\t\tvar sel = -1;",
927              "\t\tfor(var i = 0; i < opts.length; i ++) {",
928              "\t\t\tmodel.append( opts[i]);",
929              "\t\t\t// not sure this is a great idea... ",
930              "\t\t\tif (opts[i].down() == prop.val.down()) {",
931              "\t\t\t\tsel = i;",
932              "\t\t\t}",
933              "\t\t}",
934              "\t\tGLib.debug(\"Set selected item to %d\", sel);",
935              "\t\tcb.set_selected(sel > -1 ? sel : Gtk.INVALID_LIST_POSITION); ",
936              "\t\tthis.is_setting = false;        ",
937              "\t\treturn ;",
938              "    }",
939              "                                  ",
940              "\t// see if type is a Enum.",
941              "\t// triggers a changed event",
942              " ",
943              "\telbl.set_text(prop.val);",
944              " ",
945              "\telbl.show();",
946              "\tthis.is_setting = false;        \t\t ",
947              "\t",
948              "\t",
949              "\t",
950              " ",
951              "",
952              "}",
953              ""
954             ],
955             "setup" : [
956              "(listitem) => {",
957              "\tvar hb = new Gtk.Box(Gtk.Orientation.HORIZONTAL,0);",
958              "\tvar elbl  = new Gtk.EditableLabel(\"\");",
959              "\telbl.hexpand = true;",
960              "\thb.append(elbl);",
961              "\tvar lbl  = new Gtk.Label(\"\");",
962              "\thb.append(lbl);",
963              "\tlbl.hexpand = true;",
964              "\tlbl.use_markup = true;",
965              "\tlbl.xalign =0;",
966              "\tlbl.ellipsize = Pango.EllipsizeMode.END;",
967              "\tvar cb = new Gtk.DropDown(new Gtk.StringList({}), null);",
968              "\tcb.hexpand = true;",
969              " ",
970              "\thb.append(cb);",
971              "\t((Gtk.ListItem)listitem).set_child(hb);",
972              "\t ",
973              "\t var ef = new Gtk.EventControllerFocus();",
974              "\t ef.enter.connect(() => {",
975              " \t\t _this.stop_editor();",
976              " \t\t  var prop = (JsRender.NodeProp)((Gtk.ListItem)listitem).get_item();",
977              "\t\t _this.selmodel.selectProp(prop);\t\t",
978              "\t });",
979              "\t elbl.add_controller(ef);",
980              "\t ",
981              "\t ",
982              "\t  // dropdown??? - stop editing, and highliht node",
983              "\t var tb = (Gtk.ToggleButton) cb.get_first_child();",
984              "\t tb.clicked.connect(() => {",
985              "\t\t var prop = (JsRender.NodeProp)((Gtk.ListItem)listitem).get_item();",
986              "\t\t\t",
987              "\t \t _this.stop_editor();",
988              "\t \t _this.selmodel.selectProp(prop);",
989              "\t \t ",
990              "\t });",
991              " \telbl.changed.connect(() => {",
992              "\t\t// notify and save the changed value...",
993              "\t \t",
994              "        //_this.updateIter(iter,prop);",
995              "        // this should happen automatically",
996              "        ",
997              "        if (!_this.loading && !this.is_setting) {",
998              "\t\t    var prop = (JsRender.NodeProp)((Gtk.ListItem)listitem).get_item();",
999              "\t\t\t ",
1000              "\t\t ",
1001              "\t\t    prop.val = elbl.text;",
1002              "        \t GLib.debug(\"calling changed\");",
1003              "\t        _this.changed();",
1004              "\t       ",
1005              "        }",
1006              "        ",
1007              "\t});",
1008              "\t",
1009              "\t",
1010              "\tcb.notify[\"selected\"].connect(() => {",
1011              "\t\t// dropdown selection changed.",
1012              "\t\t",
1013              "\t\t",
1014              "\t\t",
1015              "        //_this.updateIter(iter,prop);",
1016              "        if (!_this.loading && !this.is_setting) {",
1017              "\t\t    var prop = (JsRender.NodeProp)((Gtk.ListItem)listitem).get_item();",
1018              "\t\t    var model = (Gtk.StringList)cb.model;",
1019              "\t\t    prop.val =   model.get_string(cb.selected);",
1020              "\t\t    GLib.debug(\"property set to %s\", prop.val);",
1021              "        \tGLib.debug(\"calling changed\");",
1022              "\t        _this.changed();",
1023              "\t         ",
1024              "        }",
1025              "        ",
1026              "\t\t",
1027              "\t});",
1028              "\tvar gc = new Gtk.GestureClick();",
1029              "\tlbl.add_controller(gc);",
1030              "\tgc.pressed.connect(() => {",
1031              "\t \tvar prop = (JsRender.NodeProp)((Gtk.ListItem)listitem).get_item();",
1032              "\t\t _this.stop_editor();",
1033              "\t    _this.show_editor(_this.file, prop.parent, prop);",
1034              "\t});",
1035              "\t  ",
1036              "\t",
1037              "\t",
1038              "}",
1039              ""
1040             ]
1041            },
1042            "xtype" : "SignalListItemFactory"
1043           }
1044          ],
1045          "title" : "Value",
1046          "xtype" : "ColumnViewColumn"
1047         },
1048         {
1049          "$ xns" : "Gtk",
1050          "* pack" : false,
1051          "id" : "ContextMenu",
1052          "items" : [
1053           {
1054            "$ xns" : "Gtk",
1055            "* prop" : "child",
1056            "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
1057            "int spacing" : 0,
1058            "items" : [
1059             {
1060              "$ xns" : "Gtk",
1061              "label" : "Delete",
1062              "listeners" : {
1063               "activate" : [
1064                "  ( )  =>{",
1065                "\t_this.deleteSelected();",
1066                "\t",
1067                "}"
1068               ]
1069              },
1070              "xtype" : "Button"
1071             }
1072            ],
1073            "xtype" : "Box"
1074           }
1075          ],
1076          "xtype" : "Popover"
1077         }
1078        ],
1079        "string name" : "leftprops-view",
1080        "xtype" : "ColumnView",
1081        "| Gtk.Widget? getWidgetAtRow" : [
1082         "(uint row) {",
1083         "/*",
1084         "    \t",
1085         "from    \thttps://discourse.gnome.org/t/gtk4-finding-a-row-data-on-gtkcolumnview/8465",
1086         "    \tvar colview = gesture.widget;",
1087         "    \tvar line_no = check_list_widget(colview, x,y);",
1088         "         if (line_no > -1) {",
1089         "    \t\tvar item = colview.model.get_item(line_no);",
1090         "    \t\t ",
1091         "    \t}",
1092         "    \t*/",
1093         "\t\t//GLib.debug(\"Get Widget At Row %d\", (int)row);",
1094         "        var  child = this.el.get_first_child(); ",
1095         "    \tvar line_no = -1; ",
1096         "    \tvar reading_header = true;",
1097         "",
1098         "    \twhile (child != null) {",
1099         "\t\t\t//GLib.debug(\"Got %s\", child.get_type().name());",
1100         "    \t    if (reading_header) {",
1101         "\t\t\t ",
1102         "\t\t\t   ",
1103         "\t\t\t\tif (child.get_type().name() != \"GtkColumnListView\") {",
1104         "\t\t\t\t\tchild = child.get_next_sibling();",
1105         "\t\t\t\t\tcontinue;",
1106         "\t\t\t\t}",
1107         "\t\t\t\tchild = child.get_first_child(); ",
1108         "\t\t\t\treading_header = false;",
1109         "\t\t\t\tcontinue;",
1110         "\t        }",
1111         "\t\t    if (child.get_type().name() != \"GtkColumnViewRowWidget\") {",
1112         "    \t\t    child = child.get_next_sibling();",
1113         "    \t\t    continue;",
1114         "\t\t    }",
1115         "\t\t    line_no++;",
1116         "\t\t\tif (line_no == row) {",
1117         "\t\t\t\t//GLib.debug(\"Returning widget %s\", child.get_type().name());",
1118         "\t\t\t    return (Gtk.Widget)child;",
1119         "\t\t    }",
1120         "\t        child = child.get_next_sibling(); ",
1121         "    \t}",
1122         "\t\t//GLib.debug(\"Rturning null\");",
1123         "        return null;",
1124         "",
1125         " }"
1126        ],
1127        "| int getColAt" : [
1128         "(double x,  double y) {",
1129         "/*",
1130         "    \t",
1131         "from    \thttps://discourse.gnome.org/t/gtk4-finding-a-row-data-on-gtkcolumnview/8465",
1132         "    \t  ",
1133         "    \t*/",
1134         "\t\t//Gtk.Allocation alloc = { 0, 0, 0, 0 };",
1135         "        var  child = this.el.get_first_child(); ",
1136         "    \t ",
1137         "    \tvar col = 0;",
1138         "    \tvar offx = 0;",
1139         "    \twhile (child != null) {",
1140         "\t\t\tGLib.debug(\"Got %s\", child.get_type().name());",
1141         "\t\t\t",
1142         "\t\t\tif (child.get_type().name() == \"GtkColumnViewRowWidget\") {",
1143         "\t\t\t\tchild = child.get_first_child();",
1144         "\t\t\t\tcontinue;",
1145         "\t\t\t}",
1146         "\t\t\t",
1147         "\t\t\t//child.get_allocation(out alloc);",
1148         "\t\t\tif (x <  (child.get_width() + offx)) {",
1149         "\t\t\t\treturn col;",
1150         "\t\t\t}",
1151         "\t\t\toffx += child.get_width();",
1152         "\t\t\tcol++;",
1153         "\t\t\tchild = child.get_next_sibling();",
1154         "\t\t}",
1155         "    \t     ",
1156         "\t\t\t  ",
1157         "        return -1;",
1158         "",
1159         " }"
1160        ],
1161        "| int getRowAt" : [
1162         "(double x,  double  y, out string pos) {",
1163         "",
1164         "\tpos = \"\";",
1165         "\tvar w = this.el.pick(x, y, Gtk.PickFlags.DEFAULT);",
1166         "\t//GLib.debug(\"got widget %s\", w == null ? \"nothing\" : w.get_type().name());",
1167         "\tif (w == null) {",
1168         "\t\treturn -1;",
1169         "\t}",
1170         "\t",
1171         "\tvar row= w.get_ancestor(GLib.Type.from_name(\"GtkColumnViewRowWidget\"));",
1172         "\tif (row == null) {",
1173         "\t\treturn -1;",
1174         "\t}",
1175         "\t",
1176         "\t//GLib.debug(\"got colview %s\", row == null ? \"nothing\" : row.get_type().name());",
1177         "\t ",
1178         "\tvar rn = 0;",
1179         "\tvar cr = row;",
1180         "\t ",
1181         "\twhile (cr.get_prev_sibling() != null) {",
1182         "\t\trn++;",
1183         "\t\tcr = cr.get_prev_sibling();",
1184         "\t}",
1185         "\t",
1186         "\t//GLib.debug(\"row number is %d\", rn);",
1187         "\t//GLib.debug(\"click %d, %d\", (int)x, (int)y);",
1188         "\t// above or belw",
1189         "\tGraphene.Rect  bounds;",
1190         "\trow.compute_bounds(this.el, out bounds);",
1191         "\t//GLib.debug(\"click x=%d, y=%d, w=%d, h=%d\", ",
1192         "\t//\t(int)bounds.get_x(), (int)bounds.get_y(),",
1193         "\t//\t(int)bounds.get_width(), (int)bounds.get_height()",
1194         "\t//\t);",
1195         "\tvar ypos = y - bounds.get_y();",
1196         "\t//GLib.debug(\"rel ypos = %d\", (int)ypos);\t",
1197         "\tvar rpos = 100.0 * (ypos / bounds.get_height());",
1198         "\t//GLib.debug(\"rel pos = %d %%\", (int)rpos);",
1199         "\tpos = \"over\";",
1200         "\t",
1201         "\tif (rpos > 80) {",
1202         "\t\tpos = \"below\";",
1203         "\t} else if (rpos < 20) {",
1204         "\t\tpos = \"above\";",
1205         "\t} ",
1206         "\treturn rn;",
1207         " }"
1208        ],
1209        "| void editProp" : [
1210         "(JsRender.NodeProp prop) ",
1211         "{",
1212         "\tvar sm = _this.selmodel.el;",
1213         " ",
1214         "\t\tvar sr = -1;",
1215         "\t\tGLib.debug(\"finding node\");",
1216         "\t\t_this.selmodel.selectProp(prop);",
1217         "\t\t",
1218         "\t\tfor (var i = 0 ; i < sm.n_items; i++) {",
1219         "\t\t\tvar r = (JsRender.NodeProp)sm.get_item(i);",
1220         "\t\t\tif (r.equals(prop)) {",
1221         "\t\t\t\tsr = i;",
1222         "\t\t\t\tbreak;",
1223         "\t\t\t}",
1224         "\t\t}",
1225         "\t\tif (sr < 0) {",
1226         "\t\t\tGLib.debug(\"finding node - cant find it\");",
1227         "\t\t\t \t\t",
1228         "\t\t\treturn;",
1229         "\t\t}",
1230         "\t\tvar r = this.getWidgetAtRow(sr);",
1231         "\t\tGLib.debug(\"r = %s\", r.get_type().name());",
1232         "\t\tvar ca = r.get_first_child();",
1233         "\t\tvar ll = (Gtk.Label)ca.get_first_child();",
1234         "\t\tvar cb = ca.get_next_sibling();",
1235         "\t\tvar b = cb.get_first_child();",
1236         "\t\tvar e = (Gtk.EditableLabel) b.get_first_child();",
1237         "\t\tvar l = (Gtk.Label) e.get_next_sibling();",
1238         "\t\tvar d = (Gtk.DropDown) l.get_next_sibling();",
1239         "\t\t",
1240         "\t\tGLib.debug(\"row key = %s\", ll.label);",
1241         "\t\tif (e.get_visible()) {",
1242         "\t\t\t_this.stop_editor();",
1243         "\t\t\te.start_editing();",
1244         "\t\t\t//GLib.Timeout.add_once(500, () => {",
1245         "\t\t\t//\tvar st = (Gtk.Stack) e.get_first_child();",
1246         "\t\t\t//\tvar ed = (Gtk.Entry) st.get_visible_child();",
1247         "\t\t\t//\ted.grab_focus_without_selecting();",
1248         "\t\t\t//});",
1249         "\t\t\treturn;",
1250         "\t\t}",
1251         "\t\tif (d.get_visible()) {",
1252         "\t\t\t_this.stop_editor();",
1253         "\t\t\td.activate();",
1254         "\t\t\treturn;",
1255         "\t\t}",
1256         "\t\tif (l.get_visible()) {",
1257         "\t\t \t_this.stop_editor();",
1258         "\t\t \tif (prop.parent == null) {",
1259         "\t\t \t\treturn;",
1260         "\t \t\t}",
1261         "\t    \t_this.show_editor(_this.file, prop.parent, prop);",
1262         "\t\t",
1263         "\t\t}",
1264         "\t\t",
1265         "\t\t",
1266         "\t\t",
1267         "\t\t//gtkcolumnviewrowwidget",
1268         "\t\t  // cell widet",
1269         "\t\t  // cell widget",
1270         "\t\t  \t// box",
1271         "\t\t  \t\t// entry / label / dropdown",
1272         "\t\t \t\t",
1273         "\t\t ",
1274         "}"
1275        ]
1276       }
1277      ],
1278      "xtype" : "ScrolledWindow"
1279     }
1280    ],
1281    "xtype" : "Box",
1282    "| string keyFormat" : [
1283     "(string val, string type) {",
1284     "    ",
1285     "    // Glib.markup_escape_text(val);",
1286     "",
1287     "    if (type == \"listener\") {",
1288     "        return \"<span font_weight=\\\"bold\\\" color=\\\"#660000\\\">\" + ",
1289     "            GLib.Markup.escape_text(val) +",
1290     "             \"</span>\";",
1291     "    }",
1292     "    // property..",
1293     "    if (val.length < 1) {",
1294     "        return \"<span  color=\\\"#FF0000\\\">--empty--</span>\";",
1295     "    }",
1296     "    ",
1297     "    //@ = signal",
1298     "    //$ = property with ",
1299     "    //# - object properties",
1300     "    //* = special",
1301     "    // all of these... - display value is last element..",
1302     "    var ar = val.strip().split(\" \");",
1303     "    ",
1304     "    ",
1305     "    var dval = GLib.Markup.escape_text(ar[ar.length-1]);",
1306     "    ",
1307     "    ",
1308     "    ",
1309     "    ",
1310     "    switch(val[0]) {",
1311     "        case '@': // signal // just bold balck?",
1312     "            if (dval[0] == '@') {",
1313     "                dval = dval.substring(1);",
1314     "            }",
1315     "        ",
1316     "            return @\"<span  font_weight=\\\"bold\\\">@ $dval</span>\";        ",
1317     "        case '#': // object properties?",
1318     "            if (dval[0] == '#') {",
1319     "                dval = dval.substring(1);",
1320     "            }",
1321     "            return @\"<span  font_weight=\\\"bold\\\">$dval</span>\";",
1322     "        case '*': // special",
1323     "            if (dval[0] == '*') {",
1324     "                dval = dval.substring(1);",
1325     "            }",
1326     "            return @\"<span   color=\\\"#0000CC\\\" font_weight=\\\"bold\\\">$dval</span>\";            ",
1327     "        case '$':",
1328     "            if (dval[0] == '$') {",
1329     "                dval = dval.substring(1);",
1330     "            }",
1331     "            return @\"<span   style=\\\"italic\\\">$dval</span>\";",
1332     "       case '|': // user defined methods",
1333     "            if (dval[0] == '|') {",
1334     "                dval = dval.substring(1);",
1335     "            }",
1336     "            return @\"<span color=\\\"#008000\\\" font_weight=\\\"bold\\\">$dval</span>\";",
1337     "            ",
1338     "              ",
1339     "            ",
1340     "        default:",
1341     "            return dval;",
1342     "    }",
1343     "      ",
1344     "    ",
1345     "",
1346     "}"
1347    ],
1348    "| string keySortFormat" : [
1349     "(string key) {",
1350     "    // listeners first - with 0",
1351     "    // specials",
1352     "    if (key[0] == '*') {",
1353     "        return \"1 \" + key;",
1354     "    }",
1355     "    // functions",
1356     "    ",
1357     "    var bits = key.split(\" \");",
1358     "    ",
1359     "    if (key[0] == '|') {",
1360     "        return \"2 \" + bits[bits.length -1];",
1361     "    }",
1362     "    // signals",
1363     "    if (key[0] == '@') {",
1364     "        return \"3 \" + bits[bits.length -1];",
1365     "    }",
1366     "        ",
1367     "    // props",
1368     "    if (key[0] == '#') {",
1369     "        return \"4 \" + bits[bits.length -1];",
1370     "    }",
1371     "    // the rest..",
1372     "    return \"5 \" + bits[bits.length -1];    ",
1373     "",
1374     "",
1375     "",
1376     "}"
1377    ],
1378    "| void deleteSelected" : [
1379     " () {",
1380     "    ",
1381     "\t\treturn;",
1382     "\t\t/*",
1383     "        ",
1384     "        Gtk.TreeIter iter;",
1385     "        Gtk.TreeModel mod;",
1386     "        ",
1387     "        var s = this.view.el.get_selection();",
1388     "        s.get_selected(out mod, out iter);",
1389     "             ",
1390     "              ",
1391     "        GLib.Value gval;",
1392     "        mod.get_value(iter, 0 , out gval);",
1393     "        var prop = (JsRender.NodeProp)gval;",
1394     "        if (prop == null) {",
1395     "\t        this.load(this.file, this.node);    ",
1396     "        \treturn;",
1397     "    \t}",
1398     "    \t// stop editor after fetching property - otherwise prop is null.",
1399     "        this.stop_editor();",
1400     "        ",
1401     "            \t",
1402     "        switch(prop.ptype) {",
1403     "            case JsRender.NodePropType.LISTENER:",
1404     "                this.node.listeners.unset(prop.to_index_key());",
1405     "                break;",
1406     "                ",
1407     "            default:",
1408     "                this.node.props.unset(prop.to_index_key());",
1409     "                break;",
1410     "        }",
1411     "        this.load(this.file, this.node);",
1412     "        ",
1413     "        _this.changed();",
1414     "        */",
1415     "}"
1416    ],
1417    "| void load" : [
1418     "(JsRender.JsRender file, JsRender.Node? node) ",
1419     "{",
1420     "\t// not sure when to initialize this - we should do it on setting main window really.    ",
1421     "\t",
1422     "\tthis.loading = true;",
1423     "    if (this.view.popover == null) {",
1424     " \t\t   this.view.popover = new Xcls_PopoverProperty();",
1425     " \t\t   this.view.popover.mainwindow = _this.main_window;",
1426     "\t}",
1427     "    ",
1428     "    ",
1429     "    if (this.node != null) {",
1430     "    \tthis.node.dupeProps(); // ensures removeall will not do somethign silly",
1431     "    \t",
1432     "    }",
1433     "    ",
1434     "    GLib.debug(\"load leftprops\");",
1435     "",
1436     "    this.node = node;",
1437     "    this.file = file;",
1438     "    ",
1439     " ",
1440     "    this.model.el.remove_all();",
1441     "              ",
1442     "    //this.get('/RightEditor').el.hide();",
1443     "    if (node ==null) {",
1444     "        GLib.debug(\"node is null return\");",
1445     "        return ;",
1446     "    }",
1447     "",
1448     "    node.loadProps(this.model.el, _this.main_window.windowstate.project); ",
1449     "    ",
1450     "    ",
1451     "   //GLib.debug(\"clear selection\\n\");",
1452     "   ",
1453     "   \tthis.loading = false;",
1454     "    this.selmodel.el.set_selected(Gtk.INVALID_LIST_POSITION);",
1455     "    this.updateErrors();",
1456     "   // clear selection?",
1457     "  //this.model.el.set_sort_column_id(4,Gtk.SortType.ASCENDING); // sort by real key..",
1458     "   ",
1459     "   // this.view.el.get_selection().unselect_all();",
1460     "   ",
1461     "  // _this.keycol.el.set_max_width(_this.EditProps.el.get_allocated_width()/ 2);",
1462     "  // _this.valcol.el.set_max_width(_this.EditProps.el.get_allocated_width()/ 2);",
1463     "   ",
1464     "}",
1465     ""
1466    ],
1467    "| void removeErrors" : [
1468     "() {",
1469     "\t\tif (this.error_widgets == null || this.error_widgets.size < 1) {",
1470     " \t\treturn;",
1471     "\t}",
1472     "\tforeach(var child in this.error_widgets) {",
1473     "\t",
1474     "\t\tif (child.has_css_class(\"node-err\")) {",
1475     "\t\t\tchild.remove_css_class(\"node-err\");",
1476     "\t\t}",
1477     "\t\tif (child.has_css_class(\"node-warn\")) {",
1478     "\t\t\tchild.remove_css_class(\"node-warn\");",
1479     "\t\t}",
1480     "\t\t",
1481     "\t\tif (child.has_css_class(\"node-depr\")) {",
1482     "\t\t\tchild.remove_css_class(\"node-depr\");",
1483     "\t\t}",
1484     "\t}",
1485     "\tthis.error_widgets  = null;",
1486     "\treturn;",
1487     "\t//GLib.debug(\"Rturning null\");",
1488     "     ",
1489     "}"
1490    ],
1491    "| void updateErrors" : [
1492     "() {",
1493     "\tvar file = this.file;",
1494     "\tif (file == null) {",
1495     "\t\treturn;",
1496     "\t}",
1497     "\tvar ar = file.getErrors();",
1498     "\tif (ar == null || ar.size < 1) {",
1499     "\t\tif (this.last_error_counter != file.error_counter) {",
1500     "\t\t\tthis.removeErrors();",
1501     "\t\t}",
1502     "",
1503     "\t\tthis.last_error_counter = file.error_counter ;",
1504     "",
1505     "\t\treturn;",
1506     "\t}",
1507     " \tif (this.last_error_counter == file.error_counter) {",
1508     "\t\treturn;",
1509     "\t}",
1510     "\tthis.removeErrors();",
1511     "\tthis.error_widgets = new Gee.ArrayList<Gtk.Widget>();",
1512     "\tforeach(var diag in ar) { ",
1513     "\t",
1514     "\t\t ",
1515     "//        print(\"get inter\\n\");",
1516     "\t    var node = file.lineToNode( (int)diag.range.start.line) ;",
1517     "\t    if (node == null || this.node == null || node.oid != this.node.oid) {",
1518     "\t    \tcontinue;",
1519     "    \t}",
1520     "    \tvar prop = node.lineToProp( (int)diag.range.start.line) ;",
1521     "    \tif (prop == null) {",
1522     "    \t\tcontinue;",
1523     "\t\t}",
1524     "    \tvar row = _this.selmodel.propToRow(prop);",
1525     "    \tif (row < 0) {",
1526     "    \t\tcontinue;",
1527     "\t\t}",
1528     "    \tvar w = this.view.getWidgetAtRow(row);",
1529     "    \tif (w == null) {",
1530     "    \t\treturn;",
1531     "\t\t}",
1532     "",
1533     "\t\t",
1534     "  \t\tvar ed = diag.category.down();",
1535     "\t\tif (ed != \"err\" && w.has_css_class(\"node-err\")) {",
1536     "\t\t\tcontinue;",
1537     "\t\t}",
1538     "\t\tthis.error_widgets.add(w);\t\t",
1539     "\t\tif (ed == \"err\" && w.has_css_class(\"node-warn\")) {",
1540     "\t\t\tw.remove_css_class(\"node-warn\");",
1541     "\t\t}",
1542     "\t\tif (ed == \"err\" && w.has_css_class(\"node-depr\")) {",
1543     "\t\t\tw.remove_css_class(\"node-depr\");",
1544     "\t\t}",
1545     "\t\tif (!w.has_css_class(\"node-\"+ ed)) {",
1546     "\t\t\tw.add_css_class(\"node-\" + ed);",
1547     "\t\t}",
1548     "\t\t",
1549     "\t}",
1550     "\t",
1551     "}"
1552    ]
1553   }
1554  ],
1555  "name" : "WindowLeftProps"
1556 }