webengine/wmlengine/src/lmgr/src/LMgrMediaBox.cpp
changeset 74 91031d3aab7d
parent 68 92a765b5b3e7
child 85 e358f2276d3f
--- a/webengine/wmlengine/src/lmgr/src/LMgrMediaBox.cpp	Mon May 03 13:32:15 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,69 +0,0 @@
-/*
-* Copyright (c) 2000 - 2001 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of the License "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description: 
-*
-*/
-
-
-#include "nw_lmgr_mediaboxi.h"
-
-/* The static instance of the Media_Box class object */
-
-
-const
-NW_LMgr_MediaBox_Class_t  NW_LMgr_MediaBox_Class = {
-  { /* NW_Object_Core            */
-    /* super                     */ &NW_LMgr_Box_Class,
-    /* queryInterface            */ _NW_Object_Base_QueryInterface
-  },
-  { /* NW_Object_Base            */
-    /* interfaceList             */ NULL
-  },
-  { /* NW_Object_Dynamic         */
-    /* instanceSize              */ sizeof (NW_LMgr_MediaBox_t),
-    /* construct                 */ _NW_LMgr_Box_Construct,
-    /* destruct                  */ NULL
-  },
-  { /* NW_LMgr_Box               */
-    /* split                     */ _NW_LMgr_Box_Split,
-    /* resize                    */ _NW_LMgr_Box_Resize,
-    /* postResize                */ _NW_LMgr_Box_PostResize,
-    /* getMinimumContentSize     */ _NW_LMgr_Box_GetMinimumContentSize,
-    /* hasFixedContentSize       */ _NW_LMgr_MediaBox_HasFixedContentSize,
-    /* constrain                 */ _NW_LMgr_Box_Constrain,
-    /* draw                      */ _NW_LMgr_Box_Draw,
-    /* render                    */ _NW_LMgr_Box_Render,
-    /* getBaseline               */ _NW_LMgr_Box_GetBaseline,
-    /* shift                     */ _NW_LMgr_Box_Shift,
-    /* clone                     */ _NW_LMgr_Box_Clone
-  },
-  { /* NW_LMgr_MediaBox          */
-    /* unused                    */ 0
-  }
-};
-
-/* Media boxes tend to have fixed content size */
-
-NW_Bool
-_NW_LMgr_MediaBox_HasFixedContentSize(NW_LMgr_Box_t *box){
-  NW_REQUIRED_PARAM(box);
-  return NW_TRUE;
-}
-
-
-
-
-
-
-