You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
371 B
21 lines
371 B
16 years ago
|
#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
|