merge the formfield patch from ooo-build
[ooovba.git] / sc / inc / AccessibleFilterTopWindow.hxx
blobc13c494e2d55722d47fee221fcf046eed32de857
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: AccessibleDataPilotControl.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SC_ACCESSIBLEFILTERTOPWINDOW_HXX
32 #define SC_ACCESSIBLEFILTERTOPWINDOW_HXX
34 //#include "AccessibleContextBase.hxx"
35 #include "AccessibleFilterMenu.hxx"
36 #include "cppuhelper/implbase1.hxx"
38 class ScDPFieldPopupWindow;
39 class ScDocument;
41 class ScAccessibleFilterTopWindow : public ScAccessibleFilterMenu
43 public:
44 ScAccessibleFilterTopWindow(
45 const ::com::sun::star::uno::Reference<
46 ::com::sun::star::accessibility::XAccessible>& rxParent,
47 ScDPFieldPopupWindow* pWin, const ::rtl::OUString& rName, ScDocument* pDoc);
48 virtual ~ScAccessibleFilterTopWindow();
50 // XAccessibleContext
52 virtual sal_Int32 SAL_CALL getAccessibleChildCount()
53 throw (::com::sun::star::uno::RuntimeException);
55 virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
56 getAccessibleChild(sal_Int32 nIndex)
57 throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException);
59 virtual ::rtl::OUString SAL_CALL getImplementationName()
60 throw (::com::sun::star::uno::RuntimeException);
62 // Non-UNO Methods
64 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
65 getAccessibleChildMenu();
67 enum ChildControlType {
68 LISTBOX, TOGGLE_ALL, SINGLE_ON_BTN, SINGLE_OFF_BTN, OK_BTN, CANCEL_BTN
70 void setAccessibleChild(
71 const ::com::sun::star::uno::Reference<
72 ::com::sun::star::accessibility::XAccessible >& rAccessible,
73 ChildControlType eType);
75 private:
76 /** The top menu part */
77 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
78 mxAccMenu;
80 /** check list box for field member visibility */
81 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
82 mxAccListBox;
84 /** check box for toggling all field member's visibility. */
85 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
86 mxAccToggleAll;
88 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
89 mxAccSingleOnBtn;
91 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
92 mxAccSingleOffBtn;
94 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
95 mxAccOkBtn;
97 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
98 mxAccCancelBtn;
100 ScDPFieldPopupWindow* mpWindow;
101 ScDocument* mpDoc;
104 #endif