QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
qgstexteditwidgetfactory.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgstexteditwidgetfactory.cpp
3  --------------------------------------
4  Date : 5.1.2014
5  Copyright : (C) 2014 Matthias Kuhn
6  Email : matthias at opengis dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
17 
18 #include "qgstexteditwrapper.h"
19 #include "qgstexteditconfigdlg.h"
21 
23  : QgsEditorWidgetFactory( name )
24 {
25 }
26 
28 {
29  return new QgsTextEditWrapper( vl, fieldIdx, editor, parent );
30 }
31 
33 {
34  return new QgsTextEditSearchWidgetWrapper( vl, fieldIdx, parent );
35 }
36 
38 {
39  return new QgsTextEditConfigDlg( vl, fieldIdx, parent );
40 }
41 
42 
43 void QgsTextEditWidgetFactory::writeConfig( const QgsEditorWidgetConfig& config, QDomElement& configElement, QDomDocument& doc, const QgsVectorLayer* layer, int fieldIdx )
44 {
45  Q_UNUSED( doc )
46  Q_UNUSED( layer )
47  Q_UNUSED( fieldIdx )
48 
49  configElement.setAttribute( "IsMultiline", config.value( "IsMultiline", false ).toBool() );
50  configElement.setAttribute( "UseHtml", config.value( "UseHtml", false ).toBool() );
51 }
52 
53 QgsEditorWidgetConfig QgsTextEditWidgetFactory::readConfig( const QDomElement& configElement, QgsVectorLayer* layer, int fieldIdx )
54 {
55  Q_UNUSED( layer )
56  Q_UNUSED( fieldIdx )
57 
59 
60  cfg.insert( "IsMultiline", configElement.attribute( "IsMultiline", "0" ) == "1" );
61  cfg.insert( "UseHtml", configElement.attribute( "UseHtml", "0" ) == "1" );
62 
63  return cfg;
64 }
Manages an editor widget Widget and wrapper share the same parent.
This class should be subclassed for every configurable editor widget type.
QString attribute(const QString &name, const QString &defValue) const
QgsEditorConfigWidget * configWidget(QgsVectorLayer *vl, int fieldIdx, QWidget *parent) const override
Override this in your implementation.
Manages an editor widget Widget and wrapper share the same parent.
Wraps a text widget.
QgsEditorWidgetWrapper * create(QgsVectorLayer *vl, int fieldIdx, QWidget *editor, QWidget *parent) const override
Override this in your implementation.
void writeConfig(const QgsEditorWidgetConfig &config, QDomElement &configElement, QDomDocument &doc, const QgsVectorLayer *layer, int fieldIdx) override
Serialize your configuration and save it in a xml doc.
QgsSearchWidgetWrapper * createSearchWidget(QgsVectorLayer *vl, int fieldIdx, QWidget *parent) const override
By default a simple QgsFilterLineEdit is returned as search widget.
QVariantMap QgsEditorWidgetConfig
Holds a set of configuration parameters for a editor widget wrapper.
void setAttribute(const QString &name, const QString &value)
Every attribute editor widget needs a factory, which inherits this class.
QString name()
Return The human readable identifier name of this widget type.
QgsTextEditWidgetFactory(const QString &name)
Wraps a text edit widget for searching.
Represents a vector layer which manages a vector based data sets.