mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
162d6d3e9c
--HG-- rename : accessible/src/atk/nsXULTreeAccessibleWrap.h => accessible/src/atk/nsXULTreeGridAccessibleWrap.h rename : accessible/src/mac/nsXULTreeAccessibleWrap.h => accessible/src/mac/nsXULTreeGridAccessibleWrap.h rename : accessible/src/msaa/nsXULTreeAccessibleWrap.cpp => accessible/src/msaa/nsXULTreeGridAccessibleWrap.cpp rename : accessible/src/msaa/nsXULTreeAccessibleWrap.h => accessible/src/msaa/nsXULTreeGridAccessibleWrap.h rename : accessible/src/other/nsXULTreeAccessibleWrap.h => accessible/src/other/nsXULTreeGridAccessibleWrap.h rename : accessible/src/xul/nsXULSelectAccessible.cpp => accessible/src/xul/nsXULListboxAccessible.cpp rename : accessible/src/xul/nsXULSelectAccessible.h => accessible/src/xul/nsXULListboxAccessible.h rename : accessible/tests/mochitest/test_relations_table.html => accessible/tests/mochitest/test_table_headers.html rename : accessible/tests/mochitest/test_nsIAccessibleTable_listboxes.xul => accessible/tests/mochitest/test_table_sels_listbox.xul rename : accessible/tests/mochitest/test_elm_table.html => accessible/tests/mochitest/test_table_struct.html
85 lines
2.8 KiB
Plaintext
85 lines
2.8 KiB
Plaintext
/*************************************************************************
|
|
*
|
|
* File Name (AccessibleImage)
|
|
*
|
|
* IAccessible2 IDL Specification
|
|
*
|
|
* Copyright (c) Linux Foundation 2007, 2008
|
|
* Copyright (c) IBM Corp. 2006
|
|
* Copyright (c) Sun Microsystems, Inc. 2000, 2006
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
import "objidl.idl";
|
|
import "oaidl.idl";
|
|
import "oleacc.idl";
|
|
import "IA2CommonTypes.idl";
|
|
|
|
/** @brief This interface represents images and icons.
|
|
|
|
This interface is used for a representation of images like icons on buttons.
|
|
%IAccessibleImage only needs to be implemented in certain situations. Some
|
|
examples are:
|
|
<ol>
|
|
<li>The accessible name and description are not enough to fully
|
|
describe the image, e.g. when the accessible description is used to define the
|
|
behavior of an actionable image and the image itself conveys semantically
|
|
significant information.
|
|
<li>The user can edit the content that includes an
|
|
image and therefore the user needs to be able to review the image's position.
|
|
</ol>
|
|
*/
|
|
[object, uuid(FE5ABB3D-615E-4f7b-909F-5F0EDA9E8DDE)]
|
|
interface IAccessibleImage : IUnknown
|
|
{
|
|
/** @brief Returns the localized description of the image.
|
|
@param [out] description
|
|
@retval S_OK
|
|
@retval S_FALSE if there is nothing to return, [out] value is NULL
|
|
*/
|
|
[propget] HRESULT description
|
|
(
|
|
[out, retval] BSTR *description
|
|
);
|
|
|
|
/** @brief Returns the coordinates of the image.
|
|
@param [in] coordinateType
|
|
Specifies whether the returned coordinates should be relative to the screen or the parent object.
|
|
@param [out] x
|
|
@param [out] y
|
|
@retval S_OK
|
|
*/
|
|
[propget] HRESULT imagePosition
|
|
(
|
|
[in] enum IA2CoordinateType coordinateType,
|
|
[out] long *x,
|
|
[out, retval] long *y
|
|
);
|
|
|
|
/** @brief Returns the size of the image in units specified by parent's coordinate system.
|
|
@param [out] height
|
|
@param [out] width
|
|
@retval S_OK
|
|
*/
|
|
|
|
[propget] HRESULT imageSize
|
|
(
|
|
[out] long *height,
|
|
[out, retval] long *width
|
|
);
|
|
}
|