X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=RepoStatusPopover.vala;h=b43c6eef87c0fb2207aeb130502e7a230ff1e17e;hb=7650c3d24f43364f9f88a7515e9b9823cdecf875;hp=c101ae6895756dddd8998c0b27f03c69034e351a;hpb=5d7c45517e9c5ccb7409792966a48422c2dc9feb;p=gitlive diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index c101ae68..b43c6eef 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -16,6 +16,7 @@ public class RepoStatusPopover : Object public Xcls_label_diff label_diff; public Xcls_status_view status_view; public Xcls_diff_view diff_view; + public Xcls_btn_merge btn_merge; // my vars (def) public GitRepo repo; @@ -59,6 +60,13 @@ public class RepoStatusPopover : Object //this.el.set_position(Gtk.PositionType.RIGHT); + if (repo.activeTicket == null) { + _this.btn_merge.el.set_sensitive(false); + } else { + _this.btn_merge.el.set_sensitive(true); + } + + // window + header? GLib.debug("SHOWALL - POPIP\n"); this.el.show_all(); @@ -605,7 +613,7 @@ public class RepoStatusPopover : Object var child_0 = new Xcls_ToolButton20( _this ); child_0.ref(); this.el.add ( child_0.el ); - var child_1 = new Xcls_ToolButton21( _this ); + var child_1 = new Xcls_btn_merge( _this ); child_1.ref(); this.el.add ( child_1.el ); var child_2 = new Xcls_ToolButton22( _this ); @@ -649,7 +657,7 @@ public class RepoStatusPopover : Object // user defined functions } - public class Xcls_ToolButton21 : Object + public class Xcls_btn_merge : Object { public Gtk.ToolButton el; private RepoStatusPopover _this; @@ -658,27 +666,19 @@ public class RepoStatusPopover : Object // my vars (def) // ctor - public Xcls_ToolButton21(RepoStatusPopover _owner ) + public Xcls_btn_merge(RepoStatusPopover _owner ) { _this = _owner; + _this.btn_merge = this; this.el = new Gtk.ToolButton(new Gtk.Image.from_icon_name ("gtk-goto-top", Gtk.IconSize.SMALL_TOOLBAR), null);; // my vars (dec) // set gobject values - this.el.label = "Merge branch/ ticket"; + this.el.label = "Merge branch / Complete ticket"; this.el.is_important = true; //listeners - this.el.button_press_event.connect( () => { - - _this.el.hide(); - Clones.singleton().el.response(-1); - if (_this.repo.activeTicket != null) { - MergeBranch.singleton().show(_this.repo.activeTicket, null); - } - return false; - }); this.el.clicked.connect( () => { _this.el.hide(); @@ -686,7 +686,7 @@ public class RepoStatusPopover : Object if (_this.repo.activeTicket != null) { MergeBranch.singleton().show(_this.repo.activeTicket, null); } - return false; + return ; }); }