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// Qt-Security score:significant reason:default
4
5#ifndef QACCESSIBLEWIDGET_H
6#define QACCESSIBLEWIDGET_H
7
8#include <QtWidgets/qtwidgetsglobal.h>
9#include <QtGui/qaccessibleobject.h>
10#include <QtCore/qlist.h>
11
13
14
15#if QT_CONFIG(accessibility)
16
18
21{
22public:
25 bool isValid() const override;
26
27 QWindow *window() const override;
28 int childCount() const override;
33
34 QRect rect() const override;
35
38
42
45
47
48 // QAccessibleActionInterface
52protected:
54 QWidget *widget() const;
55 QObject *parentObject() const;
56
58
59private:
62};
63
66{
67#ifdef Q_OS_INTEGRITY
68 // force instantiation to avoid error #2045
70#endif
71public:
74
75protected:
77
78public:
80
81 // QAccessibleAttributesInterface
84
85private:
87};
88
89#endif // QT_CONFIG(accessibility)
90
92
93#endif // QACCESSIBLEWIDGET_H
\inmodule QtSql