2014-04-06 21:14:02 +02:00
|
|
|
/*!
|
|
|
|
* \class QgsMapUnitScale
|
|
|
|
* \brief Struct for storing maximum and minimum scales for measurements in map units
|
|
|
|
*
|
|
|
|
* For measurements in map units, a minimum and a maximum scale can be defined.
|
|
|
|
* Outside this range, the measurements aren't scaled anymore proportionally to
|
|
|
|
* the map scale.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class QgsMapUnitScale
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgsmapunitscale.h>
|
|
|
|
%End
|
2014-05-27 23:22:50 +02:00
|
|
|
public:
|
2015-09-17 20:35:00 +10:00
|
|
|
|
|
|
|
/** Constructor for QgsMapUnitScale
|
|
|
|
* @param minScale minimum allowed scale, or 0.0 if no minimum scale set
|
|
|
|
* @param maxScale maximum allowed scale, or 0.0 if no maximum scale set
|
|
|
|
*/
|
|
|
|
QgsMapUnitScale( double minScale = 0.0, double maxScale = 0.0 );
|
2014-04-06 21:14:02 +02:00
|
|
|
|
2014-05-27 23:22:50 +02:00
|
|
|
/** The minimum scale, or 0.0 if unset */
|
|
|
|
double minScale;
|
|
|
|
/** The maximum scale, or 0.0 if unset */
|
|
|
|
double maxScale;
|
2014-04-06 21:14:02 +02:00
|
|
|
|
2015-09-17 20:35:00 +10:00
|
|
|
/** Computes a map units per pixel scaling factor, respecting the minimum and maximum scales
|
|
|
|
* set for the object.
|
|
|
|
* @param c render context
|
|
|
|
* @returns map units per pixel, limited between minimum and maximum scales
|
|
|
|
*/
|
2014-05-27 23:22:50 +02:00
|
|
|
double computeMapUnitsPerPixel( const QgsRenderContext& c ) const;
|
2015-09-17 20:35:00 +10:00
|
|
|
|
|
|
|
bool operator==( const QgsMapUnitScale& other ) const;
|
|
|
|
bool operator!=( const QgsMapUnitScale& other ) const;
|
2014-04-06 21:14:02 +02:00
|
|
|
};
|