X-Git-Url: http://git.maemo.org/git/?p=qstardict;a=blobdiff_plain;f=qstardict%2Fkeyboard.cpp;fp=qstardict%2Fkeyboard.cpp;h=8353ff994264d81b8c13279265027062e3c2fb9f;hp=0000000000000000000000000000000000000000;hb=15ae4fc455d1171c3406300abf80a18014a61dff;hpb=a495e0bb50b65271284b6ded45b6b61bc9d8dc20 diff --git a/qstardict/keyboard.cpp b/qstardict/keyboard.cpp new file mode 100644 index 0000000..8353ff9 --- /dev/null +++ b/qstardict/keyboard.cpp @@ -0,0 +1,100 @@ +/***************************************************************************** + * keyboard.cpp - QStarDict, a StarDict clone written with using Qt * + * Copyright (C) 2007 Alexander Rodin * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + *****************************************************************************/ + +#include "keyboard.h" + +#ifdef Q_WS_X11 + +#include +#include +#include + +namespace +{ +const unsigned mAlt = 0010; +const unsigned mCtrl = 0004; +const unsigned mShift = 0001; +const unsigned mWin = 0100; +} + +namespace QStarDict +{ + +Qt::KeyboardModifiers Keyboard::activeModifiers() +{ + XkbStateRec state; + Qt::KeyboardModifiers result; + + XkbGetState(QX11Info::display(), XkbUseCoreKbd, &state); + if (state.base_mods & mAlt) + result |= Qt::AltModifier; + if (state.base_mods & mCtrl) + result |= Qt::ControlModifier; + if (state.base_mods & mShift) + result |= Qt::ShiftModifier; + if (state.base_mods & mWin) + result |= Qt::MetaModifier; + + return result; +} + +} // namespace + +#elif defined(Q_WS_WIN) // Q_WS_X11 + +#include +#include + +namespace QStarDict +{ + +Qt::KeyboardModifiers Keyboard::activeModifiers() +{ + Qt::KeyboardModifiers result; + + if (GetAsyncKeyState(VK_MENU) & 0x8000) + result |= Qt::AltModifier; + if (GetAsyncKeyState(VK_CONTROL) & 0x8000) + result |= Qt::ControlModifier; + if (GetAsyncKeyState(VK_SHIFT) & 0x8000) + result |= Qt::ShiftModifier; + if ((GetAsyncKeyState(VK_LWIN) & 0x8000) || (GetAsyncKeyState(VK_RWIN) & 0x8000)) + result |= Qt::MetaModifier; + + return result; +} + +} // namespace + +#elif defined(Q_WS_MAC) // Q_WS_WIN +#include + +namespace QStarDict +{ + +Qt::KeyboardModifiers Keyboard::activeModifiers() +{ + return QApplication::keyboardModifiers(); +} + +} // namespace +#endif // Q_WS_MAC + +// vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab cindent textwidth=120 formatoptions=tc +