diff options
author | Julien Jomier <julien.jomier@kitware.com> | 2018-11-17 13:01:23 (GMT) |
---|---|---|
committer | Julien Jomier <julien.jomier@kitware.com> | 2018-11-20 16:16:08 (GMT) |
commit | 9175a378f5d8786a54e35576853e7e6b068f17b0 (patch) | |
tree | 70efe7860c9b4f5447e5db7c80069cacb3ee0bae /Source/QtDialog/CMakeSetupDialog.h | |
parent | 7aa41095fd23d31a4572966ba53ad85f61f5bc99 (diff) | |
download | CMake-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.h | 8 |
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; }; |