summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.h
authorhash <hash>2002-08-19 05:35:38 (UTC)
committer hash <hash>2002-08-19 05:35:38 (UTC)
commit64a00421be85d223072e087d4d3c9ecdad464095 (patch) (side-by-side diff)
tree66cf285aa1a8d17126c5b59125c7d91fc2c08c45 /inputmethods/multikey/configdlg.h
parentd92fbca743e676182a8f33ae4c28044031143fb0 (diff)
downloadopie-64a00421be85d223072e087d4d3c9ecdad464095.zip
opie-64a00421be85d223072e087d4d3c9ecdad464095.tar.gz
opie-64a00421be85d223072e087d4d3c9ecdad464095.tar.bz2
now reads maps in default dir, and also lets you add/remove your own maps
Diffstat (limited to 'inputmethods/multikey/configdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h
index 03a3547..07d109c 100644
--- a/inputmethods/multikey/configdlg.h
+++ b/inputmethods/multikey/configdlg.h
@@ -17,13 +17,13 @@ public:
signals:
void pickboardToggled(bool on_off);
void setMapToDefault();
- void setMapToFile(int index);
+ void setMapToFile(QString map);
private slots:
void pickTog();
void setMap(int index);
void addMap();
- void removeMap(int index);
+ void removeMap();
private:
QCheckBox *pick_button;
@@ -31,6 +31,10 @@ private:
QPushButton *add_button;
QPushButton *remove_button;
+
+ QStringList default_maps; // the maps in your share/multikey/ dir
+ QStringList custom_maps; // maps you added with the 'add' button
+
};
#endif