1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-03 22:45:35 +00:00
openmw/apps/wizard/installationtargetpage.hpp

34 lines
582 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef INSTALLATIONTARGETPAGE_HPP
#define INSTALLATIONTARGETPAGE_HPP
#include <QWizardPage>
#include "ui_installationtargetpage.h"
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class InstallationTargetPage : public QWizardPage, private Ui::InstallationTargetPage
{
Q_OBJECT
public:
InstallationTargetPage(MainWizard *wizard);
2013-12-08 20:35:57 +00:00
2013-12-08 21:58:29 +00:00
int nextId() const;
private slots:
void on_browseButton_clicked();
private:
MainWizard *mWizard;
protected:
void initializePage();
2013-12-08 20:35:57 +00:00
};
}
#endif // INSTALLATIONTARGETPAGE_HPP