annotate src/mainwindow.cpp @ 691:5b3bcb2d0943

Update handling of auth extension load failures on Windows: hg itself is returning a successful error code, so we must check the output in the extension test phase. Also fix a failure & crash when trying to use fallback auth mechanism
author Chris Cannam
date Mon, 10 Dec 2018 12:03:04 +0000
parents 21e03596dd93
children 5074e870df22
rev   line source
Chris@585 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
jtkorhonen@0 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@644 8 Copyright (c) 2013 Chris Cannam
Chris@644 9 Copyright (c) 2013 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 */
Chris@50 17
jtkorhonen@0 18 #include <QStringList>
jtkorhonen@0 19 #include <QDir>
jtkorhonen@24 20 #include <QNetworkInterface>
jtkorhonen@17 21 #include <QHostAddress>
jtkorhonen@17 22 #include <QHostInfo>
jtkorhonen@34 23 #include <QDesktopServices>
Chris@50 24 #include <QStatusBar>
Chris@50 25 #include <QMessageBox>
Chris@50 26 #include <QMenuBar>
Chris@50 27 #include <QApplication>
Chris@50 28 #include <QToolBar>
Chris@61 29 #include <QToolButton>
Chris@50 30 #include <QSettings>
Chris@90 31 #include <QInputDialog>
Chris@359 32 #include <QWidgetAction>
Chris@125 33 #include <QRegExp>
Chris@199 34 #include <QShortcut>
Chris@237 35 #include <QUrl>
Chris@476 36 #include <QDialogButtonBox>
Chris@238 37 #include <QTimer>
Chris@494 38 #include <QTextBrowser>
jtkorhonen@0 39
Chris@53 40 #include "mainwindow.h"
Chris@69 41 #include "multichoicedialog.h"
Chris@64 42 #include "startupdialog.h"
Chris@53 43 #include "colourset.h"
Chris@62 44 #include "debug.h"
Chris@74 45 #include "logparser.h"
Chris@103 46 #include "confirmcommentdialog.h"
Chris@125 47 #include "incomingdialog.h"
Chris@175 48 #include "settingsdialog.h"
Chris@275 49 #include "moreinformationdialog.h"
Chris@331 50 #include "annotatedialog.h"
Chris@229 51 #include "version.h"
Chris@287 52 #include "workstatuswidget.h"
Chris@414 53 #include "hgignoredialog.h"
Chris@491 54 #include "versiontester.h"
Chris@540 55 #include "fswatcher.h"
Chris@53 56
jtkorhonen@0 57
Chris@172 58 MainWindow::MainWindow(QString myDirPath) :
Chris@238 59 m_myDirPath(myDirPath),
Chris@540 60 m_helpDialog(0)
jtkorhonen@0 61 {
Chris@197 62 setWindowIcon(QIcon(":images/easyhg-icon.png"));
Chris@197 63
jtkorhonen@0 64 QString wndTitle;
jtkorhonen@0 65
Chris@284 66 m_showAllFiles = false;
Chris@273 67
Chris@540 68 m_fsWatcher = new FsWatcher();
Chris@540 69 m_fsWatcherToken = m_fsWatcher->getNewToken();
Chris@540 70 m_commandSequenceInProgress = false;
Chris@541 71 connect(m_fsWatcher, SIGNAL(changed()), this, SLOT(checkFilesystem()));
Chris@540 72
Chris@284 73 m_commitsSincePush = 0;
Chris@284 74 m_shouldHgStat = true;
Chris@90 75
jtkorhonen@0 76 createActions();
jtkorhonen@0 77 createMenus();
jtkorhonen@0 78 createToolBars();
jtkorhonen@0 79 createStatusBar();
jtkorhonen@0 80
Chris@284 81 m_runner = new HgRunner(m_myDirPath, this);
Chris@284 82 connect(m_runner, SIGNAL(commandStarting(HgAction)),
Chris@241 83 this, SLOT(commandStarting(HgAction)));
Chris@691 84 connect(m_runner, SIGNAL(commandCompleted(HgAction, QString, QString)),
Chris@691 85 this, SLOT(commandCompleted(HgAction, QString, QString)));
Chris@537 86 connect(m_runner, SIGNAL(commandFailed(HgAction, QString, QString)),
Chris@537 87 this, SLOT(commandFailed(HgAction, QString, QString)));
Chris@564 88 connect(m_runner, SIGNAL(commandCancelled(HgAction)),
Chris@564 89 this, SLOT(commandCancelled(HgAction)));
Chris@284 90 statusBar()->addPermanentWidget(m_runner);
jtkorhonen@0 91
Chris@61 92 setWindowTitle(tr("EasyMercurial"));
jtkorhonen@0 93
Chris@284 94 m_remoteRepoPath = "";
Chris@284 95 m_workFolderPath = "";
jtkorhonen@0 96
jtkorhonen@0 97 readSettings();
jtkorhonen@0 98
Chris@284 99 m_justMerged = false;
Chris@210 100
Chris@210 101 QWidget *central = new QWidget(this);
Chris@210 102 setCentralWidget(central);
Chris@210 103
Chris@210 104 QGridLayout *cl = new QGridLayout(central);
Chris@287 105 int row = 0;
Chris@210 106
Chris@210 107 #ifndef Q_OS_MAC
Chris@210 108 cl->setMargin(0);
Chris@210 109 #endif
jtkorhonen@0 110
Chris@287 111 m_workStatus = new WorkStatusWidget(this);
Chris@558 112 cl->addWidget(m_workStatus, row++, 0);
Chris@287 113
Chris@287 114 m_hgTabs = new HgTabWidget(central, m_workFolderPath);
Chris@287 115 connectTabsSignals();
Chris@287 116
Chris@554 117 cl->addWidget(m_hgTabs, row++, 0, 1, 2);
Chris@287 118
Chris@284 119 connect(m_hgTabs, SIGNAL(selectionChanged()),
Chris@95 120 this, SLOT(enableDisableActions()));
Chris@484 121 connect(m_hgTabs, SIGNAL(showAllChanged()),
Chris@484 122 this, SLOT(showAllChanged()));
Chris@95 123
jtkorhonen@0 124 connectActions();
Chris@120 125 clearState();
jtkorhonen@0 126 enableDisableActions();
jtkorhonen@0 127
Chris@284 128 if (m_firstStart) {
Chris@64 129 startupDialog();
jtkorhonen@0 130 }
jtkorhonen@0 131
Chris@239 132 SettingsDialog::findDefaultLocations(m_myDirPath);
Chris@112 133
Chris@64 134 ColourSet *cs = ColourSet::instance();
Chris@64 135 cs->clearDefaultNames();
Chris@64 136 cs->addDefaultName("");
Chris@153 137 cs->addDefaultName("default");
Chris@64 138 cs->addDefaultName(getUserInfo());
Chris@62 139
Chris@491 140 VersionTester *vt = new VersionTester
Chris@507 141 ("easyhg.org", "/latest-version.txt", EASYHG_VERSION);
Chris@491 142 connect(vt, SIGNAL(newerVersionAvailable(QString)),
Chris@491 143 this, SLOT(newerVersionAvailable(QString)));
Chris@491 144
Chris@175 145 hgTest();
Chris@359 146 updateRecentMenu();
jtkorhonen@0 147 }
jtkorhonen@0 148
jtkorhonen@0 149
jtkorhonen@0 150 void MainWindow::closeEvent(QCloseEvent *)
jtkorhonen@0 151 {
jtkorhonen@0 152 writeSettings();
Chris@284 153 delete m_fsWatcher;
jtkorhonen@0 154 }
jtkorhonen@0 155
jtkorhonen@0 156
Chris@554 157 void MainWindow::resizeEvent(QResizeEvent *)
Chris@554 158 {
Chris@554 159 }
Chris@554 160
Chris@554 161
Chris@64 162 QString MainWindow::getUserInfo() const
Chris@64 163 {
Chris@64 164 QSettings settings;
Chris@64 165 settings.beginGroup("User Information");
Chris@64 166 QString name = settings.value("name", getUserRealName()).toString();
Chris@64 167 QString email = settings.value("email", "").toString();
Chris@64 168
Chris@64 169 QString identifier;
Chris@64 170
Chris@64 171 if (email != "") {
Chris@64 172 identifier = QString("%1 <%2>").arg(name).arg(email);
Chris@64 173 } else {
Chris@64 174 identifier = name;
Chris@64 175 }
Chris@64 176
Chris@64 177 return identifier;
Chris@64 178 }
Chris@64 179
jtkorhonen@0 180 void MainWindow::about()
jtkorhonen@0 181 {
Chris@97 182 QMessageBox::about(this, tr("About EasyMercurial"),
Chris@229 183 tr("<qt><h2>EasyMercurial v%1</h2>"
Chris@228 184 #ifdef Q_OS_MAC
Chris@228 185 "<font size=-1>"
Chris@228 186 #endif
Chris@97 187 "<p>EasyMercurial is a simple user interface for the "
Chris@186 188 "Mercurial</a> version control system.</p>"
Chris@186 189 "<h4>Credits and Copyright</h4>"
Chris@186 190 "<p>Development carried out by Chris Cannam for "
Chris@186 191 "SoundSoftware.ac.uk at the Centre for Digital Music, "
Chris@186 192 "Queen Mary, University of London.</p>"
Chris@186 193 "<p>EasyMercurial is based on HgExplorer by "
Chris@186 194 "Jari Korhonen, with thanks.</p>"
Chris@186 195 "<p style=\"margin-left: 2em;\">"
Chris@644 196 "Copyright &copy; 2013 Queen Mary, University of London.<br>"
Chris@186 197 "Copyright &copy; 2010 Jari Korhonen.<br>"
Chris@644 198 "Copyright &copy; 2013 Chris Cannam."
Chris@186 199 "</p>"
Chris@186 200 "<p style=\"margin-left: 2em;\">"
Chris@186 201 "This program requires Mercurial, by Matt Mackall and others.<br>"
Chris@186 202 "This program uses Qt by Nokia.<br>"
Chris@186 203 "This program uses Nuvola icons by David Vignoni.<br>"
Chris@186 204 "This program may use KDiff3 by Joachim Eibl.<br>"
Chris@186 205 "This program may use PyQt by River Bank Computing.<br>"
Chris@186 206 "Packaging for Mercurial and other dependencies on Windows is derived from TortoiseHg by Steve Borho and others."
Chris@186 207 "</p>"
Chris@186 208 "<h4>License</h4>"
Chris@186 209 "<p>This program is free software; you can redistribute it and/or "
Chris@97 210 "modify it under the terms of the GNU General Public License as "
Chris@97 211 "published by the Free Software Foundation; either version 2 of the "
Chris@97 212 "License, or (at your option) any later version. See the file "
Chris@223 213 "COPYING included with this distribution for more information.</p>"
Chris@228 214 #ifdef Q_OS_MAC
Chris@228 215 "</font>"
Chris@228 216 #endif
Chris@229 217 ).arg(EASYHG_VERSION));
jtkorhonen@0 218 }
jtkorhonen@0 219
Chris@94 220 void MainWindow::clearSelections()
Chris@94 221 {
Chris@284 222 m_hgTabs->clearSelections();
Chris@94 223 }
jtkorhonen@0 224
Chris@484 225 void MainWindow::showAllChanged()
Chris@199 226 {
Chris@199 227 hgQueryPaths();
Chris@199 228 }
Chris@199 229
Chris@120 230 void MainWindow::hgRefresh()
Chris@120 231 {
Chris@120 232 clearState();
Chris@120 233 hgQueryPaths();
Chris@120 234 }
Chris@120 235
Chris@175 236 void MainWindow::hgTest()
Chris@175 237 {
Chris@175 238 QStringList params;
Chris@175 239 params << "--version";
Chris@382 240 // The path is not necessarily set here, but we need something for
Chris@382 241 // this test or else HgRunner will (cautiously) refuse to run
Chris@382 242 QString path = m_myDirPath;
Chris@382 243 if (path == "") path = QDir::homePath();
Chris@382 244 m_runner->requestAction(HgAction(ACT_TEST_HG, path, params));
Chris@175 245 }
Chris@175 246
Chris@200 247 void MainWindow::hgTestExtension()
Chris@200 248 {
Chris@200 249 QStringList params;
Chris@200 250 params << "--version";
Chris@382 251 // The path is not necessarily set here, but we need something for
Chris@382 252 // this test or else HgRunner will (cautiously) refuse to run
Chris@382 253 QString path = m_myDirPath;
Chris@382 254 if (path == "") path = QDir::homePath();
Chris@382 255 m_runner->requestAction(HgAction(ACT_TEST_HG_EXT, path, params));
Chris@200 256 }
Chris@200 257
jtkorhonen@0 258 void MainWindow::hgStat()
jtkorhonen@0 259 {
Chris@109 260 QStringList params;
Chris@199 261
Chris@542 262 // We always stat all files, regardless of whether we're showing
Chris@542 263 // them all, because we need them for the filesystem monitor
Chris@542 264 params << "stat" << "-A";
Chris@153 265
Chris@284 266 m_lastStatOutput = "";
Chris@273 267
Chris@541 268 // We're about to do a stat, so we can silently bring ourselves
Chris@541 269 // up-to-date on any file changes to this point
Chris@541 270 (void)m_fsWatcher->getChangedPaths(m_fsWatcherToken);
Chris@541 271
Chris@284 272 m_runner->requestAction(HgAction(ACT_STAT, m_workFolderPath, params));
jtkorhonen@0 273 }
jtkorhonen@0 274
Chris@109 275 void MainWindow::hgQueryPaths()
Chris@74 276 {
Chris@484 277 m_showAllFiles = m_hgTabs->shouldShowAll();
Chris@484 278
Chris@210 279 // Quickest is to just read the file
Chris@198 280
Chris@284 281 QFileInfo hgrc(m_workFolderPath + "/.hg/hgrc");
Chris@198 282
Chris@210 283 QString path;
Chris@210 284
Chris@198 285 if (hgrc.exists()) {
Chris@198 286 QSettings s(hgrc.canonicalFilePath(), QSettings::IniFormat);
Chris@198 287 s.beginGroup("paths");
Chris@210 288 path = s.value("default").toString();
Chris@210 289 }
Chris@198 290
Chris@565 291 // std::cerr << "hgQueryPaths: setting m_remoteRepoPath to " << m_remoteRepoPath << " from file " << hgrc.absoluteFilePath() << std::endl;
Chris@553 292
Chris@284 293 m_remoteRepoPath = path;
Chris@198 294
Chris@210 295 // We have to do this here, because commandCompleted won't be called
Chris@284 296 MultiChoiceDialog::addRecentArgument("local", m_workFolderPath);
Chris@284 297 MultiChoiceDialog::addRecentArgument("remote", m_remoteRepoPath);
Chris@287 298 updateWorkFolderAndRepoNames();
Chris@210 299
Chris@210 300 hgQueryBranch();
Chris@210 301 return;
Chris@210 302
Chris@210 303 /* The classic method!
Chris@198 304
Chris@109 305 QStringList params;
Chris@109 306 params << "paths";
Chris@284 307 m_runner->requestAction(HgAction(ACT_QUERY_PATHS, m_workFolderPath, params));
Chris@210 308 */
Chris@74 309 }
Chris@74 310
Chris@109 311 void MainWindow::hgQueryBranch()
Chris@106 312 {
Chris@210 313 // Quickest is to just read the file
Chris@198 314
Chris@284 315 QFile hgbr(m_workFolderPath + "/.hg/branch");
Chris@198 316
Chris@210 317 QString br = "default";
Chris@210 318
Chris@198 319 if (hgbr.exists() && hgbr.open(QFile::ReadOnly)) {
Chris@210 320 QByteArray ba = hgbr.readLine();
Chris@210 321 br = QString::fromUtf8(ba).trimmed();
Chris@210 322 }
Chris@210 323
Chris@284 324 m_currentBranch = br;
Chris@210 325
Chris@210 326 // We have to do this here, because commandCompleted won't be called
Chris@210 327 hgStat();
Chris@210 328 return;
Chris@198 329
Chris@210 330 /* The classic method!
Chris@198 331
Chris@109 332 QStringList params;
Chris@109 333 params << "branch";
Chris@284 334 m_runner->requestAction(HgAction(ACT_QUERY_BRANCH, m_workFolderPath, params));
Chris@210 335 */
Chris@106 336 }
Chris@106 337
Chris@506 338 void MainWindow::hgQueryHeadsActive()
Chris@506 339 {
Chris@506 340 QStringList params;
Chris@514 341 params << "heads";
Chris@506 342 m_runner->requestAction(HgAction(ACT_QUERY_HEADS_ACTIVE, m_workFolderPath, params));
Chris@506 343 }
Chris@506 344
Chris@109 345 void MainWindow::hgQueryHeads()
jtkorhonen@0 346 {
Chris@109 347 QStringList params;
Chris@137 348 // On empty repos, "hg heads" will fail -- we don't care about
Chris@137 349 // that. Use --closed option so as to include closed branches;
Chris@137 350 // otherwise we'll be stuck if the user updates into one, and our
Chris@137 351 // incremental log will end up with spurious stuff in it because
Chris@137 352 // we won't be pruning at the ends of closed branches
Chris@137 353 params << "heads" << "--closed";
Chris@284 354 m_runner->requestAction(HgAction(ACT_QUERY_HEADS, m_workFolderPath, params));
jtkorhonen@0 355 }
jtkorhonen@0 356
jtkorhonen@0 357 void MainWindow::hgLog()
jtkorhonen@0 358 {
mikel@617 359 QSettings settings;
mikel@617 360 settings.beginGroup("Presentation");
mikel@617 361
Chris@109 362 QStringList params;
Chris@109 363 params << "log";
mikel@617 364 params << "--date";
mikel@617 365 params << settings.value("datefrom", QDate(2000, 1, 1)).toDate().toString("yyyy-MM-dd") + " to " + QDate::currentDate().toString("yyyy-MM-dd");
Chris@109 366 params << "--template";
Chris@125 367 params << Changeset::getLogTemplate();
Chris@109 368
Chris@284 369 m_runner->requestAction(HgAction(ACT_LOG, m_workFolderPath, params));
Chris@109 370 }
Chris@109 371
Chris@150 372 void MainWindow::hgLogIncremental(QStringList prune)
Chris@120 373 {
Chris@305 374 // Sometimes we can be called with prune empty -- it represents
Chris@305 375 // the current heads, but if we have none already and for some
Chris@305 376 // reason are being prompted for an incremental update, we may run
Chris@305 377 // into trouble. In that case, make this a full log instead
Chris@305 378
Chris@305 379 if (prune.empty()) {
Chris@305 380 hgLog();
Chris@305 381 return;
Chris@305 382 }
Chris@305 383
Chris@120 384 QStringList params;
Chris@120 385 params << "log";
Chris@120 386
Chris@150 387 foreach (QString p, prune) {
Chris@153 388 params << "--prune" << Changeset::hashOf(p);
Chris@120 389 }
Chris@120 390
Chris@120 391 params << "--template";
Chris@125 392 params << Changeset::getLogTemplate();
Chris@120 393
Chris@284 394 m_runner->requestAction(HgAction(ACT_LOG_INCREMENTAL, m_workFolderPath, params));
Chris@120 395 }
Chris@109 396
Chris@109 397 void MainWindow::hgQueryParents()
Chris@109 398 {
Chris@109 399 QStringList params;
Chris@109 400 params << "parents";
Chris@284 401 m_runner->requestAction(HgAction(ACT_QUERY_PARENTS, m_workFolderPath, params));
Chris@109 402 }
Chris@109 403
Chris@326 404 void MainWindow::hgAnnotateFiles(QStringList files)
Chris@326 405 {
Chris@326 406 QStringList params;
Chris@326 407
Chris@326 408 if (!files.isEmpty()) {
Chris@332 409 params << "annotate" << "-udqc" << "--" << files;
Chris@326 410 m_runner->requestAction(HgAction(ACT_ANNOTATE, m_workFolderPath, params));
Chris@326 411 }
Chris@326 412 }
Chris@326 413
Chris@109 414 void MainWindow::hgResolveList()
Chris@109 415 {
Chris@109 416 QStringList params;
jtkorhonen@0 417
Chris@109 418 params << "resolve" << "--list";
Chris@284 419 m_runner->requestAction(HgAction(ACT_RESOLVE_LIST, m_workFolderPath, params));
Chris@109 420 }
Chris@109 421
Chris@109 422 void MainWindow::hgAdd()
jtkorhonen@0 423 {
Chris@109 424 // hgExplorer permitted adding "all" files -- I'm not sure
Chris@109 425 // that one is a good idea, let's require the user to select
jtkorhonen@0 426
Chris@326 427 hgAddFiles(m_hgTabs->getSelectedAddableFiles());
Chris@326 428 }
Chris@326 429
Chris@326 430 void MainWindow::hgAddFiles(QStringList files)
Chris@326 431 {
Chris@326 432 QStringList params;
Chris@109 433
Chris@109 434 if (!files.empty()) {
Chris@109 435 params << "add" << "--" << files;
Chris@284 436 m_runner->requestAction(HgAction(ACT_ADD, m_workFolderPath, params));
jtkorhonen@0 437 }
jtkorhonen@0 438 }
jtkorhonen@0 439
Chris@98 440 void MainWindow::hgRemove()
Chris@98 441 {
Chris@326 442 hgRemoveFiles(m_hgTabs->getSelectedRemovableFiles());
Chris@326 443 }
Chris@326 444
Chris@326 445 void MainWindow::hgRemoveFiles(QStringList files)
Chris@326 446 {
Chris@109 447 QStringList params;
Chris@98 448
Chris@109 449 if (!files.empty()) {
Chris@109 450 params << "remove" << "--after" << "--force" << "--" << files;
Chris@284 451 m_runner->requestAction(HgAction(ACT_REMOVE, m_workFolderPath, params));
Chris@109 452 }
jtkorhonen@0 453 }
jtkorhonen@0 454
jtkorhonen@0 455 void MainWindow::hgCommit()
jtkorhonen@0 456 {
Chris@326 457 hgCommitFiles(QStringList());
Chris@326 458 }
Chris@326 459
Chris@326 460 void MainWindow::hgCommitFiles(QStringList files)
Chris@326 461 {
Chris@109 462 QStringList params;
Chris@109 463 QString comment;
Chris@94 464
Chris@284 465 if (m_justMerged) {
Chris@284 466 comment = m_mergeCommitComment;
Chris@157 467 }
Chris@157 468
Chris@284 469 QStringList allFiles = m_hgTabs->getAllCommittableFiles();
Chris@127 470 QStringList reportFiles = files;
Chris@237 471 if (reportFiles.empty()) {
Chris@237 472 reportFiles = allFiles;
Chris@237 473 }
Chris@103 474
Chris@237 475 QString subsetNote;
Chris@237 476 if (reportFiles != allFiles) {
Chris@237 477 subsetNote = tr("<p><b>Note:</b> you are committing only the files you have selected, not all of the files that have been changed!");
Chris@237 478 }
Chris@237 479
Chris@155 480 QString cf(tr("Commit files"));
Chris@155 481
Chris@311 482 QString branchText;
Chris@311 483 if (m_currentBranch == "" || m_currentBranch == "default") {
Chris@311 484 branchText = tr("the default branch");
Chris@311 485 } else {
Chris@311 486 branchText = tr("branch \"%1\"").arg(m_currentBranch);
Chris@311 487 }
Chris@311 488
Chris@109 489 if (ConfirmCommentDialog::confirmAndGetLongComment
Chris@109 490 (this,
Chris@155 491 cf,
Chris@237 492 tr("<h3>%1</h3><p>%2%3").arg(cf)
Chris@473 493 .arg(tr("You are about to commit changes to the following files in %1:").arg(branchText))
Chris@237 494 .arg(subsetNote),
Chris@237 495 tr("<h3>%1</h3><p>%2%3").arg(cf)
Chris@473 496 .arg(tr("You are about to commit changes to %n file(s) in %1.", "", reportFiles.size()).arg(branchText))
Chris@237 497 .arg(subsetNote),
Chris@127 498 reportFiles,
Chris@193 499 comment,
Chris@365 500 tr("Co&mmit"))) {
Chris@103 501
Chris@284 502 if (!m_justMerged && !files.empty()) {
Chris@157 503 // User wants to commit selected file(s) (and this is not
Chris@157 504 // merge commit, which would fail if we selected files)
Chris@157 505 params << "commit" << "--message" << comment
Chris@157 506 << "--user" << getUserInfo() << "--" << files;
Chris@109 507 } else {
Chris@109 508 // Commit all changes
Chris@157 509 params << "commit" << "--message" << comment
Chris@157 510 << "--user" << getUserInfo();
jtkorhonen@0 511 }
Chris@109 512
Chris@284 513 m_runner->requestAction(HgAction(ACT_COMMIT, m_workFolderPath, params));
Chris@284 514 m_mergeCommitComment = "";
jtkorhonen@0 515 }
jtkorhonen@0 516 }
jtkorhonen@0 517
jtkorhonen@34 518 QString MainWindow::filterTag(QString tag)
jtkorhonen@34 519 {
Chris@278 520 for(int i = 0; i < tag.size(); i++) {
Chris@278 521 if (tag[i].isLower() || tag[i].isUpper() ||
Chris@278 522 tag[i].isDigit() || (tag[i] == QChar('.'))) {
jtkorhonen@34 523 //ok
Chris@278 524 } else {
jtkorhonen@34 525 tag[i] = QChar('_');
jtkorhonen@34 526 }
jtkorhonen@34 527 }
jtkorhonen@34 528 return tag;
jtkorhonen@34 529 }
jtkorhonen@34 530
jtkorhonen@34 531
Chris@311 532 void MainWindow::hgNewBranch()
Chris@278 533 {
Chris@278 534 QStringList params;
Chris@278 535 QString branch;
Chris@278 536
Chris@278 537 if (ConfirmCommentDialog::confirmAndGetShortComment
Chris@278 538 (this,
Chris@278 539 tr("New Branch"),
Chris@278 540 tr("Enter new branch name:"),
Chris@278 541 branch,
Chris@365 542 tr("Start &Branch"))) {
Chris@278 543 if (!branch.isEmpty()) {//!!! do something better if it is empty
Chris@278 544
Chris@278 545 params << "branch" << filterTag(branch);
Chris@307 546 m_runner->requestAction(HgAction(ACT_NEW_BRANCH, m_workFolderPath, params));
Chris@278 547 }
Chris@278 548 }
Chris@278 549 }
Chris@278 550
Chris@311 551 void MainWindow::hgNoBranch()
Chris@311 552 {
Chris@311 553 if (m_currentParents.empty()) return;
Chris@311 554
Chris@311 555 QString parentBranch = m_currentParents[0]->branch();
Chris@311 556 if (parentBranch == "") parentBranch = "default";
Chris@311 557
Chris@311 558 QStringList params;
Chris@311 559 params << "branch" << parentBranch;
Chris@311 560 m_runner->requestAction(HgAction(ACT_NEW_BRANCH, m_workFolderPath, params));
Chris@311 561 }
Chris@311 562
Chris@514 563 void MainWindow::hgCloseBranch()
Chris@514 564 {
Chris@514 565 QStringList params;
Chris@514 566
Chris@514 567 //!!! how to ensure this doesn't happen when uncommitted changes present?
Chris@514 568
Chris@514 569 QString cf(tr("Close branch"));
Chris@514 570 QString comment;
Chris@514 571
Chris@514 572 QString defaultWarning;
Chris@514 573
Chris@648 574 bool haveSprouts = (m_hgMergeAct->isEnabled());
Chris@648 575
Chris@514 576 QString branchText;
Chris@514 577 if (m_currentBranch == "" || m_currentBranch == "default") {
Chris@514 578 branchText = tr("the default branch");
Chris@648 579 if (!haveSprouts) {
Chris@648 580 defaultWarning = tr("<p><b>Warning:</b> you are asking to close the default branch. This is not usually a good idea!</p>");
Chris@648 581 }
Chris@514 582 } else {
Chris@514 583 branchText = tr("branch \"%1\"").arg(m_currentBranch);
Chris@514 584 }
Chris@514 585
Chris@648 586 if (haveSprouts) {
Chris@648 587 branchText = tr("a sub-branch of %1").arg(branchText);
Chris@648 588 }
Chris@648 589
Chris@514 590 if (ConfirmCommentDialog::confirmAndGetLongComment
Chris@514 591 (this,
Chris@514 592 cf,
Chris@514 593 tr("<h3>%1</h3><p>%2%3").arg(cf)
Chris@518 594 .arg(tr("You are about to close %1.<p>This branch will be marked as closed and hidden from the history view.<p>You will still be able to see if it you select \"Show closed branches\" in the history view, and it will be reopened if you commit to it.<p>Please enter your comment for the commit log:").arg(branchText))
Chris@514 595 .arg(defaultWarning),
Chris@514 596 comment,
Chris@514 597 tr("C&lose branch"))) {
Chris@514 598
Chris@514 599 params << "commit" << "--message" << comment
Chris@514 600 << "--user" << getUserInfo() << "--close-branch";
Chris@514 601
Chris@514 602 m_runner->requestAction(HgAction(ACT_CLOSE_BRANCH, m_workFolderPath, params));
Chris@514 603 }
Chris@514 604 }
Chris@514 605
Chris@164 606 void MainWindow::hgTag(QString id)
jtkorhonen@34 607 {
Chris@109 608 QStringList params;
Chris@109 609 QString tag;
jtkorhonen@34 610
Chris@109 611 if (ConfirmCommentDialog::confirmAndGetShortComment
Chris@109 612 (this,
Chris@109 613 tr("Tag"),
Chris@109 614 tr("Enter tag:"),
Chris@193 615 tag,
Chris@365 616 tr("Add &Tag"))) {
Chris@164 617 if (!tag.isEmpty()) {//!!! do something better if it is empty
Chris@164 618
Chris@164 619 params << "tag" << "--user" << getUserInfo();
Chris@164 620 params << "--rev" << Changeset::hashOf(id) << filterTag(tag);
Chris@109 621
Chris@284 622 m_runner->requestAction(HgAction(ACT_TAG, m_workFolderPath, params));
jtkorhonen@34 623 }
jtkorhonen@34 624 }
jtkorhonen@34 625 }
jtkorhonen@34 626
Chris@417 627 void MainWindow::initHgIgnore()
jtkorhonen@34 628 {
Chris@284 629 if (!QDir(m_workFolderPath).exists()) return;
Chris@417 630 QString hgIgnorePath = m_workFolderPath + "/.hgignore";
Chris@417 631
Chris@249 632 QFile f(hgIgnorePath);
Chris@249 633 if (!f.exists()) {
Chris@249 634 f.open(QFile::WriteOnly);
Chris@249 635 QTextStream *ts = new QTextStream(&f);
Chris@249 636 *ts << "syntax: glob\n";
Chris@249 637 delete ts;
Chris@249 638 f.close();
Chris@249 639 }
Chris@417 640 }
Chris@417 641
Chris@425 642 void MainWindow::hgIgnore()
Chris@425 643 {
Chris@425 644 // hgExplorer permitted adding "all" files -- I'm not sure
Chris@425 645 // that one is a good idea, let's require the user to select
Chris@425 646
Chris@425 647 hgIgnoreFiles(m_hgTabs->getSelectedAddableFiles());
Chris@425 648 }
Chris@425 649
Chris@417 650 void MainWindow::hgEditIgnore()
Chris@417 651 {
Chris@417 652 if (!QDir(m_workFolderPath).exists()) return;
Chris@417 653
Chris@417 654 initHgIgnore();
Chris@417 655
Chris@417 656 QString hgIgnorePath = m_workFolderPath + "/.hgignore";
Chris@476 657
Chris@476 658 QFile f(hgIgnorePath);
Chris@476 659 if (!f.exists()) return; // shouldn't happen (after initHgIgnore called)
Chris@476 660
Chris@476 661 if (!f.open(QFile::ReadOnly)) return;
Chris@476 662 QTextStream sin(&f);
Chris@476 663 QString all = sin.readAll();
Chris@476 664 f.close();
Chris@476 665
Chris@476 666 QDialog d;
Chris@476 667 QGridLayout layout;
Chris@476 668 d.setLayout(&layout);
Chris@476 669
Chris@476 670 int row = 0;
Chris@476 671 layout.addWidget(new QLabel(tr("<qt><h3>Ignored File Patterns</h3></qt>")), row++, 0);//!!! todo: link to Hg docs?
Chris@476 672
Chris@476 673 QTextEdit ed;
Chris@476 674 ed.setAcceptRichText(false);
Chris@476 675 ed.setLineWrapMode(QTextEdit::NoWrap);
Chris@476 676 layout.setRowStretch(row, 10);
Chris@476 677 layout.addWidget(&ed, row++, 0);
Chris@179 678
Chris@476 679 QDialogButtonBox bb(QDialogButtonBox::Save | QDialogButtonBox::Cancel);
Chris@476 680 connect(bb.button(QDialogButtonBox::Save), SIGNAL(clicked()),
Chris@476 681 &d, SLOT(accept()));
Chris@476 682 connect(bb.button(QDialogButtonBox::Cancel), SIGNAL(clicked()),
Chris@476 683 &d, SLOT(reject()));
Chris@476 684 layout.addWidget(&bb, row++, 0);
Chris@476 685
Chris@476 686 ed.document()->setPlainText(all);
Chris@476 687
Chris@476 688 d.resize(QSize(300, 400));
Chris@476 689
Chris@476 690 if (d.exec() == QDialog::Accepted) {
Chris@476 691 if (!f.open(QFile::WriteOnly | QFile::Truncate)) {
Chris@476 692 QMessageBox::critical(this, tr("Write failed"),
Chris@476 693 tr("Failed to open file %1 for writing")
Chris@476 694 .arg(f.fileName()));
Chris@476 695 return;
Chris@476 696 }
Chris@476 697 QTextStream sout(&f);
Chris@476 698 sout << ed.document()->toPlainText();
Chris@476 699 f.close();
Chris@179 700 }
Chris@179 701 }
Chris@179 702
Chris@421 703 static QString regexEscape(QString filename)
Chris@421 704 {
Chris@421 705 return filename
Chris@421 706 .replace(".", "\\.")
Chris@421 707 .replace("[", "\\[")
Chris@421 708 .replace("]", "\\]")
Chris@421 709 .replace("(", "\\(")
Chris@421 710 .replace(")", "\\)")
Chris@421 711 .replace("?", "\\?");
Chris@421 712 }
Chris@421 713
Chris@326 714 void MainWindow::hgIgnoreFiles(QStringList files)
Chris@326 715 {
Chris@417 716 if (!QDir(m_workFolderPath).exists() || files.empty()) return;
Chris@413 717
Chris@413 718 // we should:
Chris@413 719 //
Chris@413 720 // * show the user the list of file names selected
Chris@413 721 //
Chris@413 722 // * offer a choice (depending on the files selected?)
Chris@413 723 //
Chris@413 724 // - ignore only these files
Chris@413 725 //
Chris@413 726 // - ignore files with these names, in any subdirectories?
Chris@413 727 //
Chris@413 728 // - ignore all files with this extension (if they have a common
Chris@413 729 // extension)?
Chris@413 730 //
Chris@413 731 // - ignore all files with these extensions (if they have any
Chris@413 732 // extensions?)
Chris@413 733
Chris@414 734 DEBUG << "MainWindow::hgIgnoreFiles: File names are:" << endl;
Chris@414 735 foreach (QString file, files) DEBUG << file << endl;
Chris@414 736
Chris@414 737 QSet<QString> suffixes;
Chris@414 738 foreach (QString file, files) {
Chris@414 739 QString s = QFileInfo(file).suffix();
Chris@414 740 if (s != "") suffixes.insert(s);
Chris@414 741 }
Chris@414 742
Chris@419 743 QString directory;
Chris@429 744 int dirCount = 0;
Chris@419 745 foreach (QString file, files) {
Chris@419 746 QString d = QFileInfo(file).path();
Chris@419 747 if (d != directory) {
Chris@419 748 ++dirCount;
Chris@419 749 directory = d;
Chris@419 750 }
Chris@419 751 }
Chris@421 752 if (dirCount != 1 || directory == ".") directory = "";
Chris@419 753
Chris@414 754 HgIgnoreDialog::IgnoreType itype =
Chris@415 755 HgIgnoreDialog::confirmIgnore
Chris@419 756 (this, files, QStringList::fromSet(suffixes), directory);
Chris@414 757
Chris@416 758 DEBUG << "hgIgnoreFiles: Ignore type is " << itype << endl;
Chris@417 759
Chris@421 760 if (itype == HgIgnoreDialog::IgnoreNothing) return;
Chris@421 761
Chris@417 762 // Now, .hgignore can be switched from regex to glob syntax
Chris@417 763 // part-way through -- and glob is much simpler for us, so we
Chris@417 764 // should do that if it's in regex mode at the end of the file.
Chris@417 765
Chris@417 766 initHgIgnore();
Chris@417 767
Chris@417 768 QString hgIgnorePath = m_workFolderPath + "/.hgignore";
Chris@417 769
Chris@417 770 // hgignore file should now exist (initHgIgnore should have
Chris@417 771 // created it if it didn't). Check for glob status first
Chris@417 772
Chris@417 773 QFile f(hgIgnorePath);
Chris@417 774 if (!f.exists()) {
Chris@417 775 std::cerr << "MainWindow::ignoreFiles: Internal error: .hgignore file not found (even though we were supposed to have created it)" << std::endl;
Chris@417 776 return;
Chris@417 777 }
Chris@417 778
Chris@417 779 f.open(QFile::ReadOnly);
Chris@417 780 bool glob = false;
Chris@606 781 bool cr = false; // whether the last line examined ended with a CR
Chris@417 782 while (!f.atEnd()) {
Chris@417 783 QByteArray ba = f.readLine();
Chris@606 784 QString s = QString::fromLocal8Bit(ba);
Chris@606 785 cr = (s.endsWith('\n') || s.endsWith('\r'));
Chris@606 786 s = s.trimmed();
Chris@417 787 if (s.startsWith("syntax:")) {
Chris@417 788 if (s.endsWith("glob")) {
Chris@417 789 glob = true;
Chris@417 790 } else {
Chris@417 791 glob = false;
Chris@417 792 }
Chris@417 793 }
Chris@417 794 }
Chris@417 795 f.close();
Chris@417 796
Chris@417 797 f.open(QFile::Append);
Chris@417 798 QTextStream out(&f);
Chris@417 799
Chris@606 800 if (!cr) {
Chris@606 801 out << endl;
Chris@606 802 }
Chris@606 803
Chris@417 804 if (!glob) {
Chris@417 805 out << "syntax: glob" << endl;
Chris@417 806 }
Chris@417 807
Chris@421 808 QString info = "<qt><h3>" + tr("Ignored files") + "</h3><p>";
Chris@421 809 info += tr("The following lines have been added to the .hgignore file for this working copy:");
Chris@421 810 info += "</p><code>";
Chris@421 811
Chris@421 812 QStringList args;
Chris@417 813 if (itype == HgIgnoreDialog::IgnoreAllFilesOfGivenSuffixes) {
Chris@421 814 args = QStringList::fromSet(suffixes);
Chris@421 815 } else if (itype == HgIgnoreDialog::IgnoreGivenFilesOnly) {
Chris@421 816 args = files;
Chris@421 817 } else if (itype == HgIgnoreDialog::IgnoreAllFilesOfGivenNames) {
Chris@421 818 QSet<QString> names;
Chris@421 819 foreach (QString f, files) {
Chris@421 820 names << QFileInfo(f).fileName();
Chris@417 821 }
Chris@421 822 args = QStringList::fromSet(names);
Chris@421 823 } else if (itype == HgIgnoreDialog::IgnoreWholeDirectory) {
Chris@421 824 args << directory;
Chris@421 825 }
Chris@421 826
Chris@421 827 bool first = true;
Chris@421 828
Chris@421 829 foreach (QString a, args) {
Chris@421 830 QString line;
Chris@421 831 if (itype == HgIgnoreDialog::IgnoreAllFilesOfGivenSuffixes) {
Chris@421 832 line = "*." + a;
Chris@421 833 } else if (itype == HgIgnoreDialog::IgnoreGivenFilesOnly) {
Chris@421 834 // Doesn't seem to be possible to do this with a glob,
Chris@421 835 // because the glob is always unanchored and there is no
Chris@421 836 // equivalent of ^ to anchor it
chris@423 837 line = "re:^" + regexEscape(a) + "$";
Chris@421 838 } else if (itype == HgIgnoreDialog::IgnoreAllFilesOfGivenNames) {
Chris@421 839 line = a;
Chris@421 840 } else if (itype == HgIgnoreDialog::IgnoreWholeDirectory) {
Chris@421 841 line = "re:^" + regexEscape(a) + "/";
Chris@418 842 }
Chris@421 843 if (line != "") {
Chris@421 844 out << line << endl;
Chris@421 845 if (!first) info += "<br>";
Chris@421 846 first = false;
Chris@421 847 info += xmlEncode(line);
Chris@417 848 }
Chris@417 849 }
Chris@417 850
Chris@419 851 f.close();
Chris@419 852
Chris@421 853 info += "</code></qt>";
Chris@421 854
Chris@421 855 QMessageBox::information(this, tr("Ignored files"),
Chris@421 856 info);
Chris@421 857
Chris@417 858 hgRefresh();
Chris@326 859 }
Chris@326 860
Chris@671 861 void MainWindow::hgUnIgnoreFiles(QStringList)
Chris@326 862 {
Chris@421 863 // Not implemented: edit the .hgignore instead
Chris@421 864 hgEditIgnore();
Chris@326 865 }
Chris@326 866
sam@624 867 void MainWindow::hgShowIn(QStringList files)
sam@624 868 {
sam@624 869 foreach (QString file, files)
sam@624 870 {
sam@624 871 QStringList args;
Chris@638 872 #if defined Q_OS_WIN32
sam@624 873 // Although the Win32 API is quite happy to have
sam@624 874 // forward slashes as directory separators, Windows
sam@624 875 // Explorer is not
sam@635 876 int last = m_workFolderPath.length() - 1;
Chris@680 877 QChar c = m_workFolderPath[last];
sam@635 878 if (c == '\\' || c == '/') {
sam@635 879 m_workFolderPath.chop(1);
sam@635 880 }
sam@635 881 file = m_workFolderPath + "\\" + file;
sam@624 882 file = file.replace('/', '\\');
sam@624 883 args << "/select," << file;
sam@624 884 QProcess::execute("c:/windows/explorer.exe", args);
Chris@638 885 #elif defined(Q_OS_MAC)
sam@637 886 file = m_workFolderPath + "/" + file;
sam@637 887 args << "--reveal" << file;
sam@624 888 QProcess::execute("/usr/bin/open", args);
Chris@638 889 #endif
sam@624 890 }
sam@624 891 }
sam@624 892
Chris@239 893 QString MainWindow::getDiffBinaryName()
Chris@179 894 {
Chris@179 895 QSettings settings;
Chris@179 896 settings.beginGroup("Locations");
Chris@239 897 return settings.value("extdiffbinary", "").toString();
Chris@179 898 }
Chris@179 899
Chris@239 900 QString MainWindow::getMergeBinaryName()
Chris@179 901 {
Chris@179 902 QSettings settings;
Chris@179 903 settings.beginGroup("Locations");
Chris@239 904 return settings.value("mergebinary", "").toString();
Chris@179 905 }
Chris@179 906
Chris@168 907 void MainWindow::hgShowSummary()
Chris@168 908 {
Chris@168 909 QStringList params;
Chris@168 910
Chris@168 911 params << "diff" << "--stat";
Chris@168 912
Chris@288 913 m_runner->requestAction(HgAction(ACT_UNCOMMITTED_SUMMARY, m_workFolderPath, params));
Chris@168 914 }
Chris@168 915
jtkorhonen@0 916 void MainWindow::hgFolderDiff()
jtkorhonen@0 917 {
Chris@326 918 hgDiffFiles(QStringList());
Chris@326 919 }
Chris@326 920
Chris@326 921 void MainWindow::hgDiffFiles(QStringList files)
Chris@326 922 {
Chris@239 923 QString diff = getDiffBinaryName();
Chris@179 924 if (diff == "") return;
Chris@112 925
Chris@109 926 QStringList params;
jtkorhonen@0 927
Chris@112 928 // Diff parent against working folder (folder diff)
Chris@112 929
Chris@148 930 params << "--config" << "extensions.extdiff=" << "extdiff";
sam@633 931 params << "--program" << diff << "--";
sam@633 932
sam@633 933 QSettings settings;
sam@633 934 if (settings.value("multipleDiffInstances", false).toBool()) {
sam@633 935 foreach (QString file, files) {
sam@633 936 QStringList p = params;
sam@633 937 p << file;
sam@633 938 m_runner->requestAction(HgAction(ACT_FOLDERDIFF, m_workFolderPath, p));
sam@633 939 }
sam@633 940 }
sam@633 941 else {
sam@633 942 params << files; // may be none: whole dir
sam@633 943 m_runner->requestAction(HgAction(ACT_FOLDERDIFF, m_workFolderPath, params));
sam@633 944 }
jtkorhonen@0 945 }
jtkorhonen@0 946
Chris@148 947 void MainWindow::hgDiffToCurrent(QString id)
jtkorhonen@0 948 {
Chris@239 949 QString diff = getDiffBinaryName();
Chris@179 950 if (diff == "") return;
Chris@163 951
Chris@148 952 QStringList params;
jtkorhonen@0 953
Chris@148 954 // Diff given revision against working folder
jtkorhonen@0 955
Chris@148 956 params << "--config" << "extensions.extdiff=" << "extdiff";
Chris@179 957 params << "--program" << diff;
Chris@153 958 params << "--rev" << Changeset::hashOf(id);
Chris@148 959
Chris@284 960 m_runner->requestAction(HgAction(ACT_FOLDERDIFF, m_workFolderPath, params));
jtkorhonen@0 961 }
jtkorhonen@0 962
Chris@148 963 void MainWindow::hgDiffToParent(QString child, QString parent)
Chris@148 964 {
Chris@239 965 QString diff = getDiffBinaryName();
Chris@179 966 if (diff == "") return;
Chris@163 967
Chris@148 968 QStringList params;
Chris@148 969
Chris@281 970 // Diff given revision against parent revision
Chris@148 971
Chris@148 972 params << "--config" << "extensions.extdiff=" << "extdiff";
Chris@179 973 params << "--program" << diff;
Chris@153 974 params << "--rev" << Changeset::hashOf(parent)
Chris@153 975 << "--rev" << Changeset::hashOf(child);
Chris@148 976
Chris@284 977 m_runner->requestAction(HgAction(ACT_CHGSETDIFF, m_workFolderPath, params));
Chris@273 978 }
Chris@326 979
Chris@273 980
Chris@289 981 void MainWindow::hgShowSummaryFor(Changeset *cs)
Chris@288 982 {
Chris@288 983 QStringList params;
Chris@288 984
Chris@289 985 // This will pick a default parent if there is more than one
Chris@289 986 // (whereas with diff we need to supply one). But it does need a
Chris@289 987 // bit more parsing
Chris@289 988 params << "log" << "--stat" << "--rev" << Changeset::hashOf(cs->id());
Chris@289 989
Chris@289 990 m_runner->requestAction(HgAction(ACT_DIFF_SUMMARY, m_workFolderPath,
Chris@289 991 params, cs));
Chris@148 992 }
Chris@148 993
jtkorhonen@0 994
jtkorhonen@0 995 void MainWindow::hgUpdate()
jtkorhonen@0 996 {
Chris@109 997 QStringList params;
jtkorhonen@0 998
Chris@109 999 params << "update";
Chris@109 1000
Chris@284 1001 m_runner->requestAction(HgAction(ACT_UPDATE, m_workFolderPath, params));
jtkorhonen@0 1002 }
jtkorhonen@0 1003
jtkorhonen@0 1004
Chris@148 1005 void MainWindow::hgUpdateToRev(QString id)
jtkorhonen@0 1006 {
Chris@148 1007 QStringList params;
jtkorhonen@0 1008
Chris@153 1009 params << "update" << "--rev" << Changeset::hashOf(id) << "--check";
jtkorhonen@0 1010
Chris@284 1011 m_runner->requestAction(HgAction(ACT_UPDATE, m_workFolderPath, params));
jtkorhonen@0 1012 }
jtkorhonen@0 1013
jtkorhonen@0 1014
jtkorhonen@0 1015 void MainWindow::hgRevert()
jtkorhonen@0 1016 {
Chris@326 1017 hgRevertFiles(QStringList());
Chris@326 1018 }
Chris@326 1019
Chris@326 1020 void MainWindow::hgRevertFiles(QStringList files)
Chris@326 1021 {
Chris@109 1022 QStringList params;
Chris@109 1023 QString comment;
Chris@237 1024 bool all = false;
Chris@98 1025
Chris@284 1026 QStringList allFiles = m_hgTabs->getAllRevertableFiles();
Chris@237 1027 if (files.empty() || files == allFiles) {
Chris@237 1028 files = allFiles;
Chris@237 1029 all = true;
Chris@237 1030 }
Chris@237 1031
Chris@237 1032 QString subsetNote;
Chris@237 1033 if (!all) {
Chris@237 1034 subsetNote = tr("<p><b>Note:</b> you are reverting only the files you have selected, not all of the files that have been changed!");
Chris@237 1035 }
Chris@155 1036
Chris@155 1037 QString rf(tr("Revert files"));
Chris@237 1038
Chris@237 1039 // Set up params before asking for confirmation, because there is
Chris@237 1040 // a failure case here that we would need to report on early
Chris@237 1041
Chris@284 1042 DEBUG << "hgRevert: m_justMerged = " << m_justMerged << ", m_mergeTargetRevision = " << m_mergeTargetRevision << endl;
Chris@273 1043
Chris@284 1044 if (m_justMerged) {
Chris@237 1045
Chris@237 1046 // This is a little fiddly. The proper way to "revert" the
Chris@237 1047 // whole of an uncommitted merge is with "hg update --clean ."
Chris@237 1048 // But if the user has selected only some files, we're sort of
Chris@237 1049 // promising to revert only those, which means we need to
Chris@237 1050 // specify which parent to revert to. We can only do that if
Chris@237 1051 // we have a record of it, which we do if you just did the
Chris@237 1052 // merge from within easyhg but don't if you've exited and
Chris@237 1053 // restarted, or changed repository, since then. Hmmm.
Chris@237 1054
Chris@237 1055 if (all) {
Chris@237 1056 params << "update" << "--clean" << ".";
Chris@237 1057 } else {
Chris@284 1058 if (m_mergeTargetRevision != "") {
Chris@237 1059 params << "revert" << "--rev"
Chris@284 1060 << Changeset::hashOf(m_mergeTargetRevision)
Chris@237 1061 << "--" << files;
Chris@237 1062 } else {
Chris@237 1063 QMessageBox::information
Chris@237 1064 (this, tr("Unable to revert"),
Chris@237 1065 tr("<qt><b>Sorry, unable to revert these files</b><br><br>EasyMercurial can only revert a subset of files during a merge if it still has a record of which parent was the original merge target; that information is no longer available.<br><br>This is a limitation of EasyMercurial. Consider reverting all files, or using hg revert with a specific revision at the command-line instead.</qt>"));
Chris@237 1066 return;
Chris@237 1067 }
Chris@237 1068 }
Chris@237 1069 } else {
Chris@237 1070 params << "revert" << "--" << files;
Chris@237 1071 }
Chris@237 1072
Chris@109 1073 if (ConfirmCommentDialog::confirmDangerousFilesAction
Chris@109 1074 (this,
Chris@155 1075 rf,
Chris@237 1076 tr("<h3>%1</h3><p>%2%3").arg(rf)
Chris@237 1077 .arg(tr("You are about to <b>revert</b> the following files to their previous committed state.<br><br>This will <b>throw away any changes</b> that you have made to these files but have not committed."))
Chris@237 1078 .arg(subsetNote),
Chris@237 1079 tr("<h3>%1</h3><p>%2%3").arg(rf)
Chris@237 1080 .arg(tr("You are about to <b>revert</b> %n file(s).<br><br>This will <b>throw away any changes</b> that you have made to these files but have not committed.", "", files.size()))
Chris@237 1081 .arg(subsetNote),
Chris@193 1082 files,
Chris@365 1083 tr("Re&vert"))) {
Chris@163 1084
Chris@284 1085 m_lastRevertedFiles = files;
Chris@109 1086
Chris@284 1087 m_runner->requestAction(HgAction(ACT_REVERT, m_workFolderPath, params));
jtkorhonen@0 1088 }
jtkorhonen@0 1089 }
jtkorhonen@0 1090
Chris@163 1091
Chris@361 1092 void MainWindow::hgRenameFiles(QStringList files)
Chris@361 1093 {
Chris@361 1094 QString renameTo;
Chris@361 1095
Chris@361 1096 QString file;
Chris@361 1097 if (files.empty()) return;
Chris@361 1098 file = files[0];
Chris@361 1099
Chris@361 1100 if (ConfirmCommentDialog::confirmAndGetShortComment
Chris@361 1101 (this,
Chris@361 1102 tr("Rename"),
Chris@361 1103 tr("Rename <code>%1</code> to:").arg(xmlEncode(file)),
Chris@361 1104 renameTo,
Chris@365 1105 tr("Re&name"))) {
Chris@361 1106
Chris@361 1107 if (renameTo != "" && renameTo != file) {
Chris@361 1108
Chris@361 1109 QStringList params;
Chris@361 1110
Chris@361 1111 params << "rename" << "--" << file << renameTo;
Chris@361 1112
Chris@361 1113 m_runner->requestAction(HgAction(ACT_RENAME_FILE, m_workFolderPath, params));
Chris@361 1114 }
Chris@361 1115 }
Chris@361 1116 }
Chris@361 1117
Chris@361 1118
Chris@361 1119 void MainWindow::hgCopyFiles(QStringList files)
Chris@361 1120 {
Chris@361 1121 QString copyTo;
Chris@361 1122
Chris@361 1123 QString file;
Chris@361 1124 if (files.empty()) return;
Chris@361 1125 file = files[0];
Chris@361 1126
Chris@361 1127 if (ConfirmCommentDialog::confirmAndGetShortComment
Chris@361 1128 (this,
Chris@361 1129 tr("Copy"),
Chris@361 1130 tr("Copy <code>%1</code> to:").arg(xmlEncode(file)),
Chris@361 1131 copyTo,
Chris@365 1132 tr("Co&py"))) {
Chris@361 1133
Chris@361 1134 if (copyTo != "" && copyTo != file) {
Chris@361 1135
Chris@361 1136 QStringList params;
Chris@361 1137
Chris@361 1138 params << "copy" << "--" << file << copyTo;
Chris@361 1139
Chris@361 1140 m_runner->requestAction(HgAction(ACT_COPY_FILE, m_workFolderPath, params));
Chris@361 1141 }
Chris@361 1142 }
Chris@361 1143 }
Chris@361 1144
Chris@361 1145
Chris@326 1146 void MainWindow::hgMarkFilesResolved(QStringList files)
Chris@163 1147 {
Chris@163 1148 QStringList params;
Chris@163 1149
Chris@163 1150 params << "resolve" << "--mark";
Chris@163 1151
Chris@163 1152 if (files.empty()) {
Chris@163 1153 params << "--all";
Chris@163 1154 } else {
Chris@164 1155 params << "--" << files;
Chris@163 1156 }
Chris@163 1157
Chris@284 1158 m_runner->requestAction(HgAction(ACT_RESOLVE_MARK, m_workFolderPath, params));
Chris@163 1159 }
Chris@163 1160
Chris@163 1161
Chris@326 1162 void MainWindow::hgRedoMerge()
Chris@326 1163 {
Chris@326 1164 hgRedoFileMerges(QStringList());
Chris@326 1165 }
Chris@326 1166
Chris@326 1167
Chris@326 1168 void MainWindow::hgRedoFileMerges(QStringList files)
jtkorhonen@33 1169 {
Chris@109 1170 QStringList params;
jtkorhonen@33 1171
Chris@163 1172 params << "resolve";
Chris@163 1173
Chris@239 1174 QString merge = getMergeBinaryName();
Chris@179 1175 if (merge != "") {
Chris@179 1176 params << "--tool" << merge;
Chris@163 1177 }
Chris@163 1178
Chris@163 1179 if (files.empty()) {
Chris@163 1180 params << "--all";
Chris@163 1181 } else {
Chris@164 1182 params << "--" << files;
Chris@163 1183 }
Chris@163 1184
Chris@284 1185 if (m_currentParents.size() == 1) {
Chris@284 1186 m_mergeTargetRevision = m_currentParents[0]->id();
Chris@237 1187 }
Chris@237 1188
Chris@284 1189 m_runner->requestAction(HgAction(ACT_RETRY_MERGE, m_workFolderPath, params));
Chris@273 1190
Chris@284 1191 m_mergeCommitComment = tr("Merge");
jtkorhonen@33 1192 }
Chris@326 1193
jtkorhonen@33 1194
jtkorhonen@0 1195 void MainWindow::hgMerge()
jtkorhonen@0 1196 {
Chris@284 1197 if (m_hgTabs->canResolve()) {
Chris@326 1198 hgRedoMerge();
Chris@163 1199 return;
Chris@163 1200 }
Chris@163 1201
Chris@109 1202 QStringList params;
jtkorhonen@0 1203
Chris@109 1204 params << "merge";
Chris@163 1205
Chris@239 1206 QString merge = getMergeBinaryName();
Chris@179 1207 if (merge != "") {
Chris@179 1208 params << "--tool" << merge;
Chris@163 1209 }
Chris@163 1210
Chris@284 1211 if (m_currentParents.size() == 1) {
Chris@284 1212 m_mergeTargetRevision = m_currentParents[0]->id();
Chris@163 1213 }
Chris@163 1214
Chris@284 1215 m_runner->requestAction(HgAction(ACT_MERGE, m_workFolderPath, params));
Chris@273 1216
Chris@284 1217 m_mergeCommitComment = tr("Merge");
jtkorhonen@0 1218 }
jtkorhonen@0 1219
jtkorhonen@0 1220
Chris@148 1221 void MainWindow::hgMergeFrom(QString id)
Chris@148 1222 {
Chris@148 1223 QStringList params;
Chris@148 1224
Chris@148 1225 params << "merge";
Chris@153 1226 params << "--rev" << Changeset::hashOf(id);
Chris@163 1227
Chris@239 1228 QString merge = getMergeBinaryName();
Chris@179 1229 if (merge != "") {
Chris@179 1230 params << "--tool" << merge;
Chris@163 1231 }
Chris@148 1232
Chris@284 1233 if (m_currentParents.size() == 1) {
Chris@284 1234 m_mergeTargetRevision = m_currentParents[0]->id();
Chris@237 1235 }
Chris@237 1236
Chris@284 1237 m_runner->requestAction(HgAction(ACT_MERGE, m_workFolderPath, params));
Chris@273 1238
Chris@284 1239 m_mergeCommitComment = "";
Chris@273 1240
Chris@284 1241 foreach (Changeset *cs, m_currentHeads) {
Chris@284 1242 if (cs->id() == id && !cs->isOnBranch(m_currentBranch)) {
Chris@157 1243 if (cs->branch() == "" || cs->branch() == "default") {
Chris@284 1244 m_mergeCommitComment = tr("Merge from the default branch");
Chris@157 1245 } else {
Chris@284 1246 m_mergeCommitComment = tr("Merge from branch \"%1\"").arg(cs->branch());
Chris@157 1247 }
Chris@157 1248 }
Chris@157 1249 }
Chris@157 1250
Chris@284 1251 if (m_mergeCommitComment == "") {
Chris@284 1252 m_mergeCommitComment = tr("Merge from %1").arg(id);
Chris@157 1253 }
Chris@148 1254 }
Chris@148 1255
Chris@148 1256
jtkorhonen@0 1257 void MainWindow::hgCloneFromRemote()
jtkorhonen@0 1258 {
Chris@109 1259 QStringList params;
jtkorhonen@0 1260
Chris@284 1261 if (!QDir(m_workFolderPath).exists()) {
Chris@284 1262 if (!QDir().mkpath(m_workFolderPath)) {
Chris@109 1263 DEBUG << "hgCloneFromRemote: Failed to create target path "
Chris@284 1264 << m_workFolderPath << endl;
Chris@607 1265 QMessageBox::critical
Chris@607 1266 (this, tr("Could not create target folder"),
Chris@607 1267 tr("<qt><b>Could not create target folder</b><br><br>The local target folder \"%1\" does not exist<br>and could not be created.</qt>").arg(xmlEncode(m_workFolderPath)));
Chris@608 1268 m_workFolderPath = "";
Chris@109 1269 return;
Chris@104 1270 }
Chris@109 1271 }
Chris@104 1272
Chris@284 1273 params << "clone" << m_remoteRepoPath << m_workFolderPath;
Chris@109 1274
Chris@287 1275 updateWorkFolderAndRepoNames();
Chris@284 1276 m_hgTabs->updateWorkFolderFileList("");
Chris@608 1277 m_hgTabs->clearAll();
Chris@273 1278
Chris@284 1279 m_runner->requestAction(HgAction(ACT_CLONEFROMREMOTE, m_workFolderPath, params));
jtkorhonen@0 1280 }
jtkorhonen@0 1281
jtkorhonen@0 1282 void MainWindow::hgInit()
jtkorhonen@0 1283 {
Chris@109 1284 QStringList params;
jtkorhonen@0 1285
Chris@109 1286 params << "init";
Chris@284 1287 params << m_workFolderPath;
Chris@273 1288
Chris@284 1289 m_runner->requestAction(HgAction(ACT_INIT, m_workFolderPath, params));
jtkorhonen@0 1290 }
jtkorhonen@0 1291
jtkorhonen@0 1292 void MainWindow::hgIncoming()
jtkorhonen@0 1293 {
Chris@109 1294 QStringList params;
jtkorhonen@0 1295
Chris@284 1296 params << "incoming" << "--newest-first" << m_remoteRepoPath;
Chris@125 1297 params << "--template" << Changeset::getLogTemplate();
jtkorhonen@0 1298
Chris@284 1299 m_runner->requestAction(HgAction(ACT_INCOMING, m_workFolderPath, params));
jtkorhonen@0 1300 }
jtkorhonen@0 1301
jtkorhonen@0 1302 void MainWindow::hgPull()
jtkorhonen@0 1303 {
Chris@193 1304 if (ConfirmCommentDialog::confirm
Chris@126 1305 (this, tr("Confirm pull"),
Chris@299 1306 tr("<qt><h3>Pull from remote repository?</h3></qt>"),
Chris@299 1307 tr("<qt><p>You are about to pull changes from the remote repository at <code>%1</code>.</p></qt>").arg(xmlEncode(m_remoteRepoPath)),
Chris@365 1308 tr("&Pull"))) {
jtkorhonen@0 1309
Chris@126 1310 QStringList params;
Chris@284 1311 params << "pull" << m_remoteRepoPath;
Chris@284 1312 m_runner->requestAction(HgAction(ACT_PULL, m_workFolderPath, params));
Chris@126 1313 }
jtkorhonen@0 1314 }
jtkorhonen@0 1315
jtkorhonen@0 1316 void MainWindow::hgPush()
jtkorhonen@0 1317 {
Chris@363 1318 if (m_remoteRepoPath.isEmpty()) {
Chris@363 1319 changeRemoteRepo(true);
Chris@363 1320 if (m_remoteRepoPath.isEmpty()) return;
Chris@363 1321 }
Chris@363 1322
Chris@356 1323 QString uncommittedNote;
Chris@356 1324 if (m_hgTabs->canCommit()) {
Chris@356 1325 uncommittedNote = tr("<p><b>Note:</b> You have uncommitted changes. If you want to push these changes to the remote repository, you need to commit them first.");
Chris@356 1326 }
Chris@356 1327
Chris@193 1328 if (ConfirmCommentDialog::confirm
Chris@126 1329 (this, tr("Confirm push"),
Chris@299 1330 tr("<qt><h3>Push to remote repository?</h3></qt>"),
Chris@356 1331 tr("<qt><p>You are about to push your commits to the remote repository at <code>%1</code>.</p>%2</qt>").arg(xmlEncode(m_remoteRepoPath)).arg(uncommittedNote),
Chris@365 1332 tr("&Push"))) {
jtkorhonen@0 1333
Chris@126 1334 QStringList params;
Chris@284 1335 params << "push" << "--new-branch" << m_remoteRepoPath;
Chris@284 1336 m_runner->requestAction(HgAction(ACT_PUSH, m_workFolderPath, params));
Chris@126 1337 }
jtkorhonen@0 1338 }
jtkorhonen@0 1339
Chris@182 1340 QStringList MainWindow::listAllUpIpV4Addresses()
jtkorhonen@26 1341 {
Chris@182 1342 QStringList ret;
jtkorhonen@26 1343 QList<QNetworkInterface> ifaces = QNetworkInterface::allInterfaces();
jtkorhonen@26 1344
Chris@182 1345 for (int i = 0; i < ifaces.count(); i++) {
jtkorhonen@26 1346 QNetworkInterface iface = ifaces.at(i);
Chris@182 1347 if (iface.flags().testFlag(QNetworkInterface::IsUp)
Chris@182 1348 && !iface.flags().testFlag(QNetworkInterface::IsLoopBack)) {
Chris@182 1349 for (int j=0; j<iface.addressEntries().count(); j++) {
jtkorhonen@28 1350 QHostAddress tmp = iface.addressEntries().at(j).ip();
Chris@182 1351 if (QAbstractSocket::IPv4Protocol == tmp.protocol()) {
Chris@182 1352 ret.push_back(tmp.toString());
jtkorhonen@24 1353 }
jtkorhonen@24 1354 }
jtkorhonen@22 1355 }
jtkorhonen@17 1356 }
jtkorhonen@28 1357 return ret;
jtkorhonen@28 1358 }
jtkorhonen@17 1359
Chris@120 1360 void MainWindow::clearState()
Chris@120 1361 {
Chris@305 1362 DEBUG << "MainWindow::clearState" << endl;
Chris@284 1363 foreach (Changeset *cs, m_currentParents) delete cs;
Chris@284 1364 m_currentParents.clear();
Chris@284 1365 foreach (Changeset *cs, m_currentHeads) delete cs;
Chris@284 1366 m_currentHeads.clear();
Chris@506 1367 m_closedHeadIds.clear();
Chris@284 1368 m_currentBranch = "";
Chris@284 1369 m_lastStatOutput = "";
Chris@284 1370 m_lastRevertedFiles.clear();
Chris@284 1371 m_mergeTargetRevision = "";
Chris@284 1372 m_mergeCommitComment = "";
Chris@284 1373 m_stateUnknown = true;
Chris@284 1374 m_needNewLog = true;
Chris@120 1375 }
jtkorhonen@17 1376
jtkorhonen@11 1377 void MainWindow::hgServe()
jtkorhonen@11 1378 {
Chris@109 1379 QStringList params;
Chris@109 1380 QString msg;
jtkorhonen@11 1381
Chris@182 1382 QStringList addrs = listAllUpIpV4Addresses();
Chris@182 1383
Chris@182 1384 if (addrs.empty()) {
Chris@182 1385 QMessageBox::critical
Chris@182 1386 (this, tr("Serve"), tr("Failed to identify an active IPv4 address"));
Chris@182 1387 return;
Chris@182 1388 }
Chris@182 1389
Chris@526 1390 // See #202. We really want to display the port that the server
Chris@526 1391 // ends up using -- but we don't get that information until after
Chris@526 1392 // it has exited! However, we can improve the likelihood of
Chris@526 1393 // showing the right port by at least checking whether a port is
Chris@526 1394 // defined in the hgrc file.
Chris@526 1395
Chris@526 1396 QFileInfo hgrc(QDir::homePath() + "/.hgrc");
Chris@526 1397 QString path;
Chris@526 1398 int port = 8000; // the default
Chris@526 1399 if (hgrc.exists()) {
Chris@526 1400 QSettings s(hgrc.canonicalFilePath(), QSettings::IniFormat);
Chris@526 1401 s.beginGroup("web");
Chris@527 1402 int p = s.value("port").toInt();
Chris@527 1403 if (p) port = p;
Chris@526 1404 }
Chris@182 1405
Chris@182 1406 QTextStream ts(&msg);
Chris@429 1407 ts << QString("<qt><h3>%1</h3><p>%2</p>")
Chris@425 1408 .arg(tr("Sharing Repository"))
Chris@429 1409 .arg(tr("Your local repository is now being made temporarily available via HTTP for workgroup access."));
Chris@429 1410 if (addrs.size() > 1) {
Chris@429 1411 ts << QString("<p>%3</p>")
Chris@429 1412 .arg(tr("Users who have network access to your computer can now clone your repository, by using one of the following URLs as a remote location:"));
Chris@429 1413 } else {
Chris@429 1414 ts << QString("<p>%3</p>")
Chris@429 1415 .arg(tr("Users who have network access to your computer can now clone your repository, by using the following URL as a remote location:"));
Chris@429 1416 }
Chris@182 1417 foreach (QString addr, addrs) {
Chris@526 1418 ts << QString("<pre>&nbsp;&nbsp;http://%1:%2</pre>").arg(xmlEncode(addr)).arg(port);
Chris@182 1419 }
Chris@425 1420 ts << tr("<p>Press Close to terminate this server, end remote access, and return.</p>");
Chris@182 1421 ts.flush();
Chris@182 1422
Chris@109 1423 params << "serve";
jtkorhonen@11 1424
Chris@284 1425 m_runner->requestAction(HgAction(ACT_SERVE, m_workFolderPath, params));
Chris@109 1426
Chris@425 1427 QMessageBox::information(this, tr("Share Repository"), msg, QMessageBox::Close);
Chris@182 1428
Chris@284 1429 m_runner->killCurrentActions();
jtkorhonen@11 1430 }
jtkorhonen@11 1431
Chris@64 1432 void MainWindow::startupDialog()
Chris@64 1433 {
Chris@64 1434 StartupDialog *dlg = new StartupDialog(this);
Chris@284 1435 if (dlg->exec()) m_firstStart = false;
Chris@344 1436 else exit(0);
Chris@64 1437 }
jtkorhonen@11 1438
Chris@69 1439 void MainWindow::open()
Chris@69 1440 {
Chris@86 1441 bool done = false;
Chris@69 1442
Chris@86 1443 while (!done) {
Chris@69 1444
Chris@86 1445 MultiChoiceDialog *d = new MultiChoiceDialog
Chris@86 1446 (tr("Open Repository"),
Chris@86 1447 tr("<qt><big>What would you like to open?</big></qt>"),
Chris@341 1448 tr("https://code.soundsoftware.ac.uk/projects/easyhg/wiki/HelpOpenDialog"),
Chris@86 1449 this);
Chris@69 1450
Chris@345 1451 d->addChoice("remote",
Chris@345 1452 tr("<qt><center><img src=\":images/browser-64.png\"><br>Remote repository</center></qt>"),
Chris@345 1453 tr("Open a remote Mercurial repository, by cloning from its URL into a local folder."),
Chris@345 1454 MultiChoiceDialog::UrlToDirectoryArg);
Chris@345 1455
Chris@339 1456 d->addChoice("local",
Chris@339 1457 tr("<qt><center><img src=\":images/hglogo-64.png\"><br>Local repository</center></qt>"),
Chris@339 1458 tr("Open an existing local Mercurial repository."),
Chris@339 1459 MultiChoiceDialog::DirectoryArg);
Chris@339 1460
Chris@339 1461 d->addChoice("init",
Chris@339 1462 tr("<qt><center><img src=\":images/hdd_unmount-64.png\"><br>File folder</center></qt>"),
Chris@339 1463 tr("Open a local folder, by creating a Mercurial repository in it."),
Chris@339 1464 MultiChoiceDialog::DirectoryArg);
Chris@339 1465
Chris@248 1466 QSettings settings;
Chris@484 1467 settings.beginGroup("");
Chris@359 1468 QString lastChoice = settings.value("lastopentype", "remote").toString();
Chris@248 1469 if (lastChoice != "local" &&
Chris@248 1470 lastChoice != "remote" &&
Chris@248 1471 lastChoice != "init") {
Chris@359 1472 lastChoice = "remote";
Chris@248 1473 }
Chris@248 1474
Chris@248 1475 d->setCurrentChoice(lastChoice);
Chris@86 1476
Chris@86 1477 if (d->exec() == QDialog::Accepted) {
Chris@86 1478
Chris@86 1479 QString choice = d->getCurrentChoice();
Chris@248 1480 settings.setValue("lastopentype", choice);
Chris@248 1481
Chris@86 1482 QString arg = d->getArgument().trimmed();
Chris@86 1483
Chris@86 1484 bool result = false;
Chris@86 1485
Chris@86 1486 if (choice == "local") {
Chris@86 1487 result = openLocal(arg);
Chris@86 1488 } else if (choice == "remote") {
Chris@86 1489 result = openRemote(arg, d->getAdditionalArgument().trimmed());
Chris@86 1490 } else if (choice == "init") {
Chris@86 1491 result = openInit(arg);
Chris@86 1492 }
Chris@86 1493
Chris@86 1494 if (result) {
Chris@86 1495 enableDisableActions();
Chris@120 1496 clearState();
Chris@109 1497 hgQueryPaths();
Chris@91 1498 done = true;
Chris@91 1499 }
Chris@86 1500
Chris@86 1501 } else {
Chris@86 1502
Chris@86 1503 // cancelled
Chris@86 1504 done = true;
Chris@69 1505 }
Chris@79 1506
Chris@86 1507 delete d;
Chris@69 1508 }
Chris@69 1509 }
Chris@69 1510
Chris@359 1511 void MainWindow::recentMenuActivated()
Chris@359 1512 {
Chris@359 1513 QAction *a = qobject_cast<QAction *>(sender());
Chris@359 1514 if (!a) return;
Chris@359 1515 QString local = a->text();
Chris@359 1516 open(local);
Chris@359 1517 }
Chris@359 1518
Chris@182 1519 void MainWindow::changeRemoteRepo()
Chris@182 1520 {
Chris@363 1521 changeRemoteRepo(false);
Chris@363 1522 }
Chris@363 1523
Chris@363 1524 void MainWindow::changeRemoteRepo(bool initial)
Chris@363 1525 {
Chris@183 1526 // This will involve rewriting the local .hgrc
Chris@183 1527
Chris@284 1528 QDir hgDir(m_workFolderPath + "/.hg");
Chris@184 1529 if (!hgDir.exists()) {
Chris@184 1530 //!!! visible error!
Chris@184 1531 return;
Chris@184 1532 }
Chris@184 1533
Chris@284 1534 QFileInfo hgrc(m_workFolderPath + "/.hg/hgrc");
Chris@184 1535 if (hgrc.exists() && !hgrc.isWritable()) {
Chris@183 1536 //!!! visible error!
Chris@183 1537 return;
Chris@183 1538 }
Chris@183 1539
Chris@183 1540 MultiChoiceDialog *d = new MultiChoiceDialog
Chris@363 1541 (tr("Set Remote Location"),
Chris@363 1542 tr("<qt><big>Set the remote location</big></qt>"),
Chris@341 1543 "",
Chris@183 1544 this);
Chris@183 1545
Chris@363 1546 QString explanation;
Chris@363 1547 if (initial) {
Chris@609 1548 explanation = tr("Provide a remote URL to use when pushing from, or pulling to, the local<br>repository <code>%1</code>.<br>This will be the default for subsequent pushes and pulls.<br>You can change it using &ldquo;Set Remote Location&rdquo; on the File menu.").arg(m_workFolderPath);
Chris@363 1549 } else {
Chris@609 1550 explanation = tr("Provide a new remote URL to use when pushing from, or pulling to, the local<br>repository <code>%1</code>.").arg(m_workFolderPath);
Chris@363 1551 }
Chris@363 1552
Chris@183 1553 d->addChoice("remote",
Chris@183 1554 tr("<qt><center><img src=\":images/browser-64.png\"><br>Remote repository</center></qt>"),
Chris@363 1555 explanation,
Chris@553 1556 MultiChoiceDialog::UrlArg,
Chris@553 1557 true); // default empty
Chris@183 1558
Chris@183 1559 if (d->exec() == QDialog::Accepted) {
Chris@210 1560
Chris@210 1561 // New block to ensure QSettings is deleted before
Chris@210 1562 // hgQueryPaths called. NB use of absoluteFilePath instead of
Chris@210 1563 // canonicalFilePath, which would fail if the file did not yet
Chris@210 1564 // exist
Chris@210 1565
Chris@210 1566 {
Chris@210 1567 QSettings s(hgrc.absoluteFilePath(), QSettings::IniFormat);
Chris@210 1568 s.beginGroup("paths");
Chris@210 1569 s.setValue("default", d->getArgument());
Chris@210 1570 }
Chris@210 1571
Chris@284 1572 m_stateUnknown = true;
Chris@183 1573 hgQueryPaths();
Chris@183 1574 }
Chris@183 1575
Chris@183 1576 delete d;
Chris@182 1577 }
Chris@182 1578
Chris@145 1579 void MainWindow::open(QString local)
Chris@145 1580 {
Chris@145 1581 if (openLocal(local)) {
Chris@145 1582 enableDisableActions();
Chris@145 1583 clearState();
Chris@145 1584 hgQueryPaths();
Chris@145 1585 }
Chris@145 1586 }
Chris@145 1587
Chris@79 1588 bool MainWindow::complainAboutFilePath(QString arg)
Chris@79 1589 {
Chris@79 1590 QMessageBox::critical
Chris@79 1591 (this, tr("File chosen"),
Chris@84 1592 tr("<qt><b>Folder required</b><br><br>You asked to open \"%1\".<br>This is a file; to open a repository, you need to choose a folder.</qt>").arg(xmlEncode(arg)));
Chris@79 1593 return false;
Chris@79 1594 }
Chris@79 1595
Chris@248 1596 bool MainWindow::askAboutUnknownFolder(QString arg)
Chris@248 1597 {
Chris@248 1598 bool result = (QMessageBox::question
Chris@248 1599 (this, tr("Path does not exist"),
Chris@248 1600 tr("<qt><b>Path does not exist: create it?</b><br><br>You asked to open a remote repository by cloning it to \"%1\". This folder does not exist, and neither does its parent.<br><br>Would you like to create the parent folder as well?</qt>").arg(xmlEncode(arg)),
Chris@248 1601 QMessageBox::Ok | QMessageBox::Cancel,
Chris@248 1602 QMessageBox::Cancel)
Chris@248 1603 == QMessageBox::Ok);
Chris@248 1604 if (result) {
Chris@248 1605 QDir dir(arg);
Chris@248 1606 dir.cdUp();
Chris@248 1607 if (!dir.mkpath(dir.absolutePath())) {
Chris@248 1608 QMessageBox::critical
Chris@248 1609 (this, tr("Failed to create folder"),
Chris@248 1610 tr("<qt><b>Failed to create folder</b><br><br>Sorry, the path for the parent folder \"%1\" could not be created.</qt>").arg(dir.absolutePath()));
Chris@248 1611 return false;
Chris@248 1612 }
Chris@248 1613 return true;
Chris@248 1614 }
Chris@248 1615 return false;
Chris@248 1616 }
Chris@248 1617
Chris@79 1618 bool MainWindow::complainAboutUnknownFolder(QString arg)
Chris@79 1619 {
Chris@79 1620 QMessageBox::critical
Chris@79 1621 (this, tr("Folder does not exist"),
Chris@84 1622 tr("<qt><b>Folder does not exist</b><br><br>You asked to open \"%1\".<br>This folder does not exist, and it cannot be created because its parent does not exist either.</qt>").arg(xmlEncode(arg)));
Chris@84 1623 return false;
Chris@84 1624 }
Chris@84 1625
Chris@84 1626 bool MainWindow::complainAboutInitInRepo(QString arg)
Chris@84 1627 {
Chris@84 1628 QMessageBox::critical
Chris@84 1629 (this, tr("Path is in existing repository"),
Chris@84 1630 tr("<qt><b>Path is in an existing repository</b><br><br>You asked to initialise a repository at \"%1\".<br>This path is already inside an existing repository.</qt>").arg(xmlEncode(arg)));
Chris@84 1631 return false;
Chris@84 1632 }
Chris@84 1633
Chris@84 1634 bool MainWindow::complainAboutInitFile(QString arg)
Chris@84 1635 {
Chris@84 1636 QMessageBox::critical
Chris@84 1637 (this, tr("Path is a file"),
Chris@84 1638 tr("<qt><b>Path is a file</b><br><br>You asked to initialise a repository at \"%1\".<br>This is an existing file; it is only possible to initialise in folders.</qt>").arg(xmlEncode(arg)));
Chris@84 1639 return false;
Chris@84 1640 }
Chris@84 1641
Chris@84 1642 bool MainWindow::complainAboutCloneToExisting(QString arg)
Chris@84 1643 {
Chris@84 1644 QMessageBox::critical
Chris@84 1645 (this, tr("Path is in existing repository"),
Chris@237 1646 tr("<qt><b>Local path is in an existing repository</b><br><br>You asked to open a remote repository by cloning it to the local path \"%1\".<br>This path is already inside an existing repository.<br>Please provide a different folder name for the local repository.</qt>").arg(xmlEncode(arg)));
Chris@84 1647 return false;
Chris@84 1648 }
Chris@84 1649
Chris@84 1650 bool MainWindow::complainAboutCloneToFile(QString arg)
Chris@84 1651 {
Chris@84 1652 QMessageBox::critical
Chris@84 1653 (this, tr("Path is a file"),
Chris@84 1654 tr("<qt><b>Local path is a file</b><br><br>You asked to open a remote repository by cloning it to the local path \"%1\".<br>This path is an existing file.<br>Please provide a new folder name for the local repository.</qt>").arg(xmlEncode(arg)));
Chris@84 1655 return false;
Chris@84 1656 }
Chris@84 1657
Chris@237 1658 QString MainWindow::complainAboutCloneToExistingFolder(QString arg, QString remote)
Chris@84 1659 {
Chris@348 1660 // If the directory "arg" exists but is empty, then we accept it.
Chris@348 1661
Chris@348 1662 // If the directory "arg" exists and is non-empty, but "arg" plus
Chris@348 1663 // the last path component of "remote" does not exist, then offer
Chris@348 1664 // the latter as an alternative path.
Chris@237 1665
Chris@237 1666 QString offer;
Chris@237 1667
Chris@237 1668 QDir d(arg);
Chris@348 1669
Chris@237 1670 if (d.exists()) {
Chris@348 1671
Chris@348 1672 if (d.entryList(QDir::Dirs | QDir::Files |
Chris@348 1673 QDir::NoDotAndDotDot |
Chris@348 1674 QDir::Hidden | QDir::System).empty()) {
Chris@348 1675 // directory is empty; accept it
Chris@348 1676 return arg;
Chris@348 1677 }
Chris@348 1678
Chris@237 1679 if (QRegExp("^\\w+://").indexIn(remote) >= 0) {
Chris@237 1680 QString rpath = QUrl(remote).path();
Chris@237 1681 if (rpath != "") {
Chris@237 1682 rpath = QDir(rpath).dirName();
Chris@237 1683 if (rpath != "" && !d.exists(rpath)) {
Chris@237 1684 offer = d.filePath(rpath);
Chris@237 1685 }
Chris@237 1686 }
Chris@237 1687 }
Chris@237 1688 }
Chris@237 1689
Chris@237 1690 if (offer != "") {
Chris@237 1691 bool result = (QMessageBox::question
Chris@237 1692 (this, tr("Folder exists"),
Chris@237 1693 tr("<qt><b>Local folder already exists</b><br><br>You asked to open a remote repository by cloning it to \"%1\", but this folder already exists and so cannot be cloned to.<br><br>Would you like to create the new folder \"%2\" instead?</qt>")
Chris@237 1694 .arg(xmlEncode(arg)).arg(xmlEncode(offer)),
Chris@237 1695 QMessageBox::Ok | QMessageBox::Cancel,
Chris@237 1696 QMessageBox::Cancel)
Chris@237 1697 == QMessageBox::Ok);
Chris@237 1698 if (result) return offer;
Chris@237 1699 else return "";
Chris@237 1700 }
Chris@237 1701
Chris@84 1702 QMessageBox::critical
Chris@84 1703 (this, tr("Folder exists"),
Chris@237 1704 tr("<qt><b>Local folder already exists</b><br><br>You asked to open a remote repository by cloning it to \"%1\", but this file or folder already exists and so cannot be cloned to.<br>Please provide a different folder name for the local repository.</qt>").arg(xmlEncode(arg)));
Chris@237 1705 return "";
Chris@79 1706 }
Chris@79 1707
Chris@79 1708 bool MainWindow::askToOpenParentRepo(QString arg, QString parent)
Chris@79 1709 {
Chris@79 1710 return (QMessageBox::question
Chris@84 1711 (this, tr("Path is inside a repository"),
Chris@86 1712 tr("<qt><b>Open the repository that contains this path?</b><br><br>You asked to open \"%1\".<br>This is not the root folder of a repository.<br>But it is inside a repository, whose root is at \"%2\". <br><br>Would you like to open that repository instead?</qt>")
Chris@79 1713 .arg(xmlEncode(arg)).arg(xmlEncode(parent)),
Chris@79 1714 QMessageBox::Ok | QMessageBox::Cancel,
Chris@79 1715 QMessageBox::Ok)
Chris@79 1716 == QMessageBox::Ok);
Chris@79 1717 }
Chris@79 1718
Chris@79 1719 bool MainWindow::askToInitExisting(QString arg)
Chris@79 1720 {
Chris@79 1721 return (QMessageBox::question
Chris@84 1722 (this, tr("Folder has no repository"),
Chris@359 1723 tr("<qt><b>Initialise a repository here?</b><br><br>You asked to open \"%1\".<br>This folder is not a Mercurial working copy.<br><br>Would you like to initialise a repository here?</qt>")
Chris@79 1724 .arg(xmlEncode(arg)),
Chris@79 1725 QMessageBox::Ok | QMessageBox::Cancel,
Chris@79 1726 QMessageBox::Ok)
Chris@79 1727 == QMessageBox::Ok);
Chris@79 1728 }
Chris@79 1729
Chris@79 1730 bool MainWindow::askToInitNew(QString arg)
Chris@79 1731 {
Chris@79 1732 return (QMessageBox::question
Chris@84 1733 (this, tr("Folder does not exist"),
Chris@84 1734 tr("<qt><b>Initialise a new repository?</b><br><br>You asked to open \"%1\".<br>This folder does not yet exist.<br><br>Would you like to create the folder and initialise a new empty repository in it?</qt>")
Chris@84 1735 .arg(xmlEncode(arg)),
Chris@84 1736 QMessageBox::Ok | QMessageBox::Cancel,
Chris@84 1737 QMessageBox::Ok)
Chris@84 1738 == QMessageBox::Ok);
Chris@84 1739 }
Chris@84 1740
Chris@84 1741 bool MainWindow::askToOpenInsteadOfInit(QString arg)
Chris@84 1742 {
Chris@84 1743 return (QMessageBox::question
Chris@84 1744 (this, tr("Repository exists"),
Chris@84 1745 tr("<qt><b>Open existing repository?</b><br><br>You asked to initialise a new repository at \"%1\".<br>This folder already contains a repository. Would you like to open it?</qt>")
Chris@79 1746 .arg(xmlEncode(arg)),
Chris@79 1747 QMessageBox::Ok | QMessageBox::Cancel,
Chris@79 1748 QMessageBox::Ok)
Chris@79 1749 == QMessageBox::Ok);
Chris@79 1750 }
Chris@79 1751
Chris@79 1752 bool MainWindow::openLocal(QString local)
Chris@79 1753 {
Chris@79 1754 DEBUG << "open " << local << endl;
Chris@79 1755
Chris@79 1756 FolderStatus status = getFolderStatus(local);
Chris@79 1757 QString containing = getContainingRepoFolder(local);
Chris@79 1758
Chris@79 1759 switch (status) {
Chris@79 1760
Chris@79 1761 case FolderHasRepo:
Chris@79 1762 // fine
Chris@79 1763 break;
Chris@79 1764
Chris@79 1765 case FolderExists:
Chris@79 1766 if (containing != "") {
Chris@79 1767 if (!askToOpenParentRepo(local, containing)) return false;
Chris@84 1768 local = containing;
Chris@79 1769 } else {
Chris@86 1770 //!!! No -- this is likely to happen far more by accident
Chris@86 1771 // than because the user actually wanted to init something.
Chris@86 1772 // Don't ask, just politely reject.
Chris@79 1773 if (!askToInitExisting(local)) return false;
Chris@79 1774 return openInit(local);
Chris@79 1775 }
Chris@79 1776 break;
Chris@79 1777
Chris@79 1778 case FolderParentExists:
Chris@79 1779 if (containing != "") {
Chris@79 1780 if (!askToOpenParentRepo(local, containing)) return false;
Chris@84 1781 local = containing;
Chris@79 1782 } else {
Chris@79 1783 if (!askToInitNew(local)) return false;
Chris@79 1784 return openInit(local);
Chris@79 1785 }
Chris@79 1786 break;
Chris@79 1787
Chris@79 1788 case FolderUnknown:
Chris@84 1789 if (containing != "") {
Chris@84 1790 if (!askToOpenParentRepo(local, containing)) return false;
Chris@84 1791 local = containing;
Chris@84 1792 } else {
Chris@84 1793 return complainAboutUnknownFolder(local);
Chris@84 1794 }
Chris@84 1795 break;
Chris@79 1796
Chris@79 1797 case FolderIsFile:
Chris@79 1798 return complainAboutFilePath(local);
Chris@79 1799 }
Chris@79 1800
Chris@284 1801 m_workFolderPath = local;
Chris@284 1802 m_remoteRepoPath = "";
Chris@79 1803 return true;
Chris@79 1804 }
Chris@79 1805
Chris@79 1806 bool MainWindow::openRemote(QString remote, QString local)
Chris@79 1807 {
Chris@79 1808 DEBUG << "clone " << remote << " to " << local << endl;
Chris@84 1809
Chris@84 1810 FolderStatus status = getFolderStatus(local);
Chris@84 1811 QString containing = getContainingRepoFolder(local);
Chris@84 1812
Chris@84 1813 DEBUG << "status = " << status << ", containing = " << containing << endl;
Chris@84 1814
Chris@84 1815 if (status == FolderHasRepo || containing != "") {
Chris@84 1816 return complainAboutCloneToExisting(local);
Chris@84 1817 }
Chris@84 1818
Chris@84 1819 if (status == FolderIsFile) {
Chris@84 1820 return complainAboutCloneToFile(local);
Chris@84 1821 }
Chris@84 1822
Chris@84 1823 if (status == FolderUnknown) {
Chris@248 1824 if (!askAboutUnknownFolder(local)) {
Chris@248 1825 return false;
Chris@248 1826 }
Chris@84 1827 }
Chris@84 1828
Chris@84 1829 if (status == FolderExists) {
Chris@237 1830 local = complainAboutCloneToExistingFolder(local, remote);
Chris@237 1831 if (local == "") return false;
Chris@84 1832 }
Chris@84 1833
Chris@284 1834 m_workFolderPath = local;
Chris@284 1835 m_remoteRepoPath = remote;
Chris@84 1836 hgCloneFromRemote();
Chris@84 1837
Chris@79 1838 return true;
Chris@79 1839 }
Chris@79 1840
Chris@84 1841 bool MainWindow::openInit(QString local)
Chris@79 1842 {
Chris@84 1843 DEBUG << "openInit " << local << endl;
Chris@84 1844
Chris@84 1845 FolderStatus status = getFolderStatus(local);
Chris@84 1846 QString containing = getContainingRepoFolder(local);
Chris@84 1847
Chris@84 1848 DEBUG << "status = " << status << ", containing = " << containing << endl;
Chris@84 1849
Chris@84 1850 if (status == FolderHasRepo) {
Chris@84 1851 if (!askToOpenInsteadOfInit(local)) return false;
Chris@552 1852 return openLocal(local);
Chris@84 1853 }
Chris@84 1854
Chris@84 1855 if (containing != "") {
Chris@84 1856 return complainAboutInitInRepo(local);
Chris@84 1857 }
Chris@84 1858
Chris@84 1859 if (status == FolderIsFile) {
Chris@84 1860 return complainAboutInitFile(local);
Chris@84 1861 }
Chris@84 1862
Chris@84 1863 if (status == FolderUnknown) {
Chris@84 1864 return complainAboutUnknownFolder(local);
Chris@84 1865 }
Chris@84 1866
Chris@284 1867 m_workFolderPath = local;
Chris@284 1868 m_remoteRepoPath = "";
Chris@84 1869 hgInit();
Chris@79 1870 return true;
Chris@79 1871 }
Chris@79 1872
jtkorhonen@0 1873 void MainWindow::settings()
jtkorhonen@0 1874 {
Chris@472 1875 settings(SettingsDialog::PersonalDetailsTab);
Chris@472 1876 }
Chris@472 1877
Chris@472 1878 void MainWindow::settings(SettingsDialog::Tab tab)
Chris@472 1879 {
jtkorhonen@0 1880 SettingsDialog *settingsDlg = new SettingsDialog(this);
Chris@472 1881 settingsDlg->setCurrentTab(tab);
jtkorhonen@0 1882 settingsDlg->exec();
Chris@230 1883
Chris@230 1884 if (settingsDlg->presentationChanged()) {
Chris@284 1885 m_hgTabs->updateFileStates();
Chris@230 1886 updateToolBarStyle();
Chris@273 1887 hgRefresh();
Chris@230 1888 }
jtkorhonen@0 1889 }
jtkorhonen@0 1890
Chris@541 1891 void MainWindow::updateFsWatcher()
Chris@541 1892 {
Chris@541 1893 m_fsWatcher->setWorkDirPath(m_workFolderPath);
Chris@541 1894 m_fsWatcher->setTrackedFilePaths(m_hgTabs->getFileStates().trackedFiles());
Chris@541 1895 }
Chris@541 1896
Chris@238 1897 void MainWindow::checkFilesystem()
Chris@238 1898 {
Chris@238 1899 DEBUG << "MainWindow::checkFilesystem" << endl;
Chris@541 1900 if (!m_commandSequenceInProgress) {
Chris@541 1901 if (!m_fsWatcher->getChangedPaths(m_fsWatcherToken).empty()) {
Chris@541 1902 hgRefresh();
Chris@541 1903 return;
Chris@541 1904 }
Chris@549 1905 updateFsWatcher();
Chris@541 1906 }
Chris@90 1907 }
Chris@90 1908
Chris@275 1909 QString MainWindow::format1(QString head)
Chris@275 1910 {
Chris@275 1911 return QString("<qt><h3>%1</h3></qt>").arg(head);
Chris@275 1912 }
Chris@275 1913
Chris@125 1914 QString MainWindow::format3(QString head, QString intro, QString code)
Chris@125 1915 {
Chris@196 1916 code = xmlEncode(code).replace("\n", "<br>")
Chris@196 1917 #ifndef Q_OS_WIN32
Chris@196 1918 // The hard hyphen comes out funny on Windows
Chris@196 1919 .replace("-", "&#8209;")
Chris@196 1920 #endif
Chris@196 1921 .replace(" ", "&nbsp;");
Chris@125 1922 if (intro == "") {
Chris@168 1923 return QString("<qt><h3>%1</h3><p><code>%2</code></p>")
Chris@168 1924 .arg(head).arg(code);
Chris@126 1925 } else if (code == "") {
Chris@126 1926 return QString("<qt><h3>%1</h3><p>%2</p>")
Chris@126 1927 .arg(head).arg(intro);
Chris@125 1928 } else {
Chris@168 1929 return QString("<qt><h3>%1</h3><p>%2</p><p><code>%3</code></p>")
Chris@168 1930 .arg(head).arg(intro).arg(code);
Chris@125 1931 }
Chris@125 1932 }
Chris@125 1933
Chris@120 1934 void MainWindow::showIncoming(QString output)
Chris@120 1935 {
Chris@284 1936 m_runner->hide();
Chris@125 1937 IncomingDialog *d = new IncomingDialog(this, output);
Chris@125 1938 d->exec();
Chris@125 1939 delete d;
Chris@125 1940 }
Chris@125 1941
Chris@125 1942 int MainWindow::extractChangeCount(QString text)
Chris@125 1943 {
Chris@125 1944 QRegExp re("added (\\d+) ch\\w+ with (\\d+) ch\\w+ to (\\d+) f\\w+");
Chris@125 1945 if (re.indexIn(text) >= 0) {
Chris@125 1946 return re.cap(1).toInt();
Chris@125 1947 } else if (text.contains("no changes")) {
Chris@125 1948 return 0;
Chris@125 1949 } else {
Chris@125 1950 return -1; // unknown
Chris@125 1951 }
Chris@120 1952 }
Chris@120 1953
Chris@120 1954 void MainWindow::showPushResult(QString output)
Chris@120 1955 {
Chris@291 1956 QString head;
Chris@125 1957 QString report;
Chris@125 1958 int n = extractChangeCount(output);
Chris@125 1959 if (n > 0) {
Chris@291 1960 head = tr("Pushed %n changeset(s)", "", n);
Chris@300 1961 report = tr("<qt>Successfully pushed to the remote repository at <code>%1</code>.</qt>").arg(xmlEncode(m_remoteRepoPath));
Chris@125 1962 } else if (n == 0) {
Chris@291 1963 head = tr("No changes to push");
Chris@291 1964 report = tr("The remote repository already contains all changes that have been committed locally.");
Chris@294 1965 if (m_hgTabs->canCommit()) {
Chris@291 1966 report = tr("%1<p>You do have some uncommitted changes. If you wish to push those to the remote repository, commit them locally first.").arg(report);
Chris@291 1967 }
Chris@125 1968 } else {
Chris@291 1969 head = tr("Push complete");
Chris@125 1970 }
Chris@284 1971 m_runner->hide();
Chris@291 1972
Chris@291 1973 MoreInformationDialog::information(this, tr("Push complete"),
Chris@291 1974 head, report, output);
Chris@120 1975 }
Chris@120 1976
Chris@120 1977 void MainWindow::showPullResult(QString output)
Chris@120 1978 {
Chris@291 1979 QString head;
Chris@125 1980 QString report;
Chris@125 1981 int n = extractChangeCount(output);
Chris@125 1982 if (n > 0) {
Chris@291 1983 head = tr("Pulled %n changeset(s)", "", n);
Chris@322 1984 report = tr("New changes will be highlighted in yellow in the history.");
Chris@125 1985 } else if (n == 0) {
Chris@291 1986 head = tr("No changes to pull");
Chris@291 1987 report = tr("Your local repository already contains all changes found in the remote repository.");
Chris@125 1988 } else {
Chris@291 1989 head = tr("Pull complete");
Chris@125 1990 }
Chris@284 1991 m_runner->hide();
Chris@275 1992
Chris@275 1993 MoreInformationDialog::information(this, tr("Pull complete"),
Chris@291 1994 head, report, output);
Chris@120 1995 }
Chris@120 1996
Chris@174 1997 void MainWindow::reportNewRemoteHeads(QString output)
Chris@174 1998 {
Chris@174 1999 bool headsAreLocal = false;
Chris@174 2000
Chris@284 2001 if (m_currentParents.size() == 1) {
Chris@506 2002 int currentBranchActiveHeads = 0;
Chris@174 2003 bool parentIsHead = false;
Chris@284 2004 Changeset *parent = m_currentParents[0];
Chris@506 2005 foreach (Changeset *head, m_activeHeads) {
Chris@284 2006 if (head->isOnBranch(m_currentBranch)) {
Chris@506 2007 ++currentBranchActiveHeads;
Chris@174 2008 }
Chris@174 2009 if (parent->id() == head->id()) {
Chris@174 2010 parentIsHead = true;
Chris@174 2011 }
Chris@174 2012 }
Chris@506 2013 if (currentBranchActiveHeads == 2 && parentIsHead) {
Chris@174 2014 headsAreLocal = true;
Chris@174 2015 }
Chris@174 2016 }
Chris@174 2017
Chris@174 2018 if (headsAreLocal) {
Chris@291 2019 MoreInformationDialog::warning
Chris@291 2020 (this,
Chris@291 2021 tr("Push failed"),
Chris@291 2022 tr("Push failed"),
Chris@291 2023 tr("Your local repository could not be pushed to the remote repository.<br><br>You may need to merge the changes locally first."),
Chris@291 2024 output);
Chris@318 2025 } else if (m_hgTabs->canCommit() && m_currentParents.size() > 1) {
Chris@318 2026 MoreInformationDialog::warning
Chris@318 2027 (this,
Chris@318 2028 tr("Push failed"),
Chris@318 2029 tr("Push failed"),
Chris@318 2030 tr("Your local repository could not be pushed to the remote repository.<br><br>You have an uncommitted merge in your local folder. You probably need to commit it before you push."),
Chris@318 2031 output);
Chris@174 2032 } else {
Chris@291 2033 MoreInformationDialog::warning
Chris@291 2034 (this,
Chris@291 2035 tr("Push failed"),
Chris@291 2036 tr("Push failed"),
Chris@291 2037 tr("Your local repository could not be pushed to the remote repository.<br><br>The remote repository may have been changed by someone else since you last pushed. Try pulling and merging their changes into your local repository first."),
Chris@291 2038 output);
Chris@174 2039 }
Chris@174 2040 }
Chris@174 2041
Chris@353 2042 void MainWindow::reportAuthFailed(QString output)
Chris@353 2043 {
Chris@353 2044 MoreInformationDialog::warning
Chris@353 2045 (this,
Chris@353 2046 tr("Authorization failed"),
Chris@353 2047 tr("Authorization failed"),
Chris@353 2048 tr("You may have entered an incorrect user name or password, or the remote URL may be wrong.<br><br>Or you may lack the necessary permissions on the remote repository.<br><br>Check with the administrator of your remote repository if necessary."),
Chris@353 2049 output);
Chris@353 2050 }
Chris@353 2051
Chris@671 2052 void MainWindow::commandStarting(HgAction)
Chris@238 2053 {
Chris@540 2054 m_commandSequenceInProgress = true;
Chris@238 2055 }
Chris@238 2056
Chris@691 2057 void MainWindow::commandFailed(HgAction action, QString stdOut, QString stdErr)
Chris@62 2058 {
Chris@62 2059 DEBUG << "MainWindow::commandFailed" << endl;
Chris@540 2060
Chris@540 2061 m_commandSequenceInProgress = false;
Chris@74 2062
Chris@210 2063 QString setstr;
Chris@210 2064 #ifdef Q_OS_MAC
Chris@210 2065 setstr = tr("Preferences");
Chris@210 2066 #else
Chris@210 2067 setstr = tr("Settings");
Chris@210 2068 #endif
Chris@210 2069
Chris@353 2070 // Some commands we just have to ignore bad return values from,
Chris@353 2071 // and some output gets special treatment.
Chris@353 2072
Chris@353 2073 // Note our fallback case should always be to report a
Chris@353 2074 // non-specific error and show the text -- in case output scraping
Chris@353 2075 // fails (as it surely will). Note also that we must force the
Chris@353 2076 // locale in order to ensure the output is scrapable; this happens
Chris@353 2077 // in HgRunner and may break some system encodings.
Chris@113 2078
Chris@113 2079 switch(action.action) {
Chris@113 2080 case ACT_NONE:
Chris@113 2081 // uh huh
Chris@113 2082 return;
Chris@175 2083 case ACT_TEST_HG:
Chris@291 2084 MoreInformationDialog::warning
Chris@291 2085 (this,
Chris@291 2086 tr("Failed to run Mercurial"),
Chris@291 2087 tr("Failed to run Mercurial"),
Chris@483 2088 tr("The Mercurial program either could not be found or failed to run.<br><br>Check that the Mercurial program path is correct in %1.").arg(setstr),
Chris@545 2089 stdErr);
Chris@472 2090 settings(SettingsDialog::PathsTab);
Chris@200 2091 return;
Chris@200 2092 case ACT_TEST_HG_EXT:
Chris@309 2093 MoreInformationDialog::warning
Chris@291 2094 (this,
Chris@291 2095 tr("Failed to run Mercurial"),
Chris@291 2096 tr("Failed to run Mercurial with extension enabled"),
Chris@310 2097 tr("The Mercurial program failed to run with the EasyMercurial interaction extension enabled.<br>This may indicate an installation problem.<br><br>You may be able to continue working if you switch off &ldquo;Use EasyHg Mercurial Extension&rdquo; in %1. Note that remote repositories that require authentication might not work if you do this.").arg(setstr),
Chris@545 2098 stdErr);
Chris@642 2099 settings(SettingsDialog::ExtensionsTab);
Chris@175 2100 return;
Chris@252 2101 case ACT_CLONEFROMREMOTE:
Chris@252 2102 // if clone fails, we have no repo
Chris@284 2103 m_workFolderPath = "";
Chris@252 2104 enableDisableActions();
Chris@330 2105 break; // go on to default report
Chris@113 2106 case ACT_INCOMING:
Chris@545 2107 if (stdErr.contains("authorization failed")) {
Chris@545 2108 reportAuthFailed(stdErr);
Chris@353 2109 return;
Chris@545 2110 } else if (stdErr.contains("entry cancelled")) {
Chris@358 2111 // ignore this, user cancelled username or password dialog
Chris@358 2112 return;
Chris@353 2113 } else {
Chris@545 2114 // Incoming returns non-zero code and no stdErr if the
Chris@353 2115 // check was successful but there are no changes
Chris@353 2116 // pending. This is the only case where we need to remove
Chris@353 2117 // warning messages, because it's the only case where a
Chris@353 2118 // non-zero code can be returned even though the command
Chris@353 2119 // has for our purposes succeeded
Chris@661 2120 QStringList lines = stdErr.split(QRegExp("[\\r\\n]+"));
Chris@661 2121 QString replaced;
Chris@661 2122 foreach (QString line, lines) {
Chris@661 2123 line.replace(QRegExp("^.*warning: [^\\n]*"), "");
Chris@661 2124 if (line != "") {
Chris@661 2125 replaced += line + "\n";
Chris@661 2126 }
Chris@352 2127 }
Chris@352 2128 if (replaced == "") {
Chris@352 2129 showIncoming("");
Chris@352 2130 return;
Chris@352 2131 }
Chris@211 2132 }
Chris@330 2133 break; // go on to default report
Chris@353 2134 case ACT_PULL:
Chris@545 2135 if (stdErr.contains("authorization failed")) {
Chris@545 2136 reportAuthFailed(stdErr);
Chris@353 2137 return;
Chris@545 2138 } else if (stdErr.contains("entry cancelled")) {
Chris@358 2139 // ignore this, user cancelled username or password dialog
Chris@358 2140 return;
Chris@546 2141 } else if (stdErr.contains("no changes found") || stdOut.contains("no changes found")) {
Chris@537 2142 // success: hg 2.1 starts returning failure code for empty pull/push
Chris@540 2143 m_commandSequenceInProgress = true; // there may be further commands
Chris@691 2144 commandCompleted(action, stdOut, stdErr);
Chris@537 2145 return;
Chris@353 2146 }
Chris@353 2147 break; // go on to default report
Chris@353 2148 case ACT_PUSH:
Chris@545 2149 if (stdErr.contains("creates new remote head")) {
Chris@545 2150 reportNewRemoteHeads(stdErr);
Chris@353 2151 return;
Chris@545 2152 } else if (stdErr.contains("authorization failed")) {
Chris@545 2153 reportAuthFailed(stdErr);
Chris@353 2154 return;
Chris@545 2155 } else if (stdErr.contains("entry cancelled")) {
Chris@358 2156 // ignore this, user cancelled username or password dialog
Chris@358 2157 return;
Chris@546 2158 } else if (stdErr.contains("no changes found") || stdOut.contains("no changes found")) {
Chris@537 2159 // success: hg 2.1 starts returning failure code for empty pull/push
Chris@540 2160 m_commandSequenceInProgress = true; // there may be further commands
Chris@691 2161 commandCompleted(action, stdOut, stdErr);
Chris@537 2162 return;
Chris@353 2163 }
Chris@353 2164 break; // go on to default report
Chris@506 2165 case ACT_QUERY_HEADS_ACTIVE:
Chris@162 2166 case ACT_QUERY_HEADS:
Chris@162 2167 // fails if repo is empty; we don't care (if there's a genuine
Chris@202 2168 // problem, something else will fail too). Pretend it
Chris@202 2169 // succeeded, so that any further actions that are contingent
Chris@202 2170 // on the success of the heads query get carried out properly.
Chris@540 2171 m_commandSequenceInProgress = true; // there may be further commands
Chris@691 2172 commandCompleted(action, "", "");
Chris@162 2173 return;
Chris@113 2174 case ACT_FOLDERDIFF:
Chris@113 2175 case ACT_CHGSETDIFF:
Chris@545 2176 // external program, unlikely to be anything useful in stdErr
Chris@113 2177 // and some return with failure codes when something as basic
Chris@113 2178 // as the user closing the window via the wm happens
Chris@113 2179 return;
Chris@328 2180 case ACT_MERGE:
Chris@545 2181 if (stdErr.contains("working directory ancestor")) {
Chris@530 2182 // arguably we should prevent this upfront, but that's
Chris@530 2183 // trickier!
Chris@530 2184 MoreInformationDialog::information
Chris@530 2185 (this, tr("Merge"), tr("Merge has no effect"),
Chris@530 2186 tr("You asked to merge a revision with one of its ancestors.<p>This has no effect, because the ancestor's changes already exist in both revisions."),
Chris@545 2187 stdErr);
Chris@530 2188 return;
Chris@530 2189 }
Chris@530 2190 // else fall through
Chris@328 2191 case ACT_RETRY_MERGE:
Chris@328 2192 MoreInformationDialog::information
Chris@328 2193 (this, tr("Merge"), tr("Merge failed"),
Chris@328 2194 tr("Some files were not merged successfully.<p>You can Merge again to repeat the interactive merge; use Revert to abandon the merge entirely; or edit the files that are in conflict in an editor and, when you are happy with them, choose Mark Resolved in each file's right-button menu."),
Chris@545 2195 stdErr);
Chris@378 2196 m_mergeCommitComment = "";
Chris@603 2197 hgQueryPaths();
Chris@328 2198 return;
Chris@199 2199 case ACT_STAT:
Chris@330 2200 break; // go on to default report
Chris@113 2201 default:
Chris@114 2202 break;
Chris@113 2203 }
Chris@113 2204
Chris@113 2205 QString command = action.executable;
Chris@113 2206 if (command == "") command = "hg";
Chris@113 2207 foreach (QString arg, action.params) {
Chris@113 2208 command += " " + arg;
Chris@113 2209 }
Chris@113 2210
Chris@309 2211 MoreInformationDialog::warning
Chris@309 2212 (this,
Chris@309 2213 tr("Command failed"),
Chris@309 2214 tr("Command failed"),
Chris@545 2215 (stdErr == "" ?
Chris@483 2216 tr("A Mercurial command failed to run correctly. This may indicate an installation problem or some other problem with EasyMercurial.") :
Chris@483 2217 tr("A Mercurial command failed to run correctly. This may indicate an installation problem or some other problem with EasyMercurial.<br><br>See &ldquo;More Details&rdquo; for the command output.")),
Chris@545 2218 stdErr);
Chris@62 2219 }
Chris@62 2220
Chris@691 2221 void MainWindow::commandCompleted(HgAction completedAction, QString output, QString stdErr)
jtkorhonen@0 2222 {
Chris@521 2223 // std::cerr << "commandCompleted: " << completedAction.action << std::endl;
Chris@519 2224
Chris@109 2225 HGACTIONS action = completedAction.action;
Chris@109 2226
Chris@109 2227 if (action == ACT_NONE) return;
Chris@109 2228
Chris@519 2229 output.replace("\r\n", "\n");
Chris@519 2230
Chris@150 2231 bool headsChanged = false;
Chris@150 2232 QStringList oldHeadIds;
Chris@150 2233
Chris@150 2234 switch (action) {
Chris@109 2235
Chris@175 2236 case ACT_TEST_HG:
Chris@377 2237 {
Chris@377 2238 QRegExp versionRE("^Mercurial.*version ([\\d+])\\.([\\d+])");
Chris@377 2239 int pos = versionRE.indexIn(output);
Chris@377 2240 if (pos >= 0) {
Chris@377 2241 int major = versionRE.cap(1).toInt();
Chris@377 2242 int minor = versionRE.cap(2).toInt();
Chris@377 2243 // We need v1.7 or newer
Chris@377 2244 if (major < 1 || (major == 1 && minor < 7)) {
Chris@377 2245 MoreInformationDialog::warning
Chris@377 2246 (this,
Chris@377 2247 tr("Newer Mercurial version required"),
Chris@377 2248 tr("Newer Mercurial version required"),
Chris@377 2249 tr("To use EasyMercurial, you should have at least Mercurial v1.7 installed.<br><br>The version found on this system (v%1.%2) does not support all of the features required by EasyMercurial.").arg(major).arg(minor),
Chris@377 2250 output);
Chris@377 2251 }
Chris@377 2252 }
Chris@175 2253 break;
Chris@377 2254 }
Chris@175 2255
Chris@200 2256 case ACT_TEST_HG_EXT:
Chris@691 2257 if (stdErr.contains("Failed to load PyQt")) {
Chris@691 2258 commandFailed(completedAction, output, stdErr);
Chris@691 2259 return;
Chris@691 2260 }
Chris@200 2261 break;
Chris@200 2262
Chris@109 2263 case ACT_QUERY_PATHS:
jtkorhonen@0 2264 {
Chris@109 2265 DEBUG << "stdout is " << output << endl;
Chris@109 2266 LogParser lp(output, "=");
Chris@109 2267 LogList ll = lp.parse();
Chris@109 2268 DEBUG << ll.size() << " results" << endl;
Chris@109 2269 if (!ll.empty()) {
Chris@284 2270 m_remoteRepoPath = lp.parse()[0]["default"].trimmed();
Chris@284 2271 DEBUG << "Set remote path to " << m_remoteRepoPath << endl;
Chris@210 2272 } else {
Chris@284 2273 m_remoteRepoPath = "";
Chris@109 2274 }
Chris@284 2275 MultiChoiceDialog::addRecentArgument("local", m_workFolderPath);
Chris@284 2276 MultiChoiceDialog::addRecentArgument("remote", m_remoteRepoPath);
Chris@287 2277 updateWorkFolderAndRepoNames();
Chris@109 2278 break;
Chris@109 2279 }
jtkorhonen@0 2280
Chris@109 2281 case ACT_QUERY_BRANCH:
Chris@284 2282 m_currentBranch = output.trimmed();
Chris@109 2283 break;
jtkorhonen@0 2284
Chris@109 2285 case ACT_STAT:
Chris@284 2286 m_lastStatOutput = output;
Chris@109 2287 break;
Chris@163 2288
Chris@163 2289 case ACT_RESOLVE_LIST:
Chris@505 2290 // This happens on every update, after the stat (above)
Chris@163 2291 if (output != "") {
Chris@163 2292 // Remove lines beginning with R (they are resolved,
Chris@163 2293 // and the file stat parser treats R as removed)
Chris@163 2294 QStringList outList = output.split('\n');
Chris@163 2295 QStringList winnowed;
Chris@163 2296 foreach (QString line, outList) {
Chris@163 2297 if (!line.startsWith("R ")) winnowed.push_back(line);
Chris@163 2298 }
Chris@163 2299 output = winnowed.join("\n");
Chris@163 2300 }
Chris@691 2301 /*
Chris@284 2302 DEBUG << "m_lastStatOutput = " << m_lastStatOutput << endl;
Chris@199 2303 DEBUG << "resolve output = " << output << endl;
Chris@691 2304 */
Chris@284 2305 m_hgTabs->updateWorkFolderFileList(m_lastStatOutput + output);
Chris@163 2306 break;
Chris@163 2307
Chris@163 2308 case ACT_RESOLVE_MARK:
Chris@284 2309 m_shouldHgStat = true;
Chris@163 2310 break;
Chris@109 2311
Chris@109 2312 case ACT_INCOMING:
Chris@120 2313 showIncoming(output);
Chris@120 2314 break;
Chris@120 2315
Chris@109 2316 case ACT_ANNOTATE:
Chris@331 2317 {
Chris@331 2318 AnnotateDialog dialog(this, output);
Chris@331 2319 dialog.exec();
Chris@284 2320 m_shouldHgStat = true;
Chris@109 2321 break;
Chris@331 2322 }
Chris@109 2323
Chris@109 2324 case ACT_PULL:
Chris@120 2325 showPullResult(output);
Chris@284 2326 m_shouldHgStat = true;
Chris@109 2327 break;
Chris@109 2328
Chris@109 2329 case ACT_PUSH:
Chris@120 2330 showPushResult(output);
Chris@109 2331 break;
Chris@109 2332
Chris@109 2333 case ACT_INIT:
Chris@284 2334 MultiChoiceDialog::addRecentArgument("init", m_workFolderPath);
Chris@284 2335 MultiChoiceDialog::addRecentArgument("local", m_workFolderPath);
Chris@109 2336 enableDisableActions();
Chris@284 2337 m_shouldHgStat = true;
Chris@109 2338 break;
Chris@109 2339
Chris@109 2340 case ACT_CLONEFROMREMOTE:
Chris@284 2341 MultiChoiceDialog::addRecentArgument("local", m_workFolderPath);
Chris@284 2342 MultiChoiceDialog::addRecentArgument("remote", m_remoteRepoPath);
Chris@284 2343 MultiChoiceDialog::addRecentArgument("remote", m_workFolderPath, true);
Chris@291 2344 MoreInformationDialog::information
Chris@291 2345 (this,
Chris@291 2346 tr("Clone"),
Chris@384 2347 tr("Open successful"),
Chris@295 2348 tr("The remote repository was successfully cloned to the local folder <code>%1</code>.").arg(xmlEncode(m_workFolderPath)),
Chris@291 2349 output);
Chris@109 2350 enableDisableActions();
Chris@284 2351 m_shouldHgStat = true;
Chris@109 2352 break;
Chris@109 2353
Chris@109 2354 case ACT_LOG:
Chris@284 2355 m_hgTabs->setNewLog(output);
Chris@284 2356 m_needNewLog = false;
Chris@120 2357 break;
Chris@120 2358
Chris@120 2359 case ACT_LOG_INCREMENTAL:
Chris@284 2360 m_hgTabs->addIncrementalLog(output);
Chris@109 2361 break;
Chris@109 2362
Chris@109 2363 case ACT_QUERY_PARENTS:
Chris@152 2364 {
Chris@284 2365 foreach (Changeset *cs, m_currentParents) delete cs;
Chris@284 2366 m_currentParents = Changeset::parseChangesets(output);
Chris@284 2367 QStringList parentIds = Changeset::getIds(m_currentParents);
Chris@284 2368 m_hgTabs->setCurrent(parentIds, m_currentBranch);
Chris@152 2369 }
Chris@109 2370 break;
Chris@109 2371
Chris@506 2372 case ACT_QUERY_HEADS_ACTIVE:
Chris@506 2373 foreach (Changeset *cs, m_activeHeads) delete cs;
Chris@506 2374 m_activeHeads = Changeset::parseChangesets(output);
Chris@506 2375 break;
Chris@506 2376
Chris@109 2377 case ACT_QUERY_HEADS:
Chris@150 2378 {
Chris@284 2379 oldHeadIds = Changeset::getIds(m_currentHeads);
Chris@150 2380 Changesets newHeads = Changeset::parseChangesets(output);
Chris@150 2381 QStringList newHeadIds = Changeset::getIds(newHeads);
Chris@150 2382 if (oldHeadIds != newHeadIds) {
Chris@150 2383 DEBUG << "Heads changed, will prompt an incremental log if appropriate" << endl;
Chris@305 2384 DEBUG << "Old heads: " << oldHeadIds.join(",") << endl;
Chris@305 2385 DEBUG << "New heads: " << newHeadIds.join(",") << endl;
Chris@150 2386 headsChanged = true;
Chris@284 2387 foreach (Changeset *cs, m_currentHeads) delete cs;
Chris@284 2388 m_currentHeads = newHeads;
Chris@506 2389 updateClosedHeads();
Chris@150 2390 }
Chris@150 2391 }
Chris@109 2392 break;
Chris@130 2393
Chris@130 2394 case ACT_COMMIT:
Chris@347 2395 if (m_currentParents.empty()) {
Chris@347 2396 // first commit to empty repo
Chris@347 2397 m_needNewLog = true;
Chris@347 2398 }
Chris@284 2399 m_hgTabs->clearSelections();
Chris@284 2400 m_justMerged = false;
Chris@284 2401 m_shouldHgStat = true;
Chris@130 2402 break;
Chris@163 2403
Chris@514 2404 case ACT_CLOSE_BRANCH:
Chris@514 2405 m_hgTabs->clearSelections();
Chris@514 2406 m_justMerged = false;
Chris@514 2407 m_shouldHgStat = true;
Chris@514 2408 break;
Chris@514 2409
Chris@163 2410 case ACT_REVERT:
Chris@326 2411 hgMarkFilesResolved(m_lastRevertedFiles);
Chris@284 2412 m_justMerged = false;
Chris@163 2413 break;
Chris@109 2414
Chris@109 2415 case ACT_REMOVE:
Chris@109 2416 case ACT_ADD:
Chris@284 2417 m_hgTabs->clearSelections();
Chris@284 2418 m_shouldHgStat = true;
Chris@116 2419 break;
Chris@116 2420
Chris@164 2421 case ACT_TAG:
Chris@284 2422 m_needNewLog = true;
Chris@284 2423 m_shouldHgStat = true;
Chris@164 2424 break;
Chris@164 2425
Chris@278 2426 case ACT_NEW_BRANCH:
Chris@307 2427 m_shouldHgStat = true;
Chris@278 2428 break;
Chris@278 2429
Chris@288 2430 case ACT_UNCOMMITTED_SUMMARY:
Chris@168 2431 QMessageBox::information(this, tr("Change summary"),
Chris@168 2432 format3(tr("Summary of uncommitted changes"),
Chris@168 2433 "",
Chris@168 2434 output));
Chris@168 2435 break;
Chris@168 2436
Chris@288 2437 case ACT_DIFF_SUMMARY:
Chris@289 2438 {
Chris@289 2439 // Output has log info first, diff following after a blank line
Chris@289 2440 QStringList olist = output.split("\n\n", QString::SkipEmptyParts);
Chris@289 2441 if (olist.size() > 1) output = olist[1];
Chris@289 2442
Chris@289 2443 Changeset *cs = (Changeset *)completedAction.extraData;
Chris@289 2444 if (cs) {
Chris@289 2445 QMessageBox::information
Chris@289 2446 (this, tr("Change summary"),
Chris@289 2447 format3(tr("Summary of changes"),
Chris@289 2448 cs->formatHtml(),
Chris@289 2449 output));
Chris@289 2450 } else if (output == "") {
Chris@289 2451 // Can happen, for a merge commit (depending on parent)
Chris@288 2452 QMessageBox::information(this, tr("Change summary"),
Chris@288 2453 format3(tr("Summary of changes"),
Chris@288 2454 tr("No changes"),
Chris@288 2455 output));
Chris@288 2456 } else {
Chris@288 2457 QMessageBox::information(this, tr("Change summary"),
Chris@288 2458 format3(tr("Summary of changes"),
Chris@288 2459 "",
Chris@288 2460 output));
Chris@288 2461 }
Chris@288 2462 break;
Chris@289 2463 }
Chris@288 2464
Chris@109 2465 case ACT_FOLDERDIFF:
Chris@109 2466 case ACT_CHGSETDIFF:
Chris@109 2467 case ACT_SERVE:
Chris@109 2468 case ACT_HG_IGNORE:
Chris@284 2469 m_shouldHgStat = true;
Chris@109 2470 break;
Chris@109 2471
Chris@109 2472 case ACT_UPDATE:
Chris@162 2473 QMessageBox::information(this, tr("Update"), tr("<qt><h3>Update successful</h3><p>%1</p>").arg(xmlEncode(output)));
Chris@284 2474 m_shouldHgStat = true;
Chris@109 2475 break;
Chris@109 2476
Chris@109 2477 case ACT_MERGE:
Chris@294 2478 MoreInformationDialog::information
Chris@294 2479 (this, tr("Merge"), tr("Merge successful"),
Chris@302 2480 tr("Remember to test and commit the result before making any further changes."),
Chris@294 2481 output);
Chris@284 2482 m_shouldHgStat = true;
Chris@284 2483 m_justMerged = true;
Chris@109 2484 break;
Chris@109 2485
Chris@109 2486 case ACT_RETRY_MERGE:
Chris@163 2487 QMessageBox::information(this, tr("Resolved"),
Chris@302 2488 tr("<qt><h3>Merge resolved</h3><p>Merge resolved successfully.<br>Remember to test and commit the result before making any further changes.</p>"));
Chris@284 2489 m_shouldHgStat = true;
Chris@284 2490 m_justMerged = true;
Chris@109 2491 break;
Chris@109 2492
Chris@109 2493 default:
Chris@109 2494 break;
Chris@109 2495 }
Chris@108 2496
Chris@121 2497 // Sequence when no full log required:
Chris@520 2498 // paths -> branch -> stat -> resolve-list -> heads ->
Chris@150 2499 // incremental-log (only if heads changed) -> parents
Chris@150 2500 //
Chris@121 2501 // Sequence when full log required:
Chris@520 2502 // paths -> branch -> stat -> resolve-list -> heads ->
Chris@519 2503 // parents -> log
Chris@150 2504 //
Chris@150 2505 // Note we want to call enableDisableActions only once, at the end
Chris@150 2506 // of whichever sequence is in use.
Chris@150 2507
Chris@156 2508 bool noMore = false;
Chris@156 2509
Chris@150 2510 switch (action) {
Chris@175 2511
Chris@175 2512 case ACT_TEST_HG:
Chris@248 2513 {
Chris@248 2514 QSettings settings;
Chris@248 2515 if (settings.value("useextension", true).toBool()) {
Chris@248 2516 hgTestExtension();
Chris@284 2517 } else if (m_workFolderPath == "") {
Chris@248 2518 open();
Chris@248 2519 } else {
Chris@248 2520 hgQueryPaths();
Chris@248 2521 }
Chris@200 2522 break;
Chris@248 2523 }
Chris@200 2524
Chris@200 2525 case ACT_TEST_HG_EXT:
Chris@284 2526 if (m_workFolderPath == "") {
Chris@248 2527 open();
Chris@248 2528 } else{
Chris@248 2529 hgQueryPaths();
Chris@248 2530 }
Chris@175 2531 break;
Chris@150 2532
Chris@150 2533 case ACT_QUERY_PATHS:
Chris@519 2534 // NB this call is duplicated in hgQueryPaths
Chris@109 2535 hgQueryBranch();
Chris@150 2536 break;
Chris@150 2537
Chris@150 2538 case ACT_QUERY_BRANCH:
Chris@519 2539 // NB this call is duplicated in hgQueryBranch
Chris@109 2540 hgStat();
Chris@150 2541 break;
Chris@150 2542
Chris@150 2543 case ACT_STAT:
Chris@163 2544 hgResolveList();
Chris@163 2545 break;
Chris@519 2546
Chris@163 2547 case ACT_RESOLVE_LIST:
Chris@506 2548 hgQueryHeadsActive();
Chris@506 2549 break;
Chris@506 2550
Chris@506 2551 case ACT_QUERY_HEADS_ACTIVE:
Chris@150 2552 hgQueryHeads();
Chris@150 2553 break;
Chris@150 2554
Chris@150 2555 case ACT_QUERY_HEADS:
Chris@284 2556 if (headsChanged && !m_needNewLog) {
Chris@150 2557 hgLogIncremental(oldHeadIds);
Chris@121 2558 } else {
Chris@150 2559 hgQueryParents();
Chris@121 2560 }
Chris@150 2561 break;
Chris@150 2562
Chris@150 2563 case ACT_LOG_INCREMENTAL:
Chris@109 2564 hgQueryParents();
Chris@150 2565 break;
Chris@150 2566
Chris@150 2567 case ACT_QUERY_PARENTS:
Chris@284 2568 if (m_needNewLog) {
Chris@120 2569 hgLog();
Chris@150 2570 } else {
Chris@150 2571 // we're done
Chris@156 2572 noMore = true;
Chris@120 2573 }
Chris@150 2574 break;
Chris@150 2575
Chris@150 2576 case ACT_LOG:
Chris@150 2577 // we're done
Chris@156 2578 noMore = true;
Chris@198 2579 break;
Chris@150 2580
Chris@150 2581 default:
Chris@284 2582 if (m_shouldHgStat) {
Chris@284 2583 m_shouldHgStat = false;
Chris@109 2584 hgQueryPaths();
Chris@150 2585 } else {
Chris@156 2586 noMore = true;
jtkorhonen@0 2587 }
Chris@150 2588 break;
Chris@150 2589 }
Chris@156 2590
Chris@156 2591 if (noMore) {
Chris@540 2592 m_commandSequenceInProgress = false;
Chris@284 2593 m_stateUnknown = false;
Chris@156 2594 enableDisableActions();
Chris@284 2595 m_hgTabs->updateHistory();
Chris@359 2596 updateRecentMenu();
Chris@541 2597 checkFilesystem();
Chris@156 2598 }
jtkorhonen@0 2599 }
jtkorhonen@0 2600
Chris@671 2601 void MainWindow::commandCancelled(HgAction)
Chris@564 2602 {
Chris@564 2603 // Originally I had this checking whether the cancelled action was
Chris@564 2604 // a network one and, if so, calling hgQueryPaths to update the
Chris@564 2605 // local view in case it had changed anything. But that doesn't
Chris@564 2606 // work properly -- because at this point, although the command
Chris@564 2607 // has been cancelled and a kill signal sent, it hasn't actually
Chris@564 2608 // exited yet. If we request another command now, it will go on
Chris@564 2609 // the stack and be associated with the failed exit forthcoming
Chris@564 2610 // from the cancelled command -- giving the user a disturbing
Chris@564 2611 // command-failed dialog
Chris@564 2612 }
Chris@564 2613
jtkorhonen@0 2614 void MainWindow::connectActions()
jtkorhonen@0 2615 {
Chris@284 2616 connect(m_exitAct, SIGNAL(triggered()), this, SLOT(close()));
Chris@284 2617 connect(m_aboutAct, SIGNAL(triggered()), this, SLOT(about()));
Chris@494 2618 connect(m_helpAct, SIGNAL(triggered()), this, SLOT(help()));
Chris@273 2619
Chris@284 2620 connect(m_hgRefreshAct, SIGNAL(triggered()), this, SLOT(hgRefresh()));
Chris@284 2621 connect(m_hgRemoveAct, SIGNAL(triggered()), this, SLOT(hgRemove()));
Chris@284 2622 connect(m_hgAddAct, SIGNAL(triggered()), this, SLOT(hgAdd()));
Chris@284 2623 connect(m_hgCommitAct, SIGNAL(triggered()), this, SLOT(hgCommit()));
Chris@425 2624 connect(m_hgIgnoreAct, SIGNAL(triggered()), this, SLOT(hgIgnore()));
Chris@425 2625 connect(m_hgEditIgnoreAct, SIGNAL(triggered()), this, SLOT(hgEditIgnore()));
Chris@284 2626 connect(m_hgFolderDiffAct, SIGNAL(triggered()), this, SLOT(hgFolderDiff()));
Chris@284 2627 connect(m_hgUpdateAct, SIGNAL(triggered()), this, SLOT(hgUpdate()));
Chris@284 2628 connect(m_hgRevertAct, SIGNAL(triggered()), this, SLOT(hgRevert()));
Chris@284 2629 connect(m_hgMergeAct, SIGNAL(triggered()), this, SLOT(hgMerge()));
Chris@273 2630
Chris@284 2631 connect(m_settingsAct, SIGNAL(triggered()), this, SLOT(settings()));
Chris@284 2632 connect(m_openAct, SIGNAL(triggered()), this, SLOT(open()));
Chris@284 2633 connect(m_changeRemoteRepoAct, SIGNAL(triggered()), this, SLOT(changeRemoteRepo()));
Chris@273 2634
Chris@284 2635 connect(m_hgIncomingAct, SIGNAL(triggered()), this, SLOT(hgIncoming()));
Chris@284 2636 connect(m_hgPullAct, SIGNAL(triggered()), this, SLOT(hgPull()));
Chris@284 2637 connect(m_hgPushAct, SIGNAL(triggered()), this, SLOT(hgPush()));
Chris@273 2638
Chris@284 2639 connect(m_hgServeAct, SIGNAL(triggered()), this, SLOT(hgServe()));
jtkorhonen@0 2640 }
Chris@141 2641
Chris@141 2642 void MainWindow::connectTabsSignals()
Chris@141 2643 {
Chris@327 2644 connect(m_hgTabs, SIGNAL(currentChanged(int)),
Chris@327 2645 this, SLOT(enableDisableActions()));
Chris@327 2646
Chris@284 2647 connect(m_hgTabs, SIGNAL(commit()),
Chris@141 2648 this, SLOT(hgCommit()));
Chris@141 2649
Chris@284 2650 connect(m_hgTabs, SIGNAL(revert()),
Chris@141 2651 this, SLOT(hgRevert()));
Chris@141 2652
Chris@284 2653 connect(m_hgTabs, SIGNAL(diffWorkingFolder()),
Chris@141 2654 this, SLOT(hgFolderDiff()));
Chris@168 2655
Chris@284 2656 connect(m_hgTabs, SIGNAL(showSummary()),
Chris@168 2657 this, SLOT(hgShowSummary()));
Chris@311 2658
Chris@311 2659 connect(m_hgTabs, SIGNAL(newBranch()),
Chris@311 2660 this, SLOT(hgNewBranch()));
Chris@311 2661
Chris@311 2662 connect(m_hgTabs, SIGNAL(noBranch()),
Chris@311 2663 this, SLOT(hgNoBranch()));
Chris@148 2664
Chris@284 2665 connect(m_hgTabs, SIGNAL(updateTo(QString)),
Chris@148 2666 this, SLOT(hgUpdateToRev(QString)));
Chris@141 2667
Chris@284 2668 connect(m_hgTabs, SIGNAL(diffToCurrent(QString)),
Chris@148 2669 this, SLOT(hgDiffToCurrent(QString)));
Chris@141 2670
Chris@284 2671 connect(m_hgTabs, SIGNAL(diffToParent(QString, QString)),
Chris@148 2672 this, SLOT(hgDiffToParent(QString, QString)));
Chris@141 2673
Chris@289 2674 connect(m_hgTabs, SIGNAL(showSummary(Changeset *)),
Chris@289 2675 this, SLOT(hgShowSummaryFor(Changeset *)));
Chris@288 2676
Chris@284 2677 connect(m_hgTabs, SIGNAL(mergeFrom(QString)),
Chris@148 2678 this, SLOT(hgMergeFrom(QString)));
Chris@164 2679
Chris@307 2680 connect(m_hgTabs, SIGNAL(newBranch(QString)),
Chris@311 2681 this, SLOT(hgNewBranch()));
Chris@278 2682
Chris@514 2683 connect(m_hgTabs, SIGNAL(closeBranch(QString)),
Chris@514 2684 this, SLOT(hgCloseBranch()));
Chris@514 2685
Chris@284 2686 connect(m_hgTabs, SIGNAL(tag(QString)),
Chris@148 2687 this, SLOT(hgTag(QString)));
Chris@326 2688
Chris@326 2689 connect(m_hgTabs, SIGNAL(annotateFiles(QStringList)),
Chris@326 2690 this, SLOT(hgAnnotateFiles(QStringList)));
Chris@326 2691
Chris@326 2692 connect(m_hgTabs, SIGNAL(diffFiles(QStringList)),
Chris@326 2693 this, SLOT(hgDiffFiles(QStringList)));
Chris@326 2694
Chris@326 2695 connect(m_hgTabs, SIGNAL(commitFiles(QStringList)),
Chris@326 2696 this, SLOT(hgCommitFiles(QStringList)));
Chris@326 2697
Chris@326 2698 connect(m_hgTabs, SIGNAL(revertFiles(QStringList)),
Chris@326 2699 this, SLOT(hgRevertFiles(QStringList)));
Chris@326 2700
Chris@361 2701 connect(m_hgTabs, SIGNAL(renameFiles(QStringList)),
Chris@361 2702 this, SLOT(hgRenameFiles(QStringList)));
Chris@361 2703
Chris@361 2704 connect(m_hgTabs, SIGNAL(copyFiles(QStringList)),
Chris@361 2705 this, SLOT(hgCopyFiles(QStringList)));
Chris@361 2706
Chris@326 2707 connect(m_hgTabs, SIGNAL(addFiles(QStringList)),
Chris@326 2708 this, SLOT(hgAddFiles(QStringList)));
Chris@326 2709
Chris@326 2710 connect(m_hgTabs, SIGNAL(removeFiles(QStringList)),
Chris@326 2711 this, SLOT(hgRemoveFiles(QStringList)));
Chris@326 2712
Chris@326 2713 connect(m_hgTabs, SIGNAL(redoFileMerges(QStringList)),
Chris@326 2714 this, SLOT(hgRedoFileMerges(QStringList)));
Chris@326 2715
Chris@326 2716 connect(m_hgTabs, SIGNAL(markFilesResolved(QStringList)),
Chris@326 2717 this, SLOT(hgMarkFilesResolved(QStringList)));
Chris@326 2718
Chris@326 2719 connect(m_hgTabs, SIGNAL(ignoreFiles(QStringList)),
Chris@326 2720 this, SLOT(hgIgnoreFiles(QStringList)));
Chris@326 2721
Chris@326 2722 connect(m_hgTabs, SIGNAL(unIgnoreFiles(QStringList)),
Chris@326 2723 this, SLOT(hgUnIgnoreFiles(QStringList)));
sam@624 2724
sam@624 2725 connect(m_hgTabs, SIGNAL(showIn(QStringList)),
sam@624 2726 this, SLOT(hgShowIn(QStringList)));
Chris@141 2727 }
Chris@141 2728
jtkorhonen@0 2729 void MainWindow::enableDisableActions()
jtkorhonen@0 2730 {
Chris@90 2731 DEBUG << "MainWindow::enableDisableActions" << endl;
Chris@90 2732
Chris@284 2733 QString dirname = QDir(m_workFolderPath).dirName();
Chris@340 2734
Chris@340 2735 if (m_workFolderPath != "") { // dirname of "" is ".", so test path instead
Chris@202 2736 setWindowTitle(tr("EasyMercurial: %1").arg(dirname));
Chris@202 2737 } else {
Chris@202 2738 setWindowTitle(tr("EasyMercurial"));
Chris@202 2739 }
Chris@202 2740
Chris@115 2741 //!!! should also do things like set the status texts for the
Chris@115 2742 //!!! actions appropriately by context
Chris@115 2743
jtkorhonen@0 2744 QDir localRepoDir;
jtkorhonen@0 2745 QDir workFolderDir;
jtkorhonen@0 2746
Chris@284 2747 m_remoteRepoActionsEnabled = true;
Chris@284 2748 if (m_remoteRepoPath.isEmpty()) {
Chris@284 2749 m_remoteRepoActionsEnabled = false;
jtkorhonen@0 2750 }
jtkorhonen@0 2751
Chris@284 2752 m_localRepoActionsEnabled = true;
Chris@284 2753 if (m_workFolderPath.isEmpty()) {
Chris@284 2754 m_localRepoActionsEnabled = false;
jtkorhonen@0 2755 }
jtkorhonen@0 2756
Chris@284 2757 if (m_workFolderPath == "" || !workFolderDir.exists(m_workFolderPath)) {
Chris@284 2758 m_localRepoActionsEnabled = false;
jtkorhonen@0 2759 }
jtkorhonen@0 2760
Chris@284 2761 if (!localRepoDir.exists(m_workFolderPath + "/.hg")) {
Chris@284 2762 m_localRepoActionsEnabled = false;
jtkorhonen@0 2763 }
jtkorhonen@0 2764
Chris@179 2765 bool haveDiff = false;
Chris@179 2766 QSettings settings;
Chris@179 2767 settings.beginGroup("Locations");
Chris@179 2768 if (settings.value("extdiffbinary", "").toString() != "") {
Chris@179 2769 haveDiff = true;
Chris@179 2770 }
Chris@179 2771 settings.endGroup();
Chris@112 2772
Chris@505 2773 m_hgTabs->setHaveMerge(m_currentParents.size() == 2);
Chris@505 2774
Chris@365 2775 m_hgRefreshAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2776 m_hgFolderDiffAct->setEnabled(m_localRepoActionsEnabled && haveDiff);
Chris@365 2777 m_hgRevertAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2778 m_hgAddAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2779 m_hgRemoveAct->setEnabled(m_localRepoActionsEnabled);
Chris@425 2780 m_hgIgnoreAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2781 m_hgUpdateAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2782 m_hgCommitAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2783 m_hgMergeAct->setEnabled(m_localRepoActionsEnabled);
Chris@365 2784 m_hgServeAct->setEnabled(m_localRepoActionsEnabled);
Chris@413 2785 m_hgEditIgnoreAct->setEnabled(m_localRepoActionsEnabled);
Chris@273 2786
Chris@284 2787 DEBUG << "m_localRepoActionsEnabled = " << m_localRepoActionsEnabled << endl;
Chris@284 2788 DEBUG << "canCommit = " << m_hgTabs->canCommit() << endl;
Chris@273 2789
Chris@284 2790 m_hgAddAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canAdd());
Chris@284 2791 m_hgRemoveAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canRemove());
Chris@284 2792 m_hgCommitAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canCommit());
Chris@284 2793 m_hgRevertAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canRevert());
Chris@284 2794 m_hgFolderDiffAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canDiff());
Chris@425 2795 m_hgIgnoreAct->setEnabled(m_localRepoActionsEnabled && m_hgTabs->canIgnore());
Chris@90 2796
Chris@108 2797 // A default merge makes sense if:
Chris@108 2798 // * there is only one parent (if there are two, we have an uncommitted merge) and
Chris@108 2799 // * there are exactly two heads that have the same branch as the current branch and
Chris@108 2800 // * our parent is one of those heads
Chris@108 2801 //
Chris@108 2802 // A default update makes sense if:
Chris@108 2803 // * there is only one parent and
Chris@108 2804 // * the parent is not one of the current heads
Chris@156 2805
Chris@108 2806 bool canMerge = false;
Chris@108 2807 bool canUpdate = false;
Chris@156 2808 bool haveMerge = false;
Chris@162 2809 bool emptyRepo = false;
Chris@225 2810 bool noWorkingCopy = false;
Chris@235 2811 bool newBranch = false;
Chris@506 2812 bool closedBranch = false;
Chris@506 2813 int currentBranchActiveHeads = 0;
Chris@273 2814
Chris@284 2815 if (m_currentParents.size() == 1) {
Chris@156 2816 bool parentIsHead = false;
Chris@506 2817 bool parentIsActiveHead = false;
Chris@284 2818 Changeset *parent = m_currentParents[0];
Chris@506 2819 foreach (Changeset *head, m_activeHeads) {
Chris@284 2820 if (head->isOnBranch(m_currentBranch)) {
Chris@506 2821 ++currentBranchActiveHeads;
Chris@235 2822 }
Chris@235 2823 if (parent->id() == head->id()) {
Chris@506 2824 parentIsActiveHead = parentIsHead = true;
Chris@108 2825 }
Chris@108 2826 }
Chris@506 2827 if (!parentIsActiveHead) {
Chris@506 2828 foreach (Changeset *head, m_currentHeads) {
Chris@506 2829 if (parent->id() == head->id()) {
Chris@506 2830 parentIsHead = true;
Chris@506 2831 }
Chris@506 2832 }
Chris@506 2833 }
Chris@506 2834 if (currentBranchActiveHeads == 2 && parentIsActiveHead) {
Chris@108 2835 canMerge = true;
Chris@108 2836 }
Chris@506 2837 if (currentBranchActiveHeads == 0 && parentIsActiveHead) {
Chris@235 2838 // Just created a new branch
Chris@235 2839 newBranch = true;
Chris@235 2840 }
Chris@108 2841 if (!parentIsHead) {
Chris@108 2842 canUpdate = true;
Chris@108 2843 DEBUG << "parent id = " << parent->id() << endl;
Chris@108 2844 DEBUG << " head ids "<<endl;
Chris@284 2845 foreach (Changeset *h, m_currentHeads) {
Chris@108 2846 DEBUG << "head id = " << h->id() << endl;
Chris@108 2847 }
Chris@506 2848 } else if (!parentIsActiveHead) {
Chris@506 2849 closedBranch = true;
Chris@108 2850 }
Chris@284 2851 m_justMerged = false;
Chris@284 2852 } else if (m_currentParents.size() == 0) {
Chris@284 2853 if (m_currentHeads.size() == 0) {
Chris@225 2854 // No heads -> empty repo
Chris@225 2855 emptyRepo = true;
Chris@225 2856 } else {
Chris@225 2857 // Heads, but no parents -> no working copy, e.g. we have
Chris@225 2858 // just converted this repo but haven't updated in it yet.
Chris@225 2859 // Uncommon but confusing; probably merits a special case
Chris@225 2860 noWorkingCopy = true;
Chris@225 2861 canUpdate = true;
Chris@225 2862 }
Chris@284 2863 m_justMerged = false;
Chris@156 2864 } else {
Chris@156 2865 haveMerge = true;
Chris@284 2866 m_justMerged = true;
Chris@108 2867 }
Chris@505 2868
Chris@363 2869 m_hgIncomingAct->setEnabled(m_remoteRepoActionsEnabled);
Chris@363 2870 m_hgPullAct->setEnabled(m_remoteRepoActionsEnabled);
Chris@363 2871 // permit push even if no remote yet; we'll ask for one
Chris@363 2872 m_hgPushAct->setEnabled(m_localRepoActionsEnabled && !emptyRepo);
Chris@363 2873
Chris@284 2874 m_hgMergeAct->setEnabled(m_localRepoActionsEnabled &&
Chris@506 2875 (canMerge || m_hgTabs->canResolve()));
Chris@284 2876 m_hgUpdateAct->setEnabled(m_localRepoActionsEnabled &&
Chris@506 2877 (canUpdate && !m_hgTabs->haveChangesToCommit()));
Chris@115 2878
Chris@115 2879 // Set the state field on the file status widget
Chris@115 2880
Chris@115 2881 QString branchText;
Chris@284 2882 if (m_currentBranch == "" || m_currentBranch == "default") {
Chris@115 2883 branchText = tr("the default branch");
Chris@115 2884 } else {
Chris@284 2885 branchText = tr("branch \"%1\"").arg(m_currentBranch);
Chris@115 2886 }
Chris@156 2887
Chris@284 2888 if (m_stateUnknown) {
Chris@284 2889 if (m_workFolderPath == "") {
Chris@287 2890 m_workStatus->setState(tr("No repository open"));
Chris@248 2891 } else {
Chris@287 2892 m_workStatus->setState(tr("(Examining repository)"));
Chris@248 2893 }
Chris@173 2894 } else if (emptyRepo) {
Chris@287 2895 m_workStatus->setState(tr("Nothing committed to this repository yet"));
Chris@225 2896 } else if (noWorkingCopy) {
Chris@287 2897 m_workStatus->setState(tr("No working copy yet: consider updating"));
Chris@162 2898 } else if (canMerge) {
Chris@287 2899 m_workStatus->setState(tr("<b>Awaiting merge</b> on %1").arg(branchText));
Chris@284 2900 } else if (!m_hgTabs->getAllUnresolvedFiles().empty()) {
Chris@287 2901 m_workStatus->setState(tr("Have unresolved files following merge on %1").arg(branchText));
Chris@156 2902 } else if (haveMerge) {
Chris@287 2903 m_workStatus->setState(tr("Have merged but not yet committed on %1").arg(branchText));
Chris@235 2904 } else if (newBranch) {
Chris@287 2905 m_workStatus->setState(tr("On %1. New branch: has not yet been committed").arg(branchText));
Chris@506 2906 } else if (closedBranch) {
Chris@506 2907 if (canUpdate) {
Chris@506 2908 m_workStatus->setState(tr("On a closed branch. Not at the head of the branch"));
Chris@506 2909 } else {
Chris@506 2910 m_workStatus->setState(tr("At the head of a closed branch"));
Chris@506 2911 }
Chris@156 2912 } else if (canUpdate) {
Chris@284 2913 if (m_hgTabs->haveChangesToCommit()) {
Chris@163 2914 // have uncommitted changes
Chris@287 2915 m_workStatus->setState(tr("On %1. Not at the head of the branch").arg(branchText));
Chris@163 2916 } else {
Chris@163 2917 // no uncommitted changes
Chris@287 2918 m_workStatus->setState(tr("On %1. Not at the head of the branch: consider updating").arg(branchText));
Chris@163 2919 }
Chris@506 2920 } else if (currentBranchActiveHeads > 1) {
Chris@506 2921 m_workStatus->setState(tr("At one of %n heads of %1", "", currentBranchActiveHeads).arg(branchText));
Chris@115 2922 } else {
Chris@287 2923 m_workStatus->setState(tr("At the head of %1").arg(branchText));
Chris@115 2924 }
jtkorhonen@0 2925 }
jtkorhonen@0 2926
Chris@359 2927
Chris@506 2928 void MainWindow::updateClosedHeads()
Chris@506 2929 {
Chris@506 2930 m_closedHeadIds.clear();
Chris@506 2931 QSet<QString> activeIds;
Chris@506 2932 foreach (Changeset *cs, m_activeHeads) {
Chris@506 2933 activeIds.insert(cs->id());
Chris@506 2934 }
Chris@506 2935 foreach (Changeset *cs, m_currentHeads) {
Chris@506 2936 if (!activeIds.contains(cs->id())) {
Chris@506 2937 m_closedHeadIds.insert(cs->id());
Chris@506 2938 }
Chris@506 2939 }
Chris@506 2940 m_hgTabs->setClosedHeadIds(m_closedHeadIds);
Chris@506 2941 }
Chris@506 2942
Chris@359 2943 void MainWindow::updateRecentMenu()
Chris@359 2944 {
Chris@359 2945 m_recentMenu->clear();
Chris@359 2946 RecentFiles rf("Recent-local");
Chris@359 2947 QStringList recent = rf.getRecent();
Chris@359 2948 if (recent.empty()) {
Chris@359 2949 QLabel *label = new QLabel(tr("No recent local repositories"));
Chris@359 2950 QWidgetAction *wa = new QWidgetAction(m_recentMenu);
Chris@359 2951 wa->setDefaultWidget(label);
Chris@359 2952 return;
Chris@359 2953 }
Chris@359 2954 foreach (QString r, recent) {
Chris@359 2955 QAction *a = m_recentMenu->addAction(r);
Chris@611 2956 connect(a, SIGNAL(triggered()), this, SLOT(recentMenuActivated()));
Chris@359 2957 }
Chris@359 2958 }
Chris@359 2959
jtkorhonen@0 2960 void MainWindow::createActions()
jtkorhonen@0 2961 {
jtkorhonen@0 2962 //File actions
Chris@365 2963 m_openAct = new QAction(QIcon(":/images/fileopen.png"), tr("&Open..."), this);
Chris@609 2964 m_openAct->setStatusTip(tr("Open a remote repository or an existing local folder"));
Chris@365 2965 m_openAct->setShortcut(tr("Ctrl+O"));
Chris@365 2966
Chris@609 2967 m_changeRemoteRepoAct = new QAction(tr("Set Push and Pull &Location..."), this);
Chris@609 2968 m_changeRemoteRepoAct->setStatusTip(tr("Set or change the default URL for pull and push actions from this repository"));
Chris@273 2969
Chris@365 2970 m_settingsAct = new QAction(QIcon(":/images/settings.png"), tr("&Settings..."), this);
Chris@365 2971 m_settingsAct->setStatusTip(tr("View and change application settings"));
Chris@273 2972
Chris@343 2973 #ifdef Q_OS_WIN32
Chris@365 2974 m_exitAct = new QAction(QIcon(":/images/exit.png"), tr("E&xit"), this);
Chris@343 2975 #else
Chris@365 2976 m_exitAct = new QAction(QIcon(":/images/exit.png"), tr("&Quit"), this);
Chris@343 2977 #endif
Chris@284 2978 m_exitAct->setShortcuts(QKeySequence::Quit);
Chris@365 2979 m_exitAct->setStatusTip(tr("Exit EasyMercurial"));
jtkorhonen@0 2980
jtkorhonen@0 2981 //Repository actions
Chris@544 2982 m_hgRefreshAct = new QAction(QIcon(":/images/status.png"), tr("&Re-Read Working Folder"), this);
Chris@365 2983 m_hgRefreshAct->setShortcut(tr("Ctrl+R"));
Chris@284 2984 m_hgRefreshAct->setStatusTip(tr("Refresh the window to show the current state of the working folder"));
Chris@273 2985
Chris@365 2986 m_hgIncomingAct = new QAction(QIcon(":/images/incoming.png"), tr("Pre&view Incoming Changes"), this);
Chris@365 2987 m_hgIncomingAct->setIconText(tr("Preview"));
Chris@365 2988 m_hgIncomingAct->setStatusTip(tr("See what changes are available in the remote repository waiting to be pulled"));
Chris@365 2989
Chris@365 2990 m_hgPullAct = new QAction(QIcon(":/images/pull.png"), tr("Pu&ll from Remote Repository"), this);
Chris@365 2991 m_hgPullAct->setIconText(tr("Pull"));
Chris@365 2992 m_hgPullAct->setShortcut(tr("Ctrl+L"));
Chris@365 2993 m_hgPullAct->setStatusTip(tr("Pull changes from the remote repository to the local repository"));
Chris@365 2994
Chris@365 2995 m_hgPushAct = new QAction(QIcon(":/images/push.png"), tr("Pus&h to Remote Repository"), this);
Chris@365 2996 m_hgPushAct->setIconText(tr("Push"));
Chris@365 2997 m_hgPushAct->setShortcut(tr("Ctrl+H"));
Chris@284 2998 m_hgPushAct->setStatusTip(tr("Push changes from the local repository to the remote repository"));
jtkorhonen@0 2999
jtkorhonen@0 3000 //Workfolder actions
Chris@365 3001 m_hgFolderDiffAct = new QAction(QIcon(":/images/folderdiff.png"), tr("&Diff"), this);
Chris@365 3002 m_hgFolderDiffAct->setIconText(tr("Diff"));
Chris@365 3003 m_hgFolderDiffAct->setShortcut(tr("Ctrl+D"));
Chris@284 3004 m_hgFolderDiffAct->setStatusTip(tr("See what has changed in the working folder compared with the last committed state"));
Chris@273 3005
Chris@365 3006 m_hgRevertAct = new QAction(QIcon(":/images/undo.png"), tr("Re&vert"), this);
Chris@284 3007 m_hgRevertAct->setStatusTip(tr("Throw away your changes and return to the last committed state"));
Chris@273 3008
Chris@365 3009 m_hgAddAct = new QAction(QIcon(":/images/add.png"), tr("&Add Files"), this);
Chris@365 3010 m_hgAddAct->setIconText(tr("Add"));
Chris@365 3011 m_hgAddAct->setShortcut(tr("+"));
Chris@365 3012 m_hgAddAct->setStatusTip(tr("Mark the selected files to be added on the next commit"));
Chris@365 3013
Chris@365 3014 m_hgRemoveAct = new QAction(QIcon(":/images/remove.png"), tr("&Remove Files"), this);
Chris@365 3015 m_hgRemoveAct->setIconText(tr("Remove"));
Chris@365 3016 m_hgRemoveAct->setShortcut(tr("Del"));
Chris@365 3017 m_hgRemoveAct->setStatusTip(tr("Mark the selected files to be removed from version control on the next commit"));
Chris@365 3018
Chris@425 3019 m_hgIgnoreAct = new QAction(tr("&Ignore Files..."), this);
Chris@425 3020 m_hgIgnoreAct->setStatusTip(tr("Add the selected filenames to the ignored list, of files that should never be tracked in this repository"));
Chris@425 3021
Chris@425 3022 m_hgEditIgnoreAct = new QAction(tr("Edit Ignored List"), this);
Chris@425 3023 m_hgEditIgnoreAct->setStatusTip(tr("Edit the .hgignore file, containing the names of files that should be ignored by Mercurial"));
Chris@425 3024
Chris@365 3025 m_hgUpdateAct = new QAction(QIcon(":/images/update.png"), tr("&Update to Branch Head"), this);
Chris@365 3026 m_hgUpdateAct->setIconText(tr("Update"));
Chris@365 3027 m_hgUpdateAct->setShortcut(tr("Ctrl+U"));
Chris@284 3028 m_hgUpdateAct->setStatusTip(tr("Update the working folder to the head of the current repository branch"));
jtkorhonen@0 3029
Chris@365 3030 m_hgCommitAct = new QAction(QIcon(":/images/commit.png"), tr("&Commit..."), this);
Chris@365 3031 m_hgCommitAct->setShortcut(tr("Ctrl+Return"));
Chris@284 3032 m_hgCommitAct->setStatusTip(tr("Commit your changes to the local repository"));
Chris@273 3033
Chris@365 3034 m_hgMergeAct = new QAction(QIcon(":/images/merge.png"), tr("&Merge"), this);
Chris@365 3035 m_hgMergeAct->setShortcut(tr("Ctrl+M"));
Chris@284 3036 m_hgMergeAct->setStatusTip(tr("Merge the two independent sets of changes in the local repository into the working folder"));
jtkorhonen@0 3037
Chris@425 3038 m_hgServeAct = new QAction(tr("Share Repository"), this);
Chris@425 3039 m_hgServeAct->setStatusTip(tr("Serve local repository temporarily via HTTP for workgroup access"));
jtkorhonen@11 3040
jtkorhonen@0 3041 //Help actions
Chris@494 3042 #ifdef Q_OS_MAC
Chris@494 3043 m_helpAct = new QAction(tr("EasyMercurial Help"), this);
Chris@494 3044 #else
Chris@494 3045 m_helpAct = new QAction(tr("Help Topics"), this);
Chris@494 3046 #endif
Chris@494 3047 m_helpAct->setShortcuts(QKeySequence::HelpContents);
Chris@284 3048 m_aboutAct = new QAction(tr("About EasyMercurial"), this);
Chris@94 3049
Chris@94 3050 // Miscellaneous
Chris@199 3051 QShortcut *clearSelectionsShortcut = new QShortcut(Qt::Key_Escape, this);
Chris@199 3052 connect(clearSelectionsShortcut, SIGNAL(activated()),
Chris@199 3053 this, SLOT(clearSelections()));
jtkorhonen@0 3054 }
jtkorhonen@0 3055
jtkorhonen@0 3056 void MainWindow::createMenus()
jtkorhonen@0 3057 {
Chris@664 3058 #ifdef Q_OS_LINUX
Chris@664 3059 // In Ubuntu 14.04 the window's menu bar goes missing entirely if
Chris@664 3060 // the user is running any desktop environment other than Unity
Chris@664 3061 // (in which the faux single-menubar appears). The user has a
Chris@664 3062 // workaround, to remove the appmenu-qt5 package, but that is
Chris@664 3063 // awkward and the problem is so severe that it merits disabling
Chris@664 3064 // the system menubar integration altogether. Like this:
Chris@664 3065 menuBar()->setNativeMenuBar(false);
Chris@664 3066 #endif
Chris@664 3067
Chris@365 3068 m_fileMenu = menuBar()->addMenu(tr("&File"));
Chris@365 3069
Chris@365 3070 m_fileMenu->addAction(m_openAct);
Chris@365 3071 m_recentMenu = m_fileMenu->addMenu(tr("Open Re&cent"));
Chris@365 3072 m_fileMenu->addAction(m_hgRefreshAct);
Chris@365 3073 m_fileMenu->addSeparator();
Chris@425 3074 m_fileMenu->addAction(m_hgServeAct);
Chris@425 3075 m_fileMenu->addSeparator();
Chris@365 3076 m_fileMenu->addAction(m_settingsAct);
Chris@365 3077 m_fileMenu->addSeparator();
Chris@365 3078 m_fileMenu->addAction(m_exitAct);
Chris@365 3079
Chris@365 3080 QMenu *workMenu;
Chris@365 3081 workMenu = menuBar()->addMenu(tr("&Work"));
Chris@365 3082 workMenu->addAction(m_hgFolderDiffAct);
Chris@365 3083 workMenu->addSeparator();
Chris@365 3084 workMenu->addAction(m_hgUpdateAct);
Chris@365 3085 workMenu->addAction(m_hgCommitAct);
Chris@365 3086 workMenu->addAction(m_hgMergeAct);
Chris@365 3087 workMenu->addSeparator();
Chris@365 3088 workMenu->addAction(m_hgAddAct);
Chris@365 3089 workMenu->addAction(m_hgRemoveAct);
Chris@365 3090 workMenu->addSeparator();
Chris@425 3091 workMenu->addAction(m_hgIgnoreAct);
Chris@425 3092 workMenu->addAction(m_hgEditIgnoreAct);
Chris@425 3093 workMenu->addSeparator();
Chris@365 3094 workMenu->addAction(m_hgRevertAct);
Chris@365 3095
Chris@365 3096 QMenu *remoteMenu;
Chris@365 3097 remoteMenu = menuBar()->addMenu(tr("&Remote"));
Chris@365 3098 remoteMenu->addAction(m_hgIncomingAct);
Chris@365 3099 remoteMenu->addSeparator();
Chris@609 3100 remoteMenu->addAction(m_changeRemoteRepoAct);
Chris@365 3101 remoteMenu->addAction(m_hgPullAct);
Chris@365 3102 remoteMenu->addAction(m_hgPushAct);
Chris@273 3103
Chris@378 3104 m_helpMenu = menuBar()->addMenu(tr("&Help"));
Chris@494 3105 m_helpMenu->addAction(m_helpAct);
Chris@284 3106 m_helpMenu->addAction(m_aboutAct);
jtkorhonen@0 3107 }
jtkorhonen@0 3108
jtkorhonen@0 3109 void MainWindow::createToolBars()
jtkorhonen@0 3110 {
Chris@442 3111 int sz = 32;
Chris@442 3112
Chris@645 3113 QString spacerBefore, spacerAfter;
Chris@645 3114
Chris@645 3115 spacerBefore = spacerAfter = " ";
Chris@645 3116
Chris@645 3117 #ifdef Q_OS_MAC
Chris@645 3118 spacerAfter = "";
Chris@645 3119 #endif
Chris@645 3120
Chris@645 3121 #ifdef Q_OS_WIN32
chris@651 3122 spacerBefore = spacerAfter = " ";
Chris@645 3123 #endif
Chris@645 3124
Chris@645 3125 m_repoToolBar = addToolBar(tr("Remote"));
Chris@645 3126 m_repoToolBar->setIconSize(QSize(sz, sz));
Chris@645 3127 if (spacerBefore != "") {
Chris@645 3128 m_repoToolBar->addWidget(new QLabel(spacerBefore));
Chris@645 3129 }
Chris@645 3130 m_repoToolBar->addAction(m_openAct);
Chris@645 3131 if (spacerAfter != "") {
Chris@645 3132 m_repoToolBar->addWidget(new QLabel(spacerAfter));
Chris@645 3133 }
Chris@645 3134 m_repoToolBar->addSeparator();
Chris@645 3135 m_repoToolBar->addAction(m_hgIncomingAct);
Chris@645 3136 m_repoToolBar->addAction(m_hgPullAct);
Chris@645 3137 m_repoToolBar->addAction(m_hgPushAct);
Chris@645 3138 m_repoToolBar->setMovable(false);
Chris@273 3139
Chris@594 3140 m_workFolderToolBar = new QToolBar(tr("Work"));
Chris@284 3141 addToolBar(Qt::LeftToolBarArea, m_workFolderToolBar);
Chris@442 3142 m_workFolderToolBar->setIconSize(QSize(sz, sz));
Chris@645 3143
Chris@645 3144 QWidget *w = new QWidget;
Chris@645 3145 w->setFixedHeight(6);
Chris@645 3146 m_workFolderToolBar->addWidget(w);
Chris@645 3147
Chris@284 3148 m_workFolderToolBar->addAction(m_hgFolderDiffAct);
Chris@284 3149 m_workFolderToolBar->addSeparator();
Chris@284 3150 m_workFolderToolBar->addAction(m_hgRevertAct);
Chris@284 3151 m_workFolderToolBar->addAction(m_hgUpdateAct);
Chris@284 3152 m_workFolderToolBar->addAction(m_hgCommitAct);
Chris@284 3153 m_workFolderToolBar->addAction(m_hgMergeAct);
Chris@284 3154 m_workFolderToolBar->addSeparator();
Chris@284 3155 m_workFolderToolBar->addAction(m_hgAddAct);
Chris@284 3156 m_workFolderToolBar->addAction(m_hgRemoveAct);
Chris@365 3157 m_workFolderToolBar->setMovable(false);
Chris@61 3158
Chris@230 3159 updateToolBarStyle();
jtkorhonen@0 3160 }
jtkorhonen@0 3161
Chris@230 3162 void MainWindow::updateToolBarStyle()
Chris@230 3163 {
Chris@230 3164 QSettings settings;
Chris@230 3165 settings.beginGroup("Presentation");
Chris@230 3166 bool showText = settings.value("showiconlabels", true).toBool();
Chris@230 3167 settings.endGroup();
Chris@230 3168
Chris@230 3169 foreach (QToolButton *tb, findChildren<QToolButton *>()) {
Chris@230 3170 tb->setToolButtonStyle(showText ?
Chris@230 3171 Qt::ToolButtonTextUnderIcon :
Chris@230 3172 Qt::ToolButtonIconOnly);
Chris@230 3173 }
Chris@230 3174 }
jtkorhonen@0 3175
Chris@287 3176 void MainWindow::updateWorkFolderAndRepoNames()
Chris@287 3177 {
Chris@287 3178 m_hgTabs->setLocalPath(m_workFolderPath);
Chris@287 3179
Chris@287 3180 m_workStatus->setLocalPath(m_workFolderPath);
Chris@287 3181 m_workStatus->setRemoteURL(m_remoteRepoPath);
Chris@287 3182 }
Chris@287 3183
jtkorhonen@0 3184 void MainWindow::createStatusBar()
jtkorhonen@0 3185 {
jtkorhonen@0 3186 statusBar()->showMessage(tr("Ready"));
jtkorhonen@0 3187 }
jtkorhonen@0 3188
jtkorhonen@0 3189 void MainWindow::readSettings()
jtkorhonen@0 3190 {
jtkorhonen@0 3191 QDir workFolder;
jtkorhonen@0 3192
Chris@61 3193 QSettings settings;
jtkorhonen@0 3194
Chris@284 3195 m_workFolderPath = settings.value("workfolderpath", "").toString();
Chris@553 3196 if (!workFolder.exists(m_workFolderPath)) {
Chris@284 3197 m_workFolderPath = "";
jtkorhonen@0 3198 }
jtkorhonen@0 3199
jtkorhonen@0 3200 QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint();
Chris@340 3201 QSize size = settings.value("size", QSize(550, 550)).toSize();
Chris@284 3202 m_firstStart = settings.value("firststart", QVariant(true)).toBool();
jtkorhonen@0 3203
jtkorhonen@0 3204 resize(size);
jtkorhonen@0 3205 move(pos);
jtkorhonen@0 3206 }
jtkorhonen@0 3207
jtkorhonen@0 3208 void MainWindow::writeSettings()
jtkorhonen@0 3209 {
Chris@61 3210 QSettings settings;
jtkorhonen@0 3211 settings.setValue("pos", pos());
jtkorhonen@0 3212 settings.setValue("size", size());
Chris@284 3213 settings.setValue("remoterepopath", m_remoteRepoPath);
Chris@284 3214 settings.setValue("workfolderpath", m_workFolderPath);
Chris@284 3215 settings.setValue("firststart", m_firstStart);
jtkorhonen@0 3216 }
jtkorhonen@0 3217
Chris@491 3218 void MainWindow::newerVersionAvailable(QString version)
Chris@491 3219 {
Chris@491 3220 QSettings settings;
Chris@491 3221 settings.beginGroup("NewerVersionWarning");
Chris@491 3222 QString tag = QString("version-%1-available-show").arg(version);
Chris@491 3223 if (settings.value(tag, true).toBool()) {
Chris@491 3224 QString title(tr("Newer version available"));
Chris@618 3225 QString text(tr("<h3>Newer version available</h3><p>You are using version %1 of EasyMercurial, but version %3 is now available.</p><p>Please see the <a href=\"http://easyhg.org/\">EasyMercurial website</a> for more information.</p>").arg(EASYHG_VERSION).arg(version));
Chris@491 3226 QMessageBox::information(this, title, text);
Chris@491 3227 settings.setValue(tag, false);
Chris@491 3228 }
Chris@491 3229 settings.endGroup();
Chris@491 3230 }
Chris@491 3231
Chris@494 3232 void MainWindow::help()
Chris@494 3233 {
Chris@494 3234 if (!m_helpDialog) {
Chris@494 3235 m_helpDialog = new QDialog;
Chris@494 3236 QGridLayout *layout = new QGridLayout;
Chris@494 3237 m_helpDialog->setLayout(layout);
Chris@498 3238 QPushButton *home = new QPushButton;
Chris@498 3239 home->setIcon(QIcon(":images/home.png"));
Chris@498 3240 layout->addWidget(home, 0, 0);
Chris@498 3241 QPushButton *back = new QPushButton;
Chris@498 3242 back->setIcon(QIcon(":images/back.png"));
Chris@498 3243 layout->addWidget(back, 0, 1);
Chris@498 3244 QPushButton *fwd = new QPushButton;
Chris@498 3245 fwd->setIcon(QIcon(":images/forward.png"));
Chris@498 3246 layout->addWidget(fwd, 0, 2);
Chris@494 3247 QTextBrowser *text = new QTextBrowser;
Chris@494 3248 text->setOpenExternalLinks(true);
Chris@498 3249 layout->addWidget(text, 1, 0, 1, 4);
Chris@494 3250 text->setSource(QUrl("qrc:help/topics.html"));
Chris@494 3251 QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Close);
Chris@494 3252 connect(bb, SIGNAL(rejected()), m_helpDialog, SLOT(hide()));
Chris@498 3253 connect(text, SIGNAL(backwardAvailable(bool)),
Chris@498 3254 back, SLOT(setEnabled(bool)));
Chris@498 3255 connect(text, SIGNAL(forwardAvailable(bool)),
Chris@498 3256 fwd, SLOT(setEnabled(bool)));
Chris@498 3257 connect(home, SIGNAL(clicked()), text, SLOT(home()));
Chris@498 3258 connect(back, SIGNAL(clicked()), text, SLOT(backward()));
Chris@498 3259 connect(fwd, SIGNAL(clicked()), text, SLOT(forward()));
Chris@498 3260 back->setEnabled(false);
Chris@498 3261 fwd->setEnabled(false);
Chris@498 3262 layout->addWidget(bb, 2, 0, 1, 4);
Chris@498 3263 layout->setColumnStretch(3, 20);
Chris@494 3264 m_helpDialog->resize(450, 500);
Chris@494 3265 }
Chris@494 3266 QTextBrowser *tb = m_helpDialog->findChild<QTextBrowser *>();
Chris@494 3267 if (tb) tb->home();
Chris@494 3268 m_helpDialog->show();
Chris@494 3269 m_helpDialog->raise();
Chris@494 3270 }
Chris@494 3271