File indexing completed on 2024-05-12 05:20:40

0001 /*
0002    SPDX-FileCopyrightText: 2014-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class KMLaunchExternalComponent : public QObject
0011 {
0012     Q_OBJECT
0013 public:
0014     explicit KMLaunchExternalComponent(QWidget *parentWidget, QObject *parent = nullptr);
0015     ~KMLaunchExternalComponent() override;
0016 
0017     void slotConfigureMailMerge();
0018     void slotConfigureSendLater();
0019     void slotConfigureAutomaticArchiving();
0020     void slotConfigureFollowupReminder();
0021     void slotStartCertManager();
0022     void slotImportWizard();
0023     void slotExportData();
0024     void slotRunAddressBook();
0025     void slotImport();
0026     void slotAccountWizard();
0027     void slotFilterLogViewer();
0028 
0029     void slotShowNotificationHistory();
0030 
0031 private:
0032     QWidget *const mParentWidget;
0033 };