Toolbox 0.0.1
Ritchie's accessible game engine'
Loading...
Searching...
No Matches
Ritchie.Toolbox.Signals Namespace Reference

Classes

interface  ISignalHandler< TSignal >
 Interface for an object that can receive a signal of type TSignal More...
 
class  SignalEvent< TSignal >
 An event containing a signal. More...
 

Enumerations

enum  SignalDirection { None = 0 , Up = 1 , Neighbours = 2 , Down = 4 }
 Defines where a SignalEvent<TSignal> should be sent. More...
 

Enumeration Type Documentation

◆ SignalDirection

Defines where a SignalEvent<TSignal> should be sent.

Enumerator
None 

The signal should be sent nowhere.

Up 

The signal should be sent to a widget's parent widgets.

Neighbours 

The signal should be sent to all other widgets within a widget's parent.

Down 

The signal should be sent to the widget's children.