fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kdeui / util / kkeyserver_mac.h
blob80d45f03b2a5414e3fbe43ec412c7ab636504f65
1 /*
2 Copyright (C) 2006 Marijn Kruisselbrink <m.kruisselbrink@student.tue.nl>
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_MAC_H
21 #define _KKEYSERVER_MAC_H
23 #include "kshortcut.h"
25 namespace KKeyServer
27 /**
28 * Extracts the symbol from the given Qt key, and converts it to an OSX symbol.
29 * @param keyQt the qt key code
30 * @param sym if successful, the symbol will be written here
31 * @return true if successful, false otherwise
33 KDEUI_EXPORT bool keyQtToSymMac( int keyQt, int& sym );
35 /**
36 * Extracts all the scancodes from the given Qt key. The returned values can change if a different
37 * keyboard layout is selected.
38 * @param keyQt the qt key code
39 * @param keyCodes if successful, a list of scancodes will be written here
40 * @return true if successful, false otherwise
42 KDEUI_EXPORT bool keyQtToCodeMac( int keyQt, QList<uint>& keyCodes );
44 /**
45 * Extracts the modifiers from the given Qt key and converts them in a mask of OSX modifiers.
46 * @param keyQt the qt key code
47 * @param mod if successful, the modifiers will be written here
48 * @return true if successful, false otherwise
50 KDEUI_EXPORT bool keyQtToModMac( int keyQt, uint& mod );
53 #endif // !_KKEY_SERVER_MAC_H