author | hash <hash> | 2002-08-18 06:18:18 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-18 06:18:18 (UTC) |
commit | 229a66f5a955ec71bd5973ac6961cd694692856a (patch) (side-by-side diff) | |
tree | e2fa7e43d90728b972933e3fca77a897aa376287 /inputmethods/multikey | |
parent | 5f271187a72b18339310f12a2c753e9b8548c078 (diff) | |
download | opie-229a66f5a955ec71bd5973ac6961cd694692856a.zip opie-229a66f5a955ec71bd5973ac6961cd694692856a.tar.gz opie-229a66f5a955ec71bd5973ac6961cd694692856a.tar.bz2 |
paths to maps are now saved in config dialog
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 29 | ||||
-rw-r--r-- | inputmethods/multikey/configdlg.h | 2 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 33 | ||||
-rw-r--r-- | inputmethods/multikey/keyboard.h | 2 |
4 files changed, 53 insertions, 13 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index 7bea589..c4f7413 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp @@ -21,4 +21,5 @@ #include <qpushbutton.h> #include <qlistbox.h> +#include <qstringlist.h> #include "configdlg.h" #include "keyboard.h" @@ -27,4 +28,5 @@ ConfigDlg::ConfigDlg () : QTabWidget () { setCaption( tr("Multikey Configuration") ); + Config config ("multikey"); /* @@ -40,10 +42,22 @@ ConfigDlg::ConfigDlg () : QTabWidget () keymaps = new QListBox (map_group); keymaps->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); - //keymaps->setMaximumHeight(150); QString cur(tr("Current Language")); keymaps->insertItem(cur); + + config.setGroup ("keymaps"); + QStringList maps = config.readListEntry("maps", QChar('|')); + + for (unsigned int i = 0; i < maps.count(); i++) { + + keymaps->insertItem(maps[i]); + } + + // have to "+1" because the "current language" listItem... remember? + keymaps->setSelected(config.readNumEntry("current", 0) + 1, true); + connect(keymaps, SIGNAL(highlighted(int)), SLOT(setMap(int))); + /* QString ko(QPEApplication::qpeDir() + "/share/multikey/ko.keymap"); keymaps->insertItem(ko); @@ -54,4 +68,5 @@ ConfigDlg::ConfigDlg () : QTabWidget () QString de(QPEApplication::qpeDir() + "/share/multikey/de.keymap"); keymaps->insertItem(de); + */ QGrid *add_remove_grid = new QGrid(2, map_group); @@ -67,5 +82,4 @@ ConfigDlg::ConfigDlg () : QTabWidget () pick_button = new QCheckBox(tr("Pickboard"), gen_box); - Config config ("multikey"); config.setGroup ("pickboard"); bool pick_open = config.readBoolEntry ("open", "0"); // default closed @@ -117,4 +131,13 @@ void ConfigDlg::pickTog() { } +/* + * the index is kinda screwy, because in the config file, index 0 is just the + * first element in the QStringList, but here it's the "Current Language" + * listItem. therefor you have to minus one to the index before you access + * it from the config file. + * + * and later on, the "current language" setting should be -1 in the config file + */ + void ConfigDlg::setMap(int index) { @@ -131,5 +154,5 @@ void ConfigDlg::setMap(int index) { remove_button->setEnabled(true); - emit setMapToFile(keymaps->text(index)); + emit setMapToFile(index - 1); } } diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h index 1a64764..03a3547 100644 --- a/inputmethods/multikey/configdlg.h +++ b/inputmethods/multikey/configdlg.h @@ -18,5 +18,5 @@ signals: void pickboardToggled(bool on_off); void setMapToDefault(); - void setMapToFile(QString file); + void setMapToFile(int index); private slots: 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]; } diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h index 400edc0..7a8d4b4 100644 --- a/inputmethods/multikey/keyboard.h +++ b/inputmethods/multikey/keyboard.h @@ -114,5 +114,5 @@ private slots: void togglePickboard(bool on_off); void setMapToDefault(); - void setMapToFile(QString file); + void setMapToFile(int index); private: |