LCOV - code coverage report
Current view: top level - libreoffice/svtools/source/graphic - grfmgr.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 223 582 38.3 %
Date: 2012-12-27 Functions: 31 59 52.5 %
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 "sal/config.h"
      21             : 
      22             : #include <algorithm>
      23             : 
      24             : #include <officecfg/Office/Common.hxx>
      25             : #include <tools/vcompat.hxx>
      26             : #include <tools/helpers.hxx>
      27             : #include <unotools/ucbstreamhelper.hxx>
      28             : #include <unotools/localfilehelper.hxx>
      29             : #include <unotools/tempfile.hxx>
      30             : #include <vcl/svapp.hxx>
      31             : #include <vcl/cvtgrf.hxx>
      32             : #include <vcl/metaact.hxx>
      33             : #include <vcl/virdev.hxx>
      34             : #include <svtools/grfmgr.hxx>
      35             : 
      36             : #include <vcl/pdfextoutdevdata.hxx>
      37             : 
      38             : #include <com/sun/star/container/XNameContainer.hpp>
      39             : #include <com/sun/star/beans/XPropertySet.hpp>
      40             : 
      41             : using com::sun::star::uno::Reference;
      42             : using com::sun::star::uno::XInterface;
      43             : using com::sun::star::uno::UNO_QUERY;
      44             : using com::sun::star::uno::Sequence;
      45             : using com::sun::star::container::XNameContainer;
      46             : using com::sun::star::beans::XPropertySet;
      47             : 
      48             : GraphicManager* GraphicObject::mpGlobalMgr = NULL;
      49             : 
      50           0 : struct GrfSimpleCacheObj
      51             : {
      52             :     Graphic     maGraphic;
      53             :     GraphicAttr maAttr;
      54             : 
      55           0 :                 GrfSimpleCacheObj( const Graphic& rGraphic, const GraphicAttr& rAttr ) :
      56           0 :                     maGraphic( rGraphic ), maAttr( rAttr ) {}
      57             : };
      58             : 
      59           0 : TYPEINIT1_AUTOFACTORY( GraphicObject, SvDataCopyStream );
      60             : 
      61         736 : GraphicObject::GraphicObject( const GraphicManager* pMgr ) :
      62             :     mpLink      ( NULL ),
      63         736 :     mpUserData  ( NULL )
      64             : {
      65         736 :     ImplConstruct();
      66         736 :     ImplAssignGraphicData();
      67         736 :     ImplSetGraphicManager( pMgr );
      68         736 : }
      69             : 
      70         440 : GraphicObject::GraphicObject( const Graphic& rGraphic, const GraphicManager* pMgr ) :
      71             :     maGraphic   ( rGraphic ),
      72             :     mpLink      ( NULL ),
      73         440 :     mpUserData  ( NULL )
      74             : {
      75         440 :     ImplConstruct();
      76         440 :     ImplAssignGraphicData();
      77         440 :     ImplSetGraphicManager( pMgr );
      78         440 : }
      79             : 
      80          81 : GraphicObject::GraphicObject( const GraphicObject& rGraphicObj, const GraphicManager* pMgr ) :
      81             :     SvDataCopyStream(),
      82          81 :     maGraphic   ( rGraphicObj.GetGraphic() ),
      83             :     maAttr      ( rGraphicObj.maAttr ),
      84           0 :     mpLink      ( rGraphicObj.mpLink ? ( new String( *rGraphicObj.mpLink ) ) : NULL ),
      85         162 :     mpUserData  ( rGraphicObj.mpUserData ? ( new String( *rGraphicObj.mpUserData ) ) : NULL )
      86             : {
      87          81 :     ImplConstruct();
      88          81 :     ImplAssignGraphicData();
      89          81 :     ImplSetGraphicManager( pMgr, NULL, &rGraphicObj );
      90          81 : }
      91             : 
      92          57 : GraphicObject::GraphicObject( const rtl::OString& rUniqueID, const GraphicManager* pMgr ) :
      93             :     mpLink      ( NULL ),
      94          57 :     mpUserData  ( NULL )
      95             : {
      96          57 :     ImplConstruct();
      97             : 
      98             :     // assign default properties
      99          57 :     ImplAssignGraphicData();
     100             : 
     101          57 :     ImplSetGraphicManager( pMgr, &rUniqueID );
     102             : 
     103             :     // update properties
     104          57 :     ImplAssignGraphicData();
     105          57 : }
     106             : 
     107        2215 : GraphicObject::~GraphicObject()
     108             : {
     109        1063 :     if( mpMgr )
     110             :     {
     111        1063 :         mpMgr->ImplUnregisterObj( *this );
     112             : 
     113        1063 :         if( ( mpMgr == mpGlobalMgr ) && !mpGlobalMgr->ImplHasObjects() )
     114           2 :             delete mpGlobalMgr, mpGlobalMgr = NULL;
     115             :     }
     116             : 
     117        1063 :     delete mpSwapOutTimer;
     118        1063 :     delete mpSwapStreamHdl;
     119        1063 :     delete mpLink;
     120        1063 :     delete mpUserData;
     121        1063 :     delete mpSimpleCache;
     122        1152 : }
     123             : 
     124        1314 : void GraphicObject::ImplConstruct()
     125             : {
     126        1314 :     mpMgr = NULL;
     127        1314 :     mpSwapStreamHdl = NULL;
     128        1314 :     mpSwapOutTimer = NULL;
     129        1314 :     mpSimpleCache = NULL;
     130        1314 :     mnAnimationLoopCount = 0;
     131        1314 :     mbAutoSwapped = sal_False;
     132        1314 :     mbIsInSwapIn = sal_False;
     133        1314 :     mbIsInSwapOut = sal_False;
     134        1314 : }
     135             : 
     136        2076 : void GraphicObject::ImplAssignGraphicData()
     137             : {
     138        2076 :     maPrefSize = maGraphic.GetPrefSize();
     139        2076 :     maPrefMapMode = maGraphic.GetPrefMapMode();
     140        2076 :     mnSizeBytes = maGraphic.GetSizeBytes();
     141        2076 :     meType = maGraphic.GetType();
     142        2076 :     mbTransparent = maGraphic.IsTransparent();
     143        2076 :     mbAlpha = maGraphic.IsAlpha();
     144        2076 :     mbAnimated = maGraphic.IsAnimated();
     145        2076 :     mbEPS = maGraphic.IsEPS();
     146        2076 :     mnAnimationLoopCount = ( mbAnimated ? maGraphic.GetAnimationLoopCount() : 0 );
     147        2076 : }
     148             : 
     149        1314 : void GraphicObject::ImplSetGraphicManager( const GraphicManager* pMgr, const rtl::OString* pID, const GraphicObject* pCopyObj )
     150             : {
     151        1314 :     if( !mpMgr || ( pMgr != mpMgr ) )
     152             :     {
     153        1314 :         if( !pMgr && mpMgr && ( mpMgr == mpGlobalMgr ) )
     154        1314 :             return;
     155             :         else
     156             :         {
     157        1314 :             if( mpMgr )
     158             :             {
     159           0 :                 mpMgr->ImplUnregisterObj( *this );
     160             : 
     161           0 :                 if( ( mpMgr == mpGlobalMgr ) && !mpGlobalMgr->ImplHasObjects() )
     162           0 :                     delete mpGlobalMgr, mpGlobalMgr = NULL;
     163             :             }
     164             : 
     165        1314 :             if( !pMgr )
     166             :             {
     167        1314 :                 if( !mpGlobalMgr )
     168             :                 {
     169             :                     mpGlobalMgr = new GraphicManager(
     170             :                         (officecfg::Office::Common::Cache::GraphicManager::
     171             :                          TotalCacheSize::get()),
     172             :                         (officecfg::Office::Common::Cache::GraphicManager::
     173          36 :                          ObjectCacheSize::get()));
     174             :                     mpGlobalMgr->SetCacheTimeout(
     175             :                         officecfg::Office::Common::Cache::GraphicManager::
     176          18 :                         ObjectReleaseTime::get());
     177             :                 }
     178             : 
     179        1314 :                 mpMgr = mpGlobalMgr;
     180             :             }
     181             :             else
     182           0 :                 mpMgr = (GraphicManager*) pMgr;
     183             : 
     184        1314 :             mpMgr->ImplRegisterObj( *this, maGraphic, pID, pCopyObj );
     185             :         }
     186             :     }
     187             : }
     188             : 
     189          42 : void GraphicObject::ImplAutoSwapIn()
     190             : {
     191          42 :     if( IsSwappedOut() )
     192             :     {
     193           0 :         if( mpMgr && mpMgr->ImplFillSwappedGraphicObject( *this, maGraphic ) )
     194           0 :             mbAutoSwapped = sal_False;
     195             :         else
     196             :         {
     197           0 :             mbIsInSwapIn = sal_True;
     198             : 
     199           0 :             if( maGraphic.SwapIn() )
     200           0 :                 mbAutoSwapped = sal_False;
     201             :             else
     202             :             {
     203           0 :                 SvStream* pStream = GetSwapStream();
     204             : 
     205           0 :                 if( GRFMGR_AUTOSWAPSTREAM_NONE != pStream )
     206             :                 {
     207           0 :                     if( GRFMGR_AUTOSWAPSTREAM_LINK == pStream )
     208             :                     {
     209           0 :                         if( HasLink() )
     210             :                         {
     211           0 :                             rtl::OUString aURLStr;
     212             : 
     213           0 :                             if( ::utl::LocalFileHelper::ConvertPhysicalNameToURL( GetLink(), aURLStr ) )
     214             :                             {
     215           0 :                                 SvStream* pIStm = ::utl::UcbStreamHelper::CreateStream( aURLStr, STREAM_READ );
     216             : 
     217           0 :                                 if( pIStm )
     218             :                                 {
     219           0 :                                     (*pIStm) >> maGraphic;
     220           0 :                                     mbAutoSwapped = ( maGraphic.GetType() != GRAPHIC_NONE );
     221           0 :                                     delete pIStm;
     222             :                                 }
     223           0 :                             }
     224             :                         }
     225             :                     }
     226           0 :                     else if( GRFMGR_AUTOSWAPSTREAM_TEMP == pStream )
     227           0 :                         mbAutoSwapped = !maGraphic.SwapIn();
     228           0 :                     else if( GRFMGR_AUTOSWAPSTREAM_LOADED == pStream )
     229           0 :                         mbAutoSwapped = maGraphic.IsSwapOut();
     230             :                     else
     231             :                     {
     232           0 :                         mbAutoSwapped = !maGraphic.SwapIn( pStream );
     233           0 :                         delete pStream;
     234             :                     }
     235             :                 }
     236             :                 else
     237             :                 {
     238             :                     DBG_ASSERT( ( GRAPHIC_NONE == meType ) || ( GRAPHIC_DEFAULT == meType ),
     239             :                                 "GraphicObject::ImplAutoSwapIn: could not get stream to swap in graphic! (=>KA)" );
     240             :                 }
     241             :             }
     242             : 
     243           0 :             mbIsInSwapIn = sal_False;
     244             : 
     245           0 :             if( !mbAutoSwapped && mpMgr )
     246           0 :                 mpMgr->ImplGraphicObjectWasSwappedIn( *this );
     247             :         }
     248             :     }
     249          42 : }
     250             : 
     251           0 : sal_Bool GraphicObject::ImplGetCropParams( OutputDevice* pOut, Point& rPt, Size& rSz, const GraphicAttr* pAttr,
     252             :                                        PolyPolygon& rClipPolyPoly, sal_Bool& bRectClipRegion ) const
     253             : {
     254           0 :     sal_Bool bRet = sal_False;
     255             : 
     256           0 :     if( GetType() != GRAPHIC_NONE )
     257             :     {
     258           0 :         Polygon         aClipPoly( Rectangle( rPt, rSz ) );
     259           0 :         const sal_uInt16    nRot10 = pAttr->GetRotation() % 3600;
     260           0 :         const Point     aOldOrigin( rPt );
     261           0 :         const MapMode   aMap100( MAP_100TH_MM );
     262           0 :         Size            aSize100;
     263             :         long            nTotalWidth, nTotalHeight;
     264             : 
     265           0 :         if( nRot10 )
     266             :         {
     267           0 :             aClipPoly.Rotate( rPt, nRot10 );
     268           0 :             bRectClipRegion = sal_False;
     269             :         }
     270             :         else
     271           0 :             bRectClipRegion = sal_True;
     272             : 
     273           0 :         rClipPolyPoly = aClipPoly;
     274             : 
     275           0 :         if( maGraphic.GetPrefMapMode() == MAP_PIXEL )
     276           0 :             aSize100 = Application::GetDefaultDevice()->PixelToLogic( maGraphic.GetPrefSize(), aMap100 );
     277             :         else
     278             :         {
     279           0 :             MapMode m(maGraphic.GetPrefMapMode());
     280           0 :             aSize100 = pOut->LogicToLogic( maGraphic.GetPrefSize(), &m, &aMap100 );
     281             :         }
     282             : 
     283           0 :         nTotalWidth = aSize100.Width() - pAttr->GetLeftCrop() - pAttr->GetRightCrop();
     284           0 :         nTotalHeight = aSize100.Height() - pAttr->GetTopCrop() - pAttr->GetBottomCrop();
     285             : 
     286           0 :         if( aSize100.Width() > 0 && aSize100.Height() > 0 && nTotalWidth > 0 && nTotalHeight > 0 )
     287             :         {
     288           0 :             double fScale = (double) aSize100.Width() / nTotalWidth;
     289           0 :             const long nNewLeft = -FRound( ( ( pAttr->GetMirrorFlags() & BMP_MIRROR_HORZ ) ? pAttr->GetRightCrop() : pAttr->GetLeftCrop() ) * fScale );
     290           0 :             const long nNewRight = nNewLeft + FRound( aSize100.Width() * fScale ) - 1;
     291             : 
     292           0 :             fScale = (double) rSz.Width() / aSize100.Width();
     293           0 :             rPt.X() += FRound( nNewLeft * fScale );
     294           0 :             rSz.Width() = FRound( ( nNewRight - nNewLeft + 1 ) * fScale );
     295             : 
     296           0 :             fScale = (double) aSize100.Height() / nTotalHeight;
     297           0 :             const long nNewTop = -FRound( ( ( pAttr->GetMirrorFlags() & BMP_MIRROR_VERT ) ? pAttr->GetBottomCrop() : pAttr->GetTopCrop() ) * fScale );
     298           0 :             const long nNewBottom = nNewTop + FRound( aSize100.Height() * fScale ) - 1;
     299             : 
     300           0 :             fScale = (double) rSz.Height() / aSize100.Height();
     301           0 :             rPt.Y() += FRound( nNewTop * fScale );
     302           0 :             rSz.Height() = FRound( ( nNewBottom - nNewTop + 1 ) * fScale );
     303             : 
     304           0 :             if( nRot10 )
     305             :             {
     306           0 :                 Polygon aOriginPoly( 1 );
     307             : 
     308           0 :                 aOriginPoly[ 0 ] = rPt;
     309           0 :                 aOriginPoly.Rotate( aOldOrigin, nRot10 );
     310           0 :                 rPt = aOriginPoly[ 0 ];
     311             :             }
     312             : 
     313           0 :             bRet = sal_True;
     314           0 :         }
     315             :     }
     316             : 
     317           0 :     return bRet;
     318             : }
     319             : 
     320         607 : GraphicObject& GraphicObject::operator=( const GraphicObject& rGraphicObj )
     321             : {
     322         607 :     if( &rGraphicObj != this )
     323             :     {
     324         607 :         mpMgr->ImplUnregisterObj( *this );
     325             : 
     326         607 :         delete mpSwapStreamHdl, mpSwapStreamHdl = NULL;
     327         607 :         delete mpSimpleCache, mpSimpleCache = NULL;
     328         607 :         delete mpLink;
     329         607 :         delete mpUserData;
     330             : 
     331         607 :         maGraphic = rGraphicObj.GetGraphic();
     332         607 :         maAttr = rGraphicObj.maAttr;
     333         607 :         mpLink = rGraphicObj.mpLink ? new String( *rGraphicObj.mpLink ) : NULL;
     334         607 :         mpUserData = rGraphicObj.mpUserData ? new String( *rGraphicObj.mpUserData ) : NULL;
     335         607 :         ImplAssignGraphicData();
     336         607 :         mbAutoSwapped = sal_False;
     337         607 :         mpMgr = rGraphicObj.mpMgr;
     338             : 
     339         607 :         mpMgr->ImplRegisterObj( *this, maGraphic, NULL, &rGraphicObj );
     340             :     }
     341             : 
     342         607 :     return *this;
     343             : }
     344             : 
     345          12 : sal_Bool GraphicObject::operator==( const GraphicObject& rGraphicObj ) const
     346             : {
     347          12 :     return( ( rGraphicObj.maGraphic == maGraphic ) &&
     348          12 :             ( rGraphicObj.maAttr == maAttr ) &&
     349          36 :             ( rGraphicObj.GetLink() == GetLink() ) );
     350             : }
     351             : 
     352           0 : void GraphicObject::Load( SvStream& rIStm )
     353             : {
     354           0 :     rIStm >> *this;
     355           0 : }
     356             : 
     357           0 : void GraphicObject::Save( SvStream& rOStm )
     358             : {
     359           0 :     rOStm << *this;
     360           0 : }
     361             : 
     362           0 : void GraphicObject::Assign( const SvDataCopyStream& rCopyStream )
     363             : {
     364           0 :     *this = (const GraphicObject& ) rCopyStream;
     365           0 : }
     366             : 
     367         132 : rtl::OString GraphicObject::GetUniqueID() const
     368             : {
     369         132 :     if ( !IsInSwapIn() && IsEPS() )
     370           0 :         const_cast<GraphicObject*>(this)->FireSwapInRequest();
     371             : 
     372         132 :     rtl::OString aRet;
     373             : 
     374         132 :     if( mpMgr )
     375         132 :         aRet = mpMgr->ImplGetUniqueID( *this );
     376             : 
     377         132 :     return aRet;
     378             : }
     379             : 
     380          36 : SvStream* GraphicObject::GetSwapStream() const
     381             : {
     382          36 :     return( HasSwapStreamHdl() ? (SvStream*) mpSwapStreamHdl->Call( (void*) this ) : GRFMGR_AUTOSWAPSTREAM_NONE );
     383             : }
     384             : 
     385           0 : void GraphicObject::SetAttr( const GraphicAttr& rAttr )
     386             : {
     387           0 :     maAttr = rAttr;
     388             : 
     389           0 :     if( mpSimpleCache && ( mpSimpleCache->maAttr != rAttr ) )
     390           0 :         delete mpSimpleCache, mpSimpleCache = NULL;
     391           0 : }
     392             : 
     393           0 : void GraphicObject::SetLink()
     394             : {
     395           0 :     if( mpLink )
     396           0 :         delete mpLink, mpLink = NULL;
     397           0 : }
     398             : 
     399           1 : void GraphicObject::SetLink( const String& rLink )
     400             : {
     401           1 :     delete mpLink, mpLink = new String( rLink );
     402           1 : }
     403             : 
     404          24 : String GraphicObject::GetLink() const
     405             : {
     406          24 :     if( mpLink )
     407           0 :         return *mpLink;
     408             :     else
     409          24 :         return String();
     410             : }
     411             : 
     412          39 : void GraphicObject::SetUserData()
     413             : {
     414          39 :     if( mpUserData )
     415           0 :         delete mpUserData, mpUserData = NULL;
     416          39 : }
     417             : 
     418           3 : void GraphicObject::SetUserData( const String& rUserData )
     419             : {
     420           3 :     delete mpUserData, mpUserData = new String( rUserData );
     421           3 : }
     422             : 
     423           0 : String GraphicObject::GetUserData() const
     424             : {
     425           0 :     if( mpUserData )
     426           0 :         return *mpUserData;
     427             :     else
     428           0 :         return String();
     429             : }
     430             : 
     431           0 : void GraphicObject::SetSwapStreamHdl()
     432             : {
     433           0 :     if( mpSwapStreamHdl )
     434             :     {
     435           0 :         delete mpSwapOutTimer, mpSwapOutTimer = NULL;
     436           0 :         delete mpSwapStreamHdl, mpSwapStreamHdl = NULL;
     437             :     }
     438           0 : }
     439             : 
     440         135 : void GraphicObject::SetSwapStreamHdl( const Link& rHdl, const sal_uLong nSwapOutTimeout )
     441             : {
     442         135 :     delete mpSwapStreamHdl, mpSwapStreamHdl = new Link( rHdl );
     443             : 
     444         135 :     if( nSwapOutTimeout )
     445             :     {
     446          94 :         if( !mpSwapOutTimer )
     447             :         {
     448          64 :             mpSwapOutTimer = new Timer;
     449          64 :             mpSwapOutTimer->SetTimeoutHdl( LINK( this, GraphicObject, ImplAutoSwapOutHdl ) );
     450             :         }
     451             : 
     452          94 :         mpSwapOutTimer->SetTimeout( nSwapOutTimeout );
     453          94 :         mpSwapOutTimer->Start();
     454             :     }
     455             :     else
     456          41 :         delete mpSwapOutTimer, mpSwapOutTimer = NULL;
     457         135 : }
     458             : 
     459          42 : void GraphicObject::FireSwapInRequest()
     460             : {
     461          42 :     ImplAutoSwapIn();
     462          42 : }
     463             : 
     464          47 : void GraphicObject::FireSwapOutRequest()
     465             : {
     466          47 :     ImplAutoSwapOutHdl( NULL );
     467          47 : }
     468             : 
     469           0 : void GraphicObject::GraphicManagerDestroyed()
     470             : {
     471             :     // we're alive, but our manager doesn't live anymore ==> connect to default manager
     472           0 :     mpMgr = NULL;
     473           0 :     ImplSetGraphicManager( NULL );
     474           0 : }
     475             : 
     476          16 : sal_Bool GraphicObject::IsCached( OutputDevice* pOut, const Point& rPt, const Size& rSz,
     477             :                               const GraphicAttr* pAttr, sal_uLong nFlags ) const
     478             : {
     479             :     sal_Bool bRet;
     480             : 
     481          16 :     if( nFlags & GRFMGR_DRAW_CACHED )
     482             :     {
     483          16 :         Point aPt( rPt );
     484          16 :         Size aSz( rSz );
     485          16 :         if ( pAttr->IsCropped() )
     486             :         {
     487           0 :             PolyPolygon aClipPolyPoly;
     488             :             sal_Bool        bRectClip;
     489           0 :             ImplGetCropParams( pOut, aPt, aSz, pAttr, aClipPolyPoly, bRectClip );
     490             :         }
     491          16 :         bRet = mpMgr->IsInCache( pOut, aPt, aSz, *this, ( pAttr ? *pAttr : GetAttr() ) );
     492             :     }
     493             :     else
     494           0 :         bRet = sal_False;
     495             : 
     496          16 :     return bRet;
     497             : }
     498             : 
     499           0 : void GraphicObject::ReleaseFromCache()
     500             : {
     501             : 
     502           0 :     mpMgr->ReleaseFromCache( *this );
     503           0 : }
     504             : 
     505          24 : bool GraphicObject::Draw( OutputDevice* pOut, const Point& rPt, const Size& rSz,
     506             :                           const GraphicAttr* pAttr, sal_uLong nFlags )
     507             : {
     508          24 :     GraphicAttr         aAttr( pAttr ? *pAttr : GetAttr() );
     509          24 :     Point               aPt( rPt );
     510          24 :     Size                aSz( rSz );
     511          24 :     const sal_uInt32    nOldDrawMode = pOut->GetDrawMode();
     512          24 :     sal_Bool                bCropped = aAttr.IsCropped();
     513          24 :     sal_Bool                bCached = sal_False;
     514             :     bool bRet;
     515             : 
     516             :     // #i29534# Provide output rects for PDF writer
     517          24 :     Rectangle           aCropRect;
     518             : 
     519          24 :     if( !( GRFMGR_DRAW_USE_DRAWMODE_SETTINGS & nFlags ) )
     520          24 :         pOut->SetDrawMode( nOldDrawMode & ( ~( DRAWMODE_SETTINGSLINE | DRAWMODE_SETTINGSFILL | DRAWMODE_SETTINGSTEXT | DRAWMODE_SETTINGSGRADIENT ) ) );
     521             : 
     522             :     // mirrored horizontically
     523          24 :     if( aSz.Width() < 0L )
     524             :     {
     525           0 :         aPt.X() += aSz.Width() + 1;
     526           0 :         aSz.Width() = -aSz.Width();
     527           0 :         aAttr.SetMirrorFlags( aAttr.GetMirrorFlags() ^ BMP_MIRROR_HORZ );
     528             :     }
     529             : 
     530             :     // mirrored vertically
     531          24 :     if( aSz.Height() < 0L )
     532             :     {
     533           0 :         aPt.Y() += aSz.Height() + 1;
     534           0 :         aSz.Height() = -aSz.Height();
     535           0 :         aAttr.SetMirrorFlags( aAttr.GetMirrorFlags() ^ BMP_MIRROR_VERT );
     536             :     }
     537             : 
     538          24 :     if( bCropped )
     539             :     {
     540           0 :         PolyPolygon aClipPolyPoly;
     541             :         sal_Bool        bRectClip;
     542           0 :         const sal_Bool  bCrop = ImplGetCropParams( pOut, aPt, aSz, &aAttr, aClipPolyPoly, bRectClip );
     543             : 
     544           0 :         pOut->Push( PUSH_CLIPREGION );
     545             : 
     546           0 :         if( bCrop )
     547             :         {
     548           0 :             if( bRectClip )
     549             :             {
     550             :                 // #i29534# Store crop rect for later forwarding to
     551             :                 // PDF writer
     552           0 :                 aCropRect = aClipPolyPoly.GetBoundRect();
     553           0 :                 pOut->IntersectClipRegion( aCropRect );
     554             :             }
     555             :             else
     556             :             {
     557           0 :                 pOut->IntersectClipRegion( aClipPolyPoly );
     558             :             }
     559           0 :         }
     560             :     }
     561             : 
     562          24 :     bRet = mpMgr->DrawObj( pOut, aPt, aSz, *this, aAttr, nFlags, bCached );
     563             : 
     564          24 :     if( bCropped )
     565           0 :         pOut->Pop();
     566             : 
     567          24 :     pOut->SetDrawMode( nOldDrawMode );
     568             : 
     569             :     // #i29534# Moved below OutDev restoration, to avoid multiple swap-ins
     570             :     // (code above needs to call GetGraphic twice)
     571          24 :     if( bCached )
     572             :     {
     573          16 :         if( mpSwapOutTimer )
     574           0 :             mpSwapOutTimer->Start();
     575             :         else
     576          16 :             FireSwapOutRequest();
     577             :     }
     578             : 
     579          24 :     return bRet;
     580             : }
     581             : 
     582             : // #i105243#
     583          16 : sal_Bool GraphicObject::DrawWithPDFHandling( OutputDevice& rOutDev,
     584             :                                          const Point& rPt, const Size& rSz,
     585             :                                          const GraphicAttr* pGrfAttr,
     586             :                                          const sal_uLong nFlags )
     587             : {
     588          16 :     const GraphicAttr aGrfAttr( pGrfAttr ? *pGrfAttr : GetAttr() );
     589             : 
     590             :     // Notify PDF writer about linked graphic (if any)
     591          16 :     sal_Bool bWritingPdfLinkedGraphic( sal_False );
     592          16 :     Point aPt( rPt );
     593          16 :     Size aSz( rSz );
     594          16 :     Rectangle aCropRect;
     595             :     vcl::PDFExtOutDevData* pPDFExtOutDevData =
     596          16 :             dynamic_cast<vcl::PDFExtOutDevData*>(rOutDev.GetExtOutDevData());
     597          16 :     if( pPDFExtOutDevData )
     598             :     {
     599             :         // only delegate image handling to PDF, if no special treatment is necessary
     600           0 :         if( GetGraphic().IsLink() &&
     601           0 :             rSz.Width() > 0L &&
     602           0 :             rSz.Height() > 0L &&
     603           0 :             !aGrfAttr.IsSpecialDrawMode() &&
     604           0 :             !aGrfAttr.IsMirrored() &&
     605           0 :             !aGrfAttr.IsRotated() &&
     606           0 :             !aGrfAttr.IsAdjusted() )
     607             :         {
     608           0 :             bWritingPdfLinkedGraphic = true;
     609             : 
     610           0 :             if( aGrfAttr.IsCropped() )
     611             :             {
     612           0 :                 PolyPolygon aClipPolyPoly;
     613             :                 sal_Bool bRectClip;
     614             :                 const sal_Bool bCrop = ImplGetCropParams( &rOutDev,
     615             :                                                       aPt, aSz,
     616             :                                                       &aGrfAttr,
     617             :                                                       aClipPolyPoly,
     618           0 :                                                       bRectClip );
     619           0 :                 if ( bCrop && bRectClip )
     620             :                 {
     621           0 :                     aCropRect = aClipPolyPoly.GetBoundRect();
     622           0 :                 }
     623             :             }
     624             : 
     625           0 :             pPDFExtOutDevData->BeginGroup();
     626             :         }
     627             :     }
     628             : 
     629          16 :     sal_Bool bRet = Draw( &rOutDev, rPt, rSz, &aGrfAttr, nFlags );
     630             : 
     631             :     // Notify PDF writer about linked graphic (if any)
     632          16 :     if( bWritingPdfLinkedGraphic )
     633             :     {
     634           0 :         pPDFExtOutDevData->EndGroup( const_cast< Graphic& >(GetGraphic()),
     635           0 :                                      aGrfAttr.GetTransparency(),
     636             :                                      Rectangle( aPt, aSz ),
     637           0 :                                      aCropRect );
     638             :     }
     639             : 
     640          16 :     return bRet;
     641             : }
     642             : 
     643           0 : sal_Bool GraphicObject::DrawTiled( OutputDevice* pOut, const Rectangle& rArea, const Size& rSize,
     644             :                                const Size& rOffset, const GraphicAttr* pAttr, sal_uLong nFlags, int nTileCacheSize1D )
     645             : {
     646           0 :     if( pOut == NULL || rSize.Width() == 0 || rSize.Height() == 0 )
     647           0 :         return sal_False;
     648             : 
     649           0 :     const MapMode   aOutMapMode( pOut->GetMapMode() );
     650           0 :     const MapMode   aMapMode( aOutMapMode.GetMapUnit(), Point(), aOutMapMode.GetScaleX(), aOutMapMode.GetScaleY() );
     651             :     // #106258# Clamp size to 1 for zero values. This is okay, since
     652             :     // logical size of zero is handled above already
     653           0 :     const Size      aOutTileSize( ::std::max( 1L, pOut->LogicToPixel( rSize, aOutMapMode ).Width() ),
     654           0 :                                   ::std::max( 1L, pOut->LogicToPixel( rSize, aOutMapMode ).Height() ) );
     655             : 
     656             :     //#i69780 clip final tile size to a sane max size
     657           0 :     while (((sal_Int64)rSize.Width() * nTileCacheSize1D) > SAL_MAX_UINT16)
     658           0 :         nTileCacheSize1D /= 2;
     659           0 :     while (((sal_Int64)rSize.Height() * nTileCacheSize1D) > SAL_MAX_UINT16)
     660           0 :         nTileCacheSize1D /= 2;
     661             : 
     662           0 :     return ImplDrawTiled( pOut, rArea, aOutTileSize, rOffset, pAttr, nFlags, nTileCacheSize1D );
     663             : }
     664             : 
     665           0 : sal_Bool GraphicObject::StartAnimation( OutputDevice* pOut, const Point& rPt, const Size& rSz,
     666             :                                     long nExtraData, const GraphicAttr* pAttr, sal_uLong /*nFlags*/,
     667             :                                     OutputDevice* pFirstFrameOutDev )
     668             : {
     669           0 :     sal_Bool bRet = sal_False;
     670             : 
     671           0 :     GetGraphic();
     672             : 
     673           0 :     if( !IsSwappedOut() )
     674             :     {
     675           0 :         const GraphicAttr aAttr( pAttr ? *pAttr : GetAttr() );
     676             : 
     677           0 :         if( mbAnimated )
     678             :         {
     679           0 :             Point   aPt( rPt );
     680           0 :             Size    aSz( rSz );
     681           0 :             sal_Bool    bCropped = aAttr.IsCropped();
     682             : 
     683           0 :             if( bCropped )
     684             :             {
     685           0 :                 PolyPolygon aClipPolyPoly;
     686             :                 sal_Bool        bRectClip;
     687           0 :                 const sal_Bool  bCrop = ImplGetCropParams( pOut, aPt, aSz, &aAttr, aClipPolyPoly, bRectClip );
     688             : 
     689           0 :                 pOut->Push( PUSH_CLIPREGION );
     690             : 
     691           0 :                 if( bCrop )
     692             :                 {
     693           0 :                     if( bRectClip )
     694           0 :                         pOut->IntersectClipRegion( aClipPolyPoly.GetBoundRect() );
     695             :                     else
     696           0 :                         pOut->IntersectClipRegion( aClipPolyPoly );
     697           0 :                 }
     698             :             }
     699             : 
     700           0 :             if( !mpSimpleCache || ( mpSimpleCache->maAttr != aAttr ) || pFirstFrameOutDev )
     701             :             {
     702           0 :                 if( mpSimpleCache )
     703           0 :                     delete mpSimpleCache;
     704             : 
     705           0 :                 mpSimpleCache = new GrfSimpleCacheObj( GetTransformedGraphic( &aAttr ), aAttr );
     706           0 :                 mpSimpleCache->maGraphic.SetAnimationNotifyHdl( GetAnimationNotifyHdl() );
     707             :             }
     708             : 
     709           0 :             mpSimpleCache->maGraphic.StartAnimation( pOut, aPt, aSz, nExtraData, pFirstFrameOutDev );
     710             : 
     711           0 :             if( bCropped )
     712           0 :                 pOut->Pop();
     713             : 
     714           0 :             bRet = sal_True;
     715             :         }
     716             :         else
     717           0 :             bRet = Draw( pOut, rPt, rSz, &aAttr, GRFMGR_DRAW_STANDARD );
     718             :     }
     719             : 
     720           0 :     return bRet;
     721             : }
     722             : 
     723           0 : void GraphicObject::StopAnimation( OutputDevice* pOut, long nExtraData )
     724             : {
     725           0 :     if( mpSimpleCache )
     726           0 :         mpSimpleCache->maGraphic.StopAnimation( pOut, nExtraData );
     727           0 : }
     728             : 
     729        4341 : const Graphic& GraphicObject::GetGraphic() const
     730             : {
     731        4341 :     if( mbAutoSwapped )
     732           0 :         ( (GraphicObject*) this )->ImplAutoSwapIn();
     733             : 
     734        4341 :     return maGraphic;
     735             : }
     736             : 
     737          98 : void GraphicObject::SetGraphic( const Graphic& rGraphic, const GraphicObject* pCopyObj )
     738             : {
     739          98 :     mpMgr->ImplUnregisterObj( *this );
     740             : 
     741          98 :     if( mpSwapOutTimer )
     742          27 :         mpSwapOutTimer->Stop();
     743             : 
     744          98 :     maGraphic = rGraphic;
     745          98 :     mbAutoSwapped = sal_False;
     746          98 :     ImplAssignGraphicData();
     747          98 :     delete mpLink, mpLink = NULL;
     748          98 :     delete mpSimpleCache, mpSimpleCache = NULL;
     749             : 
     750          98 :     mpMgr->ImplRegisterObj( *this, maGraphic, 0, pCopyObj);
     751             : 
     752          98 :     if( mpSwapOutTimer )
     753          27 :         mpSwapOutTimer->Start();
     754          98 : }
     755             : 
     756           1 : void GraphicObject::SetGraphic( const Graphic& rGraphic, const String& rLink )
     757             : {
     758           1 :     SetGraphic( rGraphic );
     759           1 :     mpLink = new String( rLink );
     760           1 : }
     761             : 
     762           0 : Graphic GraphicObject::GetTransformedGraphic( const Size& rDestSize, const MapMode& rDestMap, const GraphicAttr& rAttr ) const
     763             : {
     764             :     // #104550# Extracted from svx/source/svdraw/svdograf.cxx
     765           0 :     Graphic             aTransGraphic( maGraphic );
     766           0 :     const GraphicType   eType = GetType();
     767           0 :     const Size          aSrcSize( aTransGraphic.GetPrefSize() );
     768             : 
     769             :     // #104115# Convert the crop margins to graphic object mapmode
     770           0 :     const MapMode aMapGraph( aTransGraphic.GetPrefMapMode() );
     771           0 :     const MapMode aMap100( MAP_100TH_MM );
     772             : 
     773           0 :     Size aCropLeftTop;
     774           0 :     Size aCropRightBottom;
     775             : 
     776           0 :     if( GRAPHIC_GDIMETAFILE == eType )
     777             :     {
     778           0 :         GDIMetaFile aMtf( aTransGraphic.GetGDIMetaFile() );
     779             : 
     780           0 :         if( aMapGraph == MAP_PIXEL )
     781             :         {
     782             :             aCropLeftTop = Application::GetDefaultDevice()->LogicToPixel( Size( rAttr.GetLeftCrop(),
     783             :                                                                                 rAttr.GetTopCrop() ),
     784           0 :                                                                           aMap100 );
     785             :             aCropRightBottom = Application::GetDefaultDevice()->LogicToPixel( Size( rAttr.GetRightCrop(),
     786             :                                                                                     rAttr.GetBottomCrop() ),
     787           0 :                                                                               aMap100 );
     788             :         }
     789             :         else
     790             :         {
     791             :             aCropLeftTop = OutputDevice::LogicToLogic( Size( rAttr.GetLeftCrop(),
     792             :                                                              rAttr.GetTopCrop() ),
     793             :                                                        aMap100,
     794           0 :                                                        aMapGraph );
     795             :             aCropRightBottom = OutputDevice::LogicToLogic( Size( rAttr.GetRightCrop(),
     796             :                                                                  rAttr.GetBottomCrop() ),
     797             :                                                            aMap100,
     798           0 :                                                            aMapGraph );
     799             :         }
     800             : 
     801             :         // #104115# If the metafile is cropped, give it a special
     802             :         // treatment: clip against the remaining area, scale up such
     803             :         // that this area later fills the desired size, and move the
     804             :         // origin to the upper left edge of that area.
     805           0 :         if( rAttr.IsCropped() )
     806             :         {
     807           0 :             const MapMode aMtfMapMode( aMtf.GetPrefMapMode() );
     808             : 
     809           0 :             Rectangle aClipRect( aMtfMapMode.GetOrigin().X() + aCropLeftTop.Width(),
     810           0 :                                  aMtfMapMode.GetOrigin().Y() + aCropLeftTop.Height(),
     811           0 :                                  aMtfMapMode.GetOrigin().X() + aSrcSize.Width() - aCropRightBottom.Width(),
     812           0 :                                  aMtfMapMode.GetOrigin().Y() + aSrcSize.Height() - aCropRightBottom.Height() );
     813             : 
     814             :             // #104115# To correctly crop rotated metafiles, clip by view rectangle
     815           0 :             aMtf.AddAction( new MetaISectRectClipRegionAction( aClipRect ), 0 );
     816             : 
     817             :             // #104115# To crop the metafile, scale larger than the output rectangle
     818           0 :             aMtf.Scale( (double)rDestSize.Width() / (aSrcSize.Width() - aCropLeftTop.Width() - aCropRightBottom.Width()),
     819           0 :                         (double)rDestSize.Height() / (aSrcSize.Height() - aCropLeftTop.Height() - aCropRightBottom.Height()) );
     820             : 
     821             :             // #104115# Adapt the pref size by hand (scale changes it
     822             :             // proportionally, but we want it to be smaller than the
     823             :             // former size, to crop the excess out)
     824           0 :             aMtf.SetPrefSize( Size( (long)((double)rDestSize.Width() *  (1.0 + (aCropLeftTop.Width() + aCropRightBottom.Width()) / aSrcSize.Width())  + .5),
     825           0 :                                     (long)((double)rDestSize.Height() * (1.0 + (aCropLeftTop.Height() + aCropRightBottom.Height()) / aSrcSize.Height()) + .5) ) );
     826             : 
     827             :             // #104115# Adapt the origin of the new mapmode, such that it
     828             :             // is shifted to the place where the cropped output starts
     829           0 :             Point aNewOrigin( (long)((double)aMtfMapMode.GetOrigin().X() + rDestSize.Width() * aCropLeftTop.Width() / (aSrcSize.Width() - aCropLeftTop.Width() - aCropRightBottom.Width()) + .5),
     830           0 :                               (long)((double)aMtfMapMode.GetOrigin().Y() + rDestSize.Height() * aCropLeftTop.Height() / (aSrcSize.Height() - aCropLeftTop.Height() - aCropRightBottom.Height()) + .5) );
     831           0 :             MapMode aNewMap( rDestMap );
     832           0 :             aNewMap.SetOrigin( OutputDevice::LogicToLogic(aNewOrigin, aMtfMapMode, rDestMap) );
     833           0 :             aMtf.SetPrefMapMode( aNewMap );
     834             :         }
     835             :         else
     836             :         {
     837           0 :             aMtf.Scale( Fraction( rDestSize.Width(), aSrcSize.Width() ), Fraction( rDestSize.Height(), aSrcSize.Height() ) );
     838           0 :             aMtf.SetPrefMapMode( rDestMap );
     839             :         }
     840             : 
     841           0 :         aTransGraphic = aMtf;
     842             :     }
     843           0 :     else if( GRAPHIC_BITMAP == eType )
     844             :     {
     845           0 :         BitmapEx    aBitmapEx( aTransGraphic.GetBitmapEx() );
     846             : 
     847             :         // convert crops to pixel
     848             :         aCropLeftTop = Application::GetDefaultDevice()->LogicToPixel( Size( rAttr.GetLeftCrop(),
     849             :                                                                             rAttr.GetTopCrop() ),
     850           0 :                                                                       aMap100 );
     851             :         aCropRightBottom = Application::GetDefaultDevice()->LogicToPixel( Size( rAttr.GetRightCrop(),
     852             :                                                                                 rAttr.GetBottomCrop() ),
     853           0 :                                                                           aMap100 );
     854             : 
     855             :         // convert from prefmapmode to pixel
     856             :         const Size aSrcSizePixel( Application::GetDefaultDevice()->LogicToPixel( aSrcSize,
     857           0 :                                                                                  aMapGraph ) );
     858             : 
     859             :         // setup crop rectangle in pixel
     860           0 :         Rectangle aCropRect( aCropLeftTop.Width(), aCropLeftTop.Height(),
     861           0 :                              aSrcSizePixel.Width() - aCropRightBottom.Width(),
     862           0 :                              aSrcSizePixel.Height() - aCropRightBottom.Height() );
     863             : 
     864             :         // #105641# Also crop animations
     865           0 :         if( aTransGraphic.IsAnimated() )
     866             :         {
     867             :             sal_uInt16 nFrame;
     868           0 :             Animation aAnim( aTransGraphic.GetAnimation() );
     869             : 
     870           0 :             for( nFrame=0; nFrame<aAnim.Count(); ++nFrame )
     871             :             {
     872           0 :                 AnimationBitmap aAnimBmp( aAnim.Get( nFrame ) );
     873             : 
     874           0 :                 if( !aCropRect.IsInside( Rectangle(aAnimBmp.aPosPix, aAnimBmp.aSizePix) ) )
     875             :                 {
     876             :                     // setup actual cropping (relative to frame position)
     877           0 :                     Rectangle aCropRectRel( aCropRect );
     878           0 :                     aCropRectRel.Move( -aAnimBmp.aPosPix.X(),
     879           0 :                                        -aAnimBmp.aPosPix.Y() );
     880             : 
     881             :                     // cropping affects this frame, apply it then
     882             :                     // do _not_ apply enlargement, this is done below
     883             :                     ImplTransformBitmap( aAnimBmp.aBmpEx, rAttr, Size(), Size(),
     884           0 :                                          aCropRectRel, rDestSize, sal_False );
     885             : 
     886           0 :                     aAnim.Replace( aAnimBmp, nFrame );
     887             :                 }
     888             :                 // else: bitmap completely within crop area,
     889             :                 // i.e. nothing is cropped away
     890           0 :             }
     891             : 
     892             :             // now, apply enlargement (if any) through global animation size
     893           0 :             if( aCropLeftTop.Width() < 0 ||
     894           0 :                 aCropLeftTop.Height() < 0 ||
     895           0 :                 aCropRightBottom.Width() < 0 ||
     896           0 :                 aCropRightBottom.Height() < 0 )
     897             :             {
     898           0 :                 Size aNewSize( aAnim.GetDisplaySizePixel() );
     899           0 :                 aNewSize.Width() += aCropRightBottom.Width() < 0 ? -aCropRightBottom.Width() : 0;
     900           0 :                 aNewSize.Width() += aCropLeftTop.Width() < 0 ? -aCropLeftTop.Width() : 0;
     901           0 :                 aNewSize.Height() += aCropRightBottom.Height() < 0 ? -aCropRightBottom.Height() : 0;
     902           0 :                 aNewSize.Height() += aCropLeftTop.Height() < 0 ? -aCropLeftTop.Height() : 0;
     903           0 :                 aAnim.SetDisplaySizePixel( aNewSize );
     904             :             }
     905             : 
     906             :             // if topleft has changed, we must move all frames to the
     907             :             // right and bottom, resp.
     908           0 :             if( aCropLeftTop.Width() < 0 ||
     909           0 :                 aCropLeftTop.Height() < 0 )
     910             :             {
     911           0 :                 Point aPosOffset( aCropLeftTop.Width() < 0 ? -aCropLeftTop.Width() : 0,
     912           0 :                                   aCropLeftTop.Height() < 0 ? -aCropLeftTop.Height() : 0 );
     913             : 
     914           0 :                 for( nFrame=0; nFrame<aAnim.Count(); ++nFrame )
     915             :                 {
     916           0 :                     AnimationBitmap aAnimBmp( aAnim.Get( nFrame ) );
     917             : 
     918           0 :                     aAnimBmp.aPosPix += aPosOffset;
     919             : 
     920           0 :                     aAnim.Replace( aAnimBmp, nFrame );
     921           0 :                 }
     922             :             }
     923             : 
     924           0 :             aTransGraphic = aAnim;
     925             :         }
     926             :         else
     927             :         {
     928           0 :             BitmapEx aBmpEx( aTransGraphic.GetBitmapEx() );
     929             : 
     930             :             ImplTransformBitmap( aBmpEx, rAttr, aCropLeftTop, aCropRightBottom,
     931           0 :                                  aCropRect, rDestSize, sal_True );
     932             : 
     933           0 :             aTransGraphic = aBmpEx;
     934             :         }
     935             : 
     936           0 :         aTransGraphic.SetPrefSize( rDestSize );
     937           0 :         aTransGraphic.SetPrefMapMode( rDestMap );
     938             :     }
     939             : 
     940           0 :     GraphicObject aGrfObj( aTransGraphic );
     941           0 :     aTransGraphic = aGrfObj.GetTransformedGraphic( &rAttr );
     942             : 
     943           0 :     return aTransGraphic;
     944             : }
     945             : 
     946          22 : Graphic GraphicObject::GetTransformedGraphic( const GraphicAttr* pAttr ) const // TODO: Change to Impl
     947             : {
     948          22 :     GetGraphic();
     949             : 
     950          22 :     Graphic     aGraphic;
     951          22 :     GraphicAttr aAttr( pAttr ? *pAttr : GetAttr() );
     952             : 
     953          22 :     if( maGraphic.IsSupportedGraphic() && !maGraphic.IsSwapOut() )
     954             :     {
     955          22 :         if( aAttr.IsSpecialDrawMode() || aAttr.IsAdjusted() || aAttr.IsMirrored() || aAttr.IsRotated() || aAttr.IsTransparent() )
     956             :         {
     957           1 :             if( GetType() == GRAPHIC_BITMAP )
     958             :             {
     959           1 :                 if( IsAnimated() )
     960             :                 {
     961           0 :                     Animation aAnimation( maGraphic.GetAnimation() );
     962           0 :                     GraphicManager::ImplAdjust( aAnimation, aAttr, ADJUSTMENT_ALL );
     963           0 :                     aAnimation.SetLoopCount( mnAnimationLoopCount );
     964           0 :                     aGraphic = aAnimation;
     965             :                 }
     966             :                 else
     967             :                 {
     968           1 :                     BitmapEx aBmpEx( maGraphic.GetBitmapEx() );
     969           1 :                     GraphicManager::ImplAdjust( aBmpEx, aAttr, ADJUSTMENT_ALL );
     970           1 :                     aGraphic = aBmpEx;
     971             :                 }
     972             :             }
     973             :             else
     974             :             {
     975           0 :                 GDIMetaFile aMtf( maGraphic.GetGDIMetaFile() );
     976           0 :                 GraphicManager::ImplAdjust( aMtf, aAttr, ADJUSTMENT_ALL );
     977           0 :                 aGraphic = aMtf;
     978             :             }
     979             :         }
     980             :         else
     981             :         {
     982          21 :             if( ( GetType() == GRAPHIC_BITMAP ) && IsAnimated() )
     983             :             {
     984           0 :                 Animation aAnimation( maGraphic.GetAnimation() );
     985           0 :                 aAnimation.SetLoopCount( mnAnimationLoopCount );
     986           0 :                 aGraphic = aAnimation;
     987             :             }
     988             :             else
     989          21 :                 aGraphic = maGraphic;
     990             :         }
     991             :     }
     992             : 
     993          22 :     return aGraphic;
     994             : }
     995             : 
     996          10 : sal_Bool GraphicObject::SwapOut()
     997             : {
     998          10 :     sal_Bool bRet = ( !mbAutoSwapped ? maGraphic.SwapOut() : sal_False );
     999             : 
    1000          10 :     if( bRet && mpMgr )
    1001          10 :         mpMgr->ImplGraphicObjectWasSwappedOut( *this );
    1002             : 
    1003          10 :     return bRet;
    1004             : }
    1005             : 
    1006           0 : sal_Bool GraphicObject::SwapOut( SvStream* pOStm )
    1007             : {
    1008           0 :     sal_Bool bRet = ( !mbAutoSwapped ? maGraphic.SwapOut( pOStm ) : sal_False );
    1009             : 
    1010           0 :     if( bRet && mpMgr )
    1011           0 :         mpMgr->ImplGraphicObjectWasSwappedOut( *this );
    1012             : 
    1013           0 :     return bRet;
    1014             : }
    1015             : 
    1016           0 : sal_Bool GraphicObject::SwapIn()
    1017             : {
    1018             :     sal_Bool bRet;
    1019             : 
    1020           0 :     if( mbAutoSwapped )
    1021             :     {
    1022           0 :         ImplAutoSwapIn();
    1023           0 :         bRet = sal_True;
    1024             :     }
    1025           0 :     else if( mpMgr && mpMgr->ImplFillSwappedGraphicObject( *this, maGraphic ) )
    1026           0 :         bRet = sal_True;
    1027             :     else
    1028             :     {
    1029           0 :         bRet = maGraphic.SwapIn();
    1030             : 
    1031           0 :         if( bRet && mpMgr )
    1032           0 :             mpMgr->ImplGraphicObjectWasSwappedIn( *this );
    1033             :     }
    1034             : 
    1035           0 :     if( bRet )
    1036           0 :         ImplAssignGraphicData();
    1037             : 
    1038           0 :     return bRet;
    1039             : }
    1040             : 
    1041           3 : void GraphicObject::SetSwapState()
    1042             : {
    1043           3 :     if( !IsSwappedOut() )
    1044             :     {
    1045           3 :         mbAutoSwapped = sal_True;
    1046             : 
    1047           3 :         if( mpMgr )
    1048           3 :             mpMgr->ImplGraphicObjectWasSwappedOut( *this );
    1049             :     }
    1050           3 : }
    1051             : 
    1052          47 : IMPL_LINK_NOARG(GraphicObject, ImplAutoSwapOutHdl)
    1053             : {
    1054          47 :     if( !IsSwappedOut() )
    1055             :     {
    1056          36 :         mbIsInSwapOut = sal_True;
    1057             : 
    1058          36 :         SvStream* pStream = GetSwapStream();
    1059             : 
    1060          36 :         if( GRFMGR_AUTOSWAPSTREAM_NONE != pStream )
    1061             :         {
    1062          10 :             if( GRFMGR_AUTOSWAPSTREAM_LINK == pStream )
    1063           0 :                 mbAutoSwapped = SwapOut( NULL );
    1064             :             else
    1065             :             {
    1066          10 :                 if( GRFMGR_AUTOSWAPSTREAM_TEMP == pStream )
    1067          10 :                     mbAutoSwapped = SwapOut();
    1068             :                 else
    1069             :                 {
    1070           0 :                     mbAutoSwapped = SwapOut( pStream );
    1071           0 :                     delete pStream;
    1072             :                 }
    1073             :             }
    1074             :         }
    1075             : 
    1076          36 :         mbIsInSwapOut = sal_False;
    1077             :     }
    1078             : 
    1079          47 :     if( mpSwapOutTimer )
    1080          31 :         mpSwapOutTimer->Start();
    1081             : 
    1082          47 :     return 0L;
    1083             : }
    1084             : 
    1085           0 : SvStream& operator>>( SvStream& rIStm, GraphicObject& rGraphicObj )
    1086             : {
    1087           0 :     VersionCompat   aCompat( rIStm, STREAM_READ );
    1088           0 :     Graphic         aGraphic;
    1089           0 :     GraphicAttr     aAttr;
    1090             :     sal_Bool            bLink;
    1091             : 
    1092           0 :     rIStm >> aGraphic >> aAttr >> bLink;
    1093             : 
    1094           0 :     rGraphicObj.SetGraphic( aGraphic );
    1095           0 :     rGraphicObj.SetAttr( aAttr );
    1096             : 
    1097           0 :     if( bLink )
    1098             :     {
    1099           0 :         rtl::OUString aLink = read_lenPrefixed_uInt8s_ToOUString<sal_uInt16>(rIStm, RTL_TEXTENCODING_UTF8);
    1100           0 :         rGraphicObj.SetLink(aLink);
    1101             :     }
    1102             :     else
    1103           0 :         rGraphicObj.SetLink();
    1104             : 
    1105           0 :     rGraphicObj.SetSwapStreamHdl();
    1106             : 
    1107           0 :     return rIStm;
    1108             : }
    1109             : 
    1110           0 : SvStream& operator<<( SvStream& rOStm, const GraphicObject& rGraphicObj )
    1111             : {
    1112           0 :     VersionCompat   aCompat( rOStm, STREAM_WRITE, 1 );
    1113           0 :     const sal_Bool      bLink =  rGraphicObj.HasLink();
    1114             : 
    1115           0 :     rOStm << rGraphicObj.GetGraphic() << rGraphicObj.GetAttr() << bLink;
    1116             : 
    1117           0 :     if( bLink )
    1118           0 :         write_lenPrefixed_uInt8s_FromOUString<sal_uInt16>(rOStm, rGraphicObj.GetLink(), RTL_TEXTENCODING_UTF8);
    1119             : 
    1120           0 :     return rOStm;
    1121             : }
    1122             : 
    1123             : #define UNO_NAME_GRAPHOBJ_URLPREFIX "vnd.sun.star.GraphicObject:"
    1124             : 
    1125           0 : GraphicObject GraphicObject::CreateGraphicObjectFromURL( const ::rtl::OUString &rURL )
    1126             : {
    1127           0 :     const String aURL( rURL ), aPrefix( RTL_CONSTASCII_USTRINGPARAM(UNO_NAME_GRAPHOBJ_URLPREFIX) );
    1128           0 :     if( aURL.Search( aPrefix ) == 0 )
    1129             :     {
    1130             :         // graphic manager url
    1131           0 :         rtl::OString aUniqueID(rtl::OUStringToOString(rURL.copy(sizeof(UNO_NAME_GRAPHOBJ_URLPREFIX) - 1), RTL_TEXTENCODING_UTF8));
    1132           0 :         return GraphicObject( aUniqueID );
    1133             :     }
    1134             :     else
    1135             :     {
    1136           0 :         Graphic     aGraphic;
    1137           0 :         if ( aURL.Len() )
    1138             :         {
    1139           0 :             SvStream*   pStream = utl::UcbStreamHelper::CreateStream( aURL, STREAM_READ );
    1140           0 :             if( pStream )
    1141           0 :                 GraphicConverter::Import( *pStream, aGraphic );
    1142             :         }
    1143             : 
    1144           0 :         return GraphicObject( aGraphic );
    1145           0 :     }
    1146             : }
    1147             : 
    1148             : void
    1149           0 : GraphicObject::InspectForGraphicObjectImageURL( const Reference< XInterface >& xIf,  std::vector< rtl::OUString >& rvEmbedImgUrls )
    1150             : {
    1151           0 :     static rtl::OUString sImageURL(RTL_CONSTASCII_USTRINGPARAM( "ImageURL" ) );
    1152           0 :     Reference< XPropertySet > xProps( xIf, UNO_QUERY );
    1153           0 :     if ( xProps.is() )
    1154             :     {
    1155             : 
    1156           0 :         if ( xProps->getPropertySetInfo()->hasPropertyByName( sImageURL ) )
    1157             :         {
    1158           0 :             rtl::OUString sURL;
    1159           0 :             xProps->getPropertyValue( sImageURL ) >>= sURL;
    1160           0 :             if ( !sURL.isEmpty() && sURL.compareToAscii( UNO_NAME_GRAPHOBJ_URLPREFIX, RTL_CONSTASCII_LENGTH( UNO_NAME_GRAPHOBJ_URLPREFIX ) ) == 0 )
    1161           0 :                 rvEmbedImgUrls.push_back( sURL );
    1162             :         }
    1163             :     }
    1164           0 :     Reference< XNameContainer > xContainer( xIf, UNO_QUERY );
    1165           0 :     if ( xContainer.is() )
    1166             :     {
    1167           0 :         Sequence< rtl::OUString > sNames = xContainer->getElementNames();
    1168           0 :         sal_Int32 nContainees = sNames.getLength();
    1169           0 :         for ( sal_Int32 index = 0; index < nContainees; ++index )
    1170             :         {
    1171           0 :             Reference< XInterface > xCtrl;
    1172           0 :             xContainer->getByName( sNames[ index ] ) >>= xCtrl;
    1173           0 :             InspectForGraphicObjectImageURL( xCtrl, rvEmbedImgUrls );
    1174           0 :         }
    1175           0 :     }
    1176           0 : }
    1177             : 
    1178             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10