File indexing completed on 2024-12-01 04:36:52
0001 /* 0002 SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 #pragma once 0007 0008 #include <QWidget> 0009 0010 #include "libruqolawidgets_private_export.h" 0011 class RocketChatAccount; 0012 class QLineEdit; 0013 class LIBRUQOLAWIDGETS_TESTS_EXPORT MyAccount2FaDisableTotpWidget : public QWidget 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit MyAccount2FaDisableTotpWidget(RocketChatAccount *account, QWidget *parent = nullptr); 0018 ~MyAccount2FaDisableTotpWidget() override; 0019 0020 Q_SIGNALS: 0021 void hide2FaDisableTotpWidget(); 0022 0023 private: 0024 LIBRUQOLAWIDGETS_NO_EXPORT void slotVerify(); 0025 LIBRUQOLAWIDGETS_NO_EXPORT void slotRegenerateCode(); 0026 LIBRUQOLAWIDGETS_NO_EXPORT void slotTotpInvalid(bool check); 0027 RocketChatAccount *const mRocketChatAccount; 0028 QLineEdit *const mDisableCodeLineEdit; 0029 };