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 .
19 #ifndef INCLUDED_VCL_INC_REGIONBAND_HXX
20 #define INCLUDED_VCL_INC_REGIONBAND_HXX
22 #include <vcl/region.hxx>
24 #include "regband.hxx"
27 const char* ImplDbgTestRegionBand(const void*);
33 friend const char* ImplDbgTestRegionBand(const void*);
35 ImplRegionBand
* mpFirstBand
; // root of the list with y-bands
36 ImplRegionBand
* mpLastCheckedBand
;
42 RegionBand(const RegionBand
&);
43 RegionBand
& operator=(const RegionBand
&);
44 RegionBand(const Rectangle
&);
47 bool operator==( const RegionBand
& rRegionBand
) const;
48 bool operator!=( const RegionBand
& rRegionBand
) const { return !(RegionBand::operator==( rRegionBand
)); }
50 void load(SvStream
& rIStrm
);
51 void save(SvStream
& rIStrm
) const;
53 bool isSingleRectangle() const;
54 ImplRegionBand
* ImplGetFirstRegionBand() const { return mpFirstBand
; }
55 void ImplAddMissingBands(const long nTop
, const long nBottom
);
56 void InsertBand(ImplRegionBand
* pPreviousBand
, ImplRegionBand
* pBandToInsert
);
58 void CreateBandRange(long nYTop
, long nYBottom
);
59 bool InsertLine(const Point
& rStartPt
, const Point
& rEndPt
, long nLineId
);
60 bool InsertPoint(const Point
&rPoint
, long nLineID
, bool bEndPoint
, LineType eLineType
);
61 bool OptimizeBandList();
62 void Move(long nHorzMove
, long nVertMove
);
63 void Scale(double fScaleX
, double fScaleY
);
64 void InsertBands(long nTop
, long nBottom
);
65 static bool InsertSingleBand(ImplRegionBand
* pBand
, long nYBandPosition
);
66 void Union(long nLeft
, long nTop
, long nRight
, long nBottom
);
67 void Intersect(long nLeft
, long nTop
, long nRight
, long nBottom
);
68 void Union(const RegionBand
& rSource
);
69 void Exclude(long nLeft
, long nTop
, long nRight
, long nBottom
);
70 void XOr(long nLeft
, long nTop
, long nRight
, long nBottom
);
71 void Intersect(const RegionBand
& rSource
);
72 bool Exclude(const RegionBand
& rSource
);
73 void XOr(const RegionBand
& rSource
);
74 Rectangle
GetBoundRect() const;
75 bool IsInside(const Point
& rPoint
) const;
76 sal_uInt32
getRectangleCount() const; // only users are Region::Intersect, Region::IsRectangle and PSWriter::ImplBmp
77 void GetRegionRectangles(RectangleVector
& rTarget
) const;
80 #endif // INCLUDED_VCL_INC_REGIONBAND_HXX
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */