Bump version to 6.4-15
[LibreOffice.git] / include / svx / sdr / overlay / overlayobjectlist.hxx
blob8044ae70147d0d6ed238d3d8b7955ae1d55ade94
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 #ifndef INCLUDED_SVX_SDR_OVERLAY_OVERLAYOBJECTLIST_HXX
21 #define INCLUDED_SVX_SDR_OVERLAY_OVERLAYOBJECTLIST_HXX
23 #include <svx/sdr/overlay/overlayobject.hxx>
24 #include <sal/types.h>
25 #include <svx/svxdllapi.h>
26 #include <memory>
27 #include <vector>
30 class Point;
32 namespace sdr
34 namespace overlay
36 class SVX_DLLPUBLIC OverlayObjectList final
38 // the vector of OverlayObjects
39 ::std::vector< std::unique_ptr<OverlayObject> > maVector;
41 public:
42 OverlayObjectList() {}
43 OverlayObjectList(const OverlayObjectList&) = delete;
44 OverlayObjectList& operator=(const OverlayObjectList&) = delete;
45 ~OverlayObjectList();
47 // clear list, this includes deletion of all contained objects
48 void clear();
50 // append objects (takes ownership)
51 void append(std::unique_ptr<OverlayObject> pOverlayObject);
53 // access to objects
54 sal_uInt32 count() const { return maVector.size(); }
55 OverlayObject& getOverlayObject(sal_uInt32 nIndex) const { return *(maVector[nIndex]); }
57 // Hittest with logical coordinates
58 bool isHitLogic(const basegfx::B2DPoint& rLogicPosition, double fLogicTolerance = 0.0) const;
60 // Hittest with pixel coordinates
61 bool isHitPixel(const Point& rDiscretePosition) const;
63 // calculate BaseRange of all included OverlayObjects and return
64 basegfx::B2DRange getBaseRange() const;
66 } // end of namespace overlay
67 } // end of namespace sdr
70 #endif // INCLUDED_SVX_SDR_OVERLAY_OVERLAYOBJECTLIST_HXX
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */