|
QGIS API Documentation 3.99.0-Master (2fe06baccd8)
|
A combobox which lets the user select map scale from predefined list and highlights nearest to current scale value. More...
#include <qgsscalecombobox.h>

Public Types | |
| enum class | RatioMode : int { ForceUnitNumerator , Flexible } |
| Scale ratio modes. More... | |
Public Slots | |
| void | setMinScale (double scale) |
| Set the minimum allowed scale. | |
| void | setNull () |
| Sets the combo box to the null value. | |
| void | setRatioMode (QgsScaleComboBox::RatioMode mode) |
| Sets the ratio mode for the scale. | |
| void | setScale (double scale) |
| Set the selected scale from a double. | |
| void | updateScales (const QStringList &scales=QStringList()) |
| Sets the list of predefined scales to show in the combobox. | |
Signals | |
| void | ratioModeChanged (QgsScaleComboBox::RatioMode mode) |
| Emitted when the ratio mode for the widget is changed. | |
| void | scaleChanged (double scale) |
| Emitted when user has finished editing/selecting a new scale. | |
Public Member Functions | |
| QgsScaleComboBox (QWidget *parent=nullptr) | |
| Constructor for QgsScaleComboBox. | |
| bool | allowNull () const |
Returns true if the combobox can be set to a NULL value. | |
| bool | isNull () const |
Returns true if the combo box is currently set to a "null" value. | |
| double | minScale () const |
| Returns the minimum scale, or 0 if no minimum scale set. | |
| QgsScaleComboBox::RatioMode | ratioMode () const |
| Returns the ratio mode for the scale. | |
| double | scale () const |
| Returns the selected scale as a double. | |
| QString | scaleString () const |
| Returns the selected scale as a string, e.g. | |
| void | setAllowNull (bool allowNull) |
| Sets whether the scale combobox can be set to a NULL value. | |
| void | setPredefinedScales (const QVector< double > &scales) |
| 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. | |
Static Public Member Functions | |
| static double | toDouble (const QString &string, bool *ok=nullptr) |
| Helper function to convert a scale string to double. | |
| static QString | toString (double scale, QgsScaleComboBox::RatioMode mode=QgsScaleComboBox::RatioMode::ForceUnitNumerator) |
| Helper function to convert a scale double to scale string. | |
Protected Member Functions | |
| void | showPopup () override |
Properties | |
| double | minScale |
| RatioMode | ratioMode |
| double | scale |
A combobox which lets the user select map scale from predefined list and highlights nearest to current scale value.
Definition at line 31 of file qgsscalecombobox.h.
|
strong |
Scale ratio modes.
| Enumerator | |
|---|---|
| ForceUnitNumerator | Default mode, forces the scale numerator to be 1, e.g. "1:1000". |
| Flexible | Allows numerator values other than 1, e.g: "2:3". |
Definition at line 44 of file qgsscalecombobox.h.
| QgsScaleComboBox::QgsScaleComboBox | ( | QWidget * | parent = nullptr | ) |
Constructor for QgsScaleComboBox.
Definition at line 31 of file qgsscalecombobox.cpp.
| bool QgsScaleComboBox::allowNull | ( | ) | const |
Returns true if the combobox can be set to a NULL value.
Definition at line 341 of file qgsscalecombobox.cpp.
| bool QgsScaleComboBox::isNull | ( | ) | const |
Returns true if the combo box is currently set to a "null" value.
Definition at line 192 of file qgsscalecombobox.cpp.
|
inline |
Returns the minimum scale, or 0 if no minimum scale set.
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map. Any scale lower than the minimum scale will automatically be converted to the minimum scale. Except for 0 which is always allowed.
Definition at line 90 of file qgsscalecombobox.h.
| QgsScaleComboBox::RatioMode QgsScaleComboBox::ratioMode | ( | ) | const |
Returns the ratio mode for the scale.
Definition at line 242 of file qgsscalecombobox.cpp.
|
signal |
Emitted when the ratio mode for the widget is changed.
| double QgsScaleComboBox::scale | ( | ) | const |
Returns the selected scale as a double.
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
Definition at line 187 of file qgsscalecombobox.cpp.
|
signal |
Emitted when user has finished editing/selecting a new scale.
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
| QString QgsScaleComboBox::scaleString | ( | ) | const |
Returns the selected scale as a string, e.g.
"1:150".
Definition at line 144 of file qgsscalecombobox.cpp.
| void QgsScaleComboBox::setAllowNull | ( | bool | allowNull | ) |
Sets whether the scale combobox can be set to a NULL value.
Definition at line 334 of file qgsscalecombobox.cpp.
|
slot |
Set the minimum allowed scale.
Set to 0 to disable the minimum scale. The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map. Any scale lower than the minimum scale will automatically be converted to the minimum scale. Except for 0 which is always allowed.
Definition at line 346 of file qgsscalecombobox.cpp.
|
slot |
Sets the combo box to the null value.
This only has an effect if allowNull() is true.
Definition at line 355 of file qgsscalecombobox.cpp.
| void QgsScaleComboBox::setPredefinedScales | ( | const QVector< double > & | scales | ) |
Sets the list of predefined scales to show in the combobox.
List elements are expected to be scale denominators, e.g. 1000.0 for a 1:1000 map.
If scales is empty then the default user scale options will be used instead.
Definition at line 88 of file qgsscalecombobox.cpp.
|
slot |
Sets the ratio mode for the scale.
Definition at line 247 of file qgsscalecombobox.cpp.
|
slot |
Set the selected scale from a double.
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
Definition at line 197 of file qgsscalecombobox.cpp.
| bool QgsScaleComboBox::setScaleString | ( | const QString & | string | ) |
Set the selected scale from a string, e.g.
"1:150".
Definition at line 149 of file qgsscalecombobox.cpp.
|
overrideprotected |
Definition at line 112 of file qgsscalecombobox.cpp.
|
static |
Helper function to convert a scale string to double.
The returned value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map. If specified, ok will be set to true if the string was successfully interpreted as a scale.
Definition at line 294 of file qgsscalecombobox.cpp.
|
static |
Helper function to convert a scale double to scale string.
The returned string will be rounded (e.g. 1:1000, not 1:1000.345).
| scale | scale value indicating the scale denominator, e.g. 1000.0 for a 1:1000 map. |
| mode | ratio mode (since QGIS 4.0) |
Definition at line 257 of file qgsscalecombobox.cpp.
|
slot |
Sets the list of predefined scales to show in the combobox.
List elements are expected to be valid scale strings, such as "1:1000000".
Definition at line 44 of file qgsscalecombobox.cpp.
|
readwrite |
Definition at line 35 of file qgsscalecombobox.h.
|
readwrite |
Definition at line 36 of file qgsscalecombobox.h.
|
readwrite |
Definition at line 34 of file qgsscalecombobox.h.