mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
This commit adds a new mode to the attribute table dialog for searching and filtering features. When activated (using a button on the toolbar or by pressng CTRL+F), the dialog will switch to form view and all widgets are replaced with their search widget wrapper variant. Alongside each widget is a tool button with options for controlling the search/filter behaviour for that field, eg "equal to", "not equal to", "is null", "greater than", etc.., with the options presented matching themselves to the corresponding field and widget type. New buttons appear at the bottom of the form for either selecting matching features (with options for add to selection/remove from selection/select within current selection) or filtering features in the table (with options for adding features to a current filter or further restricting a current filter). Sponsored by SIGE
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
/**
|
|
* Wraps a value relation search widget. This widget will offer a combobox with values from another layer
|
|
* referenced by a foreign key (a constraint may be set but is not required on data level).
|
|
* It will be used as a search widget and produces expression to look for in the layer.
|
|
*/
|
|
|
|
class QgsValueRelationSearchWidgetWrapper : QgsSearchWidgetWrapper
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvaluerelationsearchwidgetwrapper.h>
|
|
%End
|
|
public:
|
|
explicit QgsValueRelationSearchWidgetWrapper( QgsVectorLayer* vl, int fieldIdx, QWidget* parent /TransferThis/ = nullptr );
|
|
bool applyDirectly();
|
|
QString expression();
|
|
bool valid() const;
|
|
QVariant value() const;
|
|
FilterFlags supportedFlags() const;
|
|
FilterFlags defaultFlags() const;
|
|
virtual QString createExpression( FilterFlags flags ) const;
|
|
|
|
public slots:
|
|
|
|
virtual void clearWidget();
|
|
virtual void setEnabled( bool enabled );
|
|
|
|
protected:
|
|
QWidget* createWidget( QWidget* parent );
|
|
void initWidget( QWidget* editor );
|
|
|
|
public slots:
|
|
|
|
//! Called when current value of search widget changes
|
|
void onValueChanged();
|
|
|
|
protected slots:
|
|
void setExpression( QString exp );
|
|
|
|
};
|