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 __com_sun_star_drawing_AccessibleGraphControl_idl__ 24#define __com_sun_star_drawing_AccessibleGraphControl_idl__ 25 26 27// Declarations of interfaces to avoid inclusion of IDL files. 28module com { module sun { module star { module accessibility { 29 published interface XAccessible; 30 published interface XAccessibleContext; 31 published interface XAccessibleComponent; 32 published interface XAccessibleEventBroadcaster; 33 published interface XAccessibleSelection; 34}; }; }; }; 35 36 37 38 39module com { module sun { module star { module drawing { 40 41/** The service describes the accessible graph controls that are used in the 42 image map of the Draw and Impress applications and the contour dialog of 43 the Writer application. 44 45 <p>The children of graph controls are shapes that define contrours.</p> 46 47 @since OpenOffice 1.1.2 48 */ 49published service AccessibleGraphControl 50{ 51 /** Base interface for being accessible. It gives access to the 52 <type scope="::com::sun::star::accessibility">XAccessibleContext</type> 53 interface. 54 */ 55 interface ::com::sun::star::accessibility::XAccessible; 56 57 /** Description of the base accessibility information. 58 */ 59 interface ::com::sun::star::accessibility::XAccessibleContext; 60 61 /** This interface describes the graphical representation of an image 62 bullet. 63 */ 64 interface ::com::sun::star::accessibility::XAccessibleComponent; 65 66 /** Inform listeners about new or removed children and about changes of 67 the visual appearance. 68 */ 69 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster; 70 71 /** Handle the selection of the shapes that represent the contour. 72 */ 73 interface ::com::sun::star::accessibility::XAccessibleSelection; 74}; 75 76 77}; }; }; }; 78 79#endif 80