SimpleWindow.handleNativeEvent

Platform specific - handle any native messages this window gets. * * Note: this is called *in addition to* other event handlers, unless you return zero indicating that you handled it.

* On Windows, it takes the form of int delegate(HWND,UINT, WPARAM, LPARAM).

* On X11, it takes the form of int delegate(XEvent).

* IMPORTANT: it used to be static in old versions of simpledisplay.d, but I always used * it as if it wasn't static... so now I just fixed it so it isn't anymore.

class SimpleWindow
NativeEventHandler handleNativeEvent;
Suggestion Box / Bug Report