1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "htmlnum.hxx"
24 void SwHTMLNumRuleInfo::Set(const SwTextNode
& rTextNd
)
26 const SwNumRule
* pTextNdNumRule(rTextNd
.GetNumRule());
27 if (pTextNdNumRule
&& pTextNdNumRule
!= rTextNd
.GetDoc().GetOutlineNumRule())
29 m_pNumRule
= const_cast<SwNumRule
*>(pTextNdNumRule
);
30 m_nDeep
= o3tl::narrowing
<sal_uInt16
>(m_pNumRule
? rTextNd
.GetActualListLevel() + 1 : 0);
31 m_bNumbered
= rTextNd
.IsCountedInList();
32 // #i57919# - correction of refactoring done by cws swnumtree:
33 // <bRestart> has to be set to <true>, if numbering is restarted at this
34 // text node and the start value equals <USHRT_MAX>.
35 // Start value <USHRT_MAX> indicates, that at this text node the numbering
36 // is restarted with the value given at the corresponding level.
37 m_bRestart
= rTextNd
.IsListRestart() && !rTextNd
.HasAttrListRestartValue();
43 m_bNumbered
= m_bRestart
= false;
47 // Restart flag is only effective when this level is not below the previous
48 bool SwHTMLNumRuleInfo::IsRestart(const SwHTMLNumRuleInfo
& rPrev
) const
50 // calling this, when the rules are different, makes no sense
51 assert(rPrev
.GetNumRule() == GetNumRule());
53 // An example ODF when the restart flag is set, but has no effect:
54 // <text:list text:style-name="L1">
56 // <text:p>l1</text:p>
59 // <text:p>l2</text:p>
62 // <text:p>l2</text:p>
69 // <text:p>l3</text:p>
76 // In this case, "l3" is in a separate sublist than "l2", and so the "l3" node gets the
77 // "list restart" property. But the document rendering would be
82 // and the second-level numbering will not actually restart at the "l3" node.
84 // TODO/LATER: note that restarting may happen at different levels. In the code using this
85 // function, the level is reset to 0 whenever a restart is detected. And also, there is no
86 // code to actually descend to that new level (close corresponding li/ul/ol elements).
88 if (rPrev
.GetDepth() < GetDepth())
89 return false; // No matter if the restart flag is set, it is not effective for subitems
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */