// OD 2008-05-07 #refactorlists# // add optional parameter <bRestartNumberingAtSubList> and its handling
XMLTextListBlockContext::XMLTextListBlockContext(
SvXMLImport& rImport,
XMLTextImportHelper& rTxtImp, const Reference< xml::sax::XFastAttributeList > & xAttrList, constbool bRestartNumberingAtSubList )
: SvXMLImportContext( rImport )
, mrTxtImport( rTxtImp )
, mnLevel( 0 )
, mbRestartNumbering( false )
, mbSetDefaults( false )
{ static constexpr OUString s_PropNameDefaultListId = u"DefaultListId"_ustr;
{ // get the parent list block context (if any); this is a bit ugly...
XMLTextListBlockContext * pLB(nullptr);
XMLTextListItemContext * pLI(nullptr);
XMLNumberedParaContext * pNP(nullptr);
rTxtImp.GetTextListHelper().ListContextTop(pLB, pLI, pNP);
mxParentListBlock = pLB;
} // Inherit style name from parent list, as well as the flags whether // numbering must be restarted and formats have to be created.
OUString sParentListStyleName; if( mxParentListBlock.is() )
{
XMLTextListBlockContext *pParent = mxParentListBlock.get();
msListStyleName = pParent->msListStyleName;
sParentListStyleName = msListStyleName;
mxNumRules = pParent->GetNumRules();
mnLevel = pParent->GetLevel() + 1;
mbRestartNumbering = pParent->IsRestartNumbering() ||
bRestartNumberingAtSubList;
mbSetDefaults = pParent->mbSetDefaults;
msListId = pParent->GetListId();
msContinueListId = pParent->GetContinueListId();
}
bool bIsContinueNumberingAttributePresent( false ); for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
{ switch( aIter.getToken() )
{ case XML_ELEMENT(XML, XML_ID): //FIXME: there is no UNO API for lists // xml:id is also the list ID (#i92221#) if ( mnLevel == 0 ) // root <list> element
{
msListId = aIter.toString();
} break; case XML_ELEMENT(TEXT, XML_CONTINUE_NUMBERING):
mbRestartNumbering = !IsXMLToken(aIter, XML_TRUE);
bIsContinueNumberingAttributePresent = true; break; case XML_ELEMENT(TEXT, XML_STYLE_NAME):
msListStyleName = aIter.toString(); break; case XML_ELEMENT(TEXT, XML_CONTINUE_LIST): if ( mnLevel == 0 ) // root <list> element
{
msContinueListId = aIter.toString();
} break; default:
XMLOFF_WARN_UNKNOWN("xmloff", aIter);
}
}
// Remember this list block.
mrTxtImport.GetTextListHelper().PushListContext( this ); try
{
mxNumRules = XMLTextListsHelper::MakeNumRule(GetImport(), mxNumRules,
sParentListStyleName, msListStyleName,
mnLevel, &mbRestartNumbering, &mbSetDefaults ); if( !mxNumRules.is() ) return;
if ( mnLevel != 0 ) // root <list> element return;
XMLTextListsHelper& rTextListsHelper( mrTxtImport.GetTextListHelper() ); // Inconsistent behavior regarding lists (#i92811#)
OUString sListStyleDefaultListId;
{
uno::Reference< beans::XPropertySet > xNumRuleProps( mxNumRules, UNO_QUERY ); if ( xNumRuleProps.is() )
{
uno::Reference< beans::XPropertySetInfo > xNumRulePropSetInfo(
xNumRuleProps->getPropertySetInfo()); if (xNumRulePropSetInfo.is() &&
xNumRulePropSetInfo->hasPropertyByName(
s_PropNameDefaultListId))
{
xNumRuleProps->getPropertyValue(s_PropNameDefaultListId)
>>= sListStyleDefaultListId;
SAL_WARN_IF( sListStyleDefaultListId.isEmpty(), "xmloff", "no default list id found at numbering rules instance. Serious defect." );
}
}
} if ( msListId.isEmpty() ) // no text:id property found
{
sal_Int32 nUPD( 0 );
sal_Int32 nBuild( 0 ); constbool bBuildIdFound = GetImport().getBuildIds( nUPD, nBuild ); if ( rImport.IsTextDocInOOoFileFormat() ||
( bBuildIdFound && nUPD == 680 ) )
{ /* handling former documents written by OpenOffice.org: usedefaultlistidofnumberingrulesinstance,ifexisting (#i92811#)
*/ if ( !sListStyleDefaultListId.isEmpty() )
{
msListId = sListStyleDefaultListId; if ( !bIsContinueNumberingAttributePresent &&
!mbRestartNumbering &&
rTextListsHelper.IsListProcessed( msListId ) )
{
mbRestartNumbering = true;
}
}
} if ( msListId.isEmpty() )
{ // generate a new list id for the list
msListId = rTextListsHelper.GenerateNewListId();
}
}
if ( bIsContinueNumberingAttributePresent && !mbRestartNumbering &&
msContinueListId.isEmpty() )
{ const OUString& Last( rTextListsHelper.GetLastProcessedListId() ); if ( rTextListsHelper.GetListStyleOfLastProcessedList() == msListStyleName
&& Last != msListId )
{
msContinueListId = Last;
}
}
bool bContinueNumbering = bIsContinueNumberingAttributePresent && !mbRestartNumbering; if (msContinueListId.isEmpty() && bContinueNumbering && GetImport().IsMSO())
{ // No "continue list" id, but continue numbering was requested. Connect to the last list of // the same list style in the Word case, even if there was a different list in the meantime.
msContinueListId = rTextListsHelper.GetLastIdOfStyleName(msListStyleName);
}
if ( !msContinueListId.isEmpty() )
{ if ( !rTextListsHelper.IsListProcessed( msContinueListId ) )
{
msContinueListId.clear();
} else
{ // search continue list chain for master list and // continue the master list.
OUString sTmpStr =
rTextListsHelper.GetContinueListIdOfProcessedList( msContinueListId ); while ( !sTmpStr.isEmpty() )
{
msContinueListId = sTmpStr;
void XMLTextListBlockContext::endFastElement(sal_Int32 )
{ // Numbering has not to be restarted if it has been restarted within // a child list.
XMLTextListBlockContext *pParent = mxParentListBlock.get(); if( pParent )
{
pParent->mbRestartNumbering = mbRestartNumbering;
}
// Restore current list block.
mrTxtImport.GetTextListHelper().PopListContext();
// Any paragraph following the list within the same list item must not // be numbered.
mrTxtImport.GetTextListHelper().SetListItem( nullptr );
}
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.