comparison changesetitem.h @ 74:10eb97683aa9

* Show branch names even for changes with children, if those children are on a different branch * Pick up remote repo path from local repo via hg paths * Some work towards breaking down files into various groups based on status * Add /usr/local/bin to path for hg (temporary hack I hope)
author Chris Cannam
date Fri, 19 Nov 2010 14:54:19 +0000
parents f583e44d9d31
children d5db15bf250c
comparison
equal deleted inserted replaced
73:a773c6e7b301 74:10eb97683aa9
39 void setRow(int r) { m_row = r; setY(r * 90); } 39 void setRow(int r) { m_row = r; setY(r * 90); }
40 40
41 bool isWide() const { return m_wide; } 41 bool isWide() const { return m_wide; }
42 void setWide(bool w) { m_wide = w; } 42 void setWide(bool w) { m_wide = w; }
43 43
44 bool shouldShowBranch() const { return m_showBranch; }
45 void setShowBranch(bool s) { m_showBranch = s; }
46
44 private: 47 private:
45 QFont m_font; 48 QFont m_font;
46 Changeset *m_changeset; 49 Changeset *m_changeset;
50 bool m_showBranch;
47 int m_column; 51 int m_column;
48 int m_row; 52 int m_row;
49 bool m_wide; 53 bool m_wide;
50 }; 54 };
51 55