poison.core.eventhandler
Source
Module for event handlers.
Authors:
Jacob Jensen
License:
https://github.com/PoisonEngine/poison-ui/blob/master/LICENSE
public:
public interface IBaseEventHandler;
A base event handler.
public this(void function(TEventArgs) f);
Creates a new event handler.
Parameters:
f The function pointer.
public this(void delegate(TEventArgs) d);
Creates a new event handler.
Parameters:
d The delegate.
public void opCall(TEventArgs e);
Operator overload for calling the event handler implicit.
Parameters:
e The event args.
Generated by venom - Poison Engine's Documentation Generator
Module for event handlers.
Authors:
Jacob JensenLicense:
https://github.com/PoisonEngine/poison-ui/blob/master/LICENSEpublic interface IBaseEventHandler;
A base event handler.
public this(void function(TEventArgs) f);
Creates a new event handler.
Parameters:
f | The function pointer. |
public this(void delegate(TEventArgs) d);
Creates a new event handler.
Parameters:
d | The delegate. |
public void opCall(TEventArgs e);
Operator overload for calling the event handler implicit.
Parameters:
e | The event args. |