webengine/wmlengine/src/lmgr/include/nw_lmgr_verticaltablecellbox.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 03 May 2010 13:32:15 +0300
changeset 68 92a765b5b3e7
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 201015 Kit: 201018

/*
* 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: 
*
*/


#ifndef NW_LMGR_VERTICALTABLECELLBOX_H
#define NW_LMGR_VERTICALTABLECELLBOX_H

#include "nw_lmgr_verticaltablebox.h"

#ifdef __cplusplus
extern "C" 
{
#endif /* __cplusplus */


/* ------------------------------------------------------------------------- */
typedef struct NW_LMgr_VerticalTableCellBox_s NW_LMgr_VerticalTableCellBox_t;

typedef struct NW_LMgr_VerticalTableCellBox_ClassPart_s 
{
  void** unused;			/* empty class part */
} NW_LMgr_VerticalTableCellBox_ClassPart_t;

/* ------------------------------------------------------------------------- */
typedef struct NW_LMgr_VerticalTableCellBox_Class_s 
{
  NW_Object_Core_ClassPart_t NW_Object_Core;
  NW_Object_Base_ClassPart_t NW_Object_Base;
  NW_Object_Dynamic_ClassPart_t NW_Object_Dynamic;
  NW_LMgr_Box_ClassPart_t NW_LMgr_Box;
  NW_LMgr_ContainerBox_ClassPart_t NW_LMgr_ContainerBox;
  NW_LMgr_FormatBox_ClassPart_t NW_LMgr_FormatBox;
  NW_LMgr_FlowBox_ClassPart_t NW_LMgr_FlowBox;
  NW_LMgr_BidiFlowBox_ClassPart_t NW_LMgr_BidiFlowBox;
  NW_LMgr_VerticalTableCellBox_ClassPart_t NW_LMgr_VerticalTableCellBox;
} NW_LMgr_VerticalTableCellBox_Class_t;

struct NW_LMgr_VerticalTableCellBox_s 
{
  NW_LMgr_BidiFlowBox_t super;
};

/* ------------------------------------------------------------------------- */

#define NW_LMgr_VerticalTableCellBox_GetClassPart(_object) \
(NW_Object_GetClassPart(_object, NW_LMgr_VerticalTableCellBox))

#define NW_LMgr_VerticalTableCellBoxOf(_object) \
((NW_LMgr_VerticalTableCellBox_t*) (_object))

/* ------------------------------------------------------------------------- */

NW_LMGR_EXPORT const NW_LMgr_VerticalTableCellBox_Class_t NW_LMgr_VerticalTableCellBox_Class;

NW_LMGR_EXPORT
NW_LMgr_VerticalTableCellBox_t*
NW_LMgr_VerticalTableCellBox_New (NW_ADT_Vector_Metric_t numProperties);

#ifdef __cplusplus
} // extern "C" {
#endif /* __cplusplus */

#endif  /* NW_LMGR_VERTICALTABLECELLBOX_H */