File indexing completed on 2024-12-22 05:01:13

0001 /*
0002    SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <PimCommonAkonadi/PluginInterface>
0010 #include <QObject>
0011 class KMMainWidget;
0012 class KMailPluginInterface : public PimCommon::PluginInterface
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit KMailPluginInterface(QObject *parent = nullptr);
0017     ~KMailPluginInterface() override;
0018 
0019     void setMainWidget(KMMainWidget *mainwindow);
0020     bool initializeInterfaceRequires(PimCommon::AbstractGenericPluginInterface *interface) override;
0021     static KMailPluginInterface *self();
0022 
0023 private:
0024     KMMainWidget *mMainWindow = nullptr;
0025 };