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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: layevent.h,v 1.4.12.1 2004/07/09 01:58:01 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 LAYEVENT_H
  50. #define LAYEVENT_H
  51. // Forward declarations
  52. typedef _INTERFACE IHXSite          IHXSite;
  53. typedef _INTERFACE IHXErrorMessages IHXErrorMessages;
  54. class CSmilDocumentRenderer;
  55. class CHXString;
  56. #if defined(HELIX_FEATURE_SMIL2_ANIMATION)
  57. class CSmilAnimateElement;
  58. #endif /* #if defined(HELIX_FEATURE_SMIL2_ANIMATION) */
  59. class CSmilParser;
  60. struct SMILPlayToAssoc;
  61. struct SMILSiteInfo;
  62. class CSmilLayoutEvent
  63. {
  64. public:
  65.     CSmilLayoutEvent(UINT16 uGroupIndex,
  66.                      UINT32 ulEventTime,
  67.                      BOOL   bIgnorEvent);
  68.     virtual ~CSmilLayoutEvent();
  69.     virtual HX_RESULT   handleEvent(UINT32 ulTime) = 0;
  70.     virtual IHXSite*   getRegionSite() = 0;
  71.     virtual IHXSite*   getRendererSite() = 0;
  72.     virtual void        setHandledFlag(BOOL bFlag) {}
  73.     virtual BOOL        getHandledFlag()           { return FALSE; }
  74.     const char*         getEventTypeName();
  75.     BOOL                IsShowOrHideEvent() { return ((m_type == eShowSite ||
  76.                                       m_type == eHideSite) ? TRUE : FALSE); }
  77.     enum EventType
  78.     {
  79.         eShowSite,
  80.         eHideSite, 
  81.         eBeginTransition, 
  82.         eEndTransition,
  83.         eAnimate,
  84.         eNumEventTypes // This should always be last
  85.     } m_type;
  86.     static const char* const m_pszEventTypeName[];
  87.     UINT32      m_ulEventTime;
  88.     UINT16      m_uGroupIndex;
  89.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  90.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  91.     HX_BITFIELD m_bOnlyHideSite : 1;
  92.     HX_BITFIELD m_bIgnorEvent : 1;
  93. };
  94. class CSmilShowSiteEvent: public CSmilLayoutEvent
  95. {
  96. public:
  97.     CSmilShowSiteEvent(UINT16                 uGroupIndex,
  98.                        UINT32                 ulEventTime,
  99.                        IHXSite*              pSite,
  100.                        IHXSite*              pRegionSite,
  101.                        BOOL                   bShowSite,
  102.                        BOOL                   bIgnorEvent = FALSE,
  103.                        CSmilDocumentRenderer* pDoc = NULL,
  104.                        const char*            pszMediaID = NULL,
  105.                        const char*            pszRegionID = NULL,
  106.                        ShowBackground         eShowBackground = ShowBackgroundAlways);
  107.     virtual ~CSmilShowSiteEvent();
  108.     // Required CSmilLayoutEvent methods
  109.     virtual HX_RESULT   handleEvent(UINT32 ulTime);
  110.     virtual IHXSite*   getRegionSite();
  111.     virtual IHXSite*   getRendererSite();
  112.     // CSmilShowSiteEvent methods
  113.     BOOL                getShowSite();
  114.     const char*         getMediaID();
  115.     const char*         getRegionID();
  116. private:
  117.     IHXSite*              m_pRegionSite;
  118.     IHXSite*              m_pSite;
  119.     CSmilDocumentRenderer* m_pDoc;
  120.     CHXString              m_MediaID;
  121.     CHXString              m_RegionID;
  122.     ShowBackground         m_eShowBackground;
  123.     IHXErrorMessages*     m_pErrorMessages;
  124.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  125.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  126.     HX_BITFIELD            m_bShowSite : 1;
  127. };
  128. #if defined(HELIX_FEATURE_SMIL2_TRANSITIONS)
  129. class CSmilTransitionEvent: public CSmilLayoutEvent
  130. {
  131. public:
  132.     CSmilTransitionEvent(UINT32                 ulEventTime,
  133.                          SMILPlayToAssoc*       pAssoc,
  134.                          SMILSiteInfo*          pSiteInfo,
  135.                          BOOL                   bBeginTransition,
  136.                          CSmilDocumentRenderer* pRenderer);
  137.     CSmilTransitionEvent(UINT32                 ulEventTime,
  138.                          SMILPlayToAssoc*       pAssoc,
  139.                          IHXSite*              pSite,
  140.                          BOOL                   bBeginTransition,
  141.                          CSmilDocumentRenderer* pRenderer);
  142.     virtual ~CSmilTransitionEvent();
  143.     virtual HX_RESULT   handleEvent(UINT32 ulTime);
  144.     virtual IHXSite*   getRegionSite();
  145.     virtual IHXSite*   getRendererSite();
  146. private:
  147.     CSmilDocumentRenderer* m_pDocRenderer;
  148.     SMILPlayToAssoc*       m_pPlayToAssoc;
  149.     SMILSiteInfo*          m_pSiteInfo;
  150.     IHXSite*              m_pSite;
  151. };
  152. #endif /* #if defined(HELIX_FEATURE_SMIL2_TRANSITIONS) */
  153. #if defined(HELIX_FEATURE_SMIL2_ANIMATION)
  154. class CSmilAnimateEvent: public CSmilLayoutEvent
  155. {
  156. public:
  157.     CSmilAnimateEvent(UINT16                 uGroupIndex,
  158.                       UINT32                 ulEventTime,
  159.                       BOOL                   bIgnorEvent,
  160.                       CSmilAnimateElement*   pElement,
  161.                       CSmilDocumentRenderer* pDocRenderer,
  162.                       CSmilParser*           pParser);
  163.     CSmilAnimateEvent(const CSmilAnimateEvent& rEvent);
  164.     virtual ~CSmilAnimateEvent();
  165.     virtual HX_RESULT   handleEvent(UINT32 ulTime);
  166.     virtual IHXSite*   getRegionSite ();
  167.     virtual IHXSite*   getRendererSite();
  168.     virtual void        setHandledFlag(BOOL bFlag) { m_bHandled = bFlag; }
  169.     virtual BOOL        getHandledFlag()           { return m_bHandled;  }
  170.     BOOL                isSameElement(CSmilAnimateElement* pAnim);
  171.     BOOL                hasEventBasedBegin() const { return m_bEventBasedBegin; }
  172. private:
  173.     CSmilAnimateElement*   m_pElement;
  174.     CSmilDocumentRenderer* m_pDocRenderer;
  175.     CSmilParser*           m_pSmilParser;
  176.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  177.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  178.     HX_BITFIELD            m_bEventBasedBegin : 1;
  179.     HX_BITFIELD            m_bHandled : 1;
  180. };
  181. #endif /* #if defined(HELIX_FEATURE_SMIL2_ANIMATION) */
  182. #endif