comparison src/changesetitem.h @ 519:000f13faa089

Bookmarks are now displayed -- but exactly like tags, so far, there's no differentiation yet
author Chris Cannam
date Tue, 08 Nov 2011 16:42:09 +0000
parents 306a62fe851e
children a17c06f773cd
comparison
equal deleted inserted replaced
518:5c846f3c9244 519:000f13faa089
63 void setNew(bool n) { m_new = n; } 63 void setNew(bool n) { m_new = n; }
64 64
65 bool showBranch() const { return m_showBranch; } 65 bool showBranch() const { return m_showBranch; }
66 void setShowBranch(bool s) { m_showBranch = s; } 66 void setShowBranch(bool s) { m_showBranch = s; }
67 67
68 void setBookmarks(QStringList b) { m_bookmarks = b; }
69
68 signals: 70 signals:
69 void detailShown(); 71 void detailShown();
70 void detailHidden(); 72 void detailHidden();
71 73
72 void updateTo(QString); 74 void updateTo(QString);
108 int m_row; 110 int m_row;
109 bool m_wide; 111 bool m_wide;
110 bool m_current; 112 bool m_current;
111 bool m_closing; 113 bool m_closing;
112 bool m_new; 114 bool m_new;
115 QStringList m_bookmarks;
113 116
114 QMap<QAction *, QString> m_parentDiffActions; 117 QMap<QAction *, QString> m_parentDiffActions;
115 QMap<QAction *, QString> m_summaryActions; 118 QMap<QAction *, QString> m_summaryActions;
116 119
117 static QImage *m_star; 120 static QImage *m_star;