annotate 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
rev   line source
Chris@57 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@57 2
Chris@57 3 /*
Chris@57 4 EasyMercurial
Chris@57 5
Chris@57 6 Based on HgExplorer by Jari Korhonen
Chris@57 7 Copyright (c) 2010 Jari Korhonen
Chris@244 8 Copyright (c) 2011 Chris Cannam
Chris@244 9 Copyright (c) 2011 Queen Mary, University of London
Chris@57 10
Chris@57 11 This program is free software; you can redistribute it and/or
Chris@57 12 modify it under the terms of the GNU General Public License as
Chris@57 13 published by the Free Software Foundation; either version 2 of the
Chris@57 14 License, or (at your option) any later version. See the file
Chris@57 15 COPYING included with this distribution for more information.
Chris@57 16 */
Chris@57 17
Chris@43 18 #ifndef CHANGESETITEM_H
Chris@43 19 #define CHANGESETITEM_H
Chris@43 20
Chris@168 21 #include <QGraphicsObject>
Chris@53 22 #include <QFont>
Chris@43 23
Chris@43 24 class Changeset;
Chris@117 25 class ChangesetDetailItem;
Chris@43 26
Chris@153 27 class QAction;
Chris@390 28 class QImage;
Chris@153 29
Chris@168 30 class ChangesetItem : public QGraphicsObject
Chris@43 31 {
Chris@119 32 Q_OBJECT
Chris@119 33
Chris@43 34 public:
Chris@53 35 ChangesetItem(Changeset *cs);
Chris@43 36
Chris@43 37 virtual QRectF boundingRect() const;
Chris@43 38 virtual void paint(QPainter *, const QStyleOptionGraphicsItem *, QWidget *);
Chris@43 39
Chris@53 40 Changeset *getChangeset() { return m_changeset; }
Chris@141 41 QString getId();
Chris@53 42
Chris@44 43 int column() const { return m_column; }
Chris@44 44 int row() const { return m_row; }
Chris@46 45 void setColumn(int c) { m_column = c; setX(c * 100); }
Chris@53 46 void setRow(int r) { m_row = r; setY(r * 90); }
Chris@44 47
Chris@55 48 bool isWide() const { return m_wide; }
Chris@55 49 void setWide(bool w) { m_wide = w; }
Chris@55 50
Chris@128 51 bool isCurrent() const { return m_current; }
Chris@128 52 void setCurrent(bool c) { m_current = c; }
Chris@128 53
Chris@508 54 // Closed is true if this changeset is on a closed branch
Chris@510 55 bool isClosed() const;
Chris@506 56
Chris@508 57 // Closing is true if this changeset is the commit that closed its
Chris@508 58 // branch (i.e. is at the end of a closed branch)
Chris@508 59 bool isClosingCommit() const { return m_closing; }
Chris@508 60 void setClosingCommit(bool c) { m_closing = c; }
Chris@508 61
Chris@133 62 bool isNew() const { return m_new; }
Chris@133 63 void setNew(bool n) { m_new = n; }
Chris@133 64
Chris@153 65 bool showBranch() const { return m_showBranch; }
Chris@74 66 void setShowBranch(bool s) { m_showBranch = s; }
Chris@74 67
Chris@119 68 signals:
Chris@119 69 void detailShown();
Chris@119 70 void detailHidden();
Chris@119 71
Chris@141 72 void updateTo(QString);
Chris@141 73 void diffToCurrent(QString);
Chris@148 74 void diffToParent(QString child, QString parent);
Chris@289 75 void showSummary(Changeset *);
Chris@141 76 void mergeFrom(QString);
Chris@278 77 void newBranch(QString);
Chris@514 78 void closeBranch(QString);
Chris@141 79 void tag(QString);
Chris@141 80
Chris@119 81 public slots:
Chris@119 82 void showDetail();
Chris@119 83 void hideDetail();
Chris@119 84
Chris@141 85 private slots:
Chris@153 86 void copyIdActivated();
Chris@141 87 void updateActivated();
Chris@153 88 void diffToParentActivated();
Chris@289 89 void showSummaryActivated();
Chris@141 90 void diffToCurrentActivated();
Chris@141 91 void mergeActivated();
Chris@141 92 void tagActivated();
Chris@278 93 void newBranchActivated();
Chris@514 94 void closeBranchActivated();
Chris@141 95
Chris@117 96 protected:
Chris@117 97 virtual void mousePressEvent(QGraphicsSceneMouseEvent *);
Chris@474 98 virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *);
Chris@117 99
Chris@43 100 private:
Chris@140 101 void activateMenu();
Chris@140 102
Chris@53 103 QFont m_font;
Chris@43 104 Changeset *m_changeset;
Chris@117 105 ChangesetDetailItem *m_detail;
Chris@74 106 bool m_showBranch;
Chris@44 107 int m_column;
Chris@44 108 int m_row;
Chris@55 109 bool m_wide;
Chris@128 110 bool m_current;
Chris@508 111 bool m_closing;
Chris@133 112 bool m_new;
Chris@153 113
Chris@153 114 QMap<QAction *, QString> m_parentDiffActions;
Chris@288 115 QMap<QAction *, QString> m_summaryActions;
Chris@387 116
Chris@390 117 static QImage *m_star;
Chris@390 118
Chris@387 119 bool isMerge() const;
Chris@399 120 void paintNormal(QPainter *);
Chris@508 121 void paintSimple(QPainter *);
Chris@43 122 };
Chris@43 123
Chris@43 124 #endif // CHANGESETITEM_H