diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-19 19:06:10 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-19 19:06:10 (GMT) |
commit | 4a9517a688d0bff682b538a272794000de56641d (patch) | |
tree | 0014a6f291c96571b8ff2d648404c39d8b19e55c /Source/QtDialog/QMacInstallDialog.h | |
parent | a3c2d3280234fb5883f3e2ee0a3b980fe77f9b90 (diff) | |
download | CMake-4a9517a688d0bff682b538a272794000de56641d.zip CMake-4a9517a688d0bff682b538a272794000de56641d.tar.gz CMake-4a9517a688d0bff682b538a272794000de56641d.tar.bz2 |
ENH: add mac install symlink option to dialog
Diffstat (limited to 'Source/QtDialog/QMacInstallDialog.h')
-rw-r--r-- | Source/QtDialog/QMacInstallDialog.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/QtDialog/QMacInstallDialog.h b/Source/QtDialog/QMacInstallDialog.h new file mode 100644 index 0000000..efe67df --- /dev/null +++ b/Source/QtDialog/QMacInstallDialog.h @@ -0,0 +1,20 @@ +#ifndef QMacInstallDialog_h +#define QMacInstallDialog_h +#include <QDialog> + +class QMacInstallDialog : public QDialog +{ + Q_OBJECT; +public: + QMacInstallDialog(QWidget*w); + ~QMacInstallDialog(); +private slots: + void ShowBrowser(); + void SkipInstall(); + void DoInstall(); +private: + class QMacInstallDialogInternals; + QMacInstallDialogInternals* Internals; +}; + +#endif |