Commit 973b6d5c authored by Elen.Subbotina's avatar Elen.Subbotina Committed by Alexander Trofimov

COOXToVMLGeometry обновлен согласно изменениям IRenderer

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63714 954022d7-b5bf-4e40-9824-e11837661b57
parent db6ec990
...@@ -3435,12 +3435,11 @@ HRESULT CDrawingConverter::SaveObject(LONG lStart, LONG lLength, const CString& ...@@ -3435,12 +3435,11 @@ HRESULT CDrawingConverter::SaveObject(LONG lStart, LONG lLength, const CString&
oXmlWriter.m_bIsTop = (1 == m_nCurrentIndexObject) ? true : false; oXmlWriter.m_bIsTop = (1 == m_nCurrentIndexObject) ? true : false;
//TODOOO #if defined(BUILD_CONFIG_FULL_VERSION) && defined(AVS_USE_CONVERT_PPTX_TOCUSTOM_VML)
//#if defined(BUILD_CONFIG_FULL_VERSION) && defined(AVS_USE_CONVERT_PPTX_TOCUSTOM_VML) if (NULL == m_pOOXToVMLRenderer)
// if (NULL == m_pOOXToVMLRenderer) m_pOOXToVMLRenderer = new COOXToVMLGeometry();
// m_pOOXToVMLRenderer = new COOXToVMLGeometry(); oXmlWriter.m_pOOXToVMLRenderer = m_pOOXToVMLRenderer;
// oXmlWriter.m_pOOXToVMLRenderer = m_pOOXToVMLRenderer; #endif
//#endif
if(bOle) if(bOle)
{ {
if (oElem.is<PPTX::Logic::Shape>()) if (oElem.is<PPTX::Logic::Shape>())
......
...@@ -655,11 +655,11 @@ public: ...@@ -655,11 +655,11 @@ public:
virtual HRESULT put_FontFaceIndex(const int& lFaceIndex){ return S_OK; } virtual HRESULT put_FontFaceIndex(const int& lFaceIndex){ return S_OK; }
//-------- -------------------------------------------------------- //-------- --------------------------------------------------------
virtual HRESULT CommandDrawTextCHAR(const LONG& c, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset){ return S_OK; } virtual HRESULT CommandDrawTextCHAR(const LONG& c, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT CommandDrawText(const std::wstring& bsText, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset){ return S_OK; } virtual HRESULT CommandDrawText(const std::wstring& bsText, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT CommandDrawTextExCHAR(const LONG& c, const LONG& gid, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset, const DWORD& lFlags){ return S_OK; } virtual HRESULT CommandDrawTextExCHAR(const LONG& c, const LONG& gid, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT CommandDrawTextEx(const std::wstring& bsUnicodeText, const std::wstring& bsGidText, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset, const DWORD& lFlags){ return S_OK; } virtual HRESULT CommandDrawTextEx(const std::wstring& bsUnicodeText, const unsigned int* pGids, const unsigned int nGidsCount, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
//-------- --------------------------------------------------------------- //-------- ---------------------------------------------------------------
virtual HRESULT BeginCommand(const DWORD& lType) virtual HRESULT BeginCommand(const DWORD& lType)
...@@ -767,11 +767,11 @@ public: ...@@ -767,11 +767,11 @@ public:
return S_OK; return S_OK;
} }
virtual HRESULT PathCommandTextCHAR(const LONG& c, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset){ return S_OK; } virtual HRESULT PathCommandTextCHAR(const LONG& c, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT PathCommandText(const std::wstring& bsText, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset){ return S_OK; } virtual HRESULT PathCommandText(const std::wstring& bsText, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT PathCommandTextExCHAR(const LONG& c, const LONG& gid, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset, const DWORD& lFlags){ return S_OK; } virtual HRESULT PathCommandTextExCHAR(const LONG& c, const LONG& gid, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
virtual HRESULT PathCommandTextEx(const std::wstring& bsUnicodeText, const std::wstring& bsGidText, const double& x, const double& y, const double& w, const double& h, const double& baselineOffset, const DWORD& lFlags){ return S_OK; } virtual HRESULT PathCommandTextEx(const std::wstring& sText, const unsigned int* pGids, const unsigned int nGidsCount, const double& x, const double& y, const double& w, const double& h) { return S_OK; }
//-------- --------------------------------------------------- //-------- ---------------------------------------------------
virtual HRESULT DrawImage(IGrObject* pImage, const double& x, const double& y, const double& w, const double& h){ return S_OK; } virtual HRESULT DrawImage(IGrObject* pImage, const double& x, const double& y, const double& w, const double& h){ return S_OK; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment