mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
96 lines
4.9 KiB
C++
96 lines
4.9 KiB
C++
#ifndef HEADER_FOOTER_WRITER
|
|
#define HEADER_FOOTER_WRITER
|
|
|
|
#include "../../XlsxSerializerCom/Common/Common.h"
|
|
|
|
namespace Writers
|
|
{
|
|
class ContentWriter
|
|
{
|
|
public:
|
|
XmlUtils::CStringWriter m_oContent;
|
|
XmlUtils::CStringWriter m_oSecPr;
|
|
};
|
|
class HdrFtrItem
|
|
{
|
|
public:
|
|
HdrFtrItem(SimpleTypes::EHdrFtr _eType)
|
|
{
|
|
eType = _eType;
|
|
}
|
|
bool IsEmpty()
|
|
{
|
|
return m_sFilename.IsEmpty();
|
|
}
|
|
CString m_sFilename;
|
|
ContentWriter Header;
|
|
CString rId;
|
|
SimpleTypes::EHdrFtr eType;
|
|
};
|
|
static CString g_string_hdr_Start = _T("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><w:hdr xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 wp14\">");
|
|
static CString g_string_hdr_End = _T("</w:hdr>");
|
|
|
|
static CString g_string_ftr_Start = _T("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><w:ftr xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 wp14\">");
|
|
static CString g_string_ftr_End = _T("</w:ftr>");
|
|
|
|
class HeaderFooterWriter
|
|
{
|
|
CString m_sDir;
|
|
ContentTypesWriter& m_oContentTypesWriter;
|
|
public:
|
|
std::vector<HdrFtrItem*> m_aHeaders;
|
|
std::vector<HdrFtrItem*> m_aFooters;
|
|
public:
|
|
HeaderFooterWriter(CString sDir, ContentTypesWriter& oContentTypesWriter):m_sDir(sDir),m_oContentTypesWriter(oContentTypesWriter)
|
|
{
|
|
}
|
|
~HeaderFooterWriter()
|
|
{
|
|
for(int i = 0, length = m_aHeaders.size(); i < length; ++i)
|
|
delete m_aHeaders[i];
|
|
m_aHeaders.clear();
|
|
for(int i = 0, length = m_aFooters.size(); i < length; ++i)
|
|
delete m_aFooters[i];
|
|
m_aFooters.clear();
|
|
}
|
|
void Write()
|
|
{
|
|
for(int i = 0, length = m_aHeaders.size(); i < length; ++i)
|
|
{
|
|
HdrFtrItem* pHeader = m_aHeaders[i];
|
|
WriteItem(_T("header"), pHeader->m_sFilename, pHeader->Header, true);
|
|
}
|
|
for(int i = 0, length = m_aFooters.size(); i < length; ++i)
|
|
{
|
|
HdrFtrItem* pFooter = m_aFooters[i];
|
|
WriteItem(_T("footer"), pFooter->m_sFilename, pFooter->Header, false);
|
|
}
|
|
}
|
|
void WriteItem(CString sHeader, CString& sFilename, ContentWriter& m_oWriter, bool bHeader)
|
|
{
|
|
OOX::CPath filePath = m_sDir + FILE_SEPARATOR_STR +_T("word") + FILE_SEPARATOR_STR + sFilename;
|
|
|
|
CFile oFile;
|
|
oFile.CreateFile(filePath.GetPath());
|
|
|
|
if(bHeader)
|
|
oFile.WriteStringUTF8(g_string_hdr_Start);
|
|
else
|
|
oFile.WriteStringUTF8(g_string_ftr_Start);
|
|
oFile.WriteStringUTF8(m_oWriter.m_oContent.GetData());
|
|
if(bHeader)
|
|
oFile.WriteStringUTF8(g_string_hdr_End);
|
|
else
|
|
oFile.WriteStringUTF8(g_string_ftr_End);
|
|
oFile.CloseFile();
|
|
|
|
//Content_Types
|
|
m_oContentTypesWriter.AddOverride(_T("/word/") + sFilename, _T("application/vnd.openxmlformats-officedocument.wordprocessingml.")+sHeader+_T("+xml"));
|
|
|
|
//Rels
|
|
//return m_oDocumentRelsWriter.AddRels(_T("http://schemas.openxmlformats.org/officeDocument/2006/relationships/") + sHeader, sFilename);
|
|
}
|
|
};
|
|
}
|
|
#endif // #ifndef HEADER_FOOTER_WRITER
|