Event System: Difference between revisions

From neoGFX
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
The ''neoGFX'' event system is a modern, simple improvement over traditional signals and slots.
The ''neoGFX'' event system is a modern, simple, improvement over traditional signals and slots.


To create an event handler simply use a lambda expression thus:
To create an event handler simply use a lambda expression thus:

Revision as of 18:38, 4 May 2024

The neoGFX event system is a modern, simple, improvement over traditional signals and slots.

To create an event handler simply use a lambda expression thus:

button1.clicked([](){ /* ... code ... */ });

If automatic event handler de-registration (traditional role of a "slot") is wanted:

neoGFX::sink s; s += button1.clicked([](){ /* ... code ... */ });

When 's' is destroyed any associated event registrations are de-registered automatically. Sink objects can be on the stack, member variables or the more traditional slot-like base class sub-object.

The event system is fully multi-threaded. If you want to handle the event in the same thread that is emitting the event rather than the thread that created the event handler then one simply uses the thread snake, ~~~~, which has the nice side effect of making it obvious that the lambda is being executed in a thread that may be different to that which is running the surrounding code:

/* ... code ... */
~~~~machine.started([](){ /* ... code ... */ });
/* ... code ... */

For defining events and triggering them:

class foo
{
public:
    neoGFX::event<int> wibble;
public:
    void something()
    {
        wibble.trigger(42); // by default a synchronous trigger
        wibble.sync_trigger(42); // synchronous trigger
        wibble.async_trigger(42); // asynchronous trigger
    }
};