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 <parachangetrackinginfo.hxx>
21 :
22 : #include <wrong.hxx>
23 : #include <com/sun/star/text/TextMarkupType.hpp>
24 :
25 : #include <txtfrm.hxx>
26 : #include <ndtxt.hxx>
27 : #include <IDocumentRedlineAccess.hxx>
28 : #include <docary.hxx>
29 : #include <redline.hxx>
30 :
31 : #include <algorithm>
32 :
33 : namespace {
34 0 : void initChangeTrackTextMarkupLists( const SwTextFrm& rTextFrm,
35 : SwWrongList*& opChangeTrackInsertionTextMarkupList,
36 : SwWrongList*& opChangeTrackDeletionTextMarkupList,
37 : SwWrongList*& opChangeTrackFormatChangeTextMarkupList )
38 : {
39 0 : opChangeTrackInsertionTextMarkupList = new SwWrongList( WRONGLIST_CHANGETRACKING );
40 0 : opChangeTrackDeletionTextMarkupList = new SwWrongList( WRONGLIST_CHANGETRACKING );
41 0 : opChangeTrackFormatChangeTextMarkupList = new SwWrongList( WRONGLIST_CHANGETRACKING );
42 :
43 0 : if ( !rTextFrm.GetTextNode() )
44 : {
45 : OSL_FAIL( "<initChangeTrackTextMarkupLists(..) - missing <SwTextNode> instance!" );
46 0 : return;
47 : }
48 0 : const SwTextNode& rTextNode( *(rTextFrm.GetTextNode()) );
49 :
50 0 : const IDocumentRedlineAccess* pIDocChangeTrack( rTextNode.getIDocumentRedlineAccess() );
51 0 : if ( !pIDocChangeTrack )
52 : {
53 : OSL_FAIL( "<initChangeTrackTextMarkupLists(..) - missing <IDocumentRedlineAccess> instance!" );
54 0 : return;
55 : }
56 :
57 0 : if ( !IDocumentRedlineAccess::IsShowChanges( pIDocChangeTrack->GetRedlineMode() ) ||
58 0 : pIDocChangeTrack->GetRedlineTable().empty() )
59 : {
60 : // nothing to do --> empty change track text markup lists.
61 0 : return;
62 : }
63 :
64 : const sal_uInt16 nIdxOfFirstRedlineForTextNode =
65 0 : pIDocChangeTrack->GetRedlinePos( rTextNode, USHRT_MAX );
66 0 : if ( nIdxOfFirstRedlineForTextNode == USHRT_MAX )
67 : {
68 : // nothing to do --> empty change track text markup lists.
69 0 : return;
70 : }
71 :
72 0 : const sal_Int32 nTextFrmTextStartPos = rTextFrm.IsFollow()
73 : ? rTextFrm.GetOfst()
74 0 : : 0;
75 0 : const sal_Int32 nTextFrmTextEndPos = rTextFrm.HasFollow()
76 0 : ? rTextFrm.GetFollow()->GetOfst()
77 0 : : rTextFrm.GetText().getLength();
78 :
79 : // iteration over the redlines which overlap with the text node.
80 0 : const SwRedlineTable& rRedlineTable = pIDocChangeTrack->GetRedlineTable();
81 0 : const sal_uInt16 nRedlineCount( rRedlineTable.size() );
82 0 : for ( sal_uInt16 nActRedline = nIdxOfFirstRedlineForTextNode;
83 : nActRedline < nRedlineCount;
84 : ++nActRedline)
85 : {
86 0 : const SwRangeRedline* pActRedline = rRedlineTable[ nActRedline ];
87 0 : if ( pActRedline->Start()->nNode > rTextNode.GetIndex() )
88 : {
89 0 : break;
90 : }
91 :
92 0 : sal_Int32 nTextNodeChangeTrackStart(COMPLETE_STRING);
93 0 : sal_Int32 nTextNodeChangeTrackEnd(COMPLETE_STRING);
94 : pActRedline->CalcStartEnd( rTextNode.GetIndex(),
95 : nTextNodeChangeTrackStart,
96 0 : nTextNodeChangeTrackEnd );
97 0 : if ( nTextNodeChangeTrackStart > nTextFrmTextEndPos ||
98 0 : nTextNodeChangeTrackEnd < nTextFrmTextStartPos )
99 : {
100 : // Consider only redlines which overlap with the text frame's text.
101 0 : continue;
102 : }
103 :
104 0 : SwWrongList* pMarkupList( 0 );
105 0 : switch ( pActRedline->GetType() )
106 : {
107 : case nsRedlineType_t::REDLINE_INSERT:
108 : {
109 0 : pMarkupList = opChangeTrackInsertionTextMarkupList;
110 : }
111 0 : break;
112 : case nsRedlineType_t::REDLINE_DELETE:
113 : {
114 0 : pMarkupList = opChangeTrackDeletionTextMarkupList;
115 : }
116 0 : break;
117 : case nsRedlineType_t::REDLINE_FORMAT:
118 : {
119 0 : pMarkupList = opChangeTrackFormatChangeTextMarkupList;
120 : }
121 0 : break;
122 : default:
123 : {
124 : // other types are not considered
125 : }
126 : }
127 0 : if ( pMarkupList )
128 : {
129 : const sal_Int32 nTextFrmChangeTrackStart =
130 0 : std::max(nTextNodeChangeTrackStart, nTextFrmTextStartPos);
131 :
132 : const sal_Int32 nTextFrmChangeTrackEnd =
133 0 : std::min(nTextNodeChangeTrackEnd, nTextFrmTextEndPos);
134 :
135 : pMarkupList->Insert( OUString(), 0,
136 : nTextFrmChangeTrackStart,
137 : nTextFrmChangeTrackEnd - nTextFrmChangeTrackStart,
138 0 : pMarkupList->Count() );
139 : }
140 : } // eof iteration over the redlines which overlap with the text node
141 : }
142 : } // eof anonymous namespace
143 :
144 65 : SwParaChangeTrackingInfo::SwParaChangeTrackingInfo( const SwTextFrm& rTextFrm )
145 : : mrTextFrm( rTextFrm )
146 : , mpChangeTrackInsertionTextMarkupList( 0 )
147 : , mpChangeTrackDeletionTextMarkupList( 0 )
148 65 : , mpChangeTrackFormatChangeTextMarkupList( 0 )
149 : {
150 65 : }
151 :
152 65 : SwParaChangeTrackingInfo::~SwParaChangeTrackingInfo()
153 : {
154 65 : reset();
155 65 : }
156 :
157 137 : void SwParaChangeTrackingInfo::reset()
158 : {
159 137 : delete mpChangeTrackInsertionTextMarkupList;
160 137 : mpChangeTrackInsertionTextMarkupList = 0;
161 :
162 137 : delete mpChangeTrackDeletionTextMarkupList;
163 137 : mpChangeTrackDeletionTextMarkupList = 0;
164 :
165 137 : delete mpChangeTrackFormatChangeTextMarkupList;
166 137 : mpChangeTrackFormatChangeTextMarkupList = 0;
167 137 : }
168 :
169 0 : const SwWrongList* SwParaChangeTrackingInfo::getChangeTrackingTextMarkupList( const sal_Int32 nTextMarkupType )
170 : {
171 0 : SwWrongList* pChangeTrackingTextMarkupList = 0;
172 :
173 0 : if ( mpChangeTrackInsertionTextMarkupList == 0 )
174 : {
175 : OSL_ENSURE( mpChangeTrackDeletionTextMarkupList == 0,
176 : "<SwParaChangeTrackingInfo::getChangeTrackingTextMarkupList(..) - <mpChangeTrackDeletionTextMarkupList> expected to be NULL." );
177 : OSL_ENSURE( mpChangeTrackFormatChangeTextMarkupList == 0,
178 : "<SwParaChangeTrackingInfo::getChangeTrackingTextMarkupList(..) - <mpChangeTrackFormatChangeTextMarkupList> expected to be NULL." );
179 : initChangeTrackTextMarkupLists( mrTextFrm,
180 : mpChangeTrackInsertionTextMarkupList,
181 : mpChangeTrackDeletionTextMarkupList,
182 0 : mpChangeTrackFormatChangeTextMarkupList );
183 : }
184 :
185 0 : switch ( nTextMarkupType )
186 : {
187 : case css::text::TextMarkupType::TRACK_CHANGE_INSERTION:
188 : {
189 0 : pChangeTrackingTextMarkupList = mpChangeTrackInsertionTextMarkupList;
190 : }
191 0 : break;
192 : case css::text::TextMarkupType::TRACK_CHANGE_DELETION:
193 : {
194 0 : pChangeTrackingTextMarkupList = mpChangeTrackDeletionTextMarkupList;
195 : }
196 0 : break;
197 : case css::text::TextMarkupType::TRACK_CHANGE_FORMATCHANGE:
198 : {
199 0 : pChangeTrackingTextMarkupList = mpChangeTrackFormatChangeTextMarkupList;
200 : }
201 0 : break;
202 : default:
203 : {
204 : OSL_FAIL( "<SwParaChangeTrackingInfo::getChangeTrackingTextMarkupList(..)> - misusage - unexpected text markup type for change tracking." );
205 : }
206 : }
207 :
208 0 : return pChangeTrackingTextMarkupList;
209 177 : }
210 :
211 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|