diff options
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.h')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.h b/Source/QtDialog/CMakeSetupDialog.h index f436481..250be16 100644 --- a/Source/QtDialog/CMakeSetupDialog.h +++ b/Source/QtDialog/CMakeSetupDialog.h @@ -58,14 +58,24 @@ protected slots: void promptForGenerator(); void updateGeneratorLabel(const QString& gen); void setExitAfterGenerate(bool); + void cacheModelDirty(); + void setGenerateEnabled(bool); + void addBinaryPath(const QString&); protected: void closeEvent(QCloseEvent*); + void dragEnterEvent(QDragEnterEvent*); + void dropEvent(QDropEvent*); QCMakeThread* CMakeThread; QProgressBar* ProgressBar; QToolButton* InterruptButton; - bool QuitOnConfigure; + bool ExitAfterGenerate; + QAction* ReloadCacheAction; + QAction* DeleteCacheAction; + QAction* ExitAction; + QAction* ConfigureAction; + QAction* GenerateAction; }; // QCMake instance on a thread |