2011-04-07 22:04:09 +00:00
|
|
|
#ifndef PLAYPAGE_H
|
|
|
|
#define PLAYPAGE_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QComboBox;
|
2011-05-03 01:17:01 +00:00
|
|
|
class QPushButton;
|
2011-04-07 22:04:09 +00:00
|
|
|
|
|
|
|
class PlayPage : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PlayPage(QWidget *parent = 0);
|
2011-04-24 19:42:56 +00:00
|
|
|
|
2011-04-25 05:47:11 +00:00
|
|
|
QComboBox *mProfilesComboBox;
|
2011-05-03 01:17:01 +00:00
|
|
|
QPushButton *mPlayButton;
|
|
|
|
|
2011-04-24 19:42:56 +00:00
|
|
|
};
|
2011-04-07 22:04:09 +00:00
|
|
|
|
|
|
|
#endif
|