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.
129 lines
3.7 KiB
129 lines
3.7 KiB
4 years ago
|
/* pinentrydialog.h - A (not yet) secure Qt 4 dialog for PIN entry.
|
||
|
* Copyright (C) 2002, 2008 Klarälvdalens Datakonsult AB (KDAB)
|
||
|
* Copyright 2007 Ingo Klöcker
|
||
|
* Copyright 2016 Intevation GmbH
|
||
|
*
|
||
|
* Written by Steffen Hansen <steffen@klaralvdalens-datakonsult.se>.
|
||
|
* Modified by Andre Heinecke <aheinecke@intevation.de>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License as
|
||
|
* published by the Free Software Foundation; either version 2 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __PINENTRYDIALOG_H__
|
||
|
#define __PINENTRYDIALOG_H__
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QStyle>
|
||
|
#include <QTimer>
|
||
|
|
||
|
#include "pinentry.h"
|
||
|
|
||
|
class QLabel;
|
||
|
class QPushButton;
|
||
|
class QLineEdit;
|
||
2 years ago
|
class PinLineEdit;
|
||
4 years ago
|
class QString;
|
||
|
class QProgressBar;
|
||
|
class QCheckBox;
|
||
|
class QAction;
|
||
|
|
||
|
QPixmap icon(QStyle::StandardPixmap which = QStyle::SP_CustomBase);
|
||
|
|
||
|
void raiseWindow(QWidget *w);
|
||
|
|
||
|
class PinEntryDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PROPERTY(QString description READ description WRITE setDescription)
|
||
|
Q_PROPERTY(QString error READ error WRITE setError)
|
||
|
Q_PROPERTY(QString pin READ pin WRITE setPin)
|
||
|
Q_PROPERTY(QString prompt READ prompt WRITE setPrompt)
|
||
|
public:
|
||
|
explicit PinEntryDialog(QWidget *parent = 0, const char *name = 0,
|
||
|
int timeout = 0, bool modal = false,
|
||
|
bool enable_quality_bar = false,
|
||
|
const QString &repeatString = QString(),
|
||
|
const QString &visibiltyTT = QString(),
|
||
|
const QString &hideTT = QString());
|
||
|
|
||
|
void setDescription(const QString &);
|
||
|
QString description() const;
|
||
|
|
||
|
void setError(const QString &);
|
||
|
QString error() const;
|
||
|
|
||
|
void setPin(const QString &);
|
||
|
QString pin() const;
|
||
|
|
||
|
QString repeatedPin() const;
|
||
|
void setRepeatErrorText(const QString &);
|
||
|
|
||
|
void setPrompt(const QString &);
|
||
|
QString prompt() const;
|
||
|
|
||
|
void setOkText(const QString &);
|
||
|
void setCancelText(const QString &);
|
||
|
|
||
|
void setQualityBar(const QString &);
|
||
|
void setQualityBarTT(const QString &);
|
||
|
|
||
2 years ago
|
void setGenpinLabel(const QString &);
|
||
|
void setGenpinTT(const QString &);
|
||
|
|
||
4 years ago
|
void setPinentryInfo(pinentry_t);
|
||
|
|
||
|
bool timedOut() const;
|
||
|
|
||
|
protected slots:
|
||
|
void updateQuality(const QString &);
|
||
|
void slotTimeout();
|
||
|
void textChanged(const QString &);
|
||
|
void focusChanged(QWidget *old, QWidget *now);
|
||
|
void toggleVisibility();
|
||
2 years ago
|
void onBackspace();
|
||
|
void generatePin();
|
||
4 years ago
|
|
||
|
protected:
|
||
|
/* reimp */ void showEvent(QShowEvent *event);
|
||
|
|
||
|
private:
|
||
|
QLabel *_icon;
|
||
|
QLabel *_desc;
|
||
|
QLabel *_error;
|
||
|
QLabel *_prompt;
|
||
|
QLabel *_quality_bar_label;
|
||
|
QProgressBar *_quality_bar;
|
||
2 years ago
|
PinLineEdit *_edit;
|
||
|
QLineEdit *mRepeat;
|
||
4 years ago
|
QPushButton *_ok;
|
||
|
QPushButton *_cancel;
|
||
|
bool _grabbed;
|
||
|
bool _have_quality_bar;
|
||
|
bool _timed_out;
|
||
2 years ago
|
bool _disable_echo_allowed;
|
||
4 years ago
|
pinentry_t _pinentry_info;
|
||
|
QTimer *_timer;
|
||
|
QString mRepeatError,
|
||
|
mVisibilityTT,
|
||
2 years ago
|
mGenerateTT,
|
||
4 years ago
|
mHideTT;
|
||
2 years ago
|
QAction *mVisiActionEdit,
|
||
|
*mGenerateActionEdit;
|
||
4 years ago
|
QCheckBox *mVisiCB;
|
||
|
};
|
||
|
|
||
|
#endif // __PINENTRYDIALOG_H__
|