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
4#ifndef ABSTRACTOBJECTINSPECTOR_H
5#define ABSTRACTOBJECTINSPECTOR_H
6
7#include <QtDesigner/sdk_global.h>
8
9#include <QtWidgets/qwidget.h>
10
11QT_BEGIN_NAMESPACE
12
13class QDesignerFormEditorInterface;
14class QDesignerFormWindowInterface;
15
16class QDESIGNER_SDK_EXPORT QDesignerObjectInspectorInterface: public QWidget
17{
18 Q_OBJECT
19public:
20 explicit QDesignerObjectInspectorInterface(QWidget *parent, Qt::WindowFlags flags = {});
21 virtual ~QDesignerObjectInspectorInterface();
22
23 virtual QDesignerFormEditorInterface *core() const;
24
25public Q_SLOTS:
26 virtual void setFormWindow(QDesignerFormWindowInterface *formWindow) = 0;
27};
28
29QT_END_NAMESPACE
30
31#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.