resources/RooUsage.txt
[app.Builder.js] / src / Builder4 / DialogNewComponent.bjs
1 {
2  "name" : "DialogNewComponent",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/app.Builder.js/src/Builder4/DialogNewComponent.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "",
9  "items" : [
10   {
11    "listeners" : {
12     "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n    //test  \n}\n ",
13     "response" : " (self, response_id) =>  { \n  \n\tif (response_id < 1) { // cancel!\n            this.el.hide();\n            return;\n        }\n\n\n\n        if (_this.name.el.get_text().length  < 1) {\n            StandardErrorDialog.show(\n                this.el,\n                \"You have to set Component name \"\n            );\n             \n            return;\n        }\n        // what does this do?\n        \n        var isNew = _this.file.name.length  > 0 ? false : true;\n        /*\n        if (!isNew && this.file.name != _this.name.el.get_text()) {\n            Xcls_StandardErrorDialog.singleton().show(\n                this.el,\n                \"Sorry changing names does not work yet. \"\n            );\n             \n            return;\n        }\n        */\n         \n        \n      \n        // FIXME - this may be more complicated...\n        //for (var i in this.def) {\n        //    this.file[i] =  this.get(i).el.get_text();\n        //}\n\n        if (!isNew) {\n            try {\n                 this.updateFileFromEntry();\n             } catch( JsRender.Error.RENAME_FILE_EXISTS er) {\n                  Xcls_StandardErrorDialog.singleton().show(\n                    this.el,\n                    \"The name you used already exists \"\n                );\n                return;\n                 \n             }\n                                                        \n        \n            _this.file.save();\n            this.el.hide();\n            return;\n        }\n        var fn = this.name.el.get_text();\n        var dir = _this.project.firstPath();\n       \n        if (GLib.FileUtils.test(dir + \"/\" + fn + \".bjs\", GLib.FileTest.EXISTS)) {\n            Xcls_StandardErrorDialog.singleton().show(\n                this.el,\n                \"That file already exists\"\n            ); \n            return;\n        }\n       \n       var f =  JsRender.JsRender.factory(\n                _this.file.project.xtype,  \n                _this.file.project, \n                dir + \"/\" + fn + \".bjs\");\n\n        _this.file = f;\n        \n\n        \n        this.updateFileFromEntry();\n        _this.file.save();\n        _this.file.project.addFile(_this.file);\n        \n\t \n        // what about .js ?\n       \n        this.el.hide();\n        \n        \n        //var tmpl = this.project.loadFileOnly(DialogNewComponent.get('template').getValue());\n         \n        //var nf = _this.project.create(dir + \"/\" + _this.file.name + \".bjs\");\n        //for (var i in this.file) {\n        //    nf[i] = this.file[i];\n        //}\n        _this.success(_this.project, _this.file);\n        /*\n\n        -- fixme -- needs to be a signal..\n        if (DialogNewComponent.success != null) {\n            DialogNewComponent.success(_this.project, nf);\n        }\n        */\n}",
14     "show" : "(self)  => {\n  this.el.show_all();\n  //test\n}"
15    },
16    "|   void updateFileFromEntry" : "() {\n\n        _this.file.title = _this.title.el.get_text();\n        _this.file.region = _this.region.el.get_text();            \n        _this.file.parent = _this.parent.el.get_text();                        \n        _this.file.permname = _this.permname.el.get_text();                                    \n        _this.file.modOrder = _this.modOrder.el.get_text();\n        \n        if (_this.file.name.length  > 0 && _this.file.name != _this.name.el.get_text()) {\n            _this.file.renameTo(_this.name.el.get_text());\n        }\n        // store the module...\n        _this.file.build_module = \"\";        \n         Gtk.TreeIter iter; \n        if (_this.build_module.el.get_active_iter (out iter)) {\n             Value vfname;\n             this.dbmodel.el.get_value (iter, 0, out vfname);\n             if (((string)vfname).length > 0) {\n                 _this.file.build_module = (string)vfname;\n             }\n    \n        }\n        \n        \n\n                                                    \n}    ",
17    "id" : "DialogNewComponent",
18    "@ void success" : "(Project.Project pr, JsRender.JsRender file)",
19    "default_width" : 500,
20    "$ deletable" : true,
21    "# Project.Project project" : "",
22    "title" : "New Component",
23    "xtype" : "Dialog",
24    "|   void show" : "(JsRender.JsRender c) \n{\n    this.project = c.project;\n    \n    //if (!this.el) {\n        //this.init();\n     //}\n    \n    _this.name.el.set_text(c.name);\n    _this.title.el.set_text(c.title);\n    _this.parent.el.set_text(c.parent);    \n    _this.region.el.set_text(c.region);\n    _this.modOrder.el.set_text(c.modOrder);\n     _this.permname.el.set_text(c.permname);\n    \n    if (c.path.length > 0) {\n        this.el.set_title(\"Edit File Details - \" + c.name);\n    } else {\n        this.el.set_title(\"Create New File\");\n    }\n    \n     var ar = new Gee.ArrayList<string>();\n     _this.dbmodel.loadData(ar,\"\");\n    // load the modules... if relivant..\n    if (this.project.xtype == \"Gtk\") {\n        var p = (Project.Gtk)c.project;\n          var cg = p.compilegroups;\n\n        var iter = cg.map_iterator();\n       while(iter.next()) {\n            var key = iter.get_key();\n            if (key == \"_default_\") {\n                continue;\n            }\n            ar.add(key);\n        };\n        _this.dbmodel.loadData(ar, c.build_module);\n\n    }\n    \n     \n    _this.file = c;\n    //console.log('show all');\n    this.el.show_all();\n    \n    //this.success = c.success;\n    \n    \n}",
25    "# JsRender.JsRender file" : "null",
26    "default_height" : 200,
27    "$ modal" : true,
28    "$ xns" : "Gtk",
29    "items" : [
30     {
31      "xtype" : "VBox",
32      "$ pack" : "get_content_area().add",
33      "$ xns" : "Gtk",
34      "items" : [
35       {
36        "* pack" : "pack_start,false,false,0",
37        "xtype" : "Table",
38        "n_columns" : 2,
39        "$ xns" : "Gtk",
40        "n_rows" : 3,
41        "$ homogeneous" : true,
42        "items" : [
43         {
44          "label" : "Component Name",
45          "xalign" : 0.90000000000000002,
46          "* pack" : "attach_defaults,0,1,0,1",
47          "xtype" : "Label",
48          "$ justify" : "Gtk.Justification.RIGHT",
49          "x_options" : 4,
50          "$ xns" : "Gtk"
51         },
52         {
53          "id" : "name",
54          "$ visible" : true,
55          "xtype" : "Entry",
56          "* pack" : "attach_defaults,1,2,0,1",
57          "$ xns" : "Gtk"
58         },
59         {
60          "label" : "Title",
61          "$ visible" : true,
62          "xalign" : 0.90000000000000002,
63          "* pack" : "attach_defaults,0,1,1,2",
64          "xtype" : "Label",
65          "$ justify" : "Gtk.Justification.RIGHT",
66          "x_options" : 4,
67          "$ xns" : "Gtk"
68         },
69         {
70          "id" : "title",
71          "$ visible" : true,
72          "xtype" : "Entry",
73          "* pack" : "attach_defaults,1,2,1,2",
74          "$ xns" : "Gtk"
75         },
76         {
77          "label" : "Region",
78          "$ visible" : true,
79          "tooltip_text" : "center, north, south, east, west",
80          "xalign" : 0.90000000000000002,
81          "* pack" : "attach_defaults,0,1,2,3",
82          "xtype" : "Label",
83          "$ justify" : "Gtk.Justification.RIGHT",
84          "x_options" : 4,
85          "$ xns" : "Gtk"
86         },
87         {
88          "id" : "region",
89          "$ visible" : true,
90          "xtype" : "Entry",
91          "* pack" : "attach_defaults,1,2,2,3",
92          "$ xns" : "Gtk"
93         },
94         {
95          "label" : "Parent Name",
96          "$ visible" : true,
97          "xalign" : 0.90000000000000002,
98          "* pack" : "attach_defaults,0,1,3,4",
99          "xtype" : "Label",
100          "$ justify" : "Gtk.Justification.RIGHT",
101          "x_options" : 4,
102          "$ xns" : "Gtk"
103         },
104         {
105          "id" : "parent",
106          "$ visible" : true,
107          "xtype" : "Entry",
108          "* pack" : "attach_defaults,1,2,3,4",
109          "$ xns" : "Gtk"
110         },
111         {
112          "label" : "Permission Name",
113          "$ visible" : true,
114          "xalign" : 0.90000000000000002,
115          "* pack" : "attach_defaults,0,1,4,5",
116          "xtype" : "Label",
117          "$ justify" : "Gtk.Justification.RIGHT",
118          "x_options" : 4,
119          "$ xns" : "Gtk"
120         },
121         {
122          "id" : "permname",
123          "$ visible" : true,
124          "xtype" : "Entry",
125          "* pack" : "attach_defaults,1,2,4,5",
126          "$ xns" : "Gtk"
127         },
128         {
129          "label" : "Order (for tabs)",
130          "$ visible" : true,
131          "xalign" : 0.90000000000000002,
132          "* pack" : "attach_defaults,0,1,5,6",
133          "xtype" : "Label",
134          "$ justify" : "Gtk.Justification.RIGHT",
135          "x_options" : 4,
136          "$ xns" : "Gtk"
137         },
138         {
139          "id" : "modOrder",
140          "$ visible" : true,
141          "xtype" : "Entry",
142          "* pack" : "attach_defaults,1,2,5,6",
143          "$ xns" : "Gtk"
144         },
145         {
146          "label" : "Module to build (Vala only)",
147          "$ visible" : true,
148          "xalign" : 0.90000000000000002,
149          "* pack" : "attach_defaults,0,1,6,7",
150          "xtype" : "Label",
151          "$ justify" : "Gtk.Justification.RIGHT",
152          "x_options" : 4,
153          "$ xns" : "Gtk"
154         },
155         {
156          "id" : "build_module",
157          "* init" : "this.el.add_attribute(_this.dbcellrenderer.el , \"markup\", 1 );",
158          "* pack" : "attach_defaults,1,2,6,7",
159          "xtype" : "ComboBox",
160          "$ xns" : "Gtk",
161          "items" : [
162           {
163            "id" : "dbcellrenderer",
164            "xtype" : "CellRendererText",
165            "* pack" : "pack_start,true",
166            "$ xns" : "Gtk"
167           },
168           {
169            "id" : "dbmodel",
170            "xtype" : "ListStore",
171            "* pack" : "set_model",
172            "$ columns" : "typeof(string),typeof(string)",
173            "n_columns" : 2,
174            "$ xns" : "Gtk",
175            "| void loadData" : "  (Gee.ArrayList<string> data, string cur) {\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n   /// el.append(out iter);\n    \n     \n   // el.set_value(iter, 0, \"\");\n   // el.set_value(iter, 1, \"aaa  - Just add Element - aaa\");\n\n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a module --\");\n    _this.build_module.el.set_active_iter(iter);\n    \n    for (var i = 0; i < data.size;i++) {\n    \n\n        el.append(out iter);\n        \n        el.set_value(iter, 0, data.get(i));\n        el.set_value(iter, 1, data.get(i));\n        \n        if (data.get(i) == cur) {\n            _this.build_module.el.set_active_iter(iter);\n        }\n        \n    }\n     this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n"
176           }
177          ]
178         }
179        ]
180       }
181      ]
182     },
183     {
184      "label" : "Cancel",
185      "xtype" : "Button",
186      "* pack" : "add_action_widget,0",
187      "$ xns" : "Gtk"
188     },
189     {
190      "label" : "OK",
191      "xtype" : "Button",
192      "* pack" : "add_action_widget,1",
193      "$ xns" : "Gtk"
194     }
195    ]
196   }
197  ]
198 }