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