summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/dialdialog.h
blob: 6da26a12e11a2fd7fc71284b7348ab7757bce403 (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

#ifndef DIALDIALOG_H
#define DIALDIALOG_H

#include <qdialog.h>
#include <qstring.h>
#include <qlineedit.h>


class DialDialog : public QDialog {

    Q_OBJECT

public:
    DialDialog( QWidget* parent = 0,  const char* name = 0, bool modal = FALSE, WFlags fl = 0 );

    ~DialDialog();

    QString number();

    void setNumber( QString number );

private:
    QString m_number;
    QLineEdit *m_dialLine;

private slots:
    void slotEnterNumber( int );
};


#endif