Clones.bjs
[gitlive] / Clones.bjs
index d871074..efef136 100644 (file)
          "items" : [
           {
            "id" : "reposStore",
-           "columns" : "     typeof(string),  // 0 repo\n     typeof(string),  // 1 current branch\n     typeof(string),  // 2 all branch\n     typeof(string),  // 3 updated\n     typeof(bool),   // 4 auto commit\n     typeof(bool),   // 5 auto push\n     typeof(string)   // 7 repopath\n      typeof(string)   // 8 color highlighting?",
+           "columns" : "     typeof(string),  // 0 repo\n     typeof(string),  // 1 current branch\n     typeof(string),  // 2 all branch\n     typeof(string),  // 3 updated\n     typeof(bool),   // 4 auto commit\n     typeof(bool),   // 5 auto push\n     typeof(string),   // 7 repopath\n      typeof(string)   // 8 color highlighting?\n      ",
            "$ pathToRepo" : "function(path) {\n\n    var tr= this.repos;\n\n    \n    for(var i =0 ; i < tr.length; i++) {\n        if (tr[i].repopath == path) {\n            return tr[i];\n        }\n    } \n    return false; \n}\n",
            "xtype" : "ListStore",
            "* pack" : "set_model",
           },
           {
            "id" : "tv_autocommit",
-           "* init" : "\n//    this.items[0].el.set_activatable(true);\n this.el.add_attribute(_this.keyrender.el , \"active\", 4 );\n\n",
+           "* init" : "\n//    this.items[0].el.set_activatable(true);\n this.el.add_attribute(_this.cr_autocommit.el , \"active\", 4 );\n\n",
            "* pack" : "append_column",
            "title" : "Auto Commit",
            "xtype" : "TreeViewColumn",
              "listeners" : {
               "toggled" : "  (self, path)  => {\n/*    var ret ={} ;\n    var store = this.get('/reposStore');\n    store.el.get_iter_from_string(ret, path);\n                                                                 \n    var value =   store.el.get_value(ret.iter,4).value.get_boolean();\n                                                                 \n    //print(JSON.stringify(value));\n    store.el.set_value(ret.iter,4, !value);\n    \n     var path =  store.el.get_value(ret.iter, 6).value.get_string();\n     var repo = imports.Scm.Repo.Repo.get(path);\n     repo.autocommit(!value);\n  */   \n    \n    \n}"
              },
+             "id" : "cr_autocommit",
              "* pack" : "pack_start,false",
              "xtype" : "CellRendererToggle",
              "$ xns" : "Gtk",
           },
           {
            "id" : "tv_autopush",
-           "* init" : " \n    this.el.add_attribute(this.items[0].el , 'active', 5 );\n//      this.items[0].el.set_activatable(true);\n\n",
+           "* init" : " \n    this.el.add_attribute(_this.cr_autopush.el , \"active\", 5 );\n//      this.items[0].el.set_activatable(true);\n\n",
            "* pack" : "append_column",
            "title" : "Auto Push",
            "xtype" : "TreeViewColumn",
              "listeners" : {
               "toggled" : "function (self, path) {\n    var ret ={} ;\n    var store = this.get('/reposStore');\n    store.el.get_iter_from_string(ret, path);\n                                                                 \n    var value =   store.el.get_value(ret.iter,5).value.get_boolean();\n                                                                 \n    //print(JSON.stringify(value));\n    store.el.set_value(ret.iter,5, !value);\n      var path =  store.el.get_value(ret.iter, 6).value.get_string();\n     var repo = imports.Scm.Repo.Repo.get(path);\n     repo.autopush(!value);\n     \n}"
              },
+             "id" : "cr_autopush",
              "* pack" : "pack_start",
              "xtype" : "CellRendererToggle",
              "$ xns" : "Gtk",
           },
           {
            "id" : "tv_repo",
-           "* init" : "function() {\n    XObject.prototype.init.call(this);\n    this.el.add_attribute(this.items[0].el , 'markup', 0 );\n\n}\n",
+           "* init" : "\n    this.el.add_attribute(_this.cr_repo.el , \"markup\", 0 );\n",
            "title" : "Repo",
            "* pack" : "append_column",
            "xtype" : "TreeViewColumn",
            "resizable" : true,
            "items" : [
             {
+             "id" : "cr_repo",
              "* pack" : "pack_start",
              "xtype" : "CellRendererText",
              "$ xns" : "Gtk"
           },
           {
            "id" : "tv_current_branch",
-           "* init" : "function() {\n    XObject.prototype.init.call(this);\n    this.el.add_attribute(this.items[0].el , 'markup', 1 );\n     this.el.add_attribute(this.items[0].el , 'cell-background', 7 );\n\n}\n",
+           "* init" : "function() {\n    XObject.prototype.init.call(this);\n    this.el.add_attribute(_this.cr_current_branch.el , \"markup\", 1 );\n     this.el.add_attribute(_this.cr_current_branch.el, \"cell-background\", 7 );\n\n}\n",
            "* pack" : "append_column",
            "title" : "Current Branch",
            "xtype" : "TreeViewColumn",
            "$ xns" : "Gtk",
            "items" : [
             {
+             "id" : "cr_current_branch",
              "* pack" : "pack_start",
              "xtype" : "CellRendererText",
              "$ xns" : "Gtk"
           },
           {
            "id" : "tv_last_updated",
-           "* init" : "function() {\n    XObject.prototype.init.call(this);\n    this.el.add_attribute(this.items[0].el , 'markup', 3 );\n\n}\n",
+           "* init" : "\n    this.el.add_attribute(_this.cr_last_updated.el , 'markup', 3 );\n",
            "* pack" : "append_column",
            "title" : "Last updated",
            "xtype" : "TreeViewColumn",
            "$ xns" : "Gtk",
            "items" : [
             {
+             "id" : "cr_last_updated",
              "* pack" : "pack_start",
              "xtype" : "CellRendererText",
              "$ xns" : "Gtk"
           },
           {
            "id" : "tv_all_branches",
-           "* init" : "function() {\n    XObject.prototype.init.call(this);\n    this.el.add_attribute(this.items[0].el , 'markup', 2 );\n\n}\n",
+           "* init" : "    this.el.add_attribute(_this.cr_all_branches.el , 'markup', 2 );\n\n",
            "title" : "All Branches",
            "* pack" : "append_column",
            "xtype" : "TreeViewColumn",
            "resizable" : false,
            "items" : [
             {
+             "id" : "cr_all_branches",
              "* pack" : "pack_start",
              "xtype" : "CellRendererText",
              "$ xns" : "Gtk"
            ]
           }
          ]
-        },
-        {
-         "* pack" : false,
-         "xtype" : "TreeView",
-         "$ xns" : "Gtk",
-         "items" : [
-          {
-           "* pack" : false,
-           "xtype" : "ListStore",
-           "$ xns" : "Gtk"
-          }
-         ]
         }
        ]
       }