Messagelib

networkpluginurlinterceptorconfigurewidget.h
1/*
2 SPDX-FileCopyrightText: 2016-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "webengineviewer_export.h"
10#include <QWidget>
11
12namespace WebEngineViewer
13{
14/**
15 * @brief The NetworkPluginUrlInterceptorConfigureWidget class
16 * @author Laurent Montel <montel@kde.org>
17 */
18class WEBENGINEVIEWER_EXPORT NetworkPluginUrlInterceptorConfigureWidget : public QWidget
19{
21public:
22 explicit NetworkPluginUrlInterceptorConfigureWidget(QWidget *parent = nullptr);
23 ~NetworkPluginUrlInterceptorConfigureWidget() override;
24
25 virtual void loadSettings() = 0;
26 virtual void saveSettings() = 0;
27 virtual void resetSettings() = 0;
28
29 [[nodiscard]] virtual QString helpAnchor() const;
30
32 void configureChanged();
33};
34}
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
QWidget(QWidget *parent, Qt::WindowFlags f)
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.