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

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