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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxmisus.h,v 1.1.1.1.50.1 2004/07/09 02:08:36 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 _HXMISUS_H_
  50. #define _HXMISUS_H_
  51. /****************************************************************************
  52.  * 
  53.  *  Class:
  54.  *
  55.  * CHXMultiInstanceSiteUserSupplier
  56.  *
  57.  *  Purpose:
  58.  *
  59.  * Implementation for IHXMultiInstanceSiteUserSupplier
  60.  *
  61.  */
  62. class CHXMultiInstanceSiteUserSupplier : 
  63. public IHXSite,
  64. public IHXSite2,
  65.         public IHXSiteEnumerator,
  66. public IHXSiteUserSupplier,
  67. public IHXMultiInstanceSiteUserSupplier,
  68. public IHXVideoSurface,
  69.         public IHXVideoSurface2,
  70. public IHXInterruptSafe
  71. {
  72. private:
  73.     LONG32     m_lRefCount;
  74.     IHXSiteUser*     m_pSingleUser;
  75.     CHXSimpleList     m_SiteUsers;
  76.     HXxSize     m_size;
  77.     HXxPoint     m_position;
  78.     INT32     m_zorder;
  79.     HX_BITFIELD     m_bIsAttached : 1;
  80.     HX_BITFIELD     m_bSetSizeHasBeenCalled : 1;
  81.     HX_BITFIELD     m_bSetPositionHasBeenCalled : 1;
  82.     HX_BITFIELD     m_bSetZOrderHasBeenCalled : 1;
  83.     HX_BITFIELD     m_bIsInterrupSafe : 1;
  84.     CHXSimpleList     m_PassiveSiteWatchers;
  85.     HXBitmapInfoHeader*    m_pSurfaceBitmapInfo;
  86.     friend class CHXMultiInstanceSiteUser;
  87.     ~CHXMultiInstanceSiteUserSupplier();
  88.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  89. public:
  90.     CHXMultiInstanceSiteUserSupplier();
  91.     HXBitmapInfoHeader* GetBitmapInfoHeader() {return m_pSurfaceBitmapInfo;}
  92.     
  93.     /*
  94.      * IUnknown methods
  95.      */
  96.     STDMETHOD(QueryInterface) (THIS_
  97. REFIID riid,
  98. void** ppvObj);
  99.     STDMETHOD_(ULONG32,AddRef) (THIS);
  100.     STDMETHOD_(ULONG32,Release) (THIS);
  101.     /*
  102.      * IHXMultiInstanceSiteUserSupplier methods called by site users.
  103.      */
  104.     STDMETHOD(SetSingleSiteUser)    (THIS_ 
  105.     IUnknown* pUnknown);
  106.     STDMETHOD(ReleaseSingleSiteUser)(THIS);
  107.     /*
  108.      * IHXSiteUserSupplier methods usually called by the 
  109.      * "context" to ask for additional or to release previously
  110.      * created site users.
  111.      */
  112.     STDMETHOD(CreateSiteUser) (THIS_
  113. REF(IHXSiteUser*)/*OUT*/ pSiteUser);
  114.     STDMETHOD(DestroySiteUser) (THIS_
  115. IHXSiteUser*   /*IN*/ pSiteUser);
  116.     STDMETHOD_(BOOL,NeedsWindowedSites) (THIS);
  117.     /*
  118.      * IHXSite methods usually called by the "context" to 
  119.      * associate users with the site, and to create child sites
  120.      * as appropriate.
  121.      */
  122.     STDMETHOD(AttachUser) (THIS_
  123. IHXSiteUser* /*IN*/ pUser);
  124.     STDMETHOD(DetachUser) (THIS);
  125.     STDMETHOD(GetUser) (THIS_
  126. REF(IHXSiteUser*) /*OUT*/ pUser);
  127.     STDMETHOD(CreateChild) (THIS_
  128. REF(IHXSite*) /*OUT*/ pChildSite);
  129.     STDMETHOD(DestroyChild) (THIS_
  130. IHXSite* /*IN*/ pChildSite);
  131.     /*
  132.      * IHXSite methods called by the the "context" in which the site
  133.      * is displayed in order to manage its position. Site users should
  134.      * not generally call these methods.
  135.      */
  136.     STDMETHOD(AttachWatcher) (THIS_
  137. IHXSiteWatcher* /*IN*/ pWatcher);
  138.     STDMETHOD(DetachWatcher) (THIS);
  139.     STDMETHOD(SetPosition) (THIS_
  140. HXxPoint position);
  141.     STDMETHOD(GetPosition) (THIS_
  142. REF(HXxPoint) position);
  143.     /*
  144.      * IHXSite methods called by the user of the site to get
  145.      * information about the site, and to manipulate the site.
  146.      */
  147.     STDMETHOD(SetSize) (THIS_
  148. HXxSize size);
  149.     STDMETHOD(GetSize) (THIS_
  150. REF(HXxSize) size);
  151.     STDMETHOD(DamageRect) (THIS_
  152. HXxRect rect);
  153.     STDMETHOD(DamageRegion) (THIS_
  154. HXxRegion region);
  155.     STDMETHOD(ForceRedraw) (THIS);
  156.     /*
  157.      * IHXSite2 methods called by the the "context" in which the site
  158.      * is displayed in order to manage its position. Site users should
  159.      * not generally call these methods.
  160.      */
  161.     STDMETHOD(UpdateSiteWindow) (THIS_
  162. HXxWindow* /*IN*/   pWindow);
  163.     STDMETHOD(ShowSite) (THIS_
  164. BOOL     bShow);
  165.                                  
  166.     STDMETHOD_(BOOL, IsSiteVisible)     (THIS);
  167.     STDMETHOD(SetZOrder) (THIS_
  168. INT32     lZOrder);
  169.     /*
  170.      * IHXSite2 methods called by the user of the site to get
  171.      * information about the site, and to manipulate the site.
  172.      */
  173.     STDMETHOD(GetZOrder) (THIS_
  174. REF(INT32)     lZOrder);
  175.     STDMETHOD(MoveSiteToTop) (THIS);
  176.     STDMETHOD(GetVideoSurface) (THIS_ 
  177. REF(IHXVideoSurface*) pSurface);
  178.     STDMETHOD_(UINT32,GetNumberOfChildSites) (THIS);
  179.     /*
  180.      * IHXSite2 methods used to add/remove passive site watchers
  181.      */
  182.     STDMETHOD(AddPassiveSiteWatcher) (THIS_
  183.      IHXPassiveSiteWatcher* pWatcher);
  184.     STDMETHOD(RemovePassiveSiteWatcher) (THIS_
  185.      IHXPassiveSiteWatcher* pWatcher);
  186.     /*
  187.      * IHXSite2 methods used to do cursor management
  188.      */
  189.     STDMETHOD(SetCursor) (THIS_
  190.      HXxCursor cursor,
  191. REF(HXxCursor) oldCursor);
  192.     /*
  193.      * IHXSiteEnumerator methods 
  194.      */
  195.     STDMETHOD(GetFirstSite) (THIS_
  196.                              REF(IHXSite*) /* OUT */ pFirstSite,
  197.                              REF(IHXSiteEnumerator::SitePosition) /* OUT */ nextPosition);
  198.     STDMETHOD(GetNextSite)  (THIS_
  199.                              REF(IHXSite*) pNextSite,
  200.                              REF(IHXSiteEnumerator::SitePosition) /* IN/OUT */ nextPosition);
  201.     /*
  202.      * IHXVideoSurface methods 
  203.      */
  204.     STDMETHOD(Blt) (THIS_
  205. UCHAR* /*IN*/ pImageBits, 
  206. HXBitmapInfoHeader*    /*IN*/ pBitmapInfo,
  207. REF(HXxRect) /*IN*/ rDestRect, 
  208. REF(HXxRect) /*IN*/ rSrcRect) ;
  209.     STDMETHOD(BeginOptimizedBlt)(THIS_ 
  210. HXBitmapInfoHeader*    /*IN*/ pBitmapInfo) ;
  211.     STDMETHOD(OptimizedBlt) (THIS_
  212. UCHAR* /*IN*/ pImageBits,
  213. REF(HXxRect) /*IN*/ rDestRect, 
  214. REF(HXxRect) /*IN*/ rSrcRect);
  215.     
  216.     STDMETHOD(EndOptimizedBlt) (THIS);
  217.     STDMETHOD(GetOptimizedFormat)(THIS_
  218. REF(HX_COMPRESSION_TYPE) /*OUT*/ ulType);
  219.     STDMETHOD(GetPreferredFormat)(THIS_
  220. REF(HX_COMPRESSION_TYPE) /*OUT*/ ulType);
  221.     /*
  222.      * IHXVideoSurface2 methods 
  223.      */
  224.     STDMETHOD(SetProperties)    (THIS_ 
  225.                                  HXBitmapInfoHeader *bmi, 
  226.                                  REF(UINT32) ulNumBuffers, 
  227.                                  IHXRenderTimeLine *pClock);
  228.     STDMETHOD_(void, Flush)     (THIS);
  229.     
  230.     STDMETHOD(ReleaseVideoMem)  (THIS_ VideoMemStruct* pVidMem);
  231.     
  232.     STDMETHOD(ColorConvert)     (THIS_
  233.                                  INT32 cidIn, 
  234.                                  HXxSize *pSrcSize,
  235.                                  HXxRect *prSrcRect,
  236.                                  SourceInputStruct *pInput,
  237.                                  INT32 cidOut,
  238.                                  UCHAR *pDestBuffer, 
  239.                                  HXxSize *pDestSize, 
  240.                                  HXxRect *prDestRect, 
  241.                                  int nDestPitch);
  242.     
  243.     STDMETHOD(GetVideoMem)      (THIS_
  244.                                  VideoMemStruct* pVidMem,
  245.                                  UINT32 ulFlags
  246.                                  );
  247.                                  
  248.     STDMETHOD(Present)          (THIS_
  249.                                  VideoMemStruct* pVidMem,
  250.                                  INT32 lTime, 
  251.                                  UINT32 ulFlags,
  252.                                  HXxRect *prDestRect, 
  253.                                  HXxRect *prSrcRect);
  254.                                  
  255.     STDMETHOD(PresentIfReady)   (THIS);
  256.     /*
  257.      *  IHXInterruptSafe methods
  258.      */
  259.     /************************************************************************
  260.      * Method:
  261.      *     IHXInterruptSafe::IsInterruptSafe
  262.      * Purpose:
  263.      *     This is the function that will be called to determine if
  264.      *     interrupt time execution is supported.
  265.      */
  266.     STDMETHOD_(BOOL,IsInterruptSafe) (THIS);
  267. };
  268. /****************************************************************************
  269.  * 
  270.  *  Class:
  271.  *
  272.  * CHXMultiInstanceSiteUser
  273.  *
  274.  */
  275. class CHXMultiInstanceSiteUser : 
  276. public IHXSiteUser
  277. {
  278. private:
  279.     LONG32     m_lRefCount;
  280.     CHXMultiInstanceSiteUserSupplier*     m_pMISUS;
  281.     IHXSite*     m_pSite;
  282.     IHXSite2*     m_pSite2;
  283.     friend class CHXMultiInstanceSiteUserSupplier;
  284.     ~CHXMultiInstanceSiteUser();
  285.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  286. public:
  287.     CHXMultiInstanceSiteUser(CHXMultiInstanceSiteUserSupplier* pMISUS);
  288.     
  289.     /*
  290.      * IUnknown methods
  291.      */
  292.     STDMETHOD(QueryInterface) (THIS_
  293. REFIID riid,
  294. void** ppvObj);
  295.     STDMETHOD_(ULONG32,AddRef) (THIS);
  296.     STDMETHOD_(ULONG32,Release) (THIS);
  297.     /*
  298.      * IHXSiteUser methods usually called by the "context" to 
  299.      * associate users with the site.
  300.      */
  301.     STDMETHOD(AttachSite) (THIS_
  302. IHXSite* /*IN*/ pSite);
  303.     STDMETHOD(DetachSite) (THIS);
  304.     /*
  305.      * IHXSiteUser methods called to inform user of an event.
  306.      */
  307.     STDMETHOD(HandleEvent) (THIS_
  308. HXxEvent* /*IN*/ pEvent);
  309.     STDMETHOD_(BOOL,NeedsWindowedSites) (THIS);
  310. };
  311. #endif // _HXMISUS_H_