1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/launcher/playpage.hpp

36 lines
563 B
C++
Raw Normal View History

2011-04-08 00:04:09 +02:00
#ifndef PLAYPAGE_H
#define PLAYPAGE_H
#include <QWidget>
2013-03-03 01:49:41 +01:00
#include "ui_playpage.h"
2011-04-08 00:04:09 +02:00
class QComboBox;
class QPushButton;
2013-03-03 01:49:41 +01:00
class QAbstractItemModel;
2011-04-08 00:04:09 +02:00
2013-03-03 01:49:41 +01:00
class PlayPage : public QWidget, private Ui::PlayPage
2011-04-08 00:04:09 +02:00
{
Q_OBJECT
public:
PlayPage(QWidget *parent = 0);
2013-03-03 01:49:41 +01:00
void setProfilesComboBoxModel(QAbstractItemModel *model);
signals:
void profileChanged(int index);
void playButtonClicked();
public slots:
void setProfilesComboBoxIndex(int index);
private slots:
void slotCurrentIndexChanged(int index);
void slotPlayClicked();
2011-04-24 21:42:56 +02:00
2011-04-24 21:42:56 +02:00
};
2011-04-08 00:04:09 +02:00
2013-03-03 01:49:41 +01:00
#endif