vcl: 'horizontically'
[LibreOffice.git] / include / vcl / region.hxx
blobe6c7448e36c177d9d4736a1a6c1eadd9e34ed5e6
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_VCL_REGION_HXX
21 #define INCLUDED_VCL_REGION_HXX
23 #include <tools/gen.hxx>
24 #include <vcl/dllapi.h>
25 #include <basegfx/polygon/b2dpolypolygon.hxx>
26 #include <memory>
28 class RegionBand;
30 namespace tools {
31 class Polygon;
32 class PolyPolygon;
35 namespace vcl { class Window; }
36 class OutputDevice;
37 class Bitmap;
39 typedef std::vector< tools::Rectangle > RectangleVector;
41 namespace vcl {
43 class SAL_WARN_UNUSED VCL_DLLPUBLIC Region
45 private:
46 friend class ::OutputDevice;
47 friend class ::vcl::Window;
48 friend class ::Bitmap;
50 // possible contents
51 std::shared_ptr< basegfx::B2DPolyPolygon >
52 mpB2DPolyPolygon;
53 std::shared_ptr< tools::PolyPolygon >
54 mpPolyPolygon;
55 std::shared_ptr< RegionBand >
56 mpRegionBand;
58 bool mbIsNull : 1;
60 // helpers
61 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const tools::PolyPolygon& rPolyPoly );
62 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly );
64 SAL_DLLPRIVATE tools::PolyPolygon ImplCreatePolyPolygonFromRegionBand() const;
65 SAL_DLLPRIVATE basegfx::B2DPolyPolygon ImplCreateB2DPolyPolygonFromRegionBand() const;
67 public:
69 explicit Region(bool bIsNull = false); // default creates empty region, with true a null region is created
70 explicit Region(const tools::Rectangle& rRect);
71 explicit Region(const tools::Polygon& rPolygon);
72 explicit Region(const tools::PolyPolygon& rPolyPoly);
73 explicit Region(const basegfx::B2DPolyPolygon&);
74 Region(const vcl::Region& rRegion);
75 Region(vcl::Region&& rRegion) noexcept;
76 ~Region();
78 // direct access to contents
79 const basegfx::B2DPolyPolygon* getB2DPolyPolygon() const { return mpB2DPolyPolygon.get(); }
80 const tools::PolyPolygon* getPolyPolygon() const { return mpPolyPolygon.get(); }
81 const RegionBand* getRegionBand() const { return mpRegionBand.get(); }
83 // access with converters, the asked data will be created from the most
84 // valuable data, buffered and returned
85 tools::PolyPolygon GetAsPolyPolygon() const;
86 basegfx::B2DPolyPolygon GetAsB2DPolyPolygon() const;
87 const RegionBand* GetAsRegionBand() const;
89 // manipulators
90 void Move( tools::Long nHorzMove, tools::Long nVertMove );
91 void Scale( double fScaleX, double fScaleY );
92 void Union( const tools::Rectangle& rRegion );
93 void Intersect( const tools::Rectangle& rRegion );
94 void Exclude( const tools::Rectangle& rRegion );
95 void XOr( const tools::Rectangle& rRegion );
96 void Union( const vcl::Region& rRegion );
97 void Intersect( const vcl::Region& rRegion );
98 void Exclude( const vcl::Region& rRegion );
99 bool XOr( const vcl::Region& rRegion );
101 bool IsEmpty() const;
102 bool IsNull() const { return mbIsNull;}
104 void SetEmpty();
105 void SetNull();
107 bool IsRectangle() const;
109 tools::Rectangle GetBoundRect() const;
110 bool HasPolyPolygonOrB2DPolyPolygon() const { return (getB2DPolyPolygon() || getPolyPolygon()); }
111 void GetRegionRectangles(RectangleVector& rTarget) const;
113 bool IsInside( const Point& rPoint ) const;
114 bool IsOver( const tools::Rectangle& rRect ) const;
116 vcl::Region& operator=( const vcl::Region& rRegion );
117 vcl::Region& operator=( vcl::Region&& rRegion ) noexcept;
118 vcl::Region& operator=( const tools::Rectangle& rRect );
120 bool operator==( const vcl::Region& rRegion ) const;
121 bool operator!=( const vcl::Region& rRegion ) const { return !(Region::operator==( rRegion )); }
123 friend VCL_DLLPUBLIC SvStream& ReadRegion( SvStream& rIStm, vcl::Region& rRegion );
124 friend VCL_DLLPUBLIC SvStream& WriteRegion( SvStream& rOStm, const vcl::Region& rRegion );
126 /* workaround: faster conversion for PolyPolygons
127 * if half of the Polygons contained in rPolyPoly are actually
128 * rectangles, then the returned vcl::Region will be constructed by
129 * XOr'ing the contained Polygons together; in the case of
130 * only Rectangles this can be up to eight times faster than
131 * Region( const tools::PolyPolygon& ).
132 * Caution: this is only useful if the vcl::Region is known to be
133 * changed to rectangles; e.g. if being set as clip region
135 static vcl::Region GetRegionFromPolyPolygon( const tools::PolyPolygon& rPolyPoly );
138 } /* namespace vcl */
140 template< typename charT, typename traits >
141 inline std::basic_ostream<charT, traits> & operator <<(
142 std::basic_ostream<charT, traits> & stream, const vcl::Region& rRegion)
144 if (rRegion.IsEmpty())
145 return stream << "EMPTY";
146 if (rRegion.getB2DPolyPolygon())
147 return stream << "B2DPolyPolygon("
148 << *rRegion.getB2DPolyPolygon()
149 << ")";
150 if (rRegion.getPolyPolygon())
151 return stream << "PolyPolygon("
152 << *rRegion.getPolyPolygon()
153 << ")";
154 if (rRegion.getRegionBand())
155 { // inlined because RegionBand is private to vcl
156 stream << "RegionBand(";
157 RectangleVector rects;
158 rRegion.GetRegionRectangles(rects);
159 if (rects.empty())
160 stream << "EMPTY";
161 for (size_t i = 0; i < rects.size(); ++i)
162 stream << "[" << i << "] " << rects[i];
163 stream << ")";
165 return stream;
168 #endif // INCLUDED_VCL_REGION_HXX
170 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */