summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.h
Side-by-side diff
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