enum class | ph::editor::EKeyCode : uint8 {
ph::editor::Unknown = 0
, ph::editor::F1 = 1
, ph::editor::F2 = 2
, ph::editor::F3 = 3
,
ph::editor::F4 = 4
, ph::editor::F5 = 5
, ph::editor::F6 = 6
, ph::editor::F7 = 7
,
ph::editor::F8 = 8
, ph::editor::F9 = 9
, ph::editor::F10 = 10
, ph::editor::F11 = 11
,
ph::editor::F12 = 12
, ph::editor::A = 20
, ph::editor::B = 21
, ph::editor::C = 22
,
ph::editor::D = 23
, ph::editor::E = 24
, ph::editor::F = 25
, ph::editor::G = 26
,
ph::editor::H = 27
, ph::editor::I = 28
, ph::editor::J = 29
, ph::editor::K = 30
,
ph::editor::L = 31
, ph::editor::M = 32
, ph::editor::N = 33
, ph::editor::O = 34
,
ph::editor::P = 35
, ph::editor::Q = 36
, ph::editor::R = 37
, ph::editor::S = 38
,
ph::editor::T = 39
, ph::editor::U = 40
, ph::editor::V = 41
, ph::editor::W = 42
,
ph::editor::X = 43
, ph::editor::Y = 44
, ph::editor::Z = 45
, ph::editor::Space = 46
,
ph::editor::Apostrophe = 47
, ph::editor::Comma = 48
, ph::editor::Minus = 49
, ph::editor::Period = 50
,
ph::editor::Slash = 51
, ph::editor::Semicolon = 52
, ph::editor::Equal = 53
, ph::editor::LeftBracket = 54
,
ph::editor::Backslash = 55
, ph::editor::RightBracket = 56
, ph::editor::GraveAccent = 57
, ph::editor::Escape = 60
,
ph::editor::Enter = 61
, ph::editor::Tab = 62
, ph::editor::Backspace = 63
, ph::editor::Insert = 64
,
ph::editor::Delete = 65
, ph::editor::Right = 66
, ph::editor::Left = 67
, ph::editor::Down = 68
,
ph::editor::Up = 69
, ph::editor::PageUp = 70
, ph::editor::PageDown = 71
, ph::editor::Home = 72
,
ph::editor::End = 73
, ph::editor::CapsLock = 74
, ph::editor::ScrollLock = 75
, ph::editor::NumLock = 76
,
ph::editor::PrintScreen = 77
, ph::editor::Pause = 78
, ph::editor::LeftShift = 79
, ph::editor::LeftControl = 80
,
ph::editor::LeftAlt = 81
, ph::editor::LeftSuper = 82
, ph::editor::RightShift = 83
, ph::editor::RightControl = 84
,
ph::editor::RightAlt = 85
, ph::editor::RightSuper = 86
, ph::editor::Menu = 87
, ph::editor::K0 = 90
,
ph::editor::K1 = 91
, ph::editor::K2 = 92
, ph::editor::K3 = 93
, ph::editor::K4 = 94
,
ph::editor::K5 = 95
, ph::editor::K6 = 96
, ph::editor::K7 = 97
, ph::editor::K8 = 98
,
ph::editor::K9 = 99
, ph::editor::KDecimal = 100
, ph::editor::KDivide = 101
, ph::editor::KMultiply = 102
,
ph::editor::KSubtract = 103
, ph::editor::KAdd = 104
, ph::editor::KEnter = 105
, ph::editor::KEqual = 106
,
ph::editor::D0 = 110
, ph::editor::D1 = 111
, ph::editor::D2 = 112
, ph::editor::D3 = 113
,
ph::editor::D4 = 114
, ph::editor::D5 = 115
, ph::editor::D6 = 116
, ph::editor::D7 = 117
,
ph::editor::D8 = 118
, ph::editor::D9 = 119
, ph::editor::Num
} |