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
qaccessiblewidget.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QACCESSIBLEWIDGET_H
5#define QACCESSIBLEWIDGET_H
6
7#include <QtWidgets/qtwidgetsglobal.h>
8#include <QtGui/qaccessibleobject.h>
9#include <QtCore/qlist.h>
10
12
13
14#if QT_CONFIG(accessibility)
15
17
20{
21public:
24 bool isValid() const override;
25
26 QWindow *window() const override;
27 int childCount() const override;
32
33 QRect rect() const override;
34
37
41
44
46
47 // QAccessibleActionInterface
51protected:
53 QWidget *widget() const;
54 QObject *parentObject() const;
55
57
58private:
61};
62
65{
66#ifdef Q_OS_INTEGRITY
67 // force instantiation to avoid error #2045
69#endif
70public:
73
74protected:
76
77public:
79
80 // QAccessibleAttributesInterface
83
84private:
86};
87
88#endif // QT_CONFIG(accessibility)
89
91
92#endif // QACCESSIBLEWIDGET_H
\inmodule QtSql