1d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5d1766043SAndrew Rist * distributed with this work for additional information 6d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10d1766043SAndrew Rist * 11d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12d1766043SAndrew Rist * 13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14d1766043SAndrew Rist * software distributed under the License is distributed on an 15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17d1766043SAndrew Rist * specific language governing permissions and limitations 18d1766043SAndrew Rist * under the License. 19d1766043SAndrew Rist * 20d1766043SAndrew Rist *************************************************************/ 21d1766043SAndrew Rist 22d1766043SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleAction_idl__ 25cdf0e10cSrcweir#define __com_sun_star_accessibility_XAccessibleAction_idl__ 26cdf0e10cSrcweir 27cdf0e10cSrcweir#ifndef __com_sun_star_uno_XInterface_idl__ 28cdf0e10cSrcweir#include <com/sun/star/uno/XInterface.idl> 29cdf0e10cSrcweir#endif 30cdf0e10cSrcweir#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__ 31cdf0e10cSrcweir#include <com/sun/star/lang/IndexOutOfBoundsException.idl> 32cdf0e10cSrcweir#endif 33cdf0e10cSrcweir 34cdf0e10cSrcweirmodule com { module sun { module star { module accessibility { 35cdf0e10cSrcweir 36cdf0e10cSrcweir published interface XAccessibleKeyBinding; 37cdf0e10cSrcweir 38cdf0e10cSrcweir/** Implement this interface to give access to actions that can be executed 39cdf0e10cSrcweir for accessible objects. 40cdf0e10cSrcweir 41cdf0e10cSrcweir <p>Every accessible object that can be manipulated beyond its methods 42cdf0e10cSrcweir exported over the accessibility API should support this interface to 43cdf0e10cSrcweir expose all actions that it can perform. Each action can be performed or 44cdf0e10cSrcweir be queried for a description or associated key bindings.</p> 45cdf0e10cSrcweir 46*0d3a54ffSJürgen Schmidt @since OpenOffice 1.1.2 47cdf0e10cSrcweir*/ 48cdf0e10cSrcweirpublished interface XAccessibleAction : ::com::sun::star::uno::XInterface 49cdf0e10cSrcweir{ 50cdf0e10cSrcweir /** Returns the number of accessible actions available in this object. 51cdf0e10cSrcweir 52cdf0e10cSrcweir <p>If there are more than one, the first one is considered the 53cdf0e10cSrcweir "default" action of the object.</p> 54cdf0e10cSrcweir 55cdf0e10cSrcweir @return 56cdf0e10cSrcweir The returned value of the number of actions is zero if there are 57cdf0e10cSrcweir no actions. 58cdf0e10cSrcweir */ 59cdf0e10cSrcweir long getAccessibleActionCount (); 60cdf0e10cSrcweir 61cdf0e10cSrcweir /** Perform the specified Action on the object. 62cdf0e10cSrcweir 63cdf0e10cSrcweir @param nIndex 64cdf0e10cSrcweir This index specifies the action to perform. If it lies outside 65cdf0e10cSrcweir the valid range <FALSE/> is returned and no action is performed. 66cdf0e10cSrcweir @return 67cdf0e10cSrcweir Returns <TRUE/> if the action was successfully performed. If 68cdf0e10cSrcweir the action could not be performed successfully <FALSE/> is 69cdf0e10cSrcweir returned. 70cdf0e10cSrcweir 71cdf0e10cSrcweir @throws IndexOutOfBoundsException 72cdf0e10cSrcweir If no action with the given index exists then an 73cdf0e10cSrcweir <type scope="::com::sun::star::lang">IndexOutOfBoundsException</type> 74cdf0e10cSrcweir exception is thrown. 75cdf0e10cSrcweir */ 76cdf0e10cSrcweir boolean doAccessibleAction ([in] long nIndex) 77cdf0e10cSrcweir raises (::com::sun::star::lang::IndexOutOfBoundsException); 78cdf0e10cSrcweir 79cdf0e10cSrcweir /** Returns a description of the specified action of the object. 80cdf0e10cSrcweir 81cdf0e10cSrcweir @param nIndex 82cdf0e10cSrcweir This index specifies the action of which to return a 83cdf0e10cSrcweir description. If it lies outside the valid range an empty string 84cdf0e10cSrcweir is returned. 85cdf0e10cSrcweir 86cdf0e10cSrcweir @return 87cdf0e10cSrcweir The returned value is a localized string of the specified action. 88cdf0e10cSrcweir 89cdf0e10cSrcweir @throws IndexOutOfBoundsException 90cdf0e10cSrcweir If the given index lies not in the valid range then an 91cdf0e10cSrcweir <type scope="::com::sun::star::lang">IndexOutOfBoundsException</type> 92cdf0e10cSrcweir exception is thrown. 93cdf0e10cSrcweir */ 94cdf0e10cSrcweir string getAccessibleActionDescription ([in] long nIndex) 95cdf0e10cSrcweir raises (::com::sun::star::lang::IndexOutOfBoundsException); 96cdf0e10cSrcweir 97cdf0e10cSrcweir /** Returns a key binding object, if there is one, associated with the 98cdf0e10cSrcweir specified action. Note that there can be several alternative key 99cdf0e10cSrcweir bindings for an action. See <type>XAccessibleKeyBinding</type> for 100cdf0e10cSrcweir more information about how key bindings are represented. 101cdf0e10cSrcweir 102cdf0e10cSrcweir @param nIndex 103cdf0e10cSrcweir This index specifies the action of which to return the key 104cdf0e10cSrcweir binding. 105cdf0e10cSrcweir 106cdf0e10cSrcweir @return 107cdf0e10cSrcweir The returned object describes a set of key bindings associated 108cdf0e10cSrcweir with the specified action. 109cdf0e10cSrcweir 110cdf0e10cSrcweir @throws IndexOutOfBoundsException 111cdf0e10cSrcweir if the given index is not valid. 112cdf0e10cSrcweir */ 113cdf0e10cSrcweir XAccessibleKeyBinding getAccessibleActionKeyBinding ([in] long nIndex) 114cdf0e10cSrcweir raises (::com::sun::star::lang::IndexOutOfBoundsException); 115cdf0e10cSrcweir}; 116cdf0e10cSrcweir 117cdf0e10cSrcweir}; }; }; }; 118cdf0e10cSrcweir 119cdf0e10cSrcweir#endif 120