cid#1636693 COPY_INSTEAD_OF_MOVE
[LibreOffice.git] / offapi / com / sun / star / drawing / AccessibleGraphicShape.idl
blob00137542cdea6e1f4fa0efbbd34584a8c619025e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com { module sun { module star { module drawing {
22 /** The AccessibleGraphicShape service is implemented by the
23 graphic object shapes shapes com.sun.star.drawing.GraphicObjectShape and
24 com.sun.star.presentation.GraphicObjectShape.
26 <p>It differs from the included AccessibleShape "base"
27 service by the additional support of the
28 ::com::sun::star::accessibility::XAccessibleImage
29 interface.</p>
31 @since OOo 1.1.2
33 service AccessibleGraphicShape
35 /** Give access to information of generic shapes.
37 <p>See AccessibleShape for documentation and support of
38 the interfaces
39 ::com::sun::star::accessibility::XAccessible,
40 ::com::sun::star::accessibility::XAccessibleContext,
41 and
42 ::com::sun::star::accessibility::XAccessibleComponent.</p>
44 @see AccessibleShape
46 service AccessibleShape;
48 /** Give access to image specific information.
50 <p>The support of the
51 ::com::sun::star::accessibility::XAccessibleImage interface
52 requires the shape to provide a description of the displayed image
53 and the image's size in the screen coordinate system (pixel). At
54 the time being this interface does not provide information that is
55 not available through the AccessibleShape service:
56 the size returned by the
57 ::com::sun::star::accessibility::XAccessibleImage::getAccessibleImageWidth() and
58 ::com::sun::star::accessibility::XAccessibleImage::getAccessibleImageHeight()
59 functions is the same as that returned by the
60 ::com::sun::star::accessibility::XAccessibleComponent::getSize()
61 function; the description returned by
62 ::com::sun::star::accessibility::XAccessibleImage::getAccessibleImageDescription()
63 function is the same as the one returned by the
64 ::com::sun::star::accessibility::XAccessibleContext::getAccessibleDescription()
65 function.
66 This makes the additional interface for
67 the time being basically an indicator of graphic shapes. This may
68 change in the future.</p>
70 interface ::com::sun::star::accessibility::XAccessibleImage;
73 }; }; }; };
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */