annotate src/mainwindow.h @ 491:1d90cd7a1c5f

Add tester for newer version
author Chris Cannam
date Thu, 18 Aug 2011 13:15:38 +0100
parents 896b7903e8f2
children 41a156d439d0
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"
Chris@472 26 #include "settingsdialog.h"
jtkorhonen@0 27
Chris@50 28 #include <QMainWindow>
Chris@50 29 #include <QListWidget>
Chris@90 30 #include <QFileSystemWatcher>
Chris@50 31
jtkorhonen@0 32 QT_BEGIN_NAMESPACE
jtkorhonen@0 33 class QAction;
jtkorhonen@0 34 class QMenu;
Chris@238 35 class QTimer;
jtkorhonen@0 36 QT_END_NAMESPACE
jtkorhonen@0 37
Chris@287 38 class WorkStatusWidget;
Chris@287 39
jtkorhonen@0 40 class MainWindow : public QMainWindow
jtkorhonen@0 41 {
jtkorhonen@0 42 Q_OBJECT
jtkorhonen@0 43
jtkorhonen@0 44 public:
Chris@172 45 MainWindow(QString myDirPath);
jtkorhonen@0 46
jtkorhonen@0 47 protected:
jtkorhonen@0 48 void closeEvent(QCloseEvent *event);
jtkorhonen@0 49
jtkorhonen@0 50 public slots:
Chris@145 51 void open(QString local);
Chris@120 52 void hgRefresh();
Chris@238 53 void commandStarting(HgAction);
Chris@142 54 void commandCompleted(HgAction action, QString stdOut);
Chris@142 55 void commandFailed(HgAction action, QString stdErr);
Chris@95 56 void enableDisableActions();
jtkorhonen@0 57
jtkorhonen@0 58 private slots:
jtkorhonen@0 59 void about();
Chris@64 60 void settings();
Chris@472 61 void settings(SettingsDialog::Tab);
Chris@69 62 void open();
Chris@359 63 void recentMenuActivated();
Chris@182 64 void changeRemoteRepo();
Chris@363 65 void changeRemoteRepo(bool initial);
Chris@64 66 void startupDialog();
Chris@94 67 void clearSelections();
Chris@484 68 void showAllChanged();
Chris@64 69
Chris@175 70 void hgTest();
Chris@200 71 void hgTestExtension();
Chris@120 72 void hgQueryPaths();
Chris@120 73 void hgStat();
jtkorhonen@0 74 void hgRemove();
jtkorhonen@0 75 void hgAdd();
jtkorhonen@0 76 void hgCommit();
Chris@168 77 void hgShowSummary();
Chris@289 78 void hgShowSummaryFor(Changeset *);
jtkorhonen@0 79 void hgFolderDiff();
Chris@148 80 void hgDiffToCurrent(QString);
Chris@148 81 void hgDiffToParent(QString, QString);
jtkorhonen@0 82 void hgUpdate();
jtkorhonen@0 83 void hgRevert();
jtkorhonen@0 84 void hgMerge();
Chris@326 85 void hgRedoMerge();
jtkorhonen@0 86 void hgCloneFromRemote();
jtkorhonen@0 87 void hgInit();
jtkorhonen@0 88 void hgIncoming();
jtkorhonen@0 89 void hgPush();
jtkorhonen@0 90 void hgPull();
Chris@148 91 void hgUpdateToRev(QString);
Chris@148 92 void hgMergeFrom(QString);
jtkorhonen@0 93 void hgResolveList();
Chris@164 94 void hgTag(QString);
Chris@311 95 void hgNewBranch();
Chris@311 96 void hgNoBranch();
jtkorhonen@11 97 void hgServe();
Chris@425 98 void hgIgnore();
Chris@413 99 void hgEditIgnore();
jtkorhonen@0 100
Chris@326 101 void hgAnnotateFiles(QStringList);
Chris@326 102 void hgDiffFiles(QStringList);
Chris@326 103 void hgCommitFiles(QStringList);
Chris@326 104 void hgRevertFiles(QStringList);
Chris@361 105 void hgRenameFiles(QStringList);
Chris@361 106 void hgCopyFiles(QStringList);
Chris@326 107 void hgAddFiles(QStringList);
Chris@326 108 void hgRemoveFiles(QStringList);
Chris@326 109 void hgRedoFileMerges(QStringList);
Chris@326 110 void hgMarkFilesResolved(QStringList);
Chris@326 111 void hgIgnoreFiles(QStringList);
Chris@326 112 void hgUnIgnoreFiles(QStringList);
Chris@326 113
Chris@90 114 void fsDirectoryChanged(QString);
Chris@90 115 void fsFileChanged(QString);
Chris@238 116 void checkFilesystem();
Chris@238 117 void actuallyRestoreFileSystemWatcher();
Chris@90 118
Chris@491 119 void newerVersionAvailable(QString);
Chris@491 120
jtkorhonen@0 121 private:
Chris@109 122 void hgQueryBranch();
Chris@109 123 void hgQueryHeads();
Chris@109 124 void hgQueryParents();
jtkorhonen@0 125 void hgLog();
Chris@150 126 void hgLogIncremental(QStringList prune);
Chris@359 127
Chris@417 128 void initHgIgnore();
Chris@417 129
Chris@359 130 void updateRecentMenu();
jtkorhonen@0 131 void createActions();
jtkorhonen@0 132 void connectActions();
Chris@141 133 void connectTabsSignals();
jtkorhonen@0 134 void createMenus();
jtkorhonen@0 135 void createToolBars();
Chris@230 136 void updateToolBarStyle();
jtkorhonen@0 137 void createStatusBar();
jtkorhonen@0 138 void readSettings();
jtkorhonen@0 139 void splitChangeSets(QStringList *list, QString hgLogOutput);
Chris@174 140 void reportNewRemoteHeads(QString);
Chris@353 141 void reportAuthFailed(QString);
Chris@284 142 void writeSettings();
Chris@95 143
Chris@182 144 QStringList listAllUpIpV4Addresses();
jtkorhonen@34 145 QString filterTag(QString tag);
jtkorhonen@0 146
Chris@64 147 QString getUserInfo() const;
Chris@64 148
Chris@79 149 bool openLocal(QString);
Chris@79 150 bool openRemote(QString, QString);
Chris@79 151 bool openInit(QString);
Chris@79 152
Chris@79 153 bool complainAboutFilePath(QString);
Chris@79 154 bool complainAboutUnknownFolder(QString);
Chris@84 155 bool complainAboutInitInRepo(QString);
Chris@84 156 bool complainAboutInitFile(QString);
Chris@84 157 bool complainAboutCloneToExisting(QString);
Chris@84 158 bool complainAboutCloneToFile(QString);
Chris@237 159 QString complainAboutCloneToExistingFolder(QString local, QString remote); // returns new location, or empty string for cancel
Chris@84 160
Chris@248 161 bool askAboutUnknownFolder(QString);
Chris@79 162 bool askToInitExisting(QString);
Chris@79 163 bool askToInitNew(QString);
Chris@79 164 bool askToOpenParentRepo(QString, QString);
Chris@84 165 bool askToOpenInsteadOfInit(QString);
Chris@79 166
Chris@120 167 void showIncoming(QString);
Chris@120 168 void showPullResult(QString);
Chris@120 169 void showPushResult(QString);
Chris@125 170 int extractChangeCount(QString);
Chris@275 171 QString format1(QString);
Chris@125 172 QString format3(QString, QString, QString);
Chris@120 173
Chris@120 174 void clearState();
Chris@120 175
Chris@90 176 void updateFileSystemWatcher();
Chris@238 177 void suspendFileSystemWatcher();
Chris@238 178 void restoreFileSystemWatcher();
Chris@90 179
Chris@287 180 void updateWorkFolderAndRepoNames();
Chris@287 181
Chris@287 182 WorkStatusWidget *m_workStatus;
Chris@284 183 HgTabWidget *m_hgTabs;
Chris@64 184
Chris@284 185 QString m_remoteRepoPath;
Chris@284 186 QString m_workFolderPath;
Chris@284 187 QString m_currentBranch;
Chris@284 188 Changesets m_currentHeads;
Chris@284 189 Changesets m_currentParents;
Chris@284 190 int m_commitsSincePush;
Chris@284 191 bool m_stateUnknown;
Chris@284 192 bool m_hgIsOK;
Chris@284 193 bool m_needNewLog;
Chris@284 194
Chris@284 195 bool m_firstStart;
Chris@284 196
Chris@284 197 bool m_showAllFiles;
Chris@199 198
jtkorhonen@0 199 //Actions enabled flags
Chris@284 200 bool m_remoteRepoActionsEnabled;
Chris@284 201 bool m_localRepoActionsEnabled;
jtkorhonen@0 202
Chris@172 203 QString m_myDirPath;
Chris@172 204
Chris@284 205 // File menu actions
Chris@284 206 QAction *m_openAct;
Chris@284 207 QAction *m_changeRemoteRepoAct;
Chris@284 208 QAction *m_settingsAct;
Chris@284 209 QAction *m_exitAct;
jtkorhonen@0 210
Chris@284 211 // Repo actions
Chris@284 212 QAction *m_hgIncomingAct;
Chris@284 213 QAction *m_hgPushAct;
Chris@284 214 QAction *m_hgPullAct;
Chris@284 215 QAction *m_hgRefreshAct;
Chris@284 216 QAction *m_hgFolderDiffAct;
Chris@284 217 QAction *m_hgChgSetDiffAct;
Chris@284 218 QAction *m_hgRevertAct;
Chris@284 219 QAction *m_hgAddAct;
Chris@284 220 QAction *m_hgRemoveAct;
Chris@413 221 QAction *m_hgIgnoreAct;
Chris@284 222 QAction *m_hgUpdateAct;
Chris@284 223 QAction *m_hgCommitAct;
Chris@284 224 QAction *m_hgMergeAct;
Chris@284 225 QAction *m_hgUpdateToRevAct;
Chris@284 226 QAction *m_hgAnnotateAct;
Chris@413 227 QAction *m_hgEditIgnoreAct;
Chris@284 228 QAction *m_hgServeAct;
jtkorhonen@0 229
Chris@284 230 // Menus
Chris@284 231 QMenu *m_fileMenu;
Chris@359 232 QMenu *m_recentMenu;
Chris@284 233 QMenu *m_helpMenu;
jtkorhonen@0 234
Chris@284 235 // Help menu actions
Chris@284 236 QAction *m_aboutAct;
jtkorhonen@0 237
Chris@284 238 QToolBar *m_fileToolBar;
Chris@284 239 QToolBar *m_repoToolBar;
Chris@284 240 QToolBar *m_workFolderToolBar;
jtkorhonen@0 241
Chris@284 242 HgRunner *m_runner;
jtkorhonen@0 243
Chris@284 244 bool m_shouldHgStat;
Chris@163 245
Chris@239 246 QString getDiffBinaryName();
Chris@239 247 QString getMergeBinaryName();
Chris@239 248 QString getEditorBinaryName();
Chris@112 249
Chris@284 250 QFileSystemWatcher *m_fsWatcher;
Chris@238 251 QTimer *m_fsWatcherGeneralTimer;
Chris@238 252 QTimer *m_fsWatcherRestoreTimer;
Chris@241 253 bool m_fsWatcherSuspended;
Chris@90 254
Chris@284 255 QString m_lastStatOutput;
Chris@284 256 QStringList m_lastRevertedFiles;
Chris@163 257
Chris@284 258 bool m_justMerged;
Chris@284 259 QString m_mergeTargetRevision;
Chris@284 260 QString m_mergeCommitComment;
jtkorhonen@0 261 };
jtkorhonen@0 262
jtkorhonen@0 263 #endif