1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/wizard/installationtargetpage.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
776 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef INSTALLATIONTARGETPAGE_HPP
#define INSTALLATIONTARGETPAGE_HPP
2022-10-10 11:41:36 +00:00
#include <QWizard>
2013-12-08 20:35:57 +00:00
#include "ui_installationtargetpage.h"
namespace Files
{
struct ConfigurationManager;
}
2013-12-08 20:35:57 +00:00
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class InstallationTargetPage : public QWizardPage, private Ui::InstallationTargetPage
{
Q_OBJECT
public:
InstallationTargetPage(QWidget* parent, const Files::ConfigurationManager& cfg);
2013-12-08 20:35:57 +00:00
int nextId() const override;
bool validatePage() override;
2013-12-08 21:58:29 +00:00
private slots:
void on_browseButton_clicked();
private:
MainWizard* mWizard;
const Files::ConfigurationManager& mCfgMgr;
protected:
void initializePage() override;
2013-12-08 20:35:57 +00:00
};
}
#endif // INSTALLATIONTARGETPAGE_HPP