merge the formfield patch from ooo-build
[ooovba.git] / accessibility / source / standard / floatingwindowaccessible.cxx
blobaa886c7a0bce053a110a6d84bef5c115d9fc604d
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: floatingwindowaccessible.cxx,v $
11 * $Revision: 1.5 $
13 * This file is part of OpenOffice.org.
15 * OpenOffice.org is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License version 3
17 * only, as published by the Free Software Foundation.
19 * OpenOffice.org is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License version 3 for more details
23 * (a copy is included in the LICENSE file that accompanied this code).
25 * You should have received a copy of the GNU Lesser General Public License
26 * version 3 along with OpenOffice.org. If not, see
27 * <http://www.openoffice.org/license.html>
28 * for a copy of the LGPLv3 License.
30 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_accessibility.hxx"
34 #include <floatingwindowaccessible.hxx>
37 #include <com/sun/star/accessibility/AccessibleRelationType.hpp>
38 #include <unotools/accessiblerelationsethelper.hxx>
39 #include <vcl/window.hxx>
41 namespace uno = ::com::sun::star::uno;
43 using ::com::sun::star::accessibility::AccessibleRelation;
44 namespace AccessibleRelationType = ::com::sun::star::accessibility::AccessibleRelationType;
46 //-------------------------------------------------------------------
48 FloatingWindowAccessible::FloatingWindowAccessible(VCLXWindow* pWindow) :
49 VCLXAccessibleComponent(pWindow)
53 //-------------------------------------------------------------------
55 FloatingWindowAccessible::~FloatingWindowAccessible()
59 //-------------------------------------------------------------------
61 void FloatingWindowAccessible::FillAccessibleRelationSet(utl::AccessibleRelationSetHelper& rRelationSet)
63 Window* pWindow = GetWindow();
64 if ( pWindow )
66 Window* pParentWindow = pWindow->GetParent();
67 if( pParentWindow )
69 uno::Sequence< uno::Reference< uno::XInterface > > aSequence(1);
70 aSequence[0] = pParentWindow->GetAccessible();
71 rRelationSet.AddRelation( AccessibleRelation( AccessibleRelationType::SUB_WINDOW_OF, aSequence ) );