author | hash <hash> | 2002-08-22 16:30:01 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-22 16:30:01 (UTC) |
commit | 4b0db964f77e4b3caa1f95ea753c89094b86e0d6 (patch) (unidiff) | |
tree | 1be74ef5d6bf3101815b5ecdafb21c0db470715e /inputmethods | |
parent | 8503abdc93f6f3ce93cee0f1176faa919dbd04f5 (diff) | |
download | opie-4b0db964f77e4b3caa1f95ea753c89094b86e0d6.zip opie-4b0db964f77e4b3caa1f95ea753c89094b86e0d6.tar.gz opie-4b0db964f77e4b3caa1f95ea753c89094b86e0d6.tar.bz2 |
xpm images now are the same color as the text
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 19 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.h | 6 |
2 files changed, 13 insertions, 12 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index e3d3928..3f6f73b 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp | |||
@@ -84,262 +84,263 @@ Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) : | |||
84 | 84 | ||
85 | Keyboard::~Keyboard() { | 85 | Keyboard::~Keyboard() { |
86 | 86 | ||
87 | if ( configdlg ) { | 87 | if ( configdlg ) { |
88 | delete (ConfigDlg *) configdlg; | 88 | delete (ConfigDlg *) configdlg; |
89 | configdlg = 0; | 89 | configdlg = 0; |
90 | } | 90 | } |
91 | 91 | ||
92 | } | 92 | } |
93 | 93 | ||
94 | /* Keyboard::resizeEvent {{{1 */ | 94 | /* Keyboard::resizeEvent {{{1 */ |
95 | void Keyboard::resizeEvent(QResizeEvent*) | 95 | void Keyboard::resizeEvent(QResizeEvent*) |
96 | { | 96 | { |
97 | int ph = picks->sizeHint().height(); | 97 | int ph = picks->sizeHint().height(); |
98 | picks->setGeometry( 0, 0, width(), ph ); | 98 | picks->setGeometry( 0, 0, width(), ph ); |
99 | keyHeight = (height()-(usePicks ? ph : 0))/5; | 99 | keyHeight = (height()-(usePicks ? ph : 0))/5; |
100 | 100 | ||
101 | int nk; // number of keys? | 101 | int nk; // number of keys? |
102 | if ( useLargeKeys ) { | 102 | if ( useLargeKeys ) { |
103 | nk = 15; | 103 | nk = 15; |
104 | } else { | 104 | } else { |
105 | nk = 19; | 105 | nk = 19; |
106 | } | 106 | } |
107 | defaultKeyWidth = (width()/nk)/2; | 107 | defaultKeyWidth = (width()/nk)/2; |
108 | xoffs = (width()-defaultKeyWidth*nk)/2; // empty key spaces? | 108 | xoffs = (width()-defaultKeyWidth*nk)/2; // empty key spaces? |
109 | 109 | ||
110 | } | 110 | } |
111 | 111 | ||
112 | /* KeyboardPicks::initialize {{{1 */ | 112 | /* KeyboardPicks::initialize {{{1 */ |
113 | void KeyboardPicks::initialise() | 113 | void KeyboardPicks::initialise() |
114 | { | 114 | { |
115 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed)); | 115 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed)); |
116 | mode = 0; | 116 | mode = 0; |
117 | dc = new KeyboardConfig(this); | 117 | dc = new KeyboardConfig(this); |
118 | configs.append(dc); | 118 | configs.append(dc); |
119 | } | 119 | } |
120 | 120 | ||
121 | /* KeyboardPicks::sizeHint {{{1 */ | 121 | /* KeyboardPicks::sizeHint {{{1 */ |
122 | QSize KeyboardPicks::sizeHint() const | 122 | QSize KeyboardPicks::sizeHint() const |
123 | { | 123 | { |
124 | return QSize(240,fontMetrics().lineSpacing()); | 124 | return QSize(240,fontMetrics().lineSpacing()); |
125 | } | 125 | } |
126 | 126 | ||
127 | 127 | ||
128 | /* KeyboardConfig::generateText {{{1 */ | 128 | /* KeyboardConfig::generateText {{{1 */ |
129 | void KeyboardConfig::generateText(const QString &s) | 129 | void KeyboardConfig::generateText(const QString &s) |
130 | { | 130 | { |
131 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) | 131 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) |
132 | for (int i=0; i<(int)backspaces; i++) { | 132 | for (int i=0; i<(int)backspaces; i++) { |
133 | parent->emitKey( 0, Qt::Key_Backspace, 0, true, false ); | 133 | parent->emitKey( 0, Qt::Key_Backspace, 0, true, false ); |
134 | parent->emitKey( 0, Qt::Key_Backspace, 0, false, false ); | 134 | parent->emitKey( 0, Qt::Key_Backspace, 0, false, false ); |
135 | } | 135 | } |
136 | for (int i=0; i<(int)s.length(); i++) { | 136 | for (int i=0; i<(int)s.length(); i++) { |
137 | parent->emitKey( s[i].unicode(), 0, 0, true, false ); | 137 | parent->emitKey( s[i].unicode(), 0, 0, true, false ); |
138 | parent->emitKey( s[i].unicode(), 0, 0, false, false ); | 138 | parent->emitKey( s[i].unicode(), 0, 0, false, false ); |
139 | } | 139 | } |
140 | parent->emitKey( 0, Qt::Key_Space, 0, true, false ); | 140 | parent->emitKey( 0, Qt::Key_Space, 0, true, false ); |
141 | parent->emitKey( 0, Qt::Key_Space, 0, false, false ); | 141 | parent->emitKey( 0, Qt::Key_Space, 0, false, false ); |
142 | backspaces = 0; | 142 | backspaces = 0; |
143 | #endif | 143 | #endif |
144 | } | 144 | } |
145 | 145 | ||
146 | 146 | ||
147 | 147 | ||
148 | 148 | ||
149 | /* Keyboard::paintEvent {{{1 */ | 149 | /* Keyboard::paintEvent {{{1 */ |
150 | void Keyboard::paintEvent(QPaintEvent* e) | 150 | void Keyboard::paintEvent(QPaintEvent* e) |
151 | { | 151 | { |
152 | QPainter painter(this); | 152 | QPainter painter(this); |
153 | painter.setClipRect(e->rect()); | 153 | painter.setClipRect(e->rect()); |
154 | drawKeyboard( painter ); | 154 | drawKeyboard( painter ); |
155 | picks->dc->draw( &painter ); | 155 | picks->dc->draw( &painter ); |
156 | } | 156 | } |
157 | 157 | ||
158 | 158 | ||
159 | /* Keyboard::drawKeyboard {{{1 */ | 159 | /* Keyboard::drawKeyboard {{{1 */ |
160 | 160 | ||
161 | void Keyboard::drawKeyboard(QPainter &p, int row, int col) | 161 | void Keyboard::drawKeyboard(QPainter &p, int row, int col) |
162 | { | 162 | { |
163 | 163 | ||
164 | 164 | ||
165 | if (row != -1 && col != -1) { //just redraw one key | 165 | if (row != -1 && col != -1) { //just redraw one key |
166 | 166 | ||
167 | int x = 0; | 167 | int x = 0; |
168 | for (int i = 0; i < col; i++) { | 168 | for (int i = 0; i < col; i++) { |
169 | 169 | ||
170 | x += keys->width(row, i) * defaultKeyWidth; | 170 | x += keys->width(row, i) * defaultKeyWidth; |
171 | } | 171 | } |
172 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); | 172 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); |
173 | 173 | ||
174 | int keyWidth = keys->width(row, col); | 174 | int keyWidth = keys->width(row, col); |
175 | 175 | ||
176 | p.fillRect(x + 1, y + 1, | 176 | p.fillRect(x + 1, y + 1, |
177 | keyWidth * defaultKeyWidth - 1, keyHeight - 1, | 177 | keyWidth * defaultKeyWidth - 1, keyHeight - 1, |
178 | pressed || keys->pressed(row, col) ? keycolor_pressed : keycolor); | 178 | pressed || keys->pressed(row, col) ? keycolor_pressed : keycolor); |
179 | 179 | ||
180 | QPixmap *pix = keys->pix(row,col); | 180 | QImage *pix = keys->pix(row,col); |
181 | 181 | ||
182 | ushort c = keys->uni(row, col); | 182 | ushort c = keys->uni(row, col); |
183 | 183 | ||
184 | p.setPen(textcolor); | 184 | p.setPen(textcolor); |
185 | if (!pix) { | 185 | if (!pix) { |
186 | if (shift || lock) | 186 | if (shift || lock) |
187 | c = keys->shift(c); | 187 | c = keys->shift(c); |
188 | if (meta) { | 188 | if (meta) { |
189 | 189 | ||
190 | c = keys->meta(c); | 190 | c = keys->meta(c); |
191 | } | 191 | } |
192 | p.drawText(x, y, | 192 | p.drawText(x, y, |
193 | defaultKeyWidth * keyWidth + 3, keyHeight, | 193 | defaultKeyWidth * keyWidth + 3, keyHeight, |
194 | AlignCenter, (QChar)c); | 194 | AlignCenter, (QChar)c); |
195 | } | 195 | } |
196 | else | 196 | else |
197 | // center the image in the middle of the key | 197 | // center the image in the middle of the key |
198 | p.drawPixmap( x + (defaultKeyWidth * keyWidth - pix->width())/2, | 198 | p.drawImage( x + (defaultKeyWidth * keyWidth - pix->width())/2, |
199 | y + (keyHeight - pix->height())/2 + 1, | 199 | y + (keyHeight - pix->height())/2 + 1, |
200 | *pix ); | 200 | *pix ); |
201 | 201 | ||
202 | // this fixes the problem that the very right end of the board's vertical line | 202 | // this fixes the problem that the very right end of the board's vertical line |
203 | // gets painted over, because it's one pixel shorter than all other keys | 203 | // gets painted over, because it's one pixel shorter than all other keys |
204 | p.setPen(keycolor_lines); | 204 | p.setPen(keycolor_lines); |
205 | p.drawLine(width() - 1, 0, width() - 1, height()); | 205 | p.drawLine(width() - 1, 0, width() - 1, height()); |
206 | 206 | ||
207 | } else { | 207 | } else { |
208 | 208 | ||
209 | 209 | ||
210 | p.fillRect(0, 0, width(), height(), keycolor); | 210 | p.fillRect(0, 0, width(), height(), keycolor); |
211 | 211 | ||
212 | for (row = 1; row <= 5; row++) { | 212 | for (row = 1; row <= 5; row++) { |
213 | 213 | ||
214 | int x = 0; | 214 | int x = 0; |
215 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); | 215 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); |
216 | 216 | ||
217 | p.setPen(keycolor_lines); | 217 | p.setPen(keycolor_lines); |
218 | p.drawLine(x, y, x + width(), y); | 218 | p.drawLine(x, y, x + width(), y); |
219 | 219 | ||
220 | for (int col = 0; col < keys->numKeys(row); col++) { | 220 | for (int col = 0; col < keys->numKeys(row); col++) { |
221 | 221 | ||
222 | QPixmap *pix = keys->pix(row, col); | 222 | QImage *pix = keys->pix(row, col); |
223 | int keyWidth = keys->width(row, col); | 223 | int keyWidth = keys->width(row, col); |
224 | 224 | ||
225 | 225 | ||
226 | int keyWidthPix = defaultKeyWidth * keyWidth; | 226 | int keyWidthPix = defaultKeyWidth * keyWidth; |
227 | 227 | ||
228 | if (keys->pressed(row, col)) | 228 | if (keys->pressed(row, col)) |
229 | p.fillRect(x+1, y+1, keyWidthPix - 1, | 229 | p.fillRect(x+1, y+1, keyWidthPix - 1, |
230 | keyHeight - 1, keycolor_pressed); | 230 | keyHeight - 1, keycolor_pressed); |
231 | 231 | ||
232 | ushort c = keys->uni(row, col); | 232 | ushort c = keys->uni(row, col); |
233 | 233 | ||
234 | p.setPen(textcolor); | 234 | p.setPen(textcolor); |
235 | if (!pix) { | 235 | if (!pix) { |
236 | if ((shift || lock) && keys->shift(c)) | 236 | if ((shift || lock) && keys->shift(c)) |
237 | c = keys->shift(c); | 237 | c = keys->shift(c); |
238 | else if (meta && keys->meta(c)) | 238 | else if (meta && keys->meta(c)) |
239 | c = keys->meta(c); | 239 | c = keys->meta(c); |
240 | 240 | ||
241 | p.drawText(x, y, | 241 | p.drawText(x, y, |
242 | keyWidthPix + 3, keyHeight, | 242 | keyWidthPix + 3, keyHeight, |
243 | AlignCenter, (QChar)c); | 243 | AlignCenter, (QChar)c); |
244 | } | 244 | } |
245 | else { | 245 | else { |
246 | // center the image in the middle of the key | 246 | // center the image in the middle of the key |
247 | p.drawPixmap( x + (keyWidthPix - pix->width())/2, | 247 | pix->setColor(1, textcolor.rgb()); |
248 | p.drawImage( x + (keyWidthPix - pix->width())/2, | ||
248 | y + (keyHeight - pix->height())/2 + 1, | 249 | y + (keyHeight - pix->height())/2 + 1, |
249 | QPixmap(*pix) ); | 250 | QImage(*pix) ); |
250 | } | 251 | } |
251 | 252 | ||
252 | p.setPen(keycolor_lines); | 253 | p.setPen(keycolor_lines); |
253 | p.drawLine(x, y, x, y + keyHeight); | 254 | p.drawLine(x, y, x, y + keyHeight); |
254 | 255 | ||
255 | x += keyWidthPix; | 256 | x += keyWidthPix; |
256 | } | 257 | } |
257 | 258 | ||
258 | 259 | ||
259 | } | 260 | } |
260 | p.setPen(keycolor_lines); | 261 | p.setPen(keycolor_lines); |
261 | p.drawLine(0, height() - 1, width(), height() - 1); | 262 | p.drawLine(0, height() - 1, width(), height() - 1); |
262 | p.drawLine(width() - 1, 0, width() - 1, height()); | 263 | p.drawLine(width() - 1, 0, width() - 1, height()); |
263 | } | 264 | } |
264 | 265 | ||
265 | } | 266 | } |
266 | 267 | ||
267 | 268 | ||
268 | /* Keyboard::mousePressEvent {{{1 */ | 269 | /* Keyboard::mousePressEvent {{{1 */ |
269 | void Keyboard::mousePressEvent(QMouseEvent *e) | 270 | void Keyboard::mousePressEvent(QMouseEvent *e) |
270 | { | 271 | { |
271 | int row = (e->y() - (usePicks ? picks->height() : 0)) / keyHeight + 1; | 272 | int row = (e->y() - (usePicks ? picks->height() : 0)) / keyHeight + 1; |
272 | if (row > 5) row = 5; | 273 | if (row > 5) row = 5; |
273 | 274 | ||
274 | // figure out the column | 275 | // figure out the column |
275 | int col = 0; | 276 | int col = 0; |
276 | for (int w = 0; e->x() >= w; col++) | 277 | for (int w = 0; e->x() >= w; col++) |
277 | if (col < keys->numKeys(row)) // it segfaults if it trys to read past numKeys | 278 | if (col < keys->numKeys(row)) // it segfaults if it trys to read past numKeys |
278 | w += keys->width(row,col) * defaultKeyWidth; | 279 | w += keys->width(row,col) * defaultKeyWidth; |
279 | else break; | 280 | else break; |
280 | 281 | ||
281 | if (col <= 0) return; | 282 | if (col <= 0) return; |
282 | 283 | ||
283 | col --; // rewind one... | 284 | col --; // rewind one... |
284 | 285 | ||
285 | qkeycode = keys->qcode(row, col); | 286 | qkeycode = keys->qcode(row, col); |
286 | unicode = keys->uni(row, col); | 287 | unicode = keys->uni(row, col); |
287 | 288 | ||
288 | // might need to repaint if two or more of the same keys. | 289 | // might need to repaint if two or more of the same keys. |
289 | // should be faster if just paint one key even though multiple keys exist. | 290 | // should be faster if just paint one key even though multiple keys exist. |
290 | bool need_repaint = FALSE; | 291 | bool need_repaint = FALSE; |
291 | 292 | ||
292 | if (unicode == 0) { // either Qt char, or nothing | 293 | if (unicode == 0) { // either Qt char, or nothing |
293 | 294 | ||
294 | if (qkeycode == Qt::Key_F1) { // toggle the pickboard | 295 | if (qkeycode == Qt::Key_F1) { // toggle the pickboard |
295 | 296 | ||
296 | if ( configdlg ) { | 297 | if ( configdlg ) { |
297 | delete (ConfigDlg *) configdlg; | 298 | delete (ConfigDlg *) configdlg; |
298 | configdlg = 0; | 299 | configdlg = 0; |
299 | } | 300 | } |
300 | else { | 301 | else { |
301 | configdlg = new ConfigDlg (); | 302 | configdlg = new ConfigDlg (); |
302 | connect(configdlg, SIGNAL(setMapToDefault()), | 303 | connect(configdlg, SIGNAL(setMapToDefault()), |
303 | this, SLOT(setMapToDefault())); | 304 | this, SLOT(setMapToDefault())); |
304 | connect(configdlg, SIGNAL(setMapToFile(QString)), | 305 | connect(configdlg, SIGNAL(setMapToFile(QString)), |
305 | this, SLOT(setMapToFile(QString))); | 306 | this, SLOT(setMapToFile(QString))); |
306 | connect(configdlg, SIGNAL(pickboardToggled(bool)), | 307 | connect(configdlg, SIGNAL(pickboardToggled(bool)), |
307 | this, SLOT(togglePickboard(bool))); | 308 | this, SLOT(togglePickboard(bool))); |
308 | connect(configdlg, SIGNAL(repeatToggled(bool)), | 309 | connect(configdlg, SIGNAL(repeatToggled(bool)), |
309 | this, SLOT(toggleRepeat(bool))); | 310 | this, SLOT(toggleRepeat(bool))); |
310 | connect(configdlg, SIGNAL(reloadKeyboard()), | 311 | connect(configdlg, SIGNAL(reloadKeyboard()), |
311 | this, SLOT(reloadKeyboard())); | 312 | this, SLOT(reloadKeyboard())); |
312 | configdlg->showMaximized(); | 313 | configdlg->showMaximized(); |
313 | configdlg->show(); | 314 | configdlg->show(); |
314 | configdlg->raise(); | 315 | configdlg->raise(); |
315 | } | 316 | } |
316 | 317 | ||
317 | } else if (qkeycode == Qt::Key_Control) { | 318 | } else if (qkeycode == Qt::Key_Control) { |
318 | need_repaint = TRUE; | 319 | need_repaint = TRUE; |
319 | 320 | ||
320 | if (ctrl) { | 321 | if (ctrl) { |
321 | 322 | ||
322 | *ctrl = 0; | 323 | *ctrl = 0; |
323 | ctrl = 0; | 324 | ctrl = 0; |
324 | 325 | ||
325 | } else { | 326 | } else { |
326 | 327 | ||
327 | ctrl = keys->pressedPtr(row, col); | 328 | ctrl = keys->pressedPtr(row, col); |
328 | need_repaint = TRUE; | 329 | need_repaint = TRUE; |
329 | *ctrl = !keys->pressed(row, col); | 330 | *ctrl = !keys->pressed(row, col); |
330 | 331 | ||
331 | } | 332 | } |
332 | 333 | ||
333 | } else if (qkeycode == Qt::Key_Alt) { | 334 | } else if (qkeycode == Qt::Key_Alt) { |
334 | need_repaint = TRUE; | 335 | need_repaint = TRUE; |
335 | 336 | ||
336 | if (alt) { | 337 | if (alt) { |
337 | *alt = 0; | 338 | *alt = 0; |
338 | alt = 0; | 339 | alt = 0; |
339 | 340 | ||
340 | } else { | 341 | } else { |
341 | 342 | ||
342 | alt = keys->pressedPtr(row, col); | 343 | alt = keys->pressedPtr(row, col); |
343 | need_repaint = TRUE; | 344 | need_repaint = TRUE; |
344 | *alt = !keys->pressed(row, col); | 345 | *alt = !keys->pressed(row, col); |
345 | } | 346 | } |
@@ -951,314 +952,314 @@ ushort Keyboard::constoe(const ushort c) { | |||
951 | // converts schars to echars if possible | 952 | // converts schars to echars if possible |
952 | 953 | ||
953 | if (0x1100 <= c && c <= 0x1112) { // schar to echar | 954 | if (0x1100 <= c && c <= 0x1112) { // schar to echar |
954 | 955 | ||
955 | switch (c) { | 956 | switch (c) { |
956 | case 0x1100: return 0x11a8; | 957 | case 0x1100: return 0x11a8; |
957 | case 0x1101: return 0x11a9; | 958 | case 0x1101: return 0x11a9; |
958 | case 0x1102: return 0x11ab; | 959 | case 0x1102: return 0x11ab; |
959 | case 0x1103: return 0x11ae; | 960 | case 0x1103: return 0x11ae; |
960 | case 0x1105: return 0x11af; | 961 | case 0x1105: return 0x11af; |
961 | case 0x1106: return 0x11b7; | 962 | case 0x1106: return 0x11b7; |
962 | case 0x1107: return 0x11b8; | 963 | case 0x1107: return 0x11b8; |
963 | case 0x1109: return 0x11ba; | 964 | case 0x1109: return 0x11ba; |
964 | case 0x110a: return 0x11bb; | 965 | case 0x110a: return 0x11bb; |
965 | case 0x110b: return 0x11bc; | 966 | case 0x110b: return 0x11bc; |
966 | case 0x110c: return 0x11bd; | 967 | case 0x110c: return 0x11bd; |
967 | case 0x110e: return 0x11be; | 968 | case 0x110e: return 0x11be; |
968 | case 0x110f: return 0x11bf; | 969 | case 0x110f: return 0x11bf; |
969 | case 0x1110: return 0x11c0; | 970 | case 0x1110: return 0x11c0; |
970 | case 0x1111: return 0x11c1; | 971 | case 0x1111: return 0x11c1; |
971 | case 0x1112: return 0x11c2; | 972 | case 0x1112: return 0x11c2; |
972 | default: return 0; | 973 | default: return 0; |
973 | 974 | ||
974 | } | 975 | } |
975 | 976 | ||
976 | } else { //echar to schar | 977 | } else { //echar to schar |
977 | 978 | ||
978 | switch (c) { | 979 | switch (c) { |
979 | case 0x11a8: return 0x1100; | 980 | case 0x11a8: return 0x1100; |
980 | case 0x11a9: return 0x1101; | 981 | case 0x11a9: return 0x1101; |
981 | case 0x11ab: return 0x1102; | 982 | case 0x11ab: return 0x1102; |
982 | case 0x11ae: return 0x1103; | 983 | case 0x11ae: return 0x1103; |
983 | case 0x11af: return 0x1105; | 984 | case 0x11af: return 0x1105; |
984 | case 0x11b7: return 0x1106; | 985 | case 0x11b7: return 0x1106; |
985 | case 0x11b8: return 0x1107; | 986 | case 0x11b8: return 0x1107; |
986 | case 0x11ba: return 0x1109; | 987 | case 0x11ba: return 0x1109; |
987 | case 0x11bb: return 0x110a; | 988 | case 0x11bb: return 0x110a; |
988 | case 0x11bc: return 0x110b; | 989 | case 0x11bc: return 0x110b; |
989 | case 0x11bd: return 0x110c; | 990 | case 0x11bd: return 0x110c; |
990 | case 0x11be: return 0x110e; | 991 | case 0x11be: return 0x110e; |
991 | case 0x11bf: return 0x110f; | 992 | case 0x11bf: return 0x110f; |
992 | case 0x11c0: return 0x1110; | 993 | case 0x11c0: return 0x1110; |
993 | case 0x11c1: return 0x1111; | 994 | case 0x11c1: return 0x1111; |
994 | case 0x11c2: return 0x1112; | 995 | case 0x11c2: return 0x1112; |
995 | default: return 0; | 996 | default: return 0; |
996 | 997 | ||
997 | } | 998 | } |
998 | 999 | ||
999 | } | 1000 | } |
1000 | } | 1001 | } |
1001 | 1002 | ||
1002 | 1003 | ||
1003 | // Keys::Keys {{{1 | 1004 | // Keys::Keys {{{1 |
1004 | 1005 | ||
1005 | Keys::Keys() { | 1006 | Keys::Keys() { |
1006 | 1007 | ||
1007 | Config *config = new Config ("multikey"); | 1008 | Config *config = new Config ("multikey"); |
1008 | config->setGroup( "keymaps" ); | 1009 | config->setGroup( "keymaps" ); |
1009 | QString map = config->readEntry( "current" ); | 1010 | QString map = config->readEntry( "current" ); |
1010 | delete config; | 1011 | delete config; |
1011 | 1012 | ||
1012 | if (map.isNull() || !(QFile(map).exists())) { | 1013 | if (map.isNull() || !(QFile(map).exists())) { |
1013 | 1014 | ||
1014 | Config *config = new Config("locale"); | 1015 | Config *config = new Config("locale"); |
1015 | config->setGroup( "Language" ); | 1016 | config->setGroup( "Language" ); |
1016 | QString l = config->readEntry( "Language" , "en" ); | 1017 | QString l = config->readEntry( "Language" , "en" ); |
1017 | delete config; | 1018 | delete config; |
1018 | 1019 | ||
1019 | map = QPEApplication::qpeDir() + "/share/multikey/" | 1020 | map = QPEApplication::qpeDir() + "/share/multikey/" |
1020 | + l + ".keymap"; | 1021 | + l + ".keymap"; |
1021 | 1022 | ||
1022 | } | 1023 | } |
1023 | 1024 | ||
1024 | setKeysFromFile(map); | 1025 | setKeysFromFile(map); |
1025 | } | 1026 | } |
1026 | 1027 | ||
1027 | Keys::Keys(const char * filename) { | 1028 | Keys::Keys(const char * filename) { |
1028 | 1029 | ||
1029 | setKeysFromFile(filename); | 1030 | setKeysFromFile(filename); |
1030 | } | 1031 | } |
1031 | 1032 | ||
1032 | // Keys::setKeysFromFile {{{2 | 1033 | // Keys::setKeysFromFile {{{2 |
1033 | void Keys::setKeysFromFile(const char * filename) { | 1034 | void Keys::setKeysFromFile(const char * filename) { |
1034 | 1035 | ||
1035 | QFile f(filename); | 1036 | QFile f(filename); |
1036 | 1037 | ||
1037 | if (f.open(IO_ReadOnly)) { | 1038 | if (f.open(IO_ReadOnly)) { |
1038 | 1039 | ||
1039 | QTextStream t(&f); | 1040 | QTextStream t(&f); |
1040 | int row; | 1041 | int row; |
1041 | int qcode; | 1042 | int qcode; |
1042 | ushort unicode; | 1043 | ushort unicode; |
1043 | int width; | 1044 | int width; |
1044 | QString buf; | 1045 | QString buf; |
1045 | QString comment; | 1046 | QString comment; |
1046 | char * xpm[256]; //couldnt be larger than that... could it? | 1047 | char * xpm[256]; //couldnt be larger than that... could it? |
1047 | QPixmap *xpm2pix = 0; | 1048 | QImage *xpm2pix = 0; |
1048 | 1049 | ||
1049 | buf = t.readLine(); | 1050 | buf = t.readLine(); |
1050 | while (buf) { | 1051 | while (buf) { |
1051 | 1052 | ||
1052 | // get rid of comments | 1053 | // get rid of comments |
1053 | buf.replace(QRegExp("#.*$", FALSE, FALSE), ""); | 1054 | buf.replace(QRegExp("#.*$", FALSE, FALSE), ""); |
1054 | 1055 | ||
1055 | // key definition | 1056 | // key definition |
1056 | if (buf.contains(QRegExp("^\\d+\\s+[0-1a-fx]+", FALSE, FALSE))) { | 1057 | if (buf.contains(QRegExp("^\\d+\\s+[0-1a-fx]+", FALSE, FALSE))) { |
1057 | // no $1 type referencing!!! this implementation of regexp sucks | 1058 | // no $1 type referencing!!! this implementation of regexp sucks |
1058 | 1059 | ||
1059 | // dont know of any sscanf() type funcs in Qt lib | 1060 | // dont know of any sscanf() type funcs in Qt lib |
1060 | QTextStream tmp (buf, IO_ReadOnly); | 1061 | QTextStream tmp (buf, IO_ReadOnly); |
1061 | tmp >> row >> qcode >> unicode >> width >> comment; | 1062 | tmp >> row >> qcode >> unicode >> width >> comment; |
1062 | 1063 | ||
1063 | buf = t.readLine(); | 1064 | buf = t.readLine(); |
1064 | int xpmLineCount = 0; | 1065 | int xpmLineCount = 0; |
1065 | xpm2pix = 0; | 1066 | xpm2pix = 0; |
1066 | 1067 | ||
1067 | // erase blank space | 1068 | // erase blank space |
1068 | while (buf.contains(QRegExp("^\\s*$")) && buf) buf = t.readLine(); | 1069 | while (buf.contains(QRegExp("^\\s*$")) && buf) buf = t.readLine(); |
1069 | 1070 | ||
1070 | while (buf.contains(QRegExp("^\\s*\".*\""))) { | 1071 | while (buf.contains(QRegExp("^\\s*\".*\""))) { |
1071 | 1072 | ||
1072 | QString xpmBuf = buf.stripWhiteSpace(); | 1073 | QString xpmBuf = buf.stripWhiteSpace(); |
1073 | 1074 | ||
1074 | xpm[xpmLineCount] = new char [xpmBuf.length()]; | 1075 | xpm[xpmLineCount] = new char [xpmBuf.length()]; |
1075 | 1076 | ||
1076 | int j = 0; | 1077 | int j = 0; |
1077 | for (ushort i = 0; i < xpmBuf.length(); i++) { | 1078 | for (ushort i = 0; i < xpmBuf.length(); i++) { |
1078 | if (xpmBuf[i].latin1() != '"') { | 1079 | if (xpmBuf[i].latin1() != '"') { |
1079 | 1080 | ||
1080 | ((char *)xpm[xpmLineCount])[j] = xpmBuf.at(i).latin1(); | 1081 | ((char *)xpm[xpmLineCount])[j] = xpmBuf.at(i).latin1(); |
1081 | j++; | 1082 | j++; |
1082 | } | 1083 | } |
1083 | 1084 | ||
1084 | } | 1085 | } |
1085 | // have to close that facker up | 1086 | // have to close that facker up |
1086 | ((char *)xpm[xpmLineCount])[j] = '\0'; | 1087 | ((char *)xpm[xpmLineCount])[j] = '\0'; |
1087 | 1088 | ||
1088 | xpmLineCount++; | 1089 | xpmLineCount++; |
1089 | buf = t.readLine(); | 1090 | buf = t.readLine(); |
1090 | } | 1091 | } |
1091 | if (xpmLineCount) { | 1092 | if (xpmLineCount) { |
1092 | 1093 | ||
1093 | xpm2pix = new QPixmap((const char **)xpm); | 1094 | xpm2pix = new QImage((const char **)xpm); |
1094 | for (int i = 0; i < xpmLineCount; i++) | 1095 | for (int i = 0; i < xpmLineCount; i++) |
1095 | 1096 | ||
1096 | delete [] (xpm[i]); | 1097 | delete [] (xpm[i]); |
1097 | 1098 | ||
1098 | } | 1099 | } |
1099 | setKey(row, qcode, unicode, width, xpm2pix); | 1100 | setKey(row, qcode, unicode, width, xpm2pix); |
1100 | } | 1101 | } |
1101 | 1102 | ||
1102 | // shift map | 1103 | // shift map |
1103 | else if (buf.contains(QRegExp("^[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { | 1104 | else if (buf.contains(QRegExp("^[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { |
1104 | 1105 | ||
1105 | QTextStream tmp (buf, IO_ReadOnly); | 1106 | QTextStream tmp (buf, IO_ReadOnly); |
1106 | ushort lower, shift; | 1107 | ushort lower, shift; |
1107 | tmp >> lower >> shift; | 1108 | tmp >> lower >> shift; |
1108 | 1109 | ||
1109 | shiftMap.insert(lower, shift); | 1110 | shiftMap.insert(lower, shift); |
1110 | 1111 | ||
1111 | buf = t.readLine(); | 1112 | buf = t.readLine(); |
1112 | } | 1113 | } |
1113 | 1114 | ||
1114 | // meta key map | 1115 | // meta key map |
1115 | else if (buf.contains(QRegExp("^\\s*m\\s+[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { | 1116 | else if (buf.contains(QRegExp("^\\s*m\\s+[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { |
1116 | 1117 | ||
1117 | QTextStream tmp (buf, IO_ReadOnly); | 1118 | QTextStream tmp (buf, IO_ReadOnly); |
1118 | ushort lower, shift; | 1119 | ushort lower, shift; |
1119 | QChar m; | 1120 | QChar m; |
1120 | tmp >> m >> lower >> shift; | 1121 | tmp >> m >> lower >> shift; |
1121 | 1122 | ||
1122 | metaMap.insert(lower, shift); | 1123 | metaMap.insert(lower, shift); |
1123 | 1124 | ||
1124 | buf = t.readLine(); | 1125 | buf = t.readLine(); |
1125 | } | 1126 | } |
1126 | 1127 | ||
1127 | // other variables like lang & title | 1128 | // other variables like lang & title |
1128 | else if (buf.contains(QRegExp("^\\s*[a-zA-Z]+\\s*=\\s*[a-zA-Z0-9/]+\\s*$", FALSE, FALSE))) { | 1129 | else if (buf.contains(QRegExp("^\\s*[a-zA-Z]+\\s*=\\s*[a-zA-Z0-9/]+\\s*$", FALSE, FALSE))) { |
1129 | 1130 | ||
1130 | QTextStream tmp (buf, IO_ReadOnly); | 1131 | QTextStream tmp (buf, IO_ReadOnly); |
1131 | QString name, equals, value; | 1132 | QString name, equals, value; |
1132 | 1133 | ||
1133 | tmp >> name >> equals >> value; | 1134 | tmp >> name >> equals >> value; |
1134 | 1135 | ||
1135 | if (name == "lang") { | 1136 | if (name == "lang") { |
1136 | 1137 | ||
1137 | lang = value; | 1138 | lang = value; |
1138 | 1139 | ||
1139 | } | 1140 | } |
1140 | 1141 | ||
1141 | buf = t.readLine(); | 1142 | buf = t.readLine(); |
1142 | } | 1143 | } |
1143 | // comments | 1144 | // comments |
1144 | else if (buf.contains(QRegExp("^\\s*#"))) { | 1145 | else if (buf.contains(QRegExp("^\\s*#"))) { |
1145 | 1146 | ||
1146 | buf = t.readLine(); | 1147 | buf = t.readLine(); |
1147 | 1148 | ||
1148 | } else { // blank line, or garbage | 1149 | } else { // blank line, or garbage |
1149 | 1150 | ||
1150 | buf = t.readLine(); | 1151 | buf = t.readLine(); |
1151 | 1152 | ||
1152 | } | 1153 | } |
1153 | 1154 | ||
1154 | } | 1155 | } |
1155 | f.close(); | 1156 | f.close(); |
1156 | } | 1157 | } |
1157 | 1158 | ||
1158 | } | 1159 | } |
1159 | 1160 | ||
1160 | // Keys::setKey {{{2 | 1161 | // Keys::setKey {{{2 |
1161 | void Keys::setKey(const int row, const int qcode, const ushort unicode, | 1162 | void Keys::setKey(const int row, const int qcode, const ushort unicode, |
1162 | const int width, QPixmap *pix) { | 1163 | const int width, QImage *pix) { |
1163 | 1164 | ||
1164 | Key * key; | 1165 | Key * key; |
1165 | key = new Key; | 1166 | key = new Key; |
1166 | key->qcode = qcode; | 1167 | key->qcode = qcode; |
1167 | key->unicode = unicode; | 1168 | key->unicode = unicode; |
1168 | key->width = width; | 1169 | key->width = width; |
1169 | 1170 | ||
1170 | // share key->pressed between same keys | 1171 | // share key->pressed between same keys |
1171 | bool found = 0; | 1172 | bool found = 0; |
1172 | for (int i = 1; i <= 5; i++) { | 1173 | for (int i = 1; i <= 5; i++) { |
1173 | for (unsigned int j = 0; j < keys[i].count(); j++) | 1174 | for (unsigned int j = 0; j < keys[i].count(); j++) |
1174 | if (keys[i].at(j)->qcode == qcode && keys[i].at(j)->unicode == unicode) { | 1175 | if (keys[i].at(j)->qcode == qcode && keys[i].at(j)->unicode == unicode) { |
1175 | 1176 | ||
1176 | key->pressed = keys[i].at(j)->pressed; | 1177 | key->pressed = keys[i].at(j)->pressed; |
1177 | found = 1; | 1178 | found = 1; |
1178 | } | 1179 | } |
1179 | 1180 | ||
1180 | } | 1181 | } |
1181 | if (!found) { | 1182 | if (!found) { |
1182 | 1183 | ||
1183 | key->pressed = new bool; | 1184 | key->pressed = new bool; |
1184 | *(key->pressed) = 0; | 1185 | *(key->pressed) = 0; |
1185 | } | 1186 | } |
1186 | 1187 | ||
1187 | key->pix = pix; | 1188 | key->pix = pix; |
1188 | 1189 | ||
1189 | 1190 | ||
1190 | keys[row].append(key); | 1191 | keys[row].append(key); |
1191 | } | 1192 | } |
1192 | 1193 | ||
1193 | // Keys::~Keys {{{2 | 1194 | // Keys::~Keys {{{2 |
1194 | Keys::~Keys() { | 1195 | Keys::~Keys() { |
1195 | 1196 | ||
1196 | for (int i = 1; i <= 5; i++) | 1197 | for (int i = 1; i <= 5; i++) |
1197 | for (unsigned int j = 0; j < keys[i].count(); j++) | 1198 | for (unsigned int j = 0; j < keys[i].count(); j++) |
1198 | delete keys[i].at(j); | 1199 | delete keys[i].at(j); |
1199 | 1200 | ||
1200 | } | 1201 | } |
1201 | 1202 | ||
1202 | // Keys:: other functions {{{2 | 1203 | // Keys:: other functions {{{2 |
1203 | int Keys::width(const int row, const int col) { | 1204 | int Keys::width(const int row, const int col) { |
1204 | 1205 | ||
1205 | return keys[row].at(col)->width; | 1206 | return keys[row].at(col)->width; |
1206 | 1207 | ||
1207 | } | 1208 | } |
1208 | ushort Keys::uni(const int row, const int col) { | 1209 | ushort Keys::uni(const int row, const int col) { |
1209 | 1210 | ||
1210 | return keys[row].at(col)->unicode; | 1211 | return keys[row].at(col)->unicode; |
1211 | 1212 | ||
1212 | } | 1213 | } |
1213 | 1214 | ||
1214 | int Keys::qcode(const int row, const int col) { | 1215 | int Keys::qcode(const int row, const int col) { |
1215 | 1216 | ||
1216 | return keys[row].at(col)->qcode; | 1217 | return keys[row].at(col)->qcode; |
1217 | } | 1218 | } |
1218 | 1219 | ||
1219 | QPixmap *Keys::pix(const int row, const int col) { | 1220 | QImage *Keys::pix(const int row, const int col) { |
1220 | 1221 | ||
1221 | return keys[row].at(col)->pix; | 1222 | return keys[row].at(col)->pix; |
1222 | 1223 | ||
1223 | } | 1224 | } |
1224 | bool Keys::pressed(const int row, const int col) { | 1225 | bool Keys::pressed(const int row, const int col) { |
1225 | 1226 | ||
1226 | return *(keys[row].at(col)->pressed); | 1227 | return *(keys[row].at(col)->pressed); |
1227 | } | 1228 | } |
1228 | 1229 | ||
1229 | int Keys::numKeys(const int row) { | 1230 | int Keys::numKeys(const int row) { |
1230 | 1231 | ||
1231 | return keys[row].count(); | 1232 | return keys[row].count(); |
1232 | } | 1233 | } |
1233 | 1234 | ||
1234 | void Keys::setPressed(const int row, const int col, const bool pressed) { | 1235 | void Keys::setPressed(const int row, const int col, const bool pressed) { |
1235 | 1236 | ||
1236 | *(keys[row].at(col)->pressed) = pressed; | 1237 | *(keys[row].at(col)->pressed) = pressed; |
1237 | } | 1238 | } |
1238 | 1239 | ||
1239 | ushort Keys::shift(const ushort uni) { | 1240 | ushort Keys::shift(const ushort uni) { |
1240 | 1241 | ||
1241 | if (shiftMap[uni]) { | 1242 | if (shiftMap[uni]) { |
1242 | 1243 | ||
1243 | return shiftMap[uni]; | 1244 | return shiftMap[uni]; |
1244 | } | 1245 | } |
1245 | else | 1246 | else |
1246 | return 0; | 1247 | return 0; |
1247 | 1248 | ||
1248 | } | 1249 | } |
1249 | 1250 | ||
1250 | ushort Keys::meta(const ushort uni) { | 1251 | ushort Keys::meta(const ushort uni) { |
1251 | 1252 | ||
1252 | if (metaMap[uni]) { | 1253 | if (metaMap[uni]) { |
1253 | 1254 | ||
1254 | return metaMap[uni]; | 1255 | return metaMap[uni]; |
1255 | } | 1256 | } |
1256 | else | 1257 | else |
1257 | return 0; | 1258 | return 0; |
1258 | 1259 | ||
1259 | } | 1260 | } |
1260 | 1261 | ||
1261 | bool *Keys::pressedPtr(const int row, const int col) { | 1262 | bool *Keys::pressedPtr(const int row, const int col) { |
1262 | 1263 | ||
1263 | return keys[row].at(col)->pressed; | 1264 | return keys[row].at(col)->pressed; |
1264 | } | 1265 | } |
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h index b692975..1aa7a35 100644 --- a/inputmethods/multikey/keyboard.h +++ b/inputmethods/multikey/keyboard.h | |||
@@ -1,173 +1,173 @@ | |||
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 <qmap.h> | 21 | #include <qmap.h> |
22 | #include "../pickboard/pickboardcfg.h" | 22 | #include "../pickboard/pickboardcfg.h" |
23 | #include "../pickboard/pickboardpicks.h" | 23 | #include "../pickboard/pickboardpicks.h" |
24 | #include "configdlg.h" | 24 | #include "configdlg.h" |
25 | 25 | ||
26 | class QTimer; | 26 | class QTimer; |
27 | 27 | ||
28 | class KeyboardConfig : public DictFilterConfig | 28 | class KeyboardConfig : public DictFilterConfig |
29 | { | 29 | { |
30 | public: | 30 | public: |
31 | KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } | 31 | KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; } |
32 | virtual void generateText(const QString &s); | 32 | virtual void generateText(const QString &s); |
33 | void decBackspaces() { if (backspaces) backspaces--; } | 33 | void decBackspaces() { if (backspaces) backspaces--; } |
34 | void incBackspaces() { backspaces++; } | 34 | void incBackspaces() { backspaces++; } |
35 | void resetBackspaces() { backspaces = 0; } | 35 | void resetBackspaces() { backspaces = 0; } |
36 | private: | 36 | private: |
37 | int backspaces; | 37 | int backspaces; |
38 | }; | 38 | }; |
39 | 39 | ||
40 | 40 | ||
41 | class KeyboardPicks : public PickboardPicks | 41 | class KeyboardPicks : public PickboardPicks |
42 | { | 42 | { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | public: | 44 | public: |
45 | KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) | 45 | KeyboardPicks(QWidget* parent=0, const char* name=0, WFlags f=0) |
46 | : PickboardPicks(parent, name, f) { } | 46 | : PickboardPicks(parent, name, f) { } |
47 | void initialise(); | 47 | void initialise(); |
48 | virtual QSize sizeHint() const; | 48 | virtual QSize sizeHint() const; |
49 | KeyboardConfig *dc; | 49 | KeyboardConfig *dc; |
50 | }; | 50 | }; |
51 | 51 | ||
52 | 52 | ||
53 | class Keys { | 53 | class Keys { |
54 | public: | 54 | public: |
55 | 55 | ||
56 | Keys(); | 56 | Keys(); |
57 | Keys(const char * filename); | 57 | Keys(const char * filename); |
58 | ~Keys(); | 58 | ~Keys(); |
59 | ushort uni(const int row, const int col); | 59 | ushort uni(const int row, const int col); |
60 | int qcode(const int row, const int col); | 60 | int qcode(const int row, const int col); |
61 | int width(const int row, const int col); | 61 | int width(const int row, const int col); |
62 | bool pressed(const int row, const int col); | 62 | bool pressed(const int row, const int col); |
63 | bool *pressedPtr(const int row, const int col); | 63 | bool *pressedPtr(const int row, const int col); |
64 | ushort shift(const ushort); | 64 | ushort shift(const ushort); |
65 | ushort meta(const ushort); | 65 | ushort meta(const ushort); |
66 | QPixmap *pix(const int row, const int col); | 66 | QImage *pix(const int row, const int col); |
67 | int numKeys(const int row); | 67 | int numKeys(const int row); |
68 | void setKeysFromFile(const char *filename); | 68 | void setKeysFromFile(const char *filename); |
69 | void setKey(const int row, const int qcode, const ushort unicode, | 69 | void setKey(const int row, const int qcode, const ushort unicode, |
70 | const int width, QPixmap *pix); | 70 | const int width, QImage *pix); |
71 | void setPressed(const int row, const int col, const bool pressed); | 71 | void setPressed(const int row, const int col, const bool pressed); |
72 | QString lang; | 72 | QString lang; |
73 | QString label; | 73 | QString label; |
74 | 74 | ||
75 | private: | 75 | private: |
76 | 76 | ||
77 | typedef struct Key { | 77 | typedef struct Key { |
78 | int qcode; // are qt key codes just unicode values? | 78 | int qcode; // are qt key codes just unicode values? |
79 | ushort unicode; | 79 | ushort unicode; |
80 | int width; // not pixels but relative key width. normal key is 2 | 80 | int width; // not pixels but relative key width. normal key is 2 |
81 | 81 | ||
82 | // only needed for keys like ctrl that can have multiple keys pressed at once | 82 | // only needed for keys like ctrl that can have multiple keys pressed at once |
83 | bool *pressed; | 83 | bool *pressed; |
84 | QPixmap *pix; | 84 | QImage *pix; |
85 | }; | 85 | }; |
86 | 86 | ||
87 | QList<Key> keys[6]; | 87 | QList<Key> keys[6]; |
88 | QMap<ushort,ushort> shiftMap; | 88 | QMap<ushort,ushort> shiftMap; |
89 | QMap<ushort,ushort> metaMap; | 89 | QMap<ushort,ushort> metaMap; |
90 | 90 | ||
91 | }; | 91 | }; |
92 | 92 | ||
93 | class Keyboard : public QFrame | 93 | class Keyboard : public QFrame |
94 | { | 94 | { |
95 | Q_OBJECT | 95 | Q_OBJECT |
96 | public: | 96 | public: |
97 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); | 97 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); |
98 | ~Keyboard(); | 98 | ~Keyboard(); |
99 | 99 | ||
100 | void resetState(); | 100 | void resetState(); |
101 | 101 | ||
102 | void mousePressEvent(QMouseEvent*); | 102 | void mousePressEvent(QMouseEvent*); |
103 | void mouseReleaseEvent(QMouseEvent*); | 103 | void mouseReleaseEvent(QMouseEvent*); |
104 | void resizeEvent(QResizeEvent*); | 104 | void resizeEvent(QResizeEvent*); |
105 | void paintEvent(QPaintEvent* e); | 105 | void paintEvent(QPaintEvent* e); |
106 | //void timerEvent(QTimerEvent* e); | 106 | //void timerEvent(QTimerEvent* e); |
107 | void drawKeyboard( QPainter &p, int row = -1, int col = -1); | 107 | void drawKeyboard( QPainter &p, int row = -1, int col = -1); |
108 | 108 | ||
109 | QSize sizeHint() const; | 109 | QSize sizeHint() const; |
110 | 110 | ||
111 | signals: | 111 | signals: |
112 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); | 112 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); |
113 | 113 | ||
114 | private slots: | 114 | private slots: |
115 | void repeat(); | 115 | void repeat(); |
116 | void togglePickboard(bool on_off); | 116 | void togglePickboard(bool on_off); |
117 | void toggleRepeat(bool on_off); | 117 | void toggleRepeat(bool on_off); |
118 | void setMapToDefault(); | 118 | void setMapToDefault(); |
119 | void setMapToFile(QString map); | 119 | void setMapToFile(QString map); |
120 | 120 | ||
121 | // used to redraw keyboard after edited colors | 121 | // used to redraw keyboard after edited colors |
122 | void reloadKeyboard(); | 122 | void reloadKeyboard(); |
123 | 123 | ||
124 | private: | 124 | private: |
125 | int getKey( int &w, int j = -1 ); | 125 | int getKey( int &w, int j = -1 ); |
126 | void clearHighlight(); | 126 | void clearHighlight(); |
127 | 127 | ||
128 | bool *shift; | 128 | bool *shift; |
129 | bool *lock; | 129 | bool *lock; |
130 | bool *ctrl; | 130 | bool *ctrl; |
131 | bool *alt; | 131 | bool *alt; |
132 | bool *meta; | 132 | bool *meta; |
133 | uint useLargeKeys:1; | 133 | uint useLargeKeys:1; |
134 | uint usePicks:1; | 134 | uint usePicks:1; |
135 | uint useRepeat:1; | 135 | uint useRepeat:1; |
136 | 136 | ||
137 | int pressedKeyRow; | 137 | int pressedKeyRow; |
138 | int pressedKeyCol; | 138 | int pressedKeyCol; |
139 | 139 | ||
140 | KeyboardPicks *picks; | 140 | KeyboardPicks *picks; |
141 | 141 | ||
142 | int keyHeight; | 142 | int keyHeight; |
143 | int defaultKeyWidth; | 143 | int defaultKeyWidth; |
144 | int xoffs; | 144 | int xoffs; |
145 | 145 | ||
146 | int unicode; | 146 | int unicode; |
147 | int qkeycode; | 147 | int qkeycode; |
148 | int modifiers; | 148 | int modifiers; |
149 | 149 | ||
150 | int pressTid; | 150 | int pressTid; |
151 | bool pressed; | 151 | bool pressed; |
152 | 152 | ||
153 | Keys *keys; | 153 | Keys *keys; |
154 | 154 | ||
155 | /* for korean input */ | 155 | /* for korean input */ |
156 | ushort schar, mchar, echar; | 156 | ushort schar, mchar, echar; |
157 | ushort parseKoreanInput(ushort c); | 157 | ushort parseKoreanInput(ushort c); |
158 | ushort combineKoreanChars(const ushort s, const ushort m, const ushort e); | 158 | ushort combineKoreanChars(const ushort s, const ushort m, const ushort e); |
159 | ushort constoe(const ushort c); | 159 | ushort constoe(const ushort c); |
160 | 160 | ||
161 | QTimer *repeatTimer; | 161 | QTimer *repeatTimer; |
162 | 162 | ||
163 | /* colors */ | 163 | /* colors */ |
164 | void loadKeyboardColors(); | 164 | void loadKeyboardColors(); |
165 | QColor keycolor; | 165 | QColor keycolor; |
166 | QColor keycolor_pressed; | 166 | QColor keycolor_pressed; |
167 | QColor keycolor_lines; | 167 | QColor keycolor_lines; |
168 | QColor textcolor; | 168 | QColor textcolor; |
169 | 169 | ||
170 | ConfigDlg *configdlg; | 170 | ConfigDlg *configdlg; |
171 | }; | 171 | }; |
172 | 172 | ||
173 | 173 | ||