File indexing completed on 2024-05-19 05:04:09

0001 /*
0002   SPDX-FileCopyrightText: 2024 Laurent Montel <montel.org>
0003 
0004   SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 #include "libruqolawidgets_private_export.h"
0009 #include <QWidget>
0010 
0011 class KPasswordLineEdit;
0012 class LIBRUQOLAWIDGETS_TESTS_EXPORT E2ePasswordDecodeKeyWidget : public QWidget
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit E2ePasswordDecodeKeyWidget(QWidget *parent = nullptr);
0017     ~E2ePasswordDecodeKeyWidget() override;
0018 
0019     [[nodiscard]] QString password() const;
0020 
0021 private:
0022     KPasswordLineEdit *const mPassword;
0023 };