mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:22:45 +00:00 
			
		
		
		
	 0dc9af5f7e
			
		
	
	
		0dc9af5f7e
		
	
	
	
	
		
			
			Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/AKString.h>
 | |
| #include <AK/Traits.h>
 | |
| #include <Kernel/KeyCode.h>
 | |
| 
 | |
| class GShortcut {
 | |
| public:
 | |
|     GShortcut() {}
 | |
|     GShortcut(byte modifiers, KeyCode key)
 | |
|         : m_modifiers(modifiers)
 | |
|         , m_key(key)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     bool is_valid() const { return m_key != KeyCode::Key_Invalid; }
 | |
|     byte modifiers() const { return m_modifiers; }
 | |
|     KeyCode key() const { return m_key; }
 | |
|     String to_string() const;
 | |
| 
 | |
|     bool operator==(const GShortcut& other) const
 | |
|     {
 | |
|         return m_modifiers == other.m_modifiers
 | |
|             && m_key == other.m_key;
 | |
|     }
 | |
| 
 | |
| private:
 | |
|     byte m_modifiers { 0 };
 | |
|     KeyCode m_key { KeyCode::Key_Invalid };
 | |
| };
 | |
| 
 | |
| namespace AK {
 | |
| 
 | |
| template<>
 | |
| struct Traits<GShortcut> {
 | |
|     static unsigned hash(const GShortcut& shortcut)
 | |
|     {
 | |
|         return pair_int_hash(shortcut.modifiers(), shortcut.key());
 | |
|     }
 | |
| };
 | |
| 
 | |
| }
 |