References #2

This commit is contained in:
carsten.pluntke
2010-09-02 15:58:09 +00:00
parent 9a8b208c62
commit f5e983f5b9
9 changed files with 429 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef PINDIALOG_H
#define PINDIALOG_H
#include <QDialog>
class QLabel;
class QLineEdit;
class QPushButton;
class PinDialog : public QDialog
{
Q_OBJECT
public:
PinDialog(QWidget *parent = 0);
QString pin() const;
private:
QLabel* label;
QLineEdit* lineEdit;
QPushButton* okButton;
QPushButton* cancelButton;
};
#endif // PINDIALOG_H