mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 16:00:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/ui/settings/settings_page_widget.hpp>
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace ui
 | 
						|
{
 | 
						|
 | 
						|
class HotkeySettingsWidget : public SettingsPageWidget
 | 
						|
{
 | 
						|
   Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
   explicit HotkeySettingsWidget(QWidget* parent = nullptr);
 | 
						|
   ~HotkeySettingsWidget();
 | 
						|
 | 
						|
private:
 | 
						|
   class Impl;
 | 
						|
   std::shared_ptr<Impl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace ui
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |