pxcolor.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _PXCOLOR_H
  36. #define _PXCOLOR_H
  37. class PXColor : public CHXBaseCountingObject,
  38.                 public CUnknownIMP
  39. {
  40.     DECLARE_UNKNOWN(PXColor)
  41. public:
  42.     PXColor();
  43.     PXColor(const PXColor &rColor);
  44.     PXColor(BYTE ucR, BYTE ucG, BYTE ucB, BYTE ucA = 0);
  45.     ~PXColor() {};
  46.     const PXColor& operator=  (const PXColor& rColor);
  47.     BOOL           operator== (const PXColor& rColor) const;
  48.     BOOL           operator!= (const PXColor& rColor) const;
  49.     BYTE      GetRed()   const { return m_ucRed;   };
  50.     BYTE      GetGreen() const { return m_ucGreen; };
  51.     BYTE      GetBlue()  const { return m_ucBlue;  };
  52.     BYTE      GetAlpha() const { return m_ucAlpha; };
  53.     void      SetRed(BYTE ucRed)     { m_ucRed   = ucRed;   };
  54.     void      SetGreen(BYTE ucGreen) { m_ucGreen = ucGreen; };
  55.     void      SetBlue(BYTE ucBlue)   { m_ucBlue  = ucBlue;  };
  56.     void      SetAlpha(BYTE ucAlpha) { m_ucAlpha = ucAlpha; };
  57.     void      Set(BYTE ucR, BYTE ucG, BYTE ucB, BYTE ucA = 0);
  58.     void      Set(UINT32 ulColor);
  59.     void      Pack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer);
  60.     void      UnPack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer);
  61.     HX_RESULT InitFromString(const char *pszStr);
  62. private:
  63.     BYTE m_ucRed;
  64.     BYTE m_ucGreen;
  65.     BYTE m_ucBlue;
  66.     BYTE m_ucAlpha;
  67.     enum {kNumPredefinedColors = 16};
  68.     static const UINT32      m_pulPredefinedColor[kNumPredefinedColors];
  69.     static const char* const m_ppPredefinedColorName[kNumPredefinedColors];
  70. };
  71. inline void PXColor::Set(BYTE ucR, BYTE ucG, BYTE ucB, BYTE ucA)
  72. {
  73.     m_ucRed   = ucR;
  74.     m_ucGreen = ucG;
  75.     m_ucBlue  = ucB;
  76.     m_ucAlpha = ucA;
  77. };
  78. inline PXColor::PXColor()
  79. {
  80.     Set(0, 0, 0, 0);
  81. };
  82. inline PXColor::PXColor(const PXColor &rColor)
  83. {
  84.     m_ucRed   = rColor.m_ucRed;
  85.     m_ucGreen = rColor.m_ucGreen;
  86.     m_ucBlue  = rColor.m_ucBlue;
  87.     m_ucAlpha = rColor.m_ucAlpha;
  88. };
  89. inline PXColor::PXColor(BYTE ucR, BYTE ucG, BYTE ucB, BYTE ucA)
  90. {
  91.     Set(ucR, ucG, ucB, ucA);
  92. };
  93. inline const PXColor& PXColor::operator= (const PXColor& rColor)
  94. {
  95.     m_ucRed   = rColor.m_ucRed;
  96.     m_ucGreen = rColor.m_ucGreen;
  97.     m_ucBlue  = rColor.m_ucBlue;
  98.     m_ucAlpha = rColor.m_ucAlpha;
  99.     return *this;
  100. };
  101. inline BOOL PXColor::operator== (const PXColor& rColor) const
  102. {
  103.     BOOL bRet = TRUE;
  104.     if (m_ucRed   != rColor.m_ucRed   ||
  105.         m_ucGreen != rColor.m_ucGreen ||
  106.         m_ucBlue  != rColor.m_ucBlue  ||
  107.         m_ucAlpha != rColor.m_ucAlpha)
  108.     {
  109.         bRet = FALSE;
  110.     }
  111.     return bRet;
  112. }
  113. inline BOOL PXColor::operator!= (const PXColor& rColor) const
  114. {
  115.     BOOL bRet = FALSE;
  116.     if (m_ucRed   != rColor.m_ucRed   ||
  117.         m_ucGreen != rColor.m_ucGreen ||
  118.         m_ucBlue  != rColor.m_ucBlue  ||
  119.         m_ucAlpha != rColor.m_ucAlpha)
  120.     {
  121.         bRet = TRUE;
  122.     }
  123.     return bRet;
  124. }
  125. inline void PXColor::Set(UINT32 ulColor)
  126. {
  127.     m_ucRed   = (BYTE) ((ulColor >> 16) && 0x000000FF);
  128.     m_ucGreen = (BYTE) ((ulColor >>  8) && 0x000000FF);
  129.     m_ucBlue  = (BYTE) ( ulColor        && 0x000000FF);
  130.     m_ucAlpha = (BYTE) ((ulColor >> 24) && 0x000000FF);
  131. }
  132. #endif