diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-03-31 12:43:35 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-03-31 12:43:35 +0200 |
commit | fa0e229e7228129099f3e772e0b2844a3f146240 (patch) | |
tree | 9047603e5b7cd2645c0652f29af379cd349d1f8b /plugingui/window.cc | |
parent | be675587812c27fac9838af844f8ecb44703ff08 (diff) |
Missing file in last commit (focusEvents)
Diffstat (limited to 'plugingui/window.cc')
-rw-r--r-- | plugingui/window.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugingui/window.cc b/plugingui/window.cc index f524ee9..7dabb4c 100644 --- a/plugingui/window.cc +++ b/plugingui/window.cc @@ -57,6 +57,7 @@ GUI::Window::Window(GlobalContext *gctx) refcount = 0; _keyboardFocus = this; _buttonDownFocus = NULL; + _mouseFocus = NULL; #ifdef X11 native = new NativeWindowX11(gctx, this); @@ -197,3 +198,13 @@ void GUI::Window::setButtonDownFocus(GUI::Widget *widget) _buttonDownFocus = widget; native->grabMouse(widget != NULL); } + +GUI::Widget *GUI::Window::mouseFocus() +{ + return _mouseFocus; +} + +void GUI::Window::setMouseFocus(GUI::Widget *widget) +{ + _mouseFocus = widget; +} |