QGIS API Documentation  2.10.1-Pisa
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsrectangle.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrectangle.h - description
3  -------------------
4  begin : Sat Jun 22 2002
5  copyright : (C) 2002 by Gary E.Sherman
6  email : sherman at mrcc.com
7 ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSRECTANGLE_H
19 #define QGSRECTANGLE_H
20 
21 #include <iosfwd>
22 #include <QDomDocument>
23 
24 class QString;
25 class QRectF;
26 #include "qgspoint.h"
27 
28 
35 class CORE_EXPORT QgsRectangle
36 {
37  public:
39  QgsRectangle( double xmin = 0, double ymin = 0, double xmax = 0, double ymax = 0 );
41  QgsRectangle( const QgsPoint & p1, const QgsPoint & p2 );
43  QgsRectangle( const QRectF & qRectF );
45  QgsRectangle( const QgsRectangle &other );
47  ~QgsRectangle();
50  void set( const QgsPoint& p1, const QgsPoint& p2 );
53  void set( double xmin, double ymin, double xmax, double ymax );
55  void setXMinimum( double x );
57  void setXMaximum( double x );
59  void setYMinimum( double y );
61  void setYMaximum( double y );
64  void setMinimal();
66  double xMaximum() const;
68  double xMinimum() const;
70  double yMaximum() const;
72  double yMinimum() const;
74  void normalize();
76  double width() const;
78  double height() const;
80  QgsPoint center() const;
82  void scale( double scaleFactor, const QgsPoint *c = 0 );
83  void scale( double scaleFactor, double centerX, double centerY );
86  QgsRectangle buffer( double width );
88  QgsRectangle intersect( const QgsRectangle *rect ) const;
90  bool intersects( const QgsRectangle& rect ) const;
92  bool contains( const QgsRectangle& rect ) const;
94  bool contains( const QgsPoint &p ) const;
96  void combineExtentWith( QgsRectangle *rect );
98  void combineExtentWith( double x, double y );
101  bool isEmpty() const;
105  bool isNull() const;
107  QString asWktCoordinates() const;
109  QString asWktPolygon() const;
111  QRectF toRectF() const;
113  QString toString( bool automaticPrecision = false ) const;
115  QString toString( int thePrecision ) const;
117  QString asPolygon() const;
121  bool operator==( const QgsRectangle &r1 ) const;
125  bool operator!=( const QgsRectangle &r1 ) const;
129  QgsRectangle & operator=( const QgsRectangle &r1 );
130 
132  void unionRect( const QgsRectangle& rect );
133 
136  bool isFinite() const;
137 
139  void invert();
140 
141  protected:
142 
143  // These are protected instead of private so that things like
144  // the QgsPostGisBox3d can get at them.
145 
146  double xmin;
147  double ymin;
148  double xmax;
149  double ymax;
150 
151 };
152 
154 CORE_EXPORT QDataStream& operator<<( QDataStream& out, const QgsRectangle& rectangle );
156 CORE_EXPORT QDataStream& operator>>( QDataStream& in, QgsRectangle& rectangle );
157 
159 {
160 }
161 
162 inline void QgsRectangle::setXMinimum( double x )
163 {
164  xmin = x;
165 }
166 
167 inline void QgsRectangle::setXMaximum( double x )
168 {
169  xmax = x;
170 }
171 
172 inline void QgsRectangle::setYMinimum( double y )
173 {
174  ymin = y;
175 }
176 
177 inline void QgsRectangle::setYMaximum( double y )
178 {
179  ymax = y;
180 }
181 
182 inline double QgsRectangle::xMaximum() const
183 {
184  return xmax;
185 }
186 
187 inline double QgsRectangle::xMinimum() const
188 {
189  return xmin;
190 }
191 
192 inline double QgsRectangle::yMaximum() const
193 {
194  return ymax;
195 }
196 
197 inline double QgsRectangle::yMinimum() const
198 {
199  return ymin;
200 }
201 
202 inline double QgsRectangle::width() const
203 {
204  return xmax - xmin;
205 }
206 
207 inline double QgsRectangle::height() const
208 {
209  return ymax - ymin;
210 }
211 
213 {
214  return QgsPoint( xmin + width() / 2, ymin + height() / 2 );
215 }
216 inline std::ostream& operator << ( std::ostream& os, const QgsRectangle &r )
217 {
218  return os << r.toString().toLocal8Bit().data();
219 }
220 
221 #endif // QGSRECTANGLE_H
A rectangle specified with double values.
Definition: qgsrectangle.h:35
void setXMaximum(double x)
Set the maximum x value.
Definition: qgsrectangle.h:167
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
double yMaximum() const
Get the y maximum value (top side of rectangle)
Definition: qgsrectangle.h:192
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
~QgsRectangle()
Destructor.
Definition: qgsrectangle.h:158
CORE_EXPORT QDataStream & operator<<(QDataStream &out, const QgsRectangle &rectangle)
Writes the list rectangle to stream out.
double yMinimum() const
Get the y minimum value (bottom side of rectangle)
Definition: qgsrectangle.h:197
double xMaximum() const
Get the x maximum value (right side of rectangle)
Definition: qgsrectangle.h:182
void setYMinimum(double y)
Set the minimum y value.
Definition: qgsrectangle.h:172
A class to represent a point.
Definition: qgspoint.h:63
QByteArray toLocal8Bit() const
CORE_EXPORT QDataStream & operator>>(QDataStream &in, QgsRectangle &rectangle)
Reads a rectangle from stream in into rectangle.
void setYMaximum(double y)
Set the maximum y value.
Definition: qgsrectangle.h:177
char * data()
double width() const
Width of the rectangle.
Definition: qgsrectangle.h:202
QString toString(bool automaticPrecision=false) const
returns string representation of form xmin,ymin xmax,ymax
double xMinimum() const
Get the x minimum value (left side of rectangle)
Definition: qgsrectangle.h:187
QgsPoint center() const
Center point of the rectangle.
Definition: qgsrectangle.h:212
bool isNull(const QVariant &v)
void setXMinimum(double x)
Set the minimum x value.
Definition: qgsrectangle.h:162
double height() const
Height of the rectangle.
Definition: qgsrectangle.h:207