summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/modemconfigwidget.h
blob: 4fdde0cc3bafa4fd99b14f63f840d8f455d05988 (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
#ifndef OPIE_MODEM_CONFIG_WIDGET_H
#define OPIE_MODEM_CONFIG_WIDGET_H

#include "profiledialogwidget.h"
#include "iolayerbase.h"
#include "atconfigdialog.h"

class QVBoxLayout;
class QLabel;
class QComboBox;
class QLineEdit;
class IOLayerBase;
class ModemConfigWidget : public ProfileDialogConnectionWidget {

    Q_OBJECT

public:
    ModemConfigWidget( const QString& name, QWidget* parent, const char* name = 0l );
    ~ModemConfigWidget();

    void load( const Profile& );
    void save( Profile& );
private:
    QVBoxLayout* m_lay;
    QLabel* m_device;
    QComboBox* m_deviceCmb;
    IOLayerBase* m_base;
    QLineEdit* m_telNumber;
    ATConfigDialog *atConf;
private slots:
    void slotAT();
    void slotDial();
};


#endif