mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 08:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef PLAYPAGE_H
 | 
						|
#define PLAYPAGE_H
 | 
						|
 | 
						|
#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 = nullptr);
 | 
						|
        void setProfilesModel(QAbstractItemModel* model);
 | 
						|
 | 
						|
    signals:
 | 
						|
        void signalProfileChanged(int index);
 | 
						|
        void playButtonClicked();
 | 
						|
 | 
						|
    public slots:
 | 
						|
        void setProfilesIndex(int index);
 | 
						|
 | 
						|
    private slots:
 | 
						|
        void slotPlayClicked();
 | 
						|
    };
 | 
						|
}
 | 
						|
#endif
 |