summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/configdialog.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/configdialog.h') (more/less context) (ignore 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 @@
+#ifndef OPIE_CONFIG_DIALOG_H
+#define OPIE_CONFIG_DIALOG_H
+
+#include <qdialog.h>
+
+#include "configurebase.h"
+#include "profile.h"
+
+class ConfigDialog : public ConfigureBase {
+ Q_OBJECT
+public:
+ ConfigDialog( const Profile::ValueList&, QWidget* parent = 0l);
+ ~ConfigDialog();
+
+ Profile::ValueList list()const;
+protected slots:
+ void slotRemove();
+ void slotEdit();
+ void slotAdd();
+
+};
+
+#endif