summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profiledialogwidget.h
blob: 68f2162514296fa60e5305eb06f3623cf632a41a (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#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,
        Keyboard
    };
    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;

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

class NoOptions : public ProfileDialogWidget {
    Q_OBJECT
    public:
    NoOptions( const QString& name, QWidget* parent, const char* na );
    ~NoOptions() {}
    void load( const Profile& );
    void save( Profile& );
    Type type()const{ return Connection; };
};
#endif