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 <editeng/svxenum.hxx>
21 : #include <numrule.hxx>
22 : #include <SwNodeNum.hxx>
23 : #include <ndtxt.hxx>
24 : #include <pam.hxx>
25 : #include <stdio.h>
26 : // #i83479#
27 : #include <IDocumentListItems.hxx>
28 : #include <doc.hxx>
29 :
30 0 : SwNodeNum::SwNodeNum( SwTxtNode* pTxtNode )
31 : : SwNumberTreeNode(),
32 : mpTxtNode( pTxtNode ),
33 0 : mpNumRule( 0 )
34 : {
35 0 : }
36 :
37 0 : SwNodeNum::SwNodeNum( SwNumRule* pNumRule )
38 : : SwNumberTreeNode(),
39 : mpTxtNode( 0 ),
40 0 : mpNumRule( pNumRule )
41 : {
42 0 : }
43 :
44 0 : SwNodeNum::~SwNodeNum()
45 : {
46 0 : }
47 :
48 0 : SwTxtNode * SwNodeNum::GetTxtNode() const
49 : {
50 0 : return mpTxtNode;
51 : }
52 :
53 0 : SwNumRule * SwNodeNum::GetNumRule() const
54 : {
55 0 : return mpNumRule;
56 : }
57 :
58 0 : void SwNodeNum::ChangeNumRule( SwNumRule& rNumRule )
59 : {
60 : OSL_ENSURE( GetNumRule() && GetTxtNode(),
61 : "<SwNodeNum::ChangeNumRule(..)> - missing list style and/or text node. Serious defect -> please informm OD." );
62 0 : if ( GetNumRule() && GetTxtNode() )
63 : {
64 0 : GetNumRule()->RemoveTxtNode( *(GetTxtNode()) );
65 : }
66 :
67 0 : mpNumRule = &rNumRule;
68 :
69 0 : if ( GetNumRule() && GetTxtNode() )
70 : {
71 0 : GetNumRule()->AddTxtNode( *(GetTxtNode()) );
72 : }
73 0 : }
74 :
75 0 : SwPosition SwNodeNum::GetPosition() const
76 : {
77 : OSL_ENSURE( GetTxtNode(),
78 : "<SwNodeNum::GetPosition()> - no text node set at <SwNodeNum> instance" );
79 0 : return SwPosition(*mpTxtNode);
80 : }
81 :
82 0 : SwNumberTreeNode * SwNodeNum::Create() const
83 : {
84 0 : SwNodeNum * pResult = new SwNodeNum( GetNumRule() );
85 :
86 0 : return pResult;
87 : }
88 :
89 0 : void SwNodeNum::PreAdd()
90 : {
91 : OSL_ENSURE( GetTxtNode(),
92 : "<SwNodeNum::PreAdd()> - no text node set at <SwNodeNum> instance" );
93 0 : if ( !GetNumRule() && GetTxtNode() )
94 : {
95 0 : mpNumRule = GetTxtNode()->GetNumRule();
96 : }
97 : OSL_ENSURE( GetNumRule(),
98 : "<SwNodeNum::PreAdd()> - no list style set at <SwNodeNum> instance" );
99 0 : if ( GetNumRule() && GetTxtNode() )
100 : {
101 0 : GetNumRule()->AddTxtNode( *(GetTxtNode()) );
102 : }
103 :
104 : {
105 0 : if ( GetTxtNode() &&
106 0 : GetTxtNode()->GetNodes().IsDocNodes() )
107 : {
108 0 : GetTxtNode()->getIDocumentListItems().addListItem( *this );
109 : }
110 : }
111 0 : }
112 :
113 0 : void SwNodeNum::PostRemove()
114 : {
115 : OSL_ENSURE( GetTxtNode(),
116 : "<SwNodeNum::PostRemove()> - no text node set at <SwNodeNum> instance" );
117 : OSL_ENSURE( GetNumRule(),
118 : "<SwNodeNum::PostRemove()> - no list style set at <SwNodeNum> instance" );
119 :
120 0 : if ( GetTxtNode() )
121 : {
122 0 : GetTxtNode()->getIDocumentListItems().removeListItem( *this );
123 : }
124 :
125 0 : if ( GetNumRule() )
126 : {
127 0 : if ( GetTxtNode() )
128 : {
129 0 : GetNumRule()->RemoveTxtNode( *(GetTxtNode()) );
130 : }
131 0 : mpNumRule = 0;
132 : }
133 0 : }
134 :
135 0 : bool SwNodeNum::IsNotifiable() const
136 : {
137 0 : bool aResult = true;
138 :
139 0 : if ( GetTxtNode() )
140 0 : aResult = GetTxtNode()->IsNotifiable();
141 :
142 0 : return aResult;
143 : }
144 :
145 0 : bool SwNodeNum::IsNotificationEnabled() const
146 : {
147 0 : bool aResult = true;
148 :
149 0 : if ( GetTxtNode() )
150 0 : aResult = GetTxtNode()->IsNotificationEnabled();
151 :
152 0 : return aResult;
153 : }
154 :
155 0 : bool SwNodeNum::IsContinuous() const
156 : {
157 0 : bool aResult = false;
158 :
159 : // #i64311#
160 0 : if ( GetNumRule() )
161 : {
162 0 : aResult = mpNumRule->IsContinusNum();
163 : }
164 0 : else if ( GetParent() )
165 : {
166 0 : aResult = GetParent()->IsContinuous();
167 : }
168 : else
169 : {
170 : OSL_FAIL( "<SwNodeNum::IsContinuous()> - OD debug" );
171 : }
172 :
173 0 : return aResult;
174 : }
175 :
176 0 : bool SwNodeNum::IsCounted() const
177 : {
178 0 : bool aResult = false;
179 :
180 0 : if ( GetTxtNode() )
181 : {
182 : // #i59559#
183 : // <SwTxtNode::IsCounted()> determines, if a text node is counted for numbering
184 0 : aResult = GetTxtNode()->IsCountedInList();
185 : }
186 : else
187 0 : aResult = SwNumberTreeNode::IsCounted();
188 :
189 0 : return aResult;
190 : }
191 :
192 : // #i64010#
193 0 : bool SwNodeNum::HasCountedChildren() const
194 : {
195 0 : bool bResult = false;
196 :
197 0 : tSwNumberTreeChildren::const_iterator aIt;
198 :
199 0 : for (aIt = mChildren.begin(); aIt != mChildren.end(); ++aIt)
200 : {
201 0 : SwNodeNum* pChild( dynamic_cast<SwNodeNum*>(*aIt) );
202 : OSL_ENSURE( pChild,
203 : "<SwNodeNum::HasCountedChildren()> - unexcepted type of child -> please inform OD" );
204 0 : if ( pChild &&
205 0 : ( pChild->IsCountedForNumbering() ||
206 0 : pChild->HasCountedChildren() ) )
207 : {
208 0 : bResult = true;
209 :
210 0 : break;
211 : }
212 : }
213 :
214 0 : return bResult;
215 : }
216 : // #i64010#
217 0 : bool SwNodeNum::IsCountedForNumbering() const
218 : {
219 0 : return IsCounted() &&
220 0 : ( IsPhantom() || // phantoms
221 0 : !GetTxtNode() || // root node
222 0 : GetTxtNode()->HasNumber() || // text node
223 0 : GetTxtNode()->HasBullet() ); // text node
224 : }
225 :
226 0 : void SwNodeNum::NotifyNode()
227 : {
228 0 : ValidateMe();
229 :
230 0 : if (mpTxtNode)
231 : {
232 0 : mpTxtNode->NumRuleChgd();
233 : }
234 0 : }
235 :
236 0 : bool SwNodeNum::LessThan(const SwNumberTreeNode & rNode) const
237 : {
238 0 : bool bResult = false;
239 0 : const SwNodeNum & rTmpNode = static_cast<const SwNodeNum &>(rNode);
240 :
241 0 : if (mpTxtNode == NULL && rTmpNode.mpTxtNode != NULL)
242 0 : bResult = true;
243 0 : else if (mpTxtNode != NULL && rTmpNode.mpTxtNode != NULL)
244 : {
245 : // #i83479# - refactoring
246 : // simplify comparison by comparing the indexes of the text nodes
247 0 : bResult = ( mpTxtNode->GetIndex() < rTmpNode.mpTxtNode->GetIndex() ) ? true : false;
248 : }
249 :
250 0 : return bResult;
251 : }
252 :
253 0 : bool SwNodeNum::IsRestart() const
254 : {
255 0 : bool bIsRestart = false;
256 :
257 0 : if ( GetTxtNode() )
258 : {
259 0 : bIsRestart = GetTxtNode()->IsListRestart();
260 : }
261 :
262 0 : return bIsRestart;
263 : }
264 :
265 0 : bool SwNodeNum::IsCountPhantoms() const
266 : {
267 0 : bool bResult = true;
268 :
269 : // #i64311#
270 : // phantoms aren't counted in consecutive numbering rules
271 0 : if ( mpNumRule )
272 0 : bResult = !mpNumRule->IsContinusNum() &&
273 0 : mpNumRule->IsCountPhantoms();
274 : else
275 : {
276 : OSL_FAIL( "<SwNodeNum::IsCountPhantoms(): missing numbering rule - please inform OD" );
277 : }
278 :
279 0 : return bResult;
280 : }
281 :
282 0 : SwNumberTree::tSwNumTreeNumber SwNodeNum::GetStartValue() const
283 : {
284 0 : SwNumberTree::tSwNumTreeNumber aResult = 1;
285 :
286 0 : if ( IsRestart() && GetTxtNode() )
287 : {
288 0 : aResult = GetTxtNode()->GetActualListStartValue();
289 : }
290 : else
291 : {
292 0 : SwNumRule * pRule = GetNumRule();
293 :
294 0 : if (pRule)
295 : {
296 0 : int nLevel = GetParent() ? GetLevelInListTree() : 0;
297 :
298 0 : if (nLevel >= 0 && nLevel < MAXLEVEL)
299 : {
300 0 : const SwNumFmt * pFmt = pRule->GetNumFmt( static_cast<sal_uInt16>(nLevel));
301 :
302 0 : if (pFmt)
303 0 : aResult = pFmt->GetStart();
304 : }
305 : }
306 : }
307 :
308 0 : return aResult;
309 : }
310 :
311 0 : void SwNodeNum::HandleNumberTreeRootNodeDelete( SwNodeNum& rNodeNum )
312 : {
313 0 : SwNodeNum* pRootNode = rNodeNum.GetParent()
314 0 : ? dynamic_cast<SwNodeNum*>(rNodeNum.GetRoot())
315 0 : : &rNodeNum;
316 0 : if ( !pRootNode )
317 : {
318 : // no root node -> nothing do.
319 0 : return;
320 : }
321 :
322 : // unregister all number tree node entries, which correspond to a text node,
323 : // about the deletion of the number tree root node.
324 0 : _UnregisterMeAndChildrenDueToRootDelete( *pRootNode );
325 : }
326 :
327 0 : void SwNodeNum::_UnregisterMeAndChildrenDueToRootDelete( SwNodeNum& rNodeNum )
328 : {
329 0 : const bool bIsPhantom( rNodeNum.IsPhantom() );
330 0 : tSwNumberTreeChildren::size_type nAllowedChildCount( 0 );
331 0 : bool bDone( false );
332 0 : while ( !bDone &&
333 0 : rNodeNum.GetChildCount() > nAllowedChildCount )
334 : {
335 0 : SwNodeNum* pChildNode( dynamic_cast<SwNodeNum*>((*rNodeNum.mChildren.begin())) );
336 0 : if ( !pChildNode )
337 : {
338 : OSL_FAIL( "<SwNodeNum::_UnregisterMeAndChildrenDueToRootDelete(..)> - unknown number tree node child" );
339 0 : ++nAllowedChildCount;
340 0 : continue;
341 : }
342 :
343 : // Unregistering the last child of a phantom will destroy the phantom.
344 : // Thus <rNodeNum> will be destroyed and access on <rNodeNum> has to
345 : // be suppressed.
346 0 : if ( bIsPhantom && rNodeNum.GetChildCount() == 1 )
347 : {
348 0 : bDone = true;
349 : }
350 :
351 0 : _UnregisterMeAndChildrenDueToRootDelete( *pChildNode );
352 : }
353 :
354 0 : if ( !bIsPhantom )
355 : {
356 0 : SwTxtNode* pTxtNode( rNodeNum.GetTxtNode() );
357 0 : if ( pTxtNode )
358 : {
359 0 : pTxtNode->RemoveFromList();
360 : // --> clear all list attributes and the list style
361 0 : std::set<sal_uInt16> aResetAttrsArray;
362 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_LIST_ID );
363 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_LIST_LEVEL );
364 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_LIST_ISRESTART );
365 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_LIST_RESTARTVALUE );
366 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_LIST_ISCOUNTED );
367 0 : aResetAttrsArray.insert( aResetAttrsArray.end(), RES_PARATR_NUMRULE );
368 0 : SwPaM aPam( *pTxtNode );
369 : pTxtNode->GetDoc()->ResetAttrs( aPam, false,
370 : aResetAttrsArray,
371 0 : false );
372 : }
373 : }
374 0 : }
375 :
376 : // #i81002#
377 0 : const SwNodeNum* SwNodeNum::GetPrecedingNodeNumOf( const SwTxtNode& rTxtNode ) const
378 : {
379 0 : const SwNodeNum* pPrecedingNodeNum( 0 );
380 :
381 : // #i83479#
382 0 : SwNodeNum aNodeNumForTxtNode( const_cast<SwTxtNode*>(&rTxtNode) );
383 :
384 : pPrecedingNodeNum = dynamic_cast<const SwNodeNum*>(
385 0 : GetRoot()
386 0 : ? GetRoot()->GetPrecedingNodeOf( aNodeNumForTxtNode )
387 0 : : GetPrecedingNodeOf( aNodeNumForTxtNode ) );
388 :
389 0 : return pPrecedingNodeNum;
390 : }
391 :
392 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|