OpenMW
|
00001 #ifndef PLAYPAGE_H 00002 #define PLAYPAGE_H 00003 00004 #include <QWidget> 00005 00006 #include "ui_playpage.h" 00007 00008 class QComboBox; 00009 class QPushButton; 00010 class QAbstractItemModel; 00011 00012 namespace Launcher 00013 { 00014 class PlayPage : public QWidget, private Ui::PlayPage 00015 { 00016 Q_OBJECT 00017 00018 public: 00019 PlayPage(QWidget *parent = 0); 00020 void setProfilesModel(QAbstractItemModel *model); 00021 00022 signals: 00023 void signalProfileChanged(int index); 00024 void playButtonClicked(); 00025 00026 public slots: 00027 void setProfilesIndex(int index); 00028 00029 private slots: 00030 void slotPlayClicked(); 00031 00032 00033 00034 }; 00035 } 00036 #endif