19#include "moc_qgslayoutattributeselectiondialog.cpp"
30#include <QDialogButtonBox>
36#include <QSortFilterProxyModel>
43 : QAbstractTableModel( parent )
50 if ( !hasIndex( row, column,
parent ) )
55 return createIndex( row, column );
83 if ( !
index.isValid() ||
84 ( role != Qt::DisplayRole && role != Qt::EditRole && role != Qt::UserRole ) )
106 if ( role == Qt::DisplayRole )
110 case Qt::AlignHCenter:
114 return tr(
"Top center" );
115 case Qt::AlignBottom:
116 return tr(
"Bottom center" );
118 return tr(
"Middle center" );
124 return tr(
"Top right" );
125 case Qt::AlignBottom:
126 return tr(
"Bottom right" );
128 return tr(
"Middle right" );
135 return tr(
"Top left" );
136 case Qt::AlignBottom:
137 return tr(
"Bottom left" );
139 return tr(
"Middle left" );
151 if ( role == Qt::DisplayRole )
153 return column.
width() <= 0 ? tr(
"Automatic" ) : tr(
"%L1 mm" ).arg( column.
width(), 0,
'f', 2 );
158 return column.
width();
162 if ( role == Qt::DisplayRole )
166 case Qt::DescendingOrder:
167 return tr(
"Descending" );
168 case Qt::AscendingOrder:
170 return tr(
"Ascending" );
190 if ( role == Qt::DisplayRole )
192 if ( orientation == Qt::Vertical )
194 return QVariant( section );
202 return QVariant( tr(
"Attribute" ) );
205 return QVariant( tr(
"Heading" ) );
208 return QVariant( tr(
"Alignment" ) );
211 return QVariant( tr(
"Width" ) );
214 return QVariant( tr(
"Sort Order" ) );
224 if ( !
index.isValid() || role != Qt::EditRole || !
mTable )
243 emit dataChanged( createIndex(
index.row(), 1 ), createIndex(
index.row(), 1 ) );
255 colToUpdate.
setHAlignment( Qt::AlignmentFlag( value.toInt() & Qt::AlignHorizontal_Mask ) );
256 colToUpdate.
setVAlignment( Qt::AlignmentFlag( value.toInt() & Qt::AlignVertical_Mask ) );
261 colToUpdate.
setWidth( value.toDouble() );
266 colToUpdate.
setSortOrder(
static_cast< Qt::SortOrder
>( value.toInt() ) );
276 Qt::ItemFlags
flags = QAbstractTableModel::flags(
index );
278 if (
index.isValid() )
280 return flags | Qt::ItemIsEditable;
292 const int maxRow = std::min< int >( row + count - 1,
columns().length() - 1 );
293 beginRemoveRows( QModelIndex(), row, maxRow );
295 for (
int i = maxRow; i >= row; --i )
306 beginInsertRows( QModelIndex(), row, row + count - 1 );
308 for (
int i = row; i < row + count; ++i )
318 if ( ( direction ==
ShiftUp && row <= 0 ) ||
326 const int swapWithRow = direction ==
ShiftUp ? row - 1 : row + 1;
329 beginRemoveRows( QModelIndex(), swapWithRow, swapWithRow );
334 beginInsertRows( QModelIndex(), row, row );
376 QComboBox *comboBox =
new QComboBox( parent );
378 comboBox->addItem( tr(
"Top Left" ),
int( Qt::AlignTop | Qt::AlignLeft ) );
379 comboBox->addItem( tr(
"Top Center" ),
int( Qt::AlignTop | Qt::AlignHCenter ) );
380 comboBox->addItem( tr(
"Top Right" ),
int( Qt::AlignTop | Qt::AlignRight ) );
381 comboBox->addItem( tr(
"Middle Left" ),
int( Qt::AlignVCenter | Qt::AlignLeft ) );
382 comboBox->addItem( tr(
"Middle Center" ),
int( Qt::AlignVCenter | Qt::AlignHCenter ) );
383 comboBox->addItem( tr(
"Middle Right" ),
int( Qt::AlignVCenter | Qt::AlignRight ) );
384 comboBox->addItem( tr(
"Bottom Left" ),
int( Qt::AlignBottom | Qt::AlignLeft ) );
385 comboBox->addItem( tr(
"Bottom Center" ),
int( Qt::AlignBottom | Qt::AlignHCenter ) );
386 comboBox->addItem( tr(
"Bottom Right" ),
int( Qt::AlignBottom | Qt::AlignRight ) );
388 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag )index.model()->data( index, Qt::EditRole ).toInt();
389 comboBox->setCurrentIndex( comboBox->findData( alignment ) );
396 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag )index.model()->data( index, Qt::EditRole ).toInt();
399 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
400 comboBox->setCurrentIndex( comboBox->findData( alignment ) );
405 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
406 const Qt::AlignmentFlag alignment = ( Qt::AlignmentFlag ) comboBox->currentData().toInt();
407 model->setData( index, alignment, Qt::EditRole );
413 editor->setGeometry( option.rect );
420 : QItemDelegate( parent )
421 , mVectorLayer( vlayer )
422 , mLayoutObject( layoutObject )
423 , mForceExpressions( forceExpressions )
430 if ( !mLayoutObject )
447 fieldExpression->
setLayer( mVectorLayer );
452 return fieldExpression;
457 const QString field = index.model()->data( index, Qt::EditRole ).toString();
469 model->setData( index, field, Qt::EditRole );
475 editor->setGeometry( option.rect );
478void QgsLayoutColumnSourceDelegate::commitAndCloseEditor()
481 emit commitData( fieldExpression );
497 QComboBox *comboBox =
new QComboBox( parent );
498 QStringList sortOrders;
499 sortOrders << tr(
"Ascending" ) << tr(
"Descending" );
500 comboBox->addItems( sortOrders );
506 const Qt::SortOrder order = ( Qt::SortOrder )index.model()->data( index, Qt::EditRole ).toInt();
509 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
512 case Qt::DescendingOrder:
513 comboBox->setCurrentIndex( 1 );
515 case Qt::AscendingOrder:
517 comboBox->setCurrentIndex( 0 );
524 QComboBox *comboBox =
static_cast<QComboBox *
>( editor );
525 const int value = comboBox->currentIndex();
530 order = Qt::DescendingOrder;
534 order = Qt::AscendingOrder;
538 model->setData( index, order, Qt::EditRole );
544 editor->setGeometry( option.rect );
553 : QItemDelegate( parent )
563 editor->setMinimum( 0 );
564 editor->setMaximum( 1000 );
565 editor->setDecimals( 2 );
566 editor->setSuffix( tr(
" mm" ) );
574 const int value = index.model()->data( index, Qt::EditRole ).toInt();
577 spinBox->setValue( value );
583 spinBox->interpretText();
584 const int value = spinBox->value();
586 model->setData( index, value, Qt::EditRole );
592 editor->setGeometry( option.rect );
599 QWidget *parent, Qt::WindowFlags f )
600 : QDialog( parent, f )
607 connect( mRemoveColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mRemoveColumnPushButton_clicked );
608 connect( mAddColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mAddColumnPushButton_clicked );
609 connect( mColumnUpPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mColumnUpPushButton_clicked );
610 connect( mColumnDownPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mColumnDownPushButton_clicked );
611 connect( mResetColumnsPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mResetColumnsPushButton_clicked );
612 connect( mClearColumnsPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mClearColumnsPushButton_clicked );
613 connect( mAddSortColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mAddSortColumnPushButton_clicked );
614 connect( mRemoveSortColumnPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mRemoveSortColumnPushButton_clicked );
615 connect( mSortColumnUpPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked );
616 connect( mSortColumnDownPushButton, &QPushButton::clicked,
this, &QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked );
617 connect( buttonBox, &QDialogButtonBox::helpRequested,
this, &QgsLayoutAttributeSelectionDialog::showHelp );
623 mColumnsTableView->setModel( mColumnModel );
624 mColumnsTableView->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
626 mColumnsTableView->setItemDelegateForColumn( 0, mColumnSourceDelegate );
628 mColumnsTableView->setItemDelegateForColumn( 2, mColumnAlignmentDelegate );
630 mColumnsTableView->setItemDelegateForColumn( 3, mColumnWidthDelegate );
633 mSortColumnTableView->setModel( mSortColumnModel );
634 mSortColumnTableView->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
636 mSortColumnTableView->setItemDelegateForColumn( 0, mSortColumnSourceDelegate );
638 mSortColumnTableView->setItemDelegateForColumn( 1, mSortColumnOrderDelegate );
642void QgsLayoutAttributeSelectionDialog::mRemoveColumnPushButton_clicked()
645 const QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
646 const int count = indexes.count();
648 for (
int i = count; i > 0; --i )
649 mColumnModel->removeRow( indexes.at( i - 1 ).row(), QModelIndex() );
652void QgsLayoutAttributeSelectionDialog::mAddColumnPushButton_clicked()
655 mColumnModel->insertRow( mColumnModel->
rowCount() );
658void QgsLayoutAttributeSelectionDialog::mColumnUpPushButton_clicked()
662 QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
663 const int count = indexes.count();
665 std::reverse( indexes.begin(), indexes.end() );
666 for (
int i = count; i > 0; --i )
670void QgsLayoutAttributeSelectionDialog::mColumnDownPushButton_clicked()
673 const QModelIndexList indexes = mColumnsTableView->selectionModel()->selectedRows();
674 const int count = indexes.count();
676 for (
int i = count; i > 0; --i )
680void QgsLayoutAttributeSelectionDialog::mResetColumnsPushButton_clicked()
686void QgsLayoutAttributeSelectionDialog::mClearColumnsPushButton_clicked()
692void QgsLayoutAttributeSelectionDialog::mAddSortColumnPushButton_clicked()
695 mSortColumnModel->insertRow( mSortColumnModel->
rowCount() );
698void QgsLayoutAttributeSelectionDialog::mRemoveSortColumnPushButton_clicked()
701 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
702 const int count = indexes.count();
704 for (
int i = count; i > 0; --i )
705 mSortColumnModel->removeRow( indexes.at( i - 1 ).row(), QModelIndex() );
708void QgsLayoutAttributeSelectionDialog::showHelp()
710 QgsHelp::openHelp( QStringLiteral(
"print_composer/composer_items/composer_attribute_table.html" ) );
713void QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked()
716 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
717 const int count = indexes.count();
719 for (
int i = count; i > 0; --i )
723void QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked()
726 const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
727 const int count = indexes.count();
729 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.
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.
void resetColumns()
Resets the attribute table's columns to match the vector layer's fields.
A base class for objects which belong to a layout.
QgsExpressionContext createExpressionContext() const override
Creates an expression context relating to the objects' current state.
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.
QgsLayoutTableColumns & columns()
Returns a reference to the list of QgsLayoutTableColumns shown in the table.
QgsLayoutTableSortColumns & sortColumns()
Returns a reference to the list of QgsLayoutTableSortColumns shown in the table.
Represents a vector layer which manages a vector based data sets.
Single variable definition for use within a QgsExpressionContextScope.