All public logs

Jump to navigation Jump to search

Combined display of all available logs of neoGFX. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 18:32, 4 May 2024 Leigh talk contribs created page EventSystem (Created page with "== neoGFX Event System == The neoGFX event system is both modern and simple and is an improvement over traditional signals and slots. To create an event handler simply use a lambda expression thus: <code> button1.clicked([](){ ... code ...: }); </code> If automatic event handler de-registration (traditional role of a "slot") is wanted: <code> neoGFX::sink s; s += button1.clicked([](){ ... code ...: }); </code> When 's' is destroyed any associated event re...")