blob: 1a64764c172ab84c2ff8c3dbc6ae67236e26484d (
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(QString file);
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
|