summaryrefslogtreecommitdiff
path: root/Source/QtDialog/QMacInstallDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/QtDialog/QMacInstallDialog.h')
-rw-r--r--Source/QtDialog/QMacInstallDialog.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/QtDialog/QMacInstallDialog.h b/Source/QtDialog/QMacInstallDialog.h
new file mode 100644
index 000000000..efe67dfaf
--- /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