mirror of
https://github.com/ioquake/launch.git
synced 2024-11-12 23:44:23 +00:00
36 lines
550 B
C++
36 lines
550 B
C++
#ifndef INSTALLWIZARD_H
|
|
#define INSTALLWIZARD_H
|
|
|
|
#include <QWizard>
|
|
|
|
namespace Ui {
|
|
class InstallWizard;
|
|
}
|
|
|
|
class Settings;
|
|
|
|
class InstallWizard : public QWizard
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InstallWizard(QWidget *parent, Settings *settings);
|
|
~InstallWizard();
|
|
|
|
enum
|
|
{
|
|
Page_InstallType,
|
|
Page_Locate,
|
|
Page_Patch,
|
|
Page_Finished
|
|
};
|
|
|
|
private slots:
|
|
void on_InstallWizard_customButtonClicked(int which);
|
|
|
|
private:
|
|
Ui::InstallWizard *ui;
|
|
Settings *settings;
|
|
};
|
|
|
|
#endif // INSTALLWIZARD_H
|