Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
abstractoptionspage.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3// Qt-Security score:significant reason:default
4
5#ifndef ABSTRACTOPTIONSPAGE_P_H
6#define ABSTRACTOPTIONSPAGE_P_H
7
8#include <QtDesigner/sdk_global.h>
9
10QT_BEGIN_NAMESPACE
11
12class QString;
13class QWidget;
14
15class QDESIGNER_SDK_EXPORT QDesignerOptionsPageInterface
16{
17public:
18 Q_DISABLE_COPY_MOVE(QDesignerOptionsPageInterface)
19
20 QDesignerOptionsPageInterface() = default;
21 virtual ~QDesignerOptionsPageInterface() = default;
22
23 virtual QString name() const = 0;
24 virtual QWidget *createPage(QWidget *parent) = 0;
25 virtual void apply() = 0;
26 virtual void finish() = 0;
27};
28
29QT_END_NAMESPACE
30
31#endif // ABSTRACTOPTIONSPAGE_P_H
friend class QWidget
Definition qpainter.h:432