summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.h
blob: 03a3547a76326aead2b537e84fb2cf39039f9137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <qpe/qpeapplication.h>
#include <qtabwidget.h>
#include <qcheckbox.h>
#include <qlistbox.h>
#include <qpushbutton.h>

#ifndef CONFIGDLG_H
#define CONFIGDLG_H

class ConfigDlg : public QTabWidget
{
    Q_OBJECT

public:
    ConfigDlg ();

signals:
    void pickboardToggled(bool on_off);
    void setMapToDefault();
    void setMapToFile(int index);

private slots:
    void pickTog();
    void setMap(int index);
    void addMap();
    void removeMap(int index);

private:
    QCheckBox *pick_button;
    QListBox *keymaps;
    QPushButton *add_button;
    QPushButton *remove_button;

};

#endif