mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
859 lines
22 KiB
C++
859 lines
22 KiB
C++
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2017
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
|
* EU, LV-1021.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include "Structures.h"
|
|
#include "../../../Common/DocxFormat/Source/Base/Nullable.h"
|
|
|
|
namespace NSPresentationEditor
|
|
{
|
|
|
|
#define DEFAULT_BEFORE(EXIST_PARAM, PARAM) \
|
|
if (!EXIST_PARAM && oSrc.##EXIST_PARAM) \
|
|
{ \
|
|
EXIST_PARAM = true; \
|
|
PARAM = oSrc.##PARAM; \
|
|
}
|
|
|
|
#define APPLY_AFTER(EXIST_PARAM, PARAM) \
|
|
if (oSrc.##EXIST_PARAM) \
|
|
{ \
|
|
EXIST_PARAM = true; \
|
|
PARAM = oSrc.##PARAM; \
|
|
}
|
|
|
|
static std::wstring ToNode(const NSCommon::nullable_base<WORD>& prop, const std::wstring& strName)
|
|
{
|
|
if (!prop.is_init()) return L"";
|
|
|
|
return _T("<") + strName + _T(">") + std::to_wstring( (int)prop.get() ) + _T("</") + strName + _T(">");
|
|
}
|
|
static std::wstring ToNode(const NSCommon::nullable_base<LONG>& prop, const std::wstring& strName)
|
|
{
|
|
if (!prop.is_init()) return L"";
|
|
|
|
return _T("<") + strName + _T(">") + std::to_wstring( (int)prop.get() ) + _T("</") + strName + _T(">");
|
|
}
|
|
static std::wstring ToNode(const NSCommon::nullable_base<DWORD>& prop, const std::wstring& strName)
|
|
{
|
|
if (!prop.is_init()) return L"";
|
|
|
|
return _T("<") + strName + _T(">") + std::to_wstring(prop.get()) + _T("</") + strName + _T(">");
|
|
}
|
|
static std::wstring ToNode(const NSCommon::nullable_base<double>& prop, const std::wstring& strName)
|
|
{
|
|
if (!prop.is_init()) return L"";
|
|
|
|
return _T("<") + strName + _T(">") + XmlUtils::DoubleToString(prop.get()) + _T("</") + strName + _T(">");
|
|
}
|
|
static std::wstring ToNode(const NSCommon::nullable_base<CColor>& prop, const std::wstring& strName)
|
|
{
|
|
if (!prop.is_init()) return L"";
|
|
|
|
return _T("<") + strName + _T(">") + std::to_wstring((unsigned int)prop->GetLONG()) + _T("</") + strName + _T(">");
|
|
}
|
|
|
|
class CFontProperties
|
|
{
|
|
public:
|
|
BYTE FontNameProp;
|
|
std::wstring strFontName;
|
|
std::wstring strPanose;
|
|
std::wstring strPitchFamily;
|
|
LONG lFontFixed;
|
|
std::vector<BYTE> arFontCharsets;
|
|
|
|
public:
|
|
CFontProperties() : FontNameProp(0), strFontName(_T("")), strPanose(_T("")), strPitchFamily(_T("")), lFontFixed(0), arFontCharsets()
|
|
{
|
|
}
|
|
~CFontProperties()
|
|
{
|
|
}
|
|
CFontProperties(const CFontProperties& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CFontProperties& operator=(const CFontProperties& oSrc)
|
|
{
|
|
FontNameProp = oSrc.FontNameProp;
|
|
strFontName = oSrc.strFontName;
|
|
strPanose = oSrc.strPanose;
|
|
strPitchFamily = oSrc.strPitchFamily;
|
|
lFontFixed = oSrc.lFontFixed;
|
|
|
|
for (size_t i =0 ; i< oSrc.arFontCharsets.size(); i++)
|
|
arFontCharsets.push_back(oSrc.arFontCharsets[i]);
|
|
|
|
return *this;
|
|
}
|
|
|
|
AVSINLINE void SetFont(CFont& oFont)
|
|
{
|
|
strFontName = oFont.Name;
|
|
strPanose = oFont.Panose;
|
|
strPitchFamily = oFont.PitchFamily;
|
|
lFontFixed = (LONG)oFont.Monospace;
|
|
arFontCharsets.clear();
|
|
arFontCharsets.push_back(oFont.Charset);
|
|
}
|
|
};
|
|
|
|
class CTextCFRun
|
|
{
|
|
public:
|
|
|
|
NSCommon::nullable_base<bool> FontBold;
|
|
NSCommon::nullable_base<bool> FontItalic;
|
|
NSCommon::nullable_base<bool> FontUnderline;
|
|
NSCommon::nullable_base<bool> FontStrikeout;
|
|
NSCommon::nullable_base<bool> FontShadow;
|
|
|
|
NSCommon::nullable_base<WORD> Typeface; // fontRef
|
|
NSCommon::nullable_base<WORD> EAFontRef; // eaFontRef
|
|
NSCommon::nullable_base<WORD> AnsiFontRef; // ansiFontRef
|
|
NSCommon::nullable_base<WORD> SymbolFontRef; // SymbolFontRef
|
|
|
|
NSCommon::nullable_base<double> BaseLineOffset; // baseline offset
|
|
|
|
NSCommon::nullable_base<CColor> Color; // text color
|
|
NSCommon::nullable_base<WORD> Size; // font size
|
|
|
|
NSCommon::nullable_base<WORD> Cap; // 0 - none, 1 - TEXT, 2 - text
|
|
NSCommon::nullable_base<WORD> Language;
|
|
|
|
NSCommon::nullable_base<CFontProperties> FontProperties;
|
|
NSCommon::nullable_base<CFontProperties> FontPropertiesEA;
|
|
NSCommon::nullable_base<CFontProperties> FontPropertiesSym;
|
|
|
|
public:
|
|
|
|
CTextCFRun() : FontBold(), FontItalic(), FontUnderline(), FontStrikeout(), FontShadow(),
|
|
Typeface(), EAFontRef(), AnsiFontRef(), SymbolFontRef(),
|
|
BaseLineOffset(), Color(), Size(), FontProperties(), Cap()
|
|
{
|
|
}
|
|
CTextCFRun(const CTextCFRun& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CTextCFRun& operator=(const CTextCFRun& oSrc)
|
|
{
|
|
FontBold = oSrc.FontBold;
|
|
FontItalic = oSrc.FontItalic;
|
|
FontUnderline = oSrc.FontUnderline;
|
|
FontStrikeout = oSrc.FontStrikeout;
|
|
FontShadow = oSrc.FontShadow;
|
|
|
|
Typeface = oSrc.Typeface;
|
|
EAFontRef = oSrc.EAFontRef;
|
|
AnsiFontRef = oSrc.AnsiFontRef;
|
|
SymbolFontRef = oSrc.SymbolFontRef;
|
|
|
|
BaseLineOffset = oSrc.BaseLineOffset;
|
|
|
|
Color = oSrc.Color;
|
|
Size = oSrc.Size;
|
|
|
|
FontProperties = oSrc.FontProperties;
|
|
|
|
Cap = oSrc.Cap;
|
|
|
|
Language = oSrc.Language;
|
|
|
|
return *this;
|
|
}
|
|
~CTextCFRun()
|
|
{
|
|
}
|
|
|
|
AVSINLINE void ApplyBefore(const CTextCFRun& oSrc)
|
|
{
|
|
if (!FontBold.is_init()) FontBold = oSrc.FontBold;
|
|
if (!FontItalic.is_init()) FontItalic = oSrc.FontItalic;
|
|
if (!FontUnderline.is_init()) FontUnderline = oSrc.FontUnderline;
|
|
if (!FontStrikeout.is_init()) FontStrikeout = oSrc.FontStrikeout;
|
|
if (!FontShadow.is_init()) FontShadow = oSrc.FontShadow;
|
|
|
|
if (!Typeface.is_init()) Typeface = oSrc.Typeface;
|
|
if (!EAFontRef.is_init()) EAFontRef = oSrc.EAFontRef;
|
|
if (!AnsiFontRef.is_init()) AnsiFontRef = oSrc.AnsiFontRef;
|
|
if (!SymbolFontRef.is_init()) SymbolFontRef = oSrc.SymbolFontRef;
|
|
|
|
if (!BaseLineOffset.is_init()) BaseLineOffset = oSrc.BaseLineOffset;
|
|
|
|
if (!Color.is_init()) Color = oSrc.Color;
|
|
|
|
if (!Size.is_init()) Size = oSrc.Size;
|
|
|
|
if (!Cap.is_init()) Cap = oSrc.Cap;
|
|
|
|
if (!FontProperties.is_init()) FontProperties = oSrc.FontProperties;
|
|
|
|
if (!Language.is_init()) Language = oSrc.Language;
|
|
}
|
|
AVSINLINE void ApplyAfter(const CTextCFRun& oSrc)
|
|
{
|
|
if (oSrc.FontBold.is_init()) FontBold = oSrc.FontBold;
|
|
if (oSrc.FontItalic.is_init()) FontItalic = oSrc.FontItalic;
|
|
if (oSrc.FontUnderline.is_init()) FontUnderline = oSrc.FontUnderline;
|
|
if (oSrc.FontStrikeout.is_init()) FontStrikeout = oSrc.FontStrikeout;
|
|
if (oSrc.FontShadow.is_init()) FontShadow = oSrc.FontShadow;
|
|
|
|
bool bTypefaceSetUp = false;
|
|
if (oSrc.Typeface.is_init())
|
|
{
|
|
Typeface = oSrc.Typeface;
|
|
bTypefaceSetUp = true;
|
|
}
|
|
if (oSrc.EAFontRef.is_init()) EAFontRef = oSrc.EAFontRef;
|
|
if (oSrc.AnsiFontRef.is_init()) AnsiFontRef = oSrc.AnsiFontRef;
|
|
if (oSrc.SymbolFontRef.is_init()) SymbolFontRef = oSrc.SymbolFontRef;
|
|
|
|
if (oSrc.BaseLineOffset.is_init()) BaseLineOffset = oSrc.BaseLineOffset;
|
|
|
|
if (oSrc.Color.is_init()) Color = oSrc.Color;
|
|
|
|
if (oSrc.Size.is_init()) Size = oSrc.Size;
|
|
|
|
if (oSrc.Cap.is_init()) Cap = oSrc.Cap;
|
|
|
|
if (oSrc.FontProperties.is_init())
|
|
{
|
|
FontProperties = oSrc.FontProperties;
|
|
if (!bTypefaceSetUp)
|
|
Typeface.reset();
|
|
}
|
|
if (oSrc.Language.is_init())
|
|
Language = oSrc.Language;
|
|
}
|
|
|
|
};
|
|
|
|
class CTextPFRun
|
|
{
|
|
public:
|
|
|
|
NSCommon::nullable_base<bool> hasBullet;
|
|
|
|
NSCommon::nullable_base<WORD> bulletFontRef;
|
|
NSCommon::nullable_base<WORD> bulletSize;
|
|
NSCommon::nullable_base<WCHAR> bulletChar;
|
|
NSCommon::nullable_base<CColor> bulletColor;
|
|
NSCommon::nullable_base<CFontProperties> bulletFontProperties;
|
|
|
|
NSCommon::nullable_base<WORD> textAlignment;
|
|
NSCommon::nullable_base<LONG> lineSpacing;
|
|
NSCommon::nullable_base<LONG> spaceBefore;
|
|
NSCommon::nullable_base<LONG> spaceAfter;
|
|
NSCommon::nullable_base<LONG> leftMargin;
|
|
NSCommon::nullable_base<LONG> indent;
|
|
NSCommon::nullable_base<LONG> defaultTabSize;
|
|
|
|
std::vector<std::pair<int, int>> tabStops;
|
|
|
|
bool bIsOneLine;
|
|
|
|
NSCommon::nullable_base<WORD> fontAlign;
|
|
NSCommon::nullable_base<WORD> textDirection;
|
|
|
|
NSCommon::nullable_base<WORD> wrapFlags;
|
|
|
|
CTextPFRun() : hasBullet(), bulletFontRef(), bulletSize(), bulletChar(), bulletColor(),
|
|
textAlignment(), lineSpacing(), spaceBefore(), spaceAfter(), leftMargin(), indent(),
|
|
defaultTabSize(), tabStops(), bIsOneLine(false), fontAlign(), wrapFlags()
|
|
{
|
|
}
|
|
|
|
CTextPFRun(const CTextPFRun& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
|
|
CTextPFRun& operator =(const CTextPFRun& oSrc)
|
|
{
|
|
hasBullet = oSrc.hasBullet;
|
|
|
|
bulletFontRef = oSrc.bulletFontRef;
|
|
bulletSize = oSrc.bulletSize;
|
|
bulletChar = oSrc.bulletChar;
|
|
bulletColor = oSrc.bulletColor;
|
|
bulletFontProperties = oSrc.bulletFontProperties;
|
|
|
|
textAlignment = oSrc.textAlignment;
|
|
lineSpacing = oSrc.lineSpacing;
|
|
spaceBefore = oSrc.spaceBefore;
|
|
spaceAfter = oSrc.spaceAfter;
|
|
leftMargin = oSrc.leftMargin;
|
|
indent = oSrc.indent;
|
|
defaultTabSize = oSrc.defaultTabSize;
|
|
|
|
tabStops = oSrc.tabStops;
|
|
|
|
fontAlign = oSrc.fontAlign;
|
|
textDirection = oSrc.textDirection;
|
|
wrapFlags = oSrc.wrapFlags;
|
|
|
|
bIsOneLine = oSrc.bIsOneLine;
|
|
|
|
return *this;
|
|
}
|
|
|
|
void ApplyBefore(const CTextPFRun& oSrc)
|
|
{
|
|
if (!hasBullet.is_init())
|
|
{
|
|
hasBullet = oSrc.hasBullet;
|
|
}
|
|
if (!bulletSize.is_init())
|
|
{
|
|
bulletSize = oSrc.bulletSize;
|
|
}
|
|
if (!bulletChar.is_init())//master style (78).ppt
|
|
{
|
|
bulletChar = oSrc.bulletChar;
|
|
bulletFontRef = oSrc.bulletFontRef;
|
|
}
|
|
if (!bulletColor.is_init())
|
|
{
|
|
bulletColor = oSrc.bulletColor;
|
|
}
|
|
bulletFontProperties.reset();
|
|
|
|
if (!textAlignment.is_init()) textAlignment = oSrc.textAlignment;
|
|
if (!lineSpacing.is_init()) lineSpacing = oSrc.lineSpacing;
|
|
if (!spaceBefore.is_init()) spaceBefore = oSrc.spaceBefore;
|
|
if (!spaceAfter.is_init()) spaceAfter = oSrc.spaceAfter;
|
|
if (!leftMargin.is_init()) leftMargin = oSrc.leftMargin;
|
|
if (!indent.is_init()) indent = oSrc.indent;
|
|
if (!defaultTabSize.is_init()) defaultTabSize = oSrc.defaultTabSize;
|
|
|
|
if (!fontAlign.is_init()) fontAlign = oSrc.fontAlign;
|
|
if (!textDirection.is_init()) textDirection = oSrc.textDirection;
|
|
if (!wrapFlags.is_init()) wrapFlags = oSrc.wrapFlags;
|
|
|
|
if ((0 == tabStops.size()) && (0 != oSrc.tabStops.size()))
|
|
{
|
|
tabStops.insert(tabStops.end(), oSrc.tabStops.begin(), oSrc.tabStops.end());
|
|
}
|
|
}
|
|
|
|
void ApplyAfter(const CTextPFRun& oSrc)
|
|
{
|
|
if (oSrc.hasBullet.is_init())
|
|
{
|
|
hasBullet = oSrc.hasBullet;
|
|
|
|
bulletSize = oSrc.bulletSize;
|
|
bulletChar = oSrc.bulletChar;
|
|
bulletFontRef = oSrc.bulletFontRef;
|
|
bulletColor = oSrc.bulletColor;
|
|
|
|
bulletFontProperties.reset();
|
|
}
|
|
|
|
if (oSrc.textAlignment.is_init()) textAlignment = oSrc.textAlignment;
|
|
if (oSrc.lineSpacing.is_init()) lineSpacing = oSrc.lineSpacing;
|
|
if (oSrc.spaceBefore.is_init()) spaceBefore = oSrc.spaceBefore;
|
|
if (oSrc.spaceAfter.is_init()) spaceAfter = oSrc.spaceAfter;
|
|
if (oSrc.leftMargin.is_init()) leftMargin = oSrc.leftMargin;
|
|
if (oSrc.indent.is_init()) indent = oSrc.indent;
|
|
if (oSrc.defaultTabSize.is_init()) defaultTabSize = oSrc.defaultTabSize;
|
|
|
|
if (oSrc.fontAlign.is_init()) fontAlign = oSrc.fontAlign;
|
|
if (oSrc.textDirection.is_init()) textDirection = oSrc.textDirection;
|
|
if (oSrc.wrapFlags.is_init()) wrapFlags = oSrc.wrapFlags;
|
|
|
|
if (!oSrc.tabStops.empty()) tabStops = oSrc.tabStops;
|
|
}
|
|
|
|
std::wstring ToString(LONG lCount)
|
|
{
|
|
return L"";
|
|
}
|
|
|
|
};
|
|
|
|
class CTextRuler
|
|
{
|
|
public:
|
|
NSCommon::nullable_base<LONG> DefaultTabSize;
|
|
NSCommon::nullable_base<SHORT> CLevels;
|
|
|
|
NSCommon::nullable_base<SHORT> TabStops;
|
|
std::vector<std::pair<int,int>> tabsStops;
|
|
|
|
NSCommon::nullable_base<LONG> LeftMargin1;
|
|
NSCommon::nullable_base<LONG> LeftMargin2;
|
|
NSCommon::nullable_base<LONG> LeftMargin3;
|
|
NSCommon::nullable_base<LONG> LeftMargin4;
|
|
NSCommon::nullable_base<LONG> LeftMargin5;
|
|
|
|
NSCommon::nullable_base<LONG> Indent1;
|
|
NSCommon::nullable_base<LONG> Indent2;
|
|
NSCommon::nullable_base<LONG> Indent3;
|
|
NSCommon::nullable_base<LONG> Indent4;
|
|
NSCommon::nullable_base<LONG> Indent5;
|
|
|
|
|
|
public:
|
|
CTextRuler() : DefaultTabSize(), CLevels(), TabStops(),
|
|
LeftMargin1(), LeftMargin2(), LeftMargin3(), LeftMargin4(), LeftMargin5(),
|
|
Indent1(), Indent2(), Indent3(), Indent4(), Indent5(), tabsStops()
|
|
{
|
|
}
|
|
|
|
CTextRuler(const CTextRuler& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
|
|
CTextRuler& operator =(const CTextRuler& oSrc)
|
|
{
|
|
DefaultTabSize = oSrc.DefaultTabSize;
|
|
CLevels = oSrc.CLevels;
|
|
TabStops = oSrc.TabStops;
|
|
|
|
LeftMargin1 = oSrc.LeftMargin1;
|
|
LeftMargin2 = oSrc.LeftMargin2;
|
|
LeftMargin3 = oSrc.LeftMargin3;
|
|
LeftMargin4 = oSrc.LeftMargin4;
|
|
LeftMargin5 = oSrc.LeftMargin5;
|
|
|
|
Indent1 = oSrc.Indent1;
|
|
Indent2 = oSrc.Indent2;
|
|
Indent3 = oSrc.Indent3;
|
|
Indent4 = oSrc.Indent4;
|
|
Indent5 = oSrc.Indent5;
|
|
|
|
tabsStops = oSrc.tabsStops;
|
|
|
|
return *this;
|
|
}
|
|
~CTextRuler()
|
|
{
|
|
tabsStops.clear();
|
|
}
|
|
|
|
void ApplyBefore(const CTextRuler& oSrc)
|
|
{
|
|
if (!DefaultTabSize.is_init()) DefaultTabSize = oSrc.DefaultTabSize;
|
|
if (!CLevels.is_init()) CLevels = oSrc.CLevels;
|
|
|
|
if (!LeftMargin1.is_init()) LeftMargin1 = oSrc.LeftMargin1;
|
|
if (!LeftMargin2.is_init()) LeftMargin2 = oSrc.LeftMargin2;
|
|
if (!LeftMargin3.is_init()) LeftMargin3 = oSrc.LeftMargin3;
|
|
if (!LeftMargin4.is_init()) LeftMargin4 = oSrc.LeftMargin4;
|
|
if (!LeftMargin5.is_init()) LeftMargin5 = oSrc.LeftMargin5;
|
|
|
|
if (!Indent1.is_init()) Indent1 = oSrc.Indent1;
|
|
if (!Indent2.is_init()) Indent2 = oSrc.Indent2;
|
|
if (!Indent3.is_init()) Indent3 = oSrc.Indent3;
|
|
if (!Indent4.is_init()) Indent4 = oSrc.Indent4;
|
|
if (!Indent5.is_init()) Indent5 = oSrc.Indent5;
|
|
|
|
if (!tabsStops.empty()) tabsStops = oSrc.tabsStops;
|
|
}
|
|
|
|
std::wstring ToString()
|
|
{
|
|
return L"";
|
|
}
|
|
};
|
|
|
|
class CTextSIRun
|
|
{
|
|
public:
|
|
bool bIsExt;
|
|
DWORD lCount;
|
|
|
|
bool bSpell;
|
|
bool bLang;
|
|
bool bAltLang;
|
|
|
|
bool bPp10ext;
|
|
bool bBidi;
|
|
bool bSmartTag;
|
|
|
|
WORD Spell;
|
|
WORD Lang;
|
|
WORD AltLang;
|
|
|
|
WORD Bidi;
|
|
BYTE pp10runid;
|
|
|
|
bool bGramma;
|
|
|
|
std::vector<DWORD> arSmartTags;
|
|
|
|
public:
|
|
|
|
CTextSIRun()
|
|
{
|
|
bIsExt = true;
|
|
lCount = 0;
|
|
|
|
bSpell = false;
|
|
bLang = false;
|
|
bAltLang = false;
|
|
|
|
bPp10ext = false;
|
|
bBidi = false;
|
|
bSmartTag = false;
|
|
|
|
Spell = 0;
|
|
Lang = 0;
|
|
AltLang = 0;
|
|
|
|
Bidi = 0;
|
|
pp10runid = 0;
|
|
|
|
bGramma = false;
|
|
}
|
|
|
|
CTextSIRun(const CTextSIRun& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
|
|
CTextSIRun& operator =(const CTextSIRun& oSrc)
|
|
{
|
|
bIsExt = oSrc.bIsExt;
|
|
lCount = oSrc.lCount;
|
|
|
|
bSpell = oSrc.bSpell;
|
|
bLang = oSrc.bLang;
|
|
bAltLang = oSrc.bAltLang;
|
|
|
|
bPp10ext = oSrc.bPp10ext;
|
|
bBidi = oSrc.bBidi;
|
|
bSmartTag = oSrc.bSmartTag;
|
|
|
|
Spell = oSrc.Spell;
|
|
Lang = oSrc.Lang;
|
|
AltLang = oSrc.AltLang;
|
|
|
|
Bidi = oSrc.Bidi;
|
|
pp10runid = oSrc.pp10runid;
|
|
|
|
bGramma = oSrc.bGramma;
|
|
|
|
arSmartTags = oSrc.arSmartTags;
|
|
|
|
return *this;
|
|
}
|
|
|
|
void ApplyBefore(const CTextSIRun& oSrc)
|
|
{
|
|
/*
|
|
* gcc 4.8 doesn't understand this construction:
|
|
*
|
|
DEFAULT_BEFORE(bSpell, Spell);
|
|
DEFAULT_BEFORE(bLang, Lang);
|
|
DEFAULT_BEFORE(bAltLang, AltLang);
|
|
DEFAULT_BEFORE(bBidi, Bidi);
|
|
DEFAULT_BEFORE(bPp10ext, pp10runid);
|
|
*/
|
|
if (!bSpell && oSrc.bSpell)
|
|
{
|
|
bSpell = true;
|
|
Spell = oSrc.Spell;
|
|
}
|
|
if (!bLang && oSrc.bLang)
|
|
{
|
|
bLang = true;
|
|
Lang = oSrc.Lang;
|
|
}
|
|
if (!bAltLang && oSrc.bAltLang)
|
|
{
|
|
bAltLang = true;
|
|
AltLang = oSrc.AltLang;
|
|
}
|
|
if (!bBidi && oSrc.bBidi)
|
|
{
|
|
bBidi = true;
|
|
Bidi = oSrc.Bidi;
|
|
}
|
|
if (!bPp10ext && oSrc.bPp10ext)
|
|
{
|
|
bPp10ext = true;
|
|
pp10runid = oSrc.pp10runid;
|
|
}
|
|
|
|
|
|
if (!bGramma)
|
|
{
|
|
bGramma = oSrc.bGramma;
|
|
}
|
|
}
|
|
|
|
std::wstring ToString()
|
|
{
|
|
return L"";
|
|
}
|
|
};
|
|
|
|
|
|
class CSpan
|
|
{
|
|
public:
|
|
CTextCFRun m_oRun;
|
|
std::wstring m_strText;
|
|
bool m_bField;
|
|
bool m_bBreak;
|
|
|
|
CSpan() : m_oRun(), m_strText(_T("")), m_bField(false), m_bBreak(false)
|
|
{
|
|
}
|
|
CSpan(const CSpan& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CSpan& operator=(const CSpan& oSrc)
|
|
{
|
|
m_oRun = oSrc.m_oRun;
|
|
m_strText = oSrc.m_strText;
|
|
m_bField = oSrc.m_bField;
|
|
m_bBreak = oSrc.m_bBreak;
|
|
|
|
return *this;
|
|
}
|
|
~CSpan()
|
|
{
|
|
}
|
|
};
|
|
|
|
class CTextStyleLevel
|
|
{
|
|
public:
|
|
CTextPFRun m_oPFRun;
|
|
CTextCFRun m_oCFRun;
|
|
|
|
public:
|
|
CTextStyleLevel() : m_oPFRun(), m_oCFRun()
|
|
{
|
|
}
|
|
CTextStyleLevel(const CTextStyleLevel& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CTextStyleLevel& operator=(const CTextStyleLevel& oSrc)
|
|
{
|
|
m_oPFRun = oSrc.m_oPFRun;
|
|
m_oCFRun = oSrc.m_oCFRun;
|
|
|
|
return *this;
|
|
}
|
|
|
|
void ApplyAfter(const CTextStyleLevel& oSrc)
|
|
{
|
|
m_oPFRun.ApplyAfter(oSrc.m_oPFRun);
|
|
m_oCFRun.ApplyAfter(oSrc.m_oCFRun);
|
|
}
|
|
void ApplyBefore(const CTextStyleLevel& oSrc)
|
|
{
|
|
m_oPFRun.ApplyBefore(oSrc.m_oPFRun);
|
|
m_oCFRun.ApplyBefore(oSrc.m_oCFRun);
|
|
}
|
|
};
|
|
|
|
//нигде не применяется ???
|
|
//class CTextFullInfo
|
|
//{
|
|
//public:
|
|
// CTextPFRun m_oPF;
|
|
// CTextCFRun m_oCF;
|
|
// CTextRuler m_oRuler;
|
|
// CTextSIRun m_oSI;
|
|
|
|
//public:
|
|
// CTextFullInfo() : m_oPF(), m_oCF(), m_oRuler(), m_oSI()
|
|
// {
|
|
// }
|
|
|
|
// CTextFullInfo(const CTextFullInfo& oSrc)
|
|
// {
|
|
// *this = oSrc;
|
|
// }
|
|
|
|
// CTextFullInfo& operator=(const CTextFullInfo& oSrc)
|
|
// {
|
|
// m_oPF = oSrc.m_oPF;
|
|
// m_oCF = oSrc.m_oCF;
|
|
// m_oRuler = oSrc.m_oRuler;
|
|
// m_oSI = oSrc.m_oSI;
|
|
// return *this;
|
|
// }
|
|
//};
|
|
|
|
class CTextStyles
|
|
{
|
|
public:
|
|
NSCommon::nullable_base<CTextStyleLevel> m_pLevels[10];
|
|
|
|
public:
|
|
CTextStyles()
|
|
{
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
m_pLevels[i] = NULL;
|
|
}
|
|
}
|
|
CTextStyles(const CTextStyles& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CTextStyles& operator=(const CTextStyles& oSrc)
|
|
{
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
m_pLevels[i] = oSrc.m_pLevels[i];
|
|
}
|
|
return *this;
|
|
}
|
|
void SetStyles(CTextStyles* pStyles)
|
|
{
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
m_pLevels[i] = pStyles->m_pLevels[i];
|
|
}
|
|
}
|
|
void SetLanguage(nullable<WORD> & language)
|
|
{
|
|
if (!language.is_init()) return;
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
if (m_pLevels[i].is_init())
|
|
{
|
|
m_pLevels[i]->m_oCFRun.Language = language;
|
|
}
|
|
}
|
|
}
|
|
void ApplyAfter(const CTextStyles& oSrc)
|
|
{
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
if (!m_pLevels[i].is_init())
|
|
{
|
|
m_pLevels[i] = oSrc.m_pLevels[i];
|
|
}
|
|
else if (oSrc.m_pLevels[i].is_init())
|
|
{
|
|
m_pLevels[i]->ApplyAfter(oSrc.m_pLevels[i].get());
|
|
}
|
|
|
|
}
|
|
}
|
|
void ApplyBefore(const CTextStyles& oSrc)
|
|
{
|
|
for (int i = 0; i < 10; ++i)
|
|
{
|
|
if (!m_pLevels[i].is_init())
|
|
{
|
|
m_pLevels[i] = oSrc.m_pLevels[i];
|
|
}
|
|
else if (oSrc.m_pLevels[i].is_init())
|
|
{
|
|
m_pLevels[i]->ApplyBefore(oSrc.m_pLevels[i].get());
|
|
}
|
|
|
|
}
|
|
}
|
|
};
|
|
|
|
class CParagraph
|
|
{
|
|
public:
|
|
int m_lTextType;
|
|
int m_lTextLevel;
|
|
int m_lStyleThemeIndex;
|
|
|
|
CTextPFRun m_oPFRun;
|
|
std::vector<CSpan> m_arSpans;
|
|
|
|
public:
|
|
CParagraph() : m_oPFRun(), m_arSpans()
|
|
{
|
|
m_lTextType = -1;
|
|
m_lTextLevel = 0;
|
|
m_lStyleThemeIndex = -1;
|
|
}
|
|
CParagraph(const CParagraph& oSrc)
|
|
{
|
|
*this = oSrc;
|
|
}
|
|
CParagraph& operator=(const CParagraph& oSrc)
|
|
{
|
|
m_lTextLevel = oSrc.m_lTextLevel;
|
|
m_lTextType = oSrc.m_lTextType;
|
|
m_lStyleThemeIndex = oSrc.m_lStyleThemeIndex;
|
|
|
|
m_oPFRun = oSrc.m_oPFRun;
|
|
|
|
m_arSpans = oSrc.m_arSpans;
|
|
|
|
return *this;
|
|
}
|
|
~CParagraph()
|
|
{
|
|
m_arSpans.clear();
|
|
}
|
|
AVSINLINE void CheckErrors()
|
|
{
|
|
//if (IsEmpty())
|
|
//{
|
|
// m_oPFRun.hasBullet = false;
|
|
//}
|
|
size_t nCountS = m_arSpans.size();
|
|
for (size_t i = 0; i < nCountS; ++i)
|
|
{
|
|
std::replace( m_arSpans[i].m_strText.begin(), m_arSpans[i].m_strText.end(), (wchar_t)(11), (wchar_t)(13));
|
|
}
|
|
}
|
|
AVSINLINE bool IsEmpty()
|
|
{
|
|
size_t nCountSpans = m_arSpans.size();
|
|
for (size_t i = 0; i < nCountSpans; ++i)
|
|
{
|
|
size_t nLen = m_arSpans[i].m_strText.length();
|
|
|
|
if (nLen > 1)
|
|
return false;
|
|
|
|
if ((nLen == 1) && ((wchar_t)(13) != m_arSpans[i].m_strText[0]))
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
}
|