30#include <QDialogButtonBox>
35#include <QSortFilterProxyModel>
39#include "moc_qgslayoutattributeselectiondialog.cpp"
41using namespace Qt::StringLiterals;
46 : QAbstractTableModel(
parent )
52 if ( !hasIndex( row, column,
parent ) )
57 return createIndex( row, column );
85 if ( !
index.isValid() || ( role != Qt::DisplayRole && role != Qt::EditRole && role != Qt::UserRole ) )
107 if ( role == Qt::DisplayRole )
111 case Qt::AlignHCenter:
115 return tr(
"Top center" );
116 case Qt::AlignBottom:
117 return tr(
"Bottom center" );
119 return tr(
"Middle center" );
125 return tr(
"Top right" );
126 case Qt::AlignBottom:
127 return tr(
"Bottom right" );
129 return tr(
"Middle right" );
136 return tr(
"Top left" );
137 case Qt::AlignBottom:
138 return tr(
"Bottom left" );
140 return tr(
"Middle left" );
152 if ( role == Qt::DisplayRole )
154 return column.
width() <= 0 ? tr(
"Automatic" ) : tr(
"%L1 mm" ).arg( column.
width(), 0,
'f', 2 );
159 return column.
width();
163 if ( role == Qt::DisplayRole )
167 case Qt::DescendingOrder:
168 return tr(
"Descending" );
169 case Qt::AscendingOrder:
171 return tr(
"Ascending" );
191 if ( role == Qt::DisplayRole )
193 if ( orientation == Qt::Vertical )
195 return QVariant( section );
203 return QVariant( tr(
"Attribute" ) );
206 return QVariant( tr(
"Heading" ) );
209 return QVariant( tr(
"Alignment" ) );
212 return QVariant( tr(
"Width" ) );
215 return QVariant( tr(
"Sort Order" ) );
225 if ( !
index.isValid() || role != Qt::EditRole || !
mTable )
244 emit dataChanged( createIndex(
index.row(), 1 ), createIndex(
index.row(), 1 ) );
256 colToUpdate.
setHAlignment( Qt::AlignmentFlag( value.toInt() & Qt::AlignHorizontal_Mask ) );
257 colToUpdate.
setVAlignment( Qt::AlignmentFlag( value.toInt() & Qt::AlignVertical_Mask ) );
262 colToUpdate.
setWidth( value.toDouble() );
267 colToUpdate.
setSortOrder(
static_cast<Qt::SortOrder
>( value.toInt() ) );
277 Qt::ItemFlags
flags = QAbstractTableModel::flags(
index );
279 if (
index.isValid() )
281 return flags | Qt::ItemIsEditable;
293 const int maxRow = std::min<int>( row + count - 1,
columns().length() - 1 );
294 beginRemoveRows( QModelIndex(), row, maxRow );
296 for (
int i = maxRow; i >= row; --i )
307 beginInsertRows( QModelIndex(), row, row + count - 1 );
309 for (
int i = row; i < row + count; ++i )
326 const int swapWithRow = direction ==
ShiftUp ? row - 1 : row + 1;
329 beginRemoveRows( QModelIndex(), swapWithRow, swapWithRow );
334 beginInsertRows( QModelIndex(), row, row );
360 return mTable->sortColumns();
366 : QItemDelegate( parent )
375 QComboBox *comboBox =
new QComboBox( parent );
377 comboBox->addItem( tr(
"Top Left" ),
int( Qt::AlignTop | Qt::AlignLeft ) );
378 comboBox->addItem( tr(
"Top Center" ),
int( Qt::AlignTop | Qt::AlignHCenter ) );
379 comboBox->addItem( tr(
"Top Right" ),
int( Qt::AlignTop | Qt::AlignRight ) );
380 comboBox->addItem( tr(
"Middle Left" ),
int( Qt::AlignVCenter | Qt::AlignLeft ) );
381 comboBox->addItem( tr(
"Middle Center" ),
int( Qt::AlignVCenter | Qt::AlignHCenter ) );
382 comboBox->addItem( tr(
"Middle Right" ),
int( Qt::AlignVCenter | Qt::AlignRight ) );
383 comboBox->addItem( tr(
"Bottom Left" ),
int( Qt::AlignBottom | Qt::AlignLeft ) );
384 comboBox->addItem( tr(
"Bottom Center" ),
int( Qt::AlignBottom | Qt::AlignHCenter ) );
385 comboBox->addItem( tr(
"Bottom Right" ),
int( Qt::AlignBottom | Qt::AlignRight ) );
387 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag ) index.model()->data( index, Qt::EditRole ).toInt();
388 comboBox->setCurrentIndex( comboBox->findData( alignment ) );
395 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag ) index.model()->data( index, Qt::EditRole ).toInt();
398 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
399 comboBox->setCurrentIndex( comboBox->findData( alignment ) );
404 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
405 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag ) comboBox->currentData().toInt();
406 model->setData( index, alignment, Qt::EditRole );
412 editor->setGeometry( option.rect );
419 : QItemDelegate( parent )
420 , mVectorLayer( vlayer )
421 , mLayoutObject( layoutObject )
422 , mForceExpressions( forceExpressions )
427 if ( !mLayoutObject )
432 QgsExpressionContext expContext = mLayoutObject->createExpressionContext();
433 expContext.
lastScope()->
addVariable( QgsExpressionContextScope::StaticVariable( u
"row_number"_s, 1,
true ) );
444 fieldExpression->
setLayer( mVectorLayer );
451 return fieldExpression;
456 const QString field = index.model()->data( index, Qt::EditRole ).toString();
468 model->setData( index, field, Qt::EditRole );
474 editor->setGeometry( option.rect );
477void QgsLayoutColumnSourceDelegate::commitAndCloseEditor()
480 emit commitData( fieldExpression );
487 : QItemDelegate( parent )
495 QComboBox *comboBox =
new QComboBox( parent );
496 QStringList sortOrders;
497 sortOrders << tr(
"Ascending" ) << tr(
"Descending" );
498 comboBox->addItems( sortOrders );
504 const Qt::SortOrder order = ( Qt::SortOrder ) index.model()->data( index, Qt::EditRole ).toInt();
507 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
510 case Qt::DescendingOrder:
511 comboBox->setCurrentIndex( 1 );
513 case Qt::AscendingOrder:
515 comboBox->setCurrentIndex( 0 );
522 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
523 const int value = comboBox->currentIndex();
528 order = Qt::DescendingOrder;
532 order = Qt::AscendingOrder;
536 model->setData( index, order, Qt::EditRole );
542 editor->setGeometry( option.rect );
551 : QItemDelegate( parent )
559 editor->setMinimum( 0 );
560 editor->setMaximum( 1000 );
561 editor->setDecimals( 2 );
562 editor->setSuffix( tr(
" mm" ) );
570 const int value = index.model()->data( index, Qt::EditRole ).toInt();
573 spinBox->setValue( value );
579 spinBox->interpretText();
580 const int value = spinBox->value();
582 model->setData( index, value, Qt::EditRole );
588 editor->setGeometry( option.rect );
595 : QDialog( parent, f )
602 connect( mRemoveColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mRemoveColumnPushButton_clicked );
603 connect( mAddColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mAddColumnPushButton_clicked );
604 connect( mColumnUpPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mColumnUpPushButton_clicked );
605 connect( mColumnDownPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mColumnDownPushButton_clicked );
606 connect( mResetColumnsPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mResetColumnsPushButton_clicked );
607 connect( mClearColumnsPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mClearColumnsPushButton_clicked );
608 connect( mAddSortColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mAddSortColumnPushButton_clicked );
609 connect( mRemoveSortColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mRemoveSortColumnPushButton_clicked );
610 connect( mSortColumnUpPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked );
611 connect( mSortColumnDownPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked );
612 connect( buttonBox, &QDialogButtonBox::helpRequested,
this, &QgsLayoutAttributeSelectionDialog::showHelp );
618 mColumnsTableView->setModel( mColumnModel );
619 mColumnsTableView->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
621 mColumnsTableView->setItemDelegateForColumn( 0, mColumnSourceDelegate );
623 mColumnsTableView->setItemDelegateForColumn( 2, mColumnAlignmentDelegate );
625 mColumnsTableView->setItemDelegateForColumn( 3, mColumnWidthDelegate );
628 mSortColumnTableView->setModel( mSortColumnModel );
629 mSortColumnTableView->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
631 mSortColumnTableView->setItemDelegateForColumn( 0, mSortColumnSourceDelegate );
633 mSortColumnTableView->setItemDelegateForColumn( 1, mSortColumnOrderDelegate );
637void QgsLayoutAttributeSelectionDialog::mRemoveColumnPushButton_clicked()
640 const QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
641 const int count = indexes.count();
643 for (
int i = count; i > 0; --i )
644 mColumnModel->removeRow( indexes.at( i - 1 ).row(), QModelIndex() );
647void QgsLayoutAttributeSelectionDialog::mAddColumnPushButton_clicked()
650 mColumnModel->insertRow( mColumnModel->rowCount() );
653void QgsLayoutAttributeSelectionDialog::mColumnUpPushButton_clicked()
657 QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
658 const int count = indexes.count();
660 std::reverse( indexes.begin(), indexes.end() );
661 for (
int i = count; i > 0; --i )
665void QgsLayoutAttributeSelectionDialog::mColumnDownPushButton_clicked()
668 const QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
669 const int count = indexes.count();
671 for (
int i = count; i > 0; --i )
675void QgsLayoutAttributeSelectionDialog::mResetColumnsPushButton_clicked()
678 mColumnModel->resetToLayer();
681void QgsLayoutAttributeSelectionDialog::mClearColumnsPushButton_clicked()
684 mColumnModel->removeRows( 0, mColumnModel->rowCount() );
687void QgsLayoutAttributeSelectionDialog::mAddSortColumnPushButton_clicked()
690 mSortColumnModel->insertRow( mSortColumnModel->rowCount() );
693void QgsLayoutAttributeSelectionDialog::mRemoveSortColumnPushButton_clicked()
696 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
697 const int count = indexes.count();
699 for (
int i = count; i > 0; --i )
700 mSortColumnModel->removeRow( indexes.at( i - 1 ).row(), QModelIndex() );
703void QgsLayoutAttributeSelectionDialog::showHelp()
705 QgsHelp::openHelp( u
"print_composer/composer_items/composer_attribute_table.html"_s );
708void QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked()
711 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
712 const int count = indexes.count();
714 for (
int i = count; i > 0; --i )
718void QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked()
721 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
722 const int count = indexes.count();
724 for (
int i = count; i > 0; --i )
The QgsSpinBox is a spin box with a clear button that will set the value to the defined clear value.
void setSpecialValueText(const QString &txt)
Set the special-value text to be txt If set, the spin box will display this text instead of a numeric...
void setShowClearButton(bool showClearButton)
Sets whether the widget will show a clear button.
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * lastScope()
Returns the last scope added to the context.
void setHighlightedVariables(const QStringList &variableNames)
Sets the list of variable names within the context intended to be highlighted to the user.
static void enableAutoGeometryRestore(QWidget *widget, const QString &key=QString())
Register the widget to allow its position to be automatically saved and restored when open and closed...
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
QgsLayoutAttributeSelectionDialog(QgsLayoutItemAttributeTable *table, QgsVectorLayer *vLayer, QWidget *parent=nullptr, Qt::WindowFlags f=Qt::WindowFlags())
constructor
QModelIndex index(int row, int column, const QModelIndex &parent) const override
Column
Available columns for the configuration table to be used by the model.
@ SortOrder
Defines the sort order.
@ Width
Defines the width of the column.
@ Heading
Defines the title of the column.
@ Attribute
Attribute for a field or an expression.
@ Alignment
Defines the alignment of the column.
bool removeRows(int row, int count, const QModelIndex &parent=QModelIndex()) override
bool moveRow(int row, ShiftDirection direction)
Moves the specified row up or down in the model.
QVariant headerData(int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const override
virtual QVector< QgsLayoutTableColumn > & columns() const =0
To be reimplemented to provide the display or the sort columns.
QVariant data(const QModelIndex &index, int role) const override
QgsLayoutAttributeTableColumnModelBase(QgsLayoutItemAttributeTable *table, QObject *parent=nullptr)
Constructor for QgsLayoutAttributeTableColumnModel.
int columnCount(const QModelIndex &parent=QModelIndex()) const override
virtual QList< Column > displayedColumns() const =0
To be reimplemented to choose which column should be used by the model.
QgsLayoutItemAttributeTable * mTable
int rowCount(const QModelIndex &parent=QModelIndex()) const override
Qt::ItemFlags flags(const QModelIndex &index) const override
QModelIndex parent(const QModelIndex &child) const override
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) override
ShiftDirection
Controls whether a row/column is shifted up or down.
@ ShiftUp
Shift the row/column up.
@ ShiftDown
Shift the row/column down.
bool insertRows(int row, int count, const QModelIndex &parent=QModelIndex()) override
A model for displaying columns shown in a QgsLayoutAttributeTable.
QVector< QgsLayoutTableColumn > & columns() const override
To be reimplemented to provide the display or the sort columns.
void resetToLayer()
Resets the attribute table's columns to match the source layer's fields.
A delegate for showing column alignment as a combo box.
void setEditorData(QWidget *editor, const QModelIndex &index) const override
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override
QgsLayoutColumnAlignmentDelegate(QObject *parent=nullptr)
constructor
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override
A delegate for showing column sort order as a combo box.
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override
void setEditorData(QWidget *editor, const QModelIndex &index) const override
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
QgsLayoutColumnSortOrderDelegate(QObject *parent=nullptr)
constructor
A delegate for showing column attribute source as a QgsFieldExpressionWidget.
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override
QgsLayoutColumnSourceDelegate(QgsVectorLayer *vlayer, QObject *parent=nullptr, const QgsLayoutObject *layoutObject=nullptr, bool forceExpressions=false)
Constructor for QgsLayoutColumnSourceDelegate.
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override
void setEditorData(QWidget *editor, const QModelIndex &index) const override
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
A delegate for showing column width as a spin box.
void setEditorData(QWidget *editor, const QModelIndex &index) const override
QgsLayoutColumnWidthDelegate(QObject *parent=nullptr)
constructor
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override
A layout table subclass that displays attributes from a vector layer.
A base class for objects which belong to a layout.
Stores properties of a column for a QgsLayoutTable.
QString attribute() const
Returns the attribute name or expression used for the column's values.
void setVAlignment(Qt::AlignmentFlag alignment)
Sets the vertical alignment for a column, which controls the alignment used for drawing column values...
double width() const
Returns the width for the column in mm, or 0 if column width is automatically calculated.
Qt::AlignmentFlag vAlignment() const
Returns the vertical alignment for a column, which controls the alignment used for drawing column val...
QString heading() const
Returns the heading for a column, which is the value displayed in the column's header cell.
void setSortOrder(Qt::SortOrder order)
Sets the sort order for the column.
void setAttribute(const QString &attribute)
Sets the attribute name or expression used for the column's values.
Qt::SortOrder sortOrder() const
Returns the sort order for the column.
void setHAlignment(Qt::AlignmentFlag alignment)
Sets the horizontal alignment for a column, which controls the alignment used for drawing column valu...
void setHeading(const QString &heading)
Sets the heading for a column, which is the value displayed in the column's header cell.
Qt::AlignmentFlag hAlignment() const
Returns the horizontal alignment for a column, which controls the alignment used for drawing column v...
void setWidth(const double width)
Sets the width for a column in mm.
Allows for filtering QgsComposerAttributeTable columns by columns which are sorted or unsorted.
QVector< QgsLayoutTableColumn > & columns() const override
To be reimplemented to provide the display or the sort columns.
Represents a vector layer which manages a vector based dataset.