You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
586 B
C++
37 lines
586 B
C++
#ifndef PLAYPAGE_H
|
|
#define PLAYPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
#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 = 0);
|
|
void setProfilesModel(QAbstractItemModel *model);
|
|
|
|
signals:
|
|
void signalProfileChanged(int index);
|
|
void playButtonClicked();
|
|
|
|
public slots:
|
|
void setProfilesIndex(int index);
|
|
|
|
private slots:
|
|
void slotPlayClicked();
|
|
|
|
|
|
|
|
};
|
|
}
|
|
#endif
|