comparison src/changesetitem.h @ 514:306a62fe851e

Add "Close branch" menu option. Is currently available in some cases where it should not be, and using it exposes the fact that the chain of marked-closed changesets is not yet right in grapher.
author Chris Cannam
date Tue, 18 Oct 2011 16:50:05 +0100
parents c623ce6b3104
children 000f13faa089
comparison
equal deleted inserted replaced
513:ddc7238fc3b0 514:306a62fe851e
73 void diffToCurrent(QString); 73 void diffToCurrent(QString);
74 void diffToParent(QString child, QString parent); 74 void diffToParent(QString child, QString parent);
75 void showSummary(Changeset *); 75 void showSummary(Changeset *);
76 void mergeFrom(QString); 76 void mergeFrom(QString);
77 void newBranch(QString); 77 void newBranch(QString);
78 void closeBranch(QString);
78 void tag(QString); 79 void tag(QString);
79 80
80 public slots: 81 public slots:
81 void showDetail(); 82 void showDetail();
82 void hideDetail(); 83 void hideDetail();
88 void showSummaryActivated(); 89 void showSummaryActivated();
89 void diffToCurrentActivated(); 90 void diffToCurrentActivated();
90 void mergeActivated(); 91 void mergeActivated();
91 void tagActivated(); 92 void tagActivated();
92 void newBranchActivated(); 93 void newBranchActivated();
94 void closeBranchActivated();
93 95
94 protected: 96 protected:
95 virtual void mousePressEvent(QGraphicsSceneMouseEvent *); 97 virtual void mousePressEvent(QGraphicsSceneMouseEvent *);
96 virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *); 98 virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *);
97 99