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
abstractobjectinspector.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 ABSTRACTOBJECTINSPECTOR_H
6#define ABSTRACTOBJECTINSPECTOR_H
7
8#include <QtDesigner/sdk_global.h>
9
10#include <QtWidgets/qwidget.h>
11
12QT_BEGIN_NAMESPACE
13
14class QDesignerFormEditorInterface;
15class QDesignerFormWindowInterface;
16
17class QDESIGNER_SDK_EXPORT QDesignerObjectInspectorInterface: public QWidget
18{
19 Q_OBJECT
20public:
21 explicit QDesignerObjectInspectorInterface(QWidget *parent, Qt::WindowFlags flags = {});
22 ~QDesignerObjectInspectorInterface() override;
23
24 virtual QDesignerFormEditorInterface *core() const;
25
26public Q_SLOTS:
27 virtual void setFormWindow(QDesignerFormWindowInterface *formWindow) = 0;
28};
29
30QT_END_NAMESPACE
31
32#endif // ABSTRACTOBJECTINSPECTOR_H
The QDesignerObjectInspectorInterface class allows you to change the focus of \QD's object inspector.
Combined button and popup list for selecting options.