/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/// push a list context on the list context stack void PushListContext(XMLTextListBlockContext *i_pListBlock); void PushListContext(XMLNumberedParaContext *i_pNumberedParagraph); /// pop the list context stack void PopListContext(); /// peek at the top of the list context stack void ListContextTop(XMLTextListBlockContext*& o_pListBlockContext,
XMLTextListItemContext*& o_pListItemContext,
XMLNumberedParaContext*& o_pNumberedParagraphContext ); /// set list item on top of the list context stack void SetListItem( XMLTextListItemContext *pListItem );
// keep track of opened list elements of a certain list for export void PushListOnStack( const OUString& sListId, const OUString& sListStyleName ); void PopListFromStack(); bool EqualsToTopListStyleOnStack( std::u16string_view sListId ) const;
/** for importing numbered-paragraph note that the ID namespace for numbered-paragraph and regular list is distinct; we never combine a list and a n-p
*/
css::uno::Reference< css::container::XIndexReplace>
EnsureNumberedParagraph(
SvXMLImport & i_rImport, const OUString& i_ListId,
sal_Int16 & io_rLevel, const OUString& i_StyleName);
/// get ID of the last numbered-paragraph iff it has given style-name
OUString GetNumberedParagraphListId( const sal_uInt16 i_Level,
std::u16string_view i_StyleName);
/** Creates a NumRule from given style-name. @param i_rImport the SvXMLImport @param i_xNumRule parent num rule @param i_ParentStyleName parent list style name @param i_StyleName the list style name @param io_rLevel the list level (may be reset if too large) @param o_rRestartNumbering set to true if no style (defaulting) @param io_rSetDefaults set to true if no style (defaulting)
*/ static css::uno::Reference< css::container::XIndexReplace> MakeNumRule(
SvXMLImport & i_rImport, const css::uno::Reference< css::container::XIndexReplace>& i_xNumRule,
std::u16string_view i_ParentStyleName, const OUString& i_StyleName,
sal_Int16 & io_rLevel, bool* o_pRestartNumbering = nullptr, bool* io_pSetDefaults = nullptr);
/// Looks up the last list id of a given list style, by name.
OUString GetLastIdOfStyleName(const OUString& sListStyleName) const;
// container type for processed lists: // map with <ListId> as key and pair( <ListStyleName, ContinueListId> ) // as value typedef ::std::map< OUString,
::std::pair< OUString, OUString > > tMapForLists;
std::unique_ptr<tMapForLists> mpProcessedLists;
OUString msLastProcessedListId;
OUString msListStyleOfLastProcessedList;
/* additional container for processed lists. map with <ListStyleName> as key and pair( <ListId, ListStyleDefaultListId> ) as value. (#i92811#)
*/
std::unique_ptr<tMapForLists> mpMapListIdToListStyleDefaultListId;
// container type to build up continue list chain: // map with <ListId> of master list as key and <ListId> of last list // continuing the master list as value typedef ::std::map< OUString, OUString > tMapForContinuingLists;
std::unique_ptr<tMapForContinuingLists> mpContinuingLists;
// stack type for opened list elements and its list style: // vector with pair( <ListId>, <ListStyleName> ) as value typedef ::std::vector< ::std::pair< OUString, OUString > >
tStackForLists;
std::unique_ptr<tStackForLists> mpListStack;
/// to connect numbered-paragraphs that have no list-id attribute: /// vector of pair of style-name and list-id (indexed by level) typedef ::std::vector< ::std::pair< OUString, OUString > >
LastNumberedParagraphs_t;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.