fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kdeui / util / kkeyserver_win.h
blob75f8f6103890a21c042da44a75ea6ebfc4bcb743
1 /*
2 Copyright (C) 2008 Carlo Segato <brandon.ml@gmail.com>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef _KKEYSERVER_WIN_H
21 #define _KKEYSERVER_WIN_H
23 #include "kshortcut.h"
25 namespace KKeyServer
27 /**
28 * Extracts the modifiers from the given Qt key and
29 * converts them in a mask of Windows modifiers.
30 * @param keyQt the qt key code
31 * @param mod if successful, the modifiers will be written here
32 * @return true if successful, false otherwise
34 KDEUI_EXPORT bool keyQtToModWin( int keyQt, uint* mod );
36 KDEUI_EXPORT bool modWinToKeyQt( uint mod, int *keyQt );
38 /**
39 * Extracts the symbol from the given Qt key and
40 * converts it to a Windows symbol.
41 * @param keyQt the qt key code
42 * @param sym if successful, the symbol will be written here
43 * @return true if successful, false otherwise
45 KDEUI_EXPORT bool keyQtToCodeWin( int keyQt, uint* sym );
47 KDEUI_EXPORT bool codeWinToKeyQt( uint sym, int* keyQt );
50 #endif