[Libreoffice-commits] .: sd/source slideshow/source

Joseph Powers jpowers at kemper.freedesktop.org
Tue May 10 07:42:55 PDT 2011


 sd/source/ui/dlg/vectdlg.cxx                           |    6 -
 sd/source/ui/func/fuvect.cxx                           |   10 +-
 sd/source/ui/view/drviewsc.cxx                         |    8 +-
 slideshow/source/engine/shapes/drawshapesubsetting.cxx |   40 +++++------
 slideshow/source/engine/shapes/gdimtftools.cxx         |   58 ++++++++---------
 5 files changed, 61 insertions(+), 61 deletions(-)

New commits:
commit 67b28965f143d0f37697326a9250b328b287a22f
Author: Joseph Powers <jpowers27 at cox.net>
Date:   Tue May 10 05:45:30 2011 -0700

    GDIMetaFile cleanup
    
    Plus trailing whitespace cleanup.

diff --git a/sd/source/ui/dlg/vectdlg.cxx b/sd/source/ui/dlg/vectdlg.cxx
index 6e0d97b..fb3e072 100644
--- a/sd/source/ui/dlg/vectdlg.cxx
+++ b/sd/source/ui/dlg/vectdlg.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * 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
@@ -58,7 +58,7 @@
 // - SdVectorizeDlg -
 // ------------------
 
-SdVectorizeDlg::SdVectorizeDlg( 
+SdVectorizeDlg::SdVectorizeDlg(
     Window* pParent, const Bitmap& rBmp, ::sd::DrawDocShell* pDocShell ) :
         ModalDialog     ( pParent, SdResId( DLG_VECTORIZE ) ),
         mpDocSh          ( pDocShell ),
@@ -229,7 +229,7 @@ void SdVectorizeDlg::Calculate( Bitmap& rBmp, GDIMetaFile& rMtf )
 
                 aTmp.ReleaseAccess( pRAcc );
 
-                for( sal_uLong n = 0UL, nCount = rMtf.GetActionCount(); n < nCount; n++ )
+                for( size_t n = 0, nCount = rMtf.GetActionSize(); n < nCount; n++ )
                     aNewMtf.AddAction( rMtf.GetAction( n )->Clone() );
 
                 aMap.SetScaleX( aMap.GetScaleX() * aScale );
diff --git a/sd/source/ui/func/fuvect.cxx b/sd/source/ui/func/fuvect.cxx
index 0be4b79..c04a5a4 100644
--- a/sd/source/ui/func/fuvect.cxx
+++ b/sd/source/ui/func/fuvect.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * 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
@@ -57,10 +57,10 @@ TYPEINIT1( FuVectorize, FuPoor );
 \************************************************************************/
 
 FuVectorize::FuVectorize (
-    ViewShell* pViewSh, 
-    ::sd::Window* pWin, 
+    ViewShell* pViewSh,
+    ::sd::Window* pWin,
     ::sd::View* pView,
-    SdDrawDocument* pDoc, 
+    SdDrawDocument* pDoc,
     SfxRequest& rReq)
     : FuPoor (pViewSh, pWin, pView, pDoc, rReq)
 {
@@ -90,7 +90,7 @@ void FuVectorize::DoExecute( SfxRequest& )
                 const GDIMetaFile&	rMtf = pDlg->GetGDIMetaFile();
                 SdrPageView*		pPageView = mpView->GetSdrPageView();
 
-                if( pPageView && rMtf.GetActionCount() )
+                if( pPageView && rMtf.GetActionSize() )
                 {
                     SdrGrafObj*	pVectObj = (SdrGrafObj*) pObj->Clone();
                     String		aStr( mpView->GetDescriptionOfMarkedObjects() );
diff --git a/sd/source/ui/view/drviewsc.cxx b/sd/source/ui/view/drviewsc.cxx
index 603703c..9f4c16f 100644
--- a/sd/source/ui/view/drviewsc.cxx
+++ b/sd/source/ui/view/drviewsc.cxx
@@ -120,7 +120,7 @@ void DrawViewShell::FuTemp03(SfxRequest& rReq)
                 OSL_ENSURE(pFact, "Dialogdiet fail!");
                 AbstractSvxObjectNameDialog* pDlg = pFact->CreateSvxObjectNameDialog(NULL, aName);
                 OSL_ENSURE(pDlg, "Dialogdiet fail!");
-                
+
                 pDlg->SetCheckNameHdl(LINK(this, DrawViewShell, NameObjectHdl));
 
                 if(RET_OK == pDlg->Execute())
@@ -199,7 +199,7 @@ void DrawViewShell::FuTemp03(SfxRequest& rReq)
             rReq.Done ();
         }
         break;
-        
+
         case SID_COMBINE:  // BASIC
         {
             // End text edit to avoid conflicts
@@ -362,9 +362,9 @@ void DrawViewShell::FuTemp03(SfxRequest& rReq)
                     SdrGrafObj*  pGraf=PTR_CAST(SdrGrafObj,pObj);
                     SdrOle2Obj*  pOle2=PTR_CAST(SdrOle2Obj,pObj);
                     if (pGraf!=NULL && pGraf->HasGDIMetaFile())
-                        nCount += pGraf->GetGraphic().GetGDIMetaFile().GetActionCount();
+                        nCount += pGraf->GetGraphic().GetGDIMetaFile().GetActionSize();
                     if(pOle2!=NULL && pOle2->GetGraphic())
-                        nCount += pOle2->GetGraphic()->GetGDIMetaFile().GetActionCount();
+                        nCount += pOle2->GetGraphic()->GetGDIMetaFile().GetActionSize();
                 }
 
                 // anhand der erm. Summe entscheiden ob mit
diff --git a/slideshow/source/engine/shapes/drawshapesubsetting.cxx b/slideshow/source/engine/shapes/drawshapesubsetting.cxx
index 4cd07ea..743c089 100644
--- a/slideshow/source/engine/shapes/drawshapesubsetting.cxx
+++ b/slideshow/source/engine/shapes/drawshapesubsetting.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * 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
@@ -74,7 +74,7 @@ namespace slideshow
 
             // init doctree vector
             maActionClassVector.clear();
-            maActionClassVector.reserve( mpMtf->GetActionCount() );
+            maActionClassVector.reserve( mpMtf->GetActionSize() );
 
             // search metafile for text output
             MetaAction* pCurrAct;
@@ -255,7 +255,7 @@ namespace slideshow
             maCurrentSubsets(),
             mbNodeTreeInitialized( false )
         {
-            ENSURE_OR_THROW( mpMtf, 
+            ENSURE_OR_THROW( mpMtf,
                               "DrawShapeSubsetting::DrawShapeSubsetting(): Invalid metafile" );
 
             initCurrentSubsets();
@@ -272,7 +272,7 @@ namespace slideshow
             maCurrentSubsets(),
             mbNodeTreeInitialized( false )
         {
-            ENSURE_OR_THROW( mpMtf, 
+            ENSURE_OR_THROW( mpMtf,
                               "DrawShapeSubsetting::DrawShapeSubsetting(): Invalid metafile" );
 
             initCurrentSubsets();
@@ -333,7 +333,7 @@ namespace slideshow
 
             // subset shape already created for this DocTreeNode?
             SubsetEntry aEntry;
-            
+
             aEntry.mnStartActionIndex 	= rTreeNode.getStartIndex();
             aEntry.mnEndActionIndex 	= rTreeNode.getEndIndex();
 
@@ -354,7 +354,7 @@ namespace slideshow
             // subset shape already created for this DocTreeNode?
             SubsetEntry aEntry;
             const DocTreeNode& rEffectiveSubset( rShape->getSubsetNode() );
-            
+
             aEntry.mnStartActionIndex 	= rEffectiveSubset.getStartIndex();
             aEntry.mnEndActionIndex 	= rEffectiveSubset.getEndIndex();
 
@@ -372,9 +372,9 @@ namespace slideshow
                 // not yet created, init entry
                 aEntry.mnSubsetQueriedCount = 1;
                 aEntry.mpShape = rShape;
-                
+
                 maSubsetShapes.insert( aEntry );
-                
+
                 // update cached subset borders
                 updateSubsetBounds( aEntry );
                 updateSubsets();
@@ -388,7 +388,7 @@ namespace slideshow
             // lookup subset shape
             SubsetEntry aEntry;
             const DocTreeNode& rEffectiveSubset( rShape->getSubsetNode() );
-            
+
             aEntry.mnStartActionIndex 	= rEffectiveSubset.getStartIndex();
             aEntry.mnEndActionIndex 	= rEffectiveSubset.getEndIndex();
 
@@ -430,7 +430,7 @@ namespace slideshow
             mnMinSubsetActionIndex = SAL_MAX_INT32;
             mnMaxSubsetActionIndex = 0;
 
-            // TODO(P2): This is quite expensive, when 
+            // TODO(P2): This is quite expensive, when
             // after every subset effect end, we have to scan
             // the whole shape set
 
@@ -540,7 +540,7 @@ namespace slideshow
 
                         case DrawShapeSubsetting::CLASS_SHAPE_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_SHAPE_END,
-                                              nCurrShapeCount, 
+                                              nCurrShapeCount,
                                               aLastShapeStart,
                                               aNext ) )
                             {
@@ -552,7 +552,7 @@ namespace slideshow
                             // ends lines
                         case DrawShapeSubsetting::CLASS_PARAGRAPH_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_PARAGRAPH_END,
-                                              nCurrParaCount, 
+                                              nCurrParaCount,
                                               aLastParaStart,
                                               aNext ) )
                             {
@@ -565,7 +565,7 @@ namespace slideshow
                             // ends line
                         case DrawShapeSubsetting::CLASS_LINE_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_LINE_END,
-                                              nCurrLineCount, 
+                                              nCurrLineCount,
                                               aLastLineStart,
                                               aNext ) )
                             {
@@ -592,7 +592,7 @@ namespace slideshow
                             // FALLTHROUGH intended
                         case DrawShapeSubsetting::CLASS_SENTENCE_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_SENTENCE_END,
-                                              nCurrSentenceCount, 
+                                              nCurrSentenceCount,
                                               aLastSentenceStart,
                                               aNext ) )
                             {
@@ -604,7 +604,7 @@ namespace slideshow
                             // FALLTHROUGH intended
                         case DrawShapeSubsetting::CLASS_WORD_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_WORD_END,
-                                              nCurrWordCount, 
+                                              nCurrWordCount,
                                               aLastWordStart,
                                               aNext ) )
                             {
@@ -616,7 +616,7 @@ namespace slideshow
                             // FALLTHROUGH intended
                         case DrawShapeSubsetting::CLASS_CHARACTER_CELL_END:
                             if( !io_rFunctor( DrawShapeSubsetting::CLASS_CHARACTER_CELL_END,
-                                              nCurrCharCount, 
+                                              nCurrCharCount,
                                               aLastCharStart,
                                               aNext ) )
                             {
@@ -668,7 +668,7 @@ namespace slideshow
             class CountClassFunctor
             {
             public:
-                CountClassFunctor( DrawShapeSubsetting::IndexClassificator eClass ) : 
+                CountClassFunctor( DrawShapeSubsetting::IndexClassificator eClass ) :
                     meClass( eClass ),
                     mnCurrCount(0)
                 {
@@ -700,7 +700,7 @@ namespace slideshow
                                                                  const DrawShapeSubsetting::IndexClassificatorVector::const_iterator& rEnd,
                                                                  DocTreeNode::NodeType 												  eNodeType ) const
         {
-            const IndexClassificator eRequestedClass( 
+            const IndexClassificator eRequestedClass(
                 mapDocTreeNode( eNodeType ) );
 
             // create a counting functor for the requested class of
@@ -796,7 +796,7 @@ namespace slideshow
                                                           sal_Int32											nNodeIndex,
                                                           DocTreeNode::NodeType								eNodeType ) const
         {
-            const IndexClassificator eRequestedClass( 
+            const IndexClassificator eRequestedClass(
                 mapDocTreeNode( eNodeType ) );
 
             // create a nth element functor for the requested class of
@@ -860,7 +860,7 @@ namespace slideshow
         {
             return maCurrentSubsets;
         }
-        
+
     }
 }
 
diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx b/slideshow/source/engine/shapes/gdimtftools.cxx
index 8c358c6..5265926 100644
--- a/slideshow/source/engine/shapes/gdimtftools.cxx
+++ b/slideshow/source/engine/shapes/gdimtftools.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * 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
@@ -68,7 +68,7 @@ using namespace ::com::sun::star;
 
 namespace slideshow
 {
-namespace internal 
+namespace internal
 {
 // TODO(E2): Detect the case when svx/drawing layer is not
 // in-process, or even not on the same machine, and
@@ -87,8 +87,8 @@ bool hasUnsupportedActions( const GDIMetaFile& rMtf )
     MetaAction* pCurrAct;
 
     // TODO(Q3): avoid const-cast
-    for( pCurrAct = const_cast<GDIMetaFile&>(rMtf).FirstAction(); 
-         pCurrAct; 
+    for( pCurrAct = const_cast<GDIMetaFile&>(rMtf).FirstAction();
+         pCurrAct;
          pCurrAct = const_cast<GDIMetaFile&>(rMtf).NextAction() )
     {
         switch( pCurrAct->GetType() )
@@ -118,12 +118,12 @@ namespace {
 
 typedef ::cppu::WeakComponentImplHelper1< graphic::XGraphicRenderer > DummyRenderer_Base;
 
-class DummyRenderer : 
+class DummyRenderer :
         public DummyRenderer_Base,
         public cppu::BaseMutex
 {
 public:
-    DummyRenderer() : 
+    DummyRenderer() :
         DummyRenderer_Base( m_aMutex ),
         mxGraphic()
         {
@@ -147,11 +147,11 @@ public:
     GDIMetaFile getMtf( bool bForeignSource ) const
     {
         ::osl::MutexGuard aGuard( m_aMutex );
-                    
+
         Graphic aGraphic( mxGraphic );
 
         if( aGraphic.GetType() == GRAPHIC_BITMAP ||
-            (bForeignSource && 
+            (bForeignSource &&
              hasUnsupportedActions(aGraphic.GetGDIMetaFile()) ) )
         {
             // wrap bitmap into GDIMetafile
@@ -178,10 +178,10 @@ private:
 };
 
 } // anon namespace
-    
+
 // Quick'n'dirty way: tunnel Graphic (only works for
 // in-process slideshow, of course)
-bool getMetaFile( const uno::Reference< lang::XComponent >& 	  xSource, 
+bool getMetaFile( const uno::Reference< lang::XComponent >& 	  xSource,
                   const uno::Reference< drawing::XDrawPage >&     xContainingPage,
                   GDIMetaFile&                                    rMtf,
                   int                                             mtfLoadFlags,
@@ -200,7 +200,7 @@ bool getMetaFile( const uno::Reference< lang::XComponent >& 	  xSource,
     uno::Reference< graphic::XGraphicRenderer > xRenderer( pRenderer );
 
     // -> stuff that into UnoGraphicExporter.
-    uno::Reference<lang::XMultiComponentFactory> xFactory( 
+    uno::Reference<lang::XMultiComponentFactory> xFactory(
         rxContext->getServiceManager() );
 
     OSL_ENSURE( xFactory.is(), "### no UNO?!" );
@@ -209,7 +209,7 @@ bool getMetaFile( const uno::Reference< lang::XComponent >& 	  xSource,
 
     // creating the graphic exporter
     uno::Reference< document::XExporter > xExporter(
-        xFactory->createInstanceWithContext( 
+        xFactory->createInstanceWithContext(
             OUSTR("com.sun.star.drawing.GraphicExportFilter"),
             rxContext),
         uno::UNO_QUERY );
@@ -232,7 +232,7 @@ bool getMetaFile( const uno::Reference< lang::XComponent >& 	  xSource,
 
     aFilterData[1].Name = OUSTR("ScrollText");
     aFilterData[1].Value <<= ((mtfLoadFlags & MTF_LOAD_SCROLL_TEXT_MTF) != 0);
-                    
+
     aFilterData[2].Name = OUSTR("ExportOnlyBackground");
     aFilterData[2].Value <<= ((mtfLoadFlags & MTF_LOAD_BACKGROUND_ONLY) != 0);
 
@@ -267,7 +267,7 @@ void removeTextActions( GDIMetaFile& rMtf )
     MetaAction* pCurrAct;
 
     int nActionIndex(0);
-    pCurrAct = rMtf.FirstAction(); 
+    pCurrAct = rMtf.FirstAction();
     while( pCurrAct )
     {
         switch( pCurrAct->GetType() )
@@ -304,7 +304,7 @@ sal_Int32 getNextActionOffset( MetaAction * pCurrAct )
     // Special handling for actions that represent
     // more than one indexable action
     // ===========================================
-    
+
     switch (pCurrAct->GetType()) {
     case META_TEXT_ACTION: {
         MetaTextAction * pAct = static_cast<MetaTextAction *>(pCurrAct);
@@ -330,7 +330,7 @@ sal_Int32 getNextActionOffset( MetaAction * pCurrAct )
         // (though this is currently not used from the
         // DrawingLayer - shape transparency gradients
         // don't affect shape text)
-        return pAct->GetGDIMetaFile().GetActionCount();
+        return pAct->GetGDIMetaFile().GetActionSize();
     }
     default:
         return 1;
@@ -350,7 +350,7 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
     // some loop invariants
     Animation 	aAnimation( rGraphic.GetAnimation() );
     const Point aEmptyPoint;
-    const Size  aAnimSize( aAnimation.GetDisplaySizePixel() );              
+    const Size  aAnimSize( aAnimation.GetDisplaySizePixel() );
 
     // setup VDev, into which all bitmaps are painted (want to
     // normalize animations to n bitmaps of same size. An Animation,
@@ -399,24 +399,24 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
         {
             case DISPOSE_NOT:
             {
-                aVDev.DrawBitmapEx(rAnimBmp.aPosPix, 
+                aVDev.DrawBitmapEx(rAnimBmp.aPosPix,
                                    rAnimBmp.aBmpEx);
                 Bitmap aMask = rAnimBmp.aBmpEx.GetMask();
 
                 if( aMask.IsEmpty() )
                 {
                     const Point aEmpty;
-                    const Rectangle aRect(aEmptyPoint, 
+                    const Rectangle aRect(aEmptyPoint,
                                           aVDevMask.GetOutputSizePixel());
                     const Wallpaper aWallpaper(COL_BLACK);
-                    aVDevMask.DrawWallpaper(aRect, 
+                    aVDevMask.DrawWallpaper(aRect,
                                             aWallpaper);
                 }
                 else
                 {
-                    BitmapEx aTmpMask = BitmapEx(aMask, 
+                    BitmapEx aTmpMask = BitmapEx(aMask,
                                                  aMask);
-                    aVDevMask.DrawBitmapEx(rAnimBmp.aPosPix, 
+                    aVDevMask.DrawBitmapEx(rAnimBmp.aPosPix,
                                            aTmpMask );
                 }
                 break;
@@ -447,16 +447,16 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
 
             case DISPOSE_FULL:
             {
-                aVDev.DrawBitmapEx(rAnimBmp.aPosPix, 
+                aVDev.DrawBitmapEx(rAnimBmp.aPosPix,
                                    rAnimBmp.aBmpEx);
                 break;
             }
 
             case DISPOSE_PREVIOUS :
             {
-                aVDev.DrawBitmapEx(rAnimBmp.aPosPix, 
+                aVDev.DrawBitmapEx(rAnimBmp.aPosPix,
                                    rAnimBmp.aBmpEx);
-                aVDevMask.DrawBitmap(rAnimBmp.aPosPix, 
+                aVDevMask.DrawBitmap(rAnimBmp.aPosPix,
                                      rAnimBmp.aBmpEx.GetMask());
                 break;
             }
@@ -465,7 +465,7 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
         // extract current aVDev content into a new animation
         // frame
         GDIMetaFileSharedPtr pMtf( new GDIMetaFile() );
-        pMtf->AddAction( 
+        pMtf->AddAction(
             new MetaBmpExAction( aEmptyPoint,
                                  BitmapEx(
                                      aVDev.GetBitmap(
@@ -490,13 +490,13 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
             // time to show first page (whole day)
             nWaitTime100thSeconds = 100 * 60 * 60 * 24;
         }
-        
+
         // There are animated GIFs with no WaitTime set. Take 0.1 sec, the
         // same duration that is used by the edit view.
         if( nWaitTime100thSeconds == 0 )
             nWaitTime100thSeconds = 10;
 
-        o_rFrames.push_back( MtfAnimationFrame( pMtf, 
+        o_rFrames.push_back( MtfAnimationFrame( pMtf,
                                                 nWaitTime100thSeconds / 100.0 ) );
     }
 
@@ -506,7 +506,7 @@ bool getAnimationFromGraphic( VectorOfMtfAnimationFrames&   o_rFrames,
 bool getRectanglesFromScrollMtf( ::basegfx::B2DRectangle&       o_rScrollRect,
                                  ::basegfx::B2DRectangle&       o_rPaintRect,
                                  const GDIMetaFileSharedPtr&    rMtf )
-{ 
+{
     // extract bounds: scroll rect, paint rect
     bool bScrollRectSet(false);
     bool bPaintRectSet(false);


More information about the Libreoffice-commits mailing list