mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef CSV_PREFS_PAGE_H
 | 
						|
#define CSV_PREFS_PAGE_H
 | 
						|
 | 
						|
#include "pagebase.hpp"
 | 
						|
 | 
						|
class QGridLayout;
 | 
						|
class QWidget;
 | 
						|
class QObject;
 | 
						|
 | 
						|
namespace CSMPrefs
 | 
						|
{
 | 
						|
    class Category;
 | 
						|
    class Setting;
 | 
						|
}
 | 
						|
 | 
						|
namespace CSVPrefs
 | 
						|
{
 | 
						|
    class Page : public PageBase
 | 
						|
    {
 | 
						|
        Q_OBJECT
 | 
						|
 | 
						|
        QGridLayout* mGrid;
 | 
						|
 | 
						|
    public:
 | 
						|
        Page(CSMPrefs::Category& category, QWidget* parent);
 | 
						|
 | 
						|
        void addSetting(CSMPrefs::Setting* setting);
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |