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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: viewport.h,v 1.1.1.1.50.1 2004/07/09 02:05:58 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 _VIEWPORT_H_
  50. #define _VIEWPORT_H_
  51. #include "hxvport.h"
  52. class HXViewPortManager;
  53. class HXViewPort : public IHXViewPort
  54. {
  55. private:
  56.     LONG32 m_lRefCount;
  57.     
  58.     const char* m_pszName;
  59.     IHXValues* m_pValues;
  60.     HXViewPortManager* m_pParent;
  61.     ~HXViewPort();
  62.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  63. public:
  64.     HXViewPort(HXViewPortManager* pViewPortManager,
  65. IHXValues*     pValues,
  66. const char*     pszName);
  67.     /*
  68.      * IUnknown methods
  69.      */
  70.     STDMETHOD(QueryInterface) (THIS_
  71. REFIID riid,
  72. void** ppvObj);
  73.     STDMETHOD_(ULONG32,AddRef) (THIS);
  74.     STDMETHOD_(ULONG32,Release) (THIS);
  75.     /*
  76.      * IHXViewPort methods
  77.      */
  78.     /************************************************************************
  79.      * Method:
  80.      *     IHXViewPort::GetName
  81.      * Purpose:
  82.      *     get name of the viewport
  83.      */
  84.     STDMETHOD_(const char*, GetName) (THIS);
  85.     /************************************************************************
  86.      * Method:
  87.      *     IHXViewPort::GetProperties
  88.      * Purpose:
  89.      *     get properties of the viewport
  90.      */
  91.     STDMETHOD(GetProperties) (THIS_
  92.  REF(IHXValues*)   pValues);
  93.     /************************************************************************
  94.      * Method:
  95.      *     IHXViewPort::Show
  96.      * Purpose:
  97.      *     show viewport
  98.      */
  99.     STDMETHOD(Show) (THIS);
  100.     /************************************************************************
  101.      * Method:
  102.      *     IHXViewPort::Hide
  103.      * Purpose:
  104.      *     hide viewport
  105.      */
  106.     STDMETHOD(Hide) (THIS);
  107.     /************************************************************************
  108.      * Method:
  109.      *     IHXViewPort::SetFocus
  110.      * Purpose:
  111.      *     set focus on viewport
  112.      */
  113.     STDMETHOD(SetFocus) (THIS);
  114.     /************************************************************************
  115.      * Method:
  116.      *     IHXViewPort::SetZOrder
  117.      * Purpose:
  118.      *     set Z order on viewport
  119.      */
  120.     STDMETHOD(SetZOrder) (THIS_
  121.  UINT32 ulZOrder);
  122. };
  123. class HXViewPortManager : public IHXViewPortManager
  124. {
  125. private:
  126.     LONG32     m_lRefCount;
  127.     
  128.     HXPlayer*     m_pPlayer;
  129.     CHXMapStringToOb*     m_pViewPortMap;
  130.     CHXSimpleList*     m_pViewPortSinkList;
  131.     IHXViewPortSupplier*   m_pViewPortSupplier;
  132.     friend class     HXViewPort;
  133.     ~HXViewPortManager();
  134.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  135. protected:
  136.     HX_RESULT OnViewPortShow(const char* pszViewPortName);
  137.     HX_RESULT OnViewPortHide(const char* pszViewPortName);
  138.     HX_RESULT OnViewPortFocus(const char* pszViewPortName);
  139.     HX_RESULT OnViewPortZOrder(const char* pszViewPortName, UINT32 ulZOrder);
  140.     
  141. public:
  142.     HXViewPortManager(HXPlayer* pPlayer);
  143.     /*
  144.      * IUnknown methods
  145.      */
  146.     STDMETHOD(QueryInterface) (THIS_
  147. REFIID riid,
  148. void** ppvObj);
  149.     STDMETHOD_(ULONG32,AddRef) (THIS);
  150.     STDMETHOD_(ULONG32,Release) (THIS);
  151.     /*
  152.      * IHXViewPortManager methods
  153.      */
  154.     /************************************************************************
  155.      * Method:
  156.      *     IHXViewPortManager::OpenViewPort
  157.      * Purpose:
  158.      *     create viewport
  159.      */
  160.     STDMETHOD(OpenViewPort) (THIS_
  161.  IHXValues* pValues,
  162.  IHXSiteUser*  pSiteUser);
  163.     /************************************************************************
  164.      * Method:
  165.      *     IHXViewPortManager::GetViewPort
  166.      * Purpose:
  167.      *     get viewport
  168.      */
  169.     STDMETHOD(GetViewPort) (THIS_
  170.  const char* pszViewPort,
  171.  REF(IHXViewPort*) pViewPort);
  172.     /************************************************************************
  173.      * Method:
  174.      *     IHXViewPortManager::CloseViewPort
  175.      * Purpose:
  176.      *     remove viewport
  177.      */
  178.     STDMETHOD(CloseViewPort) (THIS_
  179.  const char* pszViewPort);
  180.     /************************************************************************
  181.      * Method:
  182.      *     IHXViewPortManager::AddViewPortSink
  183.      * Purpose:
  184.      *     add viewport sinker
  185.      */
  186.     STDMETHOD(AddViewPortSink) (THIS_
  187.  IHXViewPortSink*  pViewPortSink);
  188.     /************************************************************************
  189.      * Method:
  190.      *     IHXViewPortManager::RemoveViewPortSink
  191.      * Purpose:
  192.      *     remove viewport sinker
  193.      */
  194.     STDMETHOD(RemoveViewPortSink)   (THIS_
  195.      IHXViewPortSink*  pViewPortSink);
  196.     void Close();
  197. };
  198. #endif /* _VIEWPORT_H_ */