QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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.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 
93  double minScale() const { return mScaleComboBox->minScale(); }
94 
102  static QString toString( double scale ) { return QgsScaleComboBox::toString( scale ); }
103 
110  static double toDouble( const QString &scaleString, bool *ok = nullptr ) { return QgsScaleComboBox::toDouble( scaleString, ok ); }
111 
112  public slots:
113 
119  void setScale( double scale );
120 
125  void updateScales( const QStringList &scales = QStringList() ) { mScaleComboBox->updateScales( scales ); }
126 
131  void setScaleFromCanvas();
132 
139  void setMinScale( double scale ) { mScaleComboBox->setMinScale( scale ); }
140 
141  signals:
142 
147  void scaleChanged( double scale );
148 
149  private:
150  QgsScaleComboBox *mScaleComboBox = nullptr;
151  QToolButton *mCurrentScaleButton = nullptr;
152  QgsMapCanvas *mCanvas = nullptr;
153  bool mShowCurrentScaleButton = false;
154 };
155 
156 #endif // QGSSCALEWIDGET_H
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
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...
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:74
double minScale() const
Returns the minimum scale, or 0 if no minimum scale set.
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.
QString scaleString() const
Returns the selected scale as a string, e.g.
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...