author | mickeyl <mickeyl> | 2004-05-14 15:47:06 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-05-14 15:47:06 (UTC) |
commit | 3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a (patch) (side-by-side diff) | |
tree | 1d7ce18cc0e543d8c07d08ec3b63734fe73f61a4 /inputmethods/multikey/keyboard.h | |
parent | a9c907c218d106727ad3879a125c77ae7900635f (diff) | |
download | opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.zip opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.gz opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.bz2 |
CLEANUP: Don't include header files via relative paths
Note: Remember to rm stamp-headers
Diffstat (limited to 'inputmethods/multikey/keyboard.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/multikey/keyboard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h index 0b56988..77bf718 100644 --- a/inputmethods/multikey/keyboard.h +++ b/inputmethods/multikey/keyboard.h @@ -1,71 +1,71 @@ /********************************************************************** ** Copyright (C) 2000 Trolltech AS. All rights reserved. ** ** This file is part of Qtopia Environment. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #include <qframe.h> #include <qmap.h> -#include "../pickboard/pickboardcfg.h" -#include "../pickboard/pickboardpicks.h" +#include <pickboardcfg.h> +#include <pickboardpicks.h> #include "configdlg.h" class QTimer; namespace MultiKey { class KeyboardConfig : public DictFilterConfig { public: KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } virtual void generateText(const QString &s); void decBackspaces() { if (backspaces) backspaces--; } void incBackspaces() { backspaces++; } void resetBackspaces() { backspaces = 0; } private: int backspaces; }; class KeyboardPicks : public PickboardPicks { Q_OBJECT public: KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) : PickboardPicks(parent, name, f) { } void initialise(); virtual QSize sizeHint() const; KeyboardConfig *dc; }; class Keys { public: Keys(); Keys(const char * filename); ~Keys(); int width(const int row, const int col); int rows(); ushort uni(const int row, const int col); int qcode(const int row, const int col); bool pressed(const int row, const int col); bool *pressedPtr(const int row, const int col); ushort shift(const ushort); ushort meta(const ushort); ushort circumflex(const ushort); ushort diaeresis(const ushort); |