1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-29 08:45:36 +00:00
openmw/apps/wizard/installationtargetpage.hpp

33 lines
582 B
C++

#ifndef INSTALLATIONTARGETPAGE_HPP
#define INSTALLATIONTARGETPAGE_HPP
#include <QWizardPage>
#include "ui_installationtargetpage.h"
namespace Wizard
{
class MainWizard;
class InstallationTargetPage : public QWizardPage, private Ui::InstallationTargetPage
{
Q_OBJECT
public:
InstallationTargetPage(MainWizard *wizard);
int nextId() const;
private slots:
void on_browseButton_clicked();
private:
MainWizard *mWizard;
protected:
void initializePage();
};
}
#endif // INSTALLATIONTARGETPAGE_HPP