[Libreoffice-commits] .: vcl/inc

Joseph Powers jpowers at kemper.freedesktop.org
Fri Jul 8 21:20:22 PDT 2011


 vcl/inc/vcl/animate.hxx |  248 ++++++++++++++++++++++++++----------------------
 1 file changed, 135 insertions(+), 113 deletions(-)

New commits:
commit 2a12bfa6022f071521c6b02fa663702130f9f786
Author: Joseph Powers <jpowers27 at cox.net>
Date:   Fri Jul 8 21:20:12 2011 -0700

    Whitespace cleanup.
    
    I'm have a lot of Lists to cleanup; so lets just get the whitespace fixed
    first.

diff --git a/vcl/inc/vcl/animate.hxx b/vcl/inc/vcl/animate.hxx
index 1ab5028..8196b9f 100644
--- a/vcl/inc/vcl/animate.hxx
+++ b/vcl/inc/vcl/animate.hxx
@@ -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
@@ -48,7 +48,7 @@ enum Disposal
     DISPOSE_NOT,
     DISPOSE_BACK,
     DISPOSE_FULL,
-    DISPOSE_PREVIOUS 
+    DISPOSE_PREVIOUS
 };
 
 enum CycleMode
@@ -66,25 +66,30 @@ enum CycleMode
 
 struct VCL_DLLPUBLIC AnimationBitmap
 {
-    BitmapEx	aBmpEx;
-    Point		aPosPix;
-    Size		aSizePix;
-    long		nWait;
-    Disposal	eDisposal;
-    sal_Bool		bUserInput;
+    BitmapEx    aBmpEx;
+    Point       aPosPix;
+    Size        aSizePix;
+    long        nWait;
+    Disposal    eDisposal;
+    sal_Bool    bUserInput;
 
                 AnimationBitmap() {}
-                AnimationBitmap( const BitmapEx& rBmpEx, const Point& rPosPix,
-                                 const Size& rSizePix, long _nWait = 0L,
-                                 Disposal _eDisposal = DISPOSE_NOT ) :
-                            aBmpEx		( rBmpEx ),
-                            aPosPix		( rPosPix ),
-                            aSizePix	( rSizePix ),
-                            nWait		( _nWait ),
-                            eDisposal	( _eDisposal ),
-                            bUserInput	( sal_False ) {}
-
-    sal_Bool		operator==( const AnimationBitmap& rAnimBmp ) const
+                AnimationBitmap(
+                    const BitmapEx& rBmpEx,
+                    const Point& rPosPix,
+                    const Size& rSizePix,
+                    long _nWait = 0L,
+                    Disposal _eDisposal = DISPOSE_NOT
+                ) :
+                    aBmpEx      ( rBmpEx ),
+                    aPosPix     ( rPosPix ),
+                    aSizePix    ( rSizePix ),
+                    nWait       ( _nWait ),
+                    eDisposal   ( _eDisposal ),
+                    bUserInput  ( sal_False )
+                {}
+
+    sal_Bool    operator==( const AnimationBitmap& rAnimBmp ) const
                 {
                     return( rAnimBmp.aBmpEx == aBmpEx &&
                             rAnimBmp.aPosPix == aPosPix &&
@@ -94,9 +99,10 @@ struct VCL_DLLPUBLIC AnimationBitmap
                             rAnimBmp.bUserInput == bUserInput );
                 }
 
-    sal_Bool		operator!=( const AnimationBitmap& rAnimBmp ) const { return !( *this == rAnimBmp ); }
+    sal_Bool    operator!=( const AnimationBitmap& rAnimBmp ) const
+                { return !( *this == rAnimBmp ); }
 
-    sal_Bool		IsEqual( const AnimationBitmap& rAnimBmp ) const
+    sal_Bool    IsEqual( const AnimationBitmap& rAnimBmp ) const
                 {
                     return( rAnimBmp.aPosPix == aPosPix &&
                             rAnimBmp.aSizePix == aSizePix &&
@@ -106,7 +112,7 @@ struct VCL_DLLPUBLIC AnimationBitmap
                             rAnimBmp.aBmpEx.IsEqual( aBmpEx ) );
                 }
 
-    sal_uLong		GetChecksum() const;
+    sal_uLong   GetChecksum() const;
 };
 
 // -------------------
@@ -115,21 +121,21 @@ struct VCL_DLLPUBLIC AnimationBitmap
 
 struct AInfo
 {
-    Bitmap			aLastSaveBitmap;
-    Bitmap			aBackBitmap;
-    Rectangle		aClipRect;
-    Size			aLastSaveSize;
-    Point			aLastSavePoint;
-    Point			aStartOrg;
-    Size			aStartSize;
-    OutputDevice*	pOutDev;
-    void*			pViewData;
-    long			nExtraData;
-    sal_Bool			bWithSize;
-    sal_Bool			bPause;
-
-                    AInfo() : pOutDev( NULL ), 
-                              pViewData( NULL ), 
+    Bitmap          aLastSaveBitmap;
+    Bitmap          aBackBitmap;
+    Rectangle       aClipRect;
+    Size            aLastSaveSize;
+    Point           aLastSavePoint;
+    Point           aStartOrg;
+    Size            aStartSize;
+    OutputDevice*   pOutDev;
+    void*           pViewData;
+    long            nExtraData;
+    sal_Bool        bWithSize;
+    sal_Bool        bPause;
+
+                    AInfo() : pOutDev( NULL ),
+                              pViewData( NULL ),
                               nExtraData( 0L ),
                               bWithSize( sal_False ),
                               bPause( sal_False ) {}
@@ -141,26 +147,26 @@ struct AInfo
 
 class VCL_DLLPUBLIC Animation
 {
-    SAL_DLLPRIVATE static sal_uLong			mnAnimCount;
-
-    List					maList;
-    List					maAInfoList;
-    Link					maNotifyLink;
-    BitmapEx				maBitmapEx;
-    Timer					maTimer;
-    Size					maGlobalSize;
-    List*					mpViewList;
-    void*					mpExtraData;
-    long					mnLoopCount;
-    long					mnLoops;
-    long					mnPos;
-    Disposal				meLastDisposal;
-    CycleMode				meCycleMode;
-    sal_Bool					mbFirst;
-    sal_Bool					mbIsInAnimation;
-    sal_Bool					mbWithSize;
-    sal_Bool					mbLoopTerminated;
-    sal_Bool					mbIsWaiting;
+    SAL_DLLPRIVATE static sal_uLong         mnAnimCount;
+
+    List                    maList;
+    List                    maAInfoList;
+    Link                    maNotifyLink;
+    BitmapEx                maBitmapEx;
+    Timer                   maTimer;
+    Size                    maGlobalSize;
+    List*                   mpViewList;
+    void*                   mpExtraData;
+    long                    mnLoopCount;
+    long                    mnLoops;
+    long                    mnPos;
+    Disposal                meLastDisposal;
+    CycleMode               meCycleMode;
+    sal_Bool                mbFirst;
+    sal_Bool                mbIsInAnimation;
+    sal_Bool                mbWithSize;
+    sal_Bool                mbLoopTerminated;
+    sal_Bool                mbIsWaiting;
 
 
     SAL_DLLPRIVATE void     ImplRestartTimer( sal_uLong nTimeout );
@@ -170,84 +176,100 @@ public:
 
     SAL_DLLPRIVATE static void  ImplIncAnimCount() { mnAnimCount++; }
     SAL_DLLPRIVATE static void  ImplDecAnimCount() { mnAnimCount--; }
-    SAL_DLLPRIVATE sal_uLong        ImplGetCurPos() const { return mnPos; }
+    SAL_DLLPRIVATE sal_uLong    ImplGetCurPos() const { return mnPos; }
 
 
-public:						
+public:
                             Animation();
                             Animation( const Animation& rAnimation );
                             ~Animation();
 
-    Animation&				operator=( const Animation& rAnimation );
-    sal_Bool					operator==( const Animation& rAnimation ) const;
-    sal_Bool					operator!=( const Animation& rAnimation ) const { return !(*this==rAnimation); }
+    Animation&              operator=( const Animation& rAnimation );
+    sal_Bool                operator==( const Animation& rAnimation ) const;
+    sal_Bool                operator!=( const Animation& rAnimation ) const
+                            { return !(*this==rAnimation); }
 
-    sal_Bool					IsEqual( const Animation& rAnimation ) const;
+    sal_Bool                IsEqual( const Animation& rAnimation ) const;
 
-    sal_Bool					IsEmpty() const;
-    void					SetEmpty();
+    sal_Bool                IsEmpty() const;
+    void                    SetEmpty();
 
-    void					Clear();
+    void                    Clear();
 
-    sal_Bool					Start( OutputDevice* pOutDev, const Point& rDestPt, long nExtraData = 0, 
-                                   OutputDevice* pFirstFrameOutDev = NULL );
-    sal_Bool					Start( OutputDevice* pOutDev, const Point& rDestPt, const Size& rDestSz, long nExtraData = 0,
-                                   OutputDevice* pFirstFrameOutDev = NULL );
-    void					Stop( OutputDevice* pOutDev = NULL, long nExtraData = 0 );
+    sal_Bool                Start(
+                                OutputDevice* pOutDev,
+                                const Point& rDestPt,
+                                long nExtraData = 0,
+                                OutputDevice* pFirstFrameOutDev = NULL
+                            );
+    sal_Bool                Start(
+                                OutputDevice* pOutDev,
+                                const Point& rDestPt,
+                                const Size& rDestSz,
+                                long nExtraData = 0,
+                                OutputDevice* pFirstFrameOutDev = NULL
+                            );
+    void                    Stop( OutputDevice* pOutDev = NULL, long nExtraData = 0 );
 
-    void					Draw( OutputDevice* pOutDev, const Point& rDestPt ) const;
-    void					Draw( OutputDevice* pOutDev, const Point& rDestPt, const Size& rDestSz ) const;
+    void                    Draw( OutputDevice* pOutDev, const Point& rDestPt ) const;
+    void                    Draw( OutputDevice* pOutDev, const Point& rDestPt, const Size& rDestSz ) const;
 
-    sal_Bool					IsInAnimation() const { return mbIsInAnimation; }
-    sal_Bool					IsTransparent() const;
-    sal_Bool					IsTerminated() const { return mbLoopTerminated; }
+    sal_Bool                IsInAnimation() const { return mbIsInAnimation; }
+    sal_Bool                IsTransparent() const;
+    sal_Bool                IsTerminated() const { return mbLoopTerminated; }
 
-    const Size&				GetDisplaySizePixel() const { return maGlobalSize; }
-    void					SetDisplaySizePixel( const Size& rSize ) { maGlobalSize = rSize; }
+    const Size&             GetDisplaySizePixel() const { return maGlobalSize; }
+    void                    SetDisplaySizePixel( const Size& rSize ) { maGlobalSize = rSize; }
 
-    const BitmapEx&			GetBitmapEx() const { return maBitmapEx; }
-    void					SetBitmapEx( const BitmapEx& rBmpEx ) { maBitmapEx = rBmpEx; }
+    const BitmapEx&         GetBitmapEx() const { return maBitmapEx; }
+    void                    SetBitmapEx( const BitmapEx& rBmpEx ) { maBitmapEx = rBmpEx; }
 
-    sal_uLong					GetLoopCount() const { return mnLoopCount; }
-    void					SetLoopCount( const sal_uLong nLoopCount );
-    void					ResetLoopCount();
+    sal_uLong               GetLoopCount() const { return mnLoopCount; }
+    void                    SetLoopCount( const sal_uLong nLoopCount );
+    void                    ResetLoopCount();
 
-    void					SetCycleMode( CycleMode eMode );
-    CycleMode				GetCycleMode() const { return meCycleMode; }
+    void                    SetCycleMode( CycleMode eMode );
+    CycleMode               GetCycleMode() const { return meCycleMode; }
 
-    void					SetNotifyHdl( const Link& rLink ) { maNotifyLink = rLink; }
-    const Link&				GetNotifyHdl() const { return maNotifyLink; }
+    void                    SetNotifyHdl( const Link& rLink ) { maNotifyLink = rLink; }
+    const Link&             GetNotifyHdl() const { return maNotifyLink; }
 
-    sal_uInt16					Count() const { return (sal_uInt16) maList.Count(); }
-    sal_Bool					Insert( const AnimationBitmap& rAnimationBitmap );
-    const AnimationBitmap&	Get( sal_uInt16 nAnimation ) const;
-    void					Replace( const AnimationBitmap& rNewAnimationBmp, sal_uInt16 nAnimation );
+    sal_uInt16              Count() const { return (sal_uInt16) maList.Count(); }
+    sal_Bool                Insert( const AnimationBitmap& rAnimationBitmap );
+    const AnimationBitmap&  Get( sal_uInt16 nAnimation ) const;
+    void                    Replace( const AnimationBitmap& rNewAnimationBmp, sal_uInt16 nAnimation );
 
-    List*					GetAInfoList() { return &maAInfoList; }
-    sal_uLong					GetSizeBytes() const;
-    sal_uLong					GetChecksum() const;
+    List*                   GetAInfoList() { return &maAInfoList; }
+    sal_uLong               GetSizeBytes() const;
+    sal_uLong               GetChecksum() const;
 
 public:
 
-    sal_Bool					Convert( BmpConversion eConversion );
-    sal_Bool					ReduceColors( sal_uInt16 nNewColorCount, 
-                                          BmpReduce eReduce = BMP_REDUCE_SIMPLE );
-    sal_Bool					Invert();
-    sal_Bool					Mirror( sal_uLong nMirrorFlags );
-    sal_Bool					Dither( sal_uLong nDitherFlags = BMP_DITHER_MATRIX );
-    sal_Bool					Adjust( short nLuminancePercent = 0,
-                                    short nContrastPercent = 0,
-                                    short nChannelRPercent = 0, 
-                                    short nChannelGPercent = 0, 
-                                    short nChannelBPercent = 0,
-                                    double fGamma = 1.0,
-                                    sal_Bool bInvert = sal_False );
-    sal_Bool					Filter( BmpFilter eFilter, 
-                                    const BmpFilterParam* pFilterParam = NULL,
-                                    const Link* pProgress = NULL );
-
-    friend VCL_DLLPUBLIC SvStream&		operator>>( SvStream& rIStream, Animation& rAnimation );
-    friend VCL_DLLPUBLIC SvStream&		operator<<( SvStream& rOStream, const Animation& rAnimation );
+    sal_Bool                Convert( BmpConversion eConversion );
+    sal_Bool                ReduceColors(
+                                sal_uInt16 nNewColorCount,
+                                BmpReduce eReduce = BMP_REDUCE_SIMPLE
+                            );
+    sal_Bool                Invert();
+    sal_Bool                Mirror( sal_uLong nMirrorFlags );
+    sal_Bool                Dither( sal_uLong nDitherFlags = BMP_DITHER_MATRIX );
+    sal_Bool                Adjust(
+                                short nLuminancePercent = 0,
+                                short nContrastPercent = 0,
+                                short nChannelRPercent = 0,
+                                short nChannelGPercent = 0,
+                                short nChannelBPercent = 0,
+                                double fGamma = 1.0,
+                                sal_Bool bInvert = sal_False
+                            );
+    sal_Bool                Filter(
+                                BmpFilter eFilter,
+                                const BmpFilterParam* pFilterParam = NULL,
+                                const Link* pProgress = NULL
+                            );
+
+    friend VCL_DLLPUBLIC SvStream&  operator>>( SvStream& rIStream, Animation& rAnimation );
+    friend VCL_DLLPUBLIC SvStream&  operator<<( SvStream& rOStream, const Animation& rAnimation );
 };
 
 #endif // _SV_ANIMATE_HXX


More information about the Libreoffice-commits mailing list