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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: winroot.h,v 1.1.1.1.42.1 2004/07/09 01:58:48 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. #ifndef _WINROOT_H_
  50. #define _WINROOT_H_
  51. #include "hxthread.h"
  52. #include "baseroot.h"
  53. #include "hxvctrl.h"
  54. #include "ddraw.h"
  55. #include "hxcolor.h"
  56. #include "windraw2.h"
  57. #include "hxstring.h"
  58. #include "hxwintyp.h"
  59. #include "hxmap.h"
  60. #include "coloracc.h"
  61. #include "ddhlpr.h"
  62. // Forward declarations
  63. //class CRootSurface;
  64. class CHXWinSite;
  65. typedef HRESULT (*PDRAWCREATE) (IID *,LPDIRECTDRAW *,LPUNKNOWN);
  66. typedef HRESULT (*PDRAWENUM) (LPDDENUMCALLBACKA, LPVOID);
  67. class COverlay
  68. {
  69. private:
  70.     int     m_nCID;     
  71.     int     m_nAlpha;
  72.     WINDRAW*     m_pWindraw;
  73.     WINDRAWSURFACE  m_backgroundSurface;
  74.     WINDRAWSURFACE  m_overlaySurface;
  75.     HXxRect     m_destRect;
  76.     HXxRect     m_srcRect;
  77.     HXxRect     m_backgroundSrcRect;
  78.     HXxSize     m_allocSize;
  79. public:
  80.     COverlay(WINDRAW* pWindraw);
  81.     ~COverlay();
  82.     void CreateOverlay(REF(HXxSize) size, int nCID);
  83.     void SetSrcRect(REF(HXxRect) rect);
  84.     void SetAlpha(int nAlpha);
  85.     void SetDestRect(REF(HXxRect) rect, WINDRAWSURFACE* pDestSurface);
  86.     void DrawOverlay(WINDRAWSURFACE* pDestSurface);
  87.     void RemoveOverlay(WINDRAWSURFACE* pDestSurface);
  88.     void UpdateOverlay(HXxRect* pRect, WINDRAWSURFACE* pSrcSurface);
  89.     void GetSize(REF(HXxSize) size);
  90.     void GetDC(HDC* phDC);
  91.     UCHAR* LockOverlay();
  92.     void UnlockOverlay();
  93.     UCHAR* GetAlpha();
  94.     int  GetCID();
  95.     void ReleaseDC(HDC hDC);
  96. };
  97. class COverlayMgr
  98. {
  99. private:
  100.     CHXMapStringToOb m_overlayMap;
  101. public:
  102.     COverlayMgr();
  103.     ~COverlayMgr();
  104.     BOOL GetOverlay(const char* pName, COverlay** pOverlay);
  105.     void AddOverlay(const char* pName, COverlay* pOverlay);
  106.     void RemoveOverlay(const char* pName, WINDRAWSURFACE* pDestSurface);
  107.     void UpdateOverlays(HXxRect* pRect, WINDRAWSURFACE* pSrcSurface);
  108.     void RemoveAll();
  109. };
  110. class CWinBaseRootSurface : public CBaseRootSurface
  111. {
  112. protected:
  113.     virtual ~CWinBaseRootSurface();
  114.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  115.     CRITICAL_SECTION m_CriticalSection;
  116.     WINDRAW         m_windraw;
  117.     WINDRAW         m_windrawCaps;
  118.     WINDRAWSURFACE  m_compositionSurface;
  119.     BOOL            m_bWindrawOpened;
  120.     BOOL            m_bWindrawCapsOpened;
  121.     BOOL            m_bBltLock;
  122.     UCHAR*          m_pScratchSurface;
  123.     int             m_nScratchSurfaceCID;
  124.     BOOL            m_bScratchSurfaceCreated;
  125.     HXxSize         m_scratchSize;
  126.     BOOL            m_bShowingText;
  127.     HBRUSH          m_hBrush;
  128.     HPEN            m_hPen;
  129.     COLORREF        m_textColor;
  130.     COLORREF        m_nTextBackgroundColor;
  131.     CHXString       m_sStatusText;
  132.     HFONT     m_hFont;
  133.     HFONT     m_hOldFont;
  134.     HWND            m_hLastClipper;
  135.     IHXErrorMessages*  m_pErrMsg;
  136.     void     SelectFont(HDC hdc);
  137.     void     UnSelectFont(HDC hDC);
  138.     void     CreateTextAlpha(COverlay* pOverlay);
  139. public:
  140.     UINT32 GetSurfaceType() {return m_fSurfaceType;}
  141. protected:
  142. #define _WORKAROUND_YUV_RGB_16BIT_HXCOLOR_BUG    1
  143. //#ifdef _WORKAROUND_YUV_RGB_16BIT_HXCOLOR_BUG
  144.     WINDRAWSURFACE m_scratchSurface;
  145.     int     m_nScratchPitch;
  146.     HX_RESULT CreateScratchSurface(int nCompositionSurfaceCID, HXxSize* pSize);
  147.     HX_RESULT DestroyScratchSurface();
  148.     HX_RESULT ScratchUnLock();
  149.     HX_RESULT ScratchLock();
  150. //#endif /*_WORKAROUND_YUV_RGB_16BIT_HXCOLOR_BUG*/
  151.     COverlayMgr m_overlayMgr;
  152.     UCHAR*     m_pYUVScratchBits;
  153.     BITMAPINFO m_YUVScratchbmi;
  154.     INT32     m_nYUVPitch;
  155. public:
  156.     
  157.     CWinBaseRootSurface(IUnknown* pContext, CHXBaseSite* pSite);
  158. void     PrepareFullScreen();
  159. void     _FillBorders();
  160. void     SetFullScreen();
  161. void     PrepareExitFullScreen();
  162. // void     ExitFullScreen();
  163. #if 0    
  164.     void        DrawFocusRect(WINDRAWSURFACE* pSurface,
  165.                               int nSurfaceCID,
  166.                               HXxSize* pSurfaceSize,
  167.                               UCHAR* pVidMem,
  168.                               CHXBaseSite* pSite);
  169. #endif
  170.     void     DrawText();
  171. void     RestoreResolution();
  172. WINDRAW*    GetWinDraw() {return &m_windraw;}
  173. HX_RESULT   OpenWindraw();
  174. WINDRAWSURFACE* GetCompositionSurface() {return &m_compositionSurface;}
  175.     virtual void _GetYUVScratchWidthHeight(UINT32* pWidth, UINT32* pHeight);
  176.     virtual void _CreateYUVScratchSurface(UINT32 width, UINT32 height);
  177.     virtual void _GetYUVScratchSurfacePointer(UCHAR** pYUVBits, INT32* YUVPitch);
  178.     virtual HX_RESULT ScratchLock(UCHAR** pBits, INT32* pPitch);
  179.     virtual HX_RESULT ScratchUnlock(UCHAR* pBits);
  180.     virtual void _BltFromScratchToComposition(HXxRect& rDestRect, HXxRect& rSrcRect);
  181.     virtual HX_RESULT _DebugBlt(UCHAR*               pImageData,
  182. HXBitmapInfoHeader* pBitmapInfo,
  183. REF(HXxRect)         rDestRect,
  184. REF(HXxRect)         rSrcRect);
  185.     virtual HX_RESULT _MinimalUnlock(HXxWindow* pWindow);
  186.     virtual HX_RESULT _LockComposition(UCHAR** pBits, INT32* pPitch);
  187.     virtual HX_RESULT _CreateCompositionSurface();
  188.     virtual HX_RESULT _DestroyCompositionSurface();
  189.     virtual void      _MinimalBlt(HXxRect& src, HXxRect& dst);
  190.     virtual void      _AdjustLastAppendedRectangle(REF(CHXSimpleList) rectList);
  191.     virtual void      _PreFlightBlt(HXxRect& dst);
  192.     virtual void      GetDisplayModes(CModesDesc* pModesDesc, INT32* nNumModes);
  193.     virtual void      SetResolution(int width, int height, int depth, void*);
  194.     virtual BOOL      _OptimizedSurfaceOpened();
  195.     virtual BOOL      _IsHardwareAccelerationAvail();
  196.     virtual BOOL      _AcquireHardwareAcceleration();
  197.     virtual BOOL      _LoseHardwareAcceleration();
  198.     virtual BOOL      _EnableHardwareAcceleration();
  199.     virtual BOOL      _DisableHardwareAcceleration();
  200. };
  201. #endif