00001 00002 #ifndef DIALDIALOG_H 00003 #define DIALDIALOG_H 00004 00005 #include <qdialog.h> 00006 #include <qstring.h> 00007 #include <qlineedit.h> 00008 00009 00010 class DialDialog : public QDialog { 00011 00012 Q_OBJECT 00013 00014 public: 00015 DialDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 00016 00017 ~DialDialog(); 00018 00019 QString number(); 00020 00021 void setNumber( QString number ); 00022 00023 private: 00024 QString m_number; 00025 QLineEdit *m_dialLine; 00026 00027 private slots: 00028 void slotEnterNumber( int ); 00029 }; 00030 00031 00032 #endif
1.4.2