LibreOffice Module vcl (master) 1
region.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_VCL_REGION_HXX
21#define INCLUDED_VCL_REGION_HXX
22
23#include <tools/gen.hxx>
24#include <tools/poly.hxx>
25#include <vcl/dllapi.h>
27#include <memory>
28#include <optional>
29
30class RegionBand;
31
32namespace vcl { class Window; }
33class OutputDevice;
34class Bitmap;
35
36typedef std::vector< tools::Rectangle > RectangleVector;
37
38namespace vcl {
39
41{
42private:
43 friend class ::OutputDevice;
44 friend class ::vcl::Window;
45 friend class ::Bitmap;
46
47 // possible contents
48 std::optional< basegfx::B2DPolyPolygon >
50 std::optional< tools::PolyPolygon >
52 std::shared_ptr< RegionBand >
54
55 bool mbIsNull : 1;
56
57 // helpers
58 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const tools::PolyPolygon& rPolyPoly );
59 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly );
60
61 SAL_DLLPRIVATE tools::PolyPolygon ImplCreatePolyPolygonFromRegionBand() const;
62 SAL_DLLPRIVATE basegfx::B2DPolyPolygon ImplCreateB2DPolyPolygonFromRegionBand() const;
63
64public:
65
66 explicit Region(bool bIsNull = false); // default creates empty region, with true a null region is created
67 explicit Region(const tools::Rectangle& rRect);
68 explicit Region(const tools::Polygon& rPolygon);
69 explicit Region(const tools::PolyPolygon& rPolyPoly);
70 explicit Region(const basegfx::B2DPolyPolygon&);
71 Region(const vcl::Region& rRegion);
72 Region(vcl::Region&& rRegion) noexcept;
74
75 // direct access to contents
76 const std::optional<basegfx::B2DPolyPolygon>& getB2DPolyPolygon() const { return mpB2DPolyPolygon; }
77 const std::optional<tools::PolyPolygon>& getPolyPolygon() const { return mpPolyPolygon; }
78 const RegionBand* getRegionBand() const { return mpRegionBand.get(); }
79
80 // access with converters, the asked data will be created from the most
81 // valuable data, buffered and returned
82 tools::PolyPolygon GetAsPolyPolygon() const;
83 basegfx::B2DPolyPolygon GetAsB2DPolyPolygon() const;
84 const RegionBand* GetAsRegionBand() const;
85
86 // manipulators
87 void Move( tools::Long nHorzMove, tools::Long nVertMove );
88 void Scale( double fScaleX, double fScaleY );
89 void Union( const tools::Rectangle& rRegion );
90 void Intersect( const tools::Rectangle& rRegion );
91 void Exclude( const tools::Rectangle& rRegion );
92 void XOr( const tools::Rectangle& rRegion );
93 void Union( const vcl::Region& rRegion );
94 void Intersect( const vcl::Region& rRegion );
95 void Exclude( const vcl::Region& rRegion );
96 bool XOr( const vcl::Region& rRegion );
97
98 bool IsEmpty() const;
99 bool IsNull() const { return mbIsNull;}
100
101 void SetEmpty();
102 void SetNull();
103
104 bool IsRectangle() const;
105
106 tools::Rectangle GetBoundRect() const;
107 bool HasPolyPolygonOrB2DPolyPolygon() const { return (getB2DPolyPolygon() || getPolyPolygon()); }
108 void GetRegionRectangles(RectangleVector& rTarget) const;
109
110 bool Contains( const Point& rPoint ) const;
111 bool Overlaps( const tools::Rectangle& rRect ) const;
112
114 vcl::Region& operator=( vcl::Region&& rRegion ) noexcept;
115 vcl::Region& operator=( const tools::Rectangle& rRect );
116
117 bool operator==( const vcl::Region& rRegion ) const;
118 bool operator!=( const vcl::Region& rRegion ) const { return !(Region::operator==( rRegion )); }
119
120 friend VCL_DLLPUBLIC SvStream& ReadRegion( SvStream& rIStm, vcl::Region& rRegion );
121 friend VCL_DLLPUBLIC SvStream& WriteRegion( SvStream& rOStm, const vcl::Region& rRegion );
122
123 /* workaround: faster conversion for PolyPolygons
124 * if half of the Polygons contained in rPolyPoly are actually
125 * rectangles, then the returned vcl::Region will be constructed by
126 * XOr'ing the contained Polygons together; in the case of
127 * only Rectangles this can be up to eight times faster than
128 * Region( const tools::PolyPolygon& ).
129 * Caution: this is only useful if the vcl::Region is known to be
130 * changed to rectangles; e.g. if being set as clip region
131 */
132 static vcl::Region GetRegionFromPolyPolygon( const tools::PolyPolygon& rPolyPoly );
133};
134
135template< typename charT, typename traits >
136inline std::basic_ostream<charT, traits> & operator <<(
137 std::basic_ostream<charT, traits> & stream, const Region& rRegion)
138{
139 if (rRegion.IsEmpty())
140 return stream << "EMPTY";
141 if (rRegion.getB2DPolyPolygon())
142 return stream << "B2DPolyPolygon("
143 << *rRegion.getB2DPolyPolygon()
144 << ")";
145 if (rRegion.getPolyPolygon())
146 return stream << "PolyPolygon("
147 << *rRegion.getPolyPolygon()
148 << ")";
149 if (rRegion.getRegionBand())
150 { // inlined because RegionBand is private to vcl
151 stream << "RegionBand(";
152 RectangleVector rects;
153 rRegion.GetRegionRectangles(rects);
154 if (rects.empty())
155 stream << "EMPTY";
156 for (size_t i = 0; i < rects.size(); ++i)
157 stream << "[" << i << "] " << rects[i];
158 stream << ")";
159 }
160 return stream;
161}
162
163} /* namespace vcl */
164
165#endif // INCLUDED_VCL_REGION_HXX
166
167/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Some things multiple-inherit from VclAbstractDialog and OutputDevice, so we need to use virtual inher...
Definition: outdev.hxx:170
bool IsNull() const
Definition: region.hxx:99
const RegionBand * getRegionBand() const
Definition: region.hxx:78
std::optional< tools::PolyPolygon > mpPolyPolygon
Definition: region.hxx:51
bool operator==(const vcl::Region &rRegion) const
Definition: region.cxx:1457
const std::optional< basegfx::B2DPolyPolygon > & getB2DPolyPolygon() const
Definition: region.hxx:76
Region(const vcl::Region &rRegion)
bool operator!=(const vcl::Region &rRegion) const
Definition: region.hxx:118
bool mbIsNull
Definition: region.hxx:55
bool HasPolyPolygonOrB2DPolyPolygon() const
Definition: region.hxx:107
std::optional< basegfx::B2DPolyPolygon > mpB2DPolyPolygon
Definition: region.hxx:49
const std::optional< tools::PolyPolygon > & getPolyPolygon() const
Definition: region.hxx:77
vcl::Region & operator=(const vcl::Region &rRegion)
std::shared_ptr< RegionBand > mpRegionBand
Definition: region.hxx:53
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
Reference< XOutputStream > stream
int i
long Long
std::basic_ostream< charT, traits > & operator<<(std::basic_ostream< charT, traits > &stream, const Region &rRegion)
Definition: region.hxx:136
SvStream & ReadRegion(SvStream &rIStrm, vcl::Region &rRegion)
Definition: region.cxx:1531
SvStream & WriteRegion(SvStream &rOStrm, const vcl::Region &rRegion)
Definition: region.cxx:1602
std::vector< tools::Rectangle > RectangleVector
Definition: region.hxx:34
#define SAL_WARN_UNUSED
bool operator==(const ItalicMatrix &a, const ItalicMatrix &b)
Definition: vclenum.hxx:175