Loading [MathJax]/extensions/tex2jax.js
Yet Another Synthesizer Engine
 
All Classes Namespaces Files Functions Variables Macros Pages
Loading...
Searching...
No Matches
yase::EventManager Class Reference

#include <event_manager.hh>

+ Inheritance diagram for yase::EventManager:

Detailed Description

A class that keeps track of event listeners.

This class can be used in isolation, but is usually inheritied from. For example, the Container class inherits from this class.

Public Member Functions

 EventManager ()
 Make a new event manager.
 
void process_events (vector< Module * > &modules)
 
void respond_to (const Event &event)
 
EventManagerlisten (int event_type, function< void(const Event &)> handler)
 
EventManagerlisten (int event_type, int port, function< void(const Event &)> handler)
 

Member Function Documentation

◆ listen()

EventManager & yase::EventManager::listen ( int  event_type,
int  port,
function< void(const Event &)>  handler 
)

Listen for a MIDI event and respond. An event is emited by some other Module using the emit() method.

Parameters
event_typeThe type of event. For example, MIDI_KEYDOWN, MIDI_KEYUP, or MIDI_ALL
portThe MIDI port to listen to.
handlerA method to run when the event is processed.

◆ process_events()

void yase::EventManager::process_events ( vector< Module * > &  modules)

Process all events that have been emitted by the provided list of Modules, and deactiviating them.

Parameters
modulesA vector of Modules

◆ respond_to()

void yase::EventManager::respond_to ( const Event event)

Run any event handlers (set up by a call to "listen") for the given Event

Parameters
eventThe event to respond to

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