summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/CMakeFirstConfigure.h
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2008-12-16 20:00:17 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2008-12-16 20:00:17 (GMT)
commit64b377d7074a4c070384630938c2d317348df165 (patch)
tree4f9fa3a5e57969aebdf84c0dc81bc63f95f4a0ee /Source/QtDialog/CMakeFirstConfigure.h
parent2d842b6798cb51bc8c2006b708c348af8720fca6 (diff)
downloadCMake-64b377d7074a4c070384630938c2d317348df165.zip
CMake-64b377d7074a4c070384630938c2d317348df165.tar.gz
CMake-64b377d7074a4c070384630938c2d317348df165.tar.bz2
ENH:
For bug #7191. Improvements to the dialog that sets up the first configure. Fixing the large size of it by breaking it up into a wizard. Also incorporated suggestions from bug report.
Diffstat (limited to 'Source/QtDialog/CMakeFirstConfigure.h')
-rw-r--r--Source/QtDialog/CMakeFirstConfigure.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/Source/QtDialog/CMakeFirstConfigure.h b/Source/QtDialog/CMakeFirstConfigure.h
deleted file mode 100644
index 2cb6220..0000000
--- a/Source/QtDialog/CMakeFirstConfigure.h
+++ /dev/null
@@ -1,48 +0,0 @@
-
-#ifndef CMakeFirstConfigure_h
-#define CMakeFirstConfigure_h
-
-#include <QDialog>
-#include "ui_CMakeFirstConfigure.h"
-
-class CMakeFirstConfigure : public QDialog
-{
- Q_OBJECT
-public:
- CMakeFirstConfigure();
- ~CMakeFirstConfigure();
-
- void setGenerators(const QStringList& gens);
- QString getGenerator() const;
-
- bool defaultSetup() const;
- bool compilerSetup() const;
- bool crossCompilerSetup() const;
- QString crossCompilerToolChainFile() const;
-
- QString getCCompiler() const;
- QString getCXXCompiler() const;
- QString getFortranCompiler() const;
-
- QString getSystemName() const;
- QString getSystemVersion() const;
- QString getSystemProcessor() const;
-
- QString getCrossRoot() const;
- QString getCrossProgramMode() const;
- QString getCrossLibraryMode() const;
- QString getCrossIncludeMode() const;
-
- void loadFromSettings();
- void saveToSettings();
-
-protected slots:
- void updatePage();
- void updateToolChainPage();
-
-protected:
- Ui::CMakeFirstConfigure UI;
-};
-
-#endif // CMakeFirstConfigure_h
-