Fix GNU C++ version check
[LibreOffice.git] / vcl / inc / qt5 / QtXAccessible.hxx
blob12b1da6fcc86f51151d33d80b7baea93ae5d63f8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #pragma once
12 #include <vclpluginapi.h>
14 #include <QtCore/QObject>
16 #include <com/sun/star/accessibility/XAccessible.hpp>
18 #include <vcl/window.hxx>
20 class QtFrame;
21 class QtWidget;
23 // Wrapper class to hold a css::accessibility::XAccessible object
24 // while being able to pass it as a QObject
25 class QtXAccessible : public QObject
27 Q_OBJECT
29 public:
30 QtXAccessible(css::uno::Reference<css::accessibility::XAccessible> xAccessible);
32 /** Reference to the XAccessible.
33 * This is cleared once it has been passed to the QtAccessibleWidget,
34 * which then keeps an own reference and takes care of all required
35 * access to the XAccessible for the Qt a11y bridge. */
36 css::uno::Reference<css::accessibility::XAccessible> m_xAccessible;
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */