X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsystemkeyboardinput.cpp;h=a99183231f08e66203e5d16112e9cfbacdecbe3c;hb=6e5db3e5ba48b5e68efd38360a20ce127cd23578;hp=f5657bd7d49066d4c854279bfbfde8705ddbd55a;hpb=2b3940dd34611a6f669278de9a5146b6e85f6119;p=libs%2Fgltk.git diff --git a/source/systemkeyboardinput.cpp b/source/systemkeyboardinput.cpp index f5657bd..a991832 100644 --- a/source/systemkeyboardinput.cpp +++ b/source/systemkeyboardinput.cpp @@ -7,7 +7,8 @@ namespace GLtk { SystemKeyboardInput::SystemKeyboardInput(Root &r, Input::Keyboard &k): InputMethod(r), - keyboard(k) + keyboard(k), + modifier_state(0) { keyboard.signal_button_press.connect(sigc::mem_fun(this, &SystemKeyboardInput::key_press)); keyboard.signal_button_release.connect(sigc::mem_fun(this, &SystemKeyboardInput::key_release)); @@ -19,8 +20,14 @@ bool SystemKeyboardInput::key_press(unsigned key) if(!root.is_visible()) return false; - // TODO modifiers - if(root.key_press(key, 0)) + if(key==Input::KEY_SHIFT_L || key==Input::KEY_SHIFT_R) + modifier_state |= MOD_SHIFT; + else if(key==Input::KEY_CTRL_L || key==Input::KEY_CTRL_R) + modifier_state |= MOD_CTRL; + else if(key==Input::KEY_ALT_L || key==Input::KEY_ALT_R) + modifier_state |= MOD_ALT; + + if(root.key_press(key, modifier_state)) return true; switch(key) @@ -41,7 +48,18 @@ bool SystemKeyboardInput::key_press(unsigned key) bool SystemKeyboardInput::key_release(unsigned key) { if(root.is_visible()) - return root.key_release(key, 0); + { + bool result = root.key_release(key, modifier_state); + + if(key==Input::KEY_SHIFT_L || key==Input::KEY_SHIFT_R) + modifier_state &= ~MOD_SHIFT; + else if(key==Input::KEY_CTRL_L || key==Input::KEY_CTRL_R) + modifier_state &= ~MOD_CTRL; + else if(key==Input::KEY_ALT_L || key==Input::KEY_ALT_R) + modifier_state &= ~MOD_ALT; + + return result; + } else return false; }