diff options
Diffstat (limited to 'plugingui/nativewindow.h')
-rw-r--r-- | plugingui/nativewindow.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugingui/nativewindow.h b/plugingui/nativewindow.h index c6ca7c8..b4429af 100644 --- a/plugingui/nativewindow.h +++ b/plugingui/nativewindow.h @@ -80,6 +80,9 @@ public: //! Reads all currently enqueued events from the native window system. //! \return A queue of shared pointers to events. virtual EventQueue getEvents() = 0; + + // \returns the native window handle, it HWND on Win32 or Window id on X11 + virtual void* getNativeWindowHandle() const = 0; }; } // GUI:: |