Mercurial > hg > easyhg
comparison src/mainwindow.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 | 41a156d439d0 |
children | 306a62fe851e |
comparison
equal
deleted
inserted
replaced
505:1c05e7576ea5 | 506:470829a21f98 |
---|---|
119 | 119 |
120 void newerVersionAvailable(QString); | 120 void newerVersionAvailable(QString); |
121 | 121 |
122 private: | 122 private: |
123 void hgQueryBranch(); | 123 void hgQueryBranch(); |
124 void hgQueryHeadsActive(); | |
124 void hgQueryHeads(); | 125 void hgQueryHeads(); |
125 void hgQueryParents(); | 126 void hgQueryParents(); |
126 void hgLog(); | 127 void hgLog(); |
127 void hgLogIncremental(QStringList prune); | 128 void hgLogIncremental(QStringList prune); |
128 | 129 |
176 | 177 |
177 void updateFileSystemWatcher(); | 178 void updateFileSystemWatcher(); |
178 void suspendFileSystemWatcher(); | 179 void suspendFileSystemWatcher(); |
179 void restoreFileSystemWatcher(); | 180 void restoreFileSystemWatcher(); |
180 | 181 |
182 void updateClosedHeads(); | |
183 | |
181 void updateWorkFolderAndRepoNames(); | 184 void updateWorkFolderAndRepoNames(); |
182 | 185 |
183 WorkStatusWidget *m_workStatus; | 186 WorkStatusWidget *m_workStatus; |
184 HgTabWidget *m_hgTabs; | 187 HgTabWidget *m_hgTabs; |
185 | 188 |
186 QString m_remoteRepoPath; | 189 QString m_remoteRepoPath; |
187 QString m_workFolderPath; | 190 QString m_workFolderPath; |
188 QString m_currentBranch; | 191 QString m_currentBranch; |
189 Changesets m_currentHeads; | 192 Changesets m_currentHeads; |
193 Changesets m_activeHeads; | |
194 QSet<QString> m_closedHeadIds; | |
190 Changesets m_currentParents; | 195 Changesets m_currentParents; |
191 int m_commitsSincePush; | 196 int m_commitsSincePush; |
192 bool m_stateUnknown; | 197 bool m_stateUnknown; |
193 bool m_hgIsOK; | 198 bool m_hgIsOK; |
194 bool m_needNewLog; | 199 bool m_needNewLog; |