annotate src/mainwindow.h @ 417:4593555915cf ignore

Make ignore function largely work
author Chris Cannam
date Thu, 16 Jun 2011 15:33:28 +0100
parents 2a19d5706673
children ad106f5fe75f
rev   line source
Chris@57 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@57 2
Chris@57 3 /*
Chris@57 4 EasyMercurial
Chris@57 5
Chris@98 6 Based on hgExplorer by Jari Korhonen
Chris@57 7 Copyright (c) 2010 Jari Korhonen
Chris@244 8 Copyright (c) 2011 Chris Cannam
Chris@244 9 Copyright (c) 2011 Queen Mary, University of London
Chris@57 10
Chris@57 11 This program is free software; you can redistribute it and/or
Chris@57 12 modify it under the terms of the GNU General Public License as
Chris@57 13 published by the Free Software Foundation; either version 2 of the
Chris@57 14 License, or (at your option) any later version. See the file
Chris@57 15 COPYING included with this distribution for more information.
Chris@57 16 */
jtkorhonen@0 17
jtkorhonen@0 18 #ifndef MAINWINDOW_H
jtkorhonen@0 19 #define MAINWINDOW_H
jtkorhonen@0 20
Chris@96 21 #include "hgtabwidget.h"
jtkorhonen@0 22 #include "hgrunner.h"
jtkorhonen@0 23 #include "common.h"
Chris@106 24 #include "changeset.h"
Chris@109 25 #include "hgaction.h"
jtkorhonen@0 26
Chris@50 27 #include <QMainWindow>
Chris@50 28 #include <QListWidget>
Chris@90 29 #include <QFileSystemWatcher>
Chris@50 30
jtkorhonen@0 31 QT_BEGIN_NAMESPACE
jtkorhonen@0 32 class QAction;
jtkorhonen@0 33 class QMenu;
Chris@238 34 class QTimer;
jtkorhonen@0 35 QT_END_NAMESPACE
jtkorhonen@0 36
Chris@287 37 class WorkStatusWidget;
Chris@287 38
jtkorhonen@0 39 class MainWindow : public QMainWindow
jtkorhonen@0 40 {
jtkorhonen@0 41 Q_OBJECT
jtkorhonen@0 42
jtkorhonen@0 43 public:
Chris@172 44 MainWindow(QString myDirPath);
jtkorhonen@0 45
jtkorhonen@0 46 protected:
jtkorhonen@0 47 void closeEvent(QCloseEvent *event);
jtkorhonen@0 48
jtkorhonen@0 49 public slots:
Chris@145 50 void open(QString local);
Chris@120 51 void hgRefresh();
Chris@238 52 void commandStarting(HgAction);
Chris@142 53 void commandCompleted(HgAction action, QString stdOut);
Chris@142 54 void commandFailed(HgAction action, QString stdErr);
Chris@95 55 void enableDisableActions();
jtkorhonen@0 56
jtkorhonen@0 57 private slots:
jtkorhonen@0 58 void about();
Chris@64 59 void settings();
Chris@69 60 void open();
Chris@359 61 void recentMenuActivated();
Chris@182 62 void changeRemoteRepo();
Chris@363 63 void changeRemoteRepo(bool initial);
Chris@64 64 void startupDialog();
Chris@94 65 void clearSelections();
Chris@199 66 void showAllChanged(bool);
Chris@64 67
Chris@175 68 void hgTest();
Chris@200 69 void hgTestExtension();
Chris@120 70 void hgQueryPaths();
Chris@120 71 void hgStat();
jtkorhonen@0 72 void hgRemove();
jtkorhonen@0 73 void hgAdd();
jtkorhonen@0 74 void hgCommit();
Chris@168 75 void hgShowSummary();
Chris@289 76 void hgShowSummaryFor(Changeset *);
jtkorhonen@0 77 void hgFolderDiff();
Chris@148 78 void hgDiffToCurrent(QString);
Chris@148 79 void hgDiffToParent(QString, QString);
jtkorhonen@0 80 void hgUpdate();
jtkorhonen@0 81 void hgRevert();
jtkorhonen@0 82 void hgMerge();
Chris@326 83 void hgRedoMerge();
jtkorhonen@0 84 void hgCloneFromRemote();
jtkorhonen@0 85 void hgInit();
jtkorhonen@0 86 void hgIncoming();
jtkorhonen@0 87 void hgPush();
jtkorhonen@0 88 void hgPull();
Chris@148 89 void hgUpdateToRev(QString);
Chris@148 90 void hgMergeFrom(QString);
jtkorhonen@0 91 void hgResolveList();
Chris@164 92 void hgTag(QString);
Chris@311 93 void hgNewBranch();
Chris@311 94 void hgNoBranch();
jtkorhonen@11 95 void hgServe();
Chris@413 96 void hgEditIgnore();
jtkorhonen@0 97
Chris@326 98 void hgAnnotateFiles(QStringList);
Chris@326 99 void hgDiffFiles(QStringList);
Chris@326 100 void hgCommitFiles(QStringList);
Chris@326 101 void hgRevertFiles(QStringList);
Chris@361 102 void hgRenameFiles(QStringList);
Chris@361 103 void hgCopyFiles(QStringList);
Chris@326 104 void hgAddFiles(QStringList);
Chris@326 105 void hgRemoveFiles(QStringList);
Chris@326 106 void hgRedoFileMerges(QStringList);
Chris@326 107 void hgMarkFilesResolved(QStringList);
Chris@326 108 void hgIgnoreFiles(QStringList);
Chris@326 109 void hgUnIgnoreFiles(QStringList);
Chris@326 110
Chris@90 111 void fsDirectoryChanged(QString);
Chris@90 112 void fsFileChanged(QString);
Chris@238 113 void checkFilesystem();
Chris@238 114 void actuallyRestoreFileSystemWatcher();
Chris@90 115
jtkorhonen@0 116 private:
Chris@109 117 void hgQueryBranch();
Chris@109 118 void hgQueryHeads();
Chris@109 119 void hgQueryParents();
jtkorhonen@0 120 void hgLog();
Chris@150 121 void hgLogIncremental(QStringList prune);
Chris@359 122
Chris@417 123 void initHgIgnore();
Chris@417 124
Chris@359 125 void updateRecentMenu();
jtkorhonen@0 126 void createActions();
jtkorhonen@0 127 void connectActions();
Chris@141 128 void connectTabsSignals();
jtkorhonen@0 129 void createMenus();
jtkorhonen@0 130 void createToolBars();
Chris@230 131 void updateToolBarStyle();
jtkorhonen@0 132 void createStatusBar();
jtkorhonen@0 133 void readSettings();
jtkorhonen@0 134 void splitChangeSets(QStringList *list, QString hgLogOutput);
Chris@174 135 void reportNewRemoteHeads(QString);
Chris@353 136 void reportAuthFailed(QString);
Chris@284 137 void writeSettings();
Chris@95 138
Chris@182 139 QStringList listAllUpIpV4Addresses();
jtkorhonen@34 140 QString filterTag(QString tag);
jtkorhonen@0 141
Chris@64 142 QString getUserInfo() const;
Chris@64 143
Chris@79 144 bool openLocal(QString);
Chris@79 145 bool openRemote(QString, QString);
Chris@79 146 bool openInit(QString);
Chris@79 147
Chris@79 148 bool complainAboutFilePath(QString);
Chris@79 149 bool complainAboutUnknownFolder(QString);
Chris@84 150 bool complainAboutInitInRepo(QString);
Chris@84 151 bool complainAboutInitFile(QString);
Chris@84 152 bool complainAboutCloneToExisting(QString);
Chris@84 153 bool complainAboutCloneToFile(QString);
Chris@237 154 QString complainAboutCloneToExistingFolder(QString local, QString remote); // returns new location, or empty string for cancel
Chris@84 155
Chris@248 156 bool askAboutUnknownFolder(QString);
Chris@79 157 bool askToInitExisting(QString);
Chris@79 158 bool askToInitNew(QString);
Chris@79 159 bool askToOpenParentRepo(QString, QString);
Chris@84 160 bool askToOpenInsteadOfInit(QString);
Chris@79 161
Chris@120 162 void showIncoming(QString);
Chris@120 163 void showPullResult(QString);
Chris@120 164 void showPushResult(QString);
Chris@125 165 int extractChangeCount(QString);
Chris@275 166 QString format1(QString);
Chris@125 167 QString format3(QString, QString, QString);
Chris@120 168
Chris@120 169 void clearState();
Chris@120 170
Chris@90 171 void updateFileSystemWatcher();
Chris@238 172 void suspendFileSystemWatcher();
Chris@238 173 void restoreFileSystemWatcher();
Chris@90 174
Chris@287 175 void updateWorkFolderAndRepoNames();
Chris@287 176
Chris@287 177 WorkStatusWidget *m_workStatus;
Chris@284 178 HgTabWidget *m_hgTabs;
Chris@64 179
Chris@284 180 QString m_remoteRepoPath;
Chris@284 181 QString m_workFolderPath;
Chris@284 182 QString m_currentBranch;
Chris@284 183 Changesets m_currentHeads;
Chris@284 184 Changesets m_currentParents;
Chris@284 185 int m_commitsSincePush;
Chris@284 186 bool m_stateUnknown;
Chris@284 187 bool m_hgIsOK;
Chris@284 188 bool m_needNewLog;
Chris@284 189
Chris@284 190 bool m_firstStart;
Chris@284 191
Chris@284 192 bool m_showAllFiles;
Chris@199 193
jtkorhonen@0 194 //Actions enabled flags
Chris@284 195 bool m_remoteRepoActionsEnabled;
Chris@284 196 bool m_localRepoActionsEnabled;
jtkorhonen@0 197
Chris@172 198 QString m_myDirPath;
Chris@172 199
Chris@284 200 // File menu actions
Chris@284 201 QAction *m_openAct;
Chris@284 202 QAction *m_changeRemoteRepoAct;
Chris@284 203 QAction *m_settingsAct;
Chris@284 204 QAction *m_exitAct;
jtkorhonen@0 205
Chris@284 206 // Repo actions
Chris@284 207 QAction *m_hgIncomingAct;
Chris@284 208 QAction *m_hgPushAct;
Chris@284 209 QAction *m_hgPullAct;
Chris@284 210 QAction *m_hgRefreshAct;
Chris@284 211 QAction *m_hgFolderDiffAct;
Chris@284 212 QAction *m_hgChgSetDiffAct;
Chris@284 213 QAction *m_hgRevertAct;
Chris@284 214 QAction *m_hgAddAct;
Chris@284 215 QAction *m_hgRemoveAct;
Chris@413 216 QAction *m_hgIgnoreAct;
Chris@284 217 QAction *m_hgUpdateAct;
Chris@284 218 QAction *m_hgCommitAct;
Chris@284 219 QAction *m_hgMergeAct;
Chris@284 220 QAction *m_hgUpdateToRevAct;
Chris@284 221 QAction *m_hgAnnotateAct;
Chris@413 222 QAction *m_hgEditIgnoreAct;
Chris@284 223 QAction *m_hgServeAct;
jtkorhonen@0 224
Chris@284 225 // Menus
Chris@284 226 QMenu *m_fileMenu;
Chris@359 227 QMenu *m_recentMenu;
Chris@284 228 QMenu *m_advancedMenu;
Chris@284 229 QMenu *m_helpMenu;
jtkorhonen@0 230
Chris@284 231 // Help menu actions
Chris@284 232 QAction *m_aboutAct;
jtkorhonen@0 233
Chris@284 234 QToolBar *m_fileToolBar;
Chris@284 235 QToolBar *m_repoToolBar;
Chris@284 236 QToolBar *m_workFolderToolBar;
jtkorhonen@0 237
Chris@284 238 HgRunner *m_runner;
jtkorhonen@0 239
Chris@284 240 bool m_shouldHgStat;
Chris@163 241
Chris@239 242 QString getDiffBinaryName();
Chris@239 243 QString getMergeBinaryName();
Chris@239 244 QString getEditorBinaryName();
Chris@112 245
Chris@284 246 QFileSystemWatcher *m_fsWatcher;
Chris@238 247 QTimer *m_fsWatcherGeneralTimer;
Chris@238 248 QTimer *m_fsWatcherRestoreTimer;
Chris@241 249 bool m_fsWatcherSuspended;
Chris@90 250
Chris@284 251 QString m_lastStatOutput;
Chris@284 252 QStringList m_lastRevertedFiles;
Chris@163 253
Chris@284 254 bool m_justMerged;
Chris@284 255 QString m_mergeTargetRevision;
Chris@284 256 QString m_mergeCommitComment;
jtkorhonen@0 257 };
jtkorhonen@0 258
jtkorhonen@0 259 #endif