Messagelib

messageviewerconfiguresettingsplugin.h
1/*
2 SPDX-FileCopyrightText: 2018-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "messageviewer_export.h"
10#include <QObject>
11#include <memory>
12namespace MessageViewer
13{
14class MessageViewerConfigureSettingsPluginPrivate;
15/**
16 * @brief The MessageViewerConfigureSettingsPlugin class
17 * @author Laurent Montel <montel@kde.org>
18 */
19class MESSAGEVIEWER_EXPORT MessageViewerConfigureSettingsPlugin : public QObject
20{
22public:
23 explicit MessageViewerConfigureSettingsPlugin(QObject *parent = nullptr);
24 ~MessageViewerConfigureSettingsPlugin() override;
25
26 virtual void showConfigureDialog(QWidget *parent);
27
29 void configChanged();
30
31private:
32 std::unique_ptr<MessageViewerConfigureSettingsPluginPrivate> const d;
33};
34}
QObject(QObject *parent)
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:47:40 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.