QGIS/python/gui/auto_generated/qgsscalewidget.sip.in

154 lines
4.7 KiB
Plaintext
Raw Normal View History

2017-04-19 16:51:15 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsscalewidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsScaleWidget : QWidget
{
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
A combobox which lets the user select map scale from predefined list
and highlights nearest to current scale value
%End
2017-04-19 16:51:15 +02:00
%TypeHeaderCode
#include "qgsscalewidget.h"
%End
public:
2017-04-19 20:53:51 +02:00
2017-04-19 16:51:15 +02:00
explicit QgsScaleWidget( QWidget *parent /TransferThis/ = 0 );
2017-04-19 20:53:51 +02:00
%Docstring
QgsScaleWidget creates a combobox which lets the user select map scale from predefined list
2017-12-15 10:36:55 -04:00
and highlights nearest to current scale value
2017-04-19 20:53:51 +02:00
%End
2015-01-09 10:23:39 +01:00
void setShowCurrentScaleButton( bool showCurrentScaleButton );
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Sets whether to show a button to set the scale to the current scale of the map canvas next to the combobox.
2017-04-19 16:51:15 +02:00
.. note::
the map canvas must be defined to show the button
2017-12-15 10:36:55 -04:00
.. seealso:: :py:func:`showCurrentScaleButton`
2017-12-15 10:36:55 -04:00
.. seealso:: :py:func:`setMapCanvas`
2017-04-19 16:51:15 +02:00
%End
bool showCurrentScaleButton();
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns whether a button to set the scale from map canvas is shown or not.
.. seealso:: :py:func:`setShowCurrentScaleButton`
2017-04-19 16:51:15 +02:00
%End
2017-04-19 16:51:15 +02:00
void setMapCanvas( QgsMapCanvas *canvas );
%Docstring
2017-12-15 10:36:55 -04:00
Set the map ``canvas`` associated to the current button.
2017-04-19 16:51:15 +02:00
%End
QString scaleString() const;
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns the selected scale as a string, e.g. "1:150".
.. seealso:: :py:func:`setScaleString`
2017-04-19 16:51:15 +02:00
%End
bool setScaleString( const QString &string );
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Set the selected scale from a ``string``, e.g. "1:150".
.. seealso:: :py:func:`scaleString`
2017-04-19 16:51:15 +02:00
%End
double scale() const;
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns the selected scale as a double.
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
.. seealso:: :py:func:`setScale`
2017-04-19 16:51:15 +02:00
%End
double minScale() const;
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
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.
2017-04-19 16:51:15 +02:00
%End
static QString toString( double scale );
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Helper function to convert a ``scale`` double to scale string.
The ``scale`` value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
The returned string will be rounded (e.g. 1:1000, not 1:1000.345).
.. seealso:: :py:func:`toDouble`
2017-04-19 16:51:15 +02:00
%End
2017-04-19 16:51:15 +02:00
static double toDouble( const QString &scaleString, bool *ok = 0 );
%Docstring
2017-12-15 10:36:55 -04:00
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.
.. seealso:: :py:func:`toString`
2017-04-19 16:51:15 +02:00
%End
2015-02-03 02:21:52 +01:00
public slots:
void setScale( double scale );
%Docstring
2017-12-15 10:36:55 -04:00
Set the selected scale from a double.
The ``scale`` value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
.. seealso:: :py:func:`scale`
%End
2015-02-03 02:21:52 +01:00
void updateScales( const QStringList &scales = QStringList() );
2017-04-19 20:53:51 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Sets the list of predefined ``scales`` to show in the combobox. List elements
are expected to be valid scale strings, such as "1:1000000".
2017-04-19 20:53:51 +02:00
%End
2015-02-03 02:21:52 +01:00
void setScaleFromCanvas();
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Assigns the current scale from the map canvas, if set.
.. seealso:: :py:func:`setMapCanvas`
2017-04-19 16:51:15 +02:00
%End
void setMinScale( double scale );
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
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.
2017-04-19 16:51:15 +02:00
%End
signals:
void scaleChanged( double scale );
2017-04-19 16:51:15 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
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.
2017-04-19 16:51:15 +02:00
%End
};
2017-04-19 16:51:15 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsscalewidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/