FIFE  be64c707dea6b3250bd4355bf5c825d25920087d
FIFE::IMouseController Class Referenceabstract

Controller provides a way to receive events from the system Using this interface, clients can subscribe themselves to receive events. More...

#include <imousecontroller.h>

+ Inheritance diagram for FIFE::IMouseController:
+ Collaboration diagram for FIFE::IMouseController:

Public Member Functions

virtual void addMouseListener (IMouseListener *listener)=0
 Adds a listener to the back of the listener deque Listener will be notified via the corresponding events. More...
 
virtual void addMouseListenerFront (IMouseListener *listener)=0
 Adds a listener to the front of the listener deque Listener will be notified via the corresponding events. More...
 
virtual void removeMouseListener (IMouseListener *listener)=0
 Removes an added listener from the controller. More...
 
virtual ~IMouseController ()
 

Detailed Description

Controller provides a way to receive events from the system Using this interface, clients can subscribe themselves to receive events.

Definition at line 43 of file imousecontroller.h.

Constructor & Destructor Documentation

◆ ~IMouseController()

virtual FIFE::IMouseController::~IMouseController ( )
inlinevirtual

Definition at line 64 of file imousecontroller.h.

Member Function Documentation

◆ addMouseListener()

virtual void FIFE::IMouseController::addMouseListener ( IMouseListener listener)
pure virtual

Adds a listener to the back of the listener deque Listener will be notified via the corresponding events.

Parameters
listenerlistener to add

Implemented in FIFE::EventManager.

◆ addMouseListenerFront()

virtual void FIFE::IMouseController::addMouseListenerFront ( IMouseListener listener)
pure virtual

Adds a listener to the front of the listener deque Listener will be notified via the corresponding events.

Parameters
listenerlistener to add

Implemented in FIFE::EventManager.

◆ removeMouseListener()

virtual void FIFE::IMouseController::removeMouseListener ( IMouseListener listener)
pure virtual

Removes an added listener from the controller.

Listener will not be notified anymore via the corresponding events

Parameters
listenerlistener to remove

Implemented in FIFE::EventManager.


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