QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsrelationaggregatesearchwidgetwrapper.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsrelationaggregatesearchwidget.h
3 -----------------------------
4 Date : Nov 2017
5 Copyright : (C) 2017 Matthias Kuhn
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
17#ifndef QGSRELATIONAGGREGATESEARCHWIDGETWRAPPER_H
18#define QGSRELATIONAGGREGATESEARCHWIDGETWRAPPER_H
19
20#include "qgis_gui.h"
21#include "qgsattributeform.h"
23
25
36{
37 Q_OBJECT
38
39 public:
44
45 QString expression() const override;
46
47 bool valid() const override;
48 QWidget *createWidget( QWidget *parent ) override;
49 bool applyDirectly() override;
50 void setExpression( const QString &value ) override;
51 bool eventFilter( QObject *watched, QEvent *event ) override;
52
53 private:
54 QgsRelationWidgetWrapper *mWrapper = nullptr;
55 QgsAttributeForm *mAttributeForm = nullptr;
56 QWidget *mContainerWidget = nullptr;
57};
58
59#endif // QGSRELATIONAGGREGATESEARCHWIDGETWRAPPER_H
The attribute form widget for vector layer features.
QgsRelationAggregateSearchWidgetWrapper(QgsVectorLayer *layer, QgsRelationWidgetWrapper *wrapper, QWidget *parent SIP_TRANSFERTHIS=nullptr)
Constructor.
bool eventFilter(QObject *watched, QEvent *event) override
A widget wrapper for relation widgets.
virtual QString expression() const =0
Will be used to access the widget's value.
QgsSearchWidgetWrapper(QgsVectorLayer *vl, int fieldIdx, QWidget *parent=nullptr)
Create a new widget wrapper.
virtual void setExpression(const QString &expression)=0
Set the expression which is currently used as filter for this widget.
virtual bool applyDirectly()=0
If this is true, then this search widget should take effect directly when its expression changes.
Represents a vector layer which manages a vector based dataset.
virtual bool valid() const =0
Returns true if the widget has been properly initialized.
QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.
virtual QWidget * createWidget(QWidget *parent)=0
This method should create a new widget with the provided parent.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53