summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/QCMake.cxx
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2007-11-07 00:25:43 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2007-11-07 00:25:43 (GMT)
commit1e91100599d88ba12dd7a91db17e47d8d9110914 (patch)
tree6f5e53337315dd750981bcdead388fffb6806efb /Source/QtDialog/QCMake.cxx
parent433a9149108c88d4fb715331f97ee079fa16fe10 (diff)
downloadCMake-1e91100599d88ba12dd7a91db17e47d8d9110914.zip
CMake-1e91100599d88ba12dd7a91db17e47d8d9110914.tar.gz
CMake-1e91100599d88ba12dd7a91db17e47d8d9110914.tar.bz2
ENH: Disable menu/buttons when doing configure.
Also disable generate until configure is done. Save more settings (last 10 binary directories, exit after generate, last generator) Some UI tweaks for better layout. Support drag & drop of CMakeLists.txt/CMakeCache.txt files.
Diffstat (limited to 'Source/QtDialog/QCMake.cxx')
-rw-r--r--Source/QtDialog/QCMake.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx
index 0fa7441..e826527 100644
--- a/Source/QtDialog/QCMake.cxx
+++ b/Source/QtDialog/QCMake.cxx
@@ -238,6 +238,16 @@ void QCMake::errorCallback(const char* msg, const char* title,
emit self->error(title, msg, &stop);
}
+QString QCMake::binaryDirectory() const
+{
+ return this->BinaryDirectory;
+}
+
+QString QCMake::sourceDirectory() const
+{
+ return this->SourceDirectory;
+}
+
QString QCMake::generator() const
{
return this->Generator;