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
buddyeditor_plugin.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 BUDDYEDITOR_PLUGIN_H
6#define BUDDYEDITOR_PLUGIN_H
7
9
10#include <QtDesigner/abstractformeditorplugin.h>
11
12#include <QtCore/qpointer.h>
13#include <QtCore/qhash.h>
14
15QT_BEGIN_NAMESPACE
16
17class QDesignerFormWindowInterface;
18class QAction;
19
20namespace qdesigner_internal {
21
22class BuddyEditorTool;
23
25{
26 Q_OBJECT
27 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QDesignerFormEditorPluginInterface" FILE "buddyeditor.json")
29public:
32
33 bool isInitialized() const override;
34 void initialize(QDesignerFormEditorInterface *core) override;
35 QAction *action() const override;
36
37 QDesignerFormEditorInterface *core() const override;
38
39public slots:
41
42private slots:
44 void removeFormWindow(QDesignerFormWindowInterface *formWindow);
45
46private:
47 QPointer<QDesignerFormEditorInterface> m_core;
48 QHash<QDesignerFormWindowInterface*, BuddyEditorTool*> m_tools;
49 bool m_initialized = false;
50 QAction *m_action = nullptr;
51};
52
53} // namespace qdesigner_internal
54
55QT_END_NAMESPACE
56
57#endif // BUDDYEDITOR_PLUGIN_H
#define QT_BUDDYEDITOR_EXPORT
bool isInitialized() const override
Returns true if the plugin interface is initialized; otherwise returns false.
void initialize(QDesignerFormEditorInterface *core) override
Initializes the plugin interface for the specified core interface.
QDesignerFormEditorInterface * core() const override
Returns the core form editor interface associated with this component.
QAction * action() const override
Returns the action associated with this interface.
QAction * action() const override
Combined button and popup list for selecting options.
Auxiliary methods to store/retrieve settings.