summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp43
1 files changed, 40 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index 3da8d61..ce65052 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -46,32 +46,68 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) :
46 */ 46 */
47 if (keys.isEmpty()) loadDefaults(); 47 if (keys.isEmpty()) loadDefaults();
48 48
49 49
50 50
51} 51}
52 52
53FunctionKeyboard::~FunctionKeyboard() {} 53FunctionKeyboard::~FunctionKeyboard() {}
54 54
55void FunctionKeyboard::changeRows(int r) { 55void FunctionKeyboard::changeRows(int r) {
56 56
57 numRows = r; 57 numRows = r;
58 repaint(false); 58
59 // have to do this so the whole thing gets redrawn
60 hide(); show();
59} 61}
60void FunctionKeyboard::changeCols(int c) { 62void FunctionKeyboard::changeCols(int c) {
61 63
62 numCols = c; 64 numCols = c;
63 keyWidth = (double)width()/numCols; // have to reset this thing too 65 keyWidth = (double)width()/numCols; // have to reset this thing too
64 repaint(false); 66 repaint(false);
65} 67}
68void FunctionKeyboard::load (const Profile& prof) {
69
70 keys.clear();
71
72 numRows = prof.readNumEntry("keb_rows", 2);
73 numCols = prof.readNumEntry("keb_cols", 10);
74 keyWidth = (double)width()/numCols; // have to reset this thing too
75
76 /* load all the keys to the keyboard */
77 for (ushort i = 0; i <= numRows - 1; i++)
78 for (ushort j = 0; j <= numCols - 1; j++) {
79
80 QString h = "r" + QString::number(i) + "c" + QString::number(j);
81 QString values = prof.readEntry("keb_" + h);
82
83 if (!values.isEmpty()) {
84
85 QStringList l = QStringList::split(QChar('|'), values, TRUE);
86 keys[h] = FKey(l[0], l[1], l[2].toInt(), l[3].toInt());
87
88 // load pixmap if used
89 if (!l[1].isEmpty()) {
90
91 keys[h].pix = new QPixmap( Resource::loadPixmap( "console/keys/" + l[1] ) );
92 }
93 }
94 }
95
96 if (keys.isEmpty()) loadDefaults();
97
98 hide();
99 show();
100
101}
66 102
67void FunctionKeyboard::paintEvent(QPaintEvent *e) { 103void FunctionKeyboard::paintEvent(QPaintEvent *e) {
68 104
69 QPainter p(this); 105 QPainter p(this);
70 p.setClipRect(e->rect()); 106 p.setClipRect(e->rect());
71 p.fillRect(0, 0, width(), height(), QColor(255,255,255)); 107 p.fillRect(0, 0, width(), height(), QColor(255,255,255));
72 108
73 p.setPen(QColor(0,0,0)); 109 p.setPen(QColor(0,0,0));
74 110
75 /* those decimals do count! becomes short if use plain int */ 111 /* those decimals do count! becomes short if use plain int */
76 for (double i = 0; i <= width(); i += keyWidth) { 112 for (double i = 0; i <= width(); i += keyWidth) {
77 113
@@ -264,24 +300,27 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par
264 connect (m_uniValues, SIGNAL(textChanged(const QString &)), this, SLOT(slotChangeUnicode(const QString&))); 300 connect (m_uniValues, SIGNAL(textChanged(const QString &)), this, SLOT(slotChangeUnicode(const QString&)));
265 301
266 QVBoxLayout *root = new QVBoxLayout(this, 2); 302 QVBoxLayout *root = new QVBoxLayout(this, 2);
267 root->addWidget(kb); 303 root->addWidget(kb);
268 root->addWidget(dimentions); 304 root->addWidget(dimentions);
269 root->addWidget(editKey); 305 root->addWidget(editKey);
270} 306}
271FunctionKeyboardConfig::~FunctionKeyboardConfig() { 307FunctionKeyboardConfig::~FunctionKeyboardConfig() {
272 308
273} 309}
274void FunctionKeyboardConfig::load (const Profile& prof) { 310void FunctionKeyboardConfig::load (const Profile& prof) {
275 311
312 kb->keys.clear();
313 kb->loadDefaults();
314
276 m_rowBox->setValue(prof.readNumEntry("keb_rows", 2)); 315 m_rowBox->setValue(prof.readNumEntry("keb_rows", 2));
277 m_colBox->setValue(prof.readNumEntry("keb_cols", 10)); 316 m_colBox->setValue(prof.readNumEntry("keb_cols", 10));
278 317
279 /* load all the keys to the keyboard */ 318 /* load all the keys to the keyboard */
280 for (int i = 0; i <= m_rowBox->value() -1; i++) 319 for (int i = 0; i <= m_rowBox->value() -1; i++)
281 for (int j = 0; j <= m_colBox->value() -1; j++) { 320 for (int j = 0; j <= m_colBox->value() -1; j++) {
282 321
283 QString h = "r" + QString::number(i) + "c" + QString::number(j); 322 QString h = "r" + QString::number(i) + "c" + QString::number(j);
284 QString values = prof.readEntry("keb_" + h); 323 QString values = prof.readEntry("keb_" + h);
285 324
286 if (!values.isEmpty()) { 325 if (!values.isEmpty()) {
287 326
@@ -311,26 +350,24 @@ void FunctionKeyboardConfig::save (Profile& prof) {
311 + QString::number(k.qcode) + "|" 350 + QString::number(k.qcode) + "|"
312 + QString::number(k.unicode); 351 + QString::number(k.unicode);
313 352
314 prof.writeEntry("keb_" + it.key(), entry); 353 prof.writeEntry("keb_" + it.key(), entry);
315 354
316 } 355 }
317 356
318} 357}
319void FunctionKeyboardConfig::slotChangeRows(int r) { 358void FunctionKeyboardConfig::slotChangeRows(int r) {
320 359
321 kb->changeRows(r); 360 kb->changeRows(r);
322 361
323 // have to do this so the whole thing gets redrawn
324 kb->hide(); kb->show();
325} 362}
326void FunctionKeyboardConfig::slotChangeCols(int c) { 363void FunctionKeyboardConfig::slotChangeCols(int c) {
327 364
328 kb->changeCols(c); 365 kb->changeCols(c);
329} 366}
330void FunctionKeyboardConfig::slotKeyPressed(FKey k, ushort r, ushort c, bool pressed) { 367void FunctionKeyboardConfig::slotKeyPressed(FKey k, ushort r, ushort c, bool pressed) {
331 368
332 if (!pressed) return; 369 if (!pressed) return;
333 370
334 selectedHandle = "r" + QString::number(r) + 371 selectedHandle = "r" + QString::number(r) +
335 "c" + QString::number(c); 372 "c" + QString::number(c);
336 selectedRow = r; 373 selectedRow = r;