Kate
katevikeyparser.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries and the Kate part. 00002 * 00003 * Copyright (C) 2008 Erlend Hamberg <ehamberg@gmail.com> 00004 * Copyright (C) 2008 Evgeniy Ivanov <powerfox@kde.ru> 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public License 00017 * along with this library; see the file COPYING.LIB. If not, write to 00018 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 * Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #ifndef KATE_VI_KEYPARSER_H_INCLUDED 00023 #define KATE_VI_KEYPARSER_H_INCLUDED 00024 00025 #include <QChar> 00026 #include <QString> 00027 #include <QHash> 00028 00034 class KateViKeyParser 00035 { 00036 private: 00037 KateViKeyParser(); 00038 00039 public: 00040 static KateViKeyParser* getInstance(); 00041 00042 const QString encodeKeySequence( const QString &keys ) const; 00043 const QString decodeKeySequence( const QString &keys ) const; 00044 QString qt2vi( int key ) const; 00045 int vi2qt( const QString &keypress ) const; 00046 char scanCodeToChar(quint32 code, Qt::KeyboardModifiers modifiers, bool isLetter) const; 00047 const QChar KeyEventToQChar(int keyCode, const QString &text, Qt::KeyboardModifiers mods, quint32 nativeScanCode) const; 00048 00049 private: 00050 void initKeyTables(); 00051 00052 QHash<int, QString> *m_qt2katevi; 00053 QHash<QString, int> *m_katevi2qt; 00054 QHash<QString, int> *m_nameToKeyCode; 00055 QHash<int, QString> *m_keyCodeToName; 00056 00057 static KateViKeyParser *m_instance; 00058 }; 00059 00060 #endif
KDE 4.6 API Reference