fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / Accessibility / AccessibleFilterTopWindow.cxx
blob0d24e709315207193a996fa0b1eec84da01924ed
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 #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)
36 SetName(rName);
39 ScAccessibleFilterTopWindow::~ScAccessibleFilterTopWindow()
43 // XAccessibleContext
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);
61 nIndex -= nMenuCount;
62 switch (nIndex)
64 case 0:
65 return mxAccEditSearchBox;
66 case 1:
67 return mxAccListBox;
68 case 2:
69 return mxAccToggleAll;
70 case 3:
71 return mxAccSingleOnBtn;
72 case 4:
73 return mxAccSingleOffBtn;
74 case 5:
75 return mxAccOkBtn;
76 case 6:
77 return mxAccCancelBtn;
78 default:
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)
93 switch (eType)
95 case EDIT_SEARCH_BOX:
96 mxAccEditSearchBox = rAccessible;
97 break;
98 case LISTBOX:
99 mxAccListBox = rAccessible;
100 break;
101 case TOGGLE_ALL:
102 mxAccToggleAll = rAccessible;
103 break;
104 case SINGLE_ON_BTN:
105 mxAccSingleOnBtn = rAccessible;
106 break;
107 case SINGLE_OFF_BTN:
108 mxAccSingleOffBtn = rAccessible;
109 break;
110 case OK_BTN:
111 mxAccOkBtn = rAccessible;
112 break;
113 case CANCEL_BTN:
114 mxAccCancelBtn = rAccessible;
115 break;
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */