mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
/***************************************************************************
|
|
qgsfieldformatterregistry.sip - QgsFieldFormatterRegistry
|
|
|
|
---------------------
|
|
begin : 2.12.2016
|
|
copyright : (C) 2016 by Matthias Kuhn
|
|
email : matthias@opengis.ch
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
class QgsFieldFormatterRegistry : QObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgsfieldformatterregistry.h"
|
|
%End
|
|
public:
|
|
|
|
QgsFieldFormatterRegistry( QObject* parent /TransferThis/ );
|
|
~QgsFieldFormatterRegistry();
|
|
|
|
void addFieldFormatter( QgsFieldFormatter* formatter /Transfer/ );
|
|
|
|
void removeFieldFormatter( QgsFieldFormatter* formatter );
|
|
void removeFieldFormatter( const QString& id );
|
|
QgsFieldFormatter* fieldFormatter( const QString& id ) const;
|
|
QgsFieldFormatter* fallbackFieldFormatter() const;
|
|
signals:
|
|
void fieldFormatterAdded( QgsFieldFormatter* formatter );
|
|
void fieldFormatterRemoved( QgsFieldFormatter* formatter );
|
|
};
|