2157185ce1
Change GalleryBinaryEngine to GalleryBinaryEngineEntry and create GalleryBinaryEngine class that is instantiated at when GalleryEngine is instantiated. Implement GalleryStorageLocations, a shared class which contains locations to binary files like aThmURL, aSdgURL, aSdvURL and aStrURL. The class shares the members between GalleryBinaryEngine and GalleryBinaryEngineEntry. Change-Id: I22da487fbc2a500252196f9ff8dcfa9c4df6abbf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98979 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
82 lines
3.2 KiB
C++
82 lines
3.2 KiB
C++
/* -*- 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 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <svx/galtheme.hxx>
|
|
#include <svx/gallerybinaryengine.hxx>
|
|
#include <svx/gallerystoragelocations.hxx>
|
|
#include <svx/svxdllapi.h>
|
|
#include <svx/fmmodel.hxx>
|
|
#include <tools/urlobj.hxx>
|
|
#include <sot/storage.hxx>
|
|
|
|
#include <cstdio>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
class GalleryStorageLocations;
|
|
class SgaObjectSvDraw;
|
|
class SgaObject;
|
|
class SotStorage;
|
|
struct GalleryObject;
|
|
class FmFormModel;
|
|
class GalleryTheme;
|
|
|
|
class SVXCORE_DLLPUBLIC GalleryBinaryEngine
|
|
{
|
|
private:
|
|
tools::SvRef<SotStorage> m_aSvDrawStorageRef;
|
|
const GalleryStorageLocations& maGalleryStorageLocations;
|
|
|
|
public:
|
|
GalleryBinaryEngine(const GalleryStorageLocations& rGalleryStorageLocations);
|
|
void clearSotStorage();
|
|
|
|
SAL_DLLPRIVATE void ImplCreateSvDrawStorage(bool bReadOnly);
|
|
SAL_DLLPRIVATE const tools::SvRef<SotStorage>& GetSvDrawStorage() const;
|
|
|
|
const INetURLObject& GetThmURL() const { return maGalleryStorageLocations.GetThmURL(); }
|
|
const INetURLObject& GetSdgURL() const { return maGalleryStorageLocations.GetSdgURL(); }
|
|
const INetURLObject& GetSdvURL() const { return maGalleryStorageLocations.GetSdvURL(); }
|
|
const INetURLObject& GetStrURL() const { return maGalleryStorageLocations.GetStrURL(); }
|
|
|
|
SAL_DLLPRIVATE bool implWrite(const GalleryTheme& rTheme);
|
|
|
|
void insertObject(const SgaObject& rObj, GalleryObject* pFoundEntry, OUString& rDestDir,
|
|
::std::vector<std::unique_ptr<GalleryObject>>& rObjectList,
|
|
sal_uInt32& rInsertPos);
|
|
|
|
std::unique_ptr<SgaObject> implReadSgaObject(GalleryObject const* pEntry);
|
|
bool implWriteSgaObject(const SgaObject& rObj, sal_uInt32 nPos, GalleryObject* pExistentEntry,
|
|
OUString& aDestDir,
|
|
::std::vector<std::unique_ptr<GalleryObject>>& aObjectList);
|
|
|
|
bool readModel(const GalleryObject* pObject, SdrModel& rModel);
|
|
bool insertModel(const FmFormModel& rModel, INetURLObject& rURL);
|
|
|
|
bool readModelStream(const GalleryObject* pObject,
|
|
tools::SvRef<SotStorageStream> const& rxModelStream);
|
|
SgaObjectSvDraw insertModelStream(const tools::SvRef<SotStorageStream>& rxModelStream,
|
|
INetURLObject& rURL);
|
|
};
|
|
|
|
SvStream& WriteGalleryTheme(SvStream& rOut, const GalleryTheme& rTheme);
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|