Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
qwindowsuiatableprovider.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 QWINDOWSUIATABLEPROVIDER_H
5#define QWINDOWSUIATABLEPROVIDER_H
6
7#include <QtGui/qtguiglobal.h>
8#if QT_CONFIG(accessibility)
9
11
13
14// Implements the Table control pattern provider. Used by tables/trees.
15class QWindowsUiaTableProvider : public QWindowsUiaBaseProvider,
16 public QWindowsComBase<ITableProvider>
17{
18 Q_DISABLE_COPY_MOVE(QWindowsUiaTableProvider)
19public:
20 explicit QWindowsUiaTableProvider(QAccessible::Id id);
21 virtual ~QWindowsUiaTableProvider();
22
23 // ITableProvider
24 HRESULT STDMETHODCALLTYPE GetRowHeaders(SAFEARRAY **pRetVal) override;
25 HRESULT STDMETHODCALLTYPE GetColumnHeaders(SAFEARRAY **pRetVal) override;
26 HRESULT STDMETHODCALLTYPE get_RowOrColumnMajor(enum RowOrColumnMajor *pRetVal) override;
27};
28
30
31#endif // QT_CONFIG(accessibility)
32
33#endif // QWINDOWSUIATABLEPROVIDER_H
Combined button and popup list for selecting options.
long HRESULT
virtual HRESULT STDMETHODCALLTYPE get_RowOrColumnMajor(__RPC__out enum RowOrColumnMajor *pRetVal)=0
virtual HRESULT STDMETHODCALLTYPE GetColumnHeaders(__RPC__deref_out_opt SAFEARRAY **pRetVal)=0
IRawElementProviderFragment __RPC__deref_out_opt IRawElementProviderFragment ** pRetVal
RowOrColumnMajor
Definition uiatypes_p.h:81