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

Symbian

开发平台:

Visual C++

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