summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorKenneth Aafløy <kenneth_lists@aafloy.net>2012-01-11 15:22:27 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-01-16 18:58:28 +0100
commit09a25659775c4d39eb40507e7cbd9472570834d3 (patch)
treeb0aac6d7cf90e9118daeb5c230278feaf33c1a2b /sw
parent2070d9a298f40d3a866920106357843994e90c85 (diff)
Add import of docvariable fields from word documents
Hi, Attached is a patch that adds support for importing docvariable fields from microsoft word documents. The variables themselves are already converted correctly, so this patch only ties the field to the existing custom document information. Please consider this patch for inclusion. I declare that this and my further patches are under LGPLv3+ / MPL license. With Regards, Kenneth Aafløy
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/ww8par5.cxx31
1 files changed, 29 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx
index e5cf9c8ece7c..f27ef6bc51cd 100644
--- a/sw/source/filter/ww8/ww8par5.cxx
+++ b/sw/source/filter/ww8/ww8par5.cxx
@@ -965,7 +965,7 @@ long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
0,
0,
0,
- 0,
+ &SwWW8ImplReader::Read_F_DocInfo, // 64 - DOCVARIABLE
0,
0,
&SwWW8ImplReader::Read_F_IncludePicture, // 67
@@ -1759,6 +1759,9 @@ eF_ResT SwWW8ImplReader::Read_F_DocInfo( WW8FieldDesc* pF, String& rStr )
nReg = DI_SUB_TIME;
bDateTime = true;
break;
+ case 64: // DOCVARIABLE
+ nSub = DI_CUSTOM;
+ break;
}
sal_uInt32 nFormat = 0;
@@ -1784,8 +1787,32 @@ eF_ResT SwWW8ImplReader::Read_F_DocInfo( WW8FieldDesc* pF, String& rStr )
}
}
+ String aData;
+ // Extract DOCVARIABLE varname
+ if ( 64 == pF->nId )
+ {
+ _ReadFieldParams aReadParam( rStr );
+ long nRet;
+ while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
+ {
+ switch( nRet )
+ {
+ case -2:
+ if( !aData.Len() )
+ aData = aReadParam.GetResult();
+ break;
+ case '*':
+ //Skip over MERGEFORMAT
+ aReadParam.SkipToNextToken();
+ break;
+ }
+ }
+
+ aData = comphelper::string::remove(aData, '"');
+ }
+
SwDocInfoField aFld( (SwDocInfoFieldType*)
- rDoc.GetSysFldType( RES_DOCINFOFLD ), nSub|nReg, String(), nFormat );
+ rDoc.GetSysFldType( RES_DOCINFOFLD ), nSub|nReg, aData, nFormat );
if (bDateTime)
ForceFieldLanguage(aFld, nLang);
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);