Mercurial > hg > easyhg
comparison mainwindow.h @ 17:9b52042baf39
Implemented multiple selection to work folder list (and changes to add/commit logic).
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Tue, 18 May 2010 01:45:20 +0300 |
parents | 45c4ac1323b2 |
children | 16be237acf13 |
comparison
equal
deleted
inserted
replaced
16:3a0ff6f7b317 | 17:9b52042baf39 |
---|---|
143 void createStatusBar(); | 143 void createStatusBar(); |
144 void readSettings(); | 144 void readSettings(); |
145 void splitChangeSets(QStringList *list, QString hgLogOutput); | 145 void splitChangeSets(QStringList *list, QString hgLogOutput); |
146 int getCommitComment(QString& comment); | 146 int getCommitComment(QString& comment); |
147 void presentLongStdoutToUser(QString stdo); | 147 void presentLongStdoutToUser(QString stdo); |
148 void countAMRNModifications(QListWidget *workList, int& a, int& m, int& r, int& n); | 148 void countModifications(QListWidget *workList, int& added, int& modified, int& removed, int& notTracked, |
149 int& selected, | |
150 int& selectedAdded, int& selectedModified, int& selectedRemoved, int& selectedNotTracked); | |
149 bool isSelectedModified(QListWidget *workList); | 151 bool isSelectedModified(QListWidget *workList); |
150 bool isSelectedUntracked(QListWidget *workList); | 152 bool areAllSelectedUntracked(QListWidget *workList); |
151 bool isSelectedDeletable(QListWidget *workList); | 153 bool isSelectedDeletable(QListWidget *workList); |
152 bool isSelectedCommitable(QListWidget *workList); | 154 bool areAllSelectedCommitable(QListWidget *workList); |
155 QString findMyIps(); | |
153 | 156 |
154 | 157 |
155 //Actions enabled flags | 158 //Actions enabled flags |
156 bool remoteRepoActionsEnabled; | 159 bool remoteRepoActionsEnabled; |
157 bool localRepoActionsEnabled; | 160 bool localRepoActionsEnabled; |