author | hash <hash> | 2002-08-15 19:29:19 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-15 19:29:19 (UTC) |
commit | d9cc9bedf72e921f8f7d8edeb189db127c5651e3 (patch) (unidiff) | |
tree | e43631d8b74db204d9c60c34b0782aa37df185c2 /inputmethods | |
parent | f568b83e0ef16a0e3b46d41b2cfaa5fdda9d1d45 (diff) | |
download | opie-d9cc9bedf72e921f8f7d8edeb189db127c5651e3.zip opie-d9cc9bedf72e921f8f7d8edeb189db127c5651e3.tar.gz opie-d9cc9bedf72e921f8f7d8edeb189db127c5651e3.tar.bz2 |
changed the keymap selector widget style
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 60 | ||||
-rw-r--r-- | inputmethods/multikey/configdlg.h | 9 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 10 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.h | 1 |
4 files changed, 56 insertions, 24 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index f23bf1c..7bea589 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp | |||
@@ -1,123 +1,143 @@ | |||
1 | /* | 1 | /* |
2 | * TODO | 2 | * TODO |
3 | * make a font selection thing | 3 | * make a font selection thing (size too) |
4 | * | 4 | * |
5 | * FIXME | ||
6 | * if you open the config dialog and close it from the little (x) button on the title bar, | ||
7 | * you have to hit the button on the keyboard twice for it to open the next time | ||
8 | * | 5 | * |
9 | * | 6 | * |
10 | */ | 7 | */ |
11 | 8 | ||
12 | #include <qpe/qpeapplication.h> | 9 | #include <qpe/qpeapplication.h> |
13 | #include <qpe/config.h> | 10 | #include <qpe/config.h> |
14 | 11 | ||
15 | #include <qwidget.h> | 12 | #include <qwidget.h> |
16 | #include <qdialog.h> | 13 | #include <qdialog.h> |
17 | #include <qtabwidget.h> | 14 | #include <qtabwidget.h> |
18 | #include <qvbox.h> | 15 | #include <qvbox.h> |
19 | #include <qgrid.h> | 16 | #include <qgrid.h> |
20 | #include <qgroupbox.h> | 17 | #include <qgroupbox.h> |
21 | #include <qlabel.h> | 18 | #include <qlabel.h> |
22 | #include <qcheckbox.h> | 19 | #include <qcheckbox.h> |
23 | #include <qsizepolicy.h> | 20 | #include <qsizepolicy.h> |
24 | #include <qpushbutton.h> | 21 | #include <qpushbutton.h> |
25 | #include <qcombobox.h> | 22 | #include <qlistbox.h> |
26 | #include "configdlg.h" | 23 | #include "configdlg.h" |
27 | #include "keyboard.h" | 24 | #include "keyboard.h" |
28 | 25 | ||
29 | ConfigDlg::ConfigDlg () : QTabWidget () | 26 | ConfigDlg::ConfigDlg () : QTabWidget () |
30 | { | 27 | { |
31 | setCaption( tr("Multikey Configuration") ); | 28 | setCaption( tr("Multikey Configuration") ); |
32 | 29 | ||
33 | /* | 30 | /* |
34 | * 'general config' tab | 31 | * 'general config' tab |
35 | */ | 32 | */ |
36 | 33 | ||
37 | QVBox *gen_box = new QVBox (this); | 34 | QVBox *gen_box = new QVBox (this); |
38 | gen_box->setMargin(3); | 35 | gen_box->setMargin(3); |
39 | addTab(gen_box, tr("General Settings")); | 36 | addTab(gen_box, tr("General Settings")); |
40 | 37 | ||
41 | QGroupBox *map_group = new QGroupBox (2, Qt::Horizontal, tr("Keymap File"), gen_box); | 38 | QGroupBox *map_group = new QGroupBox (2, Qt::Vertical, tr("Keymap File"), gen_box); |
42 | 39 | ||
43 | map_combo = new QComboBox ((bool)0, map_group); | 40 | keymaps = new QListBox (map_group); |
44 | map_combo->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed)); | 41 | keymaps->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); |
42 | //keymaps->setMaximumHeight(150); | ||
45 | 43 | ||
46 | QString cur(tr("Current Language")); | 44 | QString cur(tr("Current Language")); |
47 | map_combo->insertItem(cur); | 45 | keymaps->insertItem(cur); |
48 | connect(map_combo, SIGNAL(activated(int)), SLOT(setMap(int))); | 46 | connect(keymaps, SIGNAL(highlighted(int)), SLOT(setMap(int))); |
49 | 47 | ||
50 | QString ko(tr(QPEApplication::qpeDir() + "/share/multikey/ko.keymap")); | 48 | QString ko(QPEApplication::qpeDir() + "/share/multikey/ko.keymap"); |
51 | map_combo->insertItem(ko); | 49 | keymaps->insertItem(ko); |
52 | 50 | ||
53 | QString en(tr(QPEApplication::qpeDir() + "/share/multikey/en.keymap")); | 51 | QString en(QPEApplication::qpeDir() + "/share/multikey/en.keymap"); |
54 | map_combo->insertItem(en); | 52 | keymaps->insertItem(en); |
55 | 53 | ||
56 | QString de(tr(QPEApplication::qpeDir() + "/share/multikey/de.keymap")); | 54 | QString de(QPEApplication::qpeDir() + "/share/multikey/de.keymap"); |
57 | map_combo->insertItem(de); | 55 | keymaps->insertItem(de); |
58 | 56 | ||
59 | QPushButton *button = new QPushButton(tr("Browse..."), map_group); | 57 | QGrid *add_remove_grid = new QGrid(2, map_group); |
60 | button->setFlat((bool)1); | 58 | add_remove_grid->setMargin(3); |
59 | add_remove_grid->setSpacing(3); | ||
60 | |||
61 | add_button = new QPushButton(tr("Add"), add_remove_grid); | ||
62 | add_button->setFlat((bool)1); | ||
63 | |||
64 | remove_button = new QPushButton(tr("Remove"), add_remove_grid); | ||
65 | remove_button->setFlat((bool)1); | ||
61 | 66 | ||
62 | pick_button = new QCheckBox(tr("Pickboard"), gen_box); | 67 | pick_button = new QCheckBox(tr("Pickboard"), gen_box); |
63 | 68 | ||
64 | Config config ("multikey"); | 69 | Config config ("multikey"); |
65 | config.setGroup ("pickboard"); | 70 | config.setGroup ("pickboard"); |
66 | bool pick_open = config.readBoolEntry ("open", "0"); // default closed | 71 | bool pick_open = config.readBoolEntry ("open", "0"); // default closed |
67 | if (pick_open) { | 72 | if (pick_open) { |
68 | 73 | ||
69 | pick_button->setChecked(true); | 74 | pick_button->setChecked(true); |
70 | } | 75 | } |
71 | 76 | ||
72 | // by connecting it after checking it, the signal isn't emmited | 77 | // by connecting it after checking it, the signal isn't emmited |
73 | connect (pick_button, SIGNAL(clicked()), this, SLOT(pickTog())); | 78 | connect (pick_button, SIGNAL(clicked()), this, SLOT(pickTog())); |
74 | 79 | ||
75 | /* | 80 | /* |
76 | * 'color' tab | 81 | * 'color' tab |
77 | */ | 82 | */ |
78 | 83 | ||
79 | QGrid *color_box = new QGrid(2, this); | 84 | QGrid *color_box = new QGrid(2, this); |
80 | color_box->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed)); | 85 | color_box->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed)); |
81 | color_box->setMargin(3); | 86 | color_box->setMargin(3); |
87 | color_box->setSpacing(3); | ||
82 | addTab(color_box, tr("Colors")); | 88 | addTab(color_box, tr("Colors")); |
83 | 89 | ||
84 | QLabel *label; | 90 | QLabel *label; |
85 | 91 | ||
86 | label = new QLabel(tr("Key Color"), color_box); | 92 | label = new QLabel(tr("Key Color"), color_box); |
87 | button = new QPushButton(color_box); | 93 | QPushButton *button = new QPushButton(color_box); |
88 | button->setFlat((bool)1); | 94 | button->setFlat((bool)1); |
89 | label = new QLabel(tr("Key Pressed Color"), color_box); | 95 | label = new QLabel(tr("Key Pressed Color"), color_box); |
90 | button = new QPushButton(color_box); | 96 | button = new QPushButton(color_box); |
91 | button->setFlat((bool)1); | 97 | button->setFlat((bool)1); |
92 | label = new QLabel(tr("Line Color"), color_box); | 98 | label = new QLabel(tr("Line Color"), color_box); |
93 | button = new QPushButton(color_box); | 99 | button = new QPushButton(color_box); |
94 | button->setFlat((bool)1); | 100 | button->setFlat((bool)1); |
95 | label = new QLabel(tr("Text Color"), color_box); | 101 | label = new QLabel(tr("Text Color"), color_box); |
96 | button = new QPushButton(color_box); | 102 | button = new QPushButton(color_box); |
97 | button->setFlat((bool)1); | 103 | button->setFlat((bool)1); |
98 | 104 | ||
99 | label = new QLabel("", color_box); // a spacer so the above buttons dont expand | 105 | label = new QLabel("", color_box); // a spacer so the above buttons dont expand |
100 | label->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); | 106 | label->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); |
101 | 107 | ||
102 | } | 108 | } |
103 | 109 | ||
104 | void ConfigDlg::pickTog() { | 110 | void ConfigDlg::pickTog() { |
105 | 111 | ||
106 | Config config ("multikey"); | 112 | Config config ("multikey"); |
107 | config.setGroup ("pickboard"); | 113 | config.setGroup ("pickboard"); |
108 | config.writeEntry ("open", pick_button->isChecked()); // default closed | 114 | config.writeEntry ("open", pick_button->isChecked()); // default closed |
109 | 115 | ||
110 | emit pickboardToggled(pick_button->isChecked()); | 116 | emit pickboardToggled(pick_button->isChecked()); |
111 | } | 117 | } |
112 | 118 | ||
113 | void ConfigDlg::setMap(int index) { | 119 | void ConfigDlg::setMap(int index) { |
114 | 120 | ||
115 | if (index == 0) { | 121 | if (index == 0) { |
116 | 122 | ||
123 | if (remove_button->isEnabled()) | ||
124 | remove_button->setDisabled(true); | ||
125 | |||
117 | emit setMapToDefault(); | 126 | emit setMapToDefault(); |
118 | } | 127 | } |
119 | else { | 128 | else { |
120 | 129 | ||
121 | emit setMapToFile(map_combo->text(index)); | 130 | if (!remove_button->isEnabled()) |
131 | remove_button->setEnabled(true); | ||
132 | |||
133 | emit setMapToFile(keymaps->text(index)); | ||
122 | } | 134 | } |
123 | } | 135 | } |
136 | |||
137 | void ConfigDlg::addMap() { | ||
138 | |||
139 | } | ||
140 | |||
141 | void ConfigDlg::removeMap(int index) { | ||
142 | |||
143 | } | ||
diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h index 54127a0..1a64764 100644 --- a/inputmethods/multikey/configdlg.h +++ b/inputmethods/multikey/configdlg.h | |||
@@ -1,31 +1,36 @@ | |||
1 | #include <qpe/qpeapplication.h> | 1 | #include <qpe/qpeapplication.h> |
2 | #include <qtabwidget.h> | 2 | #include <qtabwidget.h> |
3 | #include <qcheckbox.h> | 3 | #include <qcheckbox.h> |
4 | #include <qcombobox.h> | 4 | #include <qlistbox.h> |
5 | #include <qpushbutton.h> | ||
5 | 6 | ||
6 | #ifndef CONFIGDLG_H | 7 | #ifndef CONFIGDLG_H |
7 | #define CONFIGDLG_H | 8 | #define CONFIGDLG_H |
8 | 9 | ||
9 | class ConfigDlg : public QTabWidget | 10 | class ConfigDlg : public QTabWidget |
10 | { | 11 | { |
11 | Q_OBJECT | 12 | Q_OBJECT |
12 | 13 | ||
13 | public: | 14 | public: |
14 | ConfigDlg (); | 15 | ConfigDlg (); |
15 | 16 | ||
16 | signals: | 17 | signals: |
17 | void pickboardToggled(bool on_off); | 18 | void pickboardToggled(bool on_off); |
18 | void setMapToDefault(); | 19 | void setMapToDefault(); |
19 | void setMapToFile(QString file); | 20 | void setMapToFile(QString file); |
20 | 21 | ||
21 | private slots: | 22 | private slots: |
22 | void pickTog(); | 23 | void pickTog(); |
23 | void setMap(int index); | 24 | void setMap(int index); |
25 | void addMap(); | ||
26 | void removeMap(int index); | ||
24 | 27 | ||
25 | private: | 28 | private: |
26 | QCheckBox *pick_button; | 29 | QCheckBox *pick_button; |
27 | QComboBox *map_combo; | 30 | QListBox *keymaps; |
31 | QPushButton *add_button; | ||
32 | QPushButton *remove_button; | ||
28 | 33 | ||
29 | }; | 34 | }; |
30 | 35 | ||
31 | #endif | 36 | #endif |
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index 2a80f1e..b71f929 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp | |||
@@ -1,271 +1,278 @@ | |||
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 | 20 | ||
21 | #include "keyboard.h" | 21 | #include "keyboard.h" |
22 | #include "configdlg.h" | 22 | #include "configdlg.h" |
23 | 23 | ||
24 | #include <qpe/global.h> | 24 | #include <qpe/global.h> |
25 | #include <qpe/qcopenvelope_qws.h> | 25 | #include <qpe/qcopenvelope_qws.h> |
26 | 26 | ||
27 | #include <qwindowsystem_qws.h> | 27 | #include <qwindowsystem_qws.h> |
28 | #include <qpainter.h> | 28 | #include <qpainter.h> |
29 | #include <qfontmetrics.h> | 29 | #include <qfontmetrics.h> |
30 | #include <qtimer.h> | 30 | #include <qtimer.h> |
31 | #include <qpe/qpeapplication.h> | 31 | #include <qpe/qpeapplication.h> |
32 | #include <qpe/config.h> | 32 | #include <qpe/config.h> |
33 | #include <ctype.h> | 33 | #include <ctype.h> |
34 | #include <qfile.h> | 34 | #include <qfile.h> |
35 | #include <qtextstream.h> | 35 | #include <qtextstream.h> |
36 | #include <iostream.h> | ||
37 | 36 | ||
38 | #include <sys/utsname.h> | 37 | #include <sys/utsname.h> |
39 | 38 | ||
40 | 39 | ||
41 | #define USE_SMALL_BACKSPACE | 40 | #define USE_SMALL_BACKSPACE |
42 | 41 | ||
43 | /* Keyboard::Keyboard {{{1 */ | 42 | /* Keyboard::Keyboard {{{1 */ |
44 | Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) : | 43 | Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) : |
45 | QFrame(parent, _name, f), shift(0), lock(0), ctrl(0), | 44 | QFrame(parent, _name, f), shift(0), lock(0), ctrl(0), |
46 | alt(0), useLargeKeys(TRUE), usePicks(0), pressedKeyRow(-1), pressedKeyCol(-1), | 45 | alt(0), useLargeKeys(TRUE), usePicks(0), pressedKeyRow(-1), pressedKeyCol(-1), |
47 | unicode(-1), qkeycode(0), modifiers(0), schar(0), mchar(0), echar(0), | 46 | unicode(-1), qkeycode(0), modifiers(0), schar(0), mchar(0), echar(0), |
48 | configdlg(0) | 47 | configdlg(0) |
49 | 48 | ||
50 | { | 49 | { |
51 | // get the default font | 50 | // get the default font |
52 | Config *config = new Config( "qpe" ); | 51 | Config *config = new Config( "qpe" ); |
53 | config->setGroup( "Appearance" ); | 52 | config->setGroup( "Appearance" ); |
54 | QString familyStr = config->readEntry( "FontFamily", "fixed" ); | 53 | QString familyStr = config->readEntry( "FontFamily", "fixed" ); |
55 | delete config; | 54 | delete config; |
56 | 55 | ||
57 | config = new Config("multikey"); | 56 | config = new Config("multikey"); |
58 | config->setGroup ("pickboard"); | 57 | config->setGroup ("pickboard"); |
59 | usePicks = config->readBoolEntry ("open", "0"); // default closed | 58 | usePicks = config->readBoolEntry ("open", "0"); // default closed |
60 | delete config; | 59 | delete config; |
61 | 60 | ||
62 | setFont( QFont( familyStr, 10 ) ); | 61 | setFont( QFont( familyStr, 10 ) ); |
63 | 62 | ||
64 | picks = new KeyboardPicks( this ); | 63 | picks = new KeyboardPicks( this ); |
65 | picks->setFont( QFont( familyStr, 10 ) ); | 64 | picks->setFont( QFont( familyStr, 10 ) ); |
66 | picks->initialise(); | 65 | picks->initialise(); |
67 | if (usePicks) { | 66 | if (usePicks) { |
68 | 67 | ||
69 | QObject::connect( picks, SIGNAL(key(ushort,ushort,ushort,bool,bool) ), | 68 | QObject::connect( picks, SIGNAL(key(ushort,ushort,ushort,bool,bool) ), |
70 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); | 69 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); |
71 | 70 | ||
72 | } else picks->hide(); | 71 | } else picks->hide(); |
73 | 72 | ||
74 | keys = new Keys(); | 73 | keys = new Keys(); |
75 | 74 | ||
76 | repeatTimer = new QTimer( this ); | 75 | repeatTimer = new QTimer( this ); |
77 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); | 76 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); |
78 | 77 | ||
79 | } | 78 | } |
79 | Keyboard::~Keyboard() { | ||
80 | |||
81 | if ( configdlg ) { | ||
82 | delete (ConfigDlg *) configdlg; | ||
83 | configdlg = 0; | ||
84 | } | ||
85 | |||
86 | } | ||
80 | 87 | ||
81 | /* Keyboard::resizeEvent {{{1 */ | 88 | /* Keyboard::resizeEvent {{{1 */ |
82 | void Keyboard::resizeEvent(QResizeEvent*) | 89 | void Keyboard::resizeEvent(QResizeEvent*) |
83 | { | 90 | { |
84 | int ph = picks->sizeHint().height(); | 91 | int ph = picks->sizeHint().height(); |
85 | picks->setGeometry( 0, 0, width(), ph ); | 92 | picks->setGeometry( 0, 0, width(), ph ); |
86 | keyHeight = (height()-(usePicks ? ph : 0))/5; | 93 | keyHeight = (height()-(usePicks ? ph : 0))/5; |
87 | 94 | ||
88 | int nk; // number of keys? | 95 | int nk; // number of keys? |
89 | if ( useLargeKeys ) { | 96 | if ( useLargeKeys ) { |
90 | nk = 15; | 97 | nk = 15; |
91 | } else { | 98 | } else { |
92 | nk = 19; | 99 | nk = 19; |
93 | } | 100 | } |
94 | defaultKeyWidth = (width()/nk)/2; | 101 | defaultKeyWidth = (width()/nk)/2; |
95 | xoffs = (width()-defaultKeyWidth*nk)/2; // empty key spaces? | 102 | xoffs = (width()-defaultKeyWidth*nk)/2; // empty key spaces? |
96 | 103 | ||
97 | } | 104 | } |
98 | 105 | ||
99 | /* KeyboardPicks::initialize {{{1 */ | 106 | /* KeyboardPicks::initialize {{{1 */ |
100 | void KeyboardPicks::initialise() | 107 | void KeyboardPicks::initialise() |
101 | { | 108 | { |
102 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed)); | 109 | setSizePolicy(QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed)); |
103 | mode = 0; | 110 | mode = 0; |
104 | dc = new KeyboardConfig(this); | 111 | dc = new KeyboardConfig(this); |
105 | configs.append(dc); | 112 | configs.append(dc); |
106 | } | 113 | } |
107 | 114 | ||
108 | /* KeyboardPicks::sizeHint {{{1 */ | 115 | /* KeyboardPicks::sizeHint {{{1 */ |
109 | QSize KeyboardPicks::sizeHint() const | 116 | QSize KeyboardPicks::sizeHint() const |
110 | { | 117 | { |
111 | return QSize(240,fontMetrics().lineSpacing()); | 118 | return QSize(240,fontMetrics().lineSpacing()); |
112 | } | 119 | } |
113 | 120 | ||
114 | 121 | ||
115 | /* KeyboardConfig::generateText {{{1 */ | 122 | /* KeyboardConfig::generateText {{{1 */ |
116 | void KeyboardConfig::generateText(const QString &s) | 123 | void KeyboardConfig::generateText(const QString &s) |
117 | { | 124 | { |
118 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) | 125 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) |
119 | for (int i=0; i<(int)backspaces; i++) { | 126 | for (int i=0; i<(int)backspaces; i++) { |
120 | parent->emitKey( 0, Qt::Key_Backspace, 0, true, false ); | 127 | parent->emitKey( 0, Qt::Key_Backspace, 0, true, false ); |
121 | parent->emitKey( 0, Qt::Key_Backspace, 0, false, false ); | 128 | parent->emitKey( 0, Qt::Key_Backspace, 0, false, false ); |
122 | } | 129 | } |
123 | for (int i=0; i<(int)s.length(); i++) { | 130 | for (int i=0; i<(int)s.length(); i++) { |
124 | parent->emitKey( s[i].unicode(), 0, 0, true, false ); | 131 | parent->emitKey( s[i].unicode(), 0, 0, true, false ); |
125 | parent->emitKey( s[i].unicode(), 0, 0, false, false ); | 132 | parent->emitKey( s[i].unicode(), 0, 0, false, false ); |
126 | } | 133 | } |
127 | parent->emitKey( 0, Qt::Key_Space, 0, true, false ); | 134 | parent->emitKey( 0, Qt::Key_Space, 0, true, false ); |
128 | parent->emitKey( 0, Qt::Key_Space, 0, false, false ); | 135 | parent->emitKey( 0, Qt::Key_Space, 0, false, false ); |
129 | backspaces = 0; | 136 | backspaces = 0; |
130 | #endif | 137 | #endif |
131 | } | 138 | } |
132 | 139 | ||
133 | 140 | ||
134 | 141 | ||
135 | 142 | ||
136 | /* Keyboard::paintEvent {{{1 */ | 143 | /* Keyboard::paintEvent {{{1 */ |
137 | void Keyboard::paintEvent(QPaintEvent* e) | 144 | void Keyboard::paintEvent(QPaintEvent* e) |
138 | { | 145 | { |
139 | QPainter painter(this); | 146 | QPainter painter(this); |
140 | painter.setClipRect(e->rect()); | 147 | painter.setClipRect(e->rect()); |
141 | drawKeyboard( painter ); | 148 | drawKeyboard( painter ); |
142 | picks->dc->draw( &painter ); | 149 | picks->dc->draw( &painter ); |
143 | } | 150 | } |
144 | 151 | ||
145 | 152 | ||
146 | /* Keyboard::drawKeyboard {{{1 */ | 153 | /* Keyboard::drawKeyboard {{{1 */ |
147 | 154 | ||
148 | void Keyboard::drawKeyboard(QPainter &p, int row, int col) | 155 | void Keyboard::drawKeyboard(QPainter &p, int row, int col) |
149 | { | 156 | { |
150 | QColor keycolor = | 157 | QColor keycolor = |
151 | QColor(240,240,240); | 158 | QColor(240,240,240); |
152 | QColor keycolor_pressed = QColor(171,183,198); | 159 | QColor keycolor_pressed = QColor(171,183,198); |
153 | QColor keycolor_lines = QColor(138,148,160); | 160 | QColor keycolor_lines = QColor(138,148,160); |
154 | QColor textcolor = QColor(43,54,68); | 161 | QColor textcolor = QColor(43,54,68); |
155 | 162 | ||
156 | 163 | ||
157 | if (row != -1 && col != -1) { //just redraw one key | 164 | if (row != -1 && col != -1) { //just redraw one key |
158 | 165 | ||
159 | int x = 0; | 166 | int x = 0; |
160 | for (int i = 0; i < col; i++) { | 167 | for (int i = 0; i < col; i++) { |
161 | 168 | ||
162 | x += keys->width(row, i) * defaultKeyWidth; | 169 | x += keys->width(row, i) * defaultKeyWidth; |
163 | } | 170 | } |
164 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); | 171 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); |
165 | 172 | ||
166 | int keyWidth = keys->width(row, col); | 173 | int keyWidth = keys->width(row, col); |
167 | 174 | ||
168 | p.fillRect(x + 1, y + 1, | 175 | p.fillRect(x + 1, y + 1, |
169 | keyWidth * defaultKeyWidth - 1, keyHeight - 1, | 176 | keyWidth * defaultKeyWidth - 1, keyHeight - 1, |
170 | pressed || keys->pressed(row, col) ? keycolor_pressed : keycolor); | 177 | pressed || keys->pressed(row, col) ? keycolor_pressed : keycolor); |
171 | 178 | ||
172 | QPixmap *pix = keys->pix(row,col); | 179 | QPixmap *pix = keys->pix(row,col); |
173 | 180 | ||
174 | ushort c = keys->uni(row, col); | 181 | ushort c = keys->uni(row, col); |
175 | 182 | ||
176 | if (!pix) { | 183 | if (!pix) { |
177 | p.setPen(textcolor); | 184 | p.setPen(textcolor); |
178 | p.drawText(x, y, | 185 | p.drawText(x, y, |
179 | defaultKeyWidth * keyWidth, keyHeight, | 186 | defaultKeyWidth * keyWidth, keyHeight, |
180 | AlignCenter, ((shift || lock) && keys->shift(c)) ? (QChar)keys->shift(c) : (QChar)c); | 187 | AlignCenter, ((shift || lock) && keys->shift(c)) ? (QChar)keys->shift(c) : (QChar)c); |
181 | } | 188 | } |
182 | else | 189 | else |
183 | // center the image in the middle of the key | 190 | // center the image in the middle of the key |
184 | p.drawPixmap( x + (defaultKeyWidth * keyWidth - pix->width())/2, | 191 | p.drawPixmap( x + (defaultKeyWidth * keyWidth - pix->width())/2, |
185 | y + (keyHeight - pix->height())/2 + 1, | 192 | y + (keyHeight - pix->height())/2 + 1, |
186 | *pix ); | 193 | *pix ); |
187 | 194 | ||
188 | // this fixes the problem that the very right end of the board's vertical line | 195 | // this fixes the problem that the very right end of the board's vertical line |
189 | // gets painted over, because it's one pixel shorter than all other keys | 196 | // gets painted over, because it's one pixel shorter than all other keys |
190 | p.setPen(keycolor_lines); | 197 | p.setPen(keycolor_lines); |
191 | p.drawLine(width() - 1, 0, width() - 1, height()); | 198 | p.drawLine(width() - 1, 0, width() - 1, height()); |
192 | 199 | ||
193 | } else { | 200 | } else { |
194 | 201 | ||
195 | 202 | ||
196 | p.fillRect(0, 0, width(), height(), keycolor); | 203 | p.fillRect(0, 0, width(), height(), keycolor); |
197 | 204 | ||
198 | for (row = 1; row <= 5; row++) { | 205 | for (row = 1; row <= 5; row++) { |
199 | 206 | ||
200 | int x = 0; | 207 | int x = 0; |
201 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); | 208 | int y = (row - 1) * keyHeight + (usePicks ? picks->height() : 0); |
202 | 209 | ||
203 | p.setPen(keycolor_lines); | 210 | p.setPen(keycolor_lines); |
204 | p.drawLine(x, y, x + width(), y); | 211 | p.drawLine(x, y, x + width(), y); |
205 | 212 | ||
206 | for (int col = 0; col < keys->numKeys(row); col++) { | 213 | for (int col = 0; col < keys->numKeys(row); col++) { |
207 | 214 | ||
208 | QPixmap *pix = keys->pix(row, col); | 215 | QPixmap *pix = keys->pix(row, col); |
209 | int keyWidth = keys->width(row, col); | 216 | int keyWidth = keys->width(row, col); |
210 | 217 | ||
211 | 218 | ||
212 | int keyWidthPix = defaultKeyWidth * keyWidth; | 219 | int keyWidthPix = defaultKeyWidth * keyWidth; |
213 | 220 | ||
214 | if (keys->pressed(row, col)) | 221 | if (keys->pressed(row, col)) |
215 | p.fillRect(x+1, y+1, keyWidthPix - 1, | 222 | p.fillRect(x+1, y+1, keyWidthPix - 1, |
216 | keyHeight - 1, keycolor_pressed); | 223 | keyHeight - 1, keycolor_pressed); |
217 | 224 | ||
218 | ushort c = keys->uni(row, col); | 225 | ushort c = keys->uni(row, col); |
219 | 226 | ||
220 | if (!pix) { | 227 | if (!pix) { |
221 | p.setPen(textcolor); | 228 | p.setPen(textcolor); |
222 | p.drawText(x, y, | 229 | p.drawText(x, y, |
223 | keyWidthPix, keyHeight, | 230 | keyWidthPix, keyHeight, |
224 | AlignCenter, ((shift || lock) && keys->shift(c)) ? (QChar)keys->shift(c) : (QChar)c); | 231 | AlignCenter, ((shift || lock) && keys->shift(c)) ? (QChar)keys->shift(c) : (QChar)c); |
225 | } | 232 | } |
226 | else { | 233 | else { |
227 | // center the image in the middle of the key | 234 | // center the image in the middle of the key |
228 | p.drawPixmap( x + (keyWidthPix - pix->width())/2, | 235 | p.drawPixmap( x + (keyWidthPix - pix->width())/2, |
229 | y + (keyHeight - pix->height())/2 + 1, | 236 | y + (keyHeight - pix->height())/2 + 1, |
230 | QPixmap(*pix) ); | 237 | QPixmap(*pix) ); |
231 | } | 238 | } |
232 | 239 | ||
233 | p.setPen(keycolor_lines); | 240 | p.setPen(keycolor_lines); |
234 | p.drawLine(x, y, x, y + keyHeight); | 241 | p.drawLine(x, y, x, y + keyHeight); |
235 | 242 | ||
236 | x += keyWidthPix; | 243 | x += keyWidthPix; |
237 | } | 244 | } |
238 | 245 | ||
239 | 246 | ||
240 | } | 247 | } |
241 | p.drawLine(0, height() - 1, width(), height() - 1); | 248 | p.drawLine(0, height() - 1, width(), height() - 1); |
242 | p.drawLine(width() - 1, 0, width() - 1, height()); | 249 | p.drawLine(width() - 1, 0, width() - 1, height()); |
243 | } | 250 | } |
244 | 251 | ||
245 | } | 252 | } |
246 | 253 | ||
247 | 254 | ||
248 | /* Keyboard::mousePressEvent {{{1 */ | 255 | /* Keyboard::mousePressEvent {{{1 */ |
249 | void Keyboard::mousePressEvent(QMouseEvent *e) | 256 | void Keyboard::mousePressEvent(QMouseEvent *e) |
250 | { | 257 | { |
251 | int row = (e->y() - (usePicks ? picks->height() : 0)) / keyHeight + 1; | 258 | int row = (e->y() - (usePicks ? picks->height() : 0)) / keyHeight + 1; |
252 | if (row > 5) row = 5; | 259 | if (row > 5) row = 5; |
253 | 260 | ||
254 | // figure out the column | 261 | // figure out the column |
255 | int col = 0; | 262 | int col = 0; |
256 | for (int w = 0; e->x() >= w; col++) | 263 | for (int w = 0; e->x() >= w; col++) |
257 | if (col < keys->numKeys(row)) // it segfaults if it trys to read past numKeys | 264 | if (col < keys->numKeys(row)) // it segfaults if it trys to read past numKeys |
258 | w += keys->width(row,col) * defaultKeyWidth; | 265 | w += keys->width(row,col) * defaultKeyWidth; |
259 | else break; | 266 | else break; |
260 | 267 | ||
261 | col --; // rewind one... | 268 | col --; // rewind one... |
262 | 269 | ||
263 | qkeycode = keys->qcode(row, col); | 270 | qkeycode = keys->qcode(row, col); |
264 | unicode = keys->uni(row, col); | 271 | unicode = keys->uni(row, col); |
265 | 272 | ||
266 | // might need to repaint if two or more of the same keys. | 273 | // might need to repaint if two or more of the same keys. |
267 | // should be faster if just paint one key even though multiple keys exist. | 274 | // should be faster if just paint one key even though multiple keys exist. |
268 | bool need_repaint = FALSE; | 275 | bool need_repaint = FALSE; |
269 | 276 | ||
270 | if (unicode == 0) { // either Qt char, or nothing | 277 | if (unicode == 0) { // either Qt char, or nothing |
271 | 278 | ||
@@ -770,296 +777,295 @@ ushort Keyboard::parseKoreanInput (ushort c) { | |||
770 | 777 | ||
771 | // and now... finally delete previous char, and return new char | 778 | // and now... finally delete previous char, and return new char |
772 | emit key( 8, Qt::Key_Backspace, 0, true, false ); | 779 | emit key( 8, Qt::Key_Backspace, 0, true, false ); |
773 | 780 | ||
774 | 781 | ||
775 | return combineKoreanChars( schar, mchar, echar); | 782 | return combineKoreanChars( schar, mchar, echar); |
776 | 783 | ||
777 | } | 784 | } |
778 | 785 | ||
779 | ushort Keyboard::combineKoreanChars(const ushort s, const ushort m, const ushort e) { | 786 | ushort Keyboard::combineKoreanChars(const ushort s, const ushort m, const ushort e) { |
780 | 787 | ||
781 | return ((s - 0x1100) * 588) + ((m - 0x1161) * 28) + (e ? e - 0x11a7 : 0) + 0xac00; | 788 | return ((s - 0x1100) * 588) + ((m - 0x1161) * 28) + (e ? e - 0x11a7 : 0) + 0xac00; |
782 | 789 | ||
783 | } | 790 | } |
784 | 791 | ||
785 | ushort Keyboard::constoe(const ushort c) { | 792 | ushort Keyboard::constoe(const ushort c) { |
786 | 793 | ||
787 | // converts schars to echars if possible | 794 | // converts schars to echars if possible |
788 | 795 | ||
789 | if (0x1100 <= c && c <= 0x1112) { // schar to echar | 796 | if (0x1100 <= c && c <= 0x1112) { // schar to echar |
790 | 797 | ||
791 | switch (c) { | 798 | switch (c) { |
792 | case 0x1100: return 0x11a8; | 799 | case 0x1100: return 0x11a8; |
793 | case 0x1101: return 0x11a9; | 800 | case 0x1101: return 0x11a9; |
794 | case 0x1102: return 0x11ab; | 801 | case 0x1102: return 0x11ab; |
795 | case 0x1103: return 0x11ae; | 802 | case 0x1103: return 0x11ae; |
796 | case 0x1105: return 0x11af; | 803 | case 0x1105: return 0x11af; |
797 | case 0x1106: return 0x11b7; | 804 | case 0x1106: return 0x11b7; |
798 | case 0x1107: return 0x11b8; | 805 | case 0x1107: return 0x11b8; |
799 | case 0x1109: return 0x11ba; | 806 | case 0x1109: return 0x11ba; |
800 | case 0x110a: return 0x11bb; | 807 | case 0x110a: return 0x11bb; |
801 | case 0x110b: return 0x11bc; | 808 | case 0x110b: return 0x11bc; |
802 | case 0x110c: return 0x11bd; | 809 | case 0x110c: return 0x11bd; |
803 | case 0x110e: return 0x11be; | 810 | case 0x110e: return 0x11be; |
804 | case 0x110f: return 0x11bf; | 811 | case 0x110f: return 0x11bf; |
805 | case 0x1110: return 0x11c0; | 812 | case 0x1110: return 0x11c0; |
806 | case 0x1111: return 0x11c1; | 813 | case 0x1111: return 0x11c1; |
807 | case 0x1112: return 0x11c2; | 814 | case 0x1112: return 0x11c2; |
808 | default: return 0; | 815 | default: return 0; |
809 | 816 | ||
810 | } | 817 | } |
811 | 818 | ||
812 | } else { //echar to schar | 819 | } else { //echar to schar |
813 | 820 | ||
814 | switch (c) { | 821 | switch (c) { |
815 | case 0x11a8: return 0x1100; | 822 | case 0x11a8: return 0x1100; |
816 | case 0x11a9: return 0x1101; | 823 | case 0x11a9: return 0x1101; |
817 | case 0x11ab: return 0x1102; | 824 | case 0x11ab: return 0x1102; |
818 | case 0x11ae: return 0x1103; | 825 | case 0x11ae: return 0x1103; |
819 | case 0x11af: return 0x1105; | 826 | case 0x11af: return 0x1105; |
820 | case 0x11b7: return 0x1106; | 827 | case 0x11b7: return 0x1106; |
821 | case 0x11b8: return 0x1107; | 828 | case 0x11b8: return 0x1107; |
822 | case 0x11ba: return 0x1109; | 829 | case 0x11ba: return 0x1109; |
823 | case 0x11bb: return 0x110a; | 830 | case 0x11bb: return 0x110a; |
824 | case 0x11bc: return 0x110b; | 831 | case 0x11bc: return 0x110b; |
825 | case 0x11bd: return 0x110c; | 832 | case 0x11bd: return 0x110c; |
826 | case 0x11be: return 0x110e; | 833 | case 0x11be: return 0x110e; |
827 | case 0x11bf: return 0x110f; | 834 | case 0x11bf: return 0x110f; |
828 | case 0x11c0: return 0x1110; | 835 | case 0x11c0: return 0x1110; |
829 | case 0x11c1: return 0x1111; | 836 | case 0x11c1: return 0x1111; |
830 | case 0x11c2: return 0x1112; | 837 | case 0x11c2: return 0x1112; |
831 | default: return 0; | 838 | default: return 0; |
832 | 839 | ||
833 | } | 840 | } |
834 | 841 | ||
835 | } | 842 | } |
836 | } | 843 | } |
837 | 844 | ||
838 | 845 | ||
839 | // Keys::Keys {{{1 | 846 | // Keys::Keys {{{1 |
840 | 847 | ||
841 | Keys::Keys() { | 848 | Keys::Keys() { |
842 | 849 | ||
843 | Config *config = new Config ("multikey"); | 850 | Config *config = new Config ("multikey"); |
844 | config->setGroup( "keymaps" ); | 851 | config->setGroup( "keymaps" ); |
845 | QString key_map = config->readEntry( "current" ); | 852 | QString key_map = config->readEntry( "current" ); |
846 | delete config; | 853 | delete config; |
847 | 854 | ||
848 | if (key_map.isNull()) { | 855 | if (key_map.isNull()) { |
849 | 856 | ||
850 | Config *config = new Config("locale"); | 857 | Config *config = new Config("locale"); |
851 | config->setGroup( "Language" ); | 858 | config->setGroup( "Language" ); |
852 | QString l = config->readEntry( "Language" , "en" ); | 859 | QString l = config->readEntry( "Language" , "en" ); |
853 | delete config; | 860 | delete config; |
854 | 861 | ||
855 | key_map = QPEApplication::qpeDir() + "/share/multikey/" | 862 | key_map = QPEApplication::qpeDir() + "/share/multikey/" |
856 | + l + ".keymap"; | 863 | + l + ".keymap"; |
857 | 864 | ||
858 | } | 865 | } |
859 | 866 | ||
860 | 867 | ||
861 | setKeysFromFile(key_map); | 868 | setKeysFromFile(key_map); |
862 | } | 869 | } |
863 | 870 | ||
864 | Keys::Keys(const char * filename) { | 871 | Keys::Keys(const char * filename) { |
865 | 872 | ||
866 | setKeysFromFile(filename); | 873 | setKeysFromFile(filename); |
867 | } | 874 | } |
868 | 875 | ||
869 | // Keys::setKeysFromFile {{{2 | 876 | // Keys::setKeysFromFile {{{2 |
870 | void Keys::setKeysFromFile(const char * filename) { | 877 | void Keys::setKeysFromFile(const char * filename) { |
871 | 878 | ||
872 | QFile f(filename); | 879 | QFile f(filename); |
873 | 880 | ||
874 | if (f.open(IO_ReadOnly)) { | 881 | if (f.open(IO_ReadOnly)) { |
875 | 882 | ||
876 | QTextStream t(&f); | 883 | QTextStream t(&f); |
877 | int row; | 884 | int row; |
878 | int qcode; | 885 | int qcode; |
879 | ushort unicode; | 886 | ushort unicode; |
880 | int width; | 887 | int width; |
881 | QString buf; | 888 | QString buf; |
882 | QString comment; | 889 | QString comment; |
883 | char * xpm[256]; //couldnt be larger than that... could it? | 890 | char * xpm[256]; //couldnt be larger than that... could it? |
884 | QPixmap *xpm2pix = 0; | 891 | QPixmap *xpm2pix = 0; |
885 | 892 | ||
886 | buf = t.readLine(); | 893 | buf = t.readLine(); |
887 | while (buf) { | 894 | while (buf) { |
888 | 895 | ||
889 | // key definition | 896 | // key definition |
890 | if (buf.contains(QRegExp("^\\d+\\s+[0-1a-fx]+", FALSE, FALSE))) { | 897 | if (buf.contains(QRegExp("^\\d+\\s+[0-1a-fx]+", FALSE, FALSE))) { |
891 | // no $1 type referencing!!! this implementation of regexp sucks | 898 | // no $1 type referencing!!! this implementation of regexp sucks |
892 | 899 | ||
893 | // dont know of any sscanf() type funcs in Qt lib | 900 | // dont know of any sscanf() type funcs in Qt lib |
894 | QTextStream tmp (buf, IO_ReadOnly); | 901 | QTextStream tmp (buf, IO_ReadOnly); |
895 | tmp >> row >> qcode >> unicode >> width >> comment; | 902 | tmp >> row >> qcode >> unicode >> width >> comment; |
896 | 903 | ||
897 | buf = t.readLine(); | 904 | buf = t.readLine(); |
898 | int xpmLineCount = 0; | 905 | int xpmLineCount = 0; |
899 | xpm2pix = 0; | 906 | xpm2pix = 0; |
900 | 907 | ||
901 | // erase blank space | 908 | // erase blank space |
902 | while (buf.contains(QRegExp("^\\s*$")) && buf) buf = t.readLine(); | 909 | while (buf.contains(QRegExp("^\\s*$")) && buf) buf = t.readLine(); |
903 | 910 | ||
904 | while (buf.contains(QRegExp("^\\s*\".*\""))) { | 911 | while (buf.contains(QRegExp("^\\s*\".*\""))) { |
905 | 912 | ||
906 | QString xpmBuf = buf.stripWhiteSpace(); | 913 | QString xpmBuf = buf.stripWhiteSpace(); |
907 | 914 | ||
908 | xpm[xpmLineCount] = new char [xpmBuf.length()]; | 915 | xpm[xpmLineCount] = new char [xpmBuf.length()]; |
909 | 916 | ||
910 | int j = 0; | 917 | int j = 0; |
911 | for (ushort i = 0; i < xpmBuf.length(); i++) { | 918 | for (ushort i = 0; i < xpmBuf.length(); i++) { |
912 | if (xpmBuf[i].latin1() != '"') { | 919 | if (xpmBuf[i].latin1() != '"') { |
913 | 920 | ||
914 | ((char *)xpm[xpmLineCount])[j] = xpmBuf.at(i).latin1(); | 921 | ((char *)xpm[xpmLineCount])[j] = xpmBuf.at(i).latin1(); |
915 | j++; | 922 | j++; |
916 | } | 923 | } |
917 | 924 | ||
918 | } | 925 | } |
919 | // have to close that facker up | 926 | // have to close that facker up |
920 | ((char *)xpm[xpmLineCount])[j] = '\0'; | 927 | ((char *)xpm[xpmLineCount])[j] = '\0'; |
921 | 928 | ||
922 | xpmLineCount++; | 929 | xpmLineCount++; |
923 | buf = t.readLine(); | 930 | buf = t.readLine(); |
924 | } | 931 | } |
925 | if (xpmLineCount) { | 932 | if (xpmLineCount) { |
926 | 933 | ||
927 | xpm2pix = new QPixmap((const char **)xpm); | 934 | xpm2pix = new QPixmap((const char **)xpm); |
928 | for (int i = 0; i < xpmLineCount; i++) | 935 | for (int i = 0; i < xpmLineCount; i++) |
929 | 936 | ||
930 | delete [] (xpm[i]); | 937 | delete [] (xpm[i]); |
931 | 938 | ||
932 | } | 939 | } |
933 | setKey(row, qcode, unicode, width, xpm2pix); | 940 | setKey(row, qcode, unicode, width, xpm2pix); |
934 | } | 941 | } |
935 | 942 | ||
936 | // shift map | 943 | // shift map |
937 | else if (buf.contains(QRegExp("^[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { | 944 | else if (buf.contains(QRegExp("^[0-9a-fx]+\\s+[0-9a-fx]+\\s*$", FALSE, FALSE))) { |
938 | 945 | ||
939 | QTextStream tmp (buf, IO_ReadOnly); | 946 | QTextStream tmp (buf, IO_ReadOnly); |
940 | ushort lower, shift; | 947 | ushort lower, shift; |
941 | tmp >> lower >> shift; | 948 | tmp >> lower >> shift; |
942 | 949 | ||
943 | shiftMap.insert(lower, shift); | 950 | shiftMap.insert(lower, shift); |
944 | 951 | ||
945 | buf = t.readLine(); | 952 | buf = t.readLine(); |
946 | } | 953 | } |
947 | 954 | ||
948 | // other variables like lang & title | 955 | // other variables like lang & title |
949 | else if (buf.contains(QRegExp("^\\s*[a-zA-Z]+\\s*=\\s*[a-zA-Z0-9/]+\\s*$", FALSE, FALSE))) { | 956 | else if (buf.contains(QRegExp("^\\s*[a-zA-Z]+\\s*=\\s*[a-zA-Z0-9/]+\\s*$", FALSE, FALSE))) { |
950 | 957 | ||
951 | QTextStream tmp (buf, IO_ReadOnly); | 958 | QTextStream tmp (buf, IO_ReadOnly); |
952 | QString name, equals, value; | 959 | QString name, equals, value; |
953 | 960 | ||
954 | tmp >> name >> equals >> value; | 961 | tmp >> name >> equals >> value; |
955 | 962 | ||
956 | if (name == "lang") { | 963 | if (name == "lang") { |
957 | 964 | ||
958 | lang = value; | 965 | lang = value; |
959 | 966 | ||
960 | } | 967 | } |
961 | 968 | ||
962 | cout << name << " = " << value << "\n"; | ||
963 | buf = t.readLine(); | 969 | buf = t.readLine(); |
964 | } | 970 | } |
965 | // comments | 971 | // comments |
966 | else if (buf.contains(QRegExp("^\\s*#"))) { | 972 | else if (buf.contains(QRegExp("^\\s*#"))) { |
967 | 973 | ||
968 | buf = t.readLine(); | 974 | buf = t.readLine(); |
969 | 975 | ||
970 | } else { // blank line, or garbage | 976 | } else { // blank line, or garbage |
971 | 977 | ||
972 | buf = t.readLine(); | 978 | buf = t.readLine(); |
973 | 979 | ||
974 | } | 980 | } |
975 | 981 | ||
976 | } | 982 | } |
977 | f.close(); | 983 | f.close(); |
978 | } | 984 | } |
979 | 985 | ||
980 | } | 986 | } |
981 | 987 | ||
982 | // Keys::setKey {{{2 | 988 | // Keys::setKey {{{2 |
983 | void Keys::setKey(const int row, const int qcode, const ushort unicode, | 989 | void Keys::setKey(const int row, const int qcode, const ushort unicode, |
984 | const int width, QPixmap *pix) { | 990 | const int width, QPixmap *pix) { |
985 | 991 | ||
986 | Key * key; | 992 | Key * key; |
987 | key = new Key; | 993 | key = new Key; |
988 | key->qcode = qcode; | 994 | key->qcode = qcode; |
989 | key->unicode = unicode; | 995 | key->unicode = unicode; |
990 | key->width = width; | 996 | key->width = width; |
991 | 997 | ||
992 | // share key->pressed between same keys | 998 | // share key->pressed between same keys |
993 | bool found = 0; | 999 | bool found = 0; |
994 | for (int i = 1; i <= 5; i++) { | 1000 | for (int i = 1; i <= 5; i++) { |
995 | for (unsigned int j = 0; j < keys[i].count(); j++) | 1001 | for (unsigned int j = 0; j < keys[i].count(); j++) |
996 | if (keys[i].at(j)->qcode == qcode && keys[i].at(j)->unicode == unicode) { | 1002 | if (keys[i].at(j)->qcode == qcode && keys[i].at(j)->unicode == unicode) { |
997 | 1003 | ||
998 | key->pressed = keys[i].at(j)->pressed; | 1004 | key->pressed = keys[i].at(j)->pressed; |
999 | found = 1; | 1005 | found = 1; |
1000 | } | 1006 | } |
1001 | 1007 | ||
1002 | } | 1008 | } |
1003 | if (!found) { | 1009 | if (!found) { |
1004 | 1010 | ||
1005 | key->pressed = new bool; | 1011 | key->pressed = new bool; |
1006 | *(key->pressed) = 0; | 1012 | *(key->pressed) = 0; |
1007 | } | 1013 | } |
1008 | 1014 | ||
1009 | key->pix = pix; | 1015 | key->pix = pix; |
1010 | 1016 | ||
1011 | 1017 | ||
1012 | keys[row].append(key); | 1018 | keys[row].append(key); |
1013 | } | 1019 | } |
1014 | // Keys:: other functions {{{2 | 1020 | // Keys:: other functions {{{2 |
1015 | int Keys::width(const int row, const int col) { | 1021 | int Keys::width(const int row, const int col) { |
1016 | 1022 | ||
1017 | return keys[row].at(col)->width; | 1023 | return keys[row].at(col)->width; |
1018 | 1024 | ||
1019 | } | 1025 | } |
1020 | ushort Keys::uni(const int row, const int col) { | 1026 | ushort Keys::uni(const int row, const int col) { |
1021 | 1027 | ||
1022 | return keys[row].at(col)->unicode; | 1028 | return keys[row].at(col)->unicode; |
1023 | 1029 | ||
1024 | } | 1030 | } |
1025 | 1031 | ||
1026 | int Keys::qcode(const int row, const int col) { | 1032 | int Keys::qcode(const int row, const int col) { |
1027 | 1033 | ||
1028 | return keys[row].at(col)->qcode; | 1034 | return keys[row].at(col)->qcode; |
1029 | } | 1035 | } |
1030 | 1036 | ||
1031 | QPixmap *Keys::pix(const int row, const int col) { | 1037 | QPixmap *Keys::pix(const int row, const int col) { |
1032 | 1038 | ||
1033 | return keys[row].at(col)->pix; | 1039 | return keys[row].at(col)->pix; |
1034 | 1040 | ||
1035 | } | 1041 | } |
1036 | bool Keys::pressed(const int row, const int col) { | 1042 | bool Keys::pressed(const int row, const int col) { |
1037 | 1043 | ||
1038 | return *(keys[row].at(col)->pressed); | 1044 | return *(keys[row].at(col)->pressed); |
1039 | } | 1045 | } |
1040 | 1046 | ||
1041 | int Keys::numKeys(const int row) { | 1047 | int Keys::numKeys(const int row) { |
1042 | 1048 | ||
1043 | return keys[row].count(); | 1049 | return keys[row].count(); |
1044 | } | 1050 | } |
1045 | 1051 | ||
1046 | void Keys::setPressed(const int row, const int col, const bool pressed) { | 1052 | void Keys::setPressed(const int row, const int col, const bool pressed) { |
1047 | 1053 | ||
1048 | *(keys[row].at(col)->pressed) = pressed; | 1054 | *(keys[row].at(col)->pressed) = pressed; |
1049 | } | 1055 | } |
1050 | 1056 | ||
1051 | ushort Keys::shift(const ushort uni) { | 1057 | ushort Keys::shift(const ushort uni) { |
1052 | 1058 | ||
1053 | if (shiftMap[uni]) { | 1059 | if (shiftMap[uni]) { |
1054 | 1060 | ||
1055 | return shiftMap[uni]; | 1061 | return shiftMap[uni]; |
1056 | } | 1062 | } |
1057 | else | 1063 | else |
1058 | return 0; | 1064 | return 0; |
1059 | 1065 | ||
1060 | } | 1066 | } |
1061 | 1067 | ||
1062 | bool *Keys::pressedPtr(const int row, const int col) { | 1068 | bool *Keys::pressedPtr(const int row, const int col) { |
1063 | 1069 | ||
1064 | return keys[row].at(col)->pressed; | 1070 | return keys[row].at(col)->pressed; |
1065 | } | 1071 | } |
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h index c2efe10..8ca50ea 100644 --- a/inputmethods/multikey/keyboard.h +++ b/inputmethods/multikey/keyboard.h | |||
@@ -1,156 +1,157 @@ | |||
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 | ushort uni(const int row, const int col); | 58 | ushort uni(const int row, const int col); |
59 | int qcode(const int row, const int col); | 59 | int qcode(const int row, const int col); |
60 | int width(const int row, const int col); | 60 | int width(const int row, const int col); |
61 | bool pressed(const int row, const int col); | 61 | bool pressed(const int row, const int col); |
62 | bool *pressedPtr(const int row, const int col); | 62 | bool *pressedPtr(const int row, const int col); |
63 | ushort shift(const ushort); | 63 | ushort shift(const ushort); |
64 | QPixmap *pix(const int row, const int col); | 64 | QPixmap *pix(const int row, const int col); |
65 | int numKeys(const int row); | 65 | int numKeys(const int row); |
66 | void setKeysFromFile(const char *filename); | 66 | void setKeysFromFile(const char *filename); |
67 | void setKey(const int row, const int qcode, const ushort unicode, | 67 | void setKey(const int row, const int qcode, const ushort unicode, |
68 | const int width, QPixmap *pix); | 68 | const int width, QPixmap *pix); |
69 | void setPressed(const int row, const int col, const bool pressed); | 69 | void setPressed(const int row, const int col, const bool pressed); |
70 | QString lang; | 70 | QString lang; |
71 | QString title; | 71 | QString title; |
72 | 72 | ||
73 | private: | 73 | private: |
74 | 74 | ||
75 | typedef struct Key { | 75 | typedef struct Key { |
76 | int qcode; // are qt key codes just unicode values? | 76 | int qcode; // are qt key codes just unicode values? |
77 | ushort unicode; | 77 | ushort unicode; |
78 | int width; // not pixels but relative key width. normal key is 2 | 78 | int width; // not pixels but relative key width. normal key is 2 |
79 | 79 | ||
80 | // only needed for keys like ctrl that can have multiple keys pressed at once | 80 | // only needed for keys like ctrl that can have multiple keys pressed at once |
81 | bool *pressed; | 81 | bool *pressed; |
82 | QPixmap *pix; | 82 | QPixmap *pix; |
83 | }; | 83 | }; |
84 | 84 | ||
85 | QList<Key> keys[6]; | 85 | QList<Key> keys[6]; |
86 | QMap<ushort,ushort> shiftMap; | 86 | QMap<ushort,ushort> shiftMap; |
87 | 87 | ||
88 | }; | 88 | }; |
89 | 89 | ||
90 | class Keyboard : public QFrame | 90 | class Keyboard : public QFrame |
91 | { | 91 | { |
92 | Q_OBJECT | 92 | Q_OBJECT |
93 | public: | 93 | public: |
94 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); | 94 | Keyboard( QWidget* parent=0, const char* name=0, WFlags f=0 ); |
95 | ~Keyboard(); | ||
95 | 96 | ||
96 | void resetState(); | 97 | void resetState(); |
97 | 98 | ||
98 | void mousePressEvent(QMouseEvent*); | 99 | void mousePressEvent(QMouseEvent*); |
99 | void mouseReleaseEvent(QMouseEvent*); | 100 | void mouseReleaseEvent(QMouseEvent*); |
100 | void resizeEvent(QResizeEvent*); | 101 | void resizeEvent(QResizeEvent*); |
101 | void paintEvent(QPaintEvent* e); | 102 | void paintEvent(QPaintEvent* e); |
102 | //void timerEvent(QTimerEvent* e); | 103 | //void timerEvent(QTimerEvent* e); |
103 | void drawKeyboard( QPainter &p, int row = -1, int col = -1); | 104 | void drawKeyboard( QPainter &p, int row = -1, int col = -1); |
104 | 105 | ||
105 | QSize sizeHint() const; | 106 | QSize sizeHint() const; |
106 | 107 | ||
107 | signals: | 108 | signals: |
108 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); | 109 | void key( ushort scancode, ushort unicode, ushort modifiers, bool, bool ); |
109 | 110 | ||
110 | private slots: | 111 | private slots: |
111 | void repeat(); | 112 | void repeat(); |
112 | void togglePickboard(bool on_off); | 113 | void togglePickboard(bool on_off); |
113 | void setMapToDefault(); | 114 | void setMapToDefault(); |
114 | void setMapToFile(QString file); | 115 | void setMapToFile(QString file); |
115 | 116 | ||
116 | private: | 117 | private: |
117 | int getKey( int &w, int j = -1 ); | 118 | int getKey( int &w, int j = -1 ); |
118 | void clearHighlight(); | 119 | void clearHighlight(); |
119 | 120 | ||
120 | bool *shift; | 121 | bool *shift; |
121 | bool *lock; | 122 | bool *lock; |
122 | bool *ctrl; | 123 | bool *ctrl; |
123 | bool *alt; | 124 | bool *alt; |
124 | uint useLargeKeys:1; | 125 | uint useLargeKeys:1; |
125 | uint usePicks:1; | 126 | uint usePicks:1; |
126 | 127 | ||
127 | int pressedKeyRow; | 128 | int pressedKeyRow; |
128 | int pressedKeyCol; | 129 | int pressedKeyCol; |
129 | 130 | ||
130 | KeyboardPicks *picks; | 131 | KeyboardPicks *picks; |
131 | 132 | ||
132 | int keyHeight; | 133 | int keyHeight; |
133 | int defaultKeyWidth; | 134 | int defaultKeyWidth; |
134 | int xoffs; | 135 | int xoffs; |
135 | 136 | ||
136 | int unicode; | 137 | int unicode; |
137 | int qkeycode; | 138 | int qkeycode; |
138 | int modifiers; | 139 | int modifiers; |
139 | 140 | ||
140 | int pressTid; | 141 | int pressTid; |
141 | bool pressed; | 142 | bool pressed; |
142 | 143 | ||
143 | Keys *keys; | 144 | Keys *keys; |
144 | 145 | ||
145 | /* for korean input */ | 146 | /* for korean input */ |
146 | ushort schar, mchar, echar; | 147 | ushort schar, mchar, echar; |
147 | ushort parseKoreanInput(ushort c); | 148 | ushort parseKoreanInput(ushort c); |
148 | ushort combineKoreanChars(const ushort s, const ushort m, const ushort e); | 149 | ushort combineKoreanChars(const ushort s, const ushort m, const ushort e); |
149 | ushort constoe(const ushort c); | 150 | ushort constoe(const ushort c); |
150 | 151 | ||
151 | QTimer *repeatTimer; | 152 | QTimer *repeatTimer; |
152 | 153 | ||
153 | ConfigDlg *configdlg; | 154 | ConfigDlg *configdlg; |
154 | }; | 155 | }; |
155 | 156 | ||
156 | 157 | ||