pxcolor.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: pxcolor.cpp,v 1.3.16.1 2004/07/09 01:54:47 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. // include
  50. #include "hxtypes.h"
  51. #include "hxcom.h"
  52. #include "hxresult.h"
  53. #include "ihxpckts.h"
  54. // hxcont
  55. #include "hxbuffer.h"
  56. #include "hxstring.h"
  57. // hxmisc
  58. #include "unkimp.h"
  59. #include "baseobj.h"
  60. // pxcomlib
  61. #include "gstring.h"
  62. #include "pxutil.h"
  63. #include "pxcolor.h"
  64. // hxdebug
  65. #include "hxheap.h"
  66. #ifdef _DEBUG
  67. #undef HX_THIS_FILE
  68. static char HX_THIS_FILE[] = __FILE__;
  69. #endif
  70. BEGIN_INTERFACE_LIST(PXColor)
  71. END_INTERFACE_LIST
  72. const UINT32 PXColor::m_pulPredefinedColor[kNumPredefinedColors] =
  73. {
  74.     0x000000,  0x008000, 0xC0C0C0, 0x00FF00, 0x808080, 0x808000, 0xFFFFFF, 0xFFFF00,
  75.     0x800000,  0x000080, 0xFF0000, 0x0000FF, 0x800080, 0x008080, 0xFF00FF, 0x00FFFF
  76. };
  77. const char* const PXColor::m_ppPredefinedColorName[kNumPredefinedColors] =
  78. {
  79.     "black",  "green", "silver", "lime", "gray",   "olive", "white",   "yellow",
  80.     "maroon", "navy",  "red",    "blue", "purple", "teal",  "fuchsia", "aqua"
  81. };
  82. void PXColor::Pack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  83. {
  84.     pBuffer[0] = m_ucRed;
  85.     pBuffer[1] = m_ucGreen;
  86.     pBuffer[2] = m_ucBlue;
  87.     pBuffer[3] = m_ucAlpha;
  88.     pBuffer   += 4;
  89. }
  90. void PXColor::UnPack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  91. {
  92.     m_ucRed   = pBuffer[0];
  93.     m_ucGreen = pBuffer[1];
  94.     m_ucBlue  = pBuffer[2];
  95.     m_ucAlpha = pBuffer[3];
  96.     pBuffer  += 4;
  97. }
  98. HX_RESULT PXColor::InitFromString(const char *pszStr)
  99. {
  100.     // Try the "#rrggbb" format first
  101.     UINT32 ulRed, ulGreen, ulBlue;
  102.     INT32  lNumRet = sscanf(pszStr, "#%02X%02X%02X", &ulRed, &ulGreen, &ulBlue);
  103.     if (lNumRet != 3)
  104.     {
  105.         // Try the "#rrggbb" format without the "#"
  106.         lNumRet = sscanf(pszStr, "%02X%02X%02X", &ulRed, &ulGreen, &ulBlue);
  107.     }
  108.     if (lNumRet == 3)
  109.     {
  110.         // Check to make sure the values are in range
  111.         if (ulRed > 255 || ulGreen > 255 || ulBlue > 255)
  112.         {
  113.             return HXR_FAIL;
  114.         }
  115.         // Assign the values
  116.         m_ucRed   = (BYTE) ulRed;
  117.         m_ucGreen = (BYTE) ulGreen;
  118.         m_ucBlue  = (BYTE) ulBlue;
  119.     }
  120.     else
  121.     {
  122.         // String is not in the "#rrggbb" or "rrggbb" format, so try one of the predefined colors
  123.         UINT32 i;
  124.         for (i = 0; i < kNumPredefinedColors; i++)
  125.         {
  126.             if (!strcmp(pszStr, m_ppPredefinedColorName[i]))
  127.             {
  128.                 // We found a match
  129.                 break;
  130.             }
  131.         }
  132.         if (i >= kNumPredefinedColors)
  133.         {
  134.             // We didn't find a match
  135.             return HXR_FAIL;
  136.         }
  137.         UINT32 ulColor = m_pulPredefinedColor[i];
  138.         m_ucRed        = (unsigned char) ((ulColor >> 16) & 0x000000FF);
  139.         m_ucGreen      = (unsigned char) ((ulColor >>  8) & 0x000000FF);
  140.         m_ucBlue       = (unsigned char) ( ulColor        & 0x000000FF);
  141.     }
  142.     return HXR_OK;
  143. }