summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/serialconfigwidget.h
blob: 8b5c8aa1908cb2087297eb12080dc5de1061ee35 (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
#ifndef OPIE_SERIAL_CONFIG_WIDGET_H
#define OPIE_SERIAL_CONFIG_WIDGET_H

#include "profiledialogwidget.h"

class QVBoxLayout;
class QLabel;
class QComboBox;
class IOLayerBase;
class SerialConfigWidget : public ProfileDialogConnectionWidget {
    Q_OBJECT
public:
    SerialConfigWidget( const QString& name, QWidget* parent, const char* name = 0l );
    ~SerialConfigWidget();

    void load( const Profile& );
    void save( Profile& );
private:
    QVBoxLayout* m_lay;
    QLabel* m_device;
    QComboBox* m_deviceCmb;
    IOLayerBase* m_base;

};


#endif