mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Developing TextCommandRederer
This commit is contained in:
889
DocxRenderer/test/TextCommandRenderer/TextCommandRenderer.cpp
Normal file
889
DocxRenderer/test/TextCommandRenderer/TextCommandRenderer.cpp
Normal file
@ -0,0 +1,889 @@
|
||||
/*
|
||||
*(c) Copyright Ascensio System SIA 2010-2023
|
||||
*
|
||||
* 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 20A-6 Ernesta Birznieka-Upish
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
|
||||
#include "TextCommandRenderer.h"
|
||||
|
||||
#include "../../../DesktopEditor/graphics/pro/Graphics.h"
|
||||
|
||||
#include "Utils.h"
|
||||
|
||||
class CTextCommandRenderer::CTextCommandRendererImpl
|
||||
{
|
||||
public:
|
||||
CTextCommandRendererImpl() = delete;
|
||||
explicit CTextCommandRendererImpl(NSFonts::IApplicationFonts* pFonts);
|
||||
CTextCommandRendererImpl(const CTextCommandRendererImpl& other) = delete;
|
||||
CTextCommandRendererImpl(CTextCommandRendererImpl&& other) = delete;
|
||||
virtual ~CTextCommandRendererImpl();
|
||||
|
||||
void BeginCommand(const DWORD& lType);
|
||||
void EndCommand (const DWORD& lType);
|
||||
void AddText(double x, double y, double w, double h);
|
||||
void NewPage();
|
||||
void SetFolder(const std::wstring& wsFolder);
|
||||
|
||||
Aggplus::CMatrix m_oTransform{};
|
||||
NSStructures::CFont m_oFont{};
|
||||
|
||||
double m_dWidth = 0.0;
|
||||
double m_dHeight = 0.0;
|
||||
|
||||
double m_dDpiX = c_dDpiX;
|
||||
double m_dDpiY = c_dDpiY;
|
||||
|
||||
private:
|
||||
void CreateFrame();
|
||||
void ResetMinMax();
|
||||
|
||||
std::unique_ptr<NSGraphics::IGraphicsRenderer> m_pRenderer{nullptr};
|
||||
std::unique_ptr<CBgraFrame> m_pFrame{nullptr};
|
||||
std::unique_ptr<NSFonts::IFontManager> m_pManager{nullptr};
|
||||
|
||||
double x_min = c_dX_MIN_DEFAULT;
|
||||
double y_min = c_dY_MIN_DEFAULT;
|
||||
|
||||
double x_max = c_dX_MAX_DEFAULT;
|
||||
double y_max = c_dY_MAX_DEFAULT;
|
||||
|
||||
std::wstring m_wsFolder = L"./output";
|
||||
size_t m_nPage = 1;
|
||||
size_t m_nCurrCommand = 0;
|
||||
|
||||
const std::wstring m_wsBaseFilename = L"page";
|
||||
const std::wstring m_wsBaseExt = L".png";
|
||||
const std::wstring m_wsBaseSep = L"/";
|
||||
};
|
||||
|
||||
CTextCommandRenderer::CTextCommandRendererImpl::CTextCommandRendererImpl(NSFonts::IApplicationFonts* pFonts)
|
||||
: m_pRenderer(NSGraphics::Create()), m_pManager(pFonts->GenerateFontManager())
|
||||
{
|
||||
m_pManager->CreateOwnerCache(8);
|
||||
}
|
||||
CTextCommandRenderer::CTextCommandRendererImpl::~CTextCommandRendererImpl()
|
||||
{
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::BeginCommand(const DWORD& lType)
|
||||
{
|
||||
if (lType == c_nTextType)
|
||||
{
|
||||
if (!m_pFrame) CreateFrame();
|
||||
ResetMinMax();
|
||||
}
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::EndCommand(const DWORD& lType)
|
||||
{
|
||||
if (lType == c_nPageType)
|
||||
{
|
||||
// if no text on the page
|
||||
if (!m_pFrame) CreateFrame();
|
||||
std::wstring filename = m_wsFolder + m_wsBaseSep + m_wsBaseFilename + std::to_wstring(m_nPage) + m_wsBaseExt;
|
||||
m_pFrame->SaveFile(filename, _CXIMAGE_FORMAT_PNG);
|
||||
m_pFrame = nullptr;
|
||||
++m_nPage;
|
||||
}
|
||||
else if (lType == c_nTextType)
|
||||
{
|
||||
double w = x_max - x_min;
|
||||
double h = y_max - y_min;
|
||||
|
||||
m_pRenderer->BeginCommand(c_nPathType);
|
||||
m_pRenderer->AddRect(x_min, y_max, w, h);
|
||||
|
||||
m_pRenderer->put_PenSize(0.1);
|
||||
m_pRenderer->put_PenColor(0);
|
||||
|
||||
m_pRenderer->Stroke();
|
||||
m_pRenderer->EndCommand(c_nPathType);
|
||||
}
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::AddText(double x, double y, double w, double h)
|
||||
{
|
||||
MAYBE_UNUSED(h);
|
||||
|
||||
m_pManager->LoadFontFromFile(m_oFont.Path, (int)m_oFont.FaceIndex, (float)m_oFont.Size, c_dDpiX, c_dDpiY);
|
||||
m_pManager->AfterLoad();
|
||||
|
||||
double line_height = m_pManager->GetLineHeight();
|
||||
double em_height = m_pManager->GetUnitsPerEm();
|
||||
|
||||
h = c_dPtToMM * (line_height * m_oFont.Size) / em_height;
|
||||
|
||||
double x2 = x + w;
|
||||
double y2 = y + h;
|
||||
|
||||
m_oTransform.TransformPoint(x, y);
|
||||
m_oTransform.TransformPoint(x2, y2);
|
||||
|
||||
x_min = std::min(x_min, x);
|
||||
y_min = std::min(y_min, y);
|
||||
|
||||
x_max = std::max(x_max, x2);
|
||||
y_max = std::max(y_max, y2);
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::NewPage()
|
||||
{
|
||||
ResetMinMax();
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::SetFolder(const std::wstring& wsFolder)
|
||||
{
|
||||
m_wsFolder = wsFolder;
|
||||
}
|
||||
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::CreateFrame()
|
||||
{
|
||||
long width_pix = static_cast<long>(m_dWidth * c_dMMToPix);
|
||||
long height_pix = static_cast<long>(m_dHeight * c_dMMToPix);
|
||||
|
||||
const long step = 4;
|
||||
const long stride = -step * width_pix;
|
||||
|
||||
m_pFrame = std::make_unique<CBgraFrame>();
|
||||
size_t data_size = width_pix * height_pix * step;
|
||||
BYTE* data = new BYTE[data_size];
|
||||
|
||||
// white and alpha is min (full transparent)
|
||||
for (long i = 0; i < width_pix * height_pix; ++i)
|
||||
reinterpret_cast<unsigned int*>(data)[i] = 0xffffffff;
|
||||
|
||||
m_pFrame->put_Data(data);
|
||||
m_pFrame->put_Height(height_pix);
|
||||
m_pFrame->put_Width(width_pix);
|
||||
m_pFrame->put_Stride(stride);
|
||||
|
||||
m_pRenderer->NewPage();
|
||||
m_pRenderer->CreateFromBgraFrame(m_pFrame.get());
|
||||
m_pRenderer->SetSwapRGB(false);
|
||||
m_pRenderer->put_Width(m_dWidth);
|
||||
m_pRenderer->put_Height(m_dHeight);
|
||||
}
|
||||
void CTextCommandRenderer::CTextCommandRendererImpl::ResetMinMax()
|
||||
{
|
||||
x_min = c_dX_MIN_DEFAULT;
|
||||
y_min = c_dY_MIN_DEFAULT;
|
||||
|
||||
x_max = c_dX_MAX_DEFAULT;
|
||||
y_max = c_dY_MAX_DEFAULT;
|
||||
}
|
||||
|
||||
CTextCommandRenderer::CTextCommandRenderer(NSFonts::IApplicationFonts* pFonts)
|
||||
: m_pImpl(std::make_unique<CTextCommandRendererImpl>(pFonts))
|
||||
{
|
||||
}
|
||||
CTextCommandRenderer::~CTextCommandRenderer()
|
||||
{
|
||||
}
|
||||
|
||||
// base settings
|
||||
HRESULT CTextCommandRenderer::get_Type(LONG* lType)
|
||||
{
|
||||
MAYBE_UNUSED(lType);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::NewPage()
|
||||
{
|
||||
m_pImpl->NewPage();
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::get_Height(double* dHeight)
|
||||
{
|
||||
*dHeight = m_pImpl->m_dHeight;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_Height(const double& dHeight)
|
||||
{
|
||||
m_pImpl->m_dHeight = dHeight;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::get_Width(double* dWidth)
|
||||
{
|
||||
*dWidth = m_pImpl->m_dWidth;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_Width(const double& dWidth)
|
||||
{
|
||||
m_pImpl->m_dWidth = dWidth;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::get_DpiX(double* dDpiX)
|
||||
{
|
||||
*dDpiX = m_pImpl->m_dDpiX;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::get_DpiY(double* dDpiY)
|
||||
{
|
||||
*dDpiY = m_pImpl->m_dDpiY;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// pen settings
|
||||
HRESULT CTextCommandRenderer::get_PenColor(LONG* lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenColor(const LONG& lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenAlpha(LONG* lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenAlpha(const LONG& lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenSize(double* dSize)
|
||||
{
|
||||
MAYBE_UNUSED(dSize);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenSize(const double& dSize)
|
||||
{
|
||||
MAYBE_UNUSED(dSize);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenDashStyle(BYTE* nDashStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nDashStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenDashStyle(const BYTE& nDashStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nDashStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenLineStartCap(BYTE* nCapStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nCapStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenLineStartCap(const BYTE& nCapStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nCapStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenLineEndCap(BYTE* nCapStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nCapStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenLineEndCap(const BYTE& nCapStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nCapStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenLineJoin(BYTE* nJoinStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nJoinStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenLineJoin(const BYTE& nJoinStyle)
|
||||
{
|
||||
MAYBE_UNUSED(nJoinStyle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenDashOffset(double* dOffset)
|
||||
{
|
||||
MAYBE_UNUSED(dOffset);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenDashOffset(const double& dOffset)
|
||||
{
|
||||
MAYBE_UNUSED(dOffset);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenAlign(LONG* lAlign)
|
||||
{
|
||||
MAYBE_UNUSED(lAlign);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenAlign(const LONG& lAlign)
|
||||
{
|
||||
MAYBE_UNUSED(lAlign);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_PenMiterLimit(double* dMiter)
|
||||
{
|
||||
MAYBE_UNUSED(dMiter);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_PenMiterLimit(const double& dMiter)
|
||||
{
|
||||
MAYBE_UNUSED(dMiter);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PenDashPattern(double* pPattern, LONG lCount)
|
||||
{
|
||||
MAYBE_UNUSED(pPattern); MAYBE_UNUSED(lCount);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
// brush settings
|
||||
HRESULT CTextCommandRenderer::get_BrushType(LONG* lType)
|
||||
{
|
||||
MAYBE_UNUSED(lType);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushType(const LONG& lType)
|
||||
{
|
||||
MAYBE_UNUSED(lType);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushColor1(LONG* lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushColor1(const LONG& lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushAlpha1(LONG* lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushAlpha1(const LONG& lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushColor2(LONG* lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushColor2(const LONG& lColor)
|
||||
{
|
||||
MAYBE_UNUSED(lColor);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushAlpha2(LONG* lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushAlpha2(const LONG& lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushTexturePath(std::wstring* wsPath)
|
||||
{
|
||||
MAYBE_UNUSED(wsPath);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushTexturePath(const std::wstring& wsPath)
|
||||
{
|
||||
MAYBE_UNUSED(wsPath);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushTextureMode(LONG* lMode)
|
||||
{
|
||||
MAYBE_UNUSED(lMode);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushTextureMode(const LONG& lMode)
|
||||
{
|
||||
MAYBE_UNUSED(lMode);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushTextureAlpha(LONG* lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushTextureAlpha(const LONG& lAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(lAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushLinearAngle(double* dAngle)
|
||||
{
|
||||
MAYBE_UNUSED(dAngle);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushLinearAngle(const double& dAngle)
|
||||
{
|
||||
MAYBE_UNUSED(dAngle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::BrushRect(const INT& nVal,
|
||||
const double& dLeft,
|
||||
const double& dTop,
|
||||
const double& dWidth,
|
||||
const double& dHeight)
|
||||
{
|
||||
MAYBE_UNUSED(nVal); MAYBE_UNUSED(dLeft); MAYBE_UNUSED(dTop);
|
||||
MAYBE_UNUSED(dWidth); MAYBE_UNUSED(dHeight);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::BrushBounds(const double& dLeft,
|
||||
const double& dTop,
|
||||
const double& dWidth,
|
||||
const double& dHeight)
|
||||
{
|
||||
MAYBE_UNUSED(dLeft); MAYBE_UNUSED(dTop); MAYBE_UNUSED(dWidth); MAYBE_UNUSED(dHeight);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::put_BrushGradientColors(LONG* pColors,
|
||||
double* pPositions,
|
||||
LONG lCount)
|
||||
{
|
||||
MAYBE_UNUSED(pColors); MAYBE_UNUSED(pPositions); MAYBE_UNUSED(lCount);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushTextureImage(Aggplus::CImage** pImage)
|
||||
{
|
||||
MAYBE_UNUSED(pImage);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushTextureImage(Aggplus::CImage* pImage)
|
||||
{
|
||||
MAYBE_UNUSED(pImage);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_BrushTransform(Aggplus::CMatrix& oMatrix)
|
||||
{
|
||||
MAYBE_UNUSED(oMatrix);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_BrushTransform(const Aggplus::CMatrix& oMatrix)
|
||||
{
|
||||
MAYBE_UNUSED(oMatrix);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
void CTextCommandRenderer::put_BrushGradInfo(void* pGradInfo)
|
||||
{
|
||||
MAYBE_UNUSED(pGradInfo);
|
||||
}
|
||||
|
||||
// font settings
|
||||
HRESULT CTextCommandRenderer::get_FontName(std::wstring* wsName)
|
||||
{
|
||||
*wsName = m_pImpl->m_oFont.Name;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontName(const std::wstring& wsName)
|
||||
{
|
||||
m_pImpl->m_oFont.Name = wsName;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontPath(std::wstring* wsPath)
|
||||
{
|
||||
*wsPath = m_pImpl->m_oFont.Path;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontPath(const std::wstring& wsPath)
|
||||
{
|
||||
m_pImpl->m_oFont.Path = wsPath;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontSize(double* dSize)
|
||||
{
|
||||
*dSize = m_pImpl->m_oFont.Size;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontSize(const double& dSize)
|
||||
{
|
||||
m_pImpl->m_oFont.Size = dSize;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontStyle(LONG* lStyle)
|
||||
{
|
||||
*lStyle = m_pImpl->m_oFont.GetStyle();
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontStyle(const LONG& lStyle)
|
||||
{
|
||||
m_pImpl->m_oFont.SetStyle(lStyle);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontStringGID(INT* bGid)
|
||||
{
|
||||
*bGid = m_pImpl->m_oFont.StringGID;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontStringGID(const INT& bGid)
|
||||
{
|
||||
m_pImpl->m_oFont.StringGID = bGid;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontCharSpace(double* dSpace)
|
||||
{
|
||||
*dSpace = m_pImpl->m_oFont.CharSpace;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontCharSpace(const double& dSpace)
|
||||
{
|
||||
m_pImpl->m_oFont.CharSpace = dSpace;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_FontFaceIndex(int* lFaceIndex)
|
||||
{
|
||||
*lFaceIndex = m_pImpl->m_oFont.FaceIndex;
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_FontFaceIndex(const int& lFaceIndex)
|
||||
{
|
||||
m_pImpl->m_oFont.FaceIndex = lFaceIndex;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// text commands
|
||||
HRESULT CTextCommandRenderer::CommandDrawTextCHAR(const LONG& lUnicode,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(lUnicode);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::CommandDrawTextExCHAR(const LONG& lUnicode,
|
||||
const LONG& lGid,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(lUnicode); MAYBE_UNUSED(lGid);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::CommandDrawText(const std::wstring& wsUnicodeText,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(wsUnicodeText);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::CommandDrawTextEx(const std::wstring& wsUnicodeText,
|
||||
const unsigned int* pGids,
|
||||
const unsigned int nGidsCount,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(wsUnicodeText); MAYBE_UNUSED(pGids); MAYBE_UNUSED(nGidsCount);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// command type
|
||||
HRESULT CTextCommandRenderer::BeginCommand(const DWORD& lType)
|
||||
{
|
||||
m_pImpl->BeginCommand(lType);
|
||||
return S_OK;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::EndCommand(const DWORD& lType)
|
||||
{
|
||||
m_pImpl->EndCommand(lType);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// graphic commands
|
||||
HRESULT CTextCommandRenderer::PathCommandMoveTo(const double& dX, const double& dY)
|
||||
{
|
||||
MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandLineTo(const double& dX, const double& dY)
|
||||
{
|
||||
MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandLinesTo(double* pPoints, const int& nCount)
|
||||
{
|
||||
MAYBE_UNUSED(pPoints); MAYBE_UNUSED(nCount);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandCurveTo(const double& dX1,
|
||||
const double& dY1,
|
||||
const double& dX2,
|
||||
const double& dY2,
|
||||
const double& dXe,
|
||||
const double& dYe)
|
||||
{
|
||||
MAYBE_UNUSED(dX1); MAYBE_UNUSED(dY1); MAYBE_UNUSED(dX2);
|
||||
MAYBE_UNUSED(dY2); MAYBE_UNUSED(dXe); MAYBE_UNUSED(dYe);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandCurvesTo(double* pPoints, const int& nCount)
|
||||
{
|
||||
MAYBE_UNUSED(pPoints); MAYBE_UNUSED(nCount);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandArcTo(const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH,
|
||||
const double& dStartAngle,
|
||||
const double& dSweepAngle)
|
||||
{
|
||||
MAYBE_UNUSED(dX); MAYBE_UNUSED(dY); MAYBE_UNUSED(dW);
|
||||
MAYBE_UNUSED(dH); MAYBE_UNUSED(dStartAngle); MAYBE_UNUSED(dSweepAngle);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandClose()
|
||||
{
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandEnd()
|
||||
{
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::DrawPath(const LONG& lType)
|
||||
{
|
||||
MAYBE_UNUSED(lType);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::PathCommandStart()
|
||||
{
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandGetCurrentPoint(double* dX, double* dY)
|
||||
{
|
||||
MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandTextCHAR(const LONG& lUnicode,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(lUnicode);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandTextExCHAR(const LONG& lUnicode,
|
||||
const LONG& lGid,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(lUnicode); MAYBE_UNUSED(lGid);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandText(const std::wstring& wsUnicodeText,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(wsUnicodeText);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::PathCommandTextEx(const std::wstring& wsUnicodeText,
|
||||
const unsigned int* pGids,
|
||||
const unsigned int nGidsCount,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(wsUnicodeText); MAYBE_UNUSED(pGids); MAYBE_UNUSED(nGidsCount);
|
||||
m_pImpl->AddText(dX, dY, dW, dH);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// image commands
|
||||
HRESULT CTextCommandRenderer::DrawImage(IGrObject* pImage,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH)
|
||||
{
|
||||
MAYBE_UNUSED(pImage); MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
MAYBE_UNUSED(dW); MAYBE_UNUSED(dH);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::DrawImageFromFile(const std::wstring& wsImagePath,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH,
|
||||
const BYTE& nAlpha)
|
||||
{
|
||||
MAYBE_UNUSED(wsImagePath); MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
MAYBE_UNUSED(dW); MAYBE_UNUSED(dH); MAYBE_UNUSED(nAlpha);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
// transform commands
|
||||
HRESULT CTextCommandRenderer::SetTransform(const double& dM11,
|
||||
const double& dM12,
|
||||
const double& dM21,
|
||||
const double& dM22,
|
||||
const double& dX,
|
||||
const double& dY)
|
||||
{
|
||||
m_pImpl->m_oTransform.SetElements(dM11, dM12, dM21, dM22, dX, dY);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::GetTransform(double* dM11,
|
||||
double* dM12,
|
||||
double* dM21,
|
||||
double* dM22,
|
||||
double* dX,
|
||||
double* dY)
|
||||
{
|
||||
MAYBE_UNUSED(dM11); MAYBE_UNUSED(dM12); MAYBE_UNUSED(dM21);
|
||||
MAYBE_UNUSED(dM22); MAYBE_UNUSED(dX); MAYBE_UNUSED(dY);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::ResetTransform()
|
||||
{
|
||||
m_pImpl->m_oTransform.Reset();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::get_ClipMode(LONG* lMode)
|
||||
{
|
||||
MAYBE_UNUSED(lMode);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::put_ClipMode(const LONG& lMode)
|
||||
{
|
||||
MAYBE_UNUSED(lMode);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::CommandLong(const LONG& lType, const LONG& lCommand)
|
||||
{
|
||||
MAYBE_UNUSED(lType); MAYBE_UNUSED(lCommand);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::CommandDouble(const LONG& lType, const double& dCommand)
|
||||
{
|
||||
MAYBE_UNUSED(lType); MAYBE_UNUSED(dCommand);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::CommandString(const LONG& lType, const std::wstring& sCommand)
|
||||
{
|
||||
MAYBE_UNUSED(lType); MAYBE_UNUSED(sCommand);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT CTextCommandRenderer::IsSupportAdvancedCommand(const IAdvancedCommand::AdvancedCommandType& type)
|
||||
{
|
||||
MAYBE_UNUSED(type);
|
||||
return S_FALSE;
|
||||
}
|
||||
HRESULT CTextCommandRenderer::AdvancedCommand(IAdvancedCommand* command)
|
||||
{
|
||||
MAYBE_UNUSED(command);
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
void CTextCommandRenderer::Do(IOfficeDrawingFile* pFile, const std::wstring& wsFolder)
|
||||
{
|
||||
m_pImpl->SetFolder(wsFolder);
|
||||
int pages_count = pFile->GetPagesCount();
|
||||
for (int i = 0; i < pages_count; ++i)
|
||||
DrawPage(pFile, i);
|
||||
}
|
||||
void CTextCommandRenderer::DrawPage(IOfficeDrawingFile* pFile, int nPage)
|
||||
{
|
||||
NewPage();
|
||||
BeginCommand(c_nPageType);
|
||||
|
||||
double width, height, dpi_x, dpi_y;
|
||||
pFile->GetPageInfo(nPage, &width, &height, &dpi_x, &dpi_y);
|
||||
|
||||
width *= 25.4 / dpi_x;
|
||||
height *= 25.4 / dpi_y;
|
||||
|
||||
put_Width(width);
|
||||
put_Height(height);
|
||||
|
||||
pFile->DrawPageOnRenderer(this, nPage, nullptr);
|
||||
|
||||
EndCommand(c_nPageType);
|
||||
}
|
||||
305
DocxRenderer/test/TextCommandRenderer/TextCommandRenderer.h
Normal file
305
DocxRenderer/test/TextCommandRenderer/TextCommandRenderer.h
Normal file
@ -0,0 +1,305 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2023
|
||||
*
|
||||
* 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 20A-6 Ernesta Birznieka-Upish
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* 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 <memory>
|
||||
|
||||
#include "../../../DesktopEditor/graphics/IRenderer.h"
|
||||
#include "../../../DesktopEditor/graphics/pro/officedrawingfile.h"
|
||||
#include "../../../DesktopEditor/graphics/pro/Fonts.h"
|
||||
|
||||
#ifndef TEXTCOMMANDRENDERER_USE_DYNAMIC_LIBRARY
|
||||
#define TEXTCOMMANDRENDERER_DECL_EXPORT
|
||||
#else
|
||||
#include "../../../DesktopEditor/common/base_export.h"
|
||||
#define TEXTCOMMANDRENDERER_DECL_EXPORT Q_DECL_EXPORT
|
||||
#endif
|
||||
|
||||
class TEXTCOMMANDRENDERER_DECL_EXPORT CTextCommandRenderer : public IRenderer
|
||||
{
|
||||
public:
|
||||
CTextCommandRenderer() = delete;
|
||||
explicit CTextCommandRenderer(NSFonts::IApplicationFonts* pFonts);
|
||||
CTextCommandRenderer(const CTextCommandRenderer& other) = delete;
|
||||
CTextCommandRenderer(CTextCommandRenderer&& other) = delete;
|
||||
virtual ~CTextCommandRenderer();
|
||||
|
||||
// base settings
|
||||
virtual HRESULT get_Type (LONG* lType) override;
|
||||
virtual HRESULT NewPage () override;
|
||||
virtual HRESULT get_Height(double* dHeight) override;
|
||||
virtual HRESULT put_Height(const double& dHeight) override;
|
||||
virtual HRESULT get_Width (double* dWidth) override;
|
||||
virtual HRESULT put_Width (const double& dWidth) override;
|
||||
virtual HRESULT get_DpiX (double* dDpiX) override;
|
||||
virtual HRESULT get_DpiY (double* dDpiY) override;
|
||||
|
||||
// pen settings
|
||||
virtual HRESULT get_PenColor(LONG* lColor) override;
|
||||
virtual HRESULT put_PenColor(const LONG& lColor) override;
|
||||
|
||||
virtual HRESULT get_PenAlpha(LONG* lAlpha) override;
|
||||
virtual HRESULT put_PenAlpha(const LONG& lAlpha) override;
|
||||
|
||||
virtual HRESULT get_PenSize(double* dSize) override;
|
||||
virtual HRESULT put_PenSize(const double& dSize) override;
|
||||
|
||||
virtual HRESULT get_PenDashStyle(BYTE* nDashStyle) override;
|
||||
virtual HRESULT put_PenDashStyle(const BYTE& nDashStyle) override;
|
||||
|
||||
virtual HRESULT get_PenLineStartCap(BYTE* nCapStyle) override;
|
||||
virtual HRESULT put_PenLineStartCap(const BYTE& nCapStyle) override;
|
||||
|
||||
virtual HRESULT get_PenLineEndCap(BYTE* nCapStyle) override;
|
||||
virtual HRESULT put_PenLineEndCap(const BYTE& nCapStyle) override;
|
||||
|
||||
virtual HRESULT get_PenLineJoin(BYTE* nJoinStyle) override;
|
||||
virtual HRESULT put_PenLineJoin(const BYTE& nJoinStyle) override;
|
||||
|
||||
virtual HRESULT get_PenDashOffset(double* dOffset) override;
|
||||
virtual HRESULT put_PenDashOffset(const double& dOffset) override;
|
||||
|
||||
virtual HRESULT get_PenAlign(LONG* lAlign) override;
|
||||
virtual HRESULT put_PenAlign(const LONG& lAlign) override;
|
||||
|
||||
virtual HRESULT get_PenMiterLimit(double* dMiter) override;
|
||||
virtual HRESULT put_PenMiterLimit(const double& dMiter) override;
|
||||
|
||||
virtual HRESULT PenDashPattern(double* pPattern, LONG lCount) override;
|
||||
|
||||
// brush settings
|
||||
virtual HRESULT get_BrushType(LONG* lType) override;
|
||||
virtual HRESULT put_BrushType(const LONG& lType)override;
|
||||
|
||||
virtual HRESULT get_BrushColor1(LONG* lColor) override;
|
||||
virtual HRESULT put_BrushColor1(const LONG& lColor) override;
|
||||
|
||||
virtual HRESULT get_BrushAlpha1(LONG* lAlpha) override;
|
||||
virtual HRESULT put_BrushAlpha1(const LONG& lAlpha) override;
|
||||
|
||||
virtual HRESULT get_BrushColor2(LONG* lColor) override;
|
||||
virtual HRESULT put_BrushColor2(const LONG& lColor) override;
|
||||
|
||||
virtual HRESULT get_BrushAlpha2(LONG* lAlpha) override;
|
||||
virtual HRESULT put_BrushAlpha2(const LONG& lAlpha) override;
|
||||
|
||||
virtual HRESULT get_BrushTexturePath(std::wstring* wsPath) override;
|
||||
virtual HRESULT put_BrushTexturePath(const std::wstring& wsPath) override;
|
||||
|
||||
virtual HRESULT get_BrushTextureMode(LONG* lMode) override;
|
||||
virtual HRESULT put_BrushTextureMode(const LONG& lMode) override;
|
||||
|
||||
virtual HRESULT get_BrushTextureAlpha(LONG* lAlpha) override;
|
||||
virtual HRESULT put_BrushTextureAlpha(const LONG& lAlpha) override;
|
||||
|
||||
virtual HRESULT get_BrushLinearAngle(double* dAngle) override;
|
||||
virtual HRESULT put_BrushLinearAngle(const double& dAngle) override;
|
||||
|
||||
virtual HRESULT BrushRect (const INT& nVal,
|
||||
const double& dLeft,
|
||||
const double& dTop,
|
||||
const double& dWidth,
|
||||
const double& dHeight) override;
|
||||
|
||||
virtual HRESULT BrushBounds(const double& dLeft,
|
||||
const double& dTop,
|
||||
const double& dWidth,
|
||||
const double& dHeight) override;
|
||||
|
||||
virtual HRESULT put_BrushGradientColors(LONG* pColors,
|
||||
double* pPositions,
|
||||
LONG lCount) override;
|
||||
|
||||
virtual HRESULT get_BrushTextureImage(Aggplus::CImage** pImage) override;
|
||||
virtual HRESULT put_BrushTextureImage(Aggplus::CImage* pImage) override;
|
||||
|
||||
virtual HRESULT get_BrushTransform(Aggplus::CMatrix& oMatrix) override;
|
||||
virtual HRESULT put_BrushTransform(const Aggplus::CMatrix& oMatrix) override;
|
||||
|
||||
virtual void put_BrushGradInfo(void* pGradInfo) override;
|
||||
|
||||
// font settings
|
||||
virtual HRESULT get_FontName(std::wstring* wsName) override;
|
||||
virtual HRESULT put_FontName(const std::wstring& wsName) override;
|
||||
|
||||
virtual HRESULT get_FontPath(std::wstring* wsPath) override;
|
||||
virtual HRESULT put_FontPath(const std::wstring& wsPath) override;
|
||||
|
||||
virtual HRESULT get_FontSize(double* dSize) override;
|
||||
virtual HRESULT put_FontSize(const double& dSize) override;
|
||||
|
||||
virtual HRESULT get_FontStyle(LONG* lStyle) override;
|
||||
virtual HRESULT put_FontStyle(const LONG& lStyle) override;
|
||||
|
||||
virtual HRESULT get_FontStringGID(INT* bGid) override;
|
||||
virtual HRESULT put_FontStringGID(const INT& bGid) override;
|
||||
|
||||
virtual HRESULT get_FontCharSpace(double* dSpace) override;
|
||||
virtual HRESULT put_FontCharSpace(const double& dSpace) override;
|
||||
|
||||
virtual HRESULT get_FontFaceIndex(int* lFaceIndex) override;
|
||||
virtual HRESULT put_FontFaceIndex(const int& lFaceIndex) override;
|
||||
|
||||
// text commands
|
||||
virtual HRESULT CommandDrawTextCHAR(const LONG& lUnicode,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT CommandDrawTextExCHAR(const LONG& lUnicode,
|
||||
const LONG& lGid,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT CommandDrawText(const std::wstring& wsUnicodeText,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT CommandDrawTextEx(const std::wstring& wsUnicodeText,
|
||||
const unsigned int* pGids,
|
||||
const unsigned int nGidsCount,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
// command type
|
||||
virtual HRESULT BeginCommand(const DWORD& lType) override;
|
||||
virtual HRESULT EndCommand(const DWORD& lType) override;
|
||||
|
||||
// graphic commands
|
||||
virtual HRESULT PathCommandMoveTo (const double& dX, const double& dY) override;
|
||||
virtual HRESULT PathCommandLineTo (const double& dX, const double& dY) override;
|
||||
virtual HRESULT PathCommandLinesTo (double* pPoints, const int& nCount) override;
|
||||
virtual HRESULT PathCommandCurveTo (const double& dX1,
|
||||
const double& dY1,
|
||||
const double& dX2,
|
||||
const double& dY2,
|
||||
const double& dXe,
|
||||
const double& dYe) override;
|
||||
|
||||
virtual HRESULT PathCommandCurvesTo(double* pPoints, const int& nCount) override;
|
||||
virtual HRESULT PathCommandArcTo (const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH,
|
||||
const double& dStartAngle,
|
||||
const double& dSweepAngle) override;
|
||||
|
||||
virtual HRESULT PathCommandClose () override;
|
||||
virtual HRESULT PathCommandEnd () override;
|
||||
virtual HRESULT DrawPath (const LONG& lType) override;
|
||||
virtual HRESULT PathCommandStart () override;
|
||||
|
||||
virtual HRESULT PathCommandGetCurrentPoint(double* dX, double* dY) override;
|
||||
|
||||
virtual HRESULT PathCommandTextCHAR(const LONG& lUnicode,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT PathCommandTextExCHAR(const LONG& lUnicode,
|
||||
const LONG& lGid,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT PathCommandText(const std::wstring& wsUnicodeText,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT PathCommandTextEx (const std::wstring& wsUnicodeText,
|
||||
const unsigned int* pGids,
|
||||
const unsigned int nGidsCount,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
// image commands
|
||||
virtual HRESULT DrawImage(IGrObject* pImage,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH) override;
|
||||
|
||||
virtual HRESULT DrawImageFromFile(const std::wstring& wsImagePath,
|
||||
const double& dX,
|
||||
const double& dY,
|
||||
const double& dW,
|
||||
const double& dH,
|
||||
const BYTE& nAlpha = 255) override;
|
||||
|
||||
// transform commands
|
||||
virtual HRESULT SetTransform(const double& dM11,
|
||||
const double& dM12,
|
||||
const double& dM21,
|
||||
const double& dM22,
|
||||
const double& dX,
|
||||
const double& dY) override;
|
||||
|
||||
virtual HRESULT GetTransform(double* dM11,
|
||||
double* dM12,
|
||||
double* dM21,
|
||||
double* dM22,
|
||||
double* dX,
|
||||
double* dY) override;
|
||||
|
||||
virtual HRESULT ResetTransform() override;
|
||||
|
||||
virtual HRESULT get_ClipMode(LONG* lMode) override;
|
||||
virtual HRESULT put_ClipMode(const LONG& lMode) override;
|
||||
|
||||
// advanced
|
||||
virtual HRESULT CommandLong(const LONG& lType, const LONG& lCommand) override;
|
||||
virtual HRESULT CommandDouble(const LONG& lType, const double& dCommand) override;
|
||||
virtual HRESULT CommandString(const LONG& lType, const std::wstring& sCommand) override;
|
||||
|
||||
virtual HRESULT IsSupportAdvancedCommand(const IAdvancedCommand::AdvancedCommandType& type) override;
|
||||
virtual HRESULT AdvancedCommand(IAdvancedCommand* command) override;
|
||||
|
||||
// main methods
|
||||
void Do(IOfficeDrawingFile* pFile, const std::wstring& wsFolder = L"./output");
|
||||
void DrawPage(IOfficeDrawingFile* pFile, int nPage);
|
||||
|
||||
private:
|
||||
class CTextCommandRendererImpl;
|
||||
std::unique_ptr<CTextCommandRendererImpl> m_pImpl;
|
||||
};
|
||||
@ -0,0 +1,32 @@
|
||||
QT -= core gui
|
||||
|
||||
VERSION = 1.0.0
|
||||
TARGET = TextCommandRenderer
|
||||
TEMPLATE = lib
|
||||
|
||||
CONFIG += c++11
|
||||
CONFIG += shared
|
||||
CONFIG += plugin
|
||||
|
||||
CORE_ROOT_DIR = $$PWD/../../../
|
||||
PWD_ROOT_DIR = $$PWD
|
||||
include(../../../Common/base.pri)
|
||||
|
||||
DEFINES += TEXTCOMMANDRENDERER_USE_DYNAMIC_LIBRARY
|
||||
|
||||
ADD_DEPENDENCY(UnicodeConverter, kernel, graphics)
|
||||
|
||||
core_windows {
|
||||
LIBS += \
|
||||
-lgdi32 \
|
||||
-ladvapi32 \
|
||||
-luser32 \
|
||||
-lshell32
|
||||
}
|
||||
|
||||
HEADERS += \
|
||||
TextCommandRenderer.h \
|
||||
Utils.h
|
||||
|
||||
SOURCES += \
|
||||
TextCommandRenderer.cpp
|
||||
17
DocxRenderer/test/TextCommandRenderer/Utils.h
Normal file
17
DocxRenderer/test/TextCommandRenderer/Utils.h
Normal file
@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#define MAYBE_UNUSED(x) (void)(x)
|
||||
|
||||
const double c_dDpiX = 72.0;
|
||||
const double c_dDpiY = 72.0;
|
||||
|
||||
constexpr double c_dMMToPix = 72.0 / 25.4;
|
||||
constexpr double c_dPixToMM = 25.4 / 72.0;
|
||||
constexpr double c_dMMToPt = 72.0 / 25.4;
|
||||
constexpr double c_dPtToMM = 25.4 / 72.0;
|
||||
|
||||
const double c_dX_MIN_DEFAULT = 10000;
|
||||
const double c_dY_MIN_DEFAULT = 10000;
|
||||
|
||||
const double c_dX_MAX_DEFAULT = -10000;
|
||||
const double c_dY_MAX_DEFAULT = -10000;
|
||||
@ -10,7 +10,7 @@ CORE_ROOT_DIR = $$PWD/../..
|
||||
PWD_ROOT_DIR = $$PWD
|
||||
include($$CORE_ROOT_DIR/Common/base.pri)
|
||||
|
||||
ADD_DEPENDENCY(UnicodeConverter, kernel, kernel_network, graphics, PdfFile, DjVuFile, XpsFile, DocxRenderer)
|
||||
ADD_DEPENDENCY(UnicodeConverter, kernel, kernel_network, graphics, PdfFile, DjVuFile, XpsFile, DocxRenderer, TextCommandRenderer)
|
||||
|
||||
core_linux:include($$PWD/../../Common/3dParty/icu/icu.pri)
|
||||
core_windows:LIBS += -lgdi32 -ladvapi32 -luser32 -lshell32
|
||||
|
||||
Reference in New Issue
Block a user