/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <scitems.hxx>
#include <editeng/eeitem.hxx>
#include <xmloff/XMLFontAutoStylePool.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/editeng.hxx>
#include <document.hxx>
#include <docpool.hxx>
#include "xmlexprt.hxx"
#include <stlpool.hxx>
#include <attrib.hxx>
namespace {
class ScXMLFontAutoStylePool_Impl: public XMLFontAutoStylePool
{
private:
// #i120077# remember owned pool
rtl::Reference<SfxItemPool> mpEditEnginePool;
void AddFontItems(const sal_uInt16* pWhichIds, sal_uInt8 nIdCount, const SfxItemPool* pItemPool, const bool bExportDefaults);
public:
ScXMLFontAutoStylePool_Impl(ScDocument* pDoc, ScXMLExport& rExport);
};
}
void ScXMLFontAutoStylePool_Impl::AddFontItems(const sal_uInt16* pWhichIds, sal_uInt8 nIdCount, const SfxItemPool* pItemPool, const bool bExportDefaults)
{
for( sal_uInt16 i=0; i < nIdCount; ++i )
{
sal_uInt16 nWhichId(pWhichIds[i]);
if (bExportDefaults)
{
const SfxPoolItem* pItem = &pItemPool->GetUserOrPoolDefaultItem(nWhichId);
const SvxFontItem *pFont(static_cast<const SvxFontItem *>(pItem));
Add( pFont->GetFamilyName(), pFont->GetStyleName(),
pFont->GetFamily(), pFont->GetPitch(),
pFont->GetCharSet() );
}
for (const SfxPoolItem* pItem : pItemPool->GetItemSurrogates(nWhichId))
{
const SvxFontItem *pFont(static_cast<const SvxFontItem *>(pItem));
Add( pFont->GetFamilyName(), pFont->GetStyleName(),
pFont->GetFamily(), pFont->GetPitch(),
pFont->GetCharSet() );
}
}
}
ScXMLFontAutoStylePool_Impl::ScXMLFontAutoStylePool_Impl(ScDocument* pDoc, ScXMLExport& rExportP)
: XMLFontAutoStylePool(rExportP)
{
if (!pDoc)
return;
sal_uInt16 const aWhichIds[] { ATTR_FONT, ATTR_CJK_FONT,
ATTR_CTL_FONT };
sal_uInt16 const aEditWhichIds[] { EE_CHAR_FONTINFO, EE_CHAR_FONTINFO_CJK,
EE_CHAR_FONTINFO_CTL };
TypedWhichId<ScPageHFItem> const aPageWhichIds[] { ATTR_PAGE_HEADERLEFT, ATTR_PAGE_FOOTERLEFT,
ATTR_PAGE_HEADERRIGHT, ATTR_PAGE_FOOTERRIGHT,
ATTR_PAGE_HEADERFIRST, ATTR_PAGE_FOOTERFIRST };
const SfxItemPool* pItemPool(pDoc->GetPool());
AddFontItems(aWhichIds, 3, pItemPool, true);
const SfxItemPool* pEditPool(pDoc->GetEditEnginePool());
AddFontItems(aEditWhichIds, 3, pEditPool, false);
std::unique_ptr<SfxStyleSheetIterator> pItr = pDoc->GetStyleSheetPool()->CreateIterator(SfxStyleFamily::Page);
if(!pItr)
return;
SfxStyleSheetBase* pStyle(pItr->First());
if(!pStyle)
return;
// #i120077# remember the SfxItemPool in member variable before usage. The
// local EditEngine will not take over ownership of the pool.
mpEditEnginePool = EditEngine::CreatePool();
EditEngine aEditEngine(mpEditEnginePool.get());
while (pStyle)
{
for (const TypedWhichId<ScPageHFItem>& nPageWhichId : aPageWhichIds)
{
const SfxItemSet& rItemSet = pStyle->GetItemSet();
const ScPageHFItem* pPageItem = &rItemSet.Get( nPageWhichId );
const EditTextObject* pLeftArea(pPageItem->GetLeftArea());
if (pLeftArea)
{
aEditEngine.SetText(*pLeftArea);
AddFontItems(aEditWhichIds, 3, mpEditEnginePool.get(), false);
}
const EditTextObject* pCenterArea(pPageItem->GetCenterArea());
if (pCenterArea)
{
aEditEngine.SetText(*pCenterArea);
AddFontItems(aEditWhichIds, 3, mpEditEnginePool.get(), false);
}
const EditTextObject* pRightArea(pPageItem->GetRightArea());
if (pRightArea)
{
aEditEngine.SetText(*pRightArea);
AddFontItems(aEditWhichIds, 3, mpEditEnginePool.get(), false);
}
}
pStyle = pItr->Next();
}
}
XMLFontAutoStylePool* ScXMLExport::CreateFontAutoStylePool()
{
return new ScXMLFontAutoStylePool_Impl(GetDocument(), *this);
}
bool ScXMLExport::getEmbedFonts()
{
if (ScDocument* pDoc = GetDocument())
return pDoc->IsEmbedFonts();
return SvXMLExport::getEmbedFonts();
}
bool ScXMLExport::getEmbedOnlyUsedFonts()
{
if (ScDocument* pDoc = GetDocument())
return pDoc->IsEmbedUsedFontsOnly();
return SvXMLExport::getEmbedOnlyUsedFonts();
}
bool ScXMLExport::getEmbedLatinScript()
{
if (ScDocument* pDoc = GetDocument())
return pDoc->IsEmbedFontScriptLatin();
return SvXMLExport::getEmbedLatinScript();
}
bool ScXMLExport::getEmbedAsianScript()
{
if (ScDocument* pDoc = GetDocument())
return pDoc->IsEmbedFontScriptAsian();
return SvXMLExport::getEmbedAsianScript();
}
bool ScXMLExport::getEmbedComplexScript()
{
if (ScDocument* pDoc = GetDocument())
return pDoc->IsEmbedFontScriptComplex();
return SvXMLExport::getEmbedComplexScript();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
↑ V530 The return value of function 'Add' is required to be utilized.
↑ V530 The return value of function 'Add' is required to be utilized.