1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/scalebar/qgsscalebarrendererregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsScaleBarRendererRegistry
{
%Docstring(signature="appended")
The :py:class:`QgsScaleBarRendererRegistry` manages registered scalebar
renderers.
A reference to the :py:class:`QgsScaleBarRendererRegistry` can be
obtained from :py:func:`QgsApplication.scalebarRendererRegistry()`.
.. versionadded:: 3.14
%End
%TypeHeaderCode
#include "qgsscalebarrendererregistry.h"
%End
public:
explicit QgsScaleBarRendererRegistry();
%Docstring
You should not normally need to create your own scalebar renderer
registry.
Use the one provided by
`:py:func:`QgsApplication.scalebarRendererRegistry()`` instead.
%End
~QgsScaleBarRendererRegistry();
QStringList renderers() const;
%Docstring
Returns a list of the renderer ids currently contained in the registry.
%End
QStringList sortedRendererList() const;
%Docstring
Returns a list of the renderer ids currently contained in the registry,
sorted in an order respecting the renderer's sort keys and display
strings.
%End
void addRenderer( QgsScaleBarRenderer *renderer /Transfer/ );
%Docstring
Adds a new ``renderer`` to the registry.
Ownership is transferred to the registry.
%End
void removeRenderer( const QString &id );
%Docstring
Removes the renderer with matching ``id`` from the registry.
%End
QgsScaleBarRenderer *renderer( const QString &id ) const /TransferBack/;
%Docstring
Creates a new scalebar renderer by ``id``. If there is no such ``id``
registered, ``None`` will be returned instead.
The caller takes ownership of the returned object.
%End
QString visibleName( const QString &id ) const;
%Docstring
Returns the translated, user-visible name for the renderer with matching
``id``.
%End
int sortKey( const QString &id ) const;
%Docstring
Returns the sorting key for the renderer with matching ``id``.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/scalebar/qgsscalebarrendererregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|