mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
644 lines
19 KiB
C++
644 lines
19 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 "AudioOverlay.h"
|
||
#include "Slide.h"
|
||
|
||
namespace NSPresentationEditor
|
||
{
|
||
class CDocument
|
||
{
|
||
public:
|
||
std::vector<CTheme> m_arThemes;
|
||
std::vector<CSlide*> m_arSlides;
|
||
std::vector<CSlide*> m_arNotes;
|
||
|
||
CTheme* m_pNotesMaster;
|
||
CTheme* m_pHandoutMaster;
|
||
|
||
CMetricInfo m_oInfo;
|
||
|
||
CDocument() : m_arThemes(), m_arSlides()
|
||
{
|
||
m_pHandoutMaster = NULL;
|
||
m_pNotesMaster = NULL;
|
||
}
|
||
|
||
~CDocument()
|
||
{
|
||
Clear();
|
||
}
|
||
|
||
inline void Clear()
|
||
{
|
||
m_arThemes.clear();
|
||
try
|
||
{
|
||
ClearSlides();
|
||
ClearNotes();
|
||
|
||
RELEASEOBJECT(m_pHandoutMaster);
|
||
RELEASEOBJECT(m_pNotesMaster);
|
||
}catch(...)
|
||
{
|
||
}
|
||
}
|
||
inline void ClearSlides()
|
||
{
|
||
for (size_t i = 0 ; i < m_arSlides.size(); i++)
|
||
{
|
||
RELEASEOBJECT(m_arSlides[i]);
|
||
}
|
||
m_arSlides.clear();
|
||
}
|
||
inline void ClearNotes()
|
||
{
|
||
for (size_t i = 0 ; i < m_arNotes.size(); i++)
|
||
{
|
||
RELEASEOBJECT(m_arNotes[i]);
|
||
}
|
||
m_arNotes.clear();
|
||
}
|
||
|
||
#if defined (_DEBUG)
|
||
std::wstring GetXmlSlideTransition ( CSlide& oSlide/*, CAudioOverlay& oAudioOverlay*/ )
|
||
{
|
||
std::wstring Source = std::wstring ( _T("") );
|
||
|
||
int EffectID = 1;
|
||
int lEffectDirection = oSlide.m_oSlideShow.m_oTransition.m_nEffectDirection;
|
||
|
||
switch ( oSlide.m_oSlideShow.m_oTransition.m_nEffectType )
|
||
{
|
||
case 0 : // Cut
|
||
{
|
||
// Отрабатывается выше ( выкидывать слайд, или вставлять на несколько ms )
|
||
}
|
||
break;
|
||
case 1 : // Random //
|
||
{
|
||
// рандом вставить
|
||
EffectID = 1; // Fade Solid Smal
|
||
}
|
||
break;
|
||
case 2 : // Blinds
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Vertical // Slide Side Top To Bottom
|
||
EffectID = 1003;
|
||
if ( 0x01 == lEffectDirection ) // Horizontal // Slide Side Left To Righ
|
||
EffectID = 1001;
|
||
}
|
||
break;
|
||
case 3 : // Checker
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Horizontal // WipeCheckerRightToLef
|
||
EffectID = 2901;
|
||
if ( 0x01 == lEffectDirection ) // Vertical // WipeCheckerTopToBottom
|
||
EffectID = 2903;
|
||
}
|
||
break;
|
||
case 4 : // Cover
|
||
{
|
||
//0x00 Left
|
||
#pragma message ("TODO : Cover - добавить такой эффект в ImageStudio")
|
||
//0x01 Up
|
||
//0x02 Right
|
||
//0x03 Down
|
||
//0x04 Left Up
|
||
//0x05 Right Up
|
||
//0x06 Left Down
|
||
//0x07 Right Down
|
||
}
|
||
break;
|
||
case 5 : // Dissolve
|
||
{
|
||
#pragma message ("TODO : Dissolve - добавить такой эффект в ImageStudio")
|
||
|
||
EffectID = 1; // Fade Solid Smal
|
||
}
|
||
break;
|
||
case 6 : // Fade
|
||
{
|
||
EffectID = 4904; // Flash Dark
|
||
}
|
||
break;
|
||
case 7 : // Uncover
|
||
{
|
||
#pragma message ("TODO : Uncover - добавить такой эффект в ImageStudio")
|
||
//0x00 Left
|
||
//0x01 Up
|
||
//0x02 Right
|
||
//0x03 Down
|
||
//0x04 Left Up
|
||
//0x05 Right Up
|
||
//0x06 Left Down
|
||
//0x07 Right Down
|
||
}
|
||
break;
|
||
case 8 : // Random Bars
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Horizontal
|
||
EffectID = 5331;
|
||
if ( 0x01 == lEffectDirection ) // Vertical
|
||
EffectID = 5332;
|
||
}
|
||
break;
|
||
case 9 : // Strips
|
||
{
|
||
if ( 0x04 == lEffectDirection ) // Left Up // Mosaic Right Bottom
|
||
EffectID = 110;
|
||
if ( 0x05 == lEffectDirection ) // Right Up // Mosaic Left Bottom
|
||
EffectID = 111;
|
||
if ( 0x06 == lEffectDirection ) // Left Down // Mosaic Right Top
|
||
EffectID = 109;
|
||
if ( 0x07 == lEffectDirection ) // Right Down // Mosaic Left Top
|
||
EffectID = 108;
|
||
}
|
||
break;
|
||
case 10: // Wipe
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Left // Reveal, Left
|
||
EffectID = 5322;
|
||
if ( 0x01 == lEffectDirection ) // Up // Reveal, Up
|
||
EffectID = 5323;
|
||
if ( 0x02 == lEffectDirection ) // Right // Reveal, Right
|
||
EffectID = 5321;
|
||
if ( 0x03 == lEffectDirection ) // Down // Reveal, Down
|
||
EffectID = 5320;
|
||
}
|
||
break;
|
||
case 11: // Box In/Out
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Wipe Center Box Out
|
||
EffectID = 702;
|
||
if ( 0x01 == lEffectDirection ) // Wipe Center Box In
|
||
EffectID = 701;
|
||
}
|
||
break;
|
||
case 13 :// Split
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Horizontally out // Split, Horizontal
|
||
EffectID = 5324;
|
||
#pragma message ("TODO : Split Horizontal In - добавить такой эффект в ImageStudio")
|
||
if ( 0x01 == lEffectDirection ) // Horizontally in //
|
||
EffectID = 5324;
|
||
if ( 0x02 == lEffectDirection ) // Vertically out // Split, Vertical
|
||
EffectID = 5325;
|
||
#pragma message ("TODO : Split Vertical In - добавить такой эффект в ImageStudio")
|
||
if ( 0x03 == lEffectDirection ) // Vertically in //
|
||
EffectID = 5325;
|
||
}
|
||
break;
|
||
case 17 : // Diamond
|
||
{
|
||
EffectID = 704; // Wipe Center Diamond Out
|
||
}
|
||
break;
|
||
case 18 : // Plus
|
||
{
|
||
EffectID = 708; // Wipe Center Cross Out
|
||
}
|
||
break;
|
||
case 19 : // Wedge
|
||
{
|
||
EffectID = 3006; // Clock Top Opposite
|
||
}
|
||
break;
|
||
case 20 : // Push
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Left // Push Side Right To Left
|
||
EffectID = 1402;
|
||
if ( 0x01 == lEffectDirection ) // Up // Push Side Bottom To Top
|
||
EffectID = 1404;
|
||
if ( 0x02 == lEffectDirection ) // Right // Push Side Left To Right
|
||
EffectID = 1401;
|
||
if ( 0x03 == lEffectDirection ) // Down // Push Side Top To Bottom
|
||
EffectID = 1403;
|
||
}
|
||
break;
|
||
case 21 : // Comb
|
||
{
|
||
if ( 0x00 == lEffectDirection ) // Horizontal // MosaicStrips
|
||
EffectID = 103;
|
||
#pragma message ("TODO : MosaicStrips Vertical - добавить такой эффект в ImageStudio")
|
||
if ( 0x01 == lEffectDirection ) // Vertical // MosaicStrips
|
||
EffectID = 103;
|
||
}
|
||
break;
|
||
case 22 : // Newsflash
|
||
{
|
||
EffectID = 313; // Rotate Twice Out Clockwise
|
||
}
|
||
break;
|
||
case 23 :// AlphaFade
|
||
{
|
||
EffectID = 1; // Fade Solid Smal
|
||
}
|
||
break;
|
||
case 26 : // Wheel
|
||
{
|
||
if ( 0x01 == lEffectDirection ) // ClockBottomReverse
|
||
EffectID = 3004;
|
||
if ( 0x02 == lEffectDirection ) // Clock2AnglesClockwise
|
||
EffectID = 3013;
|
||
if ( 0x03 == lEffectDirection ) // Clock4AnglesClockwise
|
||
EffectID = 3017;
|
||
if ( 0x04 == lEffectDirection ) // Clock6AnglesClockwise
|
||
EffectID = 3019;
|
||
if ( 0x08 == lEffectDirection ) // Clock8AnglesClockwise
|
||
EffectID = 3021;
|
||
}
|
||
break;
|
||
case 27 : // Circle
|
||
{
|
||
EffectID = 706; // Wipe Center Circle Out
|
||
}
|
||
break;
|
||
default :
|
||
{
|
||
return Source;
|
||
}
|
||
break;
|
||
}
|
||
|
||
Source = L"<VideoCompose Time=\"" + std::to_wstring(oSlide.m_oSlideShow.m_oTransition.m_dSpeed) + L"\" effectid=\"" + std::to_wstring(EffectID) + L"\"/>";
|
||
|
||
/*
|
||
|
||
if (oSlide.m_oSlideShow.m_oTransition.m_bAudioPresent)
|
||
{
|
||
CAudioElement oAudioElem;
|
||
|
||
oAudioElem.m_dStartTime = oSlide.m_dStartTime - oSlide.m_oSlideShow.m_oTransition.m_dSpeed;
|
||
oAudioElem.m_dEndTime = oAudioOverlay.m_dAllDuration;
|
||
oAudioElem.m_strFileName = oSlide.m_oSlideShow.m_oTransition.m_oAudio.m_strFileName;
|
||
|
||
CAudioPart oPart(&oAudioElem);
|
||
oPart.m_bStop = oSlide.m_oSlideShow.m_oTransition.m_bStopSound;
|
||
oPart.m_bLoop = oSlide.m_oSlideShow.m_oTransition.m_bLoopSound;
|
||
oPart.m_bIsTransition = true;
|
||
|
||
oAudioOverlay.m_arParts.Add(oPart);
|
||
}
|
||
|
||
*/
|
||
|
||
return Source;
|
||
}
|
||
#endif
|
||
double CalculateTimes(CAudioOverlay& oAudioOverlay)
|
||
{
|
||
CaclulateSlideTimes();
|
||
|
||
int lCount = (LONG)m_arSlides.size();
|
||
|
||
double dAllDuration = 0;
|
||
if (lCount > 0)
|
||
{
|
||
dAllDuration = m_arSlides[lCount - 1]->m_dEndTime;
|
||
}
|
||
|
||
oAudioOverlay.m_dAllDuration = dAllDuration;
|
||
|
||
for (LONG i = 0; i < lCount; ++i)
|
||
{
|
||
CalculateSlideElements(i, oAudioOverlay);
|
||
}
|
||
|
||
return dAllDuration;
|
||
}
|
||
|
||
void CaclulateSlideTimes()
|
||
{
|
||
double Transition1 = 0;
|
||
double Duration = 0;
|
||
double Transition2 = 0;
|
||
|
||
int nCount = (int)m_arSlides.size();
|
||
for (int i = 0; i < nCount; ++i)
|
||
{
|
||
CSlide* pSlide = m_arSlides[i];
|
||
|
||
double dSlideDuration = 0;
|
||
if (pSlide->m_oSlideShow.m_dSlideDuration > 0)
|
||
{
|
||
dSlideDuration = m_arSlides[i]->m_oSlideShow.m_dSlideDuration;
|
||
}
|
||
if (0 == dSlideDuration)
|
||
{
|
||
// решено сделать так: если время слайда не выставлено - то берем максимальную
|
||
// длительность видео, лежащего на нем. Если таких нет - то дефолтовая длительность,
|
||
// впрочем она уже выставлена
|
||
|
||
size_t nSize = pSlide->m_arElements.size();
|
||
for (size_t j = 0; j < nSize; ++j)
|
||
{
|
||
if (etVideo == pSlide->m_arElements[j]->m_etType)
|
||
{
|
||
dSlideDuration = (std::max)(dSlideDuration, ((CVideoElement*)pSlide->m_arElements[j])->m_dVideoDuration);
|
||
}
|
||
}
|
||
|
||
if (0 == dSlideDuration)
|
||
{
|
||
dSlideDuration = pSlide->m_dDuration;
|
||
}
|
||
}
|
||
|
||
pSlide->m_dDuration = dSlideDuration;
|
||
|
||
Transition1 = pSlide->m_oSlideShow.m_oTransition.m_dSpeed;
|
||
|
||
if (i < (nCount - 1))
|
||
Transition2 = m_arSlides[i + 1]->m_oSlideShow.m_oTransition.m_dSpeed;
|
||
|
||
Duration = pSlide->m_dDuration;
|
||
|
||
if (i == 0)
|
||
{
|
||
pSlide->m_dStartTime = Transition1;
|
||
}
|
||
else
|
||
{
|
||
pSlide->m_dStartTime = m_arSlides[i-1]->m_dStartTime + m_arSlides[i-1]->m_dDuration;
|
||
}
|
||
|
||
pSlide->m_dDuration = Transition1 + Duration + Transition2;
|
||
pSlide->m_dEndTime = pSlide->m_dStartTime + pSlide->m_dDuration;
|
||
}
|
||
}
|
||
|
||
void CalculateSlideElements(int nIndex, CAudioOverlay& oAudioOverlay)
|
||
{
|
||
double dStartTime = m_arSlides[nIndex]->m_dStartTime;
|
||
double dEndTime = m_arSlides[nIndex]->m_dEndTime;
|
||
double dDuration = m_arSlides[nIndex]->m_dDuration;
|
||
|
||
CSlide* pSlide = m_arSlides[nIndex];
|
||
|
||
size_t nCountElems = pSlide->m_arElements.size();
|
||
for (size_t i = 0; i < nCountElems; ++i)
|
||
{
|
||
IElement* pElement = pSlide->m_arElements[i];
|
||
|
||
switch (pElement->m_etType)
|
||
{
|
||
//case etPicture:
|
||
//case etShape:
|
||
//case etVideo:
|
||
//case etText:
|
||
// {
|
||
// //pElement->m_dStartTime = 0;
|
||
// //pElement->m_dEndTime = dDuration;
|
||
//
|
||
// break;
|
||
// }
|
||
case etAudio:
|
||
{
|
||
CAudioElement* pAudioElem = dynamic_cast<CAudioElement*>(pElement);
|
||
|
||
if (NULL != pAudioElem)
|
||
{
|
||
// а другого и быть не может
|
||
if (pAudioElem->m_bWithVideo)
|
||
{
|
||
pElement->m_dStartTime = dStartTime;
|
||
pElement->m_dEndTime = dEndTime;
|
||
}
|
||
else if (pAudioElem->m_bLoop)
|
||
{
|
||
pElement->m_dStartTime = dStartTime;
|
||
pElement->m_dEndTime = oAudioOverlay.m_dAllDuration/* - dStartTime*/;
|
||
}
|
||
else
|
||
{
|
||
pElement->m_dStartTime = dStartTime;
|
||
pElement->m_dEndTime = (std::min)(dStartTime + pAudioElem->m_dAudioDuration, oAudioOverlay.m_dAllDuration/* - dStartTime*/);
|
||
}
|
||
|
||
CAudioPart oPart(pAudioElem);
|
||
oAudioOverlay.m_arParts.push_back(oPart);
|
||
}
|
||
|
||
break;
|
||
}
|
||
default:
|
||
//{
|
||
//pElement->m_dStartTime = 0;
|
||
//pElement->m_dEndTime = dDuration;
|
||
|
||
break;
|
||
//}
|
||
};
|
||
}
|
||
}
|
||
|
||
void ResetAutoText(IElement *pElement, vector_string const (&placeholdersReplaceString)[3])
|
||
{
|
||
CShapeElement* pShape = dynamic_cast<CShapeElement*>(pElement);
|
||
|
||
if (NULL == pShape) return;
|
||
|
||
if (pElement->m_lPlaceholderType == NSOfficePPT::MasterSlideNumber) pShape->SetUpTextPlaceholder(L"<#>");
|
||
|
||
int ind = -1;
|
||
if (pElement->m_lPlaceholderType == NSOfficePPT::MasterDate) ind = 0;
|
||
if (pElement->m_lPlaceholderType == NSOfficePPT::MasterFooter) ind = 2;
|
||
|
||
if (pElement->m_lPlaceholderUserStr >= 0 && ind >= 0)
|
||
{
|
||
if (pElement->m_lPlaceholderUserStr < placeholdersReplaceString[ind].size())
|
||
pShape->SetUpTextPlaceholder( placeholdersReplaceString[ind][pElement->m_lPlaceholderUserStr] );
|
||
else pShape->SetUpTextPlaceholder(L"");
|
||
}
|
||
else
|
||
{
|
||
if (pElement->m_lPlaceholderType == NSOfficePPT::MasterDate && pElement->m_nFormatDate == 1)
|
||
{
|
||
std::wstring current_date = L"11.11.2015";
|
||
pShape->SetUpTextPlaceholder(current_date);
|
||
}
|
||
}
|
||
}
|
||
|
||
void CalculateEditor(const NSPresentationEditor::CMetricInfo& oInfo, bool bIsPlaceholderSetUp = false)
|
||
{
|
||
// автозамены и поля настраиваем тут во избежания путаницы
|
||
|
||
m_oInfo = oInfo;
|
||
|
||
double dScaleX = (double)m_oInfo.m_lMillimetresHor / m_oInfo.m_lUnitsHor;
|
||
double dScaleY = (double)m_oInfo.m_lMillimetresVer / m_oInfo.m_lUnitsVer;
|
||
|
||
size_t nCountThemes = m_arThemes.size();
|
||
for (size_t i = 0; i < nCountThemes; ++i)
|
||
{
|
||
CTheme* pTheme = &m_arThemes[i];
|
||
pTheme->CalculateStyles();
|
||
|
||
size_t nCountElems = pTheme->m_arElements.size();
|
||
for (size_t nIndexEl = 0; nIndexEl < nCountElems; ++nIndexEl)
|
||
{
|
||
IElement* pElement = pTheme->m_arElements[nIndexEl];
|
||
|
||
if (pElement->m_lPlaceholderType > 0)
|
||
{
|
||
ResetAutoText(pElement, pTheme->m_PlaceholdersReplaceString);
|
||
}
|
||
pElement->m_pTheme = pTheme;
|
||
pElement->m_pLayout = NULL;
|
||
|
||
pElement->m_oMetric = m_oInfo;
|
||
pElement->NormalizeCoords(dScaleX, dScaleY);
|
||
|
||
pElement->SetupProperties(NULL, pTheme, NULL);
|
||
}
|
||
|
||
size_t nCountLayouts = pTheme->m_arLayouts.size();
|
||
for (size_t nIndexL = 0; nIndexL < nCountLayouts; ++nIndexL)
|
||
{
|
||
CLayout* pLayout = &pTheme->m_arLayouts[nIndexL];
|
||
|
||
pLayout->m_lOriginalWidth = m_oInfo.m_lUnitsHor;
|
||
pLayout->m_lOriginalHeight = m_oInfo.m_lUnitsVer;
|
||
pLayout->m_lWidth = m_oInfo.m_lMillimetresHor;
|
||
pLayout->m_lHeight = m_oInfo.m_lMillimetresVer;
|
||
|
||
size_t nCountLayoutElements = pLayout->m_arElements.size();
|
||
for (size_t nIndexLayoutEl = 0; nIndexLayoutEl < nCountLayoutElements; ++nIndexLayoutEl)
|
||
{
|
||
IElement* pElement = pLayout->m_arElements[nIndexLayoutEl];
|
||
|
||
if (pElement->m_lPlaceholderType > 0)
|
||
{
|
||
ResetAutoText(pElement, pLayout->m_PlaceholdersReplaceString);
|
||
}
|
||
|
||
pElement->m_oMetric = m_oInfo;
|
||
pElement->NormalizeCoords(dScaleX, dScaleY);
|
||
|
||
pElement->m_pTheme = pTheme;
|
||
pElement->m_pLayout = NULL;
|
||
|
||
CShapeElement* pShape = dynamic_cast<CShapeElement*>(pElement);
|
||
if (!pLayout->m_bUseThemeColorScheme && NULL != pShape)
|
||
{
|
||
int lPhType = pElement->m_lPlaceholderType;
|
||
|
||
int lIndex = 0;
|
||
|
||
if (isTitlePlaceholder(lPhType)) lIndex = 1;
|
||
else if (isBodyPlaceholder(lPhType)) lIndex = 2;
|
||
else if (-1 != lPhType) lIndex = 3;
|
||
|
||
CTextStyles* pThemeStyles = &pTheme->m_pStyles[lIndex];
|
||
for (int nIndexLevel = 0; nIndexLevel < 10; ++nIndexLevel)
|
||
{
|
||
if (!pThemeStyles->m_pLevels[nIndexLevel].is_init())
|
||
continue;
|
||
if (!pThemeStyles->m_pLevels[nIndexLevel]->m_oCFRun.Color.is_init())
|
||
continue;
|
||
if (pThemeStyles->m_pLevels[nIndexLevel]->m_oCFRun.Color->m_lSchemeIndex == -1)
|
||
continue;
|
||
|
||
if (pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0].is_init())
|
||
{
|
||
if (pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color.is_init())
|
||
{
|
||
|
||
if (pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color->m_lSchemeIndex != -1)
|
||
continue;
|
||
|
||
LONG lIndexSchemeT = pThemeStyles->m_pLevels[nIndexLevel]->m_oCFRun.Color->m_lSchemeIndex;
|
||
|
||
pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color->m_lSchemeIndex = -1;
|
||
pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color->R = pLayout->m_arColorScheme[lIndexSchemeT].R;
|
||
pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color->G = pLayout->m_arColorScheme[lIndexSchemeT].G;
|
||
pShape->m_oShape.m_oText.m_oStyles.m_pLevels[0]->m_oCFRun.Color->B = pLayout->m_arColorScheme[lIndexSchemeT].B;
|
||
|
||
bIsPlaceholderSetUp = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
pElement->SetupProperties(NULL, pTheme, pLayout);
|
||
}
|
||
}
|
||
}
|
||
|
||
size_t nCountSlides = m_arSlides.size();
|
||
for (size_t i = 0; i < nCountSlides; ++i)
|
||
{
|
||
CSlide* pSlide = m_arSlides[i];
|
||
|
||
pSlide->m_lOriginalWidth = m_oInfo.m_lUnitsHor;
|
||
pSlide->m_lOriginalHeight = m_oInfo.m_lUnitsVer;
|
||
pSlide->m_lWidth = m_oInfo.m_lMillimetresHor;
|
||
pSlide->m_lHeight = m_oInfo.m_lMillimetresVer;
|
||
|
||
CTheme* pTheme = NULL;
|
||
if ((0 <= pSlide->m_lThemeID) && (pSlide->m_lThemeID < (LONG)nCountThemes))
|
||
pTheme = &m_arThemes[pSlide->m_lThemeID];
|
||
|
||
CLayout* pLayout = NULL;
|
||
if (NULL != pTheme)
|
||
{
|
||
if ((0 <= pSlide->m_lLayoutID) && (pSlide->m_lLayoutID < (LONG)pTheme->m_arLayouts.size()))
|
||
pLayout = &pTheme->m_arLayouts[pSlide->m_lLayoutID];
|
||
}
|
||
|
||
size_t nCountElems = pSlide->m_arElements.size();
|
||
for (size_t nIndexEl = 0; nIndexEl < nCountElems; ++nIndexEl)
|
||
{
|
||
IElement* pElement = pSlide->m_arElements[nIndexEl];
|
||
|
||
if (pElement->m_lPlaceholderType > 0)
|
||
{
|
||
ResetAutoText(pElement, pSlide->m_PlaceholdersReplaceString);
|
||
}
|
||
pElement->m_pTheme = pTheme;
|
||
pElement->m_pLayout = pLayout;
|
||
|
||
pElement->m_oMetric = m_oInfo;
|
||
|
||
pElement->SetupProperties(pSlide, pTheme, pLayout);
|
||
}
|
||
|
||
if (NULL != pLayout && bIsPlaceholderSetUp)
|
||
pSlide->SetUpPlaceholderStyles(pLayout);
|
||
}
|
||
}
|
||
};
|
||
}
|