QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsexternalresourcewidgetfactory.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsexternalresourcewidgetfactory.cpp
3 
4  ---------------------
5  begin : 16.12.2015
6  copyright : (C) 2015 by Denis Rouzaud
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 "qgsfilewidget.h"
21 
23  : QgsEditorWidgetFactory( name )
24 {
25 }
26 
27 QgsEditorWidgetWrapper *QgsExternalResourceWidgetFactory::create( QgsVectorLayer *vl, int fieldIdx, QWidget *editor, QWidget *parent ) const
28 {
29  return new QgsExternalResourceWidgetWrapper( vl, fieldIdx, editor, parent );
30 }
31 
33 {
34  return new QgsExternalResourceConfigDlg( vl, fieldIdx, parent );
35 }
36 
37 unsigned int QgsExternalResourceWidgetFactory::fieldScore( const QgsVectorLayer *vl, int fieldIdx ) const
38 {
39  if ( vl->fields().at( fieldIdx ).type() == QVariant::String )
40  return 5;
41 
42  return 0;
43 }
QgsEditorConfigWidget
This class should be subclassed for every configurable editor widget type.
Definition: qgseditorconfigwidget.h:39
QgsEditorWidgetFactory
Every attribute editor widget needs a factory, which inherits this class.
Definition: qgseditorwidgetfactory.h:43
qgsexternalresourceconfigdlg.h
qgsexternalresourcewidgetwrapper.h
QgsEditorWidgetWrapper
Manages an editor widget Widget and wrapper share the same parent.
Definition: qgseditorwidgetwrapper.h:48
QgsVectorLayer::fields
QgsFields fields() const FINAL
Returns the list of fields of this layer.
Definition: qgsvectorlayer.cpp:3283
QgsExternalResourceWidgetFactory::fieldScore
unsigned int fieldScore(const QgsVectorLayer *vl, int fieldIdx) const override
This method allows disabling this editor widget type for a certain field.
Definition: qgsexternalresourcewidgetfactory.cpp:37
QgsExternalResourceWidgetFactory::QgsExternalResourceWidgetFactory
QgsExternalResourceWidgetFactory(const QString &name)
Constructor for QgsExternalResourceWidgetFactory, where name is a human-readable name for the factory...
Definition: qgsexternalresourcewidgetfactory.cpp:22
QgsExternalResourceWidgetFactory::configWidget
QgsEditorConfigWidget * configWidget(QgsVectorLayer *vl, int fieldIdx, QWidget *parent) const override
Override this in your implementation.
Definition: qgsexternalresourcewidgetfactory.cpp:32
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:387
qgsfilewidget.h
qgsexternalresourcewidgetfactory.h
QgsExternalResourceWidgetFactory::create
QgsEditorWidgetWrapper * create(QgsVectorLayer *vl, int fieldIdx, QWidget *editor, QWidget *parent) const override
Override this in your implementation.
Definition: qgsexternalresourcewidgetfactory.cpp:27
QgsFields::at
QgsField at(int i) const
Gets field at particular index (must be in range 0..N-1)
Definition: qgsfields.cpp:163
QgsExternalResourceWidgetWrapper
Wraps a file name widget.
Definition: qgsexternalresourcewidgetwrapper.h:42
QgsField::type
QVariant::Type type
Definition: qgsfield.h:57