Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
5 : : * This Source Code Form is subject to the terms of the Mozilla Public
6 : : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
11 : : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : : * contributor license agreements. See the NOTICE file distributed
13 : : * with this work for additional information regarding copyright
14 : : * ownership. The ASF licenses this file to you under the Apache
15 : : * License, Version 2.0 (the "License"); you may not use this file
16 : : * except in compliance with the License. You may obtain a copy of
17 : : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : : */
19 : :
20 : : #include <svl/itempool.hxx>
21 : : #include <txatbase.hxx>
22 : : #include <fmtfld.hxx>
23 : : #include <docufld.hxx>
24 : :
25 : 48420 : SwTxtAttr::SwTxtAttr( SfxPoolItem& rAttr, xub_StrLen nStart )
26 : : : m_pAttr( &rAttr )
27 : : , m_nStart( nStart )
28 : : , m_bDontExpand( false )
29 : : , m_bLockExpandFlag( false )
30 : : , m_bDontMoveAttr( false )
31 : : , m_bCharFmtAttr( false )
32 : : , m_bOverlapAllowedAttr( false )
33 : : , m_bPriorityAttr( false )
34 : : , m_bDontExpandStart( false )
35 : : , m_bNesting( false )
36 : 48420 : , m_bHasDummyChar( false )
37 : : {
38 : 48420 : }
39 : :
40 : 48255 : SwTxtAttr::~SwTxtAttr( )
41 : : {
42 [ - + ]: 48255 : }
43 : :
44 : 3057047 : xub_StrLen* SwTxtAttr::GetEnd()
45 : : {
46 : 3057047 : return 0;
47 : : }
48 : :
49 : 48255 : void SwTxtAttr::Destroy( SwTxtAttr * pToDestroy, SfxItemPool& rPool )
50 : : {
51 [ - + ]: 96510 : if (!pToDestroy) return;
52 : 48255 : SfxPoolItem * const pAttr = pToDestroy->m_pAttr;
53 [ + - ]: 48255 : delete pToDestroy;
54 : 48255 : rPool.Remove( *pAttr );
55 : : }
56 : :
57 : 17651 : int SwTxtAttr::operator==( const SwTxtAttr& rAttr ) const
58 : : {
59 : 17651 : return GetAttr() == rAttr.GetAttr();
60 : : }
61 : :
62 : 44679 : SwTxtAttrEnd::SwTxtAttrEnd( SfxPoolItem& rAttr,
63 : : xub_StrLen nStart, xub_StrLen nEnd ) :
64 : 44679 : SwTxtAttr( rAttr, nStart ), m_nEnd( nEnd )
65 : : {
66 : 44679 : }
67 : :
68 : 702237 : xub_StrLen* SwTxtAttrEnd::GetEnd()
69 : : {
70 : 702237 : return & m_nEnd;
71 : : }
72 : :
73 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|