/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // --> OD 2009-03-05 #i99665# #include // <-- using namespace com::sun::star; #define DEFTEXTSIZE 12 extern void ClrContourCache( const SdrObject *pObj ); // TxtFly.Cxx inline BOOL GetRealURL( const SwGrfNode& rNd, String& rTxt ) { BOOL bRet = rNd.GetFileFilterNms( &rTxt, 0 ); if( bRet ) rTxt = URIHelper::removePassword( rTxt, INetURLObject::WAS_ENCODED, INetURLObject::DECODE_UNAMBIGUOUS); return bRet; } void lcl_PaintReplacement( const SwRect &rRect, const String &rText, const ViewShell &rSh, const SwNoTxtFrm *pFrm, BOOL bDefect ) { static Font *pFont = 0; if ( !pFont ) { pFont = new Font(); pFont->SetWeight( WEIGHT_BOLD ); pFont->SetStyleName( aEmptyStr ); pFont->SetName( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "Arial Unicode" ))); pFont->SetFamily( FAMILY_SWISS ); pFont->SetTransparent( TRUE ); } Color aCol( COL_RED ); FontUnderline eUnderline = UNDERLINE_NONE; const SwFmtURL &rURL = pFrm->FindFlyFrm()->GetFmt()->GetURL(); if( rURL.GetURL().Len() || rURL.GetMap() ) { BOOL bVisited = FALSE; if ( rURL.GetMap() ) { ImageMap *pMap = (ImageMap*)rURL.GetMap(); for( USHORT i = 0; i < pMap->GetIMapObjectCount(); i++ ) { IMapObject *pObj = pMap->GetIMapObject( i ); if( rSh.GetDoc()->IsVisitedURL( pObj->GetURL() ) ) { bVisited = TRUE; break; } } } else if ( rURL.GetURL().Len() ) bVisited = rSh.GetDoc()->IsVisitedURL( rURL.GetURL() ); SwFmt *pFmt = rSh.GetDoc()->GetFmtFromPool( static_cast (bVisited ? RES_POOLCHR_INET_VISIT : RES_POOLCHR_INET_NORMAL ) ); aCol = pFmt->GetColor().GetValue(); eUnderline = pFmt->GetUnderline().GetLineStyle(); } pFont->SetUnderline( eUnderline ); pFont->SetColor( aCol ); const BitmapEx& rBmp = ViewShell::GetReplacementBitmap( bDefect != FALSE ); Graphic::DrawEx( rSh.GetOut(), rText, *pFont, rBmp, rRect.Pos(), rRect.SSize() ); } /************************************************************************* |* |* SwGrfFrm::SwGrfFrm(ViewShell * const,SwGrfNode *) |* |* Beschreibung |* Ersterstellung JP 05.03.91 |* Letzte Aenderung MA 03. Mar. 93 |* *************************************************************************/ SwNoTxtFrm::SwNoTxtFrm(SwNoTxtNode * const pNode) : SwCntntFrm(pNode) { InitCtor(); } // Initialisierung: z.Zt. Eintragen des Frames im Cache void SwNoTxtFrm::InitCtor() { nType = FRMC_NOTXT; // Das Gewicht der Grafik ist 0, wenn sie noch nicht // gelesen ist, < 0, wenn ein Lesefehler auftrat und // Ersatzdarstellung angewendet werden musste und >0, // wenn sie zur Verfuegung steht. nWeight = 0; } /************************************************************************* |* |* SwNoTxtNode::MakeFrm() |* |* Beschreibung |* Ersterstellung JP 05.03.91 |* Letzte Aenderung MA 03. Mar. 93 |* *************************************************************************/ SwCntntFrm *SwNoTxtNode::MakeFrm() { return new SwNoTxtFrm(this); } /************************************************************************* |* |* SwNoTxtFrm::~SwNoTxtFrm() |* |* Beschreibung |* Ersterstellung JP 05.03.91 |* Letzte Aenderung MA 30. Apr. 96 |* *************************************************************************/ SwNoTxtFrm::~SwNoTxtFrm() { StopAnimation(); } /************************************************************************* |* |* void SwNoTxtFrm::Modify( SwHint * pOld, SwHint * pNew ) |* |* Beschreibung |* Ersterstellung JP 05.03.91 |* Letzte Aenderung JP 05.03.91 |* *************************************************************************/ void SetOutDev( ViewShell *pSh, OutputDevice *pOut ) { pSh->pOut = pOut; } void lcl_ClearArea( const SwFrm &rFrm, OutputDevice &rOut, const SwRect& rPtArea, const SwRect &rGrfArea ) { SwRegionRects aRegion( rPtArea, 4, 4 ); aRegion -= rGrfArea; if ( aRegion.Count() ) { const SvxBrushItem *pItem; const Color *pCol; SwRect aOrigRect; if ( rFrm.GetBackgroundBrush( pItem, pCol, aOrigRect, FALSE ) ) for( USHORT i = 0; i < aRegion.Count(); ++i ) ::DrawGraphic( pItem, &rOut, aOrigRect, aRegion[i] ); else { // OD 2004-04-23 #116347# rOut.Push( PUSH_FILLCOLOR|PUSH_LINECOLOR ); rOut.SetFillColor( rFrm.GetShell()->Imp()->GetRetoucheColor()); rOut.SetLineColor(); for( USHORT i = 0; i < aRegion.Count(); ++i ) rOut.DrawRect( aRegion[i].SVRect() ); rOut.Pop(); } } } /************************************************************************* |* |* void SwNoTxtFrm::Paint() |* |* Beschreibung |* Ersterstellung JP 05.03.91 |* Letzte Aenderung MA 10. Jan. 97 |* *************************************************************************/ void SwNoTxtFrm::Paint(SwRect const& rRect, SwPrintData const*const) const { if ( Frm().IsEmpty() ) return; const ViewShell* pSh = GetShell(); if( !pSh->GetViewOptions()->IsGraphic() ) { StopAnimation(); // OD 10.01.2003 #i6467# - no paint of placeholder for page preview if ( pSh->GetWin() && !pSh->IsPreView() ) { const SwNoTxtNode* pNd = GetNode()->GetNoTxtNode(); String aTxt( pNd->GetTitle() ); if ( !aTxt.Len() && pNd->IsGrfNode() ) GetRealURL( *(SwGrfNode*)pNd, aTxt ); if( !aTxt.Len() ) aTxt = FindFlyFrm()->GetFmt()->GetName(); lcl_PaintReplacement( Frm(), aTxt, *pSh, this, FALSE ); } return; } if( pSh->GetAccessibilityOptions()->IsStopAnimatedGraphics() || // --> FME 2004-06-21 #i9684# Stop animation during printing/pdf export !pSh->GetWin() ) // <-- StopAnimation(); SfxProgress::EnterLock(); //Keine Progress-Reschedules im Paint (SwapIn) OutputDevice *pOut = pSh->GetOut(); pOut->Push(); BOOL bClip = TRUE; PolyPolygon aPoly; SwNoTxtNode& rNoTNd = *(SwNoTxtNode*)GetNode(); SwGrfNode* pGrfNd = rNoTNd.GetGrfNode(); if( pGrfNd ) pGrfNd->SetFrameInPaint( TRUE ); // OD 16.04.2003 #i13147# - add 2nd parameter with value to // method call to indicate that it is called // for paint in order to avoid load of the intrinsic graphic. if ( ( !pOut->GetConnectMetaFile() || !pSh->GetWin() ) && FindFlyFrm()->GetContour( aPoly, sal_True ) ) { pOut->SetClipRegion( aPoly ); bClip = FALSE; } SwRect aOrigPaint( rRect ); if ( HasAnimation() && pSh->GetWin() ) { aOrigPaint = Frm(); aOrigPaint += Prt().Pos(); } SwRect aGrfArea( Frm() ); SwRect aPaintArea( aGrfArea ); aPaintArea._Intersection( aOrigPaint ); SwRect aNormal( Frm().Pos() + Prt().Pos(), Prt().SSize() ); aNormal.Justify(); //Normalisiertes Rechteck fuer die Vergleiche if( aPaintArea.IsOver( aNormal ) ) { // berechne die 4 zu loeschenden Rechtecke if( pSh->GetWin() ) ::lcl_ClearArea( *this, *pSh->GetOut(), aPaintArea, aNormal ); // in der Schnittmenge vom PaintBereich und der Bitmap liegt // der absolut sichtbare Bereich vom Frame aPaintArea._Intersection( aNormal ); if ( bClip ) pOut->IntersectClipRegion( aPaintArea.SVRect() ); /// OD 25.09.2002 #99739# - delete unused 3rd parameter PaintPicture( pOut, aGrfArea ); } else // wenn nicht sichtbar, loesche einfach den angegebenen Bereich lcl_ClearArea( *this, *pSh->GetOut(), aPaintArea, SwRect() ); if( pGrfNd ) pGrfNd->SetFrameInPaint( FALSE ); pOut->Pop(); SfxProgress::LeaveLock(); } /************************************************************************* |* |* void lcl_CalcRect( Point & aPt, Size & aDim, |* USHORT nMirror ) |* |* Beschreibung Errechne die Position und die Groesse der Grafik im |* Frame, entsprechen der aktuellen Grafik-Attribute |* |* Parameter Point& die Position im Frame ( auch Return-Wert ) |* Size& die Groesse der Grafik ( auch Return-Wert ) |* MirrorGrf akt. Spiegelungs-Attribut |* Ersterstellung JP 04.03.91 |* Letzte Aenderung JP 31.08.94 |* *************************************************************************/ void lcl_CalcRect( Point& rPt, Size& rDim, USHORT nMirror ) { if( nMirror == RES_MIRROR_GRAPH_VERT || nMirror == RES_MIRROR_GRAPH_BOTH ) { rPt.X() += rDim.Width() -1; rDim.Width() = -rDim.Width(); } if( nMirror == RES_MIRROR_GRAPH_HOR || nMirror == RES_MIRROR_GRAPH_BOTH ) { rPt.Y() += rDim.Height() -1; rDim.Height() = -rDim.Height(); } } /************************************************************************* |* |* void SwNoTxtFrm::GetGrfArea() |* |* Beschreibung Errechne die Position und die Groesse der Bitmap |* innerhalb des uebergebenem Rechtecks. |* |* Ersterstellung JP 03.09.91 |* Letzte Aenderung MA 11. Oct. 94 |* *************************************************************************/ void SwNoTxtFrm::GetGrfArea( SwRect &rRect, SwRect* pOrigRect, BOOL ) const { // JP 23.01.2001: currently only used for scaling, cropping and mirroring // the contour of graphics! // all other is handled by the GraphicObject //In rRect wird das sichbare Rechteck der Grafik gesteckt. //In pOrigRect werden Pos+Size der Gesamtgrafik gesteck. const SwAttrSet& rAttrSet = GetNode()->GetSwAttrSet(); const SwCropGrf& rCrop = rAttrSet.GetCropGrf(); USHORT nMirror = rAttrSet.GetMirrorGrf().GetValue(); if( rAttrSet.GetMirrorGrf().IsGrfToggle() ) { if( !(FindPageFrm()->GetVirtPageNum() % 2) ) { switch ( nMirror ) { case RES_MIRROR_GRAPH_DONT: nMirror = RES_MIRROR_GRAPH_VERT; break; case RES_MIRROR_GRAPH_VERT: nMirror = RES_MIRROR_GRAPH_DONT; break; case RES_MIRROR_GRAPH_HOR: nMirror = RES_MIRROR_GRAPH_BOTH; break; default: nMirror = RES_MIRROR_GRAPH_HOR; break; } } } //Grafik wird vom Node eingelesen falls notwendig. Kann aber schiefgehen. long nLeftCrop, nRightCrop, nTopCrop, nBottomCrop; Size aOrigSz( ((SwNoTxtNode*)GetNode())->GetTwipSize() ); if ( !aOrigSz.Width() ) { aOrigSz.Width() = Prt().Width(); nLeftCrop = -rCrop.GetLeft(); nRightCrop = -rCrop.GetRight(); } else { nLeftCrop = Max( aOrigSz.Width() - (rCrop.GetRight() + rCrop.GetLeft()), long(1) ); const double nScale = double(Prt().Width()) / double(nLeftCrop); nLeftCrop = long(nScale * -rCrop.GetLeft() ); nRightCrop = long(nScale * -rCrop.GetRight() ); } // crop values have to be mirrored too if( nMirror == RES_MIRROR_GRAPH_VERT || nMirror == RES_MIRROR_GRAPH_BOTH ) { long nTmpCrop = nLeftCrop; nLeftCrop = nRightCrop; nRightCrop= nTmpCrop; } if( !aOrigSz.Height() ) { aOrigSz.Height() = Prt().Height(); nTopCrop = -rCrop.GetTop(); nBottomCrop= -rCrop.GetBottom(); } else { nTopCrop = Max( aOrigSz.Height() - (rCrop.GetTop() + rCrop.GetBottom()), long(1) ); const double nScale = double(Prt().Height()) / double(nTopCrop); nTopCrop = long(nScale * -rCrop.GetTop() ); nBottomCrop= long(nScale * -rCrop.GetBottom() ); } // crop values have to be mirrored too if( nMirror == RES_MIRROR_GRAPH_HOR || nMirror == RES_MIRROR_GRAPH_BOTH ) { long nTmpCrop = nTopCrop; nTopCrop = nBottomCrop; nBottomCrop= nTmpCrop; } Size aVisSz( Prt().SSize() ); Size aGrfSz( aVisSz ); Point aVisPt( Frm().Pos() + Prt().Pos() ); Point aGrfPt( aVisPt ); //Erst das 'sichtbare' Rect einstellen. if ( nLeftCrop > 0 ) { aVisPt.X() += nLeftCrop; aVisSz.Width() -= nLeftCrop; } if ( nTopCrop > 0 ) { aVisPt.Y() += nTopCrop; aVisSz.Height() -= nTopCrop; } if ( nRightCrop > 0 ) aVisSz.Width() -= nRightCrop; if ( nBottomCrop > 0 ) aVisSz.Height() -= nBottomCrop; rRect.Pos ( aVisPt ); rRect.SSize( aVisSz ); //Ggf. Die Gesamtgrafik berechnen if ( pOrigRect ) { Size aTmpSz( aGrfSz ); aGrfPt.X() += nLeftCrop; aTmpSz.Width() -= nLeftCrop + nRightCrop; aGrfPt.Y() += nTopCrop; aTmpSz.Height()-= nTopCrop + nBottomCrop; if( RES_MIRROR_GRAPH_DONT != nMirror ) lcl_CalcRect( aGrfPt, aTmpSz, nMirror ); pOrigRect->Pos ( aGrfPt ); pOrigRect->SSize( aTmpSz ); } } /************************************************************************* |* |* Size SwNoTxtFrm::GetSize() |* |* Beschreibung Gebe die Groesse des umgebenen FLys und |* damit die der Grafik zurueck. |* Ersterstellung JP 04.03.91 |* Letzte Aenderung JP 31.08.94 |* *************************************************************************/ const Size& SwNoTxtFrm::GetSize() const { // gebe die Groesse des Frames zurueck const SwFrm *pFly = FindFlyFrm(); if( !pFly ) pFly = this; return pFly->Prt().SSize(); } /************************************************************************* |* |* SwNoTxtFrm::MakeAll() |* |* Ersterstellung MA 29. Nov. 96 |* Letzte Aenderung MA 29. Nov. 96 |* *************************************************************************/ void SwNoTxtFrm::MakeAll() { SwCntntNotify aNotify( this ); SwBorderAttrAccess aAccess( SwFrm::GetCache(), this ); const SwBorderAttrs &rAttrs = *aAccess.Get(); while ( !bValidPos || !bValidSize || !bValidPrtArea ) { MakePos(); if ( !bValidSize ) Frm().Width( GetUpper()->Prt().Width() ); MakePrtArea( rAttrs ); if ( !bValidSize ) { bValidSize = TRUE; Format(); } } } /************************************************************************* |* |* SwNoTxtFrm::Format() |* |* Beschreibung Errechne die Groesse der Bitmap, wenn noetig |* Ersterstellung JP 11.03.91 |* Letzte Aenderung MA 13. Mar. 96 |* *************************************************************************/ void SwNoTxtFrm::Format( const SwBorderAttrs * ) { const Size aNewSize( GetSize() ); // hat sich die Hoehe geaendert? SwTwips nChgHght = IsVertical() ? (SwTwips)(aNewSize.Width() - Prt().Width()) : (SwTwips)(aNewSize.Height() - Prt().Height()); if( nChgHght > 0) Grow( nChgHght ); else if( nChgHght < 0) Shrink( Min(Prt().Height(), -nChgHght) ); } /************************************************************************* |* |* SwNoTxtFrm::GetCharRect() |* |* Beschreibung |* Ersterstellung SS 29-Apr-1991 |* Letzte Aenderung MA 10. Oct. 94 |* |*************************************************************************/ BOOL SwNoTxtFrm::GetCharRect( SwRect &rRect, const SwPosition& rPos, SwCrsrMoveState *pCMS ) const { if ( &rPos.nNode.GetNode() != (SwNode*)GetNode() ) return FALSE; Calc(); SwRect aFrameRect( Frm() ); rRect = aFrameRect; rRect.Pos( Frm().Pos() + Prt().Pos() ); rRect.SSize( Prt().SSize() ); rRect.Justify(); // liegt die Bitmap ueberhaupt im sichtbaren Berich ? if( !aFrameRect.IsOver( rRect ) ) { // wenn nicht dann steht der Cursor auf dem Frame rRect = aFrameRect; rRect.Width( 1 ); } else rRect._Intersection( aFrameRect ); if ( pCMS ) { if ( pCMS->bRealHeight ) { pCMS->aRealHeight.Y() = rRect.Height(); pCMS->aRealHeight.X() = 0; } } return TRUE; } BOOL SwNoTxtFrm::GetCrsrOfst(SwPosition* pPos, Point& , SwCrsrMoveState* ) const { SwCntntNode* pCNd = (SwCntntNode*)GetNode(); pPos->nNode = *pCNd; pPos->nContent.Assign( pCNd, 0 ); return TRUE; } #define CLEARCACHE( pNd ) {\ (pNd)->GetGrfObj().ReleaseFromCache();\ SwFlyFrm* pFly = FindFlyFrm();\ if( pFly && pFly->GetFmt()->GetSurround().IsContour() )\ {\ ClrContourCache( pFly->GetVirtDrawObj() );\ pFly->NotifyBackground( FindPageFrm(), Prt(), PREP_FLY_ATTR_CHG );\ }\ } void SwNoTxtFrm::Modify( SfxPoolItem* pOld, SfxPoolItem* pNew ) { USHORT nWhich = pNew ? pNew->Which() : pOld ? pOld->Which() : 0; // --> OD 2007-03-06 #i73788# // no for RES_LINKED_GRAPHIC_STREAM_ARRIVED if ( RES_GRAPHIC_PIECE_ARRIVED != nWhich && RES_GRAPHIC_ARRIVED != nWhich && RES_GRF_REREAD_AND_INCACHE != nWhich && RES_LINKED_GRAPHIC_STREAM_ARRIVED != nWhich ) // <-- { SwCntntFrm::Modify( pOld, pNew ); } BOOL bComplete = TRUE; switch( nWhich ) { case RES_OBJECTDYING: break; case RES_GRF_REREAD_AND_INCACHE: if( ND_GRFNODE == GetNode()->GetNodeType() ) { bComplete = FALSE; SwGrfNode* pNd = (SwGrfNode*) GetNode(); ViewShell *pVSh = 0; pNd->GetDoc()->GetEditShell( &pVSh ); if( pVSh ) { GraphicAttr aAttr; if( pNd->GetGrfObj().IsCached( pVSh->GetOut(), Point(), Prt().SSize(), &pNd->GetGraphicAttr( aAttr, this ) )) { ViewShell *pSh = pVSh; do { SET_CURR_SHELL( pSh ); if( pSh->GetWin() ) { if( pSh->IsPreView() ) ::RepaintPagePreview( pSh, Frm().SVRect() ); else pSh->GetWin()->Invalidate( Frm().SVRect() ); } } while( pVSh != (pSh = (ViewShell*)pSh->GetNext() )); } else pNd->SwapIn(); } } break; case RES_UPDATE_ATTR: case RES_FMT_CHG: CLEARCACHE( (SwGrfNode*) GetNode() ) break; case RES_ATTRSET_CHG: { USHORT n; for( n = RES_GRFATR_BEGIN; n < RES_GRFATR_END; ++n ) if( SFX_ITEM_SET == ((SwAttrSetChg*)pOld)->GetChgSet()-> GetItemState( n, FALSE )) { CLEARCACHE( (SwGrfNode*) GetNode() ) break; } if( RES_GRFATR_END == n ) // not found return ; } break; case RES_GRAPHIC_PIECE_ARRIVED: case RES_GRAPHIC_ARRIVED: // --> OD 2007-03-06 #i73788# // handle RES_LINKED_GRAPHIC_STREAM_ARRIVED as RES_GRAPHIC_ARRIVED case RES_LINKED_GRAPHIC_STREAM_ARRIVED: // <-- if ( GetNode()->GetNodeType() == ND_GRFNODE ) { bComplete = FALSE; SwGrfNode* pNd = (SwGrfNode*) GetNode(); CLEARCACHE( pNd ) SwRect aRect( Frm() ); ViewShell *pVSh = 0; pNd->GetDoc()->GetEditShell( &pVSh ); if( !pVSh ) break; ViewShell *pSh = pVSh; do { SET_CURR_SHELL( pSh ); if( pSh->IsPreView() ) { if( pSh->GetWin() ) ::RepaintPagePreview( pSh, aRect ); } else if ( pSh->VisArea().IsOver( aRect ) && OUTDEV_WINDOW == pSh->GetOut()->GetOutDevType() ) { // OD 27.11.2002 #105519# - invalidate instead of painting pSh->GetWin()->Invalidate( aRect.SVRect() ); } pSh = (ViewShell *)pSh->GetNext(); } while( pSh != pVSh ); } break; default: if ( !pNew || !isGRFATR(nWhich) ) return; } if( bComplete ) { InvalidatePrt(); SetCompletePaint(); } } void lcl_correctlyAlignRect( SwRect& rAlignedGrfArea, const SwRect& rInArea, OutputDevice* pOut ) { if(!pOut) return; Rectangle aPxRect = pOut->LogicToPixel( rInArea.SVRect() ); Rectangle aNewPxRect( aPxRect ); while( aNewPxRect.Left() < aPxRect.Left() ) { rAlignedGrfArea.Left( rAlignedGrfArea.Left()+1 ); aNewPxRect = pOut->LogicToPixel( rAlignedGrfArea.SVRect() ); } while( aNewPxRect.Top() < aPxRect.Top() ) { rAlignedGrfArea.Top( rAlignedGrfArea.Top()+1 ); aNewPxRect = pOut->LogicToPixel( rAlignedGrfArea.SVRect() ); } while( aNewPxRect.Bottom() > aPxRect.Bottom() ) { rAlignedGrfArea.Bottom( rAlignedGrfArea.Bottom()-1 ); aNewPxRect = pOut->LogicToPixel( rAlignedGrfArea.SVRect() ); } while( aNewPxRect.Right() > aPxRect.Right() ) { rAlignedGrfArea.Right( rAlignedGrfArea.Right()-1 ); aNewPxRect = pOut->LogicToPixel( rAlignedGrfArea.SVRect() ); } } // Ausgabe der Grafik. Hier wird entweder eine QuickDraw-Bmp oder // eine Grafik vorausgesetzt. Ist nichts davon vorhanden, wird // eine Ersatzdarstellung ausgegeben. /// OD 25.09.2002 #99739# - delete unused 3rd parameter. /// OD 25.09.2002 #99739# - use aligned rectangle for drawing graphic. /// OD 25.09.2002 #99739# - pixel-align coordinations for drawing graphic. void SwNoTxtFrm::PaintPicture( OutputDevice* pOut, const SwRect &rGrfArea ) const { ViewShell* pShell = GetShell(); SwNoTxtNode& rNoTNd = *(SwNoTxtNode*)GetNode(); SwGrfNode* pGrfNd = rNoTNd.GetGrfNode(); SwOLENode* pOLENd = rNoTNd.GetOLENode(); const BOOL bPrn = pOut == rNoTNd.getIDocumentDeviceAccess()->getPrinter( false ) || pOut->GetConnectMetaFile(); const bool bIsChart = pOLENd && ChartPrettyPainter::IsChart( pOLENd->GetOLEObj().GetObject() ); /// OD 25.09.2002 #99739# - calculate aligned rectangle from parameter . /// Use aligned rectangle instead of in /// the following code. SwRect aAlignedGrfArea = rGrfArea; ::SwAlignRect( aAlignedGrfArea, pShell ); if( !bIsChart ) { /// OD 25.09.2002 #99739# /// Because for drawing a graphic left-top-corner and size coordinations are /// used, these coordinations have to be determined on pixel level. ::SwAlignGrfRect( &aAlignedGrfArea, *pOut ); } else //if( bIsChart ) { //#i78025# charts own borders are not completely visible //the above pixel correction is not correct - at least not for charts //so a different pixel correction is choosen here //this might be a good idea for all other OLE objects also, //but as I cannot oversee the consequences I fix it only for charts for now lcl_correctlyAlignRect( aAlignedGrfArea, rGrfArea, pOut ); } if( pGrfNd ) { BOOL bForceSwap = FALSE, bContinue = TRUE; GraphicObject& rGrfObj = pGrfNd->GetGrfObj(); GraphicAttr aGrfAttr; pGrfNd->GetGraphicAttr( aGrfAttr, this ); if( !bPrn ) { // --> OD 2007-01-02 #i73788# if ( pGrfNd->IsLinkedInputStreamReady() ) { pGrfNd->UpdateLinkWithInputStream(); } // <-- // --> OD 2008-01-30 #i85717# // --> OD 2008-07-21 #i90395# - check, if asynchronous retrieval // if input stream for the graphic is possible // else if( GRAPHIC_DEFAULT == rGrfObj.GetType() && else if ( ( rGrfObj.GetType() == GRAPHIC_DEFAULT || rGrfObj.GetType() == GRAPHIC_NONE ) && pGrfNd->IsLinkedFile() && pGrfNd->IsAsyncRetrieveInputStreamPossible() ) // <-- { Size aTmpSz; ::sfx2::SvLinkSource* pGrfObj = pGrfNd->GetLink()->GetObj(); if( !pGrfObj || !pGrfObj->IsDataComplete() || !(aTmpSz = pGrfNd->GetTwipSize()).Width() || !aTmpSz.Height() || !pGrfNd->GetAutoFmtLvl() ) { // --> OD 2006-12-22 #i73788# pGrfNd->TriggerAsyncRetrieveInputStream(); // <-- } String aTxt( pGrfNd->GetTitle() ); if ( !aTxt.Len() ) GetRealURL( *pGrfNd, aTxt ); ::lcl_PaintReplacement( aAlignedGrfArea, aTxt, *pShell, this, FALSE ); bContinue = FALSE; } else if( rGrfObj.IsCached( pOut, aAlignedGrfArea.Pos(), aAlignedGrfArea.SSize(), &aGrfAttr )) { rGrfObj.DrawWithPDFHandling( *pOut, aAlignedGrfArea.Pos(), aAlignedGrfArea.SSize(), &aGrfAttr ); bContinue = FALSE; } } if( bContinue ) { const BOOL bSwapped = rGrfObj.IsSwappedOut(); const BOOL bSwappedIn = 0 != pGrfNd->SwapIn( bPrn ); if( bSwappedIn && rGrfObj.GetGraphic().IsSupportedGraphic()) { const BOOL bAnimate = rGrfObj.IsAnimated() && !pShell->IsPreView() && !pShell->GetAccessibilityOptions()->IsStopAnimatedGraphics() && // --> FME 2004-06-21 #i9684# Stop animation during printing/pdf export pShell->GetWin(); // <-- if( bAnimate && FindFlyFrm() != ::GetFlyFromMarked( 0, pShell )) { OutputDevice* pVout; if( pOut == pShell->GetOut() && SwRootFrm::FlushVout() ) pVout = pOut, pOut = pShell->GetOut(); else if( pShell->GetWin() && OUTDEV_VIRDEV == pOut->GetOutDevType() ) pVout = pOut, pOut = pShell->GetWin(); else pVout = 0; ASSERT( OUTDEV_VIRDEV != pOut->GetOutDevType() || pShell->GetViewOptions()->IsPDFExport(), "pOut sollte kein virtuelles Device sein" ); rGrfObj.StartAnimation( pOut, aAlignedGrfArea.Pos(), aAlignedGrfArea.SSize(), long(this), 0, GRFMGR_DRAW_STANDARD, pVout ); } else rGrfObj.DrawWithPDFHandling( *pOut, aAlignedGrfArea.Pos(), aAlignedGrfArea.SSize(), &aGrfAttr ); } else { USHORT nResId = 0; if( bSwappedIn ) { if( GRAPHIC_NONE == rGrfObj.GetType() ) nResId = STR_COMCORE_READERROR; else if ( !rGrfObj.GetGraphic().IsSupportedGraphic() ) nResId = STR_COMCORE_CANT_SHOW; } ((SwNoTxtFrm*)this)->nWeight = -1; String aText; if ( !nResId && !(aText = pGrfNd->GetTitle()).Len() && (!GetRealURL( *pGrfNd, aText ) || !aText.Len())) { nResId = STR_COMCORE_READERROR; } if ( nResId ) aText = SW_RESSTR( nResId ); ::lcl_PaintReplacement( aAlignedGrfArea, aText, *pShell, this, TRUE ); } //Beim Drucken duerfen wir nicht die Grafiken sammeln... if( bSwapped && bPrn ) bForceSwap = TRUE; } if( bForceSwap ) pGrfNd->SwapOut(); } else if( bIsChart //charts must be painted resolution dependent!! #i82893#, #i75867# && ChartPrettyPainter::ShouldPrettyPaintChartOnThisDevice( pOut ) && svt::EmbeddedObjectRef::TryRunningState( pOLENd->GetOLEObj().GetOleRef() ) && ChartPrettyPainter::DoPrettyPaintChart( uno::Reference< frame::XModel >( pOLENd->GetOLEObj().GetOleRef()->getComponent(), uno::UNO_QUERY), pOut, aAlignedGrfArea.SVRect() ) ) { (void)(0);//all was done in if statement } else if( pOLENd ) { // --> OD 2009-03-05 #i99665# // Adjust AntiAliasing mode at output device for chart OLE const USHORT nFormerAntialiasingAtOutput( pOut->GetAntialiasing() ); if ( pOLENd->IsChart() && pShell->Imp()->GetDrawView()->IsAntiAliasing() ) { const USHORT nAntialiasingForChartOLE = nFormerAntialiasingAtOutput | ANTIALIASING_PIXELSNAPHAIRLINE; pOut->SetAntialiasing( nAntialiasingForChartOLE ); } // <-- Point aPosition(aAlignedGrfArea.Pos()); Size aSize(aAlignedGrfArea.SSize()); // Im BrowseModus gibt es nicht unbedingt einen Drucker und // damit kein JobSetup, also legen wir eines an ... const JobSetup* pJobSetup = pOLENd->getIDocumentDeviceAccess()->getJobsetup(); BOOL bDummyJobSetup = 0 == pJobSetup; if( bDummyJobSetup ) pJobSetup = new JobSetup(); // #i42323# // The reason for #114233# is gone, so i remove it again //TODO/LATER: is it a problem that the JopSetup isn't used? //xRef->DoDraw( pOut, aAlignedGrfArea.Pos(), aAlignedGrfArea.SSize(), *pJobSetup ); // get hi-contrast image, but never for printing Graphic* pGraphic = NULL; if (pOut && !bPrn && Application::GetSettings().GetStyleSettings().GetHighContrastMode() ) pGraphic = pOLENd->GetHCGraphic(); // when it is not possible to get HC-representation, the original image should be used if ( !pGraphic ) pGraphic = pOLENd->GetGraphic(); if ( pGraphic && pGraphic->GetType() != GRAPHIC_NONE ) { pGraphic->Draw( pOut, aPosition, aSize ); // shade the representation if the object is activated outplace uno::Reference < embed::XEmbeddedObject > xObj = pOLENd->GetOLEObj().GetOleRef(); if ( xObj.is() && xObj->getCurrentState() == embed::EmbedStates::ACTIVE ) { ::svt::EmbeddedObjectRef::DrawShading( Rectangle( aPosition, aSize ), pOut ); } } else ::svt::EmbeddedObjectRef::DrawPaintReplacement( Rectangle( aPosition, aSize ), pOLENd->GetOLEObj().GetCurrentPersistName(), pOut ); if( bDummyJobSetup ) delete pJobSetup; // ... und raeumen wieder auf. sal_Int64 nMiscStatus = pOLENd->GetOLEObj().GetOleRef()->getStatus( pOLENd->GetAspect() ); if ( !bPrn && pShell->ISA( SwCrsrShell ) && nMiscStatus & embed::EmbedMisc::MS_EMBED_ACTIVATEWHENVISIBLE ) { const SwFlyFrm *pFly = FindFlyFrm(); ASSERT( pFly, "OLE not in FlyFrm" ); ((SwFEShell*)pShell)->ConnectObj( pOLENd->GetOLEObj().GetObject(), pFly->Prt(), pFly->Frm()); } // --> OD 2009-03-05 #i99665# if ( pOLENd->IsChart() && pShell->Imp()->GetDrawView()->IsAntiAliasing() ) { pOut->SetAntialiasing( nFormerAntialiasingAtOutput ); } // <-- } } BOOL SwNoTxtFrm::IsTransparent() const { const ViewShell* pSh = GetShell(); if ( !pSh || !pSh->GetViewOptions()->IsGraphic() ) return TRUE; const SwGrfNode *pNd; if( 0 != (pNd = GetNode()->GetGrfNode()) ) return pNd->IsTransparent(); //#29381# OLE sind immer Transparent. return TRUE; } void SwNoTxtFrm::StopAnimation( OutputDevice* pOut ) const { //animierte Grafiken anhalten SwGrfNode* pGrfNd = (SwGrfNode*)GetNode()->GetGrfNode(); if( pGrfNd && pGrfNd->IsAnimated() ) pGrfNd->GetGrfObj().StopAnimation( pOut, long(this) ); } BOOL SwNoTxtFrm::HasAnimation() const { const SwGrfNode* pGrfNd = GetNode()->GetGrfNode(); return pGrfNd && pGrfNd->IsAnimated(); }