mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
35 lines
563 B
C++
35 lines
563 B
C++
#ifndef PLAYPAGE_H
|
|
#define PLAYPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "ui_playpage.h"
|
|
|
|
class QComboBox;
|
|
class QPushButton;
|
|
class QAbstractItemModel;
|
|
|
|
class PlayPage : public QWidget, private Ui::PlayPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PlayPage(QWidget *parent = 0);
|
|
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();
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|