mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63690 954022d7-b5bf-4e40-9824-e11837661b57
97 lines
3.2 KiB
C++
97 lines
3.2 KiB
C++
#ifndef _XPS_XPSLIB_UTILS_H
|
|
#define _XPS_XPSLIB_UTILS_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "WString.h"
|
|
|
|
#include "../../DesktopEditor/common/Types.h"
|
|
|
|
namespace XmlUtils
|
|
{
|
|
class CXmlLiteReader;
|
|
}
|
|
|
|
class IRenderer;
|
|
|
|
namespace XPS
|
|
{
|
|
struct TIndicesEntry
|
|
{
|
|
public:
|
|
|
|
TIndicesEntry() : nUnicode(0), nGid(0), dAdvance(0.0), dHorOffset(0.0), dVerOffset(0.0),
|
|
bUnicode(false), bGid(false), bAdvance(false), bHorOffset(false), bVerOffset(false)
|
|
{
|
|
}
|
|
void Reset()
|
|
{
|
|
bUnicode = false;
|
|
bGid = false;
|
|
bAdvance = false;
|
|
bHorOffset = false;
|
|
bVerOffset = false;
|
|
|
|
nUnicode = 0;
|
|
nGid = 0;
|
|
dAdvance = 0;
|
|
dHorOffset = 0;
|
|
dVerOffset = 0;
|
|
}
|
|
|
|
public:
|
|
|
|
unsigned int nUnicode;
|
|
unsigned short nGid;
|
|
double dAdvance;
|
|
double dHorOffset;
|
|
double dVerOffset;
|
|
|
|
bool bUnicode;
|
|
bool bGid;
|
|
bool bAdvance;
|
|
bool bHorOffset;
|
|
bool bVerOffset;
|
|
|
|
std::vector<unsigned int> vRemainUnicodes;
|
|
};
|
|
|
|
|
|
bool IsAlpha(wchar_t wChar);
|
|
double GetDouble(const CWString& wsString);
|
|
double GetDouble(const std::wstring& wsString);
|
|
int GetInteger(const std::wstring& wsString);
|
|
bool GetBool(const std::wstring& wsString);
|
|
void GetBgra(const std::wstring& wsString, int& nBgr, int& nAlpha);
|
|
|
|
unsigned char GetCapStyle(const std::string& wsCapStyle);
|
|
|
|
std::wstring NormalizePath(const std::wstring& wsPath);
|
|
std::wstring GetPath(const std::wstring& wsPath);
|
|
std::wstring GetFileName(const std::wstring& wsPath);
|
|
std::wstring GetFileExtension(const std::wstring& wsPath);
|
|
std::wstring RemoveNamespace(const std::wstring& wsString);
|
|
|
|
std::vector<std::vector<std::wstring>> Split(const std::wstring& wsString, wchar_t wDelim1, wchar_t wDelim2);
|
|
|
|
void ReadAttribute(XmlUtils::CXmlLiteReader& oReader, const wchar_t* wsAttrName, std::wstring& wsAttr);
|
|
void ReadAttribute(XmlUtils::CXmlLiteReader& oReader, const wchar_t* wsAttrName, CWString& wsAttr);
|
|
bool VmlToRenderer(const CWString& wsString, IRenderer* pRenderer);
|
|
bool GetNextGlyph(const wchar_t* wsIndices, int& nIndicesPos, const int& nIndicesLen, unsigned short* pUtf16, int& nUtf16Pos, const int& nUtf16Len, TIndicesEntry& oEntry);
|
|
|
|
void ReadSTPoint(const CWString& wsString, double& dX, double& dY);
|
|
void ReadSTColor(const CWString& wsString, int& nBgr, int& nAlpha);
|
|
void ReadSTColor(const CWString& wsString, LONG& lColor);
|
|
void ReadSTDouble(const CWString& wsString, double& dValue);
|
|
|
|
void ReadMatrixTransform(XmlUtils::CXmlLiteReader& oReader, CWString& wsTransform, CWString* pwsKey = NULL);
|
|
void ReadTransform (XmlUtils::CXmlLiteReader& oReader, CWString& wsTransform, CWString* pwsKey = NULL);
|
|
void ReadPathGeometry (XmlUtils::CXmlLiteReader& oReader, CWString& wsData, CWString& wsTransform, CWString* pwsKey = NULL);
|
|
void ReadPathFigure (XmlUtils::CXmlLiteReader& oReader, std::wstring&, bool bEvenOdd);
|
|
void ReadClip (XmlUtils::CXmlLiteReader& oReader, CWString& wsClip);
|
|
|
|
void ReadGradientStops(XmlUtils::CXmlLiteReader& oReader, std::vector<LONG>& vColors, std::vector<double>& vPositions, const double& dOpacity);
|
|
}
|
|
|
|
#endif // _XPS_XPSLIB_UTILS_H
|