blob: c922699d5eb98eb0dcee409e8a2c4f53e9987a8c [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
#include <tools/debug.hxx>
#include <svx/svdobj.hxx>
#include "shapelist.hxx"
#include <algorithm>
using namespace sd;
ShapeList::ShapeList()
{
maIter = maShapeList.end();
}
ShapeList::~ShapeList()
{
clear();
}
/** adds the given shape to this list */
void ShapeList::addShape( SdrObject& rObject )
{
ListImpl::iterator aIter( std::find( maShapeList.begin(), maShapeList.end(), &rObject ) );
if( aIter == maShapeList.end() )
{
maShapeList.push_back(&rObject);
rObject.AddObjectUser( *this );
}
else
{
DBG_ERROR("sd::ShapeList::addShape(), given shape already part of list!");
}
}
/** removes the given shape from this list */
SdrObject* ShapeList::removeShape( SdrObject& rObject )
{
ListImpl::iterator aIter( std::find( maShapeList.begin(), maShapeList.end(), &rObject ) );
if( aIter != maShapeList.end() )
{
bool bIterErased = aIter == maIter;
(*aIter)->RemoveObjectUser(*this);
aIter = maShapeList.erase( aIter );
if( bIterErased )
maIter = aIter;
if( aIter != maShapeList.end() )
return (*aIter);
}
else
{
DBG_ERROR("sd::ShapeList::removeShape(), given shape not part of list!");
}
return 0;
}
/** removes all shapes from this list
NOTE: iterators will become invalid */
void ShapeList::clear()
{
ListImpl aShapeList;
aShapeList.swap( maShapeList );
ListImpl::iterator aIter( aShapeList.begin() );
while( aIter != aShapeList.end() )
(*aIter++)->RemoveObjectUser(*this);
maIter = aShapeList.end();
}
/** returns true if this list is empty */
bool ShapeList::isEmpty() const
{
return maShapeList.empty();
}
/** returns true if given shape is part of this list */
bool ShapeList::hasShape( SdrObject& rObject ) const
{
return std::find( maShapeList.begin(), maShapeList.end(), &rObject ) != maShapeList.end();
}
SdrObject* ShapeList::getNextShape(SdrObject* pObj) const
{
if( pObj )
{
ListImpl::const_iterator aIter( std::find( maShapeList.begin(), maShapeList.end(), pObj ) );
if( aIter != maShapeList.end() )
{
aIter++;
if( aIter != maShapeList.end() )
{
return (*aIter);
}
}
}
else if( !maShapeList.empty() )
{
return (*maShapeList.begin());
}
return 0;
}
void ShapeList::ObjectInDestruction(const SdrObject& rObject)
{
ListImpl::iterator aIter( std::find( maShapeList.begin(), maShapeList.end(), &rObject ) );
if( aIter != maShapeList.end() )
{
bool bIterErased = aIter == maIter;
aIter = maShapeList.erase( aIter );
if( bIterErased )
maIter = aIter;
}
else
{
DBG_ERROR("sd::ShapeList::ObjectInDestruction(), got a call from an unknown friend!");
}
}
SdrObject* ShapeList::getNextShape()
{
if( maIter != maShapeList.end() )
{
return (*maIter++);
}
else
{
return 0;
}
}
void ShapeList::seekShape( sal_uInt32 nIndex )
{
maIter = maShapeList.begin();
while( nIndex-- && (maIter != maShapeList.end()) )
maIter++;
}
bool ShapeList::hasMore() const
{
return maIter != maShapeList.end();
}