comparison src/changesetitem.h @ 506:470829a21f98

Identify closed branches and display them in a lighter shade
author Chris Cannam
date Mon, 17 Oct 2011 22:08:05 +0100
parents 8bdc8f27d19c
children c43880dfdb78
comparison
equal deleted inserted replaced
505:1c05e7576ea5 506:470829a21f98
49 void setWide(bool w) { m_wide = w; } 49 void setWide(bool w) { m_wide = w; }
50 50
51 bool isCurrent() const { return m_current; } 51 bool isCurrent() const { return m_current; }
52 void setCurrent(bool c) { m_current = c; } 52 void setCurrent(bool c) { m_current = c; }
53 53
54 bool isClosed() const { return m_closed; }
55 void setClosed(bool c) { m_closed = c; }
56
54 bool isNew() const { return m_new; } 57 bool isNew() const { return m_new; }
55 void setNew(bool n) { m_new = n; } 58 void setNew(bool n) { m_new = n; }
56 59
57 bool showBranch() const { return m_showBranch; } 60 bool showBranch() const { return m_showBranch; }
58 void setShowBranch(bool s) { m_showBranch = s; } 61 void setShowBranch(bool s) { m_showBranch = s; }
96 bool m_showBranch; 99 bool m_showBranch;
97 int m_column; 100 int m_column;
98 int m_row; 101 int m_row;
99 bool m_wide; 102 bool m_wide;
100 bool m_current; 103 bool m_current;
104 bool m_closed;
101 bool m_new; 105 bool m_new;
102 106
103 QMap<QAction *, QString> m_parentDiffActions; 107 QMap<QAction *, QString> m_parentDiffActions;
104 QMap<QAction *, QString> m_summaryActions; 108 QMap<QAction *, QString> m_summaryActions;
105 109