Messagelib

networkpluginurlinterceptorconfigurewidget.h
1 /*
2  SPDX-FileCopyrightText: 2016-2023 Laurent Montel <[email protected]>
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 
12 namespace WebEngineViewer
13 {
14 /**
15  * @brief The NetworkPluginUrlInterceptorConfigureWidget class
16  * @author Laurent Montel <[email protected]>
17  */
18 class WEBENGINEVIEWER_EXPORT NetworkPluginUrlInterceptorConfigureWidget : public QWidget
19 {
20  Q_OBJECT
21 public:
22  explicit NetworkPluginUrlInterceptorConfigureWidget(QWidget *parent = nullptr);
24 
25  virtual void loadSettings() = 0;
26  virtual void saveSettings() = 0;
27  virtual void resetSettings() = 0;
28 
29  virtual QString helpAnchor() const;
30 
31 Q_SIGNALS:
32  void configureChanged();
33 };
34 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sun Mar 26 2023 04:08:11 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.