2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-11-02 18:55:57 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-11-02 18:55:57 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2007-11-02 18:50:17 +03:00
|
|
|
|
|
|
|
#include "CMakeSetupDialog.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QMessageBox>
|
2007-11-03 17:30:52 +03:00
|
|
|
#include <QStatusBar>
|
|
|
|
#include <QToolButton>
|
|
|
|
#include <QDialogButtonBox>
|
2007-11-04 02:48:59 +03:00
|
|
|
#include <QCloseEvent>
|
2007-11-05 21:20:54 +03:00
|
|
|
#include <QCoreApplication>
|
2007-11-06 03:26:18 +03:00
|
|
|
#include <QSettings>
|
2007-11-06 09:16:11 +03:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QMenuBar>
|
2007-11-07 03:25:43 +03:00
|
|
|
#include <QDragEnterEvent>
|
|
|
|
#include <QMimeData>
|
|
|
|
#include <QUrl>
|
2008-02-15 02:18:10 +03:00
|
|
|
#include <QShortcut>
|
2008-04-04 00:18:37 +04:00
|
|
|
#include <QMacInstallDialog.h>
|
2007-11-02 18:50:17 +03:00
|
|
|
|
|
|
|
#include "QCMake.h"
|
|
|
|
#include "QCMakeCacheView.h"
|
2007-11-13 07:54:49 +03:00
|
|
|
#include "AddCacheEntry.h"
|
2008-12-16 23:00:17 +03:00
|
|
|
#include "FirstConfigure.h"
|
2009-03-30 18:56:43 +04:00
|
|
|
#include "cmVersion.h"
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2010-09-23 23:47:06 +04:00
|
|
|
QCMakeThread::QCMakeThread(QObject* p)
|
2007-11-05 21:20:54 +03:00
|
|
|
: QThread(p), CMakeInstance(NULL)
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2007-11-05 21:20:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QCMake* QCMakeThread::cmakeInstance() const
|
|
|
|
{
|
|
|
|
return this->CMakeInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QCMakeThread::run()
|
|
|
|
{
|
|
|
|
this->CMakeInstance = new QCMake;
|
|
|
|
// emit that this cmake thread is ready for use
|
|
|
|
emit this->cmakeInitialized();
|
|
|
|
this->exec();
|
|
|
|
delete this->CMakeInstance;
|
|
|
|
this->CMakeInstance = NULL;
|
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
|
|
|
|
CMakeSetupDialog::CMakeSetupDialog()
|
2010-12-18 05:04:57 +03:00
|
|
|
: ExitAfterGenerate(true), CacheModified(false), ConfigureNeeded(true), CurrentState(Interrupting)
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2009-09-23 02:29:35 +04:00
|
|
|
QString title = QString(tr("CMake %1"));
|
|
|
|
title = title.arg(cmVersion::GetCMakeVersion());
|
|
|
|
this->setWindowTitle(title);
|
|
|
|
|
2007-11-02 18:50:17 +03:00
|
|
|
// create the GUI
|
2007-11-06 03:26:18 +03:00
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
|
|
|
int h = settings.value("Height", 500).toInt();
|
|
|
|
int w = settings.value("Width", 700).toInt();
|
|
|
|
this->resize(w, h);
|
|
|
|
|
2007-11-03 17:30:52 +03:00
|
|
|
QWidget* cont = new QWidget(this);
|
|
|
|
this->setupUi(cont);
|
2007-11-08 18:17:37 +03:00
|
|
|
this->Splitter->setStretchFactor(0, 3);
|
2007-11-04 02:48:59 +03:00
|
|
|
this->Splitter->setStretchFactor(1, 1);
|
2007-11-03 17:30:52 +03:00
|
|
|
this->setCentralWidget(cont);
|
2007-11-07 19:31:55 +03:00
|
|
|
this->ProgressBar->reset();
|
2007-11-10 19:36:09 +03:00
|
|
|
this->RemoveEntry->setEnabled(false);
|
2007-11-13 07:54:49 +03:00
|
|
|
this->AddEntry->setEnabled(false);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2009-06-25 00:50:52 +04:00
|
|
|
QByteArray p = settings.value("SplitterSizes").toByteArray();
|
|
|
|
this->Splitter->restoreState(p);
|
2007-11-06 03:26:18 +03:00
|
|
|
|
2008-06-13 19:19:53 +04:00
|
|
|
bool groupView = settings.value("GroupView", false).toBool();
|
2010-04-27 02:06:21 +04:00
|
|
|
this->setGroupedView(groupView);
|
|
|
|
this->groupedCheck->setCheckState(groupView ? Qt::Checked : Qt::Unchecked);
|
2008-06-13 19:19:53 +04:00
|
|
|
|
2010-09-23 23:48:07 +04:00
|
|
|
bool advancedView = settings.value("AdvancedView", false).toBool();
|
|
|
|
this->setAdvancedView(advancedView);
|
|
|
|
this->advancedCheck->setCheckState(advancedView?Qt::Checked : Qt::Unchecked);
|
|
|
|
|
2007-11-06 09:16:11 +03:00
|
|
|
QMenu* FileMenu = this->menuBar()->addMenu(tr("&File"));
|
2007-11-07 03:25:43 +03:00
|
|
|
this->ReloadCacheAction = FileMenu->addAction(tr("&Reload Cache"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->ReloadCacheAction, SIGNAL(triggered(bool)),
|
2007-11-07 03:25:43 +03:00
|
|
|
this, SLOT(doReloadCache()));
|
|
|
|
this->DeleteCacheAction = FileMenu->addAction(tr("&Delete Cache"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->DeleteCacheAction, SIGNAL(triggered(bool)),
|
2007-11-07 03:25:43 +03:00
|
|
|
this, SLOT(doDeleteCache()));
|
2008-04-04 02:35:02 +04:00
|
|
|
this->ExitAction = FileMenu->addAction(tr("E&xit"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->ExitAction, SIGNAL(triggered(bool)),
|
2007-11-07 03:25:43 +03:00
|
|
|
this, SLOT(close()));
|
|
|
|
|
|
|
|
QMenu* ToolsMenu = this->menuBar()->addMenu(tr("&Tools"));
|
|
|
|
this->ConfigureAction = ToolsMenu->addAction(tr("&Configure"));
|
2007-12-06 22:07:52 +03:00
|
|
|
// prevent merging with Preferences menu item on Mac OS X
|
|
|
|
this->ConfigureAction->setMenuRole(QAction::NoRole);
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->ConfigureAction, SIGNAL(triggered(bool)),
|
2007-11-07 03:25:43 +03:00
|
|
|
this, SLOT(doConfigure()));
|
|
|
|
this->GenerateAction = ToolsMenu->addAction(tr("&Generate"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)),
|
2007-11-07 03:25:43 +03:00
|
|
|
this, SLOT(doGenerate()));
|
2009-07-17 22:38:36 +04:00
|
|
|
QAction* showChangesAction = ToolsMenu->addAction(tr("&Show My Changes"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(showChangesAction, SIGNAL(triggered(bool)),
|
2009-07-17 22:38:36 +04:00
|
|
|
this, SLOT(showUserChanges()));
|
2008-04-04 00:49:46 +04:00
|
|
|
#if defined(Q_WS_MAC)
|
2010-09-23 23:47:06 +04:00
|
|
|
this->InstallForCommandLineAction
|
2008-04-04 00:18:37 +04:00
|
|
|
= ToolsMenu->addAction(tr("&Install For Command Line Use"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->InstallForCommandLineAction, SIGNAL(triggered(bool)),
|
2008-04-04 00:18:37 +04:00
|
|
|
this, SLOT(doInstallForCommandLine()));
|
2010-09-23 23:47:06 +04:00
|
|
|
#endif
|
2008-04-03 01:41:24 +04:00
|
|
|
QMenu* OptionsMenu = this->menuBar()->addMenu(tr("&Options"));
|
2010-07-12 23:48:51 +04:00
|
|
|
this->SuppressDevWarningsAction =
|
|
|
|
OptionsMenu->addAction(tr("&Suppress dev Warnings (-Wno-dev)"));
|
2008-05-16 03:21:01 +04:00
|
|
|
this->SuppressDevWarningsAction->setCheckable(true);
|
2010-08-25 20:35:40 +04:00
|
|
|
this->WarnUninitializedAction =
|
|
|
|
OptionsMenu->addAction(tr("&Warn Uninitialized (--warn-uninitialized)"));
|
|
|
|
this->WarnUninitializedAction->setCheckable(true);
|
2010-08-25 20:43:02 +04:00
|
|
|
this->WarnUnusedAction =
|
2010-09-01 18:22:08 +04:00
|
|
|
OptionsMenu->addAction(tr("&Warn Unused (--warn-unused-vars)"));
|
2010-08-25 20:43:02 +04:00
|
|
|
this->WarnUnusedAction->setCheckable(true);
|
2008-04-04 00:18:37 +04:00
|
|
|
|
2008-04-03 01:41:24 +04:00
|
|
|
QAction* debugAction = OptionsMenu->addAction(tr("&Debug Output"));
|
|
|
|
debugAction->setCheckable(true);
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(debugAction, SIGNAL(toggled(bool)),
|
2008-04-03 01:41:24 +04:00
|
|
|
this, SLOT(setDebugOutput(bool)));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-06-13 19:19:53 +04:00
|
|
|
OptionsMenu->addSeparator();
|
|
|
|
QAction* expandAction = OptionsMenu->addAction(tr("&Expand Grouped Entries"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(expandAction, SIGNAL(triggered(bool)),
|
2008-06-11 06:19:14 +04:00
|
|
|
this->CacheValues, SLOT(expandAll()));
|
2008-06-13 19:19:53 +04:00
|
|
|
QAction* collapseAction = OptionsMenu->addAction(tr("&Collapse Grouped Entries"));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(collapseAction, SIGNAL(triggered(bool)),
|
2008-06-11 06:19:14 +04:00
|
|
|
this->CacheValues, SLOT(collapseAll()));
|
2008-04-04 00:18:37 +04:00
|
|
|
|
2007-11-06 09:16:11 +03:00
|
|
|
QMenu* HelpMenu = this->menuBar()->addMenu(tr("&Help"));
|
2007-11-07 05:27:45 +03:00
|
|
|
QAction* a = HelpMenu->addAction(tr("About"));
|
2007-11-06 09:16:11 +03:00
|
|
|
QObject::connect(a, SIGNAL(triggered(bool)),
|
|
|
|
this, SLOT(doAbout()));
|
|
|
|
a = HelpMenu->addAction(tr("Help"));
|
|
|
|
QObject::connect(a, SIGNAL(triggered(bool)),
|
|
|
|
this, SLOT(doHelp()));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-02-15 02:18:10 +03:00
|
|
|
QShortcut* filterShortcut = new QShortcut(QKeySequence::Find, this);
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(filterShortcut, SIGNAL(activated()),
|
2008-02-15 02:18:10 +03:00
|
|
|
this, SLOT(startSearch()));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-07 03:25:43 +03:00
|
|
|
this->setAcceptDrops(true);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-13 08:33:22 +03:00
|
|
|
// get the saved binary directories
|
|
|
|
QStringList buildPaths = this->loadBuildPaths();
|
|
|
|
this->BinaryDirectory->addItems(buildPaths);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-02-15 03:58:31 +03:00
|
|
|
this->BinaryDirectory->setCompleter(new QCMakeFileCompleter(this, true));
|
|
|
|
this->SourceDirectory->setCompleter(new QCMakeFileCompleter(this, true));
|
2007-11-14 00:25:38 +03:00
|
|
|
|
2008-03-07 19:50:11 +03:00
|
|
|
// fixed pitch font in output window
|
|
|
|
QFont outputFont("Courier");
|
|
|
|
this->Output->setFont(outputFont);
|
2008-04-15 00:15:28 +04:00
|
|
|
this->ErrorFormat.setForeground(QBrush(Qt::red));
|
2007-11-07 03:25:43 +03:00
|
|
|
|
2007-11-02 18:50:17 +03:00
|
|
|
// start the cmake worker thread
|
|
|
|
this->CMakeThread = new QCMakeThread(this);
|
2007-11-05 21:20:54 +03:00
|
|
|
QObject::connect(this->CMakeThread, SIGNAL(cmakeInitialized()),
|
2010-09-23 23:47:06 +04:00
|
|
|
this, SLOT(initialize()), Qt::QueuedConnection);
|
2007-11-02 18:50:17 +03:00
|
|
|
this->CMakeThread->start();
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-13 01:41:15 +03:00
|
|
|
this->enterState(ReadyConfigure);
|
2010-12-18 05:04:57 +03:00
|
|
|
|
|
|
|
ProgressOffset = 0.0;
|
|
|
|
ProgressFactor = 1.0;
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::initialize()
|
|
|
|
{
|
|
|
|
// now the cmake worker thread is running, lets make our connections to it
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
2008-05-16 03:21:01 +04:00
|
|
|
SIGNAL(propertiesChanged(const QCMakePropertyList&)),
|
2007-11-02 18:50:17 +03:00
|
|
|
this->CacheValues->cacheModel(),
|
2008-05-16 03:21:01 +04:00
|
|
|
SLOT(setProperties(const QCMakePropertyList&)));
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2007-11-03 17:30:52 +03:00
|
|
|
QObject::connect(this->ConfigureButton, SIGNAL(clicked(bool)),
|
2007-11-02 18:50:17 +03:00
|
|
|
this, SLOT(doConfigure()));
|
2010-12-18 05:04:57 +03:00
|
|
|
|
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(), SIGNAL(configureDone(int)),
|
|
|
|
this, SLOT(exitLoop(int)));
|
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(), SIGNAL(generateDone(int)),
|
|
|
|
this, SLOT(exitLoop(int)));
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2007-11-03 17:30:52 +03:00
|
|
|
QObject::connect(this->GenerateButton, SIGNAL(clicked(bool)),
|
2007-11-06 09:16:11 +03:00
|
|
|
this, SLOT(doGenerate()));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-02 18:50:17 +03:00
|
|
|
QObject::connect(this->BrowseSourceDirectoryButton, SIGNAL(clicked(bool)),
|
|
|
|
this, SLOT(doSourceBrowse()));
|
|
|
|
QObject::connect(this->BrowseBinaryDirectoryButton, SIGNAL(clicked(bool)),
|
|
|
|
this, SLOT(doBinaryBrowse()));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-03 17:30:52 +03:00
|
|
|
QObject::connect(this->BinaryDirectory, SIGNAL(editTextChanged(QString)),
|
2007-11-07 18:09:02 +03:00
|
|
|
this, SLOT(onBinaryDirectoryChanged(QString)));
|
2007-11-04 02:48:59 +03:00
|
|
|
QObject::connect(this->SourceDirectory, SIGNAL(textChanged(QString)),
|
2007-11-07 18:09:02 +03:00
|
|
|
this, SLOT(onSourceDirectoryChanged(QString)));
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
|
|
|
SIGNAL(sourceDirChanged(QString)),
|
2007-11-02 18:50:17 +03:00
|
|
|
this, SLOT(updateSourceDirectory(QString)));
|
2008-04-08 03:19:50 +04:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
|
|
|
SIGNAL(binaryDirChanged(QString)),
|
|
|
|
this, SLOT(updateBinaryDirectory(QString)));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
|
|
|
SIGNAL(progressChanged(QString, float)),
|
2007-11-02 18:50:17 +03:00
|
|
|
this, SLOT(showProgress(QString,float)));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
2007-11-09 23:18:49 +03:00
|
|
|
SIGNAL(errorMessage(QString)),
|
|
|
|
this, SLOT(error(QString)));
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
|
|
|
SIGNAL(outputMessage(QString)),
|
2008-02-14 23:06:05 +03:00
|
|
|
this, SLOT(message(QString)));
|
2007-11-06 03:26:18 +03:00
|
|
|
|
2010-04-27 02:06:21 +04:00
|
|
|
QObject::connect(this->groupedCheck, SIGNAL(toggled(bool)),
|
|
|
|
this, SLOT(setGroupedView(bool)));
|
|
|
|
QObject::connect(this->advancedCheck, SIGNAL(toggled(bool)),
|
|
|
|
this, SLOT(setAdvancedView(bool)));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->Search, SIGNAL(textChanged(QString)),
|
2009-09-05 00:43:07 +04:00
|
|
|
this, SLOT(setSearchFilter(QString)));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-06 08:02:08 +03:00
|
|
|
QObject::connect(this->CMakeThread->cmakeInstance(),
|
|
|
|
SIGNAL(generatorChanged(QString)),
|
|
|
|
this, SLOT(updateGeneratorLabel(QString)));
|
|
|
|
this->updateGeneratorLabel(QString());
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-09 23:18:49 +03:00
|
|
|
QObject::connect(this->CacheValues->cacheModel(),
|
2010-09-23 23:47:06 +04:00
|
|
|
SIGNAL(dataChanged(QModelIndex,QModelIndex)),
|
2007-11-09 23:18:49 +03:00
|
|
|
this, SLOT(setCacheModified()));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-10 19:36:09 +03:00
|
|
|
QObject::connect(this->CacheValues->selectionModel(),
|
2010-09-23 23:47:06 +04:00
|
|
|
SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
|
2007-11-10 19:36:09 +03:00
|
|
|
this, SLOT(selectionChanged()));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->RemoveEntry, SIGNAL(clicked(bool)),
|
2007-11-10 19:36:09 +03:00
|
|
|
this, SLOT(removeSelectedCacheEntries()));
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->AddEntry, SIGNAL(clicked(bool)),
|
2007-11-13 07:54:49 +03:00
|
|
|
this, SLOT(addCacheEntry()));
|
2007-11-09 23:18:49 +03:00
|
|
|
|
2010-09-23 23:47:06 +04:00
|
|
|
QObject::connect(this->SuppressDevWarningsAction, SIGNAL(triggered(bool)),
|
2008-05-16 03:21:01 +04:00
|
|
|
this->CMakeThread->cmakeInstance(), SLOT(setSuppressDevWarnings(bool)));
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2010-08-25 20:35:40 +04:00
|
|
|
QObject::connect(this->WarnUninitializedAction, SIGNAL(triggered(bool)),
|
2010-07-12 23:48:51 +04:00
|
|
|
this->CMakeThread->cmakeInstance(),
|
2010-08-25 20:35:40 +04:00
|
|
|
SLOT(setWarnUninitializedMode(bool)));
|
2010-08-25 20:43:02 +04:00
|
|
|
QObject::connect(this->WarnUnusedAction, SIGNAL(triggered(bool)),
|
|
|
|
this->CMakeThread->cmakeInstance(),
|
|
|
|
SLOT(setWarnUnusedMode(bool)));
|
2010-12-17 18:31:19 +03:00
|
|
|
|
2007-11-07 18:09:02 +03:00
|
|
|
if(!this->SourceDirectory->text().isEmpty() ||
|
|
|
|
!this->BinaryDirectory->lineEdit()->text().isEmpty())
|
|
|
|
{
|
|
|
|
this->onSourceDirectoryChanged(this->SourceDirectory->text());
|
|
|
|
this->onBinaryDirectoryChanged(this->BinaryDirectory->lineEdit()->text());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->onBinaryDirectoryChanged(this->BinaryDirectory->lineEdit()->text());
|
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CMakeSetupDialog::~CMakeSetupDialog()
|
|
|
|
{
|
2007-11-06 03:26:18 +03:00
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
|
|
|
settings.setValue("Height", this->height());
|
|
|
|
settings.setValue("Width", this->width());
|
2009-06-25 00:50:52 +04:00
|
|
|
settings.setValue("SplitterSizes", this->Splitter->saveState());
|
2007-11-06 03:26:18 +03:00
|
|
|
|
2007-11-02 18:50:17 +03:00
|
|
|
// wait for thread to stop
|
|
|
|
this->CMakeThread->quit();
|
2008-02-01 18:41:29 +03:00
|
|
|
this->CMakeThread->wait(2000);
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
bool CMakeSetupDialog::prepareConfigure()
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2008-04-02 22:01:37 +04:00
|
|
|
// make sure build directory exists
|
2007-11-07 03:25:43 +03:00
|
|
|
QString bindir = this->CMakeThread->cmakeInstance()->binaryDirectory();
|
|
|
|
QDir dir(bindir);
|
2007-11-04 02:48:59 +03:00
|
|
|
if(!dir.exists())
|
|
|
|
{
|
2009-09-23 21:09:56 +04:00
|
|
|
QString msg = tr("Build directory does not exist, "
|
2008-02-01 18:41:29 +03:00
|
|
|
"should I create it?")
|
|
|
|
+ "\n\n"
|
|
|
|
+ tr("Directory: ");
|
2009-09-23 21:09:56 +04:00
|
|
|
msg += bindir;
|
2007-11-04 02:48:59 +03:00
|
|
|
QString title = tr("Create Directory");
|
2007-11-05 21:20:54 +03:00
|
|
|
QMessageBox::StandardButton btn;
|
2010-09-23 23:47:06 +04:00
|
|
|
btn = QMessageBox::information(this, title, msg,
|
2007-11-05 21:20:54 +03:00
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
2007-11-04 02:48:59 +03:00
|
|
|
if(btn == QMessageBox::No)
|
|
|
|
{
|
2010-12-18 05:04:57 +03:00
|
|
|
return false;
|
2007-11-04 02:48:59 +03:00
|
|
|
}
|
2009-10-30 22:02:25 +03:00
|
|
|
if(!dir.mkpath("."))
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
QMessageBox::information(this, tr("Create Directory Failed"),
|
|
|
|
QString(tr("Failed to create directory %1")).arg(dir.path()),
|
2009-10-30 22:02:25 +03:00
|
|
|
QMessageBox::Ok);
|
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
return false;
|
2009-10-30 22:02:25 +03:00
|
|
|
}
|
2007-11-04 02:48:59 +03:00
|
|
|
}
|
2007-11-05 21:20:54 +03:00
|
|
|
|
2008-05-16 03:21:01 +04:00
|
|
|
// if no generator, prompt for it and other setup stuff
|
2007-11-05 21:20:54 +03:00
|
|
|
if(this->CMakeThread->cmakeInstance()->generator().isEmpty())
|
|
|
|
{
|
2008-05-16 03:21:01 +04:00
|
|
|
if(!this->setupFirstConfigure())
|
2008-04-02 22:01:37 +04:00
|
|
|
{
|
2010-12-18 05:04:57 +03:00
|
|
|
return false;
|
2008-04-02 22:01:37 +04:00
|
|
|
}
|
2007-11-05 21:20:54 +03:00
|
|
|
}
|
|
|
|
|
2007-11-07 03:25:43 +03:00
|
|
|
// remember path
|
|
|
|
this->addBinaryPath(dir.absolutePath());
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
return true;
|
|
|
|
}
|
2007-11-07 18:09:02 +03:00
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
void CMakeSetupDialog::exitLoop(int err)
|
|
|
|
{
|
|
|
|
this->LocalLoop.exit(err);
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
void CMakeSetupDialog::doConfigure()
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2010-12-18 05:04:57 +03:00
|
|
|
if(this->CurrentState == Configuring)
|
|
|
|
{
|
|
|
|
// stop configure
|
|
|
|
doInterrupt();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!prepareConfigure())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->enterState(Configuring);
|
|
|
|
|
|
|
|
bool ret = doConfigureInternal();
|
|
|
|
|
|
|
|
if(ret)
|
|
|
|
{
|
|
|
|
this->ConfigureNeeded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ret && !this->CacheValues->cacheModel()->newPropertyCount())
|
2007-11-13 01:41:15 +03:00
|
|
|
{
|
|
|
|
this->enterState(ReadyGenerate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->enterState(ReadyConfigure);
|
|
|
|
this->CacheValues->scrollToTop();
|
|
|
|
}
|
2010-12-18 05:04:57 +03:00
|
|
|
this->ProgressBar->reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMakeSetupDialog::doConfigureInternal()
|
|
|
|
{
|
|
|
|
this->Output->clear();
|
|
|
|
this->CacheValues->selectionModel()->clear();
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"setProperties", Qt::QueuedConnection,
|
|
|
|
Q_ARG(QCMakePropertyList,
|
|
|
|
this->CacheValues->cacheModel()->properties()));
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"configure", Qt::QueuedConnection);
|
|
|
|
|
|
|
|
int err = this->LocalLoop.exec();
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
if(err != 0)
|
2007-11-03 17:30:52 +03:00
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Error in configuration process, project files may be invalid"),
|
2007-11-03 17:30:52 +03:00
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
2010-12-18 05:04:57 +03:00
|
|
|
|
|
|
|
return 0 == err;
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
void CMakeSetupDialog::doInstallForCommandLine()
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2010-12-18 05:04:57 +03:00
|
|
|
QMacInstallDialog setupdialog(0);
|
|
|
|
setupdialog.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMakeSetupDialog::doGenerateInternal()
|
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"generate", Qt::QueuedConnection);
|
|
|
|
|
|
|
|
int err = this->LocalLoop.exec();
|
|
|
|
|
2007-11-05 21:20:54 +03:00
|
|
|
if(err != 0)
|
2007-11-03 17:30:52 +03:00
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
QMessageBox::critical(this, tr("Error"),
|
2007-11-03 17:30:52 +03:00
|
|
|
tr("Error in generation process, project files may be invalid"),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2010-12-18 05:04:57 +03:00
|
|
|
return 0 == err;
|
2008-04-04 00:18:37 +04:00
|
|
|
}
|
|
|
|
|
2007-11-06 09:16:11 +03:00
|
|
|
void CMakeSetupDialog::doGenerate()
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2007-11-13 01:41:15 +03:00
|
|
|
if(this->CurrentState == Generating)
|
|
|
|
{
|
|
|
|
// stop generate
|
|
|
|
doInterrupt();
|
|
|
|
return;
|
|
|
|
}
|
2010-12-18 05:04:57 +03:00
|
|
|
|
|
|
|
// see if we need to configure
|
|
|
|
// we'll need to configure if:
|
|
|
|
// the configure step hasn't been done yet
|
|
|
|
// generate was the last step done
|
|
|
|
if(this->ConfigureNeeded)
|
|
|
|
{
|
|
|
|
if(!prepareConfigure())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-13 01:41:15 +03:00
|
|
|
this->enterState(Generating);
|
2010-12-18 05:04:57 +03:00
|
|
|
|
|
|
|
bool config_passed = true;
|
|
|
|
if(this->ConfigureNeeded)
|
|
|
|
{
|
|
|
|
this->CacheValues->cacheModel()->setShowNewProperties(false);
|
|
|
|
this->ProgressFactor = 0.5;
|
|
|
|
config_passed = doConfigureInternal();
|
|
|
|
this->ProgressOffset = 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(config_passed)
|
|
|
|
{
|
|
|
|
doGenerateInternal();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->ProgressOffset = 0.0;
|
|
|
|
this->ProgressFactor = 1.0;
|
|
|
|
this->CacheValues->cacheModel()->setShowNewProperties(true);
|
|
|
|
|
|
|
|
this->enterState(ReadyConfigure);
|
|
|
|
this->ProgressBar->reset();
|
|
|
|
|
|
|
|
this->ConfigureNeeded = true;
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-04 02:48:59 +03:00
|
|
|
void CMakeSetupDialog::closeEvent(QCloseEvent* e)
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2008-02-01 18:41:29 +03:00
|
|
|
// prompt for close if there are unsaved changes, and we're not busy
|
2007-11-09 23:18:49 +03:00
|
|
|
if(this->CacheModified)
|
2007-11-03 17:30:52 +03:00
|
|
|
{
|
2009-09-23 21:09:56 +04:00
|
|
|
QString msg = tr("You have changed options but not rebuilt, "
|
2007-11-03 17:30:52 +03:00
|
|
|
"are you sure you want to exit?");
|
|
|
|
QString title = tr("Confirm Exit");
|
2007-11-05 21:20:54 +03:00
|
|
|
QMessageBox::StandardButton btn;
|
2009-09-23 21:09:56 +04:00
|
|
|
btn = QMessageBox::critical(this, title, msg,
|
2007-11-05 21:20:54 +03:00
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
2007-11-04 02:48:59 +03:00
|
|
|
if(btn == QMessageBox::No)
|
2007-11-03 17:30:52 +03:00
|
|
|
{
|
2007-11-04 02:48:59 +03:00
|
|
|
e->ignore();
|
2007-11-03 17:30:52 +03:00
|
|
|
}
|
|
|
|
}
|
2008-02-01 18:41:29 +03:00
|
|
|
|
|
|
|
// don't close if we're busy, unless the user really wants to
|
|
|
|
if(this->CurrentState == Configuring)
|
|
|
|
{
|
2009-09-23 21:09:56 +04:00
|
|
|
QString msg = "You are in the middle of a Configure.\n"
|
2008-02-01 18:41:29 +03:00
|
|
|
"If you Exit now the configure information will be lost.\n"
|
|
|
|
"Are you sure you want to Exit?";
|
|
|
|
QString title = tr("Confirm Exit");
|
|
|
|
QMessageBox::StandardButton btn;
|
2009-09-23 21:09:56 +04:00
|
|
|
btn = QMessageBox::critical(this, title, msg,
|
2008-02-01 18:41:29 +03:00
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
|
|
|
if(btn == QMessageBox::No)
|
|
|
|
{
|
|
|
|
e->ignore();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->doInterrupt();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// let the generate finish
|
|
|
|
if(this->CurrentState == Generating)
|
|
|
|
{
|
|
|
|
e->ignore();
|
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::doHelp()
|
|
|
|
{
|
2007-11-05 21:20:54 +03:00
|
|
|
QString msg = tr("CMake is used to configure and generate build files for "
|
|
|
|
"software projects. The basic steps for configuring a project are as "
|
|
|
|
"follows:\r\n\r\n1. Select the source directory for the project. This should "
|
|
|
|
"contain the CMakeLists.txt files for the project.\r\n\r\n2. Select the build "
|
|
|
|
"directory for the project. This is the directory where the project will be "
|
|
|
|
"built. It can be the same or a different directory than the source "
|
|
|
|
"directory. For easy clean up, a separate build directory is recommended. "
|
|
|
|
"CMake will create the directory if it does not exist.\r\n\r\n3. Once the "
|
|
|
|
"source and binary directories are selected, it is time to press the "
|
|
|
|
"Configure button. This will cause CMake to read all of the input files and "
|
|
|
|
"discover all the variables used by the project. The first time a variable "
|
|
|
|
"is displayed it will be in Red. Users should inspect red variables making "
|
|
|
|
"sure the values are correct. For some projects the Configure process can "
|
|
|
|
"be iterative, so continue to press the Configure button until there are no "
|
|
|
|
"longer red entries.\r\n\r\n4. Once there are no longer red entries, you "
|
2007-11-13 02:06:09 +03:00
|
|
|
"should click the Generate button. This will write the build files to the build "
|
|
|
|
"directory.");
|
2007-11-03 17:30:52 +03:00
|
|
|
|
|
|
|
QDialog dialog;
|
2008-03-28 19:53:31 +03:00
|
|
|
QFontMetrics met(this->font());
|
|
|
|
int msgWidth = met.width(msg);
|
|
|
|
dialog.setMinimumSize(msgWidth/15,20);
|
2008-02-01 18:41:29 +03:00
|
|
|
dialog.setWindowTitle(tr("Help"));
|
2007-11-03 17:30:52 +03:00
|
|
|
QVBoxLayout* l = new QVBoxLayout(&dialog);
|
2007-11-05 21:20:54 +03:00
|
|
|
QLabel* lab = new QLabel(&dialog);
|
|
|
|
lab->setText(msg);
|
|
|
|
lab->setWordWrap(true);
|
2007-11-03 17:30:52 +03:00
|
|
|
QDialogButtonBox* btns = new QDialogButtonBox(QDialogButtonBox::Ok,
|
|
|
|
Qt::Horizontal, &dialog);
|
|
|
|
QObject::connect(btns, SIGNAL(accepted()), &dialog, SLOT(accept()));
|
2008-03-28 19:53:31 +03:00
|
|
|
l->addWidget(lab);
|
2007-11-03 17:30:52 +03:00
|
|
|
l->addWidget(btns);
|
|
|
|
dialog.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::doInterrupt()
|
|
|
|
{
|
2007-11-13 01:41:15 +03:00
|
|
|
this->enterState(Interrupting);
|
2007-11-07 19:31:55 +03:00
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"interrupt", Qt::QueuedConnection);
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::doSourceBrowse()
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
QString dir = QFileDialog::getExistingDirectory(this,
|
2007-11-03 17:30:52 +03:00
|
|
|
tr("Enter Path to Source"), this->SourceDirectory->text());
|
2007-11-02 18:50:17 +03:00
|
|
|
if(!dir.isEmpty())
|
|
|
|
{
|
2008-04-08 03:19:50 +04:00
|
|
|
this->setSourceDirectory(dir);
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::updateSourceDirectory(const QString& dir)
|
|
|
|
{
|
2007-11-04 02:48:59 +03:00
|
|
|
if(this->SourceDirectory->text() != dir)
|
|
|
|
{
|
2008-02-15 03:58:31 +03:00
|
|
|
this->SourceDirectory->blockSignals(true);
|
|
|
|
this->SourceDirectory->setText(dir);
|
|
|
|
this->SourceDirectory->blockSignals(false);
|
2007-11-04 02:48:59 +03:00
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
2008-04-08 03:19:50 +04:00
|
|
|
void CMakeSetupDialog::updateBinaryDirectory(const QString& dir)
|
|
|
|
{
|
|
|
|
if(this->BinaryDirectory->currentText() != dir)
|
|
|
|
{
|
|
|
|
this->BinaryDirectory->blockSignals(true);
|
|
|
|
this->BinaryDirectory->setEditText(dir);
|
|
|
|
this->BinaryDirectory->blockSignals(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-02 18:50:17 +03:00
|
|
|
void CMakeSetupDialog::doBinaryBrowse()
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
QString dir = QFileDialog::getExistingDirectory(this,
|
2007-11-03 17:30:52 +03:00
|
|
|
tr("Enter Path to Build"), this->BinaryDirectory->currentText());
|
2007-11-05 21:20:54 +03:00
|
|
|
if(!dir.isEmpty() && dir != this->BinaryDirectory->currentText())
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2008-04-08 03:19:50 +04:00
|
|
|
this->setBinaryDirectory(dir);
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::setBinaryDirectory(const QString& dir)
|
2007-11-07 18:09:02 +03:00
|
|
|
{
|
|
|
|
this->BinaryDirectory->setEditText(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::onSourceDirectoryChanged(const QString& dir)
|
|
|
|
{
|
2008-02-25 23:07:38 +03:00
|
|
|
this->Output->clear();
|
2007-11-07 18:09:02 +03:00
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"setSourceDirectory", Qt::QueuedConnection, Q_ARG(QString, dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::onBinaryDirectoryChanged(const QString& dir)
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2009-09-23 02:29:35 +04:00
|
|
|
QString title = QString(tr("CMake %1 - %2"));
|
|
|
|
title = title.arg(cmVersion::GetCMakeVersion());
|
|
|
|
title = title.arg(dir);
|
|
|
|
this->setWindowTitle(title);
|
|
|
|
|
2007-11-09 23:18:49 +03:00
|
|
|
this->CacheModified = false;
|
2007-11-05 21:20:54 +03:00
|
|
|
this->CacheValues->cacheModel()->clear();
|
2009-07-17 22:38:36 +04:00
|
|
|
qobject_cast<QCMakeCacheModelDelegate*>(this->CacheValues->itemDelegate())->clearChanges();
|
2007-11-05 21:20:54 +03:00
|
|
|
this->Output->clear();
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"setBinaryDirectory", Qt::QueuedConnection, Q_ARG(QString, dir));
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
void CMakeSetupDialog::setSourceDirectory(const QString& dir)
|
|
|
|
{
|
|
|
|
this->SourceDirectory->setText(dir);
|
|
|
|
}
|
|
|
|
|
2007-11-07 19:31:55 +03:00
|
|
|
void CMakeSetupDialog::showProgress(const QString& /*msg*/, float percent)
|
2007-11-02 18:50:17 +03:00
|
|
|
{
|
2010-12-18 05:04:57 +03:00
|
|
|
percent = (percent * ProgressFactor) + ProgressOffset;
|
2007-11-03 17:30:52 +03:00
|
|
|
this->ProgressBar->setValue(qRound(percent * 100));
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
2008-04-15 00:15:28 +04:00
|
|
|
|
2009-09-23 21:09:56 +04:00
|
|
|
void CMakeSetupDialog::error(const QString& msg)
|
2007-11-09 23:18:49 +03:00
|
|
|
{
|
2008-04-15 00:15:28 +04:00
|
|
|
this->Output->setCurrentCharFormat(this->ErrorFormat);
|
2009-09-23 21:09:56 +04:00
|
|
|
this->Output->append(msg);
|
2007-11-03 17:30:52 +03:00
|
|
|
}
|
|
|
|
|
2009-09-23 21:09:56 +04:00
|
|
|
void CMakeSetupDialog::message(const QString& msg)
|
2008-02-14 23:06:05 +03:00
|
|
|
{
|
2008-04-15 00:15:28 +04:00
|
|
|
this->Output->setCurrentCharFormat(this->MessageFormat);
|
2009-09-23 21:09:56 +04:00
|
|
|
this->Output->append(msg);
|
2008-02-14 23:06:05 +03:00
|
|
|
}
|
|
|
|
|
2007-11-03 17:30:52 +03:00
|
|
|
void CMakeSetupDialog::setEnabledState(bool enabled)
|
|
|
|
{
|
2007-11-07 03:25:43 +03:00
|
|
|
// disable parts of the GUI during configure/generate
|
2007-11-07 18:09:02 +03:00
|
|
|
this->CacheValues->cacheModel()->setEditEnabled(enabled);
|
2007-11-03 17:30:52 +03:00
|
|
|
this->SourceDirectory->setEnabled(enabled);
|
|
|
|
this->BrowseSourceDirectoryButton->setEnabled(enabled);
|
|
|
|
this->BinaryDirectory->setEnabled(enabled);
|
|
|
|
this->BrowseBinaryDirectoryButton->setEnabled(enabled);
|
2007-11-07 03:25:43 +03:00
|
|
|
this->ReloadCacheAction->setEnabled(enabled);
|
|
|
|
this->DeleteCacheAction->setEnabled(enabled);
|
|
|
|
this->ExitAction->setEnabled(enabled);
|
|
|
|
this->ConfigureAction->setEnabled(enabled);
|
2007-11-13 07:54:49 +03:00
|
|
|
this->AddEntry->setEnabled(enabled);
|
2007-11-10 19:36:09 +03:00
|
|
|
this->RemoveEntry->setEnabled(false); // let selection re-enable it
|
2007-11-02 18:50:17 +03:00
|
|
|
}
|
|
|
|
|
2008-05-16 03:21:01 +04:00
|
|
|
bool CMakeSetupDialog::setupFirstConfigure()
|
2007-11-05 21:20:54 +03:00
|
|
|
{
|
2008-12-16 23:00:17 +03:00
|
|
|
FirstConfigure dialog;
|
2007-11-07 03:25:43 +03:00
|
|
|
|
2008-05-16 03:21:01 +04:00
|
|
|
// initialize dialog and restore saved settings
|
|
|
|
|
|
|
|
// add generators
|
|
|
|
dialog.setGenerators(this->CMakeThread->cmakeInstance()->availableGenerators());
|
|
|
|
|
|
|
|
// restore from settings
|
|
|
|
dialog.loadFromSettings();
|
2008-12-16 23:00:17 +03:00
|
|
|
|
2008-04-02 22:01:37 +04:00
|
|
|
if(dialog.exec() == QDialog::Accepted)
|
|
|
|
{
|
2008-05-16 03:21:01 +04:00
|
|
|
dialog.saveToSettings();
|
|
|
|
this->CMakeThread->cmakeInstance()->setGenerator(dialog.getGenerator());
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-05-16 03:21:01 +04:00
|
|
|
QCMakeCacheModel* m = this->CacheValues->cacheModel();
|
|
|
|
|
|
|
|
if(dialog.compilerSetup())
|
|
|
|
{
|
|
|
|
QString fortranCompiler = dialog.getFortranCompiler();
|
|
|
|
if(!fortranCompiler.isEmpty())
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_Fortran_COMPILER",
|
2008-05-16 03:21:01 +04:00
|
|
|
"Fortran compiler.", fortranCompiler, false);
|
|
|
|
}
|
|
|
|
QString cxxCompiler = dialog.getCXXCompiler();
|
|
|
|
if(!cxxCompiler.isEmpty())
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_CXX_COMPILER",
|
2008-05-16 03:21:01 +04:00
|
|
|
"CXX compiler.", cxxCompiler, false);
|
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-05-16 03:21:01 +04:00
|
|
|
QString cCompiler = dialog.getCCompiler();
|
|
|
|
if(!cCompiler.isEmpty())
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_C_COMPILER",
|
2008-05-16 03:21:01 +04:00
|
|
|
"C compiler.", cCompiler, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(dialog.crossCompilerSetup())
|
|
|
|
{
|
2008-12-16 23:00:17 +03:00
|
|
|
QString fortranCompiler = dialog.getFortranCompiler();
|
|
|
|
if(!fortranCompiler.isEmpty())
|
2008-05-16 03:21:01 +04:00
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_Fortran_COMPILER",
|
2008-12-16 23:00:17 +03:00
|
|
|
"Fortran compiler.", fortranCompiler, false);
|
2008-05-16 03:21:01 +04:00
|
|
|
}
|
2008-12-16 23:00:17 +03:00
|
|
|
|
|
|
|
QString mode = dialog.getCrossIncludeMode();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::STRING, "CMAKE_FIND_ROOT_PATH_MODE_INCLUDE",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CMake Find Include Mode", mode, false);
|
|
|
|
mode = dialog.getCrossLibraryMode();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::STRING, "CMAKE_FIND_ROOT_PATH_MODE_LIBRARY",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CMake Find Library Mode", mode, false);
|
|
|
|
mode = dialog.getCrossProgramMode();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::STRING, "CMAKE_FIND_ROOT_PATH_MODE_PROGRAM",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CMake Find Program Mode", mode, false);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-12-16 23:00:17 +03:00
|
|
|
QString rootPath = dialog.getCrossRoot();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::PATH, "CMAKE_FIND_ROOT_PATH",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CMake Find Root Path", rootPath, false);
|
|
|
|
|
|
|
|
QString systemName = dialog.getSystemName();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::STRING, "CMAKE_SYSTEM_NAME",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CMake System Name", systemName, false);
|
|
|
|
QString cxxCompiler = dialog.getCXXCompiler();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_CXX_COMPILER",
|
2008-12-16 23:00:17 +03:00
|
|
|
"CXX compiler.", cxxCompiler, false);
|
|
|
|
QString cCompiler = dialog.getCCompiler();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_C_COMPILER",
|
2008-12-16 23:00:17 +03:00
|
|
|
"C compiler.", cCompiler, false);
|
|
|
|
}
|
|
|
|
else if(dialog.crossCompilerToolChainFile())
|
|
|
|
{
|
|
|
|
QString toolchainFile = dialog.getCrossCompilerToolChainFile();
|
2010-09-23 23:47:06 +04:00
|
|
|
m->insertProperty(QCMakeProperty::FILEPATH, "CMAKE_TOOLCHAIN_FILE",
|
2008-12-16 23:00:17 +03:00
|
|
|
"Cross Compile ToolChain File", toolchainFile, false);
|
2008-05-16 03:21:01 +04:00
|
|
|
}
|
2008-04-02 22:01:37 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2007-11-05 21:20:54 +03:00
|
|
|
}
|
2007-11-06 08:02:08 +03:00
|
|
|
|
|
|
|
void CMakeSetupDialog::updateGeneratorLabel(const QString& gen)
|
|
|
|
{
|
2007-11-06 08:04:37 +03:00
|
|
|
QString str = tr("Current Generator: ");
|
2007-11-06 08:02:08 +03:00
|
|
|
if(gen.isEmpty())
|
|
|
|
{
|
|
|
|
str += tr("None");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
str += gen;
|
|
|
|
}
|
|
|
|
this->Generator->setText(str);
|
|
|
|
}
|
|
|
|
|
2007-11-06 09:16:11 +03:00
|
|
|
void CMakeSetupDialog::doReloadCache()
|
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"reloadCache", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::doDeleteCache()
|
2010-09-23 23:47:06 +04:00
|
|
|
{
|
2008-02-14 17:14:04 +03:00
|
|
|
QString title = tr("Delete Cache");
|
2009-09-23 21:09:56 +04:00
|
|
|
QString msg = "Are you sure you want to delete the cache?";
|
2008-02-14 17:14:04 +03:00
|
|
|
QMessageBox::StandardButton btn;
|
2010-09-23 23:47:06 +04:00
|
|
|
btn = QMessageBox::information(this, title, msg,
|
2008-02-14 17:14:04 +03:00
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
|
|
|
if(btn == QMessageBox::No)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-11-06 09:16:11 +03:00
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
2008-02-14 17:14:04 +03:00
|
|
|
"deleteCache", Qt::QueuedConnection);
|
2007-11-06 09:16:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::doAbout()
|
|
|
|
{
|
2009-03-30 18:56:43 +04:00
|
|
|
QString msg = "CMake %1\n"
|
|
|
|
"Using Qt %2\n"
|
|
|
|
"www.cmake.org";
|
|
|
|
|
|
|
|
msg = msg.arg(cmVersion::GetCMakeVersion());
|
|
|
|
msg = msg.arg(qVersion());
|
2007-11-06 09:16:11 +03:00
|
|
|
|
|
|
|
QDialog dialog;
|
2008-02-01 18:41:29 +03:00
|
|
|
dialog.setWindowTitle(tr("About"));
|
2007-11-06 09:16:11 +03:00
|
|
|
QVBoxLayout* l = new QVBoxLayout(&dialog);
|
|
|
|
QLabel* lab = new QLabel(&dialog);
|
|
|
|
l->addWidget(lab);
|
|
|
|
lab->setText(msg);
|
|
|
|
lab->setWordWrap(true);
|
|
|
|
QDialogButtonBox* btns = new QDialogButtonBox(QDialogButtonBox::Ok,
|
|
|
|
Qt::Horizontal, &dialog);
|
|
|
|
QObject::connect(btns, SIGNAL(accepted()), &dialog, SLOT(accept()));
|
|
|
|
l->addWidget(btns);
|
|
|
|
dialog.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::setExitAfterGenerate(bool b)
|
|
|
|
{
|
2007-11-07 03:25:43 +03:00
|
|
|
this->ExitAfterGenerate = b;
|
2007-11-06 09:16:11 +03:00
|
|
|
}
|
|
|
|
|
2007-11-07 03:25:43 +03:00
|
|
|
void CMakeSetupDialog::addBinaryPath(const QString& path)
|
|
|
|
{
|
|
|
|
QString cleanpath = QDir::cleanPath(path);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
// update UI
|
|
|
|
this->BinaryDirectory->blockSignals(true);
|
2007-11-07 03:25:43 +03:00
|
|
|
int idx = this->BinaryDirectory->findText(cleanpath);
|
|
|
|
if(idx != -1)
|
|
|
|
{
|
|
|
|
this->BinaryDirectory->removeItem(idx);
|
|
|
|
}
|
|
|
|
this->BinaryDirectory->insertItem(0, cleanpath);
|
|
|
|
this->BinaryDirectory->setCurrentIndex(0);
|
2007-11-07 05:27:45 +03:00
|
|
|
this->BinaryDirectory->blockSignals(false);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
// save to registry
|
|
|
|
QStringList buildPaths = this->loadBuildPaths();
|
|
|
|
buildPaths.removeAll(cleanpath);
|
2007-11-07 03:25:43 +03:00
|
|
|
buildPaths.prepend(cleanpath);
|
2007-11-07 05:27:45 +03:00
|
|
|
this->saveBuildPaths(buildPaths);
|
2007-11-07 03:25:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::dragEnterEvent(QDragEnterEvent* e)
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
if(!(this->CurrentState == ReadyConfigure ||
|
2007-12-12 21:25:24 +03:00
|
|
|
this->CurrentState == ReadyGenerate))
|
2007-11-07 06:27:09 +03:00
|
|
|
{
|
|
|
|
e->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
const QMimeData* dat = e->mimeData();
|
|
|
|
QList<QUrl> urls = dat->urls();
|
2007-11-07 03:25:43 +03:00
|
|
|
QString file = urls.count() ? urls[0].toLocalFile() : QString();
|
2010-09-23 23:47:06 +04:00
|
|
|
if(!file.isEmpty() &&
|
2007-11-07 03:25:43 +03:00
|
|
|
(file.endsWith("CMakeCache.txt", Qt::CaseInsensitive) ||
|
|
|
|
file.endsWith("CMakeLists.txt", Qt::CaseInsensitive) ) )
|
|
|
|
{
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
e->ignore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::dropEvent(QDropEvent* e)
|
|
|
|
{
|
2010-09-23 23:47:06 +04:00
|
|
|
if(!(this->CurrentState == ReadyConfigure ||
|
2007-12-12 21:25:24 +03:00
|
|
|
this->CurrentState == ReadyGenerate))
|
2007-11-07 06:27:09 +03:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-11-13 01:41:15 +03:00
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
const QMimeData* dat = e->mimeData();
|
|
|
|
QList<QUrl> urls = dat->urls();
|
2007-11-07 03:25:43 +03:00
|
|
|
QString file = urls.count() ? urls[0].toLocalFile() : QString();
|
|
|
|
if(file.endsWith("CMakeCache.txt", Qt::CaseInsensitive))
|
|
|
|
{
|
|
|
|
QFileInfo info(file);
|
2007-11-07 05:51:08 +03:00
|
|
|
if(this->CMakeThread->cmakeInstance()->binaryDirectory() != info.absolutePath())
|
|
|
|
{
|
|
|
|
this->setBinaryDirectory(info.absolutePath());
|
|
|
|
}
|
2007-11-07 03:25:43 +03:00
|
|
|
}
|
|
|
|
else if(file.endsWith("CMakeLists.txt", Qt::CaseInsensitive))
|
|
|
|
{
|
|
|
|
QFileInfo info(file);
|
2007-11-07 05:51:08 +03:00
|
|
|
if(this->CMakeThread->cmakeInstance()->binaryDirectory() != info.absolutePath())
|
|
|
|
{
|
|
|
|
this->setSourceDirectory(info.absolutePath());
|
|
|
|
this->setBinaryDirectory(info.absolutePath());
|
|
|
|
}
|
2007-11-07 03:25:43 +03:00
|
|
|
}
|
|
|
|
}
|
2007-11-02 18:50:17 +03:00
|
|
|
|
2007-11-07 05:27:45 +03:00
|
|
|
QStringList CMakeSetupDialog::loadBuildPaths()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
|
|
|
|
|
|
|
QStringList buildPaths;
|
|
|
|
for(int i=0; i<10; i++)
|
2010-09-23 23:47:06 +04:00
|
|
|
{
|
2007-11-07 05:27:45 +03:00
|
|
|
QString p = settings.value(QString("WhereBuild%1").arg(i)).toString();
|
|
|
|
if(!p.isEmpty())
|
|
|
|
{
|
|
|
|
buildPaths.append(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buildPaths;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::saveBuildPaths(const QStringList& paths)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
|
|
|
|
|
|
|
int num = paths.count();
|
|
|
|
if(num > 10)
|
|
|
|
{
|
|
|
|
num = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0; i<num; i++)
|
2010-09-23 23:47:06 +04:00
|
|
|
{
|
2007-11-07 05:27:45 +03:00
|
|
|
settings.setValue(QString("WhereBuild%1").arg(i), paths[i]);
|
|
|
|
}
|
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-09 23:18:49 +03:00
|
|
|
void CMakeSetupDialog::setCacheModified()
|
|
|
|
{
|
|
|
|
this->CacheModified = true;
|
2007-11-13 01:41:15 +03:00
|
|
|
this->enterState(ReadyConfigure);
|
2007-11-09 23:18:49 +03:00
|
|
|
}
|
|
|
|
|
2007-11-10 19:36:09 +03:00
|
|
|
void CMakeSetupDialog::removeSelectedCacheEntries()
|
|
|
|
{
|
|
|
|
QModelIndexList idxs = this->CacheValues->selectionModel()->selectedRows();
|
|
|
|
QList<QPersistentModelIndex> pidxs;
|
|
|
|
foreach(QModelIndex i, idxs)
|
|
|
|
{
|
|
|
|
pidxs.append(i);
|
|
|
|
}
|
|
|
|
foreach(QPersistentModelIndex pi, pidxs)
|
|
|
|
{
|
2008-06-10 08:17:00 +04:00
|
|
|
this->CacheValues->model()->removeRow(pi.row(), pi.parent());
|
2007-11-10 19:36:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeSetupDialog::selectionChanged()
|
|
|
|
{
|
|
|
|
QModelIndexList idxs = this->CacheValues->selectionModel()->selectedRows();
|
2010-09-23 23:47:06 +04:00
|
|
|
if(idxs.count() &&
|
|
|
|
(this->CurrentState == ReadyConfigure ||
|
2007-11-13 01:41:15 +03:00
|
|
|
this->CurrentState == ReadyGenerate) )
|
2007-11-10 19:36:09 +03:00
|
|
|
{
|
|
|
|
this->RemoveEntry->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->RemoveEntry->setEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2007-11-13 01:41:15 +03:00
|
|
|
void CMakeSetupDialog::enterState(CMakeSetupDialog::State s)
|
|
|
|
{
|
|
|
|
if(s == this->CurrentState)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->CurrentState = s;
|
|
|
|
|
|
|
|
if(s == Interrupting)
|
|
|
|
{
|
2007-11-13 01:51:23 +03:00
|
|
|
this->ConfigureButton->setEnabled(false);
|
|
|
|
this->GenerateButton->setEnabled(false);
|
2007-11-13 01:41:15 +03:00
|
|
|
}
|
|
|
|
else if(s == Configuring)
|
|
|
|
{
|
|
|
|
this->setEnabledState(false);
|
|
|
|
this->GenerateButton->setEnabled(false);
|
|
|
|
this->GenerateAction->setEnabled(false);
|
2008-04-04 00:49:46 +04:00
|
|
|
this->ConfigureButton->setText(tr("&Stop"));
|
2007-11-13 01:41:15 +03:00
|
|
|
}
|
|
|
|
else if(s == Generating)
|
|
|
|
{
|
2007-11-13 01:51:23 +03:00
|
|
|
this->CacheModified = false;
|
2007-11-13 01:41:15 +03:00
|
|
|
this->setEnabledState(false);
|
|
|
|
this->ConfigureButton->setEnabled(false);
|
|
|
|
this->GenerateAction->setEnabled(false);
|
2008-04-04 00:49:46 +04:00
|
|
|
this->GenerateButton->setText(tr("&Stop"));
|
2007-11-13 01:41:15 +03:00
|
|
|
}
|
|
|
|
else if(s == ReadyConfigure)
|
|
|
|
{
|
|
|
|
this->setEnabledState(true);
|
2010-12-18 05:04:57 +03:00
|
|
|
this->GenerateButton->setEnabled(true);
|
|
|
|
this->GenerateAction->setEnabled(true);
|
2007-11-13 01:41:15 +03:00
|
|
|
this->ConfigureButton->setEnabled(true);
|
2008-04-04 00:49:46 +04:00
|
|
|
this->ConfigureButton->setText(tr("&Configure"));
|
|
|
|
this->GenerateButton->setText(tr("&Generate"));
|
2007-11-13 01:41:15 +03:00
|
|
|
}
|
|
|
|
else if(s == ReadyGenerate)
|
|
|
|
{
|
|
|
|
this->setEnabledState(true);
|
|
|
|
this->GenerateButton->setEnabled(true);
|
|
|
|
this->GenerateAction->setEnabled(true);
|
|
|
|
this->ConfigureButton->setEnabled(true);
|
2008-04-04 00:49:46 +04:00
|
|
|
this->ConfigureButton->setText(tr("&Configure"));
|
|
|
|
this->GenerateButton->setText(tr("&Generate"));
|
2007-11-13 01:41:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-13 07:54:49 +03:00
|
|
|
void CMakeSetupDialog::addCacheEntry()
|
|
|
|
{
|
|
|
|
QDialog dialog(this);
|
|
|
|
dialog.resize(400, 200);
|
2008-02-01 18:41:29 +03:00
|
|
|
dialog.setWindowTitle(tr("Add Cache Entry"));
|
2007-11-13 07:54:49 +03:00
|
|
|
QVBoxLayout* l = new QVBoxLayout(&dialog);
|
|
|
|
AddCacheEntry* w = new AddCacheEntry(&dialog);
|
|
|
|
QDialogButtonBox* btns = new QDialogButtonBox(
|
|
|
|
QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
|
|
|
|
Qt::Horizontal, &dialog);
|
|
|
|
QObject::connect(btns, SIGNAL(accepted()), &dialog, SLOT(accept()));
|
|
|
|
QObject::connect(btns, SIGNAL(rejected()), &dialog, SLOT(reject()));
|
|
|
|
l->addWidget(w);
|
|
|
|
l->addStretch();
|
|
|
|
l->addWidget(btns);
|
|
|
|
if(QDialog::Accepted == dialog.exec())
|
|
|
|
{
|
|
|
|
QCMakeCacheModel* m = this->CacheValues->cacheModel();
|
2008-06-10 08:17:00 +04:00
|
|
|
m->insertProperty(w->type(), w->name(), w->description(), w->value(), false);
|
2007-11-13 07:54:49 +03:00
|
|
|
}
|
|
|
|
}
|
2007-11-07 05:27:45 +03:00
|
|
|
|
2008-02-15 02:18:10 +03:00
|
|
|
void CMakeSetupDialog::startSearch()
|
|
|
|
{
|
|
|
|
this->Search->setFocus(Qt::OtherFocusReason);
|
|
|
|
this->Search->selectAll();
|
|
|
|
}
|
|
|
|
|
2008-04-03 01:41:24 +04:00
|
|
|
void CMakeSetupDialog::setDebugOutput(bool flag)
|
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod(this->CMakeThread->cmakeInstance(),
|
|
|
|
"setDebugOutput", Qt::QueuedConnection, Q_ARG(bool, flag));
|
|
|
|
}
|
2008-02-15 02:18:10 +03:00
|
|
|
|
2010-04-27 02:06:21 +04:00
|
|
|
void CMakeSetupDialog::setGroupedView(bool v)
|
2008-06-13 19:19:53 +04:00
|
|
|
{
|
2010-04-27 02:06:21 +04:00
|
|
|
this->CacheValues->cacheModel()->setViewType(v ? QCMakeCacheModel::GroupView : QCMakeCacheModel::FlatView);
|
|
|
|
this->CacheValues->setRootIsDecorated(v);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-06-13 19:19:53 +04:00
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
2010-04-27 02:06:21 +04:00
|
|
|
settings.setValue("GroupView", v);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2008-06-13 19:19:53 +04:00
|
|
|
}
|
|
|
|
|
2010-04-27 02:06:21 +04:00
|
|
|
void CMakeSetupDialog::setAdvancedView(bool v)
|
|
|
|
{
|
|
|
|
this->CacheValues->setShowAdvanced(v);
|
2010-09-23 23:48:07 +04:00
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("Settings/StartPath");
|
|
|
|
settings.setValue("AdvancedView", v);
|
2010-04-27 02:06:21 +04:00
|
|
|
}
|
|
|
|
|
2009-07-17 22:38:36 +04:00
|
|
|
void CMakeSetupDialog::showUserChanges()
|
|
|
|
{
|
|
|
|
QSet<QCMakeProperty> changes =
|
|
|
|
qobject_cast<QCMakeCacheModelDelegate*>(this->CacheValues->itemDelegate())->changes();
|
|
|
|
|
|
|
|
QDialog dialog(this);
|
|
|
|
dialog.setWindowTitle(tr("My Changes"));
|
|
|
|
dialog.resize(600, 400);
|
|
|
|
QVBoxLayout* l = new QVBoxLayout(&dialog);
|
|
|
|
QTextEdit* textedit = new QTextEdit(&dialog);
|
|
|
|
textedit->setReadOnly(true);
|
|
|
|
l->addWidget(textedit);
|
2009-07-17 22:51:31 +04:00
|
|
|
QDialogButtonBox* btns = new QDialogButtonBox(QDialogButtonBox::Close,
|
2009-07-17 22:38:36 +04:00
|
|
|
Qt::Horizontal, &dialog);
|
2009-07-17 22:51:31 +04:00
|
|
|
QObject::connect(btns, SIGNAL(rejected()), &dialog, SLOT(accept()));
|
2009-07-17 22:38:36 +04:00
|
|
|
l->addWidget(btns);
|
|
|
|
|
|
|
|
QString command;
|
|
|
|
QString cache;
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2009-07-17 22:38:36 +04:00
|
|
|
foreach(QCMakeProperty prop, changes)
|
|
|
|
{
|
|
|
|
QString type;
|
|
|
|
switch(prop.Type)
|
|
|
|
{
|
|
|
|
case QCMakeProperty::BOOL:
|
|
|
|
type = "BOOL";
|
|
|
|
break;
|
|
|
|
case QCMakeProperty::PATH:
|
|
|
|
type = "PATH";
|
|
|
|
break;
|
|
|
|
case QCMakeProperty::FILEPATH:
|
|
|
|
type = "FILEPATH";
|
|
|
|
break;
|
|
|
|
case QCMakeProperty::STRING:
|
|
|
|
type = "STRING";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QString value;
|
|
|
|
if(prop.Type == QCMakeProperty::BOOL)
|
|
|
|
{
|
|
|
|
value = prop.Value.toBool() ? "1" : "0";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
value = prop.Value.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString line("%1:%2=");
|
|
|
|
line = line.arg(prop.Key);
|
|
|
|
line = line.arg(type);
|
|
|
|
|
|
|
|
command += QString("-D%1\"%2\" ").arg(line).arg(value);
|
|
|
|
cache += QString("%1%2\n").arg(line).arg(value);
|
|
|
|
}
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2009-07-17 22:38:36 +04:00
|
|
|
textedit->append(tr("Commandline options:"));
|
|
|
|
textedit->append(command);
|
|
|
|
textedit->append("\n");
|
|
|
|
textedit->append(tr("Cache file:"));
|
|
|
|
textedit->append(cache);
|
2010-09-23 23:47:06 +04:00
|
|
|
|
2009-07-17 22:38:36 +04:00
|
|
|
dialog.exec();
|
|
|
|
}
|
|
|
|
|
2009-09-05 00:43:07 +04:00
|
|
|
void CMakeSetupDialog::setSearchFilter(const QString& str)
|
|
|
|
{
|
|
|
|
this->CacheValues->selectionModel()->clear();
|
|
|
|
this->CacheValues->setSearchFilter(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|