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
qwindowsuiainvokeprovider.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 QWINDOWSUIAINVOKEPROVIDER_H
5#define QWINDOWSUIAINVOKEPROVIDER_H
6
7#include <QtGui/qtguiglobal.h>
8#if QT_CONFIG(accessibility)
9
10#include "qwindowsuiabaseprovider.h"
11
12QT_BEGIN_NAMESPACE
13
14// Implements the Invoke control pattern provider.
15class QWindowsUiaInvokeProvider : public QWindowsUiaBaseProvider, public QComObject<IInvokeProvider>
16{
17 Q_DISABLE_COPY_MOVE(QWindowsUiaInvokeProvider)
18public:
19 explicit QWindowsUiaInvokeProvider(QAccessible::Id id);
20 virtual ~QWindowsUiaInvokeProvider();
21
22 // IInvokeProvider
23 HRESULT STDMETHODCALLTYPE Invoke() override;
24};
25
26QT_END_NAMESPACE
27
28#endif // QT_CONFIG(accessibility)
29
30#endif // QWINDOWSUIAINVOKEPROVIDER_H