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
tabordereditor_tool.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 TABORDEREDITOR_TOOL_H
6#define TABORDEREDITOR_TOOL_H
7
9
10#include <QtCore/qpointer.h>
11
12#include <QtDesigner/abstractformwindowtool.h>
13
15
16class QDesignerFormEditorInterface;
17class QDesignerFormWindowInterface;
18class QAction;
19
20namespace qdesigner_internal {
21
22class TabOrderEditor;
23
25{
27public:
30
31 QDesignerFormEditorInterface *core() const override;
32 QDesignerFormWindowInterface *formWindow() const override;
33
34 QWidget *editor() const override;
35 QAction *action() const override;
36
37 void activated() override;
38 void deactivated() override;
39
40 bool handleEvent(QWidget *widget, QWidget *managedWidget, QEvent *event) override;
41
42private:
43 QDesignerFormWindowInterface *m_formWindow;
44 mutable QPointer<TabOrderEditor> m_editor;
45 QAction *m_action;
46};
47
48} // namespace qdesigner_internal
49
50QT_END_NAMESPACE
51
52#endif // TABORDEREDITOR_TOOL_H
QDesignerFormEditorInterface * core() const override
Returns the core form editor interface associated with this component.
void initialize(QDesignerFormEditorInterface *core) override
Initializes the plugin interface for the specified core interface.
bool isInitialized() const override
Returns true if the plugin interface is initialized; otherwise returns false.
QAction * action() const override
Returns the action associated with this interface.
QDesignerFormWindowInterface * formWindow() const override
QDesignerFormEditorInterface * core() const override
bool handleEvent(QWidget *widget, QWidget *managedWidget, QEvent *event) override
Combined button and popup list for selecting options.
Auxiliary methods to store/retrieve settings.
#define QT_TABORDEREDITOR_EXPORT