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

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 _RPHYPERNAVIGATE_
  36. #define _RPHYPERNAVIGATE_
  37. _INTERFACE IHXGroupManager;
  38. _INTERFACE IHXRequest;
  39. /****************************************************************************
  40.  * 
  41.  *  Interface:
  42.  * 
  43.  * IHXHyperNavigate
  44.  * 
  45.  *  Purpose:
  46.  * 
  47.  * TBD
  48.  * 
  49.  *  IID_IHXHyperNavigate:
  50.  * 
  51.  * {00000900-61DF-11d0-9CEE-080017035B43}
  52.  * 
  53.  */
  54. struct IHXHyperNavigate;
  55. struct IHXHTTPRedirectResponse;
  56. class PlayerHyperNavigate : public IHXHyperNavigate,
  57.     public IHXHyperNavigate2,
  58.     public IHXHyperNavigateHint,
  59.     public IHXFileSystemManagerResponse,
  60.     public IHXHTTPRedirectResponse,
  61.     public IHXCallback
  62. {
  63. public:
  64.     PlayerHyperNavigate();
  65.     /*
  66.      * IUnknown methods
  67.      */
  68.     STDMETHOD(QueryInterface) (THIS_
  69. REFIID riid,
  70. void** ppvObj);
  71.     STDMETHOD_(ULONG32,AddRef) (THIS);
  72.     STDMETHOD_(ULONG32,Release) (THIS);
  73.     /*
  74.      * IHXHyperNavigate methods
  75.      */
  76.     /************************************************************************
  77.      * Method:
  78.      *     IHXHyperNavigate::GoToURL
  79.      * Purpose:
  80.      *     Performs a simple Go To URL operation.
  81.      */
  82.     STDMETHOD(GoToURL)     (THIS_
  83.     const char* pURL,
  84.     const char* pTarget);
  85.     /************************************************************************
  86.      * Method:
  87.      *     IHXHyperNavigate2::Execute
  88.      * Purpose:
  89.      *     
  90.      * Parameters:
  91.      *      pURL:     URL (absolute or relative)
  92.      *     pTargetInstance:
  93.      *     pTargetApplication: 
  94.      *     pTargetRegion:
  95.      *     pParams:
  96.      */
  97.     STDMETHOD(Execute)     (THIS_
  98.     const char* pURL,
  99.     const char* pTargetInstance,
  100.     const char* pTargetApplication,
  101.     const char* pTargetRegion,
  102.     IHXValues* pParams);
  103.     /************************************************************************
  104.      * Method:
  105.      *     IHXHyperNavigateHint::Hint
  106.      * Purpose:
  107.      *     
  108.      * Parameters:
  109.      *      pURL:     URL (absolute or relative)
  110.      *     pTarget:     target for URL
  111.      *     pParams:        parameters on URL. Currently supported keys include:
  112.      *                           "width":  desired width of target window (ULONG32)
  113.      *                           "height": desired height of target window (ULONG32)
  114.      *                           "begin":  time at which URL will be fired (ULONG32)
  115.      *                                     (0xFFFFFFFF if not known)
  116.      */
  117.     STDMETHOD(Hint) (THIS_ const char* pURL,
  118.                            const char* pTarget,
  119.                            IHXValues*  pParams);
  120.     HX_RESULT ExecuteWithContext    (const char* pURL,
  121.     const char* pTargetInstance,
  122.     const char* pTargetApplication,
  123.     const char* pTargetRegion,
  124.     IHXValues* pParams,
  125.     IUnknown* pContext);
  126.     /* Internal function */
  127.     STDMETHOD(Init)     (THIS_
  128.     IUnknown* pContext,
  129.     IHXHyperNavigate *pHyperNavigate, 
  130.     IHXHyperNavigateWithContext* pHyperNavigateWithContext);
  131.     void     Close(void);
  132.     /*
  133.      * IHXHTTPRedirectResponse methods
  134.      */
  135.     /************************************************************************
  136.      * Method:
  137.      *     IHXHTTPRedirectResponse::RedirectDone
  138.      * Purpose:
  139.      *     return the redirect URL
  140.      */
  141.     STDMETHOD(RedirectDone) (THIS_
  142.  IHXBuffer* pURL);
  143.     /*
  144.      * IHXFileSystemManagerResponse methods
  145.      */
  146.     /************************************************************************
  147.      * Method:
  148.      * IHXFileSystemManagerResponse::InitDone
  149.      * Purpose:
  150.      */
  151.     STDMETHOD(InitDone)     (THIS_
  152.     HX_RESULT status);
  153.     STDMETHOD(FileObjectReady) (THIS_
  154. HX_RESULT status,
  155.                                 IUnknown* pObject);
  156.     /*
  157.      * The following method is deprecated and should return HXR_NOTIMPL
  158.      */
  159.     STDMETHOD(DirObjectReady) (THIS_
  160. HX_RESULT status,
  161.                                 IUnknown* pDirObject);
  162.     /*
  163.      * IHXCallback methods
  164.      */
  165.     STDMETHOD(Func) (THIS);
  166. protected:
  167.     ~PlayerHyperNavigate();
  168.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  169.     BOOL m_bInitialized;
  170.     LONG32 m_lRefCount;
  171.     IUnknown* m_pContext;
  172.     IHXPlayer* m_pPlayer;
  173.     IHXGroupManager* m_pGroupManager;
  174.     IHXFileObject* m_pFileObject;
  175.     IHXHyperNavigate* m_pHyperNavigate;
  176.     IHXHyperNavigateWithContext* m_pHyperNavigateWithContext;
  177.     IHXScheduler* m_pScheduler;
  178.     CallbackHandle m_CallbackHandle;
  179.     IHXRequest* m_pPendingRequest;
  180.     HX_RESULT SendAdsCookies(char* pURL);
  181.     HX_RESULT HandleCommands(const char* pURL, const char* pTarget, IHXValues* pParams);
  182. };
  183. #endif /* _RPHYPERNAVIGATE_ */