/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include "ut_types.h" #include "pt_Types.h" #include "ut_assert.h" #include "fl_Layout.h" #include "pd_Document.h" #include "fd_Field.h" fl_Layout::fl_Layout(PTStruxType type, PL_StruxDocHandle sdh) { //UT_ASSERT(sdh); Sevior this assert screws up my fake fl_layout code m_type = type; m_sdh = sdh; m_apIndex = 0; m_pAutoNum = NULL; m_pDoc = NULL; // set by child } fl_Layout::~fl_Layout() { } PL_StruxDocHandle fl_Layout::getStruxDocHandle(void) { return m_sdh; } PTStruxType fl_Layout::getType(void) const { return m_type; } PT_AttrPropIndex fl_Layout::getAttrPropIndex(void) const { return m_apIndex; } void fl_Layout::setAttrPropIndex(PT_AttrPropIndex apIndex) { m_apIndex = apIndex; } UT_Bool fl_Layout::getAttrProp(const PP_AttrProp ** ppAP) const { return m_pDoc->getAttrProp(m_apIndex,ppAP); } UT_Bool fl_Layout::getSpanAttrProp(UT_uint32 offset, UT_Bool bLeftSide, const PP_AttrProp ** ppAP) const { return m_pDoc->getSpanAttrProp(m_sdh,offset,bLeftSide,ppAP); } UT_Bool fl_Layout::getField(UT_uint32 offset, fd_Field * & pField) { return m_pDoc->getField(m_sdh,offset,pField); } void fl_Layout::setAutoNum(fl_AutoNum * pAutoNum) { m_pAutoNum = pAutoNum; }