QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
This is a container for configuration of the attribute table. More...
#include <qgsattributetableconfig.h>
Classes | |
struct | ColumnConfig |
Defines the configuration of a column in the attribute table. More... | |
Public Types | |
enum | ActionWidgetStyle { ButtonList, DropDown } |
The style of the action widget in the attribute table. More... | |
enum | Type { Field, Action } |
The type of an attribute table column. More... | |
Public Member Functions | |
QgsAttributeTableConfig ()=default | |
Constructor for QgsAttributeTableConfig. More... | |
ActionWidgetStyle | actionWidgetStyle () const |
Gets the style of the action widget. More... | |
bool | actionWidgetVisible () const |
Returns true if the action widget is visible. More... | |
bool | columnHidden (int column) const |
Returns true if the specified column is hidden. More... | |
QVector< QgsAttributeTableConfig::ColumnConfig > | columns () const |
Gets the list with all columns and their configuration. More... | |
int | columnWidth (int column) const |
Returns the width of a column, or -1 if column should use default width. More... | |
bool | hasSameColumns (const QgsAttributeTableConfig &other) const |
Compare this configuration's columns name, type, and order to other. More... | |
bool | isEmpty () const |
Returns true if the configuration is empty, ie it contains no columns. More... | |
int | mapVisibleColumnToIndex (int visibleColumn) const |
Maps a visible column index to its original column index. More... | |
bool | operator!= (const QgsAttributeTableConfig &other) const |
Compare this configuration to other. More... | |
void | readXml (const QDomNode &node) |
Deserialize to XML on layer load. More... | |
void | setActionWidgetStyle (ActionWidgetStyle actionWidgetStyle) |
Set the style of the action widget. More... | |
void | setActionWidgetVisible (bool visible) |
Set if the action widget is visible. More... | |
void | setColumnHidden (int column, bool hidden) |
Sets whether the specified column should be hidden. More... | |
void | setColumns (const QVector< QgsAttributeTableConfig::ColumnConfig > &columns) |
Set the list of columns visible in the attribute table. More... | |
void | setColumnWidth (int column, int width) |
Sets the width of a column. More... | |
void | setSortExpression (const QString &sortExpression) |
Set the sort expression used for sorting. More... | |
void | setSortOrder (Qt::SortOrder sortOrder) |
Set the sort order. More... | |
QString | sortExpression () const |
Gets the expression used for sorting. More... | |
Qt::SortOrder | sortOrder () const |
Gets the sort order. More... | |
void | update (const QgsFields &fields) |
Update the configuration with the given fields. More... | |
void | writeXml (QDomNode &node) const |
Serialize to XML on layer save. More... | |
This is a container for configuration of the attribute table.
The configuration is specific for one vector layer.
Definition at line 36 of file qgsattributetableconfig.h.
The style of the action widget in the attribute table.
Enumerator | |
---|---|
ButtonList | A list of buttons. |
DropDown | A tool button with a drop-down to select the current action. |
Definition at line 68 of file qgsattributetableconfig.h.
The type of an attribute table column.
Enumerator | |
---|---|
Field | This column represents a field. |
Action | This column represents an action widget. |
Definition at line 43 of file qgsattributetableconfig.h.
|
default |
Constructor for QgsAttributeTableConfig.
QgsAttributeTableConfig::ActionWidgetStyle QgsAttributeTableConfig::actionWidgetStyle | ( | ) | const |
Gets the style of the action widget.
Definition at line 122 of file qgsattributetableconfig.cpp.
bool QgsAttributeTableConfig::actionWidgetVisible | ( | ) | const |
Returns true
if the action widget is visible.
Definition at line 100 of file qgsattributetableconfig.cpp.
bool QgsAttributeTableConfig::columnHidden | ( | int | column | ) | const |
Returns true
if the specified column is hidden.
column | column index |
Definition at line 218 of file qgsattributetableconfig.cpp.
QVector< QgsAttributeTableConfig::ColumnConfig > QgsAttributeTableConfig::columns | ( | ) | const |
Gets the list with all columns and their configuration.
The list order defines the order of appearance.
Definition at line 20 of file qgsattributetableconfig.cpp.
int QgsAttributeTableConfig::columnWidth | ( | int | column | ) | const |
Returns the width of a column, or -1 if column should use default width.
column | column index |
Definition at line 208 of file qgsattributetableconfig.cpp.
bool QgsAttributeTableConfig::hasSameColumns | ( | const QgsAttributeTableConfig & | other | ) | const |
Compare this configuration's columns name, type, and order to other.
The column's width is not considered.
Definition at line 288 of file qgsattributetableconfig.cpp.
bool QgsAttributeTableConfig::isEmpty | ( | ) | const |
Returns true
if the configuration is empty, ie it contains no columns.
Definition at line 25 of file qgsattributetableconfig.cpp.
int QgsAttributeTableConfig::mapVisibleColumnToIndex | ( | int | visibleColumn | ) | const |
Maps a visible column index to its original column index.
visibleColumn | index of visible column |
Definition at line 30 of file qgsattributetableconfig.cpp.
bool QgsAttributeTableConfig::operator!= | ( | const QgsAttributeTableConfig & | other | ) | const |
Compare this configuration to other.
Definition at line 228 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::readXml | ( | const QDomNode & | node | ) |
Deserialize to XML on layer load.
Definition at line 133 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setActionWidgetStyle | ( | ActionWidgetStyle | actionWidgetStyle | ) |
Set the style of the action widget.
Definition at line 127 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setActionWidgetVisible | ( | bool | visible | ) |
Set if the action widget is visible.
Definition at line 111 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setColumnHidden | ( | int | column, |
bool | hidden | ||
) |
Sets whether the specified column should be hidden.
column | column index |
hidden | set to true to hide column |
Definition at line 223 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setColumns | ( | const QVector< QgsAttributeTableConfig::ColumnConfig > & | columns | ) |
Set the list of columns visible in the attribute table.
The list order defines the order of appearance.
Definition at line 45 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setColumnWidth | ( | int | column, |
int | width | ||
) |
Sets the width of a column.
column | column index |
width | column width in pixels, or -1 if column should use default width |
Definition at line 213 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setSortExpression | ( | const QString & | sortExpression | ) |
Set the sort expression used for sorting.
Definition at line 203 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::setSortOrder | ( | Qt::SortOrder | sortOrder | ) |
QString QgsAttributeTableConfig::sortExpression | ( | ) | const |
Gets the expression used for sorting.
Definition at line 198 of file qgsattributetableconfig.cpp.
Qt::SortOrder QgsAttributeTableConfig::sortOrder | ( | ) | const |
void QgsAttributeTableConfig::update | ( | const QgsFields & | fields | ) |
Update the configuration with the given fields.
Any field which is present in the configuration but not present in the parameter fields will be removed. Any field which is in the parameter fields but not in the configuration will be appended.
Definition at line 50 of file qgsattributetableconfig.cpp.
void QgsAttributeTableConfig::writeXml | ( | QDomNode & | node | ) | const |
Serialize to XML on layer save.
Definition at line 249 of file qgsattributetableconfig.cpp.