Go to the source code of this file.
|
| enum class | CeresEngine::UIEventType {
CeresEngine::LeftMouseDown
, CeresEngine::LeftMouseUp
, CeresEngine::RightMouseDown
, CeresEngine::RightMouseUp
,
CeresEngine::MouseMoved
, CeresEngine::LeftMouseDragged
, CeresEngine::RightMouseDragged
, CeresEngine::MouseEntered
,
CeresEngine::MouseExited
, CeresEngine::OtherMouseDown
, CeresEngine::OtherMouseUp
, CeresEngine::OtherMouseDragged
,
CeresEngine::KeyDown
, CeresEngine::KeyUp
, CeresEngine::ScrollWheel
, CeresEngine::FlagsChanged
} |
| | The types of events handled by responder objects. More...
|
| |
| enum class | CeresEngine::UIModifierKey : UInt16 {
CeresEngine::CapsLock = UInt16(ModifierButton::CapsLock)
, CeresEngine::Shift = UInt16(ModifierButton::Shift)
, CeresEngine::Control = UInt16(ModifierButton::Control)
, CeresEngine::Option = UInt16(ModifierButton::Alt)
,
CeresEngine::Command = UInt16(ModifierButton::Super)
, CeresEngine::NumericPad
, CeresEngine::Help
, CeresEngine::Function
} |
| | Flags that represent key states in an event object. More...
|
| |