src/Builder4/ValaProjectSettings.bjs
[app.Builder.js] / src / Builder4 / ValaProjectSettings.bjs
1 {
2  "name" : "ValaProjectSettings",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/app.Builder.js/src/Builder4/ValaProjectSettings.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "",
9  "items" : [
10   {
11    "# Project.Gtk project" : "null",
12    "# Xcls_MainWindow window" : "null",
13    "| void show" : "(Project.Gtk project) {\n    \n    \n    print(\"ValaProjectSettings show\\n\");\n    \n    this.project=  project;\n\n    this.compile_flags.el.text = _this.project.compilegroups.get(\"_default_\").compile_flags;\n    \n    this.default_directory_tree_store.load();    \n    this.default_packages_tree_store.load();            \n    this.targets_tree_store.load();\n    this.files_tree_store.load();\n\n}\n",
14    "xtype" : "VBox",
15    "string id" : "ValaProjectSettings",
16    "| void save" : "()  {\n    this.project.writeConfig();\n}",
17    "$ xns" : "Gtk",
18    "items" : [
19     {
20      "* pack" : "pack_start,true,true,0",
21      "xtype" : "Notebook",
22      "$ xns" : "Gtk",
23      "items" : [
24       {
25        "id" : "label_global",
26        "* pack" : false,
27        "xtype" : "Label",
28        "$ xns" : "Gtk",
29        "utf8 label" : "Global"
30       },
31       {
32        "id" : "label_targets",
33        "xtype" : "Label",
34        "* pack" : false,
35        "$ xns" : "Gtk",
36        "utf8 label" : "Targets"
37       },
38       {
39        "xtype" : "VBox",
40        "* pack" : "append_page,_this.label_global.el",
41        "gboolean homogeneous" : false,
42        "$ xns" : "Gtk",
43        "items" : [
44         {
45          "xtype" : "Label",
46          "* pack" : "pack_start,false,false,0",
47          "$ xns" : "Gtk",
48          "utf8 label" : "compile flags"
49         },
50         {
51          "listeners" : {
52           "changed" : "() => {\n    \n   _this.project.compilegroups.get(\"_default_\").compile_flags = this.el.text;\n   _this.project.writeConfig();\n//    _this.project.save();\n\n}"
53          },
54          "id" : "compile_flags",
55          "* pack" : "pack_start,false,false,0",
56          "xtype" : "Entry",
57          "$ xns" : "Gtk",
58          "utf8 placeholder_text" : "eg. -g --valasrc $BASEDIR "
59         },
60         {
61          "xtype" : "Label",
62          "* pack" : "pack_start,false,false,0",
63          "$ xns" : "Gtk",
64          "utf8 label" : "packages"
65         },
66         {
67          "* pack" : "pack_start,true,true,0",
68          "xtype" : "ScrolledWindow",
69          "$ xns" : "Gtk",
70          "items" : [
71           {
72            "gboolean headers_visible" : false,
73            "xtype" : "TreeView",
74            "* pack" : "add",
75            "string id" : "default_packages_tree",
76            "$ xns" : "Gtk",
77            "items" : [
78             {
79              "id" : "default_packages_tree_store",
80              "xtype" : "ListStore",
81              "* pack" : "set_model",
82              "$ n_columns" : 2,
83              "| void load" : "() {\n \n    var def = _this.project.compilegroups.get(\"_default_\");\n    var items  = def.packages;\n    \n    this.el.clear();\n    var pal = (Palete.Gtk) Palete.factory(\"Gtk\");\n    var pkgs = pal.packages(_this.project);\n    print(\"ValaProjectSettings:packages load %d\\n\", pkgs.size);\n\n    Gtk.TreeIter citer;\n\n    for(var i =0 ; i < pkgs.size; i++) {\n         this.el.append(out citer);   \n         \n        this.el.set_value(citer, 0,   pkgs.get(i) ); // title \n        this.el.set_value(citer, 1,   items.contains(pkgs.get(i)) );\n    }\n    this.el.set_sort_column_id(0,Gtk.SortType.ASCENDING);\n    \n}\n",
84              "$ columns" : "    typeof(string),  // 0 key type\n      typeof(bool)",
85              "$ xns" : "Gtk"
86             },
87             {
88              "utf8 title" : "name",
89              "* init" : " \n this.el.add_attribute(_this.packages_render.el , \"text\", 0 );\n  ",
90              "* pack" : "append_column",
91              "xtype" : "TreeViewColumn",
92              "gboolean resizable" : true,
93              "gboolean expand" : true,
94              "$ xns" : "Gtk",
95              "items" : [
96               {
97                "id" : "packages_render",
98                "xtype" : "CellRendererText",
99                "* pack" : "pack_start,false",
100                "$ xns" : "Gtk"
101               }
102              ]
103             },
104             {
105              "utf8 title" : "use",
106              "* init" : "{\n this.el.add_attribute(_this.packages_render_use.el , \"active\", 1 );\n }",
107              "* pack" : "append_column",
108              "xtype" : "TreeViewColumn",
109              "gboolean resizable" : false,
110              "$ xns" : "Gtk",
111              "gint fixed_width" : 50,
112              "items" : [
113               {
114                "listeners" : {
115                 "toggled" : "(  path_string) =>  { \n    var m = _this.default_packages_tree_store.el;\n   Gtk.TreeIter iter;\n   Gtk.TreePath path = new Gtk.TreePath.from_string (path_string);\n   m.get_iter (out iter, path);\n   GLib.Value val;\n   m.get_value(iter, 1, out val);\n   m.set_value(iter, 1,  ((bool) val) ? false :true); \n     GLib.Value fval;  \n   m.get_value(iter, 0, out fval);\n   var fn = (string)fval;\n    \n    var def = _this.project.compilegroups.get(\"_default_\");\n    var items  = def.packages;\n    if ((bool)val) {\n        // renive\n        items.remove(fn);\n    } else {\n        items.add(fn);\n    }\n    \n}"
116                },
117                "id" : "packages_render_use",
118                "* pack" : "pack_start,false",
119                "xtype" : "CellRendererToggle",
120                "$ xns" : "Gtk",
121                "gboolean activatable" : true
122               }
123              ]
124             }
125            ]
126           }
127          ]
128         },
129         {
130          "xtype" : "Label",
131          "* pack" : "pack_start,false,false,0",
132          "$ xns" : "Gtk",
133          "utf8 label" : "Available Directories"
134         },
135         {
136          "* pack" : "pack_start,true,true,0",
137          "xtype" : "ScrolledWindow",
138          "$ xns" : "Gtk",
139          "items" : [
140           {
141            "listeners" : {
142             "button_press_event" : " ( ev) => {\n    //console.log(\"button press?\");\n   \n    \n    if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button != 3) {\n        //print(\"click\" + ev.type);\n        return false;\n    }\n    //Gtk.TreePath res;\n    //if (!this.el.get_path_at_pos((int)ev.x,(int)ev.y, out res, null, null, null) ) {\n    //    return true;\n    //}\n     \n  //  this.el.get_selection().select_path(res);\n     \n      //if (!this.get('/LeftTreeMenu').el)  { \n      //      this.get('/LeftTreeMenu').init(); \n      //  }\n        \n     _this.default_directory_menu.el.set_screen(Gdk.Screen.get_default());\n     _this.default_directory_menu.el.show_all();\n      _this.default_directory_menu.el.popup(null, null, null,  3, ev.time);\n     //   print(\"click:\" + res.path.to_string());\n      return true;\n}"
143            },
144            "gboolean headers_visible" : false,
145            "id" : "default_directory_tree",
146            "* pack" : "add",
147            "xtype" : "TreeView",
148            "$ xns" : "Gtk",
149            "items" : [
150             {
151              "id" : "default_directory_tree_store",
152              "xtype" : "ListStore",
153              "* pack" : "set_model",
154              "$ n_columns" : 1,
155              "| void load" : "() {\n \n  this.el.clear();\n  \n    \n     var def = _this.project.compilegroups.get(\"_default_\");\n     var items  = def.sources;\n     \n \n    Gtk.TreeIter citer;\n\n    for(var i =0 ; i < items.size; i++) {\n         this.el.append(out citer);   \n         \n        this.el.set_value(citer, 0,   items.get(i) ); // title \n        //this.el.set_value(citer, 1,   items.get(i) );\n    }\n    this.el.set_sort_column_id(0,Gtk.SortType.ASCENDING);\n    \n}\n",
156              "$ columns" : "    typeof(string)\n     ",
157              "$ xns" : "Gtk"
158             },
159             {
160              "utf8 title" : "name",
161              "* init" : "\n this.el.add_attribute(_this.directory_render.el , \"text\", 0 );\n  ",
162              "* pack" : "append_column",
163              "xtype" : "TreeViewColumn",
164              "gboolean resizable" : true,
165              "$ xns" : "Gtk",
166              "items" : [
167               {
168                "id" : "directory_render",
169                "xtype" : "CellRendererText",
170                "* pack" : "pack_start,false",
171                "$ xns" : "Gtk"
172               }
173              ]
174             }
175            ]
176           },
177           {
178            "id" : "default_directory_menu",
179            "xtype" : "Menu",
180            "$ xns" : "Gtk",
181            "items" : [
182             {
183              "listeners" : {
184               "activate" : "()  => {\n    \n    var  chooser = new Gtk.FileChooserDialog (\n\t\"Add a directory\", _this.window.el, Gtk.FileChooserAction.SELECT_FOLDER ,\n\t\"_Cancel\",\n\tGtk.ResponseType.CANCEL,\n\t\"_Add\",\n\tGtk.ResponseType.ACCEPT);\n    if (chooser.run () != Gtk.ResponseType.ACCEPT) {\n        chooser.close ();\n           return;\n       }\n       chooser.close ();\n       // add the directory..\n       var fn = _this.project.relPath(chooser.get_filename());\n       _this.project.compilegroups.get(\"_default_\").sources.add(fn);\n       _this.default_directory_tree_store.load();\n}"
185              },
186              "* pack" : "add",
187              "xtype" : "MenuItem",
188              "$ xns" : "Gtk",
189              "utf8 label" : "Add Directory"
190             },
191             {
192              "listeners" : {
193               "activate" : "()  => {\n    \n    var  chooser = new Gtk.FileChooserDialog (\n\t\"Add a directory\", _this.window.el, Gtk.FileChooserAction.OPEN ,\n\t\"_Cancel\",\n\tGtk.ResponseType.CANCEL,\n\t\"_Add\",\n\tGtk.ResponseType.ACCEPT);\n    if (chooser.run () != Gtk.ResponseType.ACCEPT) {\n        chooser.close ();\n           return;\n       }\n       chooser.close ();\n       // add the directory..\n       var fn = _this.project.relPath(chooser.get_filename());\n       _this.project.compilegroups.get(\"_default_\").sources.add(fn);\n       _this.default_directory_tree_store.load();\n}"
194              },
195              "* pack" : "add",
196              "xtype" : "MenuItem",
197              "$ xns" : "Gtk",
198              "utf8 label" : "Add File"
199             },
200             {
201              "* pack" : "add",
202              "xtype" : "SeparatorMenuItem",
203              "$ xns" : "Gtk"
204             },
205             {
206              "listeners" : {
207               "activate" : "()  => {\n    \n     //\n        Gtk.TreeModel mod;\n        Gtk.TreeIter iter;\n        if (!_this.default_directory_tree.el.get_selection().get_selected(out mod, out iter)) {\n               print(\"nothing selected\\n\");\n            return;\n        }\n\n            \n       // add the directory..\n       \n       \n       GLib.Value val;\n        mod.get_value(iter,0, out val);\n       var fn =  (string) val;\n       \n       print(\"remove: %s\\n\", fn);\n       if (!_this.project.compilegroups.get(\"_default_\").sources.remove(fn)) {\n                  print(\"remove failed\");\n              }\n       _this.default_directory_tree_store.load();\n}"
208              },
209              "* pack" : "add",
210              "xtype" : "MenuItem",
211              "$ xns" : "Gtk",
212              "utf8 label" : "Remove File/Directory"
213             }
214            ]
215           }
216          ]
217         }
218        ]
219       },
220       {
221        "gint position" : 300,
222        "* pack" : "append_page,_this.label_targets.el",
223        "xtype" : "HPaned",
224        "$ xns" : "Gtk",
225        "items" : [
226         {
227          "* init" : "{  \nthis.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);\n\n}\n",
228          "* pack" : "add1",
229          "xtype" : "ScrolledWindow",
230          "$ xns" : "Gtk",
231          "items" : [
232           {
233            "id" : "targets_tree_menu",
234            "xtype" : "Menu",
235            "* pack" : "add",
236            "$ xns" : "Gtk",
237            "items" : [
238             {
239              "listeners" : {
240               "activate" : "()  => {\n    \n       if (_this.project.compilegroups.has_key(\"NEW GROUP\")) {\n        return;\n    }\n      \n       // add the directory..\n       \n       _this.project.compilegroups.set(\"NEW GROUP\", new Project.GtkValaSettings(\"NEW GROUP\"));\n       _this.targets_tree_store.load();\n}"
241              },
242              "* pack" : "add",
243              "xtype" : "MenuItem",
244              "$ xns" : "Gtk",
245              "utf8 label" : "Add Compile Target"
246             },
247             {
248              "* pack" : "add",
249              "xtype" : "SeparatorMenuItem",
250              "$ xns" : "Gtk"
251             },
252             {
253              "listeners" : {
254               "activate" : "()  => {\n    \n     //\n        Gtk.TreeModel mod;\n        Gtk.TreeIter iter;\n        if (!_this.targets_tree.el.get_selection().get_selected(out mod, out iter)) {\n               print(\"nothing selected\\n\");\n            return;\n        }\n\n            \n       // add the directory..\n       \n       \n       GLib.Value val;\n        mod.get_value(iter,0, out val);\n       var fn =  (string) val;\n       \n       print(\"remove: %s\\n\", fn);\n       if (!_this.project.compilegroups.unset(fn)) {\n                  print(\"remove failed\");\n      }\n       _this.targets_tree_store.load();\n}"
255              },
256              "* pack" : "add",
257              "xtype" : "MenuItem",
258              "$ xns" : "Gtk",
259              "utf8 label" : "Remove Target"
260             }
261            ]
262           },
263           {
264            "listeners" : {
265             "button_press_event" : " ( ev) => {\n    //console.log(\"button press?\");\n   \n    \n    if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button != 3) {\n        //print(\"click\" + ev.type);\n        return false;\n    }\n    //Gtk.TreePath res;\n    //if (!this.el.get_path_at_pos((int)ev.x,(int)ev.y, out res, null, null, null) ) {\n    //    return true;\n    //}\n     \n  //  this.el.get_selection().select_path(res);\n     \n      //if (!this.get('/LeftTreeMenu').el)  { \n      //      this.get('/LeftTreeMenu').init(); \n      //  }\n        \n     _this.targets_tree_menu.el.set_screen(Gdk.Screen.get_default());\n     _this.targets_tree_menu.el.show_all();\n      _this.targets_tree_menu.el.popup(null, null, null,  3, ev.time);\n     //   print(\"click:\" + res.path.to_string());\n      return true;\n}",
266             "cursor_changed" : " ( ) => {\n\n    if (this.cursor != \"\") {\n         // save the values..\n     }\n     \n     // load the new values.\n     \n\n         Gtk.TreeModel mod;\n        Gtk.TreeIter iter;\n        if (!this.el.get_selection().get_selected(out mod, out iter)) {\n            print(\"nothing selected\\n\");\n            // should disable the right hand side..\n            _this.set_vbox.el.hide();\n            return;\n        }\n        _this.set_vbox.el.show();\n            \n       // add the directory..\n       \n       \n       GLib.Value val;\n        mod.get_value(iter,0, out val);\n       var fn =  (string) val;\n       \n       this.cursor = fn;\n       var cg = _this.project.compilegroups.get(fn);\n       \n       _this.build_pack_target.el.set_text(cg.target_bin);\n       _this.build_compile_flags.el.set_text(cg.compile_flags);\n       _this.set_vbox.cgroup = cg;\n       _this.files_tree_store.update();\n       \n       // load the srouces\n       \n\n  }"
267            },
268            "id" : "targets_tree",
269            "# string cursor" : "",
270            "* pack" : "add",
271            "xtype" : "TreeView",
272            "$ xns" : "Gtk",
273            "items" : [
274             {
275              "id" : "targets_tree_store",
276              "* pack" : "set_model",
277              "xtype" : "ListStore",
278              "$ n_columns" : 2,
279              "| void load" : "() {\n \n  this.el.clear();\n  \n    \n     var cg = _this.project.compilegroups;\n     \n   _this.targets_tree.cursor = \"\";\n    Gtk.TreeIter citer;\n    var iter = cg.map_iterator();\n   while(iter.next()) {\n        var key = iter.get_key();\n        if (key == \"_default_\") {\n            continue;\n        }\n    \n         this.el.append(out citer);   \n         \n        this.el.set_value(citer, 0,   key ); // title \n        //this.el.set_value(citer, 1,   items.get(i) );\n    };\n    this.el.set_sort_column_id(0,Gtk.SortType.ASCENDING);\n    _this.set_vbox.el.hide();\n}\n",
280              "$ columns" : "    typeof(string),  // 0 key type\n     typeof(string) // ??\n     ",
281              "$ xns" : "Gtk"
282             },
283             {
284              "utf8 title" : "name",
285              "* init" : " {\n     this.el.add_attribute(_this.targets_render.el , \"text\", 0 );\n }",
286              "* pack" : "append_column",
287              "xtype" : "TreeViewColumn",
288              "gboolean resizable" : true,
289              "$ xns" : "Gtk",
290              "items" : [
291               {
292                "listeners" : {
293                 "edited" : "  (path, newtext) => {\n     \n     Gtk.TreeIter  iter;\n        _this.targets_tree_store.el.get_iter(out iter, new Gtk.TreePath.from_string(path));\n       GLib.Value gval;\n        _this.targets_tree_store.el.get_value(iter,0, out gval);\n        var oldval = (string)gval;\n       if (oldval == newtext) {\n          return;\n        }\n         var cg = _this.project.compilegroups.get(oldval);\n        cg.name = newtext;\n        _this.project.compilegroups.unset(oldval);\n        _this.project.compilegroups.set(newtext, cg);\n       _this.targets_tree_store.load();\n  }"
294                },
295                "id" : "targets_render",
296                "* pack" : "pack_start,false",
297                "xtype" : "CellRendererText",
298                "$ xns" : "Gtk",
299                "gboolean editable" : true
300               }
301              ]
302             }
303            ]
304           }
305          ]
306         },
307         {
308          "id" : "set_vbox",
309          "* pack" : "add2",
310          "xtype" : "VBox",
311          "gboolean homogeneous" : false,
312          "$ xns" : "Gtk",
313          "# Project.GtkValaSettings cgroup" : "null",
314          "items" : [
315           {
316            "xtype" : "Label",
317            "* pack" : "pack_start,false,false,0",
318            "$ xns" : "Gtk",
319            "utf8 label" : "target filename"
320           },
321           {
322            "listeners" : {
323             "changed" : "()  => {\n        if (_this.targets_tree.cursor.length < 1) {\n        return;\n    }\n    _this.project.compilegroups.get(_this.targets_tree.cursor).target_bin = this.el.text;\n}"
324            },
325            "id" : "build_pack_target",
326            "* pack" : "pack_start,false,false,0",
327            "xtype" : "Entry",
328            "$ xns" : "Gtk"
329           },
330           {
331            "xtype" : "Label",
332            "* pack" : "pack_start,false,false,0",
333            "$ xns" : "Gtk",
334            "utf8 label" : "compile flags"
335           },
336           {
337            "listeners" : {
338             "changed" : "() => {\n    if (_this.targets_tree.cursor.length < 1) {\n        return;\n    }\n    _this.project.compilegroups.get(_this.targets_tree.cursor).compile_flags = this.el.text;\n}"
339            },
340            "id" : "build_compile_flags",
341            "* pack" : "pack_start,false,false,0",
342            "xtype" : "Entry",
343            "$ xns" : "Gtk"
344           },
345           {
346            "xtype" : "Label",
347            "* pack" : "pack_start,false,false,0",
348            "$ xns" : "Gtk",
349            "utf8 label" : "Files to compile"
350           },
351           {
352            "* pack" : "pack_start,true,true,0",
353            "xtype" : "ScrolledWindow",
354            "$ xns" : "Gtk",
355            "items" : [
356             {
357              "xtype" : "TreeView",
358              "* pack" : "add",
359              "string id" : "files_tree",
360              "$ xns" : "Gtk",
361              "items" : [
362               {
363                "id" : "files_tree_store",
364                "* pack" : "set_model",
365                "xtype" : "ListStore",
366                "| void updateDir" : "(string dname, bool bval) {\n  \n  Gtk.TreeIter citer;\n\n    var cg =   _this.set_vbox.cgroup;\n  for(var i =0 ; i < this.el.iter_n_children(null); i++) {\n        this.el.iter_nth_child(out citer,null,i);\n\n        GLib.Value val;\n        this.el.get_value(citer,0, out val);\n        var fn = (string) val;\n        \n        if ( Path.get_dirname (fn) == dname) {\n        \n            this.el.set_value(citer, 3,   bval ); // checked \n           \n     \n     \n            if (!bval) {\n                // renive\n                if (cg.sources.contains(fn)) {\n                    cg.sources.remove(fn);\n                }\n            } else {\n                if (!cg.sources.contains(fn)) {\n                    cg.sources.add(fn);\n                }\n            }\n            \n            \n        }\n    }\n\n}\n",
367                "$ n_columns" : 4,
368                "| void load" : "() {\n \n      this.el.clear();\n  \n    \n     var def = _this.project.compilegroups.get(\"_default_\");\n     var items  = def.sources;\n     \n     \n     \n     \n \n    Gtk.TreeIter citer;\n\n    for(var i =0 ; i < items.size; i++) {\n    \n         var files = _this.project.files(items.get(i));\n         if (files.size < 1) {\n            continue;\n         }\n    \n         this.el.append(out citer);   \n         \n        this.el.set_value(citer, 0,   items.get(i) ); // title \n        this.el.set_value(citer, 1,   \"<span foreground=\\\"green\\\" font_weight=\\\"bold\\\">\" + \n                    GLib.Markup.escape_text(items.get(i)) + \"</span>\"\n            ); // title \n        print(\"ADD item %s\", items.get(i));\n        this.el.set_value(citer, 2,   \"dir\"); // type         \n        this.el.set_value(citer, 3,   false ); // checked \n\n       \n        \n         for(var j =0 ; j < files.size; j++) {\n            this.el.append(out citer);   \n             print(\"ADD item %s\", files.get(j));\n            this.el.set_value(citer, 0,   files.get(j) ); // title \n            this.el.set_value(citer, 1,   GLib.Markup.escape_text( Path.get_basename (files.get(j))) ); // title             \n            this.el.set_value(citer, 2,   \"file\"); // type         \n            this.el.set_value(citer, 3,   false ); // checked \n\n        }\n        \n        \n        //this.el.set_value(citer, 1,   items.get(i) );\n    }\n    this.el.set_sort_column_id(0,Gtk.SortType.ASCENDING);\n    \n}\n ",
369                "$ columns" : "    typeof(string),  // 0 file name\n        typeof(string),  // 0 basename\n     typeof(string), // type (dir orfile)\n     typeof(bool)  // is checked.\n     ",
370                "$ xns" : "Gtk",
371                "| void update" : "() {\n\n\n    Gtk.TreeIter citer;\n\n    for(var i =0 ; i < this.el.iter_n_children(null); i++) {\n        this.el.iter_nth_child(out citer,null,i);\n\n        GLib.Value val;\n        this.el.get_value(citer,0, out val);\n        var fn = (string) val;\n        \n        var active = false;\n        if (_this.set_vbox.cgroup.sources.contains(fn)) {\n            active = true;\n        }\n        \n        this.el.set_value(citer, 3,   active ); // checked \n    }\n\n\n}\n"
372               },
373               {
374                "utf8 title" : "name",
375                "* init" : "\n this.el.add_attribute(_this.files_render.el , \"markup\", 1 ); // basnemae\n \n/*  this.el.add_attribute(_this.files_render.el , \"markup\", 2 );\n*/",
376                "* pack" : "append_column",
377                "xtype" : "TreeViewColumn",
378                "gboolean resizable" : true,
379                "$ xns" : "Gtk",
380                "items" : [
381                 {
382                  "id" : "files_render",
383                  "xtype" : "CellRendererText",
384                  "* pack" : "pack_start,false",
385                  "$ xns" : "Gtk"
386                 }
387                ]
388               },
389               {
390                "utf8 title" : "use",
391                "* init" : "{\n this.el.add_attribute(_this.files_render_use.el , \"active\", 3 );\n }",
392                "* pack" : "append_column",
393                "xtype" : "TreeViewColumn",
394                "gboolean resizable" : false,
395                "$ xns" : "Gtk",
396                "gint fixed_width" : 50,
397                "items" : [
398                 {
399                  "listeners" : {
400                   "toggled" : "(  path_string) =>  { \n\n\n\n    var m = _this.files_tree_store.el;\n   Gtk.TreeIter iter;\n   Gtk.TreePath path = new Gtk.TreePath.from_string (path_string);\n   m.get_iter (out iter, path);\n   GLib.Value val;\n   m.get_value(iter, 3, out val);\n   m.set_value(iter, 3,  ((bool) val) ? false :true); \n   \n   // type.\n   GLib.Value ftval;  \n   m.get_value(iter, 2, out ftval);\n   var ftype = (string)ftval;   \n   \n   // full name...  \n   GLib.Value fval;     \n   m.get_value(iter, 0, out fval);\n   var fn = (string)fval;\n    \n    \n    var cg =   _this.set_vbox.cgroup;\n    // what's the sleected target?\n    // update the list..\n    // if ftype is a dir == then toggle all the bellow.\n    \n    if (ftype == \"dir\") {\n        _this.files_tree_store.updateDir(fn,  ((bool) val) ? false :true);\n    }\n    \n    // if ftype is a file .. see if all the files in that directory are check and check the dir.\n\n     \n    if ((bool)val) {\n        // renive\n        cg.sources.remove(fn);\n    } else {\n        cg.sources.add(fn);\n    }\n    \n}"
401                  },
402                  "id" : "files_render_use",
403                  "* pack" : "pack_start,false",
404                  "xtype" : "CellRendererToggle",
405                  "$ xns" : "Gtk",
406                  "gboolean activatable" : true
407                 }
408                ]
409               }
410              ]
411             }
412            ]
413           }
414          ]
415         }
416        ]
417       }
418      ]
419     }
420    ]
421   }
422  ]
423 }