From f3c37b7d72fd6f0a426bf9a40ee2202dac04f486 Mon Sep 17 00:00:00 2001 From: Serge Krot Date: Thu, 28 Sep 2017 12:53:30 +0200 Subject: tdf#87533 Fixed initialization of writing mode for paragraph During parsing of the docx the paragraph without w:bidi should take this value from style or from default paragraph properties, Change-Id: Ie33f0d1cd3551c4053a47e6faf7dcac71765db65 tdf#87533 explicitly set writing mode value based on default properties Change-Id: I3fcf514a901f0630d749ba0ddb6361d6db3ce1b5 Reviewed-on: https://gerrit.libreoffice.org/42895 Tested-by: Jenkins Reviewed-by: Thorsten Behrens --- writerfilter/source/dmapper/StyleSheetTable.cxx | 42 ++++++++++++++++++++----- 1 file changed, 34 insertions(+), 8 deletions(-) (limited to 'writerfilter') diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx b/writerfilter/source/dmapper/StyleSheetTable.cxx index 1e8ab405f408..9ae7d1df6e41 100644 --- a/writerfilter/source/dmapper/StyleSheetTable.cxx +++ b/writerfilter/source/dmapper/StyleSheetTable.cxx @@ -1029,10 +1029,33 @@ void StyleSheetTable::ApplyStyleSheets( const FontTablePtr& rFontTable ) pEntry->pProperties->Insert(PROP_PARA_WIDOWS, aTwo, false); pEntry->pProperties->Insert(PROP_PARA_ORPHANS, aTwo, false); - // Left-to-right direction if not already set - pEntry->pProperties->Insert(PROP_WRITING_MODE, uno::makeAny( sal_Int16(text::WritingMode_LR_TB) ), false); - // Left alignment if not already set - pEntry->pProperties->Insert(PROP_PARA_ADJUST, uno::makeAny( sal_Int16(style::ParagraphAdjust_LEFT) ), false); + // tdf#87533 explicitly set writing mode value based on default paragraph properties + // specified inside styles.xml: + { + const PropertyMapPtr & propertyMap = m_pImpl->m_pDefaultParaProps; + + boost::optional writingMode; + if (propertyMap && (writingMode = propertyMap->getProperty(PROP_WRITING_MODE))) + { + pEntry->pProperties->Insert(PROP_WRITING_MODE, writingMode->second, false); + } + else + { + // Left-to-right direction if not already set + pEntry->pProperties->Insert(PROP_WRITING_MODE, uno::makeAny(sal_Int16(text::WritingMode_LR_TB)), false); + } + + boost::optional paraAdjust; + if (propertyMap && (paraAdjust = propertyMap->getProperty(PROP_PARA_ADJUST))) + { + pEntry->pProperties->Insert(PROP_PARA_ADJUST, paraAdjust->second, false); + } + else + { + // Left alignment if not already set + pEntry->pProperties->Insert(PROP_PARA_ADJUST, uno::makeAny(sal_Int16(style::ParagraphAdjust_LEFT)), false); + } + } } auto aPropValues = comphelper::sequenceToContainer< std::vector >(pEntry->pProperties->GetPropertyValues()); @@ -1452,6 +1475,8 @@ OUString StyleSheetTable::ConvertStyleName( const OUString& rWWName, bool bExten ++aIt; } } + + // create a map only once if(m_pImpl->m_aStyleNameMap.empty()) { for( sal_uInt32 nPair = 0; nPair < SAL_N_ELEMENTS(aStyleNamePairs)/2; ++nPair) @@ -1465,15 +1490,15 @@ OUString StyleSheetTable::ConvertStyleName( const OUString& rWWName, bool bExten } } } + + // find style-name using map StringPairMap_t::iterator aIt = m_pImpl->m_aStyleNameMap.find( sRet ); - bool bConverted = false; + if (aIt != m_pImpl->m_aStyleNameMap.end()) { - bConverted = true; sRet = aIt->second; } - - if (!bConverted) + else { // SwStyleNameMapper doc says: If the UI style name equals a // programmatic name, then it must append " (user)" to the end. @@ -1481,6 +1506,7 @@ OUString StyleSheetTable::ConvertStyleName( const OUString& rWWName, bool bExten if (aReservedIt != m_pImpl->m_aReservedStyleNames.end()) sRet += " (user)"; } + return sRet; } -- cgit