browsebox a11y: Use cppu::ImplInheritanceHelper
[LibreOffice.git] / vcl / inc / accessibility / accessibletablistbox.hxx
blob63ba024db8cc62bf312c236c2835d385a59ad5d5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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 .
20 #pragma once
22 #include <accessibility/AccessibleBrowseBox.hxx>
23 #include <cppuhelper/implbase1.hxx>
24 #include <vcl/accessibletableprovider.hxx>
26 class AccessibleBrowseBoxTable;
27 class SvHeaderTabListBox;
29 /** !!! */
30 class AccessibleTabListBox final
31 : public cppu::ImplInheritanceHelper<AccessibleBrowseBox, css::accessibility::XAccessible>
33 private:
34 VclPtr<SvHeaderTabListBox> m_pTabListBox;
36 public:
37 /** ctor()
38 @param rxParent XAccessible interface of the parent object.
39 @param rBox The HeaderTabListBox control. */
40 AccessibleTabListBox(
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;
53 // XAccessibleContext
54 css::uno::Reference< css::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext() override;
56 // IAccessibleTabListBox
58 css::uno::Reference< css::accessibility::XAccessible >
59 getHeaderBar()
61 return AccessibleBrowseBox::getHeaderBar( AccessibleBrowseBoxObjType::ColumnHeaderBar );
64 private:
65 /** dtor() */
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: */