Messagelib

remotecontentconfiguredialog.h
1/*
2 SPDX-FileCopyrightText: 2020-2024 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 <QDialog>
11namespace MessageViewer
12{
13class RemoteContentConfigureWidget;
14/**
15 * @brief The RemoteContentConfigureDialog class
16 * @author Laurent Montel <montel@kde.org>
17 */
18class MESSAGEVIEWER_EXPORT RemoteContentConfigureDialog : public QDialog
19{
20 Q_OBJECT
21public:
22 explicit RemoteContentConfigureDialog(QWidget *parent = nullptr);
24
25private:
26 MESSAGEVIEWER_NO_EXPORT void readConfig();
27 MESSAGEVIEWER_NO_EXPORT void writeConfig();
28 MESSAGEVIEWER_NO_EXPORT void slotAccept();
29 RemoteContentConfigureWidget *const mRemoteContentConfigureWidget;
30};
31}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:12:43 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.