1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: atrtox.cxx,v $
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"
36 #include <txttxmrk.hxx>
41 SwTxtTOXMark::SwTxtTOXMark( SwTOXMark
& rAttr
,
42 xub_StrLen nStartPos
, xub_StrLen
* pEnd
)
43 : SwTxtAttrEnd( rAttr
, nStartPos
, nStartPos
)
47 rAttr
.pTxtAttr
= this;
48 if ( !rAttr
.GetAlternativeText().Len() )
55 SetHasDummyChar(true);
57 SetDontMoveAttr( true );
58 SetOverlapAllowedAttr( true );
61 SwTxtTOXMark::~SwTxtTOXMark()
65 xub_StrLen
* SwTxtTOXMark::GetEnd()
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
80 for(USHORT i
=0; i
< nCount
; ++i
)
82 const SwTOXType
* pSrcType
= pDoc
->GetTOXType(eType
, i
);
83 if(pSrcType
->GetTypeName() == rNm
)
89 // kein entsprechender Typ vorhanden -> neu erzeugen
93 pDoc
->InsertTOXType( SwTOXType( eType
, rNm
) );
94 pType
= pDoc
->GetTOXType(eType
, 0);
96 // Verzeichnistyp umhaengen
98 ((SwTOXType
*)pType
)->Add( &rTOX
);