1*f9c62b5dSSteve Yin/*************************************************************************
2*f9c62b5dSSteve Yin *
3*f9c62b5dSSteve Yin * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*f9c62b5dSSteve Yin *
5*f9c62b5dSSteve Yin * Copyright IBM Corporation 2010.
6*f9c62b5dSSteve Yin * Copyright 2000, 2010 Oracle and/or its affiliates.
7*f9c62b5dSSteve Yin *
8*f9c62b5dSSteve Yin * OpenOffice.org - a multi-platform office productivity suite
9*f9c62b5dSSteve Yin *
10*f9c62b5dSSteve Yin * This file is part of OpenOffice.org.
11*f9c62b5dSSteve Yin *
12*f9c62b5dSSteve Yin * OpenOffice.org is free software: you can redistribute it and/or modify
13*f9c62b5dSSteve Yin * it under the terms of the GNU Lesser General Public License version 3
14*f9c62b5dSSteve Yin * only, as published by the Free Software Foundation.
15*f9c62b5dSSteve Yin *
16*f9c62b5dSSteve Yin * OpenOffice.org is distributed in the hope that it will be useful,
17*f9c62b5dSSteve Yin * but WITHOUT ANY WARRANTY; without even the implied warranty of
18*f9c62b5dSSteve Yin * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19*f9c62b5dSSteve Yin * GNU Lesser General Public License version 3 for more details
20*f9c62b5dSSteve Yin * (a copy is included in the LICENSE file that accompanied this code).
21*f9c62b5dSSteve Yin *
22*f9c62b5dSSteve Yin * You should have received a copy of the GNU Lesser General Public License
23*f9c62b5dSSteve Yin * version 3 along with OpenOffice.org.  If not, see
24*f9c62b5dSSteve Yin * <http://www.openoffice.org/license.html>
25*f9c62b5dSSteve Yin * for a copy of the LGPLv3 License.
26*f9c62b5dSSteve Yin *
27*f9c62b5dSSteve Yin ************************************************************************/
28*f9c62b5dSSteve Yin
29*f9c62b5dSSteve Yin#ifndef __com_sun_star_accessibility_XMSAASERVICE_idl__
30*f9c62b5dSSteve Yin#define __com_sun_star_accessibility_XMSAASERVICE_idl__
31*f9c62b5dSSteve Yin
32*f9c62b5dSSteve Yin#ifndef __com_sun_star_uno_XInterface_idl__
33*f9c62b5dSSteve Yin#include <com/sun/star/uno/XInterface.idl>
34*f9c62b5dSSteve Yin#endif
35*f9c62b5dSSteve Yin
36*f9c62b5dSSteve Yinmodule com { module sun { module star { module accessibility {
37*f9c62b5dSSteve Yin
38*f9c62b5dSSteve Yin/** The interface must be implemented for a server that can support MSAA com objects and send win32 accessible events
39*f9c62b5dSSteve Yin*/
40*f9c62b5dSSteve Yininterface XMSAAService : ::com::sun::star::uno::XInterface
41*f9c62b5dSSteve Yin{
42*f9c62b5dSSteve Yin    /** Return com object pointer.
43*f9c62b5dSSteve Yin
44*f9c62b5dSSteve Yin        @return
45*f9c62b5dSSteve Yin            A reference to the object that contains the actual accessibility information.
46*f9c62b5dSSteve Yin
47*f9c62b5dSSteve Yin        @see AccessibleContext
48*f9c62b5dSSteve Yin	*/
49*f9c62b5dSSteve Yin    long getAccObjectPtr ([in] long hWnd, [in] long lParam, [in] long wParam);
50*f9c62b5dSSteve Yin
51*f9c62b5dSSteve Yin    [oneway] void handleWindowOpened ([in] long i);
52*f9c62b5dSSteve Yin};
53*f9c62b5dSSteve Yin
54*f9c62b5dSSteve Yin}; }; }; };
55*f9c62b5dSSteve Yin
56*f9c62b5dSSteve Yin#endif
57