diff options
author | David Robillard <d@drobilla.net> | 2019-07-24 23:46:17 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-09-03 08:32:16 +0200 |
commit | 5081d49f9f08596c07a8ed32430a4fa3e1baf352 (patch) | |
tree | 1e654d4fc34ea582e356373ae5bd39fac91ae3bc /pugl/detail/x11.c | |
parent | da0f76d22df1813a386f2b5e35ebe637da78889f (diff) | |
download | pugl-5081d49f9f08596c07a8ed32430a4fa3e1baf352.tar.gz pugl-5081d49f9f08596c07a8ed32430a4fa3e1baf352.tar.bz2 pugl-5081d49f9f08596c07a8ed32430a4fa3e1baf352.zip |
Add puglHasFocus()
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r-- | pugl/detail/x11.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c index a766ace..cb9f0e2 100644 --- a/pugl/detail/x11.c +++ b/pugl/detail/x11.c @@ -443,6 +443,15 @@ puglGrabFocus(PuglView* view) view->impl->display, view->impl->win, RevertToNone, CurrentTime); } +bool +puglHasFocus(const PuglView* view) +{ + int revertTo = 0; + Window focusedWindow = 0; + XGetInputFocus(view->impl->display, &focusedWindow, &revertTo); + return focusedWindow == view->impl->win; +} + void puglRequestAttention(PuglView* view) { |