mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
#pragma once is a widely supported compiler pragma, even though it is not part of the C++ standard. Many of the issues keeping #pragma once from being standardized (distributed filesystems, build farms, hard links, etc.) do not apply to CMake - it is easy to build CMake on a single machine. CMake also does not install any header files which can be consumed by other projects (though cmCPluginAPI.h has been deliberately omitted from this conversion in case anyone is still using it.) Finally, #pragma once has been required to build CMake since at least August 2017 (7f29bbe6enabled server mode unconditionally, which had been using #pragma once since September 2016 (b13d3e0d)). The fact that we now require C++11 filters out old compilers, and it is unlikely that there is a compiler which supports C++11 but does not support #pragma once.
148 lines
3.4 KiB
C++
148 lines
3.4 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "QCMake.h"
|
|
#include <QEventLoop>
|
|
#include <QMainWindow>
|
|
#include <QThread>
|
|
|
|
#include "ui_CMakeSetupDialog.h"
|
|
|
|
class QCMakeThread;
|
|
class CMakeCacheModel;
|
|
class QProgressBar;
|
|
class QToolButton;
|
|
|
|
#ifdef QT_WINEXTRAS
|
|
class QWinTaskbarButton;
|
|
#endif
|
|
|
|
/// Qt user interface for CMake
|
|
class CMakeSetupDialog
|
|
: public QMainWindow
|
|
, public Ui::CMakeSetupDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CMakeSetupDialog();
|
|
~CMakeSetupDialog();
|
|
|
|
public slots:
|
|
void setBinaryDirectory(const QString& dir);
|
|
void setSourceDirectory(const QString& dir);
|
|
|
|
protected slots:
|
|
void initialize();
|
|
void doConfigure();
|
|
void doGenerate();
|
|
void doOpenProject();
|
|
void doInstallForCommandLine();
|
|
void doHelp();
|
|
void doAbout();
|
|
void doInterrupt();
|
|
void error(const QString& message);
|
|
void message(const QString& message);
|
|
|
|
void doSourceBrowse();
|
|
void doBinaryBrowse();
|
|
void doReloadCache();
|
|
void doDeleteCache();
|
|
void updateSourceDirectory(const QString& dir);
|
|
void updateBinaryDirectory(const QString& dir);
|
|
void showProgress(const QString& msg, float percent);
|
|
void setEnabledState(bool);
|
|
bool setupFirstConfigure();
|
|
void updateGeneratorLabel(const QString& gen);
|
|
void setExitAfterGenerate(bool);
|
|
void addBinaryPath(const QString&);
|
|
QStringList loadBuildPaths();
|
|
void saveBuildPaths(const QStringList&);
|
|
void onBinaryDirectoryChanged(const QString& dir);
|
|
void onSourceDirectoryChanged(const QString& dir);
|
|
void setCacheModified();
|
|
void removeSelectedCacheEntries();
|
|
void selectionChanged();
|
|
void addCacheEntry();
|
|
void startSearch();
|
|
void setDebugOutput(bool);
|
|
void setAdvancedView(bool);
|
|
void setGroupedView(bool);
|
|
void showUserChanges();
|
|
void setSearchFilter(const QString& str);
|
|
bool prepareConfigure();
|
|
bool doConfigureInternal();
|
|
bool doGenerateInternal();
|
|
void exitLoop(int);
|
|
void doOutputContextMenu(QPoint pt);
|
|
void doOutputFindDialog();
|
|
void doOutputFindNext(bool directionForward = true);
|
|
void doOutputFindPrev();
|
|
void doOutputErrorNext();
|
|
void doRegexExplorerDialog();
|
|
/// display the modal warning messages dialog window
|
|
void doWarningMessagesDialog();
|
|
|
|
protected:
|
|
enum State
|
|
{
|
|
Interrupting,
|
|
ReadyConfigure,
|
|
ReadyGenerate,
|
|
Configuring,
|
|
Generating
|
|
};
|
|
void enterState(State s);
|
|
|
|
void closeEvent(QCloseEvent*);
|
|
void dragEnterEvent(QDragEnterEvent*);
|
|
void dropEvent(QDropEvent*);
|
|
|
|
QCMakeThread* CMakeThread;
|
|
bool ExitAfterGenerate;
|
|
bool CacheModified;
|
|
bool ConfigureNeeded;
|
|
QAction* ReloadCacheAction;
|
|
QAction* DeleteCacheAction;
|
|
QAction* ExitAction;
|
|
QAction* ConfigureAction;
|
|
QAction* GenerateAction;
|
|
QAction* WarnUninitializedAction;
|
|
QAction* InstallForCommandLineAction;
|
|
State CurrentState;
|
|
|
|
QTextCharFormat ErrorFormat;
|
|
QTextCharFormat MessageFormat;
|
|
|
|
QStringList AddVariableNames;
|
|
QStringList AddVariableTypes;
|
|
QStringList FindHistory;
|
|
|
|
QEventLoop LocalLoop;
|
|
|
|
#ifdef QT_WINEXTRAS
|
|
QWinTaskbarButton* TaskbarButton;
|
|
#endif
|
|
|
|
float ProgressOffset;
|
|
float ProgressFactor;
|
|
};
|
|
|
|
// QCMake instance on a thread
|
|
class QCMakeThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QCMakeThread(QObject* p);
|
|
QCMake* cmakeInstance() const;
|
|
|
|
signals:
|
|
void cmakeInitialized();
|
|
|
|
protected:
|
|
virtual void run();
|
|
std::unique_ptr<QCMake> CMakeInstance;
|
|
};
|