summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/iolayerbase.h
blob: d14f33475f95ad2b21ecb0a19422cebab06043fb (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
#ifndef OPIE_IO_LAYER_BASE_H
#define OPIE_IO_LAYER_BASE_H


#include <qwidget.h>

class QLabel;
class QComboBox;
class QVBoxLayout;
class QButtonGroup;
class QRadioButton;
class QHBoxLayout;
class IOLayerBase : public QWidget {
    Q_OBJECT
public:
    enum Flow { Hardware, Software, None };
    enum Parity{ Odd  =2 , Even =1 };
    enum Speed{ Baud_115200,
                Baud_57600,
                Baud_38400,
                Baud_19200,
                Baud_9600 };
    IOLayerBase( QWidget* base,  const char* name = 0l);
    ~IOLayerBase();

    void setFlow( Flow flo );
    void setParity( Parity par );
    void setSpeed( Speed speed );

    Flow flow()const;
    Parity parity()const;
    Speed speed()const;
private:
    QVBoxLayout* m_lroot;
    QLabel* m_speedLabel;
    QComboBox* m_speedBox;
    QButtonGroup* m_groupFlow;
    QRadioButton *m_flowHw, *m_flowSw, *m_flowNone;

    QButtonGroup* m_groupParity;
    QRadioButton *m_parityOdd, *m_parityEven;
    QHBoxLayout* m_hbox;
    QHBoxLayout* m_hboxPar;
};


#endif