LCOV - code coverage report
Current view: top level - svx/source/svdraw - svditer.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 27 42 64.3 %
Date: 2014-04-11 Functions: 4 7 57.1 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "svx/svditer.hxx"
      21             : #include <svx/svdpage.hxx>
      22             : #include <svx/svdogrp.hxx>
      23             : #include <svx/svdobj.hxx>
      24             : #include <svx/svdmark.hxx>
      25             : #include <svx/scene3d.hxx>
      26             : 
      27       19283 : SdrObjListIter::SdrObjListIter(const SdrObjList& rObjList, SdrIterMode eMode, bool bReverse)
      28             : :   mnIndex(0L),
      29       19283 :     mbReverse(bReverse)
      30             : {
      31       19283 :     ImpProcessObjectList(rObjList, eMode, true);
      32       19283 :     Reset();
      33       19283 : }
      34             : 
      35           0 : SdrObjListIter::SdrObjListIter(const SdrObjList& rObjList, bool bUseZOrder, SdrIterMode eMode, bool bReverse)
      36             : :   mnIndex(0L),
      37           0 :     mbReverse(bReverse)
      38             : {
      39           0 :     ImpProcessObjectList(rObjList, eMode, bUseZOrder);
      40           0 :     Reset();
      41           0 : }
      42             : 
      43        2605 : SdrObjListIter::SdrObjListIter( const SdrObject& rObj, SdrIterMode eMode, bool bReverse )
      44             : :   mnIndex(0L),
      45        2605 :     mbReverse(bReverse)
      46             : {
      47        2605 :     if ( rObj.ISA( SdrObjGroup ) )
      48         951 :         ImpProcessObjectList(*rObj.GetSubList(), eMode, true);
      49             :     else
      50        1654 :         maObjList.push_back(const_cast<SdrObject*>(&rObj));
      51        2605 :     Reset();
      52        2605 : }
      53             : 
      54           0 : SdrObjListIter::SdrObjListIter( const SdrMarkList& rMarkList, SdrIterMode eMode, bool bReverse )
      55             : :   mnIndex(0L),
      56           0 :     mbReverse(bReverse)
      57             : {
      58           0 :     ImpProcessMarkList(rMarkList, eMode);
      59           0 :     Reset();
      60           0 : }
      61             : 
      62       34021 : void SdrObjListIter::ImpProcessObjectList(const SdrObjList& rObjList, SdrIterMode eMode, bool bUseZOrder)
      63             : {
      64       86453 :     for( sal_uIntPtr nIdx = 0, nCount = rObjList.GetObjCount(); nIdx < nCount; ++nIdx )
      65             :     {
      66             :         SdrObject* pObj = bUseZOrder ?
      67       52432 :             rObjList.GetObj( nIdx ) : rObjList.GetObjectForNavigationPosition( nIdx );
      68             :         OSL_ASSERT( pObj != 0 );
      69       52432 :         if( pObj )
      70       52432 :             ImpProcessObj( pObj, eMode, bUseZOrder );
      71             :     }
      72       34021 : }
      73             : 
      74           0 : void SdrObjListIter::ImpProcessMarkList( const SdrMarkList& rMarkList, SdrIterMode eMode )
      75             : {
      76           0 :     for( sal_uIntPtr nIdx = 0, nCount = rMarkList.GetMarkCount(); nIdx < nCount; ++nIdx )
      77           0 :         if( SdrObject* pObj = rMarkList.GetMark( nIdx )->GetMarkedSdrObj() )
      78           0 :             ImpProcessObj( pObj, eMode, false );
      79           0 : }
      80             : 
      81       52432 : void SdrObjListIter::ImpProcessObj(SdrObject* pObj, SdrIterMode eMode, bool bUseZOrder)
      82             : {
      83       52432 :     bool bIsGroup = pObj->IsGroupObject();
      84             :     // 3D objects are not group objects, IsGroupObject()
      85             :     // only tests if pSub is not null ptr :-(
      86       52432 :     if( bIsGroup && pObj->ISA( E3dObject ) && !pObj->ISA( E3dScene ) )
      87         207 :         bIsGroup = false;
      88             : 
      89       52432 :     if( !bIsGroup || (eMode != IM_DEEPNOGROUPS) )
      90       38645 :         maObjList.push_back(pObj);
      91             : 
      92       52432 :     if( bIsGroup && (eMode != IM_FLAT) )
      93       13787 :         ImpProcessObjectList( *pObj->GetSubList(), eMode, bUseZOrder );
      94       52432 : }
      95             : 
      96             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10