QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgsgeometrywidgetwrapper.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgeometrywidgetwrapper.h
3 -----------------------
4 Date : February 2023
5 Copyright : (C) 2023 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 QGSGEOMETRYWIDGETWRAPPER_H
17#define QGSGEOMETRYWIDGETWRAPPER_H
18
19#include "qgis_gui.h"
21
22class QLabel;
23class QToolButton;
25
27
36{
37 Q_OBJECT
38 public:
39
51 explicit QgsGeometryWidgetWrapper( QgsVectorLayer *layer, int fieldIdx, QWidget *editor = nullptr, QWidget *parent = nullptr, QgsMessageBar *messageBar = nullptr );
52
53 // QgsEditorWidgetWrapper interface
54 public:
55 QVariant value() const override;
56 void setEnabled( bool enabled ) override;
57
58 protected:
59 QWidget *createWidget( QWidget *parent ) override;
60 void initWidget( QWidget *editor ) override;
61 bool valid() const override;
62
63 private:
64 void updateValues( const QVariant &value, const QVariantList & = QVariantList() ) override;
65
66 QgsGeometryWidget *mWidget = nullptr;
67};
68
69#endif // QGSGEOMETRYWIDGETWRAPPER_H
virtual QVariant value() const =0
Will be used to access the widget's value.
int fieldIdx() const
Access the field index.
QgsEditorWidgetWrapper(QgsVectorLayer *vl, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr)
Create a new widget wrapper.
void setEnabled(bool enabled) override
Is used to enable or disable the edit functionality of the managed widget.
QgsGeometryWidgetWrapper(QgsVectorLayer *layer, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr, QgsMessageBar *messageBar=nullptr)
Constructor for QgsGeometryWidgetWrapper.
QVariant value() const override
Will be used to access the widget's value.
A widget for storing and interacting with a QgsGeometry object.
A bar for displaying non-blocking messages to the user.
Represents a vector layer which manages a vector based dataset.
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.
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_NO_FILE