comparison changesetitem.h @ 128:fcaf09ee825d

* Show tags and current working copy parents in history graph
author Chris Cannam
date Mon, 29 Nov 2010 20:09:58 +0000
parents 005a54380502
children aaeab914f2a3
comparison
equal deleted inserted replaced
127:758471b71721 128:fcaf09ee825d
43 void setRow(int r) { m_row = r; setY(r * 90); } 43 void setRow(int r) { m_row = r; setY(r * 90); }
44 44
45 bool isWide() const { return m_wide; } 45 bool isWide() const { return m_wide; }
46 void setWide(bool w) { m_wide = w; } 46 void setWide(bool w) { m_wide = w; }
47 47
48 bool isCurrent() const { return m_current; }
49 void setCurrent(bool c) { m_current = c; }
50
48 bool shouldShowBranch() const { return m_showBranch; } 51 bool shouldShowBranch() const { return m_showBranch; }
49 void setShowBranch(bool s) { m_showBranch = s; } 52 void setShowBranch(bool s) { m_showBranch = s; }
50 53
51 signals: 54 signals:
52 void detailShown(); 55 void detailShown();
65 ChangesetDetailItem *m_detail; 68 ChangesetDetailItem *m_detail;
66 bool m_showBranch; 69 bool m_showBranch;
67 int m_column; 70 int m_column;
68 int m_row; 71 int m_row;
69 bool m_wide; 72 bool m_wide;
73 bool m_current;
70 }; 74 };
71 75
72 #endif // CHANGESETITEM_H 76 #endif // CHANGESETITEM_H