mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
87 lines
2.9 KiB
Plaintext
87 lines
2.9 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/qgsfieldformatterregistry.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.py again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsFieldFormatterRegistry : QObject
|
|
{
|
|
%Docstring(signature="appended")
|
|
The :py:class:`QgsFieldFormatterRegistry` manages registered classes of :py:class:`QgsFieldFormatter`.
|
|
|
|
A reference to the :py:class:`QgsFieldFormatterRegistry` can be obtained from
|
|
:py:func:`QgsApplication.fieldFormatterRegistry()`.
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsfieldformatterregistry.h"
|
|
%End
|
|
public:
|
|
|
|
explicit QgsFieldFormatterRegistry( QObject *parent /TransferThis/ = 0 );
|
|
%Docstring
|
|
You should not normally need to create your own field formatter registry.
|
|
|
|
Use the one provided by `:py:func:`QgsApplication.fieldFormatterRegistry()`` instead.
|
|
%End
|
|
~QgsFieldFormatterRegistry();
|
|
|
|
void addFieldFormatter( QgsFieldFormatter *formatter /Transfer/ );
|
|
%Docstring
|
|
They will take precedence in order of adding them.
|
|
The later they are added, the more weight they have.
|
|
|
|
Ownership is transferred to the registry.
|
|
%End
|
|
|
|
void removeFieldFormatter( QgsFieldFormatter *formatter );
|
|
%Docstring
|
|
Remove a field formatter from the registry.
|
|
The field formatter will be deleted.
|
|
%End
|
|
|
|
void removeFieldFormatter( const QString &id );
|
|
%Docstring
|
|
Remove the field formatter with the specified id.
|
|
%End
|
|
|
|
QgsFieldFormatter *fieldFormatter( const QString &id ) const;
|
|
%Docstring
|
|
Gets a field formatter by its id. If there is no such id registered,
|
|
a default :py:class:`QgsFallbackFieldFormatter` with a null id will be returned instead.
|
|
%End
|
|
|
|
QgsFieldFormatter *fallbackFieldFormatter() const;
|
|
%Docstring
|
|
Returns a basic fallback field formatter which can be used
|
|
to represent any field in an unspectacular manner.
|
|
%End
|
|
|
|
signals:
|
|
|
|
void fieldFormatterAdded( QgsFieldFormatter *formatter );
|
|
%Docstring
|
|
Will be emitted after a new field formatter has been added.
|
|
%End
|
|
|
|
void fieldFormatterRemoved( QgsFieldFormatter *formatter );
|
|
%Docstring
|
|
Will be emitted just before a field formatter is removed and deleted.
|
|
%End
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/qgsfieldformatterregistry.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.py again *
|
|
************************************************************************/
|