1f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5f6e50924SAndrew Rist  * distributed with this work for additional information
6f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10f6e50924SAndrew Rist  *
11f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12f6e50924SAndrew Rist  *
13f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17f6e50924SAndrew Rist  * specific language governing permissions and limitations
18f6e50924SAndrew Rist  * under the License.
19f6e50924SAndrew Rist  *
20f6e50924SAndrew Rist  *************************************************************/
21f6e50924SAndrew Rist 
22f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir #include <svx/ChildrenManager.hxx>
27cdf0e10cSrcweir #ifndef _SVX_ACCESSIBILITY_CHILDREN_MANAGER_IMPL_HXX
28cdf0e10cSrcweir #include "ChildrenManagerImpl.hxx"
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir #include <svx/AccessibleShape.hxx>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir using namespace ::com::sun::star;
33cdf0e10cSrcweir using namespace	::com::sun::star::accessibility;
34cdf0e10cSrcweir using ::com::sun::star::uno::Reference;
35cdf0e10cSrcweir 
36cdf0e10cSrcweir namespace accessibility {
37cdf0e10cSrcweir 
38cdf0e10cSrcweir 
39cdf0e10cSrcweir //=====  AccessibleChildrenManager  ===========================================
40cdf0e10cSrcweir 
41cdf0e10cSrcweir ChildrenManager::ChildrenManager (
42cdf0e10cSrcweir     const ::com::sun::star::uno::Reference<XAccessible>& rxParent,
43cdf0e10cSrcweir     const ::com::sun::star::uno::Reference<drawing::XShapes>& rxShapeList,
44cdf0e10cSrcweir     const AccessibleShapeTreeInfo& rShapeTreeInfo,
45cdf0e10cSrcweir     AccessibleContextBase& rContext)
46cdf0e10cSrcweir     : mpImpl (NULL)
47cdf0e10cSrcweir {
48cdf0e10cSrcweir     mpImpl = new ChildrenManagerImpl (rxParent, rxShapeList, rShapeTreeInfo, rContext);
49cdf0e10cSrcweir     if (mpImpl != NULL)
50cdf0e10cSrcweir         mpImpl->Init ();
51cdf0e10cSrcweir     else
52cdf0e10cSrcweir         throw uno::RuntimeException(
53cdf0e10cSrcweir             ::rtl::OUString::createFromAscii(
54cdf0e10cSrcweir 				"ChildrenManager::ChildrenManager can't create implementation object"), NULL);
55cdf0e10cSrcweir }
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 
59cdf0e10cSrcweir 
60cdf0e10cSrcweir ChildrenManager::~ChildrenManager (void)
61cdf0e10cSrcweir {
62cdf0e10cSrcweir     if (mpImpl != NULL)
63cdf0e10cSrcweir         mpImpl->dispose();
64cdf0e10cSrcweir 
65cdf0e10cSrcweir     // emtpy
66cdf0e10cSrcweir     OSL_TRACE ("~ChildrenManager");
67cdf0e10cSrcweir }
68cdf0e10cSrcweir 
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 
71cdf0e10cSrcweir 
72cdf0e10cSrcweir long ChildrenManager::GetChildCount (void) const throw ()
73cdf0e10cSrcweir {
74cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
75cdf0e10cSrcweir     return mpImpl->GetChildCount();
76cdf0e10cSrcweir }
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 
79cdf0e10cSrcweir 
80cdf0e10cSrcweir 
81cdf0e10cSrcweir ::com::sun::star::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex)
82cdf0e10cSrcweir     throw (::com::sun::star::uno::RuntimeException,
83cdf0e10cSrcweir            ::com::sun::star::lang::IndexOutOfBoundsException)
84cdf0e10cSrcweir {
85cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
86cdf0e10cSrcweir     return mpImpl->GetChild (nIndex);
87cdf0e10cSrcweir }
88cdf0e10cSrcweir 
89*9b8096d0SSteve Yin //IAccessibility2 Implementation 2009-----
90*9b8096d0SSteve Yin Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShape>& xShape)
91*9b8096d0SSteve Yin     throw (::com::sun::star::uno::RuntimeException)
92*9b8096d0SSteve Yin {
93*9b8096d0SSteve Yin     OSL_ASSERT (mpImpl != NULL);
94*9b8096d0SSteve Yin     return mpImpl->GetChild (xShape);
95*9b8096d0SSteve Yin }
96cdf0e10cSrcweir 
97*9b8096d0SSteve Yin ::com::sun::star::uno::Reference<
98*9b8096d0SSteve Yin         ::com::sun::star::drawing::XShape> ChildrenManager::GetChildShape(long nIndex)
99*9b8096d0SSteve Yin     throw (::com::sun::star::uno::RuntimeException)
100*9b8096d0SSteve Yin {
101*9b8096d0SSteve Yin 	OSL_ASSERT (mpImpl != NULL);
102*9b8096d0SSteve Yin     return mpImpl->GetChildShape(nIndex);
103*9b8096d0SSteve Yin }
104*9b8096d0SSteve Yin //-----IAccessibility2 Implementation 2009
105cdf0e10cSrcweir 
106cdf0e10cSrcweir 
107cdf0e10cSrcweir void ChildrenManager::Update (bool bCreateNewObjectsOnDemand)
108cdf0e10cSrcweir {
109cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
110cdf0e10cSrcweir     mpImpl->Update (bCreateNewObjectsOnDemand);
111cdf0e10cSrcweir }
112cdf0e10cSrcweir 
113cdf0e10cSrcweir 
114cdf0e10cSrcweir 
115cdf0e10cSrcweir 
116cdf0e10cSrcweir void ChildrenManager::SetShapeList (const ::com::sun::star::uno::Reference<
117cdf0e10cSrcweir     ::com::sun::star::drawing::XShapes>& xShapeList)
118cdf0e10cSrcweir {
119cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
120cdf0e10cSrcweir     mpImpl->SetShapeList (xShapeList);
121cdf0e10cSrcweir }
122cdf0e10cSrcweir 
123cdf0e10cSrcweir 
124cdf0e10cSrcweir 
125cdf0e10cSrcweir 
126cdf0e10cSrcweir void ChildrenManager::AddAccessibleShape (std::auto_ptr<AccessibleShape> pShape)
127cdf0e10cSrcweir {
128cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
129cdf0e10cSrcweir     mpImpl->AddAccessibleShape (pShape);
130cdf0e10cSrcweir }
131cdf0e10cSrcweir 
132cdf0e10cSrcweir 
133cdf0e10cSrcweir 
134cdf0e10cSrcweir 
135cdf0e10cSrcweir void ChildrenManager::ClearAccessibleShapeList (void)
136cdf0e10cSrcweir {
137cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
138cdf0e10cSrcweir     mpImpl->ClearAccessibleShapeList ();
139cdf0e10cSrcweir }
140cdf0e10cSrcweir 
141cdf0e10cSrcweir 
142cdf0e10cSrcweir 
143cdf0e10cSrcweir 
144cdf0e10cSrcweir void ChildrenManager::SetInfo (AccessibleShapeTreeInfo& rShapeTreeInfo)
145cdf0e10cSrcweir {
146cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
147cdf0e10cSrcweir     mpImpl->SetInfo (rShapeTreeInfo);
148cdf0e10cSrcweir }
149cdf0e10cSrcweir 
150cdf0e10cSrcweir 
151cdf0e10cSrcweir 
152cdf0e10cSrcweir 
153cdf0e10cSrcweir void ChildrenManager::UpdateSelection (void)
154cdf0e10cSrcweir {
155cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
156cdf0e10cSrcweir     mpImpl->UpdateSelection ();
157cdf0e10cSrcweir }
158cdf0e10cSrcweir 
159cdf0e10cSrcweir 
160cdf0e10cSrcweir 
161cdf0e10cSrcweir 
162cdf0e10cSrcweir bool ChildrenManager::HasFocus (void)
163cdf0e10cSrcweir {
164cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
165cdf0e10cSrcweir     return mpImpl->HasFocus ();
166cdf0e10cSrcweir }
167cdf0e10cSrcweir 
168cdf0e10cSrcweir 
169cdf0e10cSrcweir 
170cdf0e10cSrcweir 
171cdf0e10cSrcweir void ChildrenManager::RemoveFocus (void)
172cdf0e10cSrcweir {
173cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
174cdf0e10cSrcweir     mpImpl->RemoveFocus ();
175cdf0e10cSrcweir }
176cdf0e10cSrcweir 
177cdf0e10cSrcweir 
178cdf0e10cSrcweir 
179cdf0e10cSrcweir 
180cdf0e10cSrcweir //=====  IAccessibleViewForwarderListener  ====================================
181cdf0e10cSrcweir void ChildrenManager::ViewForwarderChanged (ChangeType aChangeType,
182cdf0e10cSrcweir         const IAccessibleViewForwarder* pViewForwarder)
183cdf0e10cSrcweir {
184cdf0e10cSrcweir     OSL_ASSERT (mpImpl != NULL);
185cdf0e10cSrcweir     mpImpl->ViewForwarderChanged (aChangeType, pViewForwarder);
186cdf0e10cSrcweir }
187cdf0e10cSrcweir 
188cdf0e10cSrcweir 
189cdf0e10cSrcweir 
190cdf0e10cSrcweir } // end of namespace accessibility
191cdf0e10cSrcweir 
192