QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsrelationreferencesearchwidgetwrapper.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsrelationreferencesearchwidgetwrapper.h
3 ----------------------------------------
4 Date : 2016-05-25
5 Copyright : (C) 2016 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
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
16#ifndef QGSRELATIONREFERENCESEARCHWIDGETWRAPPER_H
17#define QGSRELATIONREFERENCESEARCHWIDGETWRAPPER_H
18
20
21#include <QComboBox>
22#include <QListWidget>
23#include <QLineEdit>
24
25#include "qgis_gui.h"
26#include "qgis_sip.h"
27
28class QgsRelationReferenceWidgetFactory;
29class QgsMapCanvas;
31
39{
40 Q_OBJECT
41
42 public:
43
51 explicit QgsRelationReferenceSearchWidgetWrapper( QgsVectorLayer *vl, int fieldIdx, QgsMapCanvas *canvas, QWidget *parent = nullptr );
52
56 QVariant value() const;
57
58 bool applyDirectly() override;
59 QString expression() const override;
60 bool valid() const override;
62
67 QString createExpression( QgsSearchWidgetWrapper::FilterFlags flags ) const override;
68
69 public slots:
70
71 void clearWidget() override;
72 void setEnabled( bool enabled ) override;
73
74 protected:
75 QWidget *createWidget( QWidget *parent ) override;
76 void initWidget( QWidget *editor ) override;
77
78 public slots:
79
84 Q_DECL_DEPRECATED void onValueChanged( const QVariant &value ) SIP_DEPRECATED;
85
86 protected slots:
87 void setExpression( const QString &exp ) override;
88
89 private:
90 void onValuesChanged( const QVariantList &values );
91
92 QgsRelationReferenceWidget *mWidget = nullptr;
93 QgsVectorLayer *mLayer = nullptr;
94 QgsMapCanvas *mCanvas = nullptr;
95
96 friend class QgsRelationReferenceWidgetFactory;
97};
98
99#endif // QGSRELATIONREFERENCESEARCHWIDGETWRAPPER_H
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:93
Shows a search widget on a filter form.
void setEnabled(bool enabled) override
Toggles whether the search widget is enabled or disabled.
virtual QString createExpression(FilterFlags flags) const
Creates a filter expression based on the current state of the search widget and the specified filter ...
virtual QString expression() const =0
Will be used to access the widget's value.
virtual FilterFlags defaultFlags() const
Returns the filter flags which should be set by default for the search widget.
virtual void setExpression(const QString &expression)=0
Set the expression which is currently used as filter for this widget.
virtual FilterFlags supportedFlags() const
Returns filter flags supported by the search widget.
virtual bool applyDirectly()=0
If this is true, then this search widget should take effect directly when its expression changes.
virtual void clearWidget()
Clears the widget's current value and resets it back to the default state.
QFlags< FilterFlag > FilterFlags
Represents a vector layer which manages a vector based data sets.
virtual bool valid() const =0
Returns true if the widget has been properly initialized.
virtual void initWidget(QWidget *editor)
This method should initialize the editor widget with runtime data.
virtual QWidget * createWidget(QWidget *parent)=0
This method should create a new widget with the provided parent.
#define SIP_DEPRECATED
Definition: qgis_sip.h:106