RepoStatusPopover.bjs
[gitlive] / RepoStatusPopover.bjs
1 {
2  "name" : "RepoStatusPopover",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/gitlive/RepoStatusPopover.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "gitlive",
9  "items" : [
10   {
11    "GitRepo repo" : "",
12    "| void show" : " (Gtk.Widget btn, Gdk.Rectangle rect, GitRepo repo) {\n    _this.repo = repo;\n    // get the active project.\n     var lm = Gtk.SourceLanguageManager.get_default();\n                \n//    ((Gtk.SourceBuffer)(_this.view.el.get_buffer())) .set_language(\n  //      lm.get_language(\"html\")\n //   );\n  \n    //print (project.fn);\n    //project.runhtml = project.runhtml || '';\n    _this.diff_view.el.get_buffer().set_text(repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(repo.git_status);\n       \n    \t//console.log('show all');\n\tthis.el.set_modal(true);\n\tthis.el.set_relative_to(btn);\n    this.el.set_pointing_to(rect);\n  \n\t//this.el.set_position(Gtk.PositionType.RIGHT);\n\n\t// window + header?\n\t GLib.debug(\"SHOWALL - POPIP\\n\");\n\tthis.el.show_all();\n\t//this.el.set_size_request(800,500);\n//\tthis.diff_view.el.grab_focus();\n\t\n    //this.el.show_all();\n}\n",
13    "xtype" : "Popover",
14    "Gtk.PositionType position" : "Gtk.PositionType.RIGHT",
15    "$ xns" : "Gtk",
16    "bool modal" : true,
17    "uint border_width" : 0,
18    "items" : [
19     {
20      "xtype" : "Box",
21      "* pack" : "add",
22      "$ xns" : "Gtk",
23      "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
24      "border_width" : 5,
25      "$ homogeneous" : false,
26      "items" : [
27       {
28        "* pack" : "pack_end,false,false,0",
29        "xtype" : "Box",
30        "gboolean expand" : false,
31        "$ xns" : "Gtk",
32        "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
33        "$ homogeneous" : true,
34        "gboolean vexpand" : false,
35        "items" : [
36         {
37          "Gtk.ToolbarStyle toolbar_style" : "Gtk.ToolbarStyle.BOTH_HORIZ",
38          "* pack" : "add",
39          "xtype" : "Toolbar",
40          "$ xns" : "Gtk",
41          "items" : [
42           {
43            "listeners" : {
44             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"stash\" , \"--all\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
45            },
46            "label" : "Stash Changes",
47            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-undo\", Gtk.IconSize.SMALL_TOOLBAR), null);",
48            "xtype" : "ToolButton",
49            "* pack" : "add",
50            "$ xns" : "Gtk",
51            "bool is_important" : true
52           },
53           {
54            "listeners" : {
55             "button_press_event" : "() => {\n   _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", \"Uncommited changes synced\" });\n   _this.repo.push();\n   _this.repo.loadStatus();\n   \n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    \n   _this.el.hide();\n   Clones.singleton().reposStore.load();\n   \n    return false;\n}"
56            },
57            "label" : "Commit Changes",
58            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-save\", Gtk.IconSize.SMALL_TOOLBAR), null);",
59            "* pack" : "add",
60            "xtype" : "ToolButton",
61            "$ xns" : "Gtk",
62            "bool is_important" : true
63           },
64           {
65            "listeners" : {
66             "button_press_event" : "() => {\n   var oldq = new Gee.ArrayList<GitMonitorQueue>();  \n\n\tClones.singleton().el.response(-1);\n\tNewBranch.singleton().show(_this.repo, oldq);\n\n    return false;\n}"
67            },
68            "label" : "Create Branch / Start ticket",
69            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-add\", Gtk.IconSize.SMALL_TOOLBAR), null);",
70            "xtype" : "ToolButton",
71            "* pack" : "add",
72            "$ xns" : "Gtk",
73            "bool is_important" : true
74           },
75           {
76            "listeners" : {
77             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"reset\" , \"--hard\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
78            },
79            "label" : "Reset / clear changes",
80            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-revert-to-saved\", Gtk.IconSize.SMALL_TOOLBAR), null);",
81            "* pack" : "add",
82            "xtype" : "ToolButton",
83            "$ xns" : "Gtk",
84            "bool is_important" : true
85           },
86           {
87            "listeners" : {
88             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"pull\" , \"--all\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
89            },
90            "label" : "Pull updates",
91            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-bottom\", Gtk.IconSize.SMALL_TOOLBAR), null);",
92            "xtype" : "ToolButton",
93            "* pack" : "add",
94            "$ xns" : "Gtk",
95            "bool is_important" : true
96           },
97           {
98            "listeners" : {
99             "button_press_event" : "() => {\n\n   _this.el.hide();\n   Clones.singleton().el.response(-1);\n   if (_this.repo.activeTicket != null) {\n\t   MergeBranch.singleton().show(_this.repo.activeTicket, null);   \n   }\n    return false;\n}"
100            },
101            "label" : "Merge branch/  ticket",
102            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-top\", Gtk.IconSize.SMALL_TOOLBAR), null);",
103            "xtype" : "ToolButton",
104            "* pack" : "add",
105            "$ xns" : "Gtk",
106            "bool is_important" : true
107           },
108           {
109            "listeners" : {
110             "button_press_event" : "() => {\n  \n\n\n      Clones.singleton().el.response(-1);\n  \n   _this.el.hide();\n   Ticket.singleton().show( _this.repo);\n   \n    return false;\n}"
111            },
112            "label" : "Create Ticket",
113            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-new\", Gtk.IconSize.SMALL_TOOLBAR), null);",
114            "* pack" : "add",
115            "xtype" : "ToolButton",
116            "$ xns" : "Gtk",
117            "bool is_important" : true
118           }
119          ]
120         }
121        ]
122       },
123       {
124        "* pack" : "pack_start,true,true,0",
125        "xtype" : "Notebook",
126        "$ xns" : "Gtk",
127        "items" : [
128         {
129          "id" : "label_status",
130          "xtype" : "Label",
131          "* pack" : false,
132          "$ xns" : "Gtk",
133          "utf8 label" : "Status"
134         },
135         {
136          "id" : "label_diff",
137          "* pack" : false,
138          "xtype" : "Label",
139          "$ xns" : "Gtk",
140          "utf8 label" : "Diff"
141         },
142         {
143          "* pack" : "append_page,_this.label_status.el",
144          "xtype" : "Box",
145          "gboolean homogeneous" : false,
146          "$ xns" : "Gtk",
147          "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
148          "items" : [
149           {
150            "* pack" : "pack_start,true,true,0",
151            "xtype" : "ScrolledWindow",
152            "$ xns" : "Gtk",
153            "items" : [
154             {
155              "id" : "status_view",
156              "* init" : " \n    var description =   Pango.FontDescription.from_string(\"monospace\");\n    description.set_size(9000);\n    this.el.override_font(description);",
157              "xtype" : "View",
158              "* pack" : "add",
159              "$ xns" : "GtkSource"
160             }
161            ]
162           }
163          ]
164         },
165         {
166          "* pack" : "append_page,_this.label_diff.el",
167          "xtype" : "Box",
168          "gboolean homogeneous" : false,
169          "$ xns" : "Gtk",
170          "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
171          "items" : [
172           {
173            "int height_request" : 400,
174            "xtype" : "ScrolledWindow",
175            "* pack" : "pack_start,true,true,0",
176            "$ xns" : "Gtk",
177            "items" : [
178             {
179              "id" : "diff_view",
180              "* init" : " \n    var description =   Pango.FontDescription.from_string(\"monospace\");\n    description.set_size(9000);\n    this.el.override_font(description);",
181              "xtype" : "View",
182              "* pack" : "add",
183              "$ xns" : "GtkSource"
184             }
185            ]
186           }
187          ]
188         }
189        ]
190       },
191       {
192        "* pack" : "pack_end,false,false,0",
193        "xtype" : "Box",
194        "gboolean expand" : false,
195        "$ xns" : "Gtk",
196        "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
197        "$ homogeneous" : true,
198        "gboolean vexpand" : false,
199        "items" : [
200         {
201          "Gtk.ToolbarStyle toolbar_style" : "Gtk.ToolbarStyle.BOTH_HORIZ",
202          "xtype" : "Toolbar",
203          "* pack" : "add",
204          "$ xns" : "Gtk",
205          "items" : [
206           {
207            "listeners" : {
208             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"stash\" , \"--all\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
209            },
210            "label" : "Stash Changes",
211            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-undo\", Gtk.IconSize.SMALL_TOOLBAR), null);",
212            "xtype" : "ToolButton",
213            "* pack" : "add",
214            "$ xns" : "Gtk",
215            "bool is_important" : true
216           },
217           {
218            "listeners" : {
219             "button_press_event" : "() => {\n   _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", \"Uncommited changes synced\" });\n   _this.repo.push();\n   _this.repo.loadStatus();\n   \n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    \n   _this.el.hide();\n   Clones.singleton().reposStore.load();\n   \n    return false;\n}"
220            },
221            "label" : "Commit Changes",
222            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-save\", Gtk.IconSize.SMALL_TOOLBAR), null);",
223            "* pack" : "add",
224            "xtype" : "ToolButton",
225            "$ xns" : "Gtk",
226            "bool is_important" : true
227           },
228           {
229            "listeners" : {
230             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"reset\" , \"--hard\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
231            },
232            "label" : "Reset / clear changes",
233            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-revert-to-saved\", Gtk.IconSize.SMALL_TOOLBAR), null);",
234            "* pack" : "add",
235            "xtype" : "ToolButton",
236            "$ xns" : "Gtk",
237            "bool is_important" : true
238           },
239           {
240            "listeners" : {
241             "button_press_event" : "() => {\n  \n   \n   GitMonitor.gitmonitor.stop();\n   _this.repo.git({ \"pull\" , \"--all\" });\n   _this.repo.loadStatus();\n   GitMonitor.gitmonitor.start();\n    _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n    _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n    Clones.singleton().reposStore.load();\n  \n   _this.el.hide();\n    return false;\n}"
242            },
243            "label" : "Pull updates",
244            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-bottom\", Gtk.IconSize.SMALL_TOOLBAR), null);",
245            "xtype" : "ToolButton",
246            "* pack" : "add",
247            "$ xns" : "Gtk",
248            "bool is_important" : true
249           },
250           {
251            "listeners" : {
252             "button_press_event" : "() => {\n   var oldq = new Gee.ArrayList<GitMonitorQueue>();  \n\n\tClones.singleton().el.response(-1);\n\tNewBranch.singleton().show(_this.repo, oldq);\n\n    return false;\n}"
253            },
254            "label" : "Create Branch / Start ticket",
255            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-add\", Gtk.IconSize.SMALL_TOOLBAR), null);",
256            "xtype" : "ToolButton",
257            "* pack" : "add",
258            "$ xns" : "Gtk",
259            "bool is_important" : true
260           },
261           {
262            "listeners" : {
263             "button_press_event" : "() => {\n\n   _this.el.hide();\n   Clones.singleton().el.response(-1);\n   if (_this.repo.activeTicket != null) {\n\t   MergeBranch.singleton().show(_this.repo.activeTicket, null);   \n   }\n    return false;\n}"
264            },
265            "label" : "Merge branch/  ticket",
266            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-top\", Gtk.IconSize.SMALL_TOOLBAR), null);",
267            "xtype" : "ToolButton",
268            "* pack" : "add",
269            "$ xns" : "Gtk",
270            "bool is_important" : true
271           },
272           {
273            "listeners" : {
274             "button_press_event" : "() => {\n  \n\n\n      Clones.singleton().el.response(-1);\n  \n   _this.el.hide();\n   Ticket.singleton().show( _this.repo);\n   \n    return false;\n}"
275            },
276            "label" : "Create Ticket",
277            "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-new\", Gtk.IconSize.SMALL_TOOLBAR), null);",
278            "* pack" : "add",
279            "xtype" : "ToolButton",
280            "$ xns" : "Gtk",
281            "bool is_important" : true
282           }
283          ]
284         }
285        ]
286       }
287      ]
288     }
289    ]
290   }
291  ]
292 }