diff options
Diffstat (limited to 'plugingui/nativewindow_pugl.cc')
-rw-r--r-- | plugingui/nativewindow_pugl.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugingui/nativewindow_pugl.cc b/plugingui/nativewindow_pugl.cc index 0864c2b..b9dcd54 100644 --- a/plugingui/nativewindow_pugl.cc +++ b/plugingui/nativewindow_pugl.cc @@ -243,4 +243,14 @@ Event *NativeWindowPugl::getNextEvent() return event; } +Event *NativeWindowPugl::peekNextEvent() +{ + Event *event = nullptr; + + if(!eventq.empty()) { + event = eventq.front(); + } + return event; +} + } // GUI:: |