1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <accessibility/AccessibleBrowseBox.hxx>
23 #include <cppuhelper/implbase1.hxx>
24 #include <vcl/accessibletableprovider.hxx>
26 class AccessibleBrowseBoxTable
;
27 class SvHeaderTabListBox
;
30 class AccessibleTabListBox final
31 : public cppu::ImplInheritanceHelper
<AccessibleBrowseBox
, css::accessibility::XAccessible
>
34 VclPtr
<SvHeaderTabListBox
> m_pTabListBox
;
38 @param rxParent XAccessible interface of the parent object.
39 @param rBox The HeaderTabListBox control. */
41 const css::uno::Reference
< css::accessibility::XAccessible
>& rxParent
,
42 SvHeaderTabListBox
& rBox
);
44 // XAccessibleContext -----------------------------------------------------
46 /** @return The count of visible children. */
47 virtual sal_Int64 SAL_CALL
getAccessibleChildCount() override
;
49 /** @return The XAccessible interface of the specified child. */
50 virtual css::uno::Reference
< css::accessibility::XAccessible
> SAL_CALL
51 getAccessibleChild( sal_Int64 nChildIndex
) override
;
54 css::uno::Reference
< css::accessibility::XAccessibleContext
> SAL_CALL
getAccessibleContext() override
;
56 // IAccessibleTabListBox
58 css::uno::Reference
< css::accessibility::XAccessible
>
61 return AccessibleBrowseBox::getHeaderBar( AccessibleBrowseBoxObjType::ColumnHeaderBar
);
66 virtual ~AccessibleTabListBox() override
;
68 /** This method creates and returns an accessible table.
69 @return An AccessibleBrowseBoxTable. */
70 virtual rtl::Reference
<AccessibleBrowseBoxTable
> createAccessibleTable() override
;
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */