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

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 _MINISITE_H_
  36. #define _MINISITE_H_
  37. #include "hxcom.h"
  38. #include "hxtypes.h"
  39. #include "hxwintyp.h"
  40. #include "hxwin.h"
  41. #include "hxsite2.h"
  42. #include "hxevent.h"
  43. #include "hxccf.h"
  44. #include "chxpckts.h"
  45. #include "hxslist.h"
  46. #include "baseobj.h"
  47. #ifdef HELIX_FEATURE_SMIL_SITE
  48. #include "region.h"
  49. #endif
  50. #include "hxengin.h"
  51. /****************************************************************************
  52.  * 
  53.  *  Class:
  54.  *
  55.  *      NonDelegatingUnknown
  56.  *
  57.  *  Purpose:
  58.  *
  59.  *      Same signature as IUnknown, allows an object to implement 
  60.  *      aggregation.
  61.  *
  62.  */
  63. class CHXHeader;
  64. class CMiniBaseSurface;
  65. class CMiniBaseSite : public IHXSite,
  66. #if defined (HELIX_FEATURE_SMIL_SITE)                      
  67.                       public IHXSite2,
  68.                       public IHXCallback,
  69.                       public IHXSiteControl,
  70. #endif //HELIX_FEATURE_SMIL_SITE
  71.                       public IHXSiteWindowed,
  72.                       public CHXBaseCountingObject
  73. {
  74. public:
  75.     static CMiniBaseSite* CreateSite(IUnknown* pContext,
  76.                                      IUnknown* pUnkOuter = NULL,
  77.                                      INT32 lZorder = 0);
  78.     /*
  79.      * IUnknown
  80.      */
  81.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj);
  82.     STDMETHOD_(ULONG32,AddRef) (THIS);
  83.     STDMETHOD_(ULONG32,Release) (THIS);
  84.     /*
  85.      * IHXSiteWindowed
  86.      */
  87.     STDMETHOD(AttachWindow) (THIS_ HXxWindow* /*IN*/ pWindow);
  88.     STDMETHOD(DetachWindow) (THIS);
  89.     STDMETHOD(Create) (THIS_ void* ParentWindow, UINT32 style);
  90.     STDMETHOD(Destroy) (THIS);
  91.     STDMETHOD_(HXxWindow*,GetWindow)(THIS);
  92.     /*
  93.      * IHXSite methods
  94.      */
  95.     STDMETHOD(AttachUser) (THIS_ IHXSiteUser*   /*IN*/  pUser);
  96.     STDMETHOD(DetachUser) (THIS);
  97.     STDMETHOD(GetUser) (THIS_ REF(IHXSiteUser*) /*OUT*/ pUser);
  98.     STDMETHOD(CreateChild) (THIS_ REF(IHXSite*)  /*OUT*/ pChildSite);
  99.     STDMETHOD(DestroyChild) (THIS_ IHXSite*       /*IN*/  pChildSite);
  100.     STDMETHOD(AttachWatcher) (THIS_ IHXSiteWatcher* /*IN*/ pWatcher);
  101.     STDMETHOD(DetachWatcher) (THIS);
  102.     STDMETHOD(SetPosition) (THIS_ HXxPoint position);
  103.     STDMETHOD(GetPosition) (THIS_ REF(HXxPoint) position);
  104.     STDMETHOD(SetSize) (THIS_ HXxSize size);
  105.     STDMETHOD(GetSize) (THIS_ REF(HXxSize) size);
  106.     STDMETHOD(DamageRect) (THIS_ HXxRect rect);
  107.     STDMETHOD(DamageRegion) (THIS_ HXxRegion region);
  108.     STDMETHOD(ForceRedraw) (THIS);
  109. #if defined (HELIX_FEATURE_SMIL_SITE)
  110.     /*
  111.      * IHXSiteControl
  112.      */
  113.     STDMETHOD(ForceRedrawAll) (THIS_ );
  114.     /*
  115.      * IHXSite2 methods
  116.      */
  117.     STDMETHOD(UpdateSiteWindow) (THIS_ HXxWindow* /*IN*/ pWindow);
  118.     STDMETHOD(ShowSite) (THIS_ BOOL    bShow);
  119.     STDMETHOD_(BOOL, IsSiteVisible) (THIS);
  120.     STDMETHOD(MoveSiteToTop) (THIS);
  121.     STDMETHOD(GetVideoSurface) (THIS_ REF(IHXVideoSurface*) pSurface);
  122.     STDMETHOD(AddPassiveSiteWatcher) (THIS_ IHXPassiveSiteWatcher* pWatcher);
  123.     STDMETHOD(RemovePassiveSiteWatcher) (THIS_ IHXPassiveSiteWatcher* pWatcher);
  124.     STDMETHOD(SetCursor) (THIS_ HXxCursor cursor, REF(HXxCursor) oldCursor);
  125.     inline void SetTopLevelSite(CMiniBaseSite* pTop)
  126.     {
  127.         m_pTopLevelSite = pTop;
  128.     }
  129.     inline void SetOrigin(HXxPoint* pOrigin)
  130.     {
  131.         memcpy(&m_topleft, pOrigin, sizeof(HXxPoint));  /* Flawfinder: ignore */
  132.     }
  133.     inline HXxPoint* GetOrigin()
  134.     {
  135.         return &m_topleft;
  136.     }
  137.     inline void SetParentSite(CMiniBaseSite* pParent)
  138.     {
  139.         m_pParentSite = pParent;
  140.     }
  141.     inline void SetParentWindow(HXxWindow* pWindow)
  142.     {
  143.         memcpy(&m_TopLevelWindow, pWindow, sizeof(HXxWindow) );  /* Flawfinder: ignore */
  144.     }
  145.     inline STDMETHOD_(UINT32,GetNumberOfChildSites) (THIS)
  146.     {
  147.         return (UINT32)m_ChildrenInZOrder.GetCount();
  148.     }
  149.     inline void SetInternalZOrder(INT32 lZOrder)
  150.     {
  151.         m_lZOrder = lZOrder;
  152.     }
  153.     inline HXREGION* GetRegion()
  154.     {
  155.         return m_Region;
  156.     }
  157.     
  158.     inline STDMETHOD(GetZOrder)(THIS_ REF(INT32) lZOrder )
  159.     {
  160.         lZOrder = m_lZOrder;
  161.         return HXR_OK;
  162.     }
  163.     STDMETHOD(SetZOrder) (THIS_ INT32 lZOrder);
  164. #endif //HELIX_FEATURE_SMIL_SITE
  165.     
  166.     /*
  167.      * Internal methods
  168.      */
  169.     CMiniBaseSite(IUnknown* pContext,
  170.                   IUnknown* pUnkOuter = NULL,
  171.                   INT32 lZorder = 0);
  172.     
  173.     virtual ~CMiniBaseSite();
  174. protected:
  175.     BOOL _CheckForVisibleChild();
  176. #ifdef HELIX_FEATURE_SMIL_SITE
  177.     typedef enum _callback_type
  178.     {
  179.         REPAINT    = 1<<0,
  180.         CLIP       = 1<<1,
  181.         MOUSE      = 1<<2,  
  182.         REDRAW_ALL = 1<<3,
  183.         MOVE       = 1<<4
  184.     } CALLBACK_TYPE;
  185.     
  186.     void BuildParnetClipping( HXREGION* hClip, CMiniBaseSite* pChild );
  187.     void UpdateZOrder( CMiniBaseSite* pUpdatedChildSite, INT32 lNewZOrder);
  188.     void RecomputeClip();
  189.     BOOL ComputeSubRects();
  190.     void ScheduleCallback( CALLBACK_TYPE  nWhichCallback,
  191.                            INT32 nMilliseconds );
  192.     void _ForceRedrawAll();
  193.     STDMETHOD(Func)(THIS_ void);
  194.     void ResetOrigin();
  195.     void GetAbsoluteCords(REF(HXxPoint) point);
  196. #endif
  197.     
  198.     /*
  199.      *  OS Specific Functions
  200.      */
  201.     virtual void*       _Create(void* ParentWindow, UINT32 style) = 0;
  202.     virtual void        _Destroy(HXxWindow* pWindow) = 0;
  203.     virtual void        _SetSize(HXxSize size) = 0;
  204.     virtual void        _ChildCreated(void) {};
  205.     virtual void        _SetPosition(HXxPoint position) = 0;
  206.     //Give the platforms a chance to do OS specific setup.
  207.     virtual void        _AttachWindow(){};
  208.     virtual void        _DetachWindow(){};
  209.     //This returns the OS specific window handle, as void*, that the
  210.     //pointer is currently in.
  211.     virtual BOOL        _MoveWindow(void* ,
  212.                                     INT32 X, INT32 Y,
  213.                                     INT32 nWidth, INT32 nHeight,
  214.                                     BOOL bRepaint) = 0;
  215.     
  216.     IUnknown*                   m_pContext;
  217.     IHXCommonClassFactory*      m_pCCF;
  218.     IHXSiteUser*                m_pUser;
  219.     IHXSiteWatcher*             m_pWatcher;
  220.     IHXValues*                  m_pValues;
  221.     CMiniBaseSurface*           m_pVideoSurface;
  222.     HXxWindow*                  m_pWindow;
  223.     HXxSize                     m_size;
  224.     HXxPoint                    m_position;
  225.     LONG32                      m_lRefCount;
  226.     INT32                       m_lZOrder;
  227.     
  228. #if defined (HELIX_FEATURE_SMIL_SITE)    
  229.     CMiniBaseSite* m_pTopLevelSite;
  230.     CHXSimpleList  m_ChildrenInZOrder;
  231.     HXxPoint       m_topleft;
  232.     CMiniBaseSite* m_pParentSite;
  233.     HXxWindow      m_TopLevelWindow;
  234.     HXREGION*      m_Region;
  235.     HXREGION*      m_RegionWithoutChildren;
  236.     BOOL           m_bIsVisible;
  237.     CallbackHandle m_CallbackHandle;
  238.     IHXScheduler*  m_pScheduler;
  239.     UINT32         m_bfCallBacks;
  240.     UINT32         m_ulCallbackTime;
  241.     CHXSimpleList  m_PassiveSiteWatchers;
  242. #endif
  243.     BOOL m_bWindowCreatedByCreate;
  244. };
  245. #endif //_MINISITE_H_