summaryrefslogtreecommitdiff
path: root/include/vcl/salbtype.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-20 11:54:30 +0200
committerNoel Grandin <noel@peralex.com>2015-05-20 11:55:36 +0200
commitf2331f3dee01029e3d68174534300228e5135910 (patch)
tree7e8889f0f57b586869af9a2dcf46cc43d4c2b6c7 /include/vcl/salbtype.hxx
parent6586da0631ddcfd704538b0e1cf96d2ea0be7cd9 (diff)
fix indentation
Change-Id: Ia6fde08193f3e43225e843291ddc508afe74c356
Diffstat (limited to 'include/vcl/salbtype.hxx')
-rw-r--r--include/vcl/salbtype.hxx48
1 files changed, 23 insertions, 25 deletions
diff --git a/include/vcl/salbtype.hxx b/include/vcl/salbtype.hxx
index 95d9c5834717..6d8e7e63d581 100644
--- a/include/vcl/salbtype.hxx
+++ b/include/vcl/salbtype.hxx
@@ -32,10 +32,10 @@
// - Memory -
-typedef sal_uInt8* HPBYTE;
-typedef HPBYTE Scanline;
-typedef const sal_uInt8* ConstHPBYTE;
-typedef ConstHPBYTE ConstScanline;
+typedef sal_uInt8* HPBYTE;
+typedef HPBYTE Scanline;
+typedef const sal_uInt8* ConstHPBYTE;
+typedef ConstHPBYTE ConstScanline;
// - Bitmap formats -
@@ -52,8 +52,6 @@ typedef ConstHPBYTE ConstScanline;
#define BMP_FORMAT_8BIT_PAL 0x00000010UL
#define BMP_FORMAT_8BIT_TC_MASK 0x00000020UL
-// #define BMP_FORMAT_16BIT_TC_MASK 0x00000040UL
-
#define BMP_FORMAT_24BIT_TC_BGR 0x00000080UL
#define BMP_FORMAT_24BIT_TC_RGB 0x00000100UL
#define BMP_FORMAT_24BIT_TC_MASK 0x00000200UL
@@ -123,32 +121,32 @@ public:
inline bool IsIndex() const;
- inline sal_uInt8 GetRed() const;
+ inline sal_uInt8 GetRed() const;
inline void SetRed( sal_uInt8 cRed );
- inline sal_uInt8 GetGreen() const;
+ inline sal_uInt8 GetGreen() const;
inline void SetGreen( sal_uInt8 cGreen );
- inline sal_uInt8 GetBlue() const;
+ inline sal_uInt8 GetBlue() const;
inline void SetBlue( sal_uInt8 cBlue );
- inline sal_uInt8 GetIndex() const;
+ inline sal_uInt8 GetIndex() const;
inline void SetIndex( sal_uInt8 cIndex );
operator Color() const;
- inline sal_uInt8 GetBlueOrIndex() const;
+ inline sal_uInt8 GetBlueOrIndex() const;
inline BitmapColor& Invert();
- inline sal_uInt8 GetLuminance() const;
+ inline sal_uInt8 GetLuminance() const;
inline BitmapColor& IncreaseLuminance( sal_uInt8 cGreyInc );
inline BitmapColor& DecreaseLuminance( sal_uInt8 cGreyDec );
inline BitmapColor& Merge( const BitmapColor& rColor, sal_uInt8 cTransparency );
inline BitmapColor& Merge( sal_uInt8 cR, sal_uInt8 cG, sal_uInt8 cB, sal_uInt8 cTransparency );
- inline sal_uLong GetColorError( const BitmapColor& rBitmapColor ) const;
+ inline sal_uLong GetColorError( const BitmapColor& rBitmapColor ) const;
};
// - BitmapPalette -
@@ -177,9 +175,9 @@ public:
inline ~BitmapPalette();
inline BitmapPalette& operator=( const BitmapPalette& rBitmapPalette );
- inline bool operator==( const BitmapPalette& rBitmapPalette ) const;
- inline bool operator!=( const BitmapPalette& rBitmapPalette ) const;
- inline bool operator!();
+ inline bool operator==( const BitmapPalette& rBitmapPalette ) const;
+ inline bool operator!=( const BitmapPalette& rBitmapPalette ) const;
+ inline bool operator!();
inline sal_uInt16 GetEntryCount() const;
inline void SetEntryCount( sal_uInt16 nCount );
@@ -197,9 +195,9 @@ class VCL_DLLPUBLIC ColorMask
sal_uLong mnRMask;
sal_uLong mnGMask;
sal_uLong mnBMask;
- long mnRShift;
- long mnGShift;
- long mnBShift;
+ long mnRShift;
+ long mnGShift;
+ long mnBShift;
sal_uLong mnROrShift;
sal_uLong mnGOrShift;
sal_uLong mnBOrShift;
@@ -218,9 +216,9 @@ public:
sal_uLong nAlphaChannel = 0UL );
inline ~ColorMask() {}
- inline sal_uLong GetRedMask() const;
- inline sal_uLong GetGreenMask() const;
- inline sal_uLong GetBlueMask() const;
+ inline sal_uLong GetRedMask() const;
+ inline sal_uLong GetGreenMask() const;
+ inline sal_uLong GetBlueMask() const;
inline void GetColorFor8Bit( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
inline void SetColorFor8Bit( const BitmapColor& rColor, HPBYTE pPixel ) const;
@@ -241,14 +239,14 @@ public:
// - BitmapBuffer -
struct VCL_DLLPUBLIC BitmapBuffer
{
- sal_uLong mnFormat;
+ sal_uLong mnFormat;
long mnWidth;
long mnHeight;
long mnScanlineSize;
- sal_uInt16 mnBitCount;
+ sal_uInt16 mnBitCount;
ColorMask maColorMask;
BitmapPalette maPalette;
- sal_uInt8* mpBits;
+ sal_uInt8* mpBits;
BitmapBuffer(){}
~BitmapBuffer() {}