1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <svx/galmisc.hxx>
23 #include <svx/svxdllapi.h>
24 #include <svx/fmmodel.hxx>
25 #include "gallerystoragelocations.hxx"
26 #include <tools/urlobj.hxx>
27 #include <sot/storage.hxx>
28 #include <vcl/salctype.hxx>
30 #include <tools/datetime.hxx>
34 class GalleryObjectCollection
;
35 class SgaObjectSvDraw
;
42 class GalleryThemeEntry
;
44 class GalleryFileStorage final
47 rtl::Reference
<SotStorage
> m_aSvDrawStorageRef
;
48 const GalleryStorageLocations
& maGalleryStorageLocations
;
49 GalleryObjectCollection
& mrGalleryObjectCollection
;
52 bool m_bDestDirRelative
;
54 const INetURLObject
& GetSdgURL() const { return maGalleryStorageLocations
.GetSdgURL(); }
55 const INetURLObject
& GetSdvURL() const { return maGalleryStorageLocations
.GetSdvURL(); }
56 const INetURLObject
& GetThmURL() const { return maGalleryStorageLocations
.GetThmURL(); }
59 GalleryFileStorage(const GalleryStorageLocations
& rGalleryStorageLocations
,
60 GalleryObjectCollection
& rGalleryObjectCollection
, bool bReadOnly
);
61 ~GalleryFileStorage();
63 void clearSotStorage();
65 void setDestDir(const OUString
& rDestDir
, bool bRelative
);
67 void ImplCreateSvDrawStorage();
68 const rtl::Reference
<SotStorage
>& GetSvDrawStorage() const;
70 const INetURLObject
& getThemeURL() const { return maGalleryStorageLocations
.getThemeURL(); }
72 bool implWrite(const GalleryTheme
& rTheme
, const GalleryThemeEntry
* pThm
);
74 void insertObject(const SgaObject
& rObj
, GalleryObject
* pFoundEntry
, sal_uInt32 nInsertPos
);
75 void removeObject(const std::unique_ptr
<GalleryObject
>& pEntry
);
77 UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC
)
78 std::unique_ptr
<SgaObject
> implReadSgaObject(GalleryObject
const* pEntry
);
79 bool implWriteSgaObject(const SgaObject
& rObj
, sal_uInt32 nPos
, GalleryObject
* pExistentEntry
);
81 bool readModel(const GalleryObject
* pObject
, SdrModel
& rModel
);
82 SgaObjectSvDraw
insertModel(const FmFormModel
& rModel
, const INetURLObject
& rUserURL
);
84 bool readModelStream(const GalleryObject
* pObject
, SvStream
& rModelStream
);
85 SgaObjectSvDraw
insertModelStream(SvStream
& rModelStream
, const INetURLObject
& rUserURL
);
87 INetURLObject
implCreateUniqueURL(SgaObjKind eObjKind
, const INetURLObject
& rUserURL
,
88 ConvertDataFormat nFormat
= ConvertDataFormat::Unknown
);
90 SgaObjectBmp
insertGraphic(const Graphic
& rGraphic
, const GfxLink
& aGfxLink
,
91 const ConvertDataFormat
& nExportFormat
,
92 const INetURLObject
& rUserURL
);
94 SgaObjectSvDraw
updateSvDrawObject(const GalleryObject
* pEntry
);
97 static void insertFileOrDirURL(const INetURLObject
& rFileOrDirURL
,
98 std::vector
<INetURLObject
>& rURLVector
);
100 SvStream
& writeGalleryTheme(SvStream
& rOStm
, const GalleryTheme
& rTheme
,
101 const GalleryThemeEntry
* pThm
);
103 DateTime
getModificationDate() const;
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */