/* -*- 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 .
*/
namespace
{ /// Writes <style:style style:list-level="..."> for Writer paragraph styles. void ExportStyleListlevel(const uno::Reference<beans::XPropertySetInfo>& xPropSetInfo, const uno::Reference<beans::XPropertyState>& xPropState, const uno::Reference<beans::XPropertySet>& xPropSet, SvXMLExport& rExport)
{ if (!xPropSetInfo->hasPropertyByName(u"NumberingLevel"_ustr))
{
SAL_WARN("xmloff", "ExportStyleListlevel: no NumberingLevel for a Writer paragraph style"); return;
}
if (xPropState->getPropertyState(u"NumberingLevel"_ustr) != beans::PropertyState_DIRECT_VALUE)
{ return;
}
sal_Int16 nNumberingLevel{}; if (!(xPropSet->getPropertyValue(u"NumberingLevel"_ustr) >>= nNumberingLevel))
{ return;
}
// The spec is positiveInteger (1-based), but the implementation is 0-based.
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_LIST_LEVEL, OUString::number(++nNumberingLevel));
}
}
Reference< XPropertySetInfo > xPropSetInfo =
xPropSet->getPropertySetInfo();
Any aAny;
// Don't export styles that aren't existing really. This may be the // case for StarOffice Writer's pool styles. if( xPropSetInfo->hasPropertyByName( gsIsPhysical ) )
{
aAny = xPropSet->getPropertyValue( gsIsPhysical ); if( !*o3tl::doAccess<bool>(aAny) ) returnfalse;
}
/* A direct set empty list style has to be written. Otherwise, this information is lost and causes an error, if the parent style has a list style set. (#i69523#)
*/ if ( sListName.isEmpty() )
{
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_LIST_STYLE_NAME,
sListName /* empty string */);
} else
{ // Written OpenDocument file format doesn't fit to the created text document (#i69627#) bool bSuppressListStyle( false );
{ if ( !GetExport().writeOutlineStyleAsNormalListStyle() )
{
Reference< XChapterNumberingSupplier > xCNSupplier
(GetExport().GetModel(), UNO_QUERY);
// style:pool-id="..." is not required any longer since we use // english style names only
exportStyleAttributes( rStyle );
// TODO: style:help-file-name="..." and style:help-id="..." can neither // be modified by UI nor by API and that for, have not to be exported // currently.
// <script:events>, if they are supported by this style
Reference<XEventsSupplier> xEventsSupp(rStyle, UNO_QUERY);
GetExport().GetEventExport().Export(xEventsSupp);
} returntrue;
}
// If next styles are supported and used styles should be exported only, // the next style may be unused but has to be exported, too. In this case // the names of all exported styles are remembered.
std::optional<std::set<OUString> > xExportedStyles; bool bFirstStyle = true;
const uno::Sequence< OUString> aSeq = xStyleCont->getElementNames(); for(constauto& rName : aSeq)
{
Reference< XStyle > xStyle; try
{
xStyleCont->getByName( rName ) >>= xStyle;
} catch(const lang::IndexOutOfBoundsException&)
{ // due to bugs in prior versions it is possible that // a binary file is missing some critical styles. // The only possible way to deal with this is to // not export them here and remain silent. continue;
} catch(css::container::NoSuchElementException&)
{ continue;
}
assert(xStyle.is()); if (!bUsed || xStyle->isInUse())
{ bool bExported = exportStyle( xStyle, rXMLFamily, rPropMapper,
xStyleCont,pPrefix ); if (bUsed && bFirstStyle && bExported)
{ // If this is the first style, find out whether next styles // are supported.
Reference< XPropertySet > xPropSet( xStyle, UNO_QUERY );
Reference< XPropertySetInfo > xPropSetInfo =
xPropSet->getPropertySetInfo();
if (xPropSetInfo->hasPropertyByName( gsFollowStyle ))
xExportedStyles.emplace();
bFirstStyle = false;
}
if (xExportedStyles && bExported)
{ // If next styles are supported, remember this style's name.
xExportedStyles->insert( xStyle->getName() );
}
}
// if an auto style pool is given, remember this style's name as a // style name that must not be used by automatic styles. if (m_pAutoStylePool)
m_pAutoStylePool->RegisterName( nFamily, xStyle->getName() );
}
if( !xExportedStyles ) return;
// if next styles are supported, export all next styles that are // unused and that for, haven't been exported in the first loop. for(constauto& rName : aSeq)
{
Reference< XStyle > xStyle;
xStyleCont->getByName( rName ) >>= xStyle;
// styles that aren't existing really are ignored. if (xPropSetInfo->hasPropertyByName( gsIsPhysical ))
{
Any aAny( xPropSet->getPropertyValue( gsIsPhysical ) ); if (!*o3tl::doAccess<bool>(aAny)) continue;
}
if (!xStyle->isInUse()) continue;
if (!xPropSetInfo->hasPropertyByName( gsFollowStyle ))
{ continue;
}
OUString sNextName;
xPropSet->getPropertyValue( gsFollowStyle ) >>= sNextName;
OUString sTmp( sNextName ); // if the next style hasn't been exported by now, export it now // and remember its name. if (xStyle->getName() != sNextName &&
0 == xExportedStyles->count( sTmp ))
{
xStyleCont->getByName( sNextName ) >>= xStyle;
assert(xStyle.is());
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.