mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 06:26:37 +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
 |