/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_drawing_AccessibleGraphicShape_idl__ #define __com_sun_star_drawing_AccessibleGraphicShape_idl__ #ifndef __com_sun_star_drawing_AccessibleShape_idl__ #include #endif #ifndef __com_sun_star_accessibility_XAccessibleImage_idl__ #include #endif module com { module sun { module star { module drawing { /** The AccessibleGraphicShape service is implemented by the graphic object shapes shapes com.sun.star.drawing.GraphicObjectShape and com.sun.star.presentation.GraphicObjectShape.

It differs from the included AccessibleShape 'base' service by the additional support of the XAccessibleImage interface.

@since OOo 1.1.2 */ published service AccessibleGraphicShape { /** Give access to information of generic shapes.

See AccessibleShape for documentation and support of the interfaces XAccessible, XAccessibleContext, and XAccessibleComponent.

@see AccessibleShape */ service AccessibleShape; /** Give access to image specific information.

The support of the XAccessibleImage interface requires the shape to provide a description of the displayed image and the image's size in the screen coordinate system (pixel). At the time being this interface does not provide information that is not available through the AccessibleShape service: the size returned by the XAccessibleImage::getWidth and XAccessibleImage::getHeight functions is the same as that returned by the XAccessibleComponent::getSize function; the description returned by XAccessibleImage::getAccessibleImageDescription function is the same as the one returned by the XAccessibleContext::getAccessibleDescription function. This makes the additional interface for the time being basically an indicator of graphic shapes. This may change in the future.

*/ interface ::com::sun::star::accessibility::XAccessibleImage; }; }; }; }; }; #endif