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

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.  
  36. #ifndef _SM1ELEM_H_
  37. #define _SM1ELEM_H_
  38. #include "sm1parse.h"
  39. class CSmil1AddGroup;
  40. class CSmil1Region;
  41. class CSmil1RootLayout;
  42. class CSmil1Source;
  43. class CSmil1MetaValues;
  44. class CSmil1EndLayout;
  45. class CSmil1SourceUpdate;
  46. class CSmil1TimelineElement;
  47. class CSmil1ElementHandler
  48. {
  49. public:
  50.     virtual HX_RESULT handleAddGroup(CSmil1AddGroup* pAddGroup) = 0;
  51.     virtual HX_RESULT handleRootLayout(CSmil1RootLayout* pRootLayout) = 0;
  52.     virtual HX_RESULT handleRegion(CSmil1Region* pRegion) = 0;
  53.     virtual HX_RESULT handleSource(CSmil1Source* pSource) = 0;
  54.     virtual HX_RESULT handleMeta(CSmil1Meta* pMeta) = 0;
  55.     virtual HX_RESULT handleEndLayout(CSmil1EndLayout* pEndLayout) = 0;
  56.     virtual HX_RESULT handleRendererPreFetch(CSmil1RendererPreFetch* pRend) = 0;
  57.     virtual HX_RESULT handleSourceUpdate(CSmil1SourceUpdate* pUpdate) = 0;
  58. };
  59. class CSmil1Element
  60. {
  61. public:
  62.     CSmil1Element (SMIL1Node* pNode);
  63.     virtual ~CSmil1Element ();
  64.     virtual void addDuration (UINT32 ulDuration);
  65.     virtual void addElement (CSmil1Element* pElement,
  66.      UINT32& ulStartTime,
  67. UINT32& ulDuration);
  68.     virtual HX_RESULT handleElement () { return HXR_OK; }
  69.     UINT32 m_ulClipBegin; // start of clip
  70.     UINT32 m_ulClipEnd; // clip end time
  71.     UINT32 m_ulBeginOffset; // clip delay
  72.     UINT32 m_ulDuration; // clip duration
  73.     UINT32 m_ulMaxDuration;
  74.     UINT32 m_ulTimestamp; // timestamp to send packet
  75.     UINT32 m_ulEndOffset;
  76.     UINT32 m_ulEndSync;
  77.     UINT32 m_ulDelay; // presentation delay
  78.     BOOL   m_bInsertedIntoTimeline; // TRUE when inserted
  79.     BOOL   m_bIndefiniteDuration;
  80.     UINT32 m_ulRepeatValue;
  81.  
  82.     CHXString m_title;
  83.     SMILEventSourceTag m_nBeginEventSourceTag;
  84.     CHXString m_BeginEventSourceID;
  85.     UINT32 m_ulBeginEventClockValue;
  86.     SMILEventSourceTag m_nEndEventSourceTag;
  87.     CHXString m_EndEventSourceID;
  88.     UINT32 m_ulEndEventClockValue;
  89.     
  90.     SMILEventSourceTag m_nEndsyncEventSourceTag;
  91.     CHXString m_EndsyncEventSourceID;
  92.     SMIL1Node* m_pNode;
  93.     CSmil1TimelineElement* m_pTimelineElement;
  94.     CSmil1ElementHandler* m_pHandler;
  95.     CHXSimpleList* m_pHyperlinks;
  96. };
  97. class CSmil1AddGroup: public CSmil1Element
  98. {
  99. public:
  100.     CSmil1AddGroup ();
  101.     virtual ~CSmil1AddGroup ();
  102.     virtual HX_RESULT handleElement ();
  103.     IHXValues* m_pValues;
  104.     int m_nGroup;
  105.     int m_nTotalTracks;
  106.     int m_nInitTracks;
  107.     UINT32 m_ulDuration;
  108. };
  109. class CSmil1RootLayout: public CSmil1Element
  110. {
  111. public:
  112.     CSmil1RootLayout (SMIL1Node* pNode);
  113.     virtual ~CSmil1RootLayout ();
  114.     virtual HX_RESULT handleElement ();
  115.     UINT32 m_ulHeight;
  116.     UINT32 m_ulWidth;
  117.     BOOL m_bWidthUnspecified;
  118.     BOOL m_bHeightUnspecified;
  119.     HXxColor m_ulBgColor;
  120.     CHXString m_overflow;
  121.     CHXString m_title;
  122. };
  123. class CSmil1Region: public CSmil1Element
  124. {
  125. public:
  126.     CSmil1Region (SMIL1Node* pNode);
  127.     virtual ~CSmil1Region ();
  128.     virtual HX_RESULT handleElement ();
  129.     CHXString m_left;
  130.     CHXString m_top;
  131.     CHXString m_height;
  132.     CHXString m_width;
  133.     INT32 m_zIndex;
  134.     CHXString m_fit;
  135.     HXxColor m_ulBgColor;
  136.     BOOL m_bBgColorSet;
  137. private:
  138. };
  139. class CSmil1Meta: public CSmil1Element
  140. {
  141. public:
  142.     CSmil1Meta (SMIL1Node* pNode);
  143.     virtual ~CSmil1Meta ();
  144.     virtual HX_RESULT handleElement ();
  145.     CHXString m_name;
  146.     CHXString m_content;
  147. };
  148. class CSmil1RendererPreFetch: public CSmil1Element
  149. {
  150. public:
  151.     CSmil1RendererPreFetch (SMIL1Node* pNode);
  152.     virtual ~CSmil1RendererPreFetch ();
  153.     virtual HX_RESULT handleElement ();
  154.     CHXString m_mimeType;
  155. };
  156. class CSmil1EndLayout: public CSmil1Element
  157. {
  158. public:
  159.     CSmil1EndLayout ();
  160.     virtual ~CSmil1EndLayout ();
  161.     virtual HX_RESULT handleElement ();
  162. };
  163. class CSmil1MetaValues: public CSmil1Element
  164. {
  165. public:
  166.     CSmil1MetaValues ();
  167.     virtual ~CSmil1MetaValues ();
  168.     IHXValues* m_pValues;
  169. };
  170. class CSmil1Source: public CSmil1Element
  171. {
  172. public:
  173.     CSmil1Source (SMIL1Node* pNode);
  174.     virtual ~CSmil1Source ();
  175.     virtual HX_RESULT handleElement ();
  176.     void setRange (const char* pRange);
  177.     CHXString m_src;
  178.     CHXString m_region;
  179.     CHXString m_fill;
  180. };
  181. class CSmil1SourceUpdate: public CSmil1Element
  182. {
  183. public:
  184.     CSmil1SourceUpdate ();
  185.     virtual ~CSmil1SourceUpdate ();
  186.     virtual HX_RESULT handleElement ();
  187.     CHXString m_srcID;
  188.     UINT32 m_ulUpdatedDuration;
  189.     UINT32 m_ulUpdatedDelay;
  190. };
  191. class CSmil1AAnchorElement: public CSmil1Element
  192. {
  193. public:
  194.     CSmil1AAnchorElement (SMIL1Node* pNode);
  195.     virtual ~CSmil1AAnchorElement ();
  196.     virtual BOOL isCurrentLink (UINT32 ulTime,
  197. UINT32 ulXOffset,
  198. UINT32 ulYOffset,
  199. HXxRect regionRect);
  200.     virtual void rescale (double dXScale,
  201. double dYScale,
  202. BOOL bResetOriginalCoords);
  203.     virtual void rescaleAbsolute(double dXScale, double dYScale);
  204.     CHXString m_href;
  205.     CHXString m_show;
  206. };
  207. class CSmil1AnchorElement: public CSmil1AAnchorElement
  208. {
  209. public:
  210.     CSmil1AnchorElement (SMIL1Node* pNode);
  211.     virtual ~CSmil1AnchorElement ();
  212.     virtual BOOL isCurrentLink (UINT32 ulTime,
  213. UINT32 ulXOffset,
  214. UINT32 ulYOffset,
  215. HXxRect regionRect);
  216.     virtual void rescale (double dXScale,
  217. double dYScale,
  218. BOOL bResetOriginalCoords);
  219.     virtual void rescaleAbsolute(double dXScale, double dYScale);
  220.     BOOL m_bTimeValueSet;
  221.     BOOL m_bCoordsSet;
  222.     UINT32 m_ulLeftX;
  223.     UINT32 m_ulOriginalLeftX;
  224.     BOOL m_bLeftXIsPercent;
  225.     UINT32 m_ulTopY;
  226.     UINT32 m_ulOriginalTopY;
  227.     BOOL m_bTopYIsPercent;
  228.     UINT32 m_ulRightX;
  229.     UINT32 m_ulOriginalRightX;
  230.     BOOL m_bRightXIsPercent;
  231.     UINT32 m_ulBottomY;
  232.     UINT32 m_ulOriginalBottomY;
  233.     BOOL m_bBottomYIsPercent;
  234.     CHXString m_fragmentID;
  235.     INT32 m_zIndex;
  236. };
  237. class CSmil1ParElement: public CSmil1Element
  238. {
  239. public:
  240.     CSmil1ParElement (SMIL1Node* pNode);
  241.     virtual ~CSmil1ParElement ();
  242. };
  243. class CSmil1SeqElement: public CSmil1Element
  244. {
  245. public:
  246.     CSmil1SeqElement (SMIL1Node* pNode);
  247.     virtual ~CSmil1SeqElement ();
  248. };
  249. #endif /* _SM1ELEM_H_ */