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