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

#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();

private:
    float m_number;
    QLCDNumber *LCD;

private slots:
    void slotEnterNumber( int );
};


#endif