Kaydet (Commit) 982d71f3 authored tarafından Miklos Vajna's avatar Miklos Vajna

implement import of RTF_{MFUNC,MFUNCPR,MFNAME,MLIMLOW,MLIMLOWPR,MLIM}

Change-Id: Ibdecafae7942a0c79804176aa24e448dc505a5bb
üst fbee23de
...@@ -887,7 +887,9 @@ RTFSymbol aRTFControlWords[] = { ...@@ -887,7 +887,9 @@ RTFSymbol aRTFControlWords[] = {
{"mlim", CONTROL_DESTINATION, RTF_MLIM}, {"mlim", CONTROL_DESTINATION, RTF_MLIM},
{"mlimloc", CONTROL_DESTINATION, RTF_MLIMLOC}, {"mlimloc", CONTROL_DESTINATION, RTF_MLIMLOC},
{"mlimlow", CONTROL_DESTINATION, RTF_MLIMLOW}, {"mlimlow", CONTROL_DESTINATION, RTF_MLIMLOW},
{"mlimLow", CONTROL_DESTINATION, RTF_MLIMLOW},
{"mlimlowPr", CONTROL_DESTINATION, RTF_MLIMLOWPR}, {"mlimlowPr", CONTROL_DESTINATION, RTF_MLIMLOWPR},
{"mlimLowPr", CONTROL_DESTINATION, RTF_MLIMLOWPR},
{"mlimupp", CONTROL_DESTINATION, RTF_MLIMUPP}, {"mlimupp", CONTROL_DESTINATION, RTF_MLIMUPP},
{"mlimuppPr", CONTROL_DESTINATION, RTF_MLIMUPPPR}, {"mlimuppPr", CONTROL_DESTINATION, RTF_MLIMUPPPR},
{"mlit", CONTROL_FLAG, RTF_MLIT}, {"mlit", CONTROL_FLAG, RTF_MLIT},
......
...@@ -1469,6 +1469,30 @@ int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword) ...@@ -1469,6 +1469,30 @@ int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword)
m_aMathBuffer.appendOpeningTag(M_TOKEN(dPr)); m_aMathBuffer.appendOpeningTag(M_TOKEN(dPr));
m_aStates.top().nDestinationState = DESTINATION_MDPR; m_aStates.top().nDestinationState = DESTINATION_MDPR;
break; break;
case RTF_MFUNC:
m_aMathBuffer.appendOpeningTag(M_TOKEN(func));
m_aStates.top().nDestinationState = DESTINATION_MFUNC;
break;
case RTF_MFUNCPR:
m_aMathBuffer.appendOpeningTag(M_TOKEN(funcPr));
m_aStates.top().nDestinationState = DESTINATION_MFUNCPR;
break;
case RTF_MFNAME:
m_aMathBuffer.appendOpeningTag(M_TOKEN(fName));
m_aStates.top().nDestinationState = DESTINATION_MFNAME;
break;
case RTF_MLIMLOW:
m_aMathBuffer.appendOpeningTag(M_TOKEN(limLow));
m_aStates.top().nDestinationState = DESTINATION_MLIMLOW;
break;
case RTF_MLIMLOWPR:
m_aMathBuffer.appendOpeningTag(M_TOKEN(limLowPr));
m_aStates.top().nDestinationState = DESTINATION_MLIMLOWPR;
break;
case RTF_MLIM:
m_aMathBuffer.appendOpeningTag(M_TOKEN(lim));
m_aStates.top().nDestinationState = DESTINATION_MLIM;
break;
default: default:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": TODO handle destination '" << lcl_RtfToString(nKeyword) << "'"); SAL_INFO("writerfilter", OSL_THIS_FUNC << ": TODO handle destination '" << lcl_RtfToString(nKeyword) << "'");
// Make sure we skip destinations (even without \*) till we don't handle them // Make sure we skip destinations (even without \*) till we don't handle them
...@@ -3601,6 +3625,18 @@ int RTFDocumentImpl::popState() ...@@ -3601,6 +3625,18 @@ int RTFDocumentImpl::popState()
m_aMathBuffer.appendClosingTag(M_TOKEN(d)); m_aMathBuffer.appendClosingTag(M_TOKEN(d));
else if (m_aStates.top().nDestinationState == DESTINATION_MDPR) else if (m_aStates.top().nDestinationState == DESTINATION_MDPR)
m_aMathBuffer.appendClosingTag(M_TOKEN(dPr)); m_aMathBuffer.appendClosingTag(M_TOKEN(dPr));
else if (m_aStates.top().nDestinationState == DESTINATION_MFUNC)
m_aMathBuffer.appendClosingTag(M_TOKEN(func));
else if (m_aStates.top().nDestinationState == DESTINATION_MFUNCPR)
m_aMathBuffer.appendClosingTag(M_TOKEN(funcPr));
else if (m_aStates.top().nDestinationState == DESTINATION_MFNAME)
m_aMathBuffer.appendClosingTag(M_TOKEN(fName));
else if (m_aStates.top().nDestinationState == DESTINATION_MLIMLOW)
m_aMathBuffer.appendClosingTag(M_TOKEN(limLow));
else if (m_aStates.top().nDestinationState == DESTINATION_MLIMLOWPR)
m_aMathBuffer.appendClosingTag(M_TOKEN(limLowPr));
else if (m_aStates.top().nDestinationState == DESTINATION_MLIM)
m_aMathBuffer.appendClosingTag(M_TOKEN(lim));
// See if we need to end a track change // See if we need to end a track change
RTFValue::Pointer_t pTrackchange = m_aStates.top().aCharacterSprms.find(NS_ooxml::LN_trackchange); RTFValue::Pointer_t pTrackchange = m_aStates.top().aCharacterSprms.find(NS_ooxml::LN_trackchange);
......
...@@ -136,7 +136,13 @@ namespace writerfilter { ...@@ -136,7 +136,13 @@ namespace writerfilter {
DESTINATION_MD, DESTINATION_MD,
DESTINATION_MDPR, DESTINATION_MDPR,
DESTINATION_MBEGCHR, DESTINATION_MBEGCHR,
DESTINATION_MENDCHR DESTINATION_MENDCHR,
DESTINATION_MFUNC,
DESTINATION_MFUNCPR,
DESTINATION_MFNAME,
DESTINATION_MLIMLOW,
DESTINATION_MLIMLOWPR,
DESTINATION_MLIM
}; };
enum RTFBorderState enum RTFBorderState
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment