Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qwindowsuiabaseprovider.h
Go to the documentation of this file.
1// Copyright (C) 2017 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 QWINDOWSUIABASEPROVIDER_H
5#define QWINDOWSUIABASEPROVIDER_H
6
7#include <QtGui/qtguiglobal.h>
8#if QT_CONFIG(accessibility)
9
10#include <QtGui/qaccessible.h>
11#include <QtCore/qpointer.h>
12
14#include <QtCore/private/qcomobject_p.h>
15
17
18class QAccessibleInterface;
19
20// Base class for UI Automation providers.
21class QWindowsUiaBaseProvider : public QObject
22{
24 Q_DISABLE_COPY_MOVE(QWindowsUiaBaseProvider)
25public:
26 explicit QWindowsUiaBaseProvider(QAccessible::Id id);
27 virtual ~QWindowsUiaBaseProvider();
28
29 QAccessibleInterface *accessibleInterface() const;
30 QAccessible::Id id() const;
31
32private:
33 QAccessible::Id m_id;
34};
35
37
38#endif // QT_CONFIG(accessibility)
39
40#endif // QWINDOWSUIABASEPROVIDER_H
\inmodule QtCore
Definition qobject.h:103
Combined button and popup list for selecting options.
GLenum GLuint id
[7]
#define Q_OBJECT