QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsscalewidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsscalewidget.h
3  --------------------------------------
4  Date : 08.01.2015
5  Copyright : (C) 2014 Denis Rouzaud
6  Email : [email protected]
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15 
16 #ifndef QGSSCALEWIDGET_H
17 #define QGSSCALEWIDGET_H
18 
19 #include <QWidget>
20 #include <QToolButton>
21 
22 
23 #include "qgsscalecombobox.h"
24 #include "qgis_gui.h"
25 #include "qgis_sip.h"
26 
27 class QgsMapCanvas;
28 
34 class GUI_EXPORT QgsScaleWidget : public QWidget
35 {
36  Q_OBJECT
37  Q_PROPERTY( bool showCurrentScaleButton READ showCurrentScaleButton WRITE setShowCurrentScaleButton )
38  Q_PROPERTY( bool scale READ scale WRITE setScale NOTIFY scaleChanged )
39  Q_PROPERTY( bool minScale READ minScale WRITE setMinScale )
40 
41  public:
42 
47  explicit QgsScaleWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
48 
55  void setShowCurrentScaleButton( bool showCurrentScaleButton );
56 
61  bool showCurrentScaleButton() { return mShowCurrentScaleButton;}
62 
66  void setMapCanvas( QgsMapCanvas *canvas );
67 
72  QString scaleString() const { return mScaleComboBox->scaleString(); }
73 
78  bool setScaleString( const QString &string ) { return mScaleComboBox->setScaleString( string ); }
79 
85  double scale() const { return mScaleComboBox->scale(); }
86 
94  bool isNull() const;
95 
102  double minScale() const { return mScaleComboBox->minScale(); }
103 
111  static QString toString( double scale ) { return QgsScaleComboBox::toString( scale ); }
112 
119  static double toDouble( const QString &scaleString, bool *ok = nullptr ) { return QgsScaleComboBox::toDouble( scaleString, ok ); }
120 
128  void setAllowNull( bool allowNull );
129 
137  bool allowNull() const;
138 
139  public slots:
140 
146  void setScale( double scale );
147 
152  void updateScales( const QStringList &scales = QStringList() ) { mScaleComboBox->updateScales( scales ); }
153 
158  void setScaleFromCanvas();
159 
166  void setMinScale( double scale ) { mScaleComboBox->setMinScale( scale ); }
167 
177  void setNull();
178 
179  signals:
180 
185  void scaleChanged( double scale );
186 
187  private:
188  QgsScaleComboBox *mScaleComboBox = nullptr;
189  QToolButton *mCurrentScaleButton = nullptr;
190  QgsMapCanvas *mCanvas = nullptr;
191  bool mShowCurrentScaleButton = false;
192 };
193 
194 #endif // QGSSCALEWIDGET_H
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
static QString toString(double scale)
Helper function to convert a scale double to scale string.
A combobox which lets the user select map scale from predefined list and highlights nearest to curren...
QString scaleString() const
Returns the selected scale as a string, e.g.
double scale() const
Returns the selected scale as a double.
static double toDouble(const QString &scaleString, bool *ok=nullptr)
Helper function to convert a scale string to double.
static double toDouble(const QString &string, bool *ok=nullptr)
Helper function to convert a scale string to double.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:75
void updateScales(const QStringList &scales=QStringList())
Sets the list of predefined scales to show in the combobox.
bool setScaleString(const QString &string)
Set the selected scale from a string, e.g.
void setMinScale(double scale)
Set the minimum allowed scale.
static QString toString(double scale)
Helper function to convert a scale double to scale string.
double minScale() const
Returns the minimum scale, or 0 if no minimum scale set.
A combobox which lets the user select map scale from predefined list and highlights nearest to curren...