mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
|
|
class QgsScaleRangeWidget : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgsscalerangewidget.h"
|
|
%End
|
|
|
|
public:
|
|
explicit QgsScaleRangeWidget( QWidget *parent /TransferThis/ = 0 );
|
|
~QgsScaleRangeWidget();
|
|
|
|
//! set the map canvas which will be used for the current scale buttons
|
|
/**
|
|
* @brief setMapCanvas set the map canvas which will be used for the current scale buttons
|
|
* if not set, the buttons are hidden.
|
|
*/
|
|
void setMapCanvas( QgsMapCanvas* mapCanvas );
|
|
|
|
//! return the minimum scale
|
|
double minimumScale();
|
|
|
|
//! return the maximum scale
|
|
double maximumScale();
|
|
|
|
//! return the minimum scale denominator ( = 1 / maximum scale )
|
|
double minimumScaleDenom();
|
|
|
|
//! return the maximum scale denominator ( = 1 / minimum scale )
|
|
double maximumScaleDenom();
|
|
|
|
//! call to reload the project scales and apply them to the 2 scales combo boxes
|
|
void reloadProjectScales();
|
|
|
|
public slots:
|
|
void setMinimumScale( double scale );
|
|
|
|
void setMaximumScale( double scale );
|
|
|
|
void setScaleRange( double min, double max );
|
|
};
|