X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=RepoStatusPopover.vala;h=8876adf392a0b8eebfc578e672f6b17ecbba3a07;hp=e98c999902db1973641d32c76a78a753063614de;hb=dfb3663252725cbb0dfa77de118da220f2011238;hpb=72a4edfbda67d0bf3eb93a91c28c4084945ddae5 diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index e98c9999..8876adf3 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -92,6 +92,12 @@ public class RepoStatusPopover : Object var child_1 = new Xcls_Box12( _this ); child_1.ref(); this.el.pack_end ( child_1.el , false,false,0 ); + var child_2 = new Xcls_Button18( _this ); + child_2.ref(); + this.el.add ( child_2.el ); + var child_3 = new Xcls_Button19( _this ); + child_3.ref(); + this.el.add ( child_3.el ); } // user defined functions @@ -363,6 +369,9 @@ public class RepoStatusPopover : Object var child_3 = new Xcls_Button16( _this ); child_3.ref(); this.el.add ( child_3.el ); + var child_4 = new Xcls_Button17( _this ); + child_4.ref(); + this.el.add ( child_4.el ); } // user defined functions @@ -506,6 +515,123 @@ public class RepoStatusPopover : Object // user defined functions } + public class Xcls_Button17 : Object + { + public Gtk.Button el; + private RepoStatusPopover _this; + + + // my vars (def) + + // ctor + public Xcls_Button17(RepoStatusPopover _owner ) + { + _this = _owner; + this.el = new Gtk.Button(); + + // my vars (dec) + + // set gobject values + this.el.label = "Stash Changes"; + + //listeners + this.el.button_press_event.connect( () => { + + + GitMonitor.gitmonitor.stop(); + _this.repo.git({ "stash" , "--all" }); + _this.repo.loadStatus(); + GitMonitor.gitmonitor.start(); + _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff); + _this.status_view.el.get_buffer().set_text(_this.repo.git_status); + Clones.singleton().reposStore.load(); + + _this.el.hide(); + return false; + }); + } + + // user defined functions + } + + + public class Xcls_Button18 : Object + { + public Gtk.Button el; + private RepoStatusPopover _this; + + + // my vars (def) + + // ctor + public Xcls_Button18(RepoStatusPopover _owner ) + { + _this = _owner; + this.el = new Gtk.Button(); + + // my vars (dec) + + // set gobject values + this.el.label = "Stash Changes"; + + //listeners + this.el.button_press_event.connect( () => { + + + GitMonitor.gitmonitor.stop(); + _this.repo.git({ "stash" , "--all" }); + _this.repo.loadStatus(); + GitMonitor.gitmonitor.start(); + _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff); + _this.status_view.el.get_buffer().set_text(_this.repo.git_status); + Clones.singleton().reposStore.load(); + + _this.el.hide(); + return false; + }); + } + + // user defined functions + } + + public class Xcls_Button19 : Object + { + public Gtk.Button el; + private RepoStatusPopover _this; + + + // my vars (def) + + // ctor + public Xcls_Button19(RepoStatusPopover _owner ) + { + _this = _owner; + this.el = new Gtk.Button(); + + // my vars (dec) + + // set gobject values + this.el.label = "Stash Changes"; + + //listeners + this.el.button_press_event.connect( () => { + + + GitMonitor.gitmonitor.stop(); + _this.repo.git({ "stash" , "--all" }); + _this.repo.loadStatus(); + GitMonitor.gitmonitor.start(); + _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff); + _this.status_view.el.get_buffer().set_text(_this.repo.git_status); + Clones.singleton().reposStore.load(); + + _this.el.hide(); + return false; + }); + } + + // user defined functions + } }