QGIS API Documentation  3.24.2-Tisler (13c1a02865)
qgsfieldformatterregistry.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsfieldformatterregistry.cpp - QgsFieldFormatterRegistry
3 
4  ---------------------
5  begin : 2.12.2016
6  copyright : (C) 2016 by Matthias Kuhn
7  email : [email protected]
8  ***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 
18 #include "qgsfieldformatter.h"
19 
25 #include "qgslistfieldformatter.h"
26 #include "qgsrangefieldformatter.h"
29 #include "qgsreadwritelocker.h"
30 
32  : QObject( parent )
33 {
42 
43  mFallbackFieldFormatter = new QgsFallbackFieldFormatter();
44 }
45 
47 {
48  const QgsReadWriteLocker locker( mLock, QgsReadWriteLocker::Write );
49  qDeleteAll( mFieldFormatters );
50  delete mFallbackFieldFormatter;
51 }
52 
54 {
56  mFieldFormatters.insert( formatter->id(), formatter );
57  locker.unlock();
59 }
60 
62 {
64 }
65 
67 {
68  const QgsReadWriteLocker locker( mLock, QgsReadWriteLocker::Write );
69  if ( QgsFieldFormatter *formatter = mFieldFormatters.take( id ) )
70  {
72  delete formatter;
73  }
74 }
75 
77 {
78  const QgsReadWriteLocker locker( mLock, QgsReadWriteLocker::Read );
79  return mFieldFormatters.value( id, mFallbackFieldFormatter );
80 }
81 
83 {
84  return mFallbackFieldFormatter;
85 }
Field formatter for a checkbox field.
Field formatter for a date time field.
A default fallback field formatter in case no specialized field formatter is defined.
void fieldFormatterRemoved(QgsFieldFormatter *formatter)
Will be emitted just before a field formatter is removed and deleted.
QgsFieldFormatter * fallbackFieldFormatter() const
Returns a basic fallback field formatter which can be used to represent any field in an unspectacular...
void fieldFormatterAdded(QgsFieldFormatter *formatter)
Will be emitted after a new field formatter has been added.
void removeFieldFormatter(QgsFieldFormatter *formatter)
Remove a field formatter from the registry.
QgsFieldFormatterRegistry(QObject *parent=nullptr)
You should not normally need to create your own field formatter registry.
void addFieldFormatter(QgsFieldFormatter *formatter)
They will take precedence in order of adding them.
QgsFieldFormatter * fieldFormatter(const QString &id) const
Gets a field formatter by its id.
A field formatter helps to handle and display values for a field.
Field formatter for a key value field.
Field formatter for a list field.
Field formatter for a range (double) field with precision and locale.
The QgsReadWriteLocker class is a convenience class that simplifies locking and unlocking QReadWriteL...
@ Write
Lock for write.
@ Read
Lock for read.
void unlock()
Unlocks the lock.
Field formatter for a relation reference field.
Field formatter for a ValueMap field.
Field formatter for a value relation field.