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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: winsite.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. /****************************************************************************
  50.  *  $Id: winsite.h,v 1.1.1.1.42.1 2004/07/09 01:58:48 hubbe Exp $
  51.  */
  52. #ifndef _WINSITE_H_
  53. #define _WINSITE_H_
  54. #include "hxslist.h"
  55. #include "hxmap.h"
  56. #include "chxpckts.h"
  57. #include "hxwin.h"
  58. #include "hxsite2.h"
  59. #include "hxcomm.h"
  60. #include "hxengin.h"
  61. #include "winroot.h"
  62. #include "basesite.h"
  63. #include "winsurf.h"
  64. class  CHXWinSite;
  65. class  CHXWinFullScreenWindow;
  66. class  ColorFuncAccess;
  67. LRESULT HXEXPORT HXxWinHookSiteProc(HWND hWnd, UINT message, WPARAM uParam, LPARAM lParam);
  68. LRESULT HXEXPORT HXxWinHookChar(int nCode,WPARAM wParam,LPARAM lParam);
  69. LRESULT HXEXPORT HXxWinHookAllMessages(int nCode,WPARAM wParam,LPARAM lParam);
  70. /*
  71. *  reasons to schedule call backs.
  72. */
  73. #define REPAINT 0
  74. #define CLIP    1
  75. #define MOUSE   2
  76. struct CParentWindowThreadData
  77. {
  78.     HHOOK     m_hHook;
  79.     HHOOK     m_hHookAllMessage;
  80.     CHXSimpleList   m_ListOfTopLevelSites;
  81. };
  82. /****************************************************************************
  83. *  Class:
  84. *
  85. *       CHXWinSite
  86. *
  87. *  Purpose:
  88. *
  89. *       Implementation for IHXSite objects which are associated with
  90. *       platform specific window objects on Microsoft Windows and X-Windows.
  91. *
  92. */
  93. class CHXWinSite : public CHXBaseSite
  94. {
  95.         friend class    CWinRootSurface;
  96.         
  97. public:
  98.     CHXWinSite(IUnknown* pContext, IUnknown* pUnkOuter = NULL, INT32 lZorder = 0);
  99.         
  100.     static CHXMapPtrToPtr   zm_ParentWnds;
  101.     static CHXMapPtrToPtr   zm_ParentsThreadList;
  102.     static CHXMapPtrToPtr   zm_SubclassedWnds;
  103.     static CHXMapPtrToPtr   zm_ScrollBarWnds;
  104.     static CHXMapPtrToPtr   zm_ListOfHiddenWindows;
  105.     static char*     zm_pszWindowClassName;
  106.     static char*     zm_pszWindowName;
  107.     static INT32     zm_nInstanceCount;
  108.     WNDPROC     m_oldWndProc;
  109.     void    ReHookParents();
  110.     void    HookParents();
  111.         
  112.     void    HandleParentMessages(HWND hWnd,UINT message,WPARAM uParam,LPARAM lParam);
  113.     BOOL    HandleWndProc(HWND hWnd,UINT message,WPARAM uParam,LPARAM lParam, LRESULT& lResult);
  114.         
  115. private:
  116.                 
  117.     UINT32                  m_ulSiteThreadID;
  118.         
  119. protected:
  120.     virtual     ~CHXWinSite();
  121.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  122.     void        UnHookParents();
  123.     void        RegisterClass();
  124.     void        UnRegisterClass(); 
  125.         
  126.     void        _SizeSliders();
  127.         
  128.         virtual void        _NeedWindowedSite();
  129.         virtual void        _AttachWindow();
  130.         virtual void        _DetachWindow();
  131.         virtual void*       _Create(void* ParentWindow, UINT32 style);
  132.         virtual void        _Destroy(HXxWindow* pWindow);
  133.         virtual void        _SetSize(HXxSize size);
  134.         virtual void        _SetPosition(HXxPoint position);
  135.         virtual void        _DamageRect(HXxRect rect);
  136.         virtual void        _DamageRegion(HXxRegion rect);
  137.         virtual BOOL        _ShouldEnterForceRedraw();
  138.         virtual void        _ExitForceRedraw();
  139.         virtual void        _SendOSUpdateMessage();
  140.         virtual void        _ShowSite(BOOL bShow);
  141.         virtual BOOL        _AtSystemTime();
  142.         virtual HX_RESULT   _EventOccurred(HXxEvent* /*IN*/ pEvent);
  143.         virtual void        _GetDeviceCaps( void* hdc,
  144.                                                                                 UINT16& uBitesPerPixel,
  145.                                                                                 UINT16& uHorzRes,
  146.                                                                                 UINT16& uVertRes);
  147.         virtual void        _GetWindowRect(HXxRect* destRect);
  148.         virtual void        _DestroySliders();
  149.         virtual BOOL        _HandleOSEvents(HXxEvent* /*IN*/ pEvent);
  150.         virtual BOOL        _ConvertToHXEvent( HXxEvent* pEvent );
  151.         virtual void        _GenerateOSEvent(HXxEvent* pEvent, HXxEvent* pEvent2);
  152.         virtual void        _GenerateSetCursorEvent();
  153.         virtual HX_RESULT   _EnterFullScreen();
  154.         virtual HX_RESULT   _ExitFullScreen();
  155.         virtual HX_RESULT   _TestFullScreen(void* hTestBitmap,
  156.                                                                                 const char* pszStatusText);
  157.         virtual void _TryCreateXSlider();
  158.         virtual void _SetXSliderValues(INT32 range, INT32 pageSize);
  159.         virtual void _TryCreateYSlider();
  160.         virtual void _SetYSliderValues(INT32 range, INT32 pageSize);
  161.         virtual void _GetSystemSizeOfSliders(INT32* pWidth, INT32* pHeight);
  162.         virtual BOOL _IsWindowVisible();
  163.         virtual void _ShowXSlider(BOOL bShow);
  164.         virtual void _MoveXSlider(INT32 left, INT32 top,
  165.                                                                 INT32 right, INT32 bottom,
  166.                                                                 BOOL bRedraw);
  167.         virtual void _ShowYSlider(BOOL bShow);
  168.         virtual void _MoveYSlider(INT32 left, INT32 top,
  169.                                                                 INT32 right, INT32 bottom,
  170.                                                                 BOOL bRedraw);
  171.         virtual BOOL _DoesXSliderExist();
  172.         virtual void*_GetContainingWindow(); // XXXAH void*? Not HXxWindow??
  173.         virtual void _GetCursorPos(HXxPoint* pPoint);
  174.         virtual void _MapPointToOSWindow(HXxPoint* pPt, void** pWindowHandle);
  175.         
  176.         //This returns the OS specific window handle, as void*, that the
  177.         //pointer is currently in.
  178.         virtual void* _GetWindowWithCursor();
  179.         virtual void  _ReInitPrimarySurface(); // XXXAH may want to move this to root.
  180.         
  181.         virtual BOOL  _MoveWindow( void* ,
  182.                                                                 INT32 X, INT32 Y,
  183.                                                                 INT32 nWidth, INT32 nHeight,
  184.                                                                 BOOL bRepaint);
  185.         virtual BOOL  _UpdateWindow(void* hWnd);
  186.         virtual BOOL  _ShowWindow(void* hWnd, INT32 nCmdShow);
  187.         virtual BOOL  _SetWindowPos(void* hWnd,
  188.                                                                 void* hWndInsertAfter,
  189.                                                                 INT32 X, INT32 Y,
  190.                                                                 INT32 cx, INT32 cy,
  191.                                                                 INT32 uFlags);
  192.         int _CreateXSlider(int range);
  193.         int _CreateYSlider(int range);
  194.         
  195.         // this is going to be a nice one.
  196.         virtual BOOL _SetWindowRgn(void* hWnd, HXREGION* hRgn, BOOL bRedraw);
  197.         // XXXAH it would be nice to get the return value here
  198.         virtual void _SetFocus(void* pWindow);
  199.         virtual void _DrawFocusRect(UCHAR* pImage,
  200.                                     HXBitmapInfoHeader* pImageInfo,
  201.                                     HXxRect* pImageSize,
  202.                                     void* pOsSpecificData=NULL);
  203.     /*
  204.      * crap from windowless
  205.      */
  206. public:
  207.         /*
  208.      *  SetCapture Support
  209.      */
  210.     void SetCaptureMessage(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  211.     void CheckCapture();
  212.     /*
  213.      *  Supporting windowed renderers
  214.      */
  215.     HXxWindow* GetTopLevelWindow() {return &(m_pTopLevelSite->m_TopLevelWindow);}
  216. //    void DrawAllSites();
  217.         HX_RESULT InternalTestFullScreen(LPVOID hTestBitmap,const char* pszStatusText);
  218.         HX_RESULT TestMode(const char* pszModeDescription, void* hTestBitmap, const char* pszText);
  219.         int TestFullScreenPerformance(void* hTestBitmap, const char* pszText);
  220.         // Windowless stuff
  221.     CRITICAL_SECTION            m_CriticalSection;
  222. protected:
  223.     /*
  224.      *  Slider Support
  225.      */
  226.     HWND                    m_hXSlider;
  227.     HWND                    m_hYSlider;
  228. private:
  229.     HWND                        m_windowParent;
  230.     CHXWinFullScreenWindow*     m_pContainingWindow;
  231. };
  232. class CHXWinFullScreenWindow
  233. {
  234. public:
  235.     void        RegisterClass();
  236.     void        UnRegisterClass();
  237.     HX_RESULT   Create();
  238.     HX_RESULT   Destroy();
  239.     HX_RESULT   Show();
  240.     HX_RESULT   Hide();
  241.     BOOL        IsVisible() {return m_bIsVisible;}
  242.     static LRESULT HXEXPORT WindowProc(HWND hWnd,UINT message,WPARAM uParam,LPARAM lParam);
  243.         
  244.     CHXWinFullScreenWindow(CHXWinSite* pSite);
  245.     ~CHXWinFullScreenWindow();
  246.     HWND GetWindow() {return m_hWnd;}
  247.     void ForceExitFullScreen(UINT message, WPARAM  wParam, LPARAM  lParam);
  248.         
  249. private:
  250.     HWND                m_hWnd;
  251.     HWND                m_hOldFocus;
  252.     HWND                m_hOldForegroudWindow;
  253.     CHXWinSite*         m_pWindowless;
  254.     static UINT32       zm_nInstanceCount; 
  255.     static char*        zm_pszWindowClassName;
  256.     static char*        zm_pszWindowName;
  257.     static BOOL         zm_bHideFullScreenWindow;
  258.     BOOL                m_bIsVisible;
  259. };
  260. #endif /* _WINSITE_H_ */