mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
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());
|
|
}
|
|
};
|
|
|
|
}
|