pxcolor.cpp
上传用户: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. // include
  36. #include "hxtypes.h"
  37. #include "hxcom.h"
  38. #include "hxresult.h"
  39. #include "ihxpckts.h"
  40. // hxcont
  41. #include "hxbuffer.h"
  42. #include "hxstring.h"
  43. // hxmisc
  44. #include "unkimp.h"
  45. #include "baseobj.h"
  46. // pxcomlib
  47. #include "gstring.h"
  48. #include "pxutil.h"
  49. #include "pxcolor.h"
  50. // hxdebug
  51. #include "hxheap.h"
  52. #ifdef _DEBUG
  53. #undef HX_THIS_FILE
  54. static char HX_THIS_FILE[] = __FILE__;
  55. #endif
  56. BEGIN_INTERFACE_LIST(PXColor)
  57. END_INTERFACE_LIST
  58. const UINT32 PXColor::m_pulPredefinedColor[kNumPredefinedColors] =
  59. {
  60.     0x000000,  0x008000, 0xC0C0C0, 0x00FF00, 0x808080, 0x808000, 0xFFFFFF, 0xFFFF00,
  61.     0x800000,  0x000080, 0xFF0000, 0x0000FF, 0x800080, 0x008080, 0xFF00FF, 0x00FFFF
  62. };
  63. const char* const PXColor::m_ppPredefinedColorName[kNumPredefinedColors] =
  64. {
  65.     "black",  "green", "silver", "lime", "gray",   "olive", "white",   "yellow",
  66.     "maroon", "navy",  "red",    "blue", "purple", "teal",  "fuchsia", "aqua"
  67. };
  68. void PXColor::Pack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  69. {
  70.     pBuffer[0] = m_ucRed;
  71.     pBuffer[1] = m_ucGreen;
  72.     pBuffer[2] = m_ucBlue;
  73.     pBuffer[3] = m_ucAlpha;
  74.     pBuffer   += 4;
  75. }
  76. void PXColor::UnPack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  77. {
  78.     m_ucRed   = pBuffer[0];
  79.     m_ucGreen = pBuffer[1];
  80.     m_ucBlue  = pBuffer[2];
  81.     m_ucAlpha = pBuffer[3];
  82.     pBuffer  += 4;
  83. }
  84. HX_RESULT PXColor::InitFromString(const char *pszStr)
  85. {
  86.     // Try the "#rrggbb" format first
  87.     UINT32 ulRed, ulGreen, ulBlue;
  88.     INT32  lNumRet = sscanf(pszStr, "#%02X%02X%02X", &ulRed, &ulGreen, &ulBlue);
  89.     if (lNumRet != 3)
  90.     {
  91.         // Try the "#rrggbb" format without the "#"
  92.         lNumRet = sscanf(pszStr, "%02X%02X%02X", &ulRed, &ulGreen, &ulBlue);
  93.     }
  94.     if (lNumRet == 3)
  95.     {
  96.         // Check to make sure the values are in range
  97.         if (ulRed > 255 || ulGreen > 255 || ulBlue > 255)
  98.         {
  99.             return HXR_FAIL;
  100.         }
  101.         // Assign the values
  102.         m_ucRed   = (BYTE) ulRed;
  103.         m_ucGreen = (BYTE) ulGreen;
  104.         m_ucBlue  = (BYTE) ulBlue;
  105.     }
  106.     else
  107.     {
  108.         // String is not in the "#rrggbb" or "rrggbb" format, so try one of the predefined colors
  109.         UINT32 i;
  110.         for (i = 0; i < kNumPredefinedColors; i++)
  111.         {
  112.             if (!strcmp(pszStr, m_ppPredefinedColorName[i]))
  113.             {
  114.                 // We found a match
  115.                 break;
  116.             }
  117.         }
  118.         if (i >= kNumPredefinedColors)
  119.         {
  120.             // We didn't find a match
  121.             return HXR_FAIL;
  122.         }
  123.         UINT32 ulColor = m_pulPredefinedColor[i];
  124.         m_ucRed        = (unsigned char) ((ulColor >> 16) & 0x000000FF);
  125.         m_ucGreen      = (unsigned char) ((ulColor >>  8) & 0x000000FF);
  126.         m_ucBlue       = (unsigned char) ( ulColor        & 0x000000FF);
  127.     }
  128.     return HXR_OK;
  129. }