File indexing completed on 2025-01-05 04:58:20
0001 /* 0002 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 0006 */ 0007 0008 #pragma once 0009 0010 #include "pimcommonakonadi_private_export.h" 0011 #include <KMessageWidget> 0012 0013 namespace PimCommon 0014 { 0015 class PIMCOMMONAKONADI_TESTS_EXPORT BlackListBalooEmailWarning : public KMessageWidget 0016 { 0017 Q_OBJECT 0018 public: 0019 explicit BlackListBalooEmailWarning(QWidget *parent = nullptr); 0020 ~BlackListBalooEmailWarning() override; 0021 0022 Q_SIGNALS: 0023 void newSearch(); 0024 void saveChanges(); 0025 0026 private: 0027 void slotSaveBlackList(); 0028 void slotSearch(); 0029 }; 0030 }