mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
b10a817f7e
Remove some useless includes from the launcher See merge request OpenMW/openmw!775 (cherry picked from commit a84bd643b334eb6ac715681c497184ac22212ced) d3fff8cf Remove some useless includes from the launcher
35 lines
572 B
C++
35 lines
572 B
C++
#ifndef PLAYPAGE_H
|
|
#define PLAYPAGE_H
|
|
|
|
#include "ui_playpage.h"
|
|
|
|
class QComboBox;
|
|
class QPushButton;
|
|
class QAbstractItemModel;
|
|
|
|
namespace Launcher
|
|
{
|
|
class PlayPage : public QWidget, private Ui::PlayPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PlayPage(QWidget *parent = nullptr);
|
|
void setProfilesModel(QAbstractItemModel *model);
|
|
|
|
signals:
|
|
void signalProfileChanged(int index);
|
|
void playButtonClicked();
|
|
|
|
public slots:
|
|
void setProfilesIndex(int index);
|
|
|
|
private slots:
|
|
void slotPlayClicked();
|
|
|
|
|
|
|
|
};
|
|
}
|
|
#endif
|