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
abstractformeditorplugin.cpp
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
4#include <QtDesigner/abstractformeditorplugin.h>
5
7
8/*!
9 \internal
10 \class QDesignerFormEditorPluginInterface
11 \brief The QDesignerFormEditorPluginInterface class provides an interface that is used to
12 manage plugins for \QD's form editor component.
13 \inmodule QtDesigner
14
15 \sa QDesignerFormEditorInterface
16*/
17
18/*!
19 \fn virtual QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface()
20
21 Destroys the plugin interface.
22*/
23
24/*!
25 \fn virtual bool QDesignerFormEditorPluginInterface::isInitialized() const = 0
26
27 Returns true if the plugin interface is initialized; otherwise returns false.
28*/
29
30/*!
31 \fn virtual void QDesignerFormEditorPluginInterface::initialize(QDesignerFormEditorInterface *core) = 0
32
33 Initializes the plugin interface for the specified \a core interface.
34*/
35
36/*!
37 \fn virtual QAction *QDesignerFormEditorPluginInterface::action() const = 0
38
39 Returns the action associated with this interface.
40*/
41
42/*!
43 \fn virtual QDesignerFormEditorInterface *QDesignerFormEditorPluginInterface::core() const = 0
44
45 Returns the core form editor interface associated with this component.
46*/
47
\inmodule QtSql