xref: /trunk/main/sw/source/core/access/accselectionhelper.hxx (revision 91144cd0085a7583d2099b982122deb2184ab956)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _ACCSELECTIONHELPER_HXX_
24 #define _ACCSELECTIONHELPER_HXX_
25 class SwAccessibleContext;
26 class SwFEShell;
27 #include <com/sun/star/accessibility/XAccessibleSelection.hpp>
28 
29 class SwAccessibleSelectionHelper
30 {
31     /// the context on which this helper works
32     SwAccessibleContext& rContext;
33 
34 
35     /// get FE-Shell
36     SwFEShell* GetFEShell();
37 
38     void throwIndexOutOfBoundsException();
39 
40 public:
41 
42     SwAccessibleSelectionHelper( SwAccessibleContext& rContext );
43     ~SwAccessibleSelectionHelper();
44 
45 
46     //=====  XAccessibleSelection  ============================================
47 
48     void selectAccessibleChild(
49         sal_Int32 nChildIndex );
50 
51     sal_Bool isAccessibleChildSelected(
52         sal_Int32 nChildIndex );
53     void clearAccessibleSelection(  );
54     void selectAllAccessibleChildren(  );
55     sal_Int32 getSelectedAccessibleChildCount(  );
56     ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > getSelectedAccessibleChild(
57         sal_Int32 nSelectedChildIndex );
58     // --> OD 2004-11-16 #111714# - index has to be treated as global child index.
59     void deselectAccessibleChild(
60         sal_Int32 nChildIndex );
61 };
62 
63 
64 #endif
65