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_XAccessibleKeyBinding_idl__
25cdf0e10cSrcweir#define __com_sun_star_accessibility_XAccessibleKeyBinding_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_awt_KeyStroke_idl__
31cdf0e10cSrcweir#include <com/sun/star/awt/KeyStroke.idl>
32cdf0e10cSrcweir#endif
33cdf0e10cSrcweir#ifndef __com_sun_star_lang_IndexOutOfBoundsException_idl__
34cdf0e10cSrcweir#include <com/sun/star/lang/IndexOutOfBoundsException.idl>
35cdf0e10cSrcweir#endif
36cdf0e10cSrcweir
37cdf0e10cSrcweirmodule com { module sun { module star { module accessibility {
38cdf0e10cSrcweir
39cdf0e10cSrcweir/** This interface can be used to represent any number of key bindings which
40cdf0e10cSrcweir    then can be associated to a certain action.
41cdf0e10cSrcweir
42cdf0e10cSrcweir    <p>There can be zero, one, or more key bindings.  Each key binding consists
43cdf0e10cSrcweir    of a sequence of <type scope="::com::sun::star::awt">KeyStroke</type>
44cdf0e10cSrcweir    objects.  The association of an action with a key binding is established
45cdf0e10cSrcweir    by the <type>XAccessibleAction</type> interface returning an
46cdf0e10cSrcweir    <type>XAccessibleKeyBinding</type> object.</p>
47cdf0e10cSrcweir
48cdf0e10cSrcweir    <p>A key binding describes alternative ways how to invoke an action with
49cdf0e10cSrcweir    pressing one or more keys after each other.  Each individual sequence of
50cdf0e10cSrcweir    key strokes </p>
51cdf0e10cSrcweir
52*0d3a54ffSJürgen Schmidt    @since OpenOffice 1.1.2
53cdf0e10cSrcweir*/
54cdf0e10cSrcweirpublished interface XAccessibleKeyBinding : ::com::sun::star::uno::XInterface
55cdf0e10cSrcweir{
56cdf0e10cSrcweir    /** Return the number of available key bindings.
57cdf0e10cSrcweir        @return
58cdf0e10cSrcweir            The returned value may be 0 to indicate that there are no key
59cdf0e10cSrcweir            bindings or the positive number of the available key bindings.
60cdf0e10cSrcweir    */
61cdf0e10cSrcweir    long getAccessibleKeyBindingCount ();
62cdf0e10cSrcweir
63cdf0e10cSrcweir    /** The returned sequence of key strokes describes one method to invoke
64cdf0e10cSrcweir        the associated action (the one from which you obtained the object at
65cdf0e10cSrcweir        which you called this method) by pressing keys.  The keys specified
66cdf0e10cSrcweir        by each of the returned key strokes have to be pressed at the same
67cdf0e10cSrcweir        time (the Control-key and the A-key for example).  The keys of
68cdf0e10cSrcweir        one key stroke have to be released before pressing those of the
69cdf0e10cSrcweir        next.  The order of the key strokes in the sequence define the order
70cdf0e10cSrcweir        in which to press them.
71cdf0e10cSrcweir        @param nIndex
72cdf0e10cSrcweir            The index selects one of alternative key bindings.  It has to
73cdf0e10cSrcweir            non-negative and smaller then the number of key bindings as
74cdf0e10cSrcweir            returned by the <member>geetAccessibleKeyBindingCount()</member>
75cdf0e10cSrcweir            method.
76cdf0e10cSrcweir        @return
77cdf0e10cSrcweir           The returned sequence of key strokes specifies one way to invoke
78cdf0e10cSrcweir           the associated action.  The sequence may be empty (but should
79cdf0e10cSrcweir           not be; better not to return such a key binding at all).
80cdf0e10cSrcweir        @throws ::com::sun::star::lang::IndexOutOfBoundsException
81cdf0e10cSrcweir            if the index is not valid.
82cdf0e10cSrcweir    */
83cdf0e10cSrcweir    sequence<::com::sun::star::awt::KeyStroke> getAccessibleKeyBinding ([in] long nIndex)
84cdf0e10cSrcweir        raises (::com::sun::star::lang::IndexOutOfBoundsException);
85cdf0e10cSrcweir};
86cdf0e10cSrcweir
87cdf0e10cSrcweir}; }; }; };
88cdf0e10cSrcweir
89cdf0e10cSrcweir#endif
90