summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profiledialogwidget.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/profiledialogwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profiledialogwidget.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/profiledialogwidget.h b/noncore/apps/opie-console/profiledialogwidget.h
new file mode 100644
index 0000000..5d279e6
--- a/dev/null
+++ b/noncore/apps/opie-console/profiledialogwidget.h
@@ -0,0 +1,50 @@
1#ifndef OPIE_PROFILE_DIALOG_WIDGET_H
2#define OPIE_PROFILE_DIALOG_WIDGET_H
3
4#include <qwidget.h>
5
6#include "profile.h"
7
8class ProfileDialogWidget : public QWidget {
9 Q_OBJECT
10public:
11 enum Type {
12 Connection,
13 Terminal
14 };
15 ProfileDialogWidget( const QString& name, QWidget* parent, const char* name = 0l);
16 ~ProfileDialogWidget();
17
18 /*
19 * load data from a Profile into
20 * the DialogWidget
21 */
22 virtual void load( const Profile& ) = 0;
23
24 /*
25 * save data into a profile
26 * from the DialogWidget
27 */
28 virtual void save( Profile& ) = 0;
29
30 virtual Type type()const = 0;
31};
32class ProfileDialogTerminalWidget : public ProfileDialogWidget {
33 Q_OBJECT
34public:
35 ProfileDialogTerminalWidget( const QString& name, QWidget* widget,
36 const char* name =0l);
37 ~ProfileDialogTerminalWidget();
38 Type type()const;
39};
40class ProfileDialogConnectionWidget : public ProfileDialogWidget {
41 Q_OBJECT
42public:
43 ProfileDialogConnectionWidget( const QString& name, QWidget* parent,
44 const char* name =0l);
45 ~ProfileDialogConnectionWidget();
46 Type type() const;
47
48};
49
50#endif