mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 12:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			658 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			658 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_PREFS_KEYBINDINGPAGE_H
 | |
| #define CSV_PREFS_KEYBINDINGPAGE_H
 | |
| 
 | |
| #include "pagebase.hpp"
 | |
| 
 | |
| class QComboBox;
 | |
| class QGridLayout;
 | |
| class QStackedLayout;
 | |
| 
 | |
| namespace CSMPrefs
 | |
| {
 | |
|     class Setting;
 | |
| }
 | |
| 
 | |
| namespace CSVPrefs
 | |
| {
 | |
|     class KeyBindingPage : public PageBase
 | |
|     {
 | |
|             Q_OBJECT
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             KeyBindingPage(CSMPrefs::Category& category, QWidget* parent);
 | |
| 
 | |
|             void addSetting(CSMPrefs::Setting* setting);
 | |
| 
 | |
|         private:
 | |
| 
 | |
|             QStackedLayout* mStackedLayout;
 | |
|             QGridLayout* mPageLayout;
 | |
|             QComboBox* mPageSelector;
 | |
| 
 | |
|         private slots:
 | |
| 
 | |
|             void resetKeyBindings();
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |