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::MouseScrolledEvent Class Reference

Event for registering mouse scroll wheel movement. More...

#include <MouseEvent.h>

Inheritance diagram for Vesper::MouseScrolledEvent:
Vesper::Event

Public Member Functions

 MouseScrolledEvent (float xOffset, float yOffset)
 Construct a MouseScrolledEvent with the specified x and y offsets.
float GetXOffset () const
 Get the x offset of the mouse scroll.
float GetYOffset () const
 Get the y offset of the mouse scroll.
std::string ToString () const override
 Convert the event to a string representation.
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.
bool IsInCategory (EventCategory category)
 Check if the event is in a specific category.

Private Attributes

float m_XOffset
float m_YOffset

Additional Inherited Members

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

Detailed Description

Event for registering mouse scroll wheel movement.

Constructor & Destructor Documentation

◆ MouseScrolledEvent()

Vesper::MouseScrolledEvent::MouseScrolledEvent ( float xOffset,
float yOffset )
inline

Construct a MouseScrolledEvent with the specified x and y offsets.

Parameters
xOffsetThe offset of the mouse scroll in the x direction.
yOffsetThe offset of the mouse scroll in the y direction.
56 : m_XOffset(xOffset), m_YOffset(yOffset) {
57 }
float m_XOffset
Definition MouseEvent.h:75
float m_YOffset
Definition MouseEvent.h:75

References m_XOffset, and m_YOffset.

Member Function Documentation

◆ GetXOffset()

float Vesper::MouseScrolledEvent::GetXOffset ( ) const
inline

Get the x offset of the mouse scroll.

60{ return m_XOffset; }

References m_XOffset.

Referenced by ToString().

◆ GetYOffset()

float Vesper::MouseScrolledEvent::GetYOffset ( ) const
inline

Get the y offset of the mouse scroll.

62{ return m_YOffset; }

References m_YOffset.

Referenced by Vesper::EditorCamera::OnMouseScroll(), Vesper::OrthographicCameraController::OnMouseScrolled(), and ToString().

◆ ToString()

std::string Vesper::MouseScrolledEvent::ToString ( ) const
inlineoverridevirtual

Convert the event to a string representation.

Reimplemented from Vesper::Event.

66 {
67 std::stringstream ss;
68 ss << "MouseScrolledEvent: " << GetXOffset() << ", " << GetYOffset();
69 return ss.str();
70 }
float GetXOffset() const
Get the x offset of the mouse scroll.
Definition MouseEvent.h:60
float GetYOffset() const
Get the y offset of the mouse scroll.
Definition MouseEvent.h:62

References GetXOffset(), and GetYOffset().

Member Data Documentation

◆ m_XOffset

float Vesper::MouseScrolledEvent::m_XOffset
private

Referenced by GetXOffset(), and MouseScrolledEvent().

◆ m_YOffset

float Vesper::MouseScrolledEvent::m_YOffset
private

Referenced by GetYOffset(), and MouseScrolledEvent().


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