/* 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. */ #ifdef PT_TEST #include "ut_types.h" #include "ut_test.h" #include "pf_Frag.h" #include "pf_Frag_FmtMark.h" #include "pf_Frag_Object.h" #include "pf_Frag_Strux_Block.h" #include "pf_Frag_Strux_Section.h" #include "pf_Frag_Text.h" #include "pt_PieceTable.h" /*****************************************************************/ /*****************************************************************/ void pf_Frag::__dump(FILE * fp) const { fprintf(fp," %sFragment %p type[%d]\n", ((m_type==PFT_EndOfDoc) ? "EOD" : "Unk"), (void*)this,m_type); } void pf_Frag_FmtMark::__dump(FILE * fp) const { fprintf(fp," FmtMrkFragment %p api[%08lx]\n",(void*)this,(long unsigned int)m_indexAP); } void pf_Frag_Strux_Block::__dump(FILE * fp) const { fprintf(fp," Block %p api[%08lx]\n", (void*)this,(long)m_indexAP); } void pf_Frag_Strux_Section::__dump(FILE * fp) const { fprintf(fp," Section %p api[%08lx]\n", (void*)this,(long)m_indexAP); } void pf_Frag_Text::__dump(FILE * fp) const { fprintf(fp," TextFragment %p b[%08lx,%ld] api[%08lx]\n", (void*)this,(long)m_bufIndex,(long)m_length,(long)m_indexAP); const UT_UCSChar * ptr = m_pPieceTable->getPointer(m_bufIndex); char c; UT_uint32 k; fprintf(fp,"\t["); for (k=0; k 0x7f)) ? '@' : (char)ptr[k]); fprintf(fp,"%c",c); } fprintf(fp,"]\n"); } void pf_Frag_Object::__dump(FILE * fp) const { char * sz = ""; switch (m_objectType) { case PTO_Image: sz = "Image"; break; case PTO_Field: sz = "Field"; break; default: sz = "TODO"; break; } fprintf(fp," Object %p t[%s] api[%08lx]\n", (void*)this,sz,(long)m_indexAP); } #endif /* PT_TEST */