LCOV - code coverage report
Current view: top level - libreoffice/lotuswordpro/source/filter - lwpchangemgr.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 32 72 44.4 %
Date: 2012-12-27 Functions: 5 7 71.4 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*************************************************************************
       3             :  *
       4             :  *  The Contents of this file are made available subject to the terms of
       5             :  *  either of the following licenses
       6             :  *
       7             :  *         - GNU Lesser General Public License Version 2.1
       8             :  *         - Sun Industry Standards Source License Version 1.1
       9             :  *
      10             :  *  Sun Microsystems Inc., October, 2000
      11             :  *
      12             :  *  GNU Lesser General Public License Version 2.1
      13             :  *  =============================================
      14             :  *  Copyright 2000 by Sun Microsystems, Inc.
      15             :  *  901 San Antonio Road, Palo Alto, CA 94303, USA
      16             :  *
      17             :  *  This library is free software; you can redistribute it and/or
      18             :  *  modify it under the terms of the GNU Lesser General Public
      19             :  *  License version 2.1, as published by the Free Software Foundation.
      20             :  *
      21             :  *  This library is distributed in the hope that it will be useful,
      22             :  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      23             :  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      24             :  *  Lesser General Public License for more details.
      25             :  *
      26             :  *  You should have received a copy of the GNU Lesser General Public
      27             :  *  License along with this library; if not, write to the Free Software
      28             :  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
      29             :  *  MA  02111-1307  USA
      30             :  *
      31             :  *
      32             :  *  Sun Industry Standards Source License Version 1.1
      33             :  *  =================================================
      34             :  *  The contents of this file are subject to the Sun Industry Standards
      35             :  *  Source License Version 1.1 (the "License"); You may not use this file
      36             :  *  except in compliance with the License. You may obtain a copy of the
      37             :  *  License at http://www.openoffice.org/license.html.
      38             :  *
      39             :  *  Software provided under this License is provided on an "AS IS" basis,
      40             :  *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
      41             :  *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
      42             :  *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
      43             :  *  See the License for the specific provisions governing your rights and
      44             :  *  obligations concerning the Software.
      45             :  *
      46             :  *  The Initial Developer of the Original Code is: IBM Corporation
      47             :  *
      48             :  *  Copyright: 2008 by IBM Corporation
      49             :  *
      50             :  *  All Rights Reserved.
      51             :  *
      52             :  *  Contributor(s): _______________________________________
      53             :  *
      54             :  *
      55             :  ************************************************************************/
      56             : /*************************************************************************
      57             :  * @file
      58             :  *  For LWP filter architecture prototype
      59             :  ************************************************************************/
      60             : /*************************************************************************
      61             :  * Change History
      62             :  Jun 2005           Created
      63             :  ************************************************************************/
      64             : #include "lwpchangemgr.hxx"
      65             : #include <rtl/ustring.hxx>
      66             : #include "lwppara.hxx"
      67             : #include "lwpfribheader.hxx"
      68             : #include "lwpfribptr.hxx"
      69             : #include "lwpfrib.hxx"
      70             : #include "lwpstory.hxx"
      71             : #include "lwpfribsection.hxx"
      72             : #include "lwpsection.hxx"
      73             : #include "lwpfribbreaks.hxx"
      74             : #include "lwpfribframe.hxx"
      75             : #include "lwpfribtable.hxx"
      76             : #include "lwphyperlinkmgr.hxx"
      77             : #include "lwpfootnote.hxx"
      78             : #include "lwpnotes.hxx"
      79             : #include "lwpfribmark.hxx"
      80             : #include "xfilter/xftextspan.hxx"
      81             : #include "xfilter/xftextcontent.hxx"
      82             : #include "xfilter/xftabstop.hxx"
      83             : #include "xfilter/xflinebreak.hxx"
      84             : #include "xfilter/xfstylemanager.hxx"
      85             : #include "xfilter/xfhyperlink.hxx"
      86             : 
      87           6 : LwpChangeMgr::LwpChangeMgr()
      88             : {
      89           6 :     m_nCounter = 0;
      90           6 :     m_DocFribMap.clear();
      91           6 :     m_HeadFootFribMap.clear();
      92           6 :     m_pFribMap = &m_DocFribMap;
      93           6 :     m_ChangeList.clear();
      94           6 : }
      95          12 : LwpChangeMgr::~LwpChangeMgr()
      96             : {
      97           6 :     m_pFribMap=NULL;
      98           6 :     m_DocFribMap.clear();
      99           6 :     m_HeadFootFribMap.clear();
     100           6 :     m_ChangeList.clear();
     101           6 : }
     102             : 
     103           0 : void LwpChangeMgr::AddChangeFrib(LwpFrib* pFrib)
     104             : {
     105           0 :     m_nCounter++;
     106           0 :     OUString sID = A2OUSTR("ct")+ Int32ToOUString(m_nCounter);
     107           0 :     m_pFribMap->insert(std::pair<LwpFrib*,OUString>(pFrib,sID));
     108           0 : }
     109             : 
     110           0 : OUString LwpChangeMgr::GetChangeID(LwpFrib* pFrib)
     111             : {
     112           0 :     std::map<LwpFrib*,OUString>::iterator iter;
     113           0 :     iter = m_pFribMap->find(pFrib);
     114           0 :     if (iter == m_pFribMap->end())
     115           0 :         return A2OUSTR("");
     116             :     else
     117           0 :         return iter->second;
     118             : }
     119             : 
     120           3 : void LwpChangeMgr::ConvertAllChange(IXFStream* pStream)
     121             : {
     122           3 :     std::map<LwpFrib*,OUString>::iterator iter;
     123           3 :     for (iter=m_DocFribMap.begin();iter !=m_DocFribMap.end();++iter)
     124             :     {
     125           0 :         if (iter->first->GetRevisionType() == LwpFrib::REV_INSERT)
     126             :         {
     127           0 :             XFChangeInsert* pInsert = new XFChangeInsert;
     128           0 :             pInsert->SetChangeID(iter->second);
     129           0 :             pInsert->SetEditor(iter->first->GetEditor());
     130           0 :             m_ChangeList.push_back(pInsert);
     131             :         }
     132           0 :         else if (iter->first->GetRevisionType() == LwpFrib::REV_DELETE)
     133             :         {
     134           0 :             XFChangeDelete* pDelete = new XFChangeDelete;
     135           0 :             pDelete->SetChangeID(iter->second);
     136           0 :             pDelete->SetEditor(iter->first->GetEditor());
     137           0 :             m_ChangeList.push_back(pDelete);
     138             :         }
     139             :     }
     140             : 
     141           3 :     std::vector<XFChangeRegion*>::iterator iter1;
     142           3 :     pStream->GetAttrList()->Clear();
     143           3 :     if (m_ChangeList.empty())
     144           3 :             return;
     145             :     // Add for disable change tracking
     146           0 :     pStream->GetAttrList()->AddAttribute( A2OUSTR("text:track-changes"),A2OUSTR("false"));
     147           0 :     pStream->StartElement( A2OUSTR("text:tracked-changes") );
     148           0 :     for (iter1=m_ChangeList.begin();iter1 !=m_ChangeList.end();++iter1)
     149           0 :         (*iter1)->ToXml(pStream);
     150             : 
     151           0 :     pStream->EndElement(A2OUSTR("text:tracked-changes"));
     152             : 
     153           0 :     for (iter1=m_ChangeList.begin();iter1 !=m_ChangeList.end();++iter1)
     154             :     {
     155           0 :         delete *iter1;
     156           0 :         *iter1=NULL;
     157             :     }
     158           0 :     m_ChangeList.clear();
     159             : }
     160          32 : void LwpChangeMgr::SetHeadFootFribMap(sal_Bool bFlag)
     161             : {
     162          32 :     if (bFlag == sal_True)
     163          16 :         m_pFribMap = &m_HeadFootFribMap;
     164             :     else
     165             :     {
     166          16 :         m_HeadFootFribMap.clear();
     167          16 :         m_pFribMap = &m_DocFribMap;
     168             :     }
     169          32 : }
     170             : 
     171          16 : void LwpChangeMgr::SetHeadFootChange(XFContentContainer* pCont)
     172             : {
     173          16 :     std::map<LwpFrib*,OUString>::iterator iter;
     174          16 :     XFChangeList* pChangeList = new XFChangeList;
     175             : 
     176          16 :     for (iter=m_HeadFootFribMap.begin();iter !=m_HeadFootFribMap.end();++iter)
     177             :     {
     178           0 :         if (iter->first->GetRevisionType() == LwpFrib::REV_INSERT)
     179             :         {
     180           0 :             XFChangeInsert* pInsert = new XFChangeInsert;
     181           0 :             pInsert->SetChangeID(iter->second);
     182           0 :             pInsert->SetEditor(iter->first->GetEditor());
     183           0 :             pChangeList->Add(pInsert);
     184             :         }
     185           0 :         else if (iter->first->GetRevisionType() == LwpFrib::REV_DELETE)
     186             :         {
     187           0 :             XFChangeDelete* pDelete = new XFChangeDelete;
     188           0 :             pDelete->SetChangeID(iter->second);
     189           0 :             pDelete->SetEditor(iter->first->GetEditor());
     190           0 :             pChangeList->Add(pDelete);
     191             :         }
     192             :     }
     193             : 
     194          16 :     pCont->Add(pChangeList);
     195          16 : }
     196             : 
     197             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10