layout.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 LAYOUT_H
  36. #define LAYOUT_H
  37. // Forward declarations
  38. typedef _INTERFACE IHXSite     IHXSite;
  39. typedef _INTERFACE IHXSiteUser IHXSiteUser;
  40. class CHXSimpleList;
  41. class CSmilRegion;
  42. class CHXString;
  43. class CSmilRootLayout;
  44. #if defined(HELIX_FEATURE_SMIL2_MULTIWINDOWLAYOUT)
  45. class CSmilViewport;
  46. #endif /* #if defined(HELIX_FEATURE_SMIL2_MULTIWINDOWLAYOUT) */
  47. class CSmilPassiveSiteWatcher;
  48. class CSmilSiteUser;
  49. typedef enum
  50. {
  51.     BoxDimensionWidth,
  52.     BoxDimensionHeight
  53. }
  54. BoxDimension;
  55. class CSmilBasicBox
  56. {
  57. public:
  58.     CSmilBasicBox();
  59.     virtual ~CSmilBasicBox();
  60.     virtual HX_RESULT computeDimension(BoxDimension eDim) = 0;
  61.     virtual HX_RESULT resolveFromChildren(BoxDimension eDim) = 0;
  62.     CSmilBasicBox*           m_pParent;
  63.     CHXSimpleList*           m_pChildList;
  64.     HXxRect                  m_Rect;
  65.     HXxRect                  m_RectNoZoom;
  66.     IHXSite*                m_pSite;
  67.     CSmilPassiveSiteWatcher* m_pPassiveSiteWatcher;
  68.     CSmilSiteUser*           m_pSiteUser;
  69.     ResizeBehavior           m_eResizeBehavior;
  70.     double                   m_dZoomScaleFactorX;
  71.     double                   m_dZoomScaleFactorY;
  72.     CHXSimpleList*           m_pChildRendererSiteList;
  73.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  74.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  75.     HX_BITFIELD              m_bWidthResolved : 1;
  76.     HX_BITFIELD              m_bDefaultWidthAssigned : 1;
  77.     HX_BITFIELD              m_bHeightResolved : 1;
  78.     HX_BITFIELD              m_bDefaultHeightAssigned : 1;
  79.     HX_BITFIELD              m_bSiteChangingSize : 1;
  80.     HX_BITFIELD              m_bNested : 1;
  81.     HX_RESULT addChild(CSmilBasicBox* pBox);
  82.     HX_RESULT addRendererSiteChild(IHXSite* pSite);
  83.     HX_RESULT removeRendererSiteChild(IHXSite* pSite);
  84.     
  85.     BOOL      isResolved(BoxDimension eDim);
  86.     HX_RESULT computeChildrenMax(BoxDimension eDim,
  87.                                  BOOL         bAllMustBeValid,
  88.                                  REF(INT32)   rlMax);
  89. };
  90. class CSmilBasicRegion : public CSmilBasicBox
  91. {
  92. public:
  93.     CSmilBasicRegion(CSmilRegion* pSmilRegion);
  94.     virtual ~CSmilBasicRegion();
  95.     virtual HX_RESULT computeDimension(BoxDimension eDim);
  96.     virtual HX_RESULT resolveFromChildren(BoxDimension eDim);
  97.     static  HX_RESULT resolveDimension(double dLeft,  CSS2Type eLeftType,
  98.                                        double dRight, CSS2Type eRightType,
  99.                                        double dWidth, CSS2Type eWidthType,
  100.                                        BOOL bHaveParentWidth, double dParentWidth,
  101.                                        REF(INT32) rlRectMin,
  102.                                        REF(INT32) rlRectMax);
  103.     CSmilRegion*   m_pSmilRegion;
  104.     HXxRect        m_rect;
  105.     HXxRect        m_originalRect;
  106.     HXxSize        m_mediaSize;
  107.     HXxSize        m_originalMediaSize;
  108.     LayoutRect     m_LayoutRect;
  109.     INT32          m_lZIndex;
  110.     Fit            m_eFit;
  111.     CHXString      m_region;
  112.     UINT32         m_ulBackgroundColor;
  113.     CSS2Type       m_eBackgroundColorType;
  114.     double         m_dSoundLevel;
  115.     ShowBackground m_eShowBackground;
  116.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  117.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  118.     HX_BITFIELD    m_bMediaSizeSet : 1;
  119.     HX_BITFIELD    m_bImplicitRegion : 1;
  120.     HX_BITFIELD    m_bWidthUnspecified : 1;
  121.     HX_BITFIELD    m_bHeightUnspecified : 1;
  122.     HX_BITFIELD    m_bUnderRootLayout : 1;
  123. };
  124. class CSmilBasicRootLayout : public CSmilBasicBox
  125. {
  126. public:
  127.     CSmilBasicRootLayout();
  128.     virtual ~CSmilBasicRootLayout();
  129.     virtual HX_RESULT computeDimension(BoxDimension eDim);
  130.     virtual HX_RESULT resolveFromChildren(BoxDimension eDim);
  131.     void           SetParserRootLayout(CSmilRootLayout* pRoot);
  132.     BOOL           IsRootLayoutElementPresent() const;
  133.     BOOL           IsWidthSet() const;
  134.     BOOL           IsHeightSet() const;
  135.     UINT32         GetWidth() const;
  136.     UINT32         GetHeight() const;
  137.     UINT32         GetBackgroundColor() const;
  138.     CSmilRootLayout* m_pRoot;
  139.     HXxSize          m_OriginalSize;
  140.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  141.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  142.     HX_BITFIELD      m_bOriginalWidthSet : 1;
  143.     HX_BITFIELD      m_bOriginalHeightSet : 1;
  144. };
  145. inline BOOL CSmilBasicRootLayout::IsRootLayoutElementPresent() const
  146. {
  147.     return (m_pRoot ? TRUE : FALSE);
  148. }
  149. #if defined(HELIX_FEATURE_SMIL2_MULTIWINDOWLAYOUT)
  150. class CSmilBasicViewport : public CSmilBasicBox
  151. {
  152. public:
  153.     CSmilBasicViewport(CSmilViewport* pPort);
  154.     virtual ~CSmilBasicViewport();
  155.     virtual HX_RESULT computeDimension(BoxDimension eDim);
  156.     virtual HX_RESULT resolveFromChildren(BoxDimension eDim);
  157.     CSmilViewport* m_pPort;
  158.     UINT32         m_ulNumActiveMedia;
  159.     CHXString      m_id;
  160.     HXxSize        m_OriginalSize;
  161.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  162.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  163.     HX_BITFIELD    m_bOpen : 1;
  164.     HX_BITFIELD    m_bOriginalWidthSet : 1;
  165.     HX_BITFIELD    m_bOriginalHeightSet : 1;
  166.     HX_BITFIELD    m_bViewportIsSetup : 1;
  167. };
  168. #endif /* #if defined(HELIX_FEATURE_SMIL2_MULTIWINDOWLAYOUT) */
  169. #endif