Bump version to 21.06.18.1
[LibreOffice.git] / include / svx / galleryobjectcollection.hxx
blob8e322549b5eb4a24e9d6ea02262686561db1c835
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
22 #include <svx/svxdllapi.h>
23 #include <svx/galmisc.hxx>
24 #include <svx/galleryobjectxmlstorage.hxx>
25 #include <svx/galleryobjectbinarystorage.hxx>
27 #include <vcl/bitmapex.hxx>
28 #include <tools/urlobj.hxx>
29 #include <memory>
30 #include <vector>
32 struct GalleryObject
34 std::unique_ptr<GalleryObjectStorage> m_pGalleryObjectStorage;
35 sal_uInt32 nOffset;
36 SgaObjKind eObjKind;
37 bool mbDelete;
39 //UI visualization buffering
40 BitmapEx maPreviewBitmapEx;
41 Size maPreparedSize;
42 OUString maTitle;
43 OUString maPath;
45 const INetURLObject& getURL() const { return m_pGalleryObjectStorage->getURL(); }
48 class SVXCORE_DLLPUBLIC GalleryObjectCollection
50 private:
51 std::vector<std::unique_ptr<GalleryObject>> m_aObjectList;
53 public:
54 GalleryObjectCollection();
55 std::vector<std::unique_ptr<GalleryObject>>& getObjectList() { return m_aObjectList; }
56 std::unique_ptr<GalleryObject>& get(sal_uInt32 nPos) { return m_aObjectList[nPos]; }
57 const std::unique_ptr<GalleryObject>& get(sal_uInt32 nPos) const { return m_aObjectList[nPos]; }
58 sal_uInt32 size() const { return m_aObjectList.size(); }
60 const GalleryObject* searchObjectWithURL(const INetURLObject& rURL);
61 const GalleryObject* getForPosition(sal_uInt32 nPos) const;
62 sal_uInt32 searchPosWithObject(const GalleryObject* pObj);
63 const INetURLObject& getURLForPosition(sal_uInt32 nPos) const;
65 void clear();
67 GalleryObjectCollection(GalleryObjectCollection const&) = delete;
68 void operator=(GalleryObjectCollection const&) = delete;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */