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
abstractformwindowtool.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// Qt-Security score:significant reason:default
4
6
8
9/*!
10 \class QDesignerFormWindowToolInterface
11
12 \brief The QDesignerFormWindowToolInterface class provides an
13 interface that enables tools to be used on items in a form window.
14
15 \inmodule QtDesigner
16
17 \internal
18*/
19
20/*!
21*/
22QDesignerFormWindowToolInterface::QDesignerFormWindowToolInterface(QObject *parent)
23 : QObject(parent)
24{
25}
26
27/*!
28*/
29QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface() = default;
30
31/*!
32 \fn virtual QDesignerFormEditorInterface *QDesignerFormWindowToolInterface::core() const = 0
33*/
34
35/*!
36 \fn virtual QDesignerFormWindowInterface *QDesignerFormWindowToolInterface::formWindow() const = 0
37*/
38
39/*!
40 \fn virtual QWidget *QDesignerFormWindowToolInterface::editor() const = 0
41*/
42
43/*!
44 \fn virtual QAction *QDesignerFormWindowToolInterface::action() const = 0
45*/
46
47/*!
48 \fn virtual void QDesignerFormWindowToolInterface::activated() = 0
49*/
50
51/*!
52 \fn virtual void QDesignerFormWindowToolInterface::deactivated() = 0
53*/
54
55/*!
56 \fn virtual void QDesignerFormWindowToolInterface::saveToDom(DomUI*, QWidget*) {
57*/
58
59/*!
60 \fn virtual void QDesignerFormWindowToolInterface::loadFromDom(DomUI*, QWidget*) {
61*/
62
63/*!
64 \fn virtual bool QDesignerFormWindowToolInterface::handleEvent(QWidget *widget, QWidget *managedWidget, QEvent *event) = 0
65*/
66
67QT_END_NAMESPACE
Combined button and popup list for selecting options.