summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/CMakeSetupDialog.h
diff options
context:
space:
mode:
authorJulien Jomier <julien.jomier@kitware.com>2018-11-17 13:01:23 (GMT)
committerJulien Jomier <julien.jomier@kitware.com>2018-11-20 16:16:08 (GMT)
commit9175a378f5d8786a54e35576853e7e6b068f17b0 (patch)
tree70efe7860c9b4f5447e5db7c80069cacb3ee0bae /Source/QtDialog/CMakeSetupDialog.h
parent7aa41095fd23d31a4572966ba53ad85f61f5bc99 (diff)
downloadCMake-9175a378f5d8786a54e35576853e7e6b068f17b0.zip
CMake-9175a378f5d8786a54e35576853e7e6b068f17b0.tar.gz
CMake-9175a378f5d8786a54e35576853e7e6b068f17b0.tar.bz2
QtDialog: Add windows taskbar progress
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.h')
-rw-r--r--Source/QtDialog/CMakeSetupDialog.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.h b/Source/QtDialog/CMakeSetupDialog.h
index 1cce35c..39c1053 100644
--- a/Source/QtDialog/CMakeSetupDialog.h
+++ b/Source/QtDialog/CMakeSetupDialog.h
@@ -15,6 +15,10 @@ class CMakeCacheModel;
class QProgressBar;
class QToolButton;
+#ifdef QT_WINEXTRAS
+class QWinTaskbarButton;
+#endif
+
/// Qt user interface for CMake
class CMakeSetupDialog
: public QMainWindow
@@ -118,6 +122,10 @@ protected:
QEventLoop LocalLoop;
+#ifdef QT_WINEXTRAS
+ QWinTaskbarButton* TaskbarButton;
+#endif
+
float ProgressOffset;
float ProgressFactor;
};