1*f6e50924SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*f6e50924SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*f6e50924SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*f6e50924SAndrew Rist * distributed with this work for additional information 6*f6e50924SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*f6e50924SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*f6e50924SAndrew Rist * "License"); you may not use this file except in compliance 9*f6e50924SAndrew Rist * with the License. You may obtain a copy of the License at 10*f6e50924SAndrew Rist * 11*f6e50924SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*f6e50924SAndrew Rist * 13*f6e50924SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*f6e50924SAndrew Rist * software distributed under the License is distributed on an 15*f6e50924SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*f6e50924SAndrew Rist * KIND, either express or implied. See the License for the 17*f6e50924SAndrew Rist * specific language governing permissions and limitations 18*f6e50924SAndrew Rist * under the License. 19*f6e50924SAndrew Rist * 20*f6e50924SAndrew Rist *************************************************************/ 21*f6e50924SAndrew Rist 22*f6e50924SAndrew 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 89cdf0e10cSrcweir 90cdf0e10cSrcweir 91cdf0e10cSrcweir 92cdf0e10cSrcweir void ChildrenManager::Update (bool bCreateNewObjectsOnDemand) 93cdf0e10cSrcweir { 94cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 95cdf0e10cSrcweir mpImpl->Update (bCreateNewObjectsOnDemand); 96cdf0e10cSrcweir } 97cdf0e10cSrcweir 98cdf0e10cSrcweir 99cdf0e10cSrcweir 100cdf0e10cSrcweir 101cdf0e10cSrcweir void ChildrenManager::SetShapeList (const ::com::sun::star::uno::Reference< 102cdf0e10cSrcweir ::com::sun::star::drawing::XShapes>& xShapeList) 103cdf0e10cSrcweir { 104cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 105cdf0e10cSrcweir mpImpl->SetShapeList (xShapeList); 106cdf0e10cSrcweir } 107cdf0e10cSrcweir 108cdf0e10cSrcweir 109cdf0e10cSrcweir 110cdf0e10cSrcweir 111cdf0e10cSrcweir void ChildrenManager::AddAccessibleShape (std::auto_ptr<AccessibleShape> pShape) 112cdf0e10cSrcweir { 113cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 114cdf0e10cSrcweir mpImpl->AddAccessibleShape (pShape); 115cdf0e10cSrcweir } 116cdf0e10cSrcweir 117cdf0e10cSrcweir 118cdf0e10cSrcweir 119cdf0e10cSrcweir 120cdf0e10cSrcweir void ChildrenManager::ClearAccessibleShapeList (void) 121cdf0e10cSrcweir { 122cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 123cdf0e10cSrcweir mpImpl->ClearAccessibleShapeList (); 124cdf0e10cSrcweir } 125cdf0e10cSrcweir 126cdf0e10cSrcweir 127cdf0e10cSrcweir 128cdf0e10cSrcweir 129cdf0e10cSrcweir void ChildrenManager::SetInfo (AccessibleShapeTreeInfo& rShapeTreeInfo) 130cdf0e10cSrcweir { 131cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 132cdf0e10cSrcweir mpImpl->SetInfo (rShapeTreeInfo); 133cdf0e10cSrcweir } 134cdf0e10cSrcweir 135cdf0e10cSrcweir 136cdf0e10cSrcweir 137cdf0e10cSrcweir 138cdf0e10cSrcweir void ChildrenManager::UpdateSelection (void) 139cdf0e10cSrcweir { 140cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 141cdf0e10cSrcweir mpImpl->UpdateSelection (); 142cdf0e10cSrcweir } 143cdf0e10cSrcweir 144cdf0e10cSrcweir 145cdf0e10cSrcweir 146cdf0e10cSrcweir 147cdf0e10cSrcweir bool ChildrenManager::HasFocus (void) 148cdf0e10cSrcweir { 149cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 150cdf0e10cSrcweir return mpImpl->HasFocus (); 151cdf0e10cSrcweir } 152cdf0e10cSrcweir 153cdf0e10cSrcweir 154cdf0e10cSrcweir 155cdf0e10cSrcweir 156cdf0e10cSrcweir void ChildrenManager::RemoveFocus (void) 157cdf0e10cSrcweir { 158cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 159cdf0e10cSrcweir mpImpl->RemoveFocus (); 160cdf0e10cSrcweir } 161cdf0e10cSrcweir 162cdf0e10cSrcweir 163cdf0e10cSrcweir 164cdf0e10cSrcweir 165cdf0e10cSrcweir //===== IAccessibleViewForwarderListener ==================================== 166cdf0e10cSrcweir void ChildrenManager::ViewForwarderChanged (ChangeType aChangeType, 167cdf0e10cSrcweir const IAccessibleViewForwarder* pViewForwarder) 168cdf0e10cSrcweir { 169cdf0e10cSrcweir OSL_ASSERT (mpImpl != NULL); 170cdf0e10cSrcweir mpImpl->ViewForwarderChanged (aChangeType, pViewForwarder); 171cdf0e10cSrcweir } 172cdf0e10cSrcweir 173cdf0e10cSrcweir 174cdf0e10cSrcweir 175cdf0e10cSrcweir } // end of namespace accessibility 176cdf0e10cSrcweir 177