summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileeditordialog.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/profileeditordialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditordialog.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/profileeditordialog.h b/noncore/apps/opie-console/profileeditordialog.h
new file mode 100644
index 0000000..5ccc691
--- a/dev/null
+++ b/noncore/apps/opie-console/profileeditordialog.h
@@ -0,0 +1,28 @@
+#ifndef PROFILE_EDITOR_DIALOG
+#define PROFILE_EDITOR_DIALOG
+
+#include <qdialog.h>
+
+#include "profile.h"
+
+class MetaFactory;
+class EditBase;
+class QTabWidget;
+class QHBoxLayout;
+class ProfileEditorDialog : public QDialog {
+ Q_OBJECT
+public:
+ ProfileEditorDialog(MetaFactory* fact,
+ const Profile& prof );
+ ProfileEditorDialog(MetaFactory* fact );
+ Profile profile()const;
+private:
+ void initUI();
+ MetaFactory* m_fact;
+ EditBase* m_base;
+ QTabWidget* m_tab;
+ QHBoxLayout* m_lay;
+ Profile m_prof;
+};
+
+#endif