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 24#ifndef __com_sun_star_drawing_AccessibleGraphicShape_idl__ 25#define __com_sun_star_drawing_AccessibleGraphicShape_idl__ 26 27#ifndef __com_sun_star_drawing_AccessibleShape_idl__ 28#include <com/sun/star/drawing/AccessibleShape.idl> 29#endif 30 31#ifndef __com_sun_star_accessibility_XAccessibleAction_idl__ 32#include <com/sun/star/accessibility/XAccessibleAction.idl> 33#endif 34 35module com { module sun { module star { module drawing { 36 37/** The <type>AccessibleOLEShape</type> service is implemented by 38 OLE shapes. 39 40 <p>This includes generic OLE shapes, frames, plugins, and applets.</p> 41 42 <p>This service supports the additional <type 43 scope="::com::sun::star::accessibility">XAccessibleAction</type> 44 interface.</p> 45 46 <p>OLE objects are handled as place holders. While not activated the 47 accessible OLE shape is the only indicator of the OLE objects' 48 existence. When an OLE object has been activated then the accessbility 49 tree representing it (as far as that is available) is included directly 50 under the accessible document view and not under the OLE object. This 51 is due to underlying implementation constraints and may change in the 52 future.</p> 53 54 55 56 @since OpenOffice 1.1.2 57*/ 58published service AccessibleOLEShape 59{ 60 /** Give access to information of generic shapes. 61 62 <p>See <type>AccessibleShape</type> for basic documentation and 63 support of the <type 64 scope="::com::sun::star::accessibility" 65 >XAccessibleContext</type>, and 66 <type scope="::com::sun::star::accessibility" 67 >XAccessibleComponent</type> interfaces. 68 69 @see AccessibleShape 70 */ 71 service AccessibleShape; 72 73 /** The intended purpose of the support of this interface is the 74 activation of the accessible OLE object. This, however, is not 75 realized at the moment. It therefore serves solely as indicator of 76 accessible OLE objects. 77 */ 78 interface ::com::sun::star::accessibility::XAccessibleAction; 79}; 80 81}; }; }; }; 82 83#endif 84