summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profiledialogwidget.h
blob: 5d279e67ffddf92bfad8162465125265a5b4bd4e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef OPIE_PROFILE_DIALOG_WIDGET_H
#define OPIE_PROFILE_DIALOG_WIDGET_H

#include <qwidget.h>

#include "profile.h"

class ProfileDialogWidget : public QWidget {
    Q_OBJECT
public:
    enum Type {
        Connection,
        Terminal
    };
    ProfileDialogWidget( const QString& name, QWidget* parent, const char* name = 0l);
    ~ProfileDialogWidget();

    /*
     * load data from a Profile into
     * the DialogWidget
     */
    virtual void load( const Profile& ) = 0;

    /*
     * save data into a profile
     * from the DialogWidget
     */
    virtual void save( Profile& ) = 0;

    virtual Type type()const = 0;
};
class ProfileDialogTerminalWidget : public ProfileDialogWidget {
    Q_OBJECT
public:
    ProfileDialogTerminalWidget( const QString& name, QWidget* widget,
                                 const char* name  =0l);
    ~ProfileDialogTerminalWidget();
    Type type()const;
};
class ProfileDialogConnectionWidget : public ProfileDialogWidget {
    Q_OBJECT
public:
    ProfileDialogConnectionWidget( const QString& name, QWidget* parent,
                                   const char* name =0l);
    ~ProfileDialogConnectionWidget();
    Type type() const;

};

#endif