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 throw ( ::com::sun::star::lang::IndexOutOfBoundsException ); 40 41 public: 42 43 SwAccessibleSelectionHelper( SwAccessibleContext& rContext ); 44 ~SwAccessibleSelectionHelper(); 45 46 47 //===== XAccessibleSelection ============================================ 48 49 void selectAccessibleChild( 50 sal_Int32 nChildIndex ) 51 throw ( ::com::sun::star::lang::IndexOutOfBoundsException, 52 ::com::sun::star::uno::RuntimeException ); 53 54 sal_Bool isAccessibleChildSelected( 55 sal_Int32 nChildIndex ) 56 throw ( ::com::sun::star::lang::IndexOutOfBoundsException, 57 ::com::sun::star::uno::RuntimeException ); 58 void clearAccessibleSelection( ) 59 throw ( ::com::sun::star::uno::RuntimeException ); 60 void selectAllAccessibleChildren( ) 61 throw ( ::com::sun::star::uno::RuntimeException ); 62 sal_Int32 getSelectedAccessibleChildCount( ) 63 throw ( ::com::sun::star::uno::RuntimeException ); 64 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > getSelectedAccessibleChild( 65 sal_Int32 nSelectedChildIndex ) 66 throw ( ::com::sun::star::lang::IndexOutOfBoundsException, 67 ::com::sun::star::uno::RuntimeException); 68 // --> OD 2004-11-16 #111714# - index has to be treated as global child index. 69 void deselectAccessibleChild( 70 sal_Int32 nChildIndex ) 71 throw ( ::com::sun::star::lang::IndexOutOfBoundsException, 72 ::com::sun::star::uno::RuntimeException ); 73 }; 74 75 76 #endif 77 78