comparison grapher.h @ 273:cc95394e2392 easyhg_v0.3.2

* Add warning dialog for "restore default settings"; add option for dates or ages in history list
author Chris Cannam
date Tue, 25 Jan 2011 16:41:40 +0000
parents b8ded5213d16
children
comparison
equal deleted inserted replaced
272:256138a4ed0e 273:cc95394e2392
30 #include <exception> 30 #include <exception>
31 31
32 class Grapher 32 class Grapher
33 { 33 {
34 public: 34 public:
35 Grapher(ChangesetScene *scene) { m_scene = scene; } 35 Grapher(ChangesetScene *scene);
36 36
37 void layout(Changesets csets, 37 void layout(Changesets csets,
38 QStringList uncommittedParents, 38 QStringList uncommittedParents,
39 QString uncommittedBranch); 39 QString uncommittedBranch);
40 40
77 IdSet m_handled; 77 IdSet m_handled;
78 78
79 typedef QMap<int, QString> RowDateMap; 79 typedef QMap<int, QString> RowDateMap;
80 RowDateMap m_rowDates; 80 RowDateMap m_rowDates;
81 81
82 bool m_showDates;
83
82 QStringList m_uncommittedParents; 84 QStringList m_uncommittedParents;
83 int m_uncommittedParentRow; 85 int m_uncommittedParentRow;
84 UncommittedItem *m_uncommitted; 86 UncommittedItem *m_uncommitted;
85 bool m_haveAllocatedUncommittedColumn; 87 bool m_haveAllocatedUncommittedColumn;
86 88