A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|