Diffstat (limited to 'inputmethods/multikey/keyboard.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index 671868c..c53ae6c 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp @@ -34,4 +34,6 @@ #include <qfile.h> #include <qtextstream.h> +#include <qstringlist.h> +#include <iostream.h> #include <sys/utsname.h> @@ -289,6 +291,6 @@ void Keyboard::mousePressEvent(QMouseEvent *e) connect(configdlg, SIGNAL(setMapToDefault()), this, SLOT(setMapToDefault())); - connect(configdlg, SIGNAL(setMapToFile(QString)), - this, SLOT(setMapToFile(QString))); + connect(configdlg, SIGNAL(setMapToFile(int)), + this, SLOT(setMapToFile(int))); configdlg->showMaximized(); configdlg->show(); @@ -518,5 +520,5 @@ void Keyboard::setMapToDefault() { config = new Config("multikey"); config->setGroup ("keymaps"); - config->writeEntry ("current", key_map); // default closed + config->writeEntry ("current", -1); // default closed delete config; @@ -528,14 +530,22 @@ void Keyboard::setMapToDefault() { } -void Keyboard::setMapToFile(QString file) { +void Keyboard::setMapToFile(int index) { /* save change to multikey config file */ Config *config = new Config("multikey"); config->setGroup ("keymaps"); - config->writeEntry ("current", file); // default closed + config->writeEntry ("current", index); // default closed + + + /* now you have to retrieve the map */ + QStringList maps = config->readListEntry("maps", QChar('|')); delete config; delete keys; - keys = new Keys(file); + if (index < 0 || (int)maps.count() <= index) + keys = new Keys(); + else + keys = new Keys(maps[index]); + repaint(FALSE); @@ -850,8 +860,12 @@ Keys::Keys() { Config *config = new Config ("multikey"); config->setGroup( "keymaps" ); - QString key_map = config->readEntry( "current" ); + QStringList maps = config->readListEntry ("maps", QChar('|')); + + int index = config->readNumEntry( "current", -1 ); delete config; - if (key_map.isNull()) { + QString key_map; + + if (index < 0 || (int)maps.count() <= index) { Config *config = new Config("locale"); @@ -863,4 +877,7 @@ Keys::Keys() { + l + ".keymap"; + } else { + + key_map = maps[index]; } |