File indexing completed on 2025-01-19 04:46:51

0001 /*
0002    SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "dkimconfigure_private_export.h"
0010 #include <QWidget>
0011 class QComboBox;
0012 class QCheckBox;
0013 class LIBDKIMVERIFYCONFIGURE_TESTS_EXPORT DKIMAdvancedWidget : public QWidget
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit DKIMAdvancedWidget(QWidget *parent = nullptr);
0018     ~DKIMAdvancedWidget() override;
0019 
0020 private:
0021     void slotConfigureAuthenticationServer();
0022     QComboBox *const mSha1Policy;
0023     QCheckBox *const mCheckDKIMWhenOnlyTesting;
0024     QCheckBox *const mUseAuthenticationResultRelaxedParser;
0025     QComboBox *const mSmallKeyPolicy;
0026 };