shadvsrc.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 _SHADVSRC_H_
  36. #define _SHADVSRC_H_
  37. class CShadowViewSource :   public IHXFileResponse,
  38.     public IHXFileStatResponse,
  39.     public IHXFileViewSource
  40. {
  41. private:
  42.     IHXFileViewSourceResponse* m_pViewSourceResponse;
  43.     SOURCE_TYPE m_type;
  44.     
  45.     IHXFileObject* m_pFileObject;
  46.     IUnknown* m_pContext;
  47.     IHXCommonClassFactory* m_pCommonClassFactory;
  48.     CHXFragmentedBuffer* m_pBuffer;
  49.     LONG32 m_lRefCount;
  50.     IUnknown* m_pContainer;
  51.     IHXValues* m_pOptions;
  52.     ~CShadowViewSource();
  53.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  54. public:
  55.     CShadowViewSource(IUnknown* pContext, IUnknown* pContainer);
  56.         // *** IUnknown methods ***
  57.     STDMETHOD(QueryInterface) (THIS_
  58. REFIID riid,
  59. void** ppvObj);
  60.     STDMETHOD_(ULONG32,AddRef) (THIS);
  61.     STDMETHOD_(ULONG32,Release) (THIS);
  62.     /************************************************************************
  63.      * Method:
  64.      *     IHXFileViewSource::InitViewSource
  65.      * Purpose:
  66.      *     Called by the user to init before a viewsource.
  67.      */
  68.     STDMETHOD(InitViewSource) (THIS_
  69. IHXFileObject* pFileObject,
  70. IHXFileViewSourceResponse* pResp,
  71. SOURCE_TYPE sourceType,
  72. IHXValues* pOptions);
  73.     /************************************************************************
  74.      * Method:
  75.      *     IHXFileViewSource::GetHTMLSource
  76.      * Purpose:
  77.      *     Called to get source html source.  Return the source
  78.      * through m_pViewSourceResoponse
  79.      */
  80.     STDMETHOD(GetSource)(THIS);
  81.     /************************************************************************
  82.      * Method:
  83.      *     IHXFileViewSource::Close()
  84.      * Purpose:
  85.      *     Called to shut things down
  86.      * Shared with IHXFileFormatObject
  87.      */
  88.     STDMETHOD(Close) (THIS);
  89.     /************************************************************************
  90.      * Method:
  91.      *     IHXFileStatResponse::StatDone(...)
  92.      * Purpose:
  93.      *     Called in response to our request for a stat.
  94.      */
  95.     STDMETHOD(StatDone) (THIS_
  96.  HX_RESULT status,
  97.  UINT32 ulSize,
  98.  UINT32 ulCreationTime,
  99.  UINT32 ulAccessTime,
  100.  UINT32 ulModificationTime,
  101.  UINT32 ulMode);
  102.     /************************************************************************
  103.     *  Method:
  104.     *    IHXFileResponse::InitDone
  105.     *  Purpose:
  106.     *    Notification interface provided by users of the IHXFileObject
  107.     *    interface. This method is called by the IHXFileObject when the
  108.     *    initialization of the file is complete, and the Mime type is
  109.     *    available for the request file. If the URL is not valid for the
  110.     *    file system, the status HXR_FAILED should be returned,
  111.     *    with a mime type of NULL. If the URL is valid but the mime type
  112.     *    is unknown, then the status HXR_OK should be returned with
  113.     *    a mime type of NULL.
  114.     */
  115.     STDMETHOD(InitDone)     (THIS_
  116.     HX_RESULT     status);
  117.     /************************************************************************
  118.     *  Method:
  119.     *   IHXFileResponse::CloseDone
  120.     *  Purpose:
  121.     *   Notification interface provided by users of the IHXFileObject
  122.     *   interface. This method is called by the IHXFileObject when the
  123.     *   close of the file is complete.
  124.     */
  125.     STDMETHOD(CloseDone) (THIS_
  126. HX_RESULT status);
  127.     /************************************************************************
  128.     *  Method:
  129.     *   IHXFileResponse::ReadDone
  130.     *  Purpose:
  131.     *   Notification interface provided by users of the IHXFileObject
  132.     *   interface. This method is called by the IHXFileObject when the
  133.     *   last read from the file is complete and a buffer is available.
  134.     */
  135.     STDMETHOD(ReadDone) (THIS_ 
  136. HX_RESULT     status,
  137. IHXBuffer*     pBuffer);
  138.     /************************************************************************
  139.     *  Method:
  140.     *   IHXFileResponse::WriteDone
  141.     *  Purpose:
  142.     *   Notification interface provided by users of the IHXFileObject
  143.     *   interface. This method is called by the IHXFileObject when the
  144.     *   last write to the file is complete.
  145.     */
  146.     STDMETHOD(WriteDone) (THIS_ 
  147. HX_RESULT     status);
  148.     /************************************************************************
  149.     *  Method:
  150.     *   IHXFileResponse::SeekDone
  151.     *  Purpose:
  152.     *   Notification interface provided by users of the IHXFileObject
  153.     *   interface. This method is called by the IHXFileObject when the
  154.     *   last seek in the file is complete.
  155.     */
  156.     STDMETHOD(SeekDone) (THIS_ 
  157. HX_RESULT     status);
  158. };
  159. #endif // _SHADVSRC_H_