Update ooo320-m1
[ooovba.git] / sw / source / core / txtnode / atrtox.cxx
blob4cee6eef1b9a61ffe4f405fe992cef58a881800e
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: atrtox.cxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sw.hxx"
35 #include <doc.hxx>
36 #include <txttxmrk.hxx>
37 #include <swfont.hxx>
38 #include <tox.hxx>
39 #include <ndtxt.hxx>
41 SwTxtTOXMark::SwTxtTOXMark( SwTOXMark& rAttr,
42 xub_StrLen nStartPos, xub_StrLen* pEnd )
43 : SwTxtAttrEnd( rAttr, nStartPos, nStartPos )
44 , m_pTxtNode( 0 )
45 , m_pEnd( 0 )
47 rAttr.pTxtAttr = this;
48 if ( !rAttr.GetAlternativeText().Len() )
50 m_nEnd = *pEnd;
51 m_pEnd = & m_nEnd;
53 else
55 SetHasDummyChar(true);
57 SetDontMoveAttr( true );
58 SetOverlapAllowedAttr( true );
61 SwTxtTOXMark::~SwTxtTOXMark()
65 xub_StrLen* SwTxtTOXMark::GetEnd()
67 return m_pEnd;
70 void SwTxtTOXMark::CopyTOXMark( SwDoc* pDoc )
72 SwTOXMark& rTOX = (SwTOXMark&)GetTOXMark();
73 TOXTypes eType = rTOX.GetTOXType()->GetType();
74 USHORT nCount = pDoc->GetTOXTypeCount( eType );
75 const SwTOXType* pType = 0;
76 const XubString& rNm = rTOX.GetTOXType()->GetTypeName();
78 // kein entsprechender Verzeichnistyp vorhanden -> anlegen
79 // sonst verwenden
80 for(USHORT i=0; i < nCount; ++i)
82 const SwTOXType* pSrcType = pDoc->GetTOXType(eType, i);
83 if(pSrcType->GetTypeName() == rNm )
85 pType = pSrcType;
86 break;
89 // kein entsprechender Typ vorhanden -> neu erzeugen
91 if(!pType)
93 pDoc->InsertTOXType( SwTOXType( eType, rNm ) );
94 pType = pDoc->GetTOXType(eType, 0);
96 // Verzeichnistyp umhaengen
98 ((SwTOXType*)pType)->Add( &rTOX );