summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/configdialog.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/configdialog.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/configdialog.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/configdialog.h b/noncore/apps/opie-console/configdialog.h
new file mode 100644
index 0000000..a0c40d0
--- a/dev/null
+++ b/noncore/apps/opie-console/configdialog.h
@@ -0,0 +1,23 @@
1#ifndef OPIE_CONFIG_DIALOG_H
2#define OPIE_CONFIG_DIALOG_H
3
4#include <qdialog.h>
5
6#include "configurebase.h"
7#include "profile.h"
8
9class ConfigDialog : public ConfigureBase {
10 Q_OBJECT
11public:
12 ConfigDialog( const Profile::ValueList&, QWidget* parent = 0l);
13 ~ConfigDialog();
14
15 Profile::ValueList list()const;
16protected slots:
17 void slotRemove();
18 void slotEdit();
19 void slotAdd();
20
21};
22
23#endif