-rw-r--r-- | inputmethods/keyboard/keyboard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inputmethods/keyboard/keyboard.h b/inputmethods/keyboard/keyboard.h index cc7f3f5..82588f0 100644 --- a/inputmethods/keyboard/keyboard.h +++ b/inputmethods/keyboard/keyboard.h | |||
@@ -1,108 +1,108 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <qframe.h> | 20 | #include <qframe.h> |
21 | #include "../pickboard/pickboardcfg.h" | 21 | #include <pickboardcfg.h> |
22 | #include "../pickboard/pickboardpicks.h" | 22 | #include <pickboardpicks.h> |
23 | 23 | ||
24 | class QTimer; | 24 | class QTimer; |
25 | 25 | ||
26 | namespace KeyboardInput | 26 | namespace KeyboardInput |
27 | { | 27 | { |
28 | 28 | ||
29 | class KeyboardConfig : public DictFilterConfig | 29 | class KeyboardConfig : public DictFilterConfig |
30 | { | 30 | { |
31 | public: | 31 | public: |
32 | KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } | 32 | KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } |
33 | virtual void generateText(const QString &s); | 33 | virtual void generateText(const QString &s); |
34 | void decBackspaces() { if (backspaces) backspaces--; } | 34 | void decBackspaces() { if (backspaces) backspaces--; } |
35 | void incBackspaces() { backspaces++; } | 35 | void incBackspaces() { backspaces++; } |
36 | void resetBackspaces() { backspaces = 0; } | 36 | void resetBackspaces() { backspaces = 0; } |
37 | private: | 37 | private: |
38 | int backspaces; | 38 | int backspaces; |
39 | }; | 39 | }; |
40 | 40 | ||
41 | 41 | ||
42 | class KeyboardPicks : public PickboardPicks | 42 | class KeyboardPicks : public PickboardPicks |
43 | { | 43 | { |
44 | Q_OBJECT | 44 | Q_OBJECT |
45 | public: | 45 | public: |
46 | KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) | 46 | KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) |
47 | : PickboardPicks(parent, name, f) { } | 47 | : PickboardPicks(parent, name, f) { } |
48 | void initialise(); | 48 | void initialise(); |
49 | virtual QSize sizeHint() const; | 49 | virtual QSize sizeHint() const; |
50 | KeyboardConfig *dc; | 50 | KeyboardConfig *dc; |
51 | }; | 51 | }; |
52 | 52 | ||
53 | class Keyboard : public QFrame | 53 | class Keyboard : public QFrame |
54 | { | 54 | { |
55 | Q_OBJECT | 55 | Q_OBJECT |
56 | public: | 56 | public: |
57 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); | 57 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); |
58 | 58 | ||
59 | void resetState(); | 59 | void resetState(); |
60 | 60 | ||
61 | void mousePressEvent(QMouseEvent*); | 61 | void mousePressEvent(QMouseEvent*); |
62 | void mouseReleaseEvent(QMouseEvent*); | 62 | void mouseReleaseEvent(QMouseEvent*); |
63 | void resizeEvent(QResizeEvent*); | 63 | void resizeEvent(QResizeEvent*); |
64 | void paintEvent(QPaintEvent* e); | 64 | void paintEvent(QPaintEvent* e); |
65 | void timerEvent(QTimerEvent* e); | 65 | void timerEvent(QTimerEvent* e); |
66 | void drawKeyboard( QPainter &p, int key = -1 ); | 66 | void drawKeyboard( QPainter &p, int key = -1 ); |
67 | 67 | ||
68 | void setMode(int mode) { useOptiKeys = mode; } | 68 | void setMode(int mode) { useOptiKeys = mode; } |
69 | 69 | ||
70 | QSize sizeHint() const; | 70 | QSize sizeHint() const; |
71 | 71 | ||
72 | signals: | 72 | signals: |
73 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); | 73 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); |
74 | 74 | ||
75 | private slots: | 75 | private slots: |
76 | void repeat(); | 76 | void repeat(); |
77 | 77 | ||
78 | private: | 78 | private: |
79 | int getKey( int &w, int j = -1 ); | 79 | int getKey( int &w, int j = -1 ); |
80 | void clearHighlight(); | 80 | void clearHighlight(); |
81 | 81 | ||
82 | uint shift:1; | 82 | uint shift:1; |
83 | uint lock:1; | 83 | uint lock:1; |
84 | uint ctrl:1; | 84 | uint ctrl:1; |
85 | uint alt:1; | 85 | uint alt:1; |
86 | uint useLargeKeys:1; | 86 | uint useLargeKeys:1; |
87 | uint useOptiKeys:1; | 87 | uint useOptiKeys:1; |
88 | 88 | ||
89 | int pressedKey; | 89 | int pressedKey; |
90 | 90 | ||
91 | KeyboardPicks *picks; | 91 | KeyboardPicks *picks; |
92 | 92 | ||
93 | int keyHeight; | 93 | int keyHeight; |
94 | int defaultKeyWidth; | 94 | int defaultKeyWidth; |
95 | int xoffs; | 95 | int xoffs; |
96 | 96 | ||
97 | int unicode; | 97 | int unicode; |
98 | int qkeycode; | 98 | int qkeycode; |
99 | int modifiers; | 99 | int modifiers; |
100 | 100 | ||
101 | int pressTid; | 101 | int pressTid; |
102 | bool pressed; | 102 | bool pressed; |
103 | 103 | ||
104 | QTimer *repeatTimer; | 104 | QTimer *repeatTimer; |
105 | }; | 105 | }; |
106 | 106 | ||
107 | } // namespace KeyboardInput | 107 | } // namespace KeyboardInput |
108 | 108 | ||