comparison mainwindow.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 6d5a5571caec
children aaeabc920ca8
comparison
equal deleted inserted replaced
73:a773c6e7b301 74:10eb97683aa9
31 QT_END_NAMESPACE 31 QT_END_NAMESPACE
32 32
33 enum HGACTIONS 33 enum HGACTIONS
34 { 34 {
35 ACT_NONE, 35 ACT_NONE,
36 ACT_PATHS,
36 ACT_STAT, 37 ACT_STAT,
37 ACT_HEADS, 38 ACT_HEADS,
38 ACT_PARENTS, 39 ACT_PARENTS,
39 ACT_LOG, 40 ACT_LOG,
40 ACT_REMOVE, 41 ACT_REMOVE,
78 79
79 protected: 80 protected:
80 void closeEvent(QCloseEvent *event); 81 void closeEvent(QCloseEvent *event);
81 82
82 public slots: 83 public slots:
84 void hgPaths();
83 void hgStat(); 85 void hgStat();
84 void tabChanged(int currTab); 86 void tabChanged(int currTab);
85 void commandCompleted(); 87 void commandCompleted();
86 void commandFailed(); 88 void commandFailed();
87 89