Vesper 0.5.1
Vesper is short form for the Latin word for "Bat", as Vesper is designed to be small, lightweight, and easily handle things like particles and flocking behaviors in accordance with the nature of bats. \n It is meant to be a particle simulation, VFX editor, and CAN be used secondarily as a small game engine.
GitHub | Vesper Updates | Creator
Loading...
Searching...
No Matches
Vesper::KeyEvent Class Reference

Base class for keyboard events. More...

#include <KeyEvent.h>

Inheritance diagram for Vesper::KeyEvent:
Vesper::Event Vesper::KeyPressedEvent Vesper::KeyReleasedEvent Vesper::KeyTypedEvent

Public Member Functions

int GetKeyCode () const
 Get the key code associated with the event.
Public Member Functions inherited from Vesper::Event
virtual ~Event ()=default
virtual EventType GetEventType () const =0
 Get the type of the event.
virtual const char * GetName () const =0
 Get the name of the event.
virtual int GetCategoryFlags () const =0
 Get the category flags of the event.
virtual std::string ToString () const
 Convert the event to a string representation.
bool IsInCategory (EventCategory category)
 Check if the event is in a specific category.

Protected Member Functions

 KeyEvent (int keycode)
 Construct a KeyEvent with the specified key code.

Protected Attributes

int m_KeyCode

Additional Inherited Members

Public Attributes inherited from Vesper::Event
bool Handled = false
 Indicates whether the event has been handled.

Detailed Description

Base class for keyboard events.

Constructor & Destructor Documentation

◆ KeyEvent()

Vesper::KeyEvent::KeyEvent ( int keycode)
inlineprotected

Construct a KeyEvent with the specified key code.

Parameters
keycodeThe key code associated with the event. Restricted specific construction to derived classes.
30 : m_KeyCode(keycode) {}
int m_KeyCode
Definition KeyEvent.h:31

References m_KeyCode.

Referenced by Vesper::KeyPressedEvent::KeyPressedEvent(), Vesper::KeyReleasedEvent::KeyReleasedEvent(), and Vesper::KeyTypedEvent::KeyTypedEvent().

Member Function Documentation

◆ GetKeyCode()

int Vesper::KeyEvent::GetKeyCode ( ) const
inline

Get the key code associated with the event.

20{ return m_KeyCode; }

References m_KeyCode.

Referenced by Vesper::EditorLayer::OnKeyPressed().

Member Data Documentation

◆ m_KeyCode


The documentation for this class was generated from the following file: