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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsite2.h,v 1.1.1.1.50.4 2004/07/09 02:06:13 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 _HXSITE2_H_
  50. #define _HXSITE2_H_
  51. /*
  52.  * Forward declarations of some interfaces defined or used here-in.
  53.  */
  54. typedef _INTERFACE  IHXSite2     IHXSite2;
  55. typedef _INTERFACE  IHXSiteTreeNavigation           IHXSiteTreeNavigation;
  56. typedef _INTERFACE  IHXVideoSurface     IHXVideoSurface;
  57. typedef _INTERFACE  IHXPassiveSiteWatcher     IHXPassiveSiteWatcher;
  58. /****************************************************************************
  59.  * 
  60.  *  Interface:
  61.  *
  62.  * IHXSite2
  63.  *
  64.  *  Purpose:
  65.  *
  66.  * Interface for IHXSite2 objects.
  67.  *
  68.  *  IID_IHXSite:
  69.  *
  70.  * {0x00000D0A-0901-11d1-8B06-00A024406D59}
  71.  *
  72.  */
  73. DEFINE_GUID(IID_IHXSite2, 0x00000D0A, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  74. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  75. #undef  INTERFACE
  76. #define INTERFACE   IHXSite2
  77. DECLARE_INTERFACE_(IHXSite2, IUnknown)
  78. {
  79.     /*
  80.      * IUnknown methods
  81.      */
  82.     STDMETHOD(QueryInterface) (THIS_
  83. REFIID riid,
  84. void** ppvObj) PURE;
  85.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  86.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  87.     /*
  88.      * IHXSite2 method usually called by the "context" 
  89.      * when window attributes (like the window handle) have changed.
  90.      */
  91.     STDMETHOD(UpdateSiteWindow) (THIS_
  92. HXxWindow* /*IN*/ pWindow) PURE;
  93.     /*
  94.      * IHXSite2 method usually called by the "context" to
  95.      * to hide/show a site.
  96.      */
  97.     STDMETHOD(ShowSite)         (THIS_
  98.                                  BOOL    bShow) PURE;
  99.                                  
  100.     STDMETHOD_(BOOL, IsSiteVisible)         (THIS) PURE;
  101.     /*
  102.      * IHXSite2 method usually called by the "context" to
  103.      * set the site's Z-order
  104.      */
  105.     STDMETHOD(SetZOrder) (THIS_
  106. INT32 lZOrder
  107. ) PURE;
  108.     /*
  109.      * IHXSite2 method called to get the site's Z-order
  110.      */
  111.     STDMETHOD(GetZOrder) (THIS_
  112. REF(INT32) lZOrder
  113. ) PURE;
  114.     /*
  115.      * IHXSite2 method called to set the site at the top
  116.      * of the Z-order
  117.      */
  118.     STDMETHOD(MoveSiteToTop) (THIS) PURE;
  119.     /*
  120.      * IHXSite2 method called to get the site's video surface
  121.      */
  122.     STDMETHOD(GetVideoSurface) (THIS_ 
  123. REF(IHXVideoSurface*) pSurface
  124. ) PURE;
  125.     /*
  126.      * IHXSite2 method called to get the number of child sites.
  127.      */
  128.     STDMETHOD_(UINT32,GetNumberOfChildSites) (THIS) PURE;
  129.     /*
  130.      * IHXSite2 method to add a watcher that does not affect the site
  131.      */
  132.     STDMETHOD(AddPassiveSiteWatcher) (THIS_
  133.      IHXPassiveSiteWatcher* pWatcher
  134. ) PURE;
  135.     /*
  136.      * IHXSite2 method to remove a watcher that does not affect the site
  137.      */
  138.     STDMETHOD(RemovePassiveSiteWatcher) (THIS_
  139.      IHXPassiveSiteWatcher* pWatcher
  140. ) PURE;
  141.     /*
  142.      * IHXSite2 method used to do cursor management
  143.      */
  144.     STDMETHOD(SetCursor)  (THIS_
  145.      HXxCursor ulCursor,
  146. REF(HXxCursor) ulOldCursor
  147. ) PURE;
  148. };
  149. /****************************************************************************
  150.  * 
  151.  *  Interface:
  152.  *
  153.  * IHXSiteTreeNavigation
  154.  *
  155.  *  Purpose:
  156.  *
  157.  * Interface for IHXSiteTreeNavigation objects.
  158.  *
  159.  *  IID_IHXSiteTreeNavigation:
  160.  *
  161.  * {b52abc41-a919-11d8-b8a3-0003939ba95e}
  162.  *
  163.  */
  164. DEFINE_GUID(IID_IHXSiteTreeNavigation, 0xb52abc41, 0xa919, 0x11d8, 0xb8, 0xa3,
  165.                             0x0, 0x03, 0x93, 0x9b, 0xa9, 0x5e);
  166. #undef  INTERFACE
  167. #define INTERFACE   IHXSiteTreeNavigation
  168. DECLARE_INTERFACE_(IHXSiteTreeNavigation, IUnknown)
  169. {
  170.     /*
  171.      * IUnknown methods
  172.      */
  173.     STDMETHOD(QueryInterface) (THIS_
  174. REFIID riid,
  175. void** ppvObj) PURE;
  176.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  177.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  178.     
  179.     /*
  180.      * IHXSiteTreeNavigation methods
  181.      */
  182.     STDMETHOD(GetParentSite) (THIS_
  183.                              REF(IHXSite*) pParentSite
  184.                              ) PURE;
  185.     STDMETHOD_(UINT32, GetNumberOfChildSites) (THIS) PURE;
  186.     STDMETHOD(GetNthChildSite) (THIS_
  187.                                 ULONG32 ulIndex,
  188.                                 REF(IHXSite*) pSite
  189.                                 ) PURE;
  190. };
  191. /****************************************************************************
  192.  * 
  193.  *  Interface:
  194.  *
  195.  * IHXPassiveSiteWatcher
  196.  *
  197.  *  Purpose:
  198.  *
  199.  * Interface for IHXPassiveSiteWatcher objects.
  200.  *
  201.  *  IID_IHXPassiveSiteWatcher:
  202.  *
  203.  * {0x00000D0F-0901-11d1-8B06-00A024406D59}
  204.  *
  205.  */
  206. DEFINE_GUID(IID_IHXPassiveSiteWatcher, 0x00000D0F, 0x901, 0x11d1, 0x8b, 0x6, 
  207. 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  208. #undef  INTERFACE
  209. #define INTERFACE   IHXPassiveSiteWatcher
  210. DECLARE_INTERFACE_(IHXPassiveSiteWatcher, IUnknown)
  211. {
  212.     /*
  213.      * IUnknown methods
  214.      */
  215.     STDMETHOD(QueryInterface) (THIS_
  216. REFIID riid,
  217. void** ppvObj) PURE;
  218.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  219.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  220.     /*
  221.      * IHXPassiveSiteWatcher method used to notify
  222.      * about position updates
  223.      */
  224.     STDMETHOD(PositionChanged) (THIS_
  225. HXxPoint* /*IN*/ pPoint) PURE;
  226.     /*
  227.      * IHXPassiveSiteWatcher method used to notify
  228.      * about size updates
  229.      */
  230.     STDMETHOD(SizeChanged)  (THIS_
  231. HXxSize* /*IN*/ pSize) PURE;
  232. };
  233. /***********************************************************************/
  234. /********  PRIVATE INTERFACE UNTIL STABALIZED -- WILL CHANGE ***********/
  235. /***********************************************************************/
  236. /*
  237.  *
  238.  *  Interface:  IHXSiteControl
  239.  *
  240.  *  Purpose:
  241.  *           Helps manage multiple sites and their children
  242.  *
  243.  *  Interface for obtaining IHXSiteControl
  244.  *
  245.  *  {DD25CA2E-73A5-4811-996F-7E6726E7668F}
  246.  *
  247.  */
  248. DEFINE_GUID(IID_IHXSiteControl, 0xdd25ca2e, 0x73a5, 0x4811, 0x99,
  249.             0x6f, 0x7e, 0x67, 0x26, 0xe7, 0x66, 0x8f);
  250. #undef  INTERFACE
  251. #define INTERFACE   IHXSiteControl
  252. DECLARE_INTERFACE_(IHXSiteControl, IUnknown)
  253. {
  254.     /* redraws this site and all children */
  255.     STDMETHOD(ForceRedrawAll) (THIS_ ) PURE;
  256. };
  257. /***********************************************************************/
  258. /********  PRIVATE INTERFACE UNTIL STABALIZED -- WILL CHANGE ***********/
  259. /***********************************************************************/
  260. #endif //_HXSITE2_H_