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 .
20 #include "AccessibleFilterTopWindow.hxx"
21 #include "AccessibleFilterMenu.hxx"
22 #include "checklistmenu.hxx"
24 #include <com/sun/star/accessibility/AccessibleRole.hpp>
26 using namespace ::com::sun::star
;
27 using namespace ::com::sun::star::accessibility
;
28 using ::com::sun::star::lang::IndexOutOfBoundsException
;
29 using ::com::sun::star::uno::Reference
;
30 using ::com::sun::star::uno::RuntimeException
;
32 ScAccessibleFilterTopWindow::ScAccessibleFilterTopWindow(
33 const Reference
<XAccessible
>& rxParent
, ScCheckListMenuWindow
* pWin
, const OUString
& rName
) :
34 ScAccessibleFilterMenu(rxParent
, pWin
, rName
, ScMenuFloatingWindow::MENU_NOT_SELECTED
)
39 ScAccessibleFilterTopWindow::~ScAccessibleFilterTopWindow()
45 sal_Int32
ScAccessibleFilterTopWindow::getAccessibleChildCount() throw (RuntimeException
, std::exception
)
47 sal_Int32 nMenuCount
= getMenuItemCount();
48 return nMenuCount
+ 6;
51 Reference
<XAccessible
> ScAccessibleFilterTopWindow::getAccessibleChild(
52 sal_Int32 nIndex
) throw (RuntimeException
, IndexOutOfBoundsException
, std::exception
)
54 if (nIndex
>= getAccessibleChildCount())
55 throw IndexOutOfBoundsException();
57 sal_Int32 nMenuCount
= getMenuItemCount();
58 if (nIndex
< nMenuCount
)
59 return ScAccessibleFilterMenu::getAccessibleChild(nIndex
);
65 return mxAccEditSearchBox
;
69 return mxAccToggleAll
;
71 return mxAccSingleOnBtn
;
73 return mxAccSingleOffBtn
;
77 return mxAccCancelBtn
;
82 return Reference
<XAccessible
>();
85 OUString
ScAccessibleFilterTopWindow::getImplementationName() throw (RuntimeException
, std::exception
)
87 return OUString("ScAccessibleFilterTopWindow");
90 void ScAccessibleFilterTopWindow::setAccessibleChild(
91 const Reference
<XAccessible
>& rAccessible
, ChildControlType eType
)
96 mxAccEditSearchBox
= rAccessible
;
99 mxAccListBox
= rAccessible
;
102 mxAccToggleAll
= rAccessible
;
105 mxAccSingleOnBtn
= rAccessible
;
108 mxAccSingleOffBtn
= rAccessible
;
111 mxAccOkBtn
= rAccessible
;
114 mxAccCancelBtn
= rAccessible
;
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */