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

#ifndef DIALDIALOG_H
#define DIALDIALOG_H

#include <qdialog.h>
#include <qstring.h>
#include <qlcdnumber.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( int );

private:
    float m_number;
    QLCDNumber *LCD;

private slots:
    void slotEnterNumber( int );
};


#endif