29#include "moc_qgslayouttablebackgroundcolorsdialog.cpp"
32 : QDialog( parent, flags )
38 connect( buttonBox, &QDialogButtonBox::accepted,
this, &QgsLayoutTableBackgroundColorsDialog::buttonBox_accepted );
39 connect( buttonBox, &QDialogButtonBox::rejected,
this, &QgsLayoutTableBackgroundColorsDialog::buttonBox_rejected );
40 connect( buttonBox, &QDialogButtonBox::helpRequested,
this, &QgsLayoutTableBackgroundColorsDialog::showHelp );
62 connect( buttonBox->button( QDialogButtonBox::Apply ), &QAbstractButton::clicked,
this, &QgsLayoutTableBackgroundColorsDialog::apply );
64 setGuiElementValues();
67void QgsLayoutTableBackgroundColorsDialog::apply()
73 for (
auto checkBoxIt = mCheckBoxMap.constBegin(); checkBoxIt != mCheckBoxMap.constEnd(); ++checkBoxIt )
76 style.
enabled = checkBoxIt.value()->isChecked();
77 if (
QgsColorButton *button = mColorButtonMap.value( checkBoxIt.key() ) )
83 mTable->setBackgroundColor( mDefaultColorButton->color() );
88void QgsLayoutTableBackgroundColorsDialog::buttonBox_accepted()
94void QgsLayoutTableBackgroundColorsDialog::buttonBox_rejected()
99void QgsLayoutTableBackgroundColorsDialog::showHelp()
101 QgsHelp::openHelp( QStringLiteral(
"print_composer/composer_items/composer_attribute_table.html#appearance" ) );
104void QgsLayoutTableBackgroundColorsDialog::setGuiElementValues()
109 for (
auto it = mCheckBoxMap.constBegin(); it != mCheckBoxMap.constEnd(); ++it )
111 it.value()->setChecked( mTable->cellStyle( it.key() )->enabled );
112 QgsColorButton *button = mColorButtonMap.value( it.key() );
115 button->setEnabled( mTable->cellStyle( it.key() )->enabled );
116 button->
setColor( mTable->cellStyle( it.key() )->cellBackgroundColor );
121 mDefaultColorButton->setColor( mTable->backgroundColor() );
122 mDefaultColorButton->setAllowOpacity(
true );
123 mDefaultColorButton->setColorDialogTitle( tr(
"Select Background Color" ) );
124 mDefaultColorButton->setShowNoColor(
true );
125 mDefaultColorButton->setNoColorString( tr(
"No Background" ) );
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.
void beginCommand(const QString &commandText, UndoCommand command=UndoNone)
Starts new undo command for this item.
@ UndoTableCellStyle
Table cell style.
QgsLayoutTableBackgroundColorsDialog(QgsLayoutTable *table, QWidget *parent=nullptr, Qt::WindowFlags flags=Qt::WindowFlags())
Constructor for QgsLayoutTableBackgroundColorsDialog.
Styling option for a layout table cell.
QColor cellBackgroundColor
Cell background color.
bool enabled
Whether the styling option is enabled.
Displays a table in the print layout, and allows the table to span over multiple frames.
@ FirstRow
Style first row only.
@ EvenColumns
Style even numbered columns.
@ EvenRows
Style even numbered rows.
@ HeaderRow
Style header row.
@ OddColumns
Style odd numbered columns.
@ FirstColumn
Style first column only.
@ LastColumn
Style last column only.
@ LastRow
Style last row only.
@ OddRows
Style odd numbered rows.
void setCellStyle(CellStyleGroup group, const QgsLayoutTableStyle &style)
Sets the cell style for a cell group.