sm1time.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 _SM1TIME_H_
  36. #define _SM1TIME_H_
  37. class CSmil1TimelineElement;
  38. class CSmil1TimelineElementManager
  39. {
  40. public:
  41.     CSmil1TimelineElementManager ();
  42.     ~CSmil1TimelineElementManager ();
  43.     void addTimelineElement (CSmil1TimelineElement* pElement);
  44.     void addNotification (const char* pID,
  45. CSmil1TimelineElement* pElement);
  46.     void notify (const char* pID);
  47.     void resetTimeline ();
  48.     CSmil1TimelineElement*
  49. getTimelineElement (const char* pID);
  50. private:
  51.     CHXMapStringToOb* m_pElementMap;
  52.     CHXMapStringToOb* m_pNotifierMap;
  53. };
  54. class CSmil1TimelineElement
  55. {
  56. public:
  57.     CSmil1TimelineElement (CSmil1Element *pSourceElement,
  58. CSmil1Parser* pParser);
  59.     virtual ~CSmil1TimelineElement ();
  60.     virtual void setDelay (UINT32 ulDelay);
  61.     virtual void setDuration (UINT32 ulDuration,
  62. BOOL bSetFromParent = FALSE);
  63.     virtual void setMaxDuration (UINT32 ulMaxDuration);
  64.     virtual void adjustDependentDuration(CSmil1TimelineElement* pDependent);
  65.     virtual void addDuration (UINT32 ulDuration, 
  66. UINT32 ulDelay,
  67. const char* pID)
  68. {
  69. }
  70.     BOOL initialDelaySet ()
  71. { return m_bDelaySet; }
  72.     BOOL delayEvent ()
  73. { return m_bDelayEvent; }
  74.     BOOL durationSet ()
  75. { return m_bDurationSet; }
  76.     BOOL durationEvent ()
  77. { return m_bDurationEvent; }
  78.     void reset ();
  79.     virtual void elementResolved (CSmil1TimelineElement* pElement);
  80.     void setParent (CSmil1TimelineElement* pParent)
  81.     {
  82.         m_pParent = pParent;
  83.     }
  84.     void setDependent (CSmil1TimelineElement* pDependent)
  85.     {
  86.         m_pDependent = pDependent;
  87.     }
  88.     void addChild (CSmil1TimelineElement* pChild);
  89.     UINT32 getDuration ();
  90.     UINT32 getDelay ();
  91.     virtual void dump ();
  92.     char* m_pID;
  93. protected:
  94.     CSmil1Element* m_pSourceElement;
  95.     CSmil1Parser* m_pParser;
  96.     CHXSimpleList* m_pChildren;
  97.     CSmil1TimelineElement* m_pParent;
  98.     CSmil1TimelineElement* m_pDependent;
  99.     BOOL m_bDelaySet;
  100.     BOOL m_bDelayEvent;
  101.     BOOL m_bDurationEvent;
  102.     BOOL m_bDurationSet;
  103.     BOOL m_bMaxDurationSet;
  104.     BOOL m_bDontResetDuration;
  105.     //The following is for cases where a non-event delay and
  106.     // an event delay exist and m_bDelaySet is not sufficient
  107.     // to keep track of all 3 possible delaySet states.  The
  108.     // non-event delay is always set before the event is resolved
  109.     // so that's why there are 3 and not 4 states:
  110.     BOOL m_bNonEventDelaySet;
  111.     friend class CSmil1TimelinePar;
  112.     friend class CSmil1TimelineSeq;
  113.     friend class CSmil1TimelineAnchor;
  114. };
  115. class CSmil1TimelinePar: public CSmil1TimelineElement
  116. {
  117. public:
  118.     CSmil1TimelinePar (CSmil1Element* pSourceElement, 
  119. CSmil1Parser* pRenderer);
  120.     virtual ~CSmil1TimelinePar ();
  121.     virtual void setDelay (UINT32 ulDelay);
  122.     virtual void setDuration (UINT32 ulDuration,
  123. BOOL bSetFromParent = FALSE);
  124.     virtual void setMaxDuration (UINT32 ulMaxDuration);
  125.     virtual void adjustDependentDuration(CSmil1TimelineElement* pDependent);
  126.     virtual void addDuration (UINT32 ulDuration, 
  127. UINT32 ulDelay,
  128. const char* pID);
  129.     virtual void elementResolved (CSmil1TimelineElement* pElement);
  130.     void durationResolved (UINT32 ulDuration,
  131. BOOL bUpdateChildren);
  132. private:
  133.     int m_nDurationAdded;
  134.     UINT32 m_ulFirstDuration;
  135.     UINT32 m_ulLastDuration;
  136. };
  137. class CSmil1TimelineSeq: public CSmil1TimelineElement
  138. {
  139. public:
  140.     CSmil1TimelineSeq (CSmil1Element* pSourceElement, 
  141. CSmil1Parser* pRenderer);
  142.     virtual void setDelay (UINT32 ulDelay);
  143.     virtual void setDuration (UINT32 ulDuration,
  144. BOOL bSetFromParent = FALSE);
  145.     virtual void setMaxDuration (UINT32 ulMaxDuration);
  146.     virtual void adjustDependentDuration(CSmil1TimelineElement* pDependent);
  147.     BOOL  setElementDuration (UINT32& ulDurationLeft, CSmil1TimelineElement* pElement);
  148.     virtual void addDuration (UINT32 ulDuration, 
  149. UINT32 ulDelay,
  150. const char* pID);
  151. private:
  152.     int m_nDurationAdded;
  153. };
  154. class CSmil1TimelineAnchor: public CSmil1TimelineElement
  155. {
  156. public:
  157.     CSmil1TimelineAnchor (CSmil1Element* pSourceElement, 
  158. CSmil1Parser* pRenderer);
  159.     virtual ~CSmil1TimelineAnchor ();
  160.     virtual void elementResolved (CSmil1TimelineElement* pElement);
  161.     void durationResolved (UINT32 ulDuration);
  162. private:
  163.     int m_nDurationAdded;
  164. };
  165. #endif /* _SM1TIME_H_ */