/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: IBM Corporation * * Copyright: 2008 by IBM Corporation * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ /************************************************************************* * @file * For LWP filter architecture prototype ************************************************************************/ /************************************************************************* * Change History Jan 2005 Created ************************************************************************/ #include "lwpglobalmgr.hxx" #include "lwpfribtext.hxx" #include "lwpcharsetmgr.hxx" #include "lwphyperlinkmgr.hxx" #include "lwptools.hxx" #include "xfilter/xfstylemanager.hxx" #include "xfilter/xftextspan.hxx" #include "xfilter/xfbookmark.hxx" #include "xfilter/xfentry.hxx" #include "xfilter/xftextcontent.hxx" #include "xfilter/xfcrossref.hxx" #include "xfilter/xfpagenumber.hxx" #include "xfilter/xfdocfield.hxx" #include "xfilter/xfdatestyle.hxx" #include "xfilter/xftimestyle.hxx" #include "xfilter/xfdate.hxx" #include "xfilter/xfannotation.hxx" LwpFribText::LwpFribText( LwpPara *pPara, bool bNoUnicode ) : LwpFrib(pPara), m_bNoUnicode(bNoUnicode) {} void LwpFribText::Read(LwpObjectStream* pObjStrm, sal_uInt16 len) { if( len>=1 ) { rtl_TextEncoding rEncode; if(m_bNoUnicode) { rEncode = RTL_TEXTENCODING_ISO_8859_1; } else { if (m_pModifiers && m_pModifiers->CodePage) rEncode = LwpCharSetMgr::GetInstance()-> GetTextCharEncoding(m_pModifiers->CodePage); else rEncode = LwpCharSetMgr::GetTextCharEncoding(); } LwpTools::QuickReadUnicode(pObjStrm, m_Content, len, rEncode); } } void LwpFribText::XFConvert(XFContentContainer* pXFPara,LwpStory* pStory) { if (!pStory) return; LwpHyperlinkMgr* pHyperlink = pStory->GetHyperlinkMgr(); if (pHyperlink->GetHyperlinkFlag()) LwpFrib::ConvertHyperLink(pXFPara,pHyperlink,GetText()); else LwpFrib::ConvertChars(pXFPara,GetText()); } /** * @short: Reading mothed of paranumber frib. * @param: pObjStrm wordpro object stream. * @param: len length of the frib */ void LwpFribParaNumber::Read(LwpObjectStream* pObjStrm, sal_uInt16 /*len*/) { m_nStyleID = pObjStrm->QuickReaduInt16(); m_nNumberChar = pObjStrm->QuickReaduInt16(); m_nLevel = pObjStrm->QuickReaduInt16(); m_nStart = pObjStrm->QuickReaduInt16(); } /** * @short: default constructor of LwpFribDocVar */ LwpFribDocVar::LwpFribDocVar(LwpPara* pPara) : LwpFrib(pPara), m_nType(0), m_pName(new LwpAtomHolder) { } /** * @short: destructor of LwpFribDocVar */ LwpFribDocVar::~LwpFribDocVar() { if (m_pName) { delete m_pName; m_pName = NULL; } } /** * @short: Reading mothed of document variable frib. * @param: pObjStrm wordpro object stream. * @param: len length of the frib */ void LwpFribDocVar::Read(LwpObjectStream* pObjStrm, sal_uInt16 /*len*/) { m_nType = pObjStrm->QuickReaduInt16(); m_pName->Read(pObjStrm); } /** * @short: register style for doc field (text style,date style) * @param: * @param: */ void LwpFribDocVar::RegisterStyle(LwpFoundry* pFoundry) { LwpFrib::RegisterStyle(pFoundry); switch(m_nType) { case DATECREATED: case DATELASTREVISION: { // m_TimeStyle = LwpTools::RegisterDefaultTimeStyle(); RegisterDefaultTimeStyle(); } break; case TOTALEDITTIME: RegisterTotalTimeStyle(); break; default: break; } } /** * @short: register default time style for doc field * @param: * @param: */ void LwpFribDocVar::RegisterDefaultTimeStyle() { XFDateStyle* pDateStyle = new XFDateStyle;//use the default format pDateStyle->AddMonth(); pDateStyle->AddText("/"); pDateStyle->AddMonthDay(); pDateStyle->AddText("/"); pDateStyle->AddYear(); pDateStyle->AddText(","); pDateStyle->AddHour(); pDateStyle->AddText(":"); pDateStyle->AddMinute(); pDateStyle->AddText(":"); pDateStyle->AddSecond(true,0); XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager(); m_TimeStyle = pXFStyleManager->AddStyle(pDateStyle).m_pStyle->GetStyleName(); } void LwpFribDocVar::RegisterTotalTimeStyle() { XFTimeStyle* pTimeStyle = new XFTimeStyle;//use the default format pTimeStyle->SetTruncate(false); pTimeStyle->AddMinute(); XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager(); m_TimeStyle = pXFStyleManager->AddStyle(pTimeStyle).m_pStyle->GetStyleName(); } /** * @short: convert the doc info field * @param: * @param: */ void LwpFribDocVar::XFConvert(XFContentContainer* pXFPara) { XFContent* pContent=NULL; switch(m_nType) { case FILENAME: { pContent = new XFFileName; static_cast(pContent)->SetType("FileName"); break; } case PATH: { pContent = new XFFileName; static_cast(pContent)->SetType("Path"); break; } case DESCRIPTION: pContent = new XFDescription; break; case DATECREATED: { pContent = new XFCreateTime; pContent->SetStyleName(m_TimeStyle); break; } case DATELASTREVISION: { pContent = new XFLastEditTime; pContent->SetStyleName(m_TimeStyle); break; } case NUMPAGES: pContent = new XFPageCount; break; case NUMWORDS: pContent = new XFWordCount; break; case NUMCHARS: pContent = new XFCharCount; break; case TOTALEDITTIME: { pContent = new XFTotalEditTime; pContent->SetStyleName(m_TimeStyle); break; } case KEYWORDS: pContent = new XFKeywords; break; case CREATEDBY: pContent = new XFInitialCreator; break; case DOCSIZE: { /* pContent = new XFAnnotation; XFTextContent* pSpan = new XFTextContent(); pSpan->SetText("Document Size is Here"); XFParagraph* pPara = new XFParagraph; pPara->Add(pSpan); static_cast(pContent)->Add(pPara); break; */ OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case SMARTMASTER: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case DIVISIONNAME: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case SECTIONNAME: { OUString text = "
"; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONCREATEBY: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONCREATEDATE: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONOTHEREDITORS: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONNAME: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONNUMBER: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case ALLVERSIONNAME: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONREMARK: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case DOCUMENTCATEGORY: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONLASTDATE: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case VERSIONLASTEDITOR: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case LASTEDIT: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case OTHEREDITORS: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } case NUMOFREVISION: { OUString text = ""; LwpFrib::ConvertChars(pXFPara,text); return; } default: return; } if (m_ModFlag)//(m_pModifiers) { XFTextSpan *pSpan = new XFTextSpan; pSpan->SetStyleName(GetStyleName()); pSpan->Add(pContent); pXFPara->Add(pSpan); } else pXFPara->Add(pContent); } /** * @short: Read unicode * @param: * @param: */ void LwpFribUnicode::Read(LwpObjectStream* pObjStrm, sal_uInt16 len) { if(len>1) { rtl_TextEncoding rEncode; if (m_pModifiers && m_pModifiers->CodePage) rEncode = LwpCharSetMgr::GetInstance()-> GetTextCharEncoding(m_pModifiers->CodePage); else rEncode = LwpCharSetMgr::GetTextCharEncoding(); LwpTools::QuickReadUnicode(pObjStrm, m_Content, len, rEncode); } else pObjStrm->SeekRel(len); } void LwpFribUnicode::XFConvert(XFContentContainer* pXFPara,LwpStory* pStory) { if (!pStory) return; LwpHyperlinkMgr* pHyperlink = pStory->GetHyperlinkMgr(); if (pHyperlink->GetHyperlinkFlag()) LwpFrib::ConvertHyperLink(pXFPara,pHyperlink,GetText()); else LwpFrib::ConvertChars(pXFPara,GetText()); } /** * @short: Read page number * @param: * @param: */ void LwpFribPageNumber::Read(LwpObjectStream* pObjStrm, sal_uInt16 /*len*/) { m_nNumStyle = pObjStrm->QuickReaduInt16(); m_aBefText.Read(pObjStrm); m_aAfterText.Read(pObjStrm); m_nStartNum = pObjStrm->QuickReaduInt16(); m_nStartOnPage = pObjStrm->QuickReaduInt16(); m_nFlag = pObjStrm->QuickReaduInt16(); } void LwpFribPageNumber::XFConvert(XFContentContainer* pXFPara) { if (m_nNumStyle == 0x0) return; XFPageNumber* pNum = new XFPageNumber; // pNum->SetSelect("current"); switch(m_nNumStyle) { case 0x01: pNum->SetNumFmt("1"); break; case 0x02: pNum->SetNumFmt("A"); break; case 0x03: pNum->SetNumFmt("a"); break; case 0x04: pNum->SetNumFmt("I"); break; case 0x05: pNum->SetNumFmt("i"); break; } OUString styleName = GetStyleName(); if (!m_aBefText.str().isEmpty()) { OUString textStr = m_aBefText.str(); XFTextSpan *pBef = new XFTextSpan(textStr,styleName); pXFPara->Add(pBef); } if (m_ModFlag)//(m_pModifiers) { XFTextSpan *pSpan = new XFTextSpan; pSpan->SetStyleName(styleName); pSpan->Add(pNum); pXFPara->Add(pSpan); } else pXFPara->Add(pNum); if (!m_aAfterText.str().isEmpty()) { OUString textStr = m_aAfterText.str(); XFTextSpan *pAfter = new XFTextSpan(textStr,styleName); pXFPara->Add(pAfter); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */