QGIS API Documentation  2.14.0-Essen
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"
20 
22  : QgsEditorWidgetFactory( name )
23 {
24 }
25 
27 {
28  return new QgsTextEditWrapper( vl, fieldIdx, editor, parent );
29 }
30 
32 {
33  return new QgsTextEditConfigDlg( vl, fieldIdx, parent );
34 }
35 
36 
37 void QgsTextEditWidgetFactory::writeConfig( const QgsEditorWidgetConfig& config, QDomElement& configElement, QDomDocument& doc, const QgsVectorLayer* layer, int fieldIdx )
38 {
39  Q_UNUSED( doc )
40  Q_UNUSED( layer )
41  Q_UNUSED( fieldIdx )
42 
43  configElement.setAttribute( "IsMultiline", config.value( "IsMultiline", false ).toBool() );
44  configElement.setAttribute( "UseHtml", config.value( "UseHtml", false ).toBool() );
45 }
46 
47 QgsEditorWidgetConfig QgsTextEditWidgetFactory::readConfig( const QDomElement& configElement, QgsVectorLayer* layer, int fieldIdx )
48 {
49  Q_UNUSED( layer )
50  Q_UNUSED( fieldIdx )
51 
53 
54  cfg.insert( "IsMultiline", configElement.attribute( "IsMultiline", "0" ) == "1" );
55  cfg.insert( "UseHtml", configElement.attribute( "UseHtml", "0" ) == "1" );
56 
57  return cfg;
58 }
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.
void setAttribute(const QString &name, const QString &value)
Every attribute editor widget needs a factory, which inherits this class.
QgsTextEditWidgetFactory(const QString &name)
iterator insert(const Key &key, const T &value)
Represents a vector layer which manages a vector based data sets.
const T value(const Key &key) const