80#include <QDesktopServices>
90#include <QColorDialog>
93#include <QRegularExpressionValidator>
108 , mMessageBar( messageBar )
110 , mOriginalSubsetSQL( lyr->subsetString() )
113 connect( pbnQueryBuilder, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnQueryBuilder_clicked );
114 connect( pbnIndex, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnIndex_clicked );
116 connect( pbnUpdateExtents, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnUpdateExtents_clicked );
117 connect( mButtonAddJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonAddJoin_clicked );
118 connect( mButtonEditJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonEditJoin_clicked );
119 connect( mJoinTreeWidget, &QTreeWidget::itemDoubleClicked,
this, &QgsVectorLayerProperties::mJoinTreeWidget_itemDoubleClicked );
120 connect( mButtonRemoveJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonRemoveJoin_clicked );
121 connect( mButtonAddWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonAddWmsDimension_clicked );
122 connect( mButtonEditWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonEditWmsDimension_clicked );
123 connect( mWmsDimensionsTreeWidget, &QTreeWidget::itemDoubleClicked,
this, &QgsVectorLayerProperties::mWmsDimensionsTreeWidget_itemDoubleClicked );
124 connect( mButtonRemoveWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonRemoveWmsDimension_clicked );
125 connect( mSimplifyDrawingGroupBox, &QGroupBox::toggled,
this, &QgsVectorLayerProperties::mSimplifyDrawingGroupBox_toggled );
126 connect( buttonRemoveMetadataUrl, &QPushButton::clicked,
this, &QgsVectorLayerProperties::removeSelectedMetadataUrl );
127 connect( buttonAddMetadataUrl, &QPushButton::clicked,
this, &QgsVectorLayerProperties::addMetadataUrl );
128 connect( buttonBox, &QDialogButtonBox::helpRequested,
this, &QgsVectorLayerProperties::showHelp );
135 mBtnStyle =
new QPushButton( tr(
"Style" ),
this );
136 QMenu *menuStyle =
new QMenu(
this );
137 mActionLoadStyle =
new QAction( tr(
"Load Style…" ),
this );
138 connect( mActionLoadStyle, &QAction::triggered,
this, &QgsVectorLayerProperties::loadStyle );
140 mActionSaveStyle =
new QAction( tr(
"Save Current Style…" ),
this );
141 connect( mActionSaveStyle, &QAction::triggered,
this, &QgsVectorLayerProperties::saveStyleAs );
143 mActionSaveMultipleStyles =
new QAction( tr(
"Save Multiple Styles…" ),
this );
144 connect( mActionSaveMultipleStyles, &QAction::triggered,
this, &QgsVectorLayerProperties::saveMultipleStylesAs );
146 mSourceGroupBox->hide();
148 mBtnStyle->setMenu( menuStyle );
149 connect( menuStyle, &QMenu::aboutToShow,
this, &QgsVectorLayerProperties::aboutToShowStyleMenu );
150 buttonBox->addButton( mBtnStyle, QDialogButtonBox::ResetRole );
152 mBtnMetadata =
new QPushButton( tr(
"Metadata" ),
this );
153 QMenu *menuMetadata =
new QMenu(
this );
154 mActionLoadMetadata = menuMetadata->addAction( tr(
"Load Metadata…" ),
this, &QgsVectorLayerProperties::loadMetadata );
155 mActionSaveMetadataAs = menuMetadata->addAction( tr(
"Save Metadata…" ),
this, &QgsVectorLayerProperties::saveMetadataAs );
156 menuMetadata->addSeparator();
157 menuMetadata->addAction( tr(
"Save as Default" ),
this, &QgsVectorLayerProperties::saveDefaultMetadata );
158 menuMetadata->addAction( tr(
"Restore Default" ),
this, &QgsVectorLayerProperties::loadDefaultMetadata );
159 mBtnMetadata->setMenu( menuMetadata );
160 buttonBox->addButton( mBtnMetadata, QDialogButtonBox::ResetRole );
164 connect( buttonBox->button( QDialogButtonBox::Apply ), &QAbstractButton::clicked,
this, &QgsVectorLayerProperties::apply );
165 connect(
this, &QDialog::accepted,
this, &QgsVectorLayerProperties::apply );
166 connect(
this, &QDialog::rejected,
this, &QgsVectorLayerProperties::onCancel );
174 mMapTipExpressionFieldWidget->setLayer( lyr );
175 mMapTipExpressionFieldWidget->registerExpressionContextGenerator(
this );
176 mDisplayExpressionWidget->setLayer( lyr );
177 mDisplayExpressionWidget->registerExpressionContextGenerator(
this );
179 connect( mInsertExpressionButton, &QAbstractButton::clicked,
this, &QgsVectorLayerProperties::insertFieldOrExpression );
184 QVBoxLayout *layout =
nullptr;
189 layout =
new QVBoxLayout( labelingFrame );
190 layout->setContentsMargins( 0, 0, 0, 0 );
192 labelingDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
194 layout->addWidget( labelingDialog );
195 labelingFrame->setLayout( layout );
198 layout =
new QVBoxLayout( mMaskingFrame );
199 layout->setContentsMargins( 0, 0, 0, 0 );
200 mMaskingWidget =
new QgsMaskingWidget( mMaskingFrame );
201 mMaskingWidget->setLayer( mLayer );
202 mMaskingWidget->layout()->setContentsMargins( 0, 0, 0, 0 );
203 layout->addWidget( mMaskingWidget );
204 mMaskingFrame->setLayout( layout );
208 labelingDialog =
nullptr;
209 mOptsPage_Labels->setEnabled(
false );
210 mOptsPage_Masks->setEnabled(
false );
211 mGeomGroupBox->setEnabled(
false );
212 mGeomGroupBox->setVisible(
false );
213 mCrsGroupBox->setEnabled(
false );
214 mCrsGroupBox->setVisible(
false );
218 QVBoxLayout *actionLayout =
new QVBoxLayout( actionOptionsFrame );
219 actionLayout->setContentsMargins( 0, 0, 0, 0 );
221 mActionDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
222 actionLayout->addWidget( mActionDialog );
225 mSourceFieldsPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
226 mSourceFieldsFrame->setLayout(
new QVBoxLayout( mSourceFieldsFrame ) );
227 mSourceFieldsFrame->layout()->setContentsMargins( 0, 0, 0, 0 );
228 mSourceFieldsFrame->layout()->addWidget( mSourceFieldsPropertiesDialog );
233 mAttributesFormPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
234 mAttributesFormFrame->setLayout(
new QVBoxLayout( mAttributesFormFrame ) );
235 mAttributesFormFrame->layout()->setContentsMargins( 0, 0, 0, 0 );
236 mAttributesFormFrame->layout()->addWidget( mAttributesFormPropertiesDialog );
239 QVBoxLayout *metadataLayout =
new QVBoxLayout( metadataFrame );
240 metadataLayout->setContentsMargins( 0, 0, 0, 0 );
242 mMetadataWidget->layout()->setContentsMargins( 0, 0, 0, 0 );
244 metadataLayout->addWidget( mMetadataWidget );
245 metadataFrame->setLayout( metadataLayout );
247 QVBoxLayout *temporalLayout =
new QVBoxLayout( temporalFrame );
248 temporalLayout->setContentsMargins( 0, 0, 0, 0 );
250 temporalLayout->addWidget( mTemporalWidget );
260 pbnIndex->setEnabled(
false );
264 pbnIndex->setEnabled(
false );
265 pbnIndex->setText( tr(
"Spatial Index Exists" ) );
272 int encindex = cboProviderEncoding->findText( enc );
275 cboProviderEncoding->insertItem( 0, enc );
278 cboProviderEncoding->setCurrentIndex( encindex );
280 else if ( mLayer->
providerType() == QLatin1String(
"ogr" ) )
285 cboProviderEncoding->setEnabled(
false );
290 mDataSourceEncodingFrame->hide();
294 mCrsSelector->setCrs( mLayer->
crs() );
297 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
300 addJoinToTreeWidget( join );
305 QVBoxLayout *diagLayout =
new QVBoxLayout( mDiagramFrame );
306 diagLayout->setContentsMargins( 0, 0, 0, 0 );
308 diagramPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
310 diagLayout->addWidget( diagramPropertiesDialog );
311 mDiagramFrame->setLayout( diagLayout );
314 mLegendWidget->setMapCanvas( mCanvas );
315 mLegendWidget->setLayer( mLayer );
316 mLegendConfigEmbeddedWidget->setLayer( mLayer );
319 mLayerShortNameLineEdit->setText( mLayer->
shortName() );
322 mLayerShortNameLineEdit->setValidator( shortNameValidator );
325 mLayerTitleLineEdit->setText( mLayer->
title() );
326 mLayerAbstractTextEdit->setPlainText( mLayer->
abstract() );
327 mLayerKeywordListLineEdit->setText( mLayer->
keywordList() );
328 mLayerDataUrlLineEdit->setText( mLayer->
dataUrl() );
329 mLayerDataUrlFormatComboBox->setCurrentIndex(
330 mLayerDataUrlFormatComboBox->findText(
335 mLayerAttributionLineEdit->setText( mLayer->
attribution() );
336 mLayerAttributionUrlLineEdit->setText( mLayer->
attributionUrl() );
339 tableViewMetadataUrl->setSelectionMode( QAbstractItemView::SingleSelection );
340 tableViewMetadataUrl->setSelectionBehavior( QAbstractItemView::SelectRows );
341 tableViewMetadataUrl->horizontalHeader()->setStretchLastSection(
true );
342 tableViewMetadataUrl->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
344 mMetadataUrlModel =
new QStandardItemModel( tableViewMetadataUrl );
345 mMetadataUrlModel->clear();
346 mMetadataUrlModel->setColumnCount( 3 );
347 QStringList metadataUrlHeaders;
348 metadataUrlHeaders << tr(
"URL" ) << tr(
"Type" ) << tr(
"Format" );
349 mMetadataUrlModel->setHorizontalHeaderLabels( metadataUrlHeaders );
350 tableViewMetadataUrl->setModel( mMetadataUrlModel );
351 tableViewMetadataUrl->setItemDelegate(
new MetadataUrlItemDelegate(
this ) );
356 const int row = mMetadataUrlModel->rowCount();
357 mMetadataUrlModel->setItem( row, 0,
new QStandardItem( metaUrl.url ) );
358 mMetadataUrlModel->setItem( row, 1,
new QStandardItem( metaUrl.type ) );
359 mMetadataUrlModel->setItem( row, 2,
new QStandardItem( metaUrl.format ) );
363 mLayerLegendUrlLineEdit->setText( mLayer->
legendUrl() );
364 mLayerLegendUrlFormatComboBox->setCurrentIndex(
365 mLayerLegendUrlFormatComboBox->findText(
372 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &wmsDims = serverProperties->
wmsDimensions();
375 addWmsDimensionInfoToTreeWidget( dim );
379 myStyle.append( QStringLiteral(
"body { margin: 10px; }\n " ) );
380 teMetadataViewer->clear();
381 teMetadataViewer->document()->setDefaultStyleSheet( myStyle );
382 teMetadataViewer->setHtml( htmlMetadata() );
383 teMetadataViewer->setOpenLinks(
false );
384 connect( teMetadataViewer, &QTextBrowser::anchorClicked,
this, &QgsVectorLayerProperties::urlClicked );
385 mMetadataFilled =
true;
390 if ( !settings.
contains( QStringLiteral(
"/Windows/VectorLayerProperties/tab" ) ) )
392 settings.
setValue( QStringLiteral(
"Windows/VectorLayerProperties/tab" ),
396 QString title = tr(
"Layer Properties — %1" ).arg( mLayer->
name() );
401 QList<QgsMapLayer *> dependencySources;
402 const QSet<QgsMapLayerDependency> constDependencies = mLayer->
dependencies();
407 dependencySources << layer;
413 connect(
QgsProject::instance(), &QObject::destroyed,
this, [ = ] {mLayersDependenciesTreeView->setModel(
nullptr );} );
414 mLayersDependenciesTreeView->setModel( mLayersDependenciesTreeModel );
416 connect( mRefreshLayerCheckBox, &QCheckBox::toggled, mRefreshLayerIntervalSpinBox, &QDoubleSpinBox::setEnabled );
419 QMenu *menu =
new QMenu(
this );
421 mAuxiliaryLayerActionNew =
new QAction( tr(
"Create" ),
this );
422 menu->addAction( mAuxiliaryLayerActionNew );
423 connect( mAuxiliaryLayerActionNew, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerNew );
425 mAuxiliaryLayerActionClear =
new QAction( tr(
"Clear" ),
this );
426 menu->addAction( mAuxiliaryLayerActionClear );
427 connect( mAuxiliaryLayerActionClear, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerClear );
429 mAuxiliaryLayerActionDelete =
new QAction( tr(
"Delete" ),
this );
430 menu->addAction( mAuxiliaryLayerActionDelete );
431 connect( mAuxiliaryLayerActionDelete, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerDelete );
433 mAuxiliaryLayerActionExport =
new QAction( tr(
"Export" ),
this );
434 menu->addAction( mAuxiliaryLayerActionExport );
437 mAuxiliaryStorageActions->setMenu( menu );
439 connect( mAuxiliaryStorageFieldsDeleteBtn, &QPushButton::clicked,
this, &QgsVectorLayerProperties::onAuxiliaryLayerDeleteField );
440 connect( mAuxiliaryStorageFieldsAddBtn, &QPushButton::clicked,
this, &QgsVectorLayerProperties::onAuxiliaryLayerAddField );
442 updateAuxiliaryStoragePage();
444 mOptsPage_Information->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#information-properties" ) );
445 mOptsPage_Source->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#source-properties" ) );
446 mOptsPage_Style->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#symbology-properties" ) );
447 mOptsPage_Labels->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#labels-properties" ) );
448 mOptsPage_Masks->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#masks-properties" ) );
449 mOptsPage_Diagrams->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#diagrams-properties" ) );
450 mOptsPage_SourceFields->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#fields-properties" ) );
451 mOptsPage_AttributesForm->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#attributes-form-properties" ) );
452 mOptsPage_Joins->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#joins-properties" ) );
453 mOptsPage_AuxiliaryStorage->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#auxiliary-storage-properties" ) );
454 mOptsPage_Actions->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#actions-properties" ) );
455 mOptsPage_Display->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#display-properties" ) );
456 mOptsPage_Rendering->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#rendering-properties" ) );
457 mOptsPage_Temporal->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#temporal-properties" ) );
458 mOptsPage_Variables->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#variables-properties" ) );
459 mOptsPage_Metadata->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#metadata-properties" ) );
460 mOptsPage_DataDependencies->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#dependencies-properties" ) ) ;
461 mOptsPage_Legend->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#legend-properties" ) );
462 mOptsPage_Server->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#qgis-server-properties" ) );
468void QgsVectorLayerProperties::toggleEditing()
473 emit toggleEditing( mLayer );
475 setPbnQueryBuilderEnabled();
489 mLayerPropertiesPages << page;
492 if ( beforePage.isEmpty() )
499void QgsVectorLayerProperties::insertFieldOrExpression()
503 QString expression = QStringLiteral(
"[% " );
504 expression += mMapTipExpressionFieldWidget->asExpression();
505 expression += QLatin1String(
" %]" );
507 mMapTipWidget->insertText( expression );
510void QgsVectorLayerProperties::addMetadataUrl()
512 const int row = mMetadataUrlModel->rowCount();
513 mMetadataUrlModel->setItem( row, 0,
new QStandardItem( QLatin1String() ) );
514 mMetadataUrlModel->setItem( row, 1,
new QStandardItem( QLatin1String() ) );
515 mMetadataUrlModel->setItem( row, 2,
new QStandardItem( QLatin1String() ) );
518void QgsVectorLayerProperties::removeSelectedMetadataUrl()
520 const QModelIndexList selectedRows = tableViewMetadataUrl->selectionModel()->selectedRows();
521 if ( selectedRows.empty() )
523 mMetadataUrlModel->removeRow( selectedRows[0].row() );
527void QgsVectorLayerProperties::syncToLayer()
529 if ( !mSourceWidget )
534 QHBoxLayout *layout =
new QHBoxLayout();
535 layout->addWidget( mSourceWidget );
536 mSourceGroupBox->setLayout( layout );
537 mSourceGroupBox->show();
541 buttonBox->button( QDialogButtonBox::Apply )->setEnabled( isValid );
542 buttonBox->button( QDialogButtonBox::Ok )->setEnabled( isValid );
551 mLayerOrigNameLineEdit->setText( mLayer->
name() );
552 mBackupCrs = mLayer->
crs();
554 mSubsetGroupBox->setEnabled(
true );
561 txtSubsetSQL->setReadOnly(
true );
562 txtSubsetSQL->setCaretWidth( 0 );
563 txtSubsetSQL->setCaretLineVisible(
false );
564 setPbnQueryBuilderEnabled();
572 mScaleRangeWidget->setMapCanvas( mCanvas );
575 mReferenceScaleWidget->setShowCurrentScaleButton(
true );
576 mReferenceScaleWidget->setMapCanvas( mCanvas );
577 if ( mUseReferenceScaleGroupBox->isChecked() )
580 mReferenceScaleWidget->setScale( mCanvas->
scale() );
585 mSimplifyDrawingSpinBox->setValue( simplifyMethod.
threshold() );
586 mSimplifyDrawingSpinBox->setClearValue( 1.0 );
588 QString remark = QStringLiteral(
" (%1)" ).arg( tr(
"Not supported" ) );
592 mSimplifyDrawingAtProvider->setChecked(
false );
593 mSimplifyDrawingAtProvider->setEnabled(
false );
594 if ( !mSimplifyDrawingAtProvider->text().endsWith( remark ) )
595 mSimplifyDrawingAtProvider->setText( mSimplifyDrawingAtProvider->text().append( remark ) );
600 mSimplifyDrawingAtProvider->setEnabled( mSimplifyDrawingGroupBox->isChecked() );
601 if ( mSimplifyDrawingAtProvider->text().endsWith( remark ) )
603 QString newText = mSimplifyDrawingAtProvider->text();
604 newText.chop( remark.size() );
605 mSimplifyDrawingAtProvider->setText( newText );
612 mSimplifyDrawingGroupBox->setChecked(
false );
613 mSimplifyDrawingGroupBox->setEnabled(
false );
620 mSimplifyAlgorithmComboBox->setCurrentIndex( mSimplifyAlgorithmComboBox->findData( simplifyMethod.
simplifyAlgorithm() ) );
623 myScalesList.append( QStringLiteral(
"1:1" ) );
624 mSimplifyMaximumScaleComboBox->updateScales( myScalesList );
625 mSimplifyMaximumScaleComboBox->setScale( simplifyMethod.
maximumScale() );
639 updateSymbologyPage();
643 if ( labelingDialog )
646 mSourceFieldsPropertiesDialog->
init();
647 mAttributesFormPropertiesDialog->
init();
650 updateVariableEditor();
652 if ( diagramPropertiesDialog )
656 const auto constMLayerPropertiesPages = mLayerPropertiesPages;
659 page->syncToLayer( mLayer );
666 mLegendWidget->setLayer( mLayer );
670void QgsVectorLayerProperties::apply()
674 const QString newSource = mSourceWidget->
sourceUri();
675 if ( newSource != mLayer->
source() )
682 if ( labelingDialog )
686 mBackupCrs = mLayer->
crs();
688 mLegendWidget->applyToLayer();
689 mLegendConfigEmbeddedWidget->applyToLayer();
693 mMetadataFilled =
false;
696 if ( mMaskingWidget && mMaskingWidget->hasBeenPopulated() )
697 mMaskingWidget->apply();
702 mSubsetGroupBox->setEnabled(
true );
708 mMetadataFilled =
false;
730 const auto constActions = mActionDialog->
actions();
731 for (
const QgsAction &action : constActions )
738 QVector<QgsAttributeTableConfig::ColumnConfig> columns = attributeTableConfig.
columns();
740 for (
int i = 0; i < columns.size(); ++i )
752 mLayer->
setName( mLayerOrigNameLineEdit->text() );
754 mAttributesFormPropertiesDialog->
apply();
755 mSourceFieldsPropertiesDialog->
apply();
767 diagramPropertiesDialog->
apply();
770 const auto constMLayerPropertiesPages = mLayerPropertiesPages;
777 if ( mLayer->
shortName() != mLayerShortNameLineEdit->text() )
778 mMetadataFilled =
false;
779 mLayer->
setShortName( mLayerShortNameLineEdit->text() );
781 if ( mLayer->
title() != mLayerTitleLineEdit->text() )
782 mMetadataFilled =
false;
783 mLayer->
setTitle( mLayerTitleLineEdit->text() );
785 if ( mLayer->
abstract() != mLayerAbstractTextEdit->toPlainText() )
786 mMetadataFilled =
false;
787 mLayer->
setAbstract( mLayerAbstractTextEdit->toPlainText() );
789 if ( mLayer->
keywordList() != mLayerKeywordListLineEdit->text() )
790 mMetadataFilled =
false;
793 if ( mLayer->
dataUrl() != mLayerDataUrlLineEdit->text() )
794 mMetadataFilled =
false;
795 mLayer->
setDataUrl( mLayerDataUrlLineEdit->text() );
797 if ( mLayer->
dataUrlFormat() != mLayerDataUrlFormatComboBox->currentText() )
798 mMetadataFilled =
false;
802 if ( mLayer->
attribution() != mLayerAttributionLineEdit->text() )
803 mMetadataFilled =
false;
806 if ( mLayer->
attributionUrl() != mLayerAttributionUrlLineEdit->text() )
807 mMetadataFilled =
false;
811 QList<QgsMapLayerServerProperties::MetadataUrl> metaUrls;
812 for (
int row = 0; row < mMetadataUrlModel->rowCount() ; row++ )
815 metaUrl.
url = mMetadataUrlModel->item( row, 0 )->text();
816 metaUrl.
type = mMetadataUrlModel->item( row, 1 )->text();
817 metaUrl.
format = mMetadataUrlModel->item( row, 2 )->text();
818 metaUrls.append( metaUrl );
819 mMetadataFilled =
false;
824 if ( mLayer->
legendUrl() != mLayerLegendUrlLineEdit->text() )
825 mMetadataFilled =
false;
826 mLayer->
setLegendUrl( mLayerLegendUrlLineEdit->text() );
828 if ( mLayer->
legendUrlFormat() != mLayerLegendUrlFormatComboBox->currentText() )
829 mMetadataFilled =
false;
834 if ( mSimplifyDrawingGroupBox->isChecked() )
842 simplifyMethod.
setThreshold( mSimplifyDrawingSpinBox->value() );
844 simplifyMethod.
setMaximumScale( mSimplifyMaximumScaleComboBox->scale() );
857 mLayer->
setRefreshOnNofifyMessage( mNotificationMessageCheckBox->isChecked() ? mNotifyMessagValueLineEdit->text() : QString() );
863 updateVariableEditor();
866 QSet<QgsMapLayerDependency> deps;
867 const auto checkedLayers = mLayersDependenciesTreeModel->
checkedLayers();
872 QMessageBox::warning(
nullptr, tr(
"Save Dependency" ), tr(
"This configuration introduces a cycle in data dependencies and will be ignored." ) );
880void QgsVectorLayerProperties::onCancel()
887 const auto constVectorJoins = mLayer->
vectorJoins();
907 QDomDocument doc( QStringLiteral(
"qgis" ) );
908 int errorLine, errorColumn;
909 doc.setContent( mOldStyle.
xmlData(),
false, &myMessage, &errorLine, &errorColumn );
913 if ( mBackupCrs != mLayer->
crs() )
914 mLayer->
setCrs( mBackupCrs );
917void QgsVectorLayerProperties::urlClicked(
const QUrl &url )
919 QFileInfo file( url.toLocalFile() );
920 if ( file.exists() && !file.isDir() )
923 QDesktopServices::openUrl( url );
926void QgsVectorLayerProperties::pbnQueryBuilder_clicked()
935 if ( dialog->exec() )
949void QgsVectorLayerProperties::pbnIndex_clicked()
954 setCursor( Qt::WaitCursor );
956 setCursor( Qt::ArrowCursor );
959 pbnIndex->setEnabled(
false );
960 pbnIndex->setText( tr(
"Spatial Index Exists" ) );
961 QMessageBox::information(
this, tr(
"Spatial Index" ), tr(
"Creation of spatial index successful" ) );
965 QMessageBox::warning(
this, tr(
"Spatial Index" ), tr(
"Creation of spatial index failed" ) );
970QString QgsVectorLayerProperties::htmlMetadata()
980 mMetadataFilled =
false;
984void QgsVectorLayerProperties::loadDefaultStyle_clicked()
987 bool defaultLoadedFlag =
false;
994 QMessageBox askToUser;
995 askToUser.setText( tr(
"Load default style from: " ) );
996 askToUser.setIcon( QMessageBox::Question );
997 askToUser.addButton( tr(
"Cancel" ), QMessageBox::RejectRole );
998 askToUser.addButton( tr(
"Local Database" ), QMessageBox::NoRole );
999 askToUser.addButton( tr(
"Datasource Database" ), QMessageBox::YesRole );
1001 switch ( askToUser.exec() )
1007 if ( !defaultLoadedFlag )
1010 QMessageBox::information(
this, tr(
"Default Style" ), msg );
1012 if ( msg.compare( tr(
"Loaded from Provider" ) ) )
1014 QMessageBox::information(
this, tr(
"Default Style" ),
1015 tr(
"No default style was found for this layer." ) );
1031 if ( defaultLoadedFlag )
1039 QMessageBox::information(
this, tr(
"Default Style" ), myMessage );
1043void QgsVectorLayerProperties::saveDefaultStyle_clicked()
1052 QMessageBox askToUser;
1053 askToUser.setText( tr(
"Save default style to: " ) );
1054 askToUser.setIcon( QMessageBox::Question );
1055 askToUser.addButton( tr(
"Cancel" ), QMessageBox::RejectRole );
1056 askToUser.addButton( tr(
"Local Database" ), QMessageBox::NoRole );
1057 askToUser.addButton( tr(
"Datasource Database" ), QMessageBox::YesRole );
1059 switch ( askToUser.exec() )
1065 QString errorMessage;
1068 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1069 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1070 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1075 else if ( !errorMessage.isEmpty() )
1077 QMessageBox::warning(
nullptr, QObject::tr(
"Save style in database" ),
1083 if ( errorMsg.isNull() )
1094 bool defaultSavedFlag =
false;
1100 if ( !defaultSavedFlag )
1102 QMessageBox::warning(
this, tr(
"Default Style" ), errorMsg );
1106void QgsVectorLayerProperties::loadMetadata()
1109 QString myLastUsedDir = myQSettings.
value( QStringLiteral(
"style/lastStyleDir" ), QDir::homePath() ).toString();
1111 QString myFileName = QFileDialog::getOpenFileName(
this, tr(
"Load Layer Metadata from Metadata File" ), myLastUsedDir,
1112 tr(
"QGIS Layer Metadata File" ) +
" (*.qmd)" );
1113 if ( myFileName.isNull() )
1119 bool defaultLoadedFlag =
false;
1123 if ( defaultLoadedFlag )
1130 QMessageBox::warning(
this, tr(
"Load Metadata" ), myMessage );
1133 QFileInfo myFI( myFileName );
1134 QString myPath = myFI.path();
1135 myQSettings.
setValue( QStringLiteral(
"style/lastStyleDir" ), myPath );
1140void QgsVectorLayerProperties::saveMetadataAs()
1143 QString myLastUsedDir = myQSettings.
value( QStringLiteral(
"style/lastStyleDir" ), QDir::homePath() ).toString();
1145 QString myOutputFileName = QFileDialog::getSaveFileName(
this, tr(
"Save Layer Metadata as QMD" ),
1146 myLastUsedDir, tr(
"QMD File" ) +
" (*.qmd)" );
1147 if ( myOutputFileName.isNull() )
1161 bool defaultLoadedFlag =
false;
1165 if ( defaultLoadedFlag )
1172 QMessageBox::information(
this, tr(
"Save Metadata" ), myMessage );
1175 QFileInfo myFI( myOutputFileName );
1176 QString myPath = myFI.path();
1178 myQSettings.
setValue( QStringLiteral(
"style/lastStyleDir" ), myPath );
1181void QgsVectorLayerProperties::saveDefaultMetadata()
1185 bool defaultSavedFlag =
false;
1187 if ( !defaultSavedFlag )
1189 QMessageBox::warning(
this, tr(
"Default Metadata" ), errorMsg );
1193void QgsVectorLayerProperties::loadDefaultMetadata()
1195 bool defaultLoadedFlag =
false;
1198 if ( defaultLoadedFlag )
1204 QMessageBox::information(
this, tr(
"Default Metadata" ), myMessage );
1209void QgsVectorLayerProperties::saveStyleAs()
1220 bool defaultLoadedFlag =
false;
1221 QString errorMessage;
1223 StyleType type = dlg.currentStyleType();
1229 QString filePath = dlg.outputFilePath();
1231 errorMessage = mLayer->
saveNamedStyle( filePath, defaultLoadedFlag, dlg.styleCategories() );
1233 errorMessage = mLayer->
saveSldStyle( filePath, defaultLoadedFlag );
1236 if ( defaultLoadedFlag )
1243 QMessageBox::information(
this, tr(
"Save Style" ), errorMessage );
1250 QString infoWindowTitle = QObject::tr(
"Save style to DB (%1)" ).arg( mLayer->
providerType() );
1256 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1257 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1258 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1263 else if ( !errorMessage.isEmpty() )
1265 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1271 if ( !errorMessage.isNull() )
1273 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1277 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style saved" ), Qgis::MessageLevel::Success );
1283 QString infoWindowTitle = tr(
"Save default style to local database" );
1284 errorMessage = mLayer->
saveDefaultStyle( defaultLoadedFlag, dlg.styleCategories() );
1285 if ( !defaultLoadedFlag )
1287 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1291 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style saved" ), Qgis::MessageLevel::Success );
1299void QgsVectorLayerProperties::saveMultipleStylesAs()
1302 dlg.setSaveOnlyCurrentStyle(
false );
1311 const QListWidget *stylesWidget { dlg.stylesWidget() };
1314 QStringList stylesSelected;
1315 for (
int i = 0; i < stylesWidget->count(); i++ )
1317 if ( stylesWidget->item( i )->checkState() == Qt::CheckState::Checked )
1319 stylesSelected.push_back( stylesWidget->item( i )->text() );
1323 if ( ! stylesSelected.isEmpty() )
1326 for (
const QString &styleName : std::as_const( stylesSelected ) )
1328 bool defaultLoadedFlag =
false;
1330 StyleType type = dlg.currentStyleType();
1338 const QString filePath { dlg.outputFilePath() };
1339 QString safePath { filePath };
1340 if ( styleIndex > 0 && stylesSelected.count( ) > 1 )
1343 while ( QFile::exists( safePath ) )
1345 const QFileInfo fi { filePath };
1346 safePath = QString( filePath ).replace(
'.' + fi.completeSuffix(), QStringLiteral(
"_%1.%2" )
1347 .arg( QString::number( i ) )
1348 .arg( fi.completeSuffix() ) );
1353 message = mLayer->
saveNamedStyle( safePath, defaultLoadedFlag, dlg.styleCategories() );
1355 message = mLayer->
saveSldStyle( safePath, defaultLoadedFlag );
1358 if ( defaultLoadedFlag )
1365 QMessageBox::information(
this, tr(
"Save Style" ), message );
1372 QString infoWindowTitle = QObject::tr(
"Save style '%1' to DB (%2)" )
1380 QString name { dbSettings.
name };
1381 if ( name.isEmpty() )
1387 QStringList ids, names, descriptions;
1390 while ( names.contains( name ) )
1392 name = QStringLiteral(
"%1 %2" ).arg( name ).arg( QString::number( i ) );
1397 QString errorMessage;
1400 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1401 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1402 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1407 else if ( !errorMessage.isEmpty() )
1409 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1415 if ( !msgError.isNull() )
1417 mMessageBar->
pushMessage( infoWindowTitle, msgError, Qgis::MessageLevel::Warning );
1421 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style '%1' saved" ).arg( styleName ),
1422 Qgis::MessageLevel::Success );
1437void QgsVectorLayerProperties::aboutToShowStyleMenu()
1440 QMenu *m = qobject_cast<QMenu *>( sender() );
1443 m->addAction( mActionLoadStyle );
1444 m->addAction( mActionSaveStyle );
1449 mActionSaveStyle->setText( tr(
"Save Current Style…" ) );
1450 m->addAction( mActionSaveMultipleStyles );
1454 mActionSaveStyle->setText( tr(
"Save Style…" ) );
1458 m->addAction( tr(
"Save as Default" ),
this, &QgsVectorLayerProperties::saveDefaultStyle_clicked );
1459 m->addAction( tr(
"Restore Default" ),
this, &QgsVectorLayerProperties::loadDefaultStyle_clicked );
1466void QgsVectorLayerProperties::loadStyle()
1471 QStringList ids, names, descriptions;
1476 dlg.initializeLists( ids, names, descriptions, sectionLimit );
1481 QgsMapLayer::StyleCategories categories = dlg.styleCategories();
1482 StyleType type = dlg.currentStyleType();
1483 bool defaultLoadedFlag =
false;
1489 QString filePath = dlg.filePath();
1492 errorMsg = mLayer->
loadSldStyle( filePath, defaultLoadedFlag );
1496 errorMsg = mLayer->
loadNamedStyle( filePath, defaultLoadedFlag,
true, categories );
1499 if ( defaultLoadedFlag )
1506 QMessageBox::warning(
this, tr(
"Load Style" ), errorMsg );
1512 QString selectedStyleId = dlg.selectedStyleId();
1515 if ( !errorMsg.isNull() )
1517 QMessageBox::warning(
this, tr(
"Load Styles from Database" ), errorMsg );
1521 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
1522 myDocument.setContent( qmlStyle );
1530 QMessageBox::warning(
this, tr(
"Load Styles from Database" ),
1531 tr(
"The retrieved style is not a valid named style. Error message: %1" )
1540 if ( defaultLoadedFlag )
1546 QMessageBox::warning(
this, tr(
"Load Default Style" ), errorMsg );
1555void QgsVectorLayerProperties::mButtonAddJoin_clicked()
1560 QList<QgsMapLayer *> joinedLayers;
1561 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
1562 joinedLayers.reserve( joins.size() );
1563 for (
int i = 0; i < joins.size(); ++i )
1565 joinedLayers.append( joins[i].joinLayer() );
1569 if ( d.exec() == QDialog::Accepted )
1573 if ( d.createAttributeIndex() )
1582 addJoinToTreeWidget( info );
1583 setPbnQueryBuilderEnabled();
1584 mSourceFieldsPropertiesDialog->
init();
1585 mAttributesFormPropertiesDialog->
init();
1589void QgsVectorLayerProperties::mButtonEditJoin_clicked()
1591 QTreeWidgetItem *currentJoinItem = mJoinTreeWidget->currentItem();
1592 mJoinTreeWidget_itemDoubleClicked( currentJoinItem, 0 );
1595void QgsVectorLayerProperties::mJoinTreeWidget_itemDoubleClicked( QTreeWidgetItem *item,
int )
1597 if ( !mLayer || !item )
1602 QList<QgsMapLayer *> joinedLayers;
1603 QString joinLayerId = item->data( 0, Qt::UserRole ).toString();
1604 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
1606 for (
int i = 0; i < joins.size(); ++i )
1612 if ( joinLayer->
id() == joinLayerId )
1619 joinedLayers.append( joinLayer );
1628 d.setWindowTitle( tr(
"Edit Vector Join" ) );
1629 d.setJoinInfo( joins[j] );
1631 if ( d.exec() == QDialog::Accepted )
1637 int idx = mJoinTreeWidget->indexOfTopLevelItem( item );
1638 mJoinTreeWidget->takeTopLevelItem( idx );
1643 if ( d.createAttributeIndex() )
1652 addJoinToTreeWidget( info, idx );
1654 setPbnQueryBuilderEnabled();
1655 mSourceFieldsPropertiesDialog->
init();
1656 mAttributesFormPropertiesDialog->
init();
1660void QgsVectorLayerProperties::addJoinToTreeWidget(
const QgsVectorLayerJoinInfo &join,
const int insertIndex )
1662 QTreeWidgetItem *joinItem =
new QTreeWidgetItem();
1663 joinItem->setFlags( Qt::ItemIsEnabled );
1666 if ( !mLayer || !joinLayer )
1671 joinItem->setText( 0, tr(
"Join layer" ) );
1677 joinItem->setText( 1, joinLayer->
name() );
1679 QFont f = joinItem->font( 0 );
1681 joinItem->setFont( 0, f );
1682 joinItem->setFont( 1, f );
1684 joinItem->setData( 0, Qt::UserRole, join.
joinLayerId() );
1686 QTreeWidgetItem *childJoinField =
new QTreeWidgetItem();
1687 childJoinField->setText( 0, tr(
"Join field" ) );
1689 childJoinField->setFlags( Qt::ItemIsEnabled );
1690 joinItem->addChild( childJoinField );
1692 QTreeWidgetItem *childTargetField =
new QTreeWidgetItem();
1693 childTargetField->setText( 0, tr(
"Target field" ) );
1695 joinItem->addChild( childTargetField );
1697 QTreeWidgetItem *childMemCache =
new QTreeWidgetItem();
1698 childMemCache->setText( 0, tr(
"Cache join layer in virtual memory" ) );
1700 childMemCache->setText( 1, QChar( 0x2714 ) );
1701 joinItem->addChild( childMemCache );
1703 QTreeWidgetItem *childDynForm =
new QTreeWidgetItem();
1704 childDynForm->setText( 0, tr(
"Dynamic form" ) );
1706 childDynForm->setText( 1, QChar( 0x2714 ) );
1707 joinItem->addChild( childDynForm );
1709 QTreeWidgetItem *childEditable =
new QTreeWidgetItem();
1710 childEditable->setText( 0, tr(
"Editable join layer" ) );
1712 childEditable->setText( 1, QChar( 0x2714 ) );
1713 joinItem->addChild( childEditable );
1715 QTreeWidgetItem *childUpsert =
new QTreeWidgetItem();
1716 childUpsert->setText( 0, tr(
"Upsert on edit" ) );
1718 childUpsert->setText( 1, QChar( 0x2714 ) );
1719 joinItem->addChild( childUpsert );
1721 QTreeWidgetItem *childCascade =
new QTreeWidgetItem();
1722 childCascade->setText( 0, tr(
"Delete cascade" ) );
1724 childCascade->setText( 1, QChar( 0x2714 ) );
1725 joinItem->addChild( childCascade );
1727 QTreeWidgetItem *childPrefix =
new QTreeWidgetItem();
1728 childPrefix->setText( 0, tr(
"Custom field name prefix" ) );
1729 childPrefix->setText( 1, join.
prefix() );
1730 joinItem->addChild( childPrefix );
1732 QTreeWidgetItem *childFields =
new QTreeWidgetItem();
1733 childFields->setText( 0, tr(
"Joined fields" ) );
1736 childFields->setText( 1, QLocale().toString( list->count() ) );
1738 childFields->setText( 1, tr(
"all" ) );
1739 joinItem->addChild( childFields );
1741 if ( insertIndex >= 0 )
1742 mJoinTreeWidget->insertTopLevelItem( insertIndex, joinItem );
1744 mJoinTreeWidget->addTopLevelItem( joinItem );
1746 mJoinTreeWidget->setCurrentItem( joinItem );
1747 mJoinTreeWidget->header()->setSectionResizeMode( QHeaderView::ResizeToContents );
1757 QDialog *dlg =
new QDialog();
1758 QString key = QStringLiteral(
"/UI/paneldialog/%1" ).arg( panel->
panelTitle() );
1760 dlg->restoreGeometry( settings.
value( key ).toByteArray() );
1762 dlg->setLayout(
new QVBoxLayout() );
1763 dlg->layout()->addWidget( panel );
1764 QDialogButtonBox *buttonBox =
new QDialogButtonBox( QDialogButtonBox::Ok );
1765 connect( buttonBox, &QDialogButtonBox::accepted, dlg, &QDialog::accept );
1766 dlg->layout()->addWidget( buttonBox );
1768 settings.
setValue( key, dlg->saveGeometry() );
1772void QgsVectorLayerProperties::mButtonRemoveJoin_clicked()
1774 QTreeWidgetItem *currentJoinItem = mJoinTreeWidget->currentItem();
1775 if ( !mLayer || !currentJoinItem )
1780 mLayer->
removeJoin( currentJoinItem->data( 0, Qt::UserRole ).toString() );
1781 mJoinTreeWidget->takeTopLevelItem( mJoinTreeWidget->indexOfTopLevelItem( currentJoinItem ) );
1782 setPbnQueryBuilderEnabled();
1783 mSourceFieldsPropertiesDialog->
init();
1784 mAttributesFormPropertiesDialog->
init();
1788void QgsVectorLayerProperties::mButtonAddWmsDimension_clicked()
1794 QStringList alreadyDefinedDimensions;
1796 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &dims = serverProperties->
wmsDimensions();
1799 alreadyDefinedDimensions << dim.name;
1803 if ( d.exec() == QDialog::Accepted )
1808 addWmsDimensionInfoToTreeWidget( info );
1812void QgsVectorLayerProperties::mButtonEditWmsDimension_clicked()
1814 QTreeWidgetItem *currentWmsDimensionItem = mWmsDimensionsTreeWidget->currentItem();
1815 mWmsDimensionsTreeWidget_itemDoubleClicked( currentWmsDimensionItem, 0 );
1818void QgsVectorLayerProperties::mWmsDimensionsTreeWidget_itemDoubleClicked( QTreeWidgetItem *item,
int )
1820 if ( !mLayer || !item )
1825 QString wmsDimName = item->data( 0, Qt::UserRole ).toString();
1827 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &dims = serverProperties->
wmsDimensions();
1828 QStringList alreadyDefinedDimensions;
1830 for (
int i = 0; i < dims.size(); ++i )
1832 QString dimName = dims[i].name;
1833 if ( dimName == wmsDimName )
1839 alreadyDefinedDimensions << dimName;
1848 d.setWindowTitle( tr(
"Edit WMS Dimension" ) );
1849 d.setInfo( dims[j] );
1851 if ( d.exec() == QDialog::Accepted )
1858 int idx = mWmsDimensionsTreeWidget->indexOfTopLevelItem( item );
1859 mWmsDimensionsTreeWidget->takeTopLevelItem( idx );
1863 addWmsDimensionInfoToTreeWidget( info, idx );
1869 QTreeWidgetItem *wmsDimensionItem =
new QTreeWidgetItem();
1870 wmsDimensionItem->setFlags( Qt::ItemIsEnabled );
1872 wmsDimensionItem->setText( 0, tr(
"Dimension" ) );
1873 wmsDimensionItem->setText( 1, wmsDim.
name );
1875 QFont f = wmsDimensionItem->font( 0 );
1877 wmsDimensionItem->setFont( 0, f );
1878 wmsDimensionItem->setFont( 1, f );
1880 wmsDimensionItem->setData( 0, Qt::UserRole, wmsDim.
name );
1882 QTreeWidgetItem *childWmsDimensionField =
new QTreeWidgetItem();
1883 childWmsDimensionField->setText( 0, tr(
"Field" ) );
1884 childWmsDimensionField->setText( 1, wmsDim.
fieldName );
1885 childWmsDimensionField->setFlags( Qt::ItemIsEnabled );
1886 wmsDimensionItem->addChild( childWmsDimensionField );
1888 QTreeWidgetItem *childWmsDimensionEndField =
new QTreeWidgetItem();
1889 childWmsDimensionEndField->setText( 0, tr(
"End field" ) );
1890 childWmsDimensionEndField->setText( 1, wmsDim.
endFieldName );
1891 childWmsDimensionEndField->setFlags( Qt::ItemIsEnabled );
1892 wmsDimensionItem->addChild( childWmsDimensionEndField );
1894 QTreeWidgetItem *childWmsDimensionUnits =
new QTreeWidgetItem();
1895 childWmsDimensionUnits->setText( 0, tr(
"Units" ) );
1896 childWmsDimensionUnits->setText( 1, wmsDim.
units );
1897 childWmsDimensionUnits->setFlags( Qt::ItemIsEnabled );
1898 wmsDimensionItem->addChild( childWmsDimensionUnits );
1900 QTreeWidgetItem *childWmsDimensionUnitSymbol =
new QTreeWidgetItem();
1901 childWmsDimensionUnitSymbol->setText( 0, tr(
"Unit symbol" ) );
1902 childWmsDimensionUnitSymbol->setText( 1, wmsDim.
unitSymbol );
1903 childWmsDimensionUnitSymbol->setFlags( Qt::ItemIsEnabled );
1904 wmsDimensionItem->addChild( childWmsDimensionUnitSymbol );
1906 QTreeWidgetItem *childWmsDimensionDefaultValue =
new QTreeWidgetItem();
1907 childWmsDimensionDefaultValue->setText( 0, tr(
"Default display" ) );
1909 childWmsDimensionDefaultValue->setFlags( Qt::ItemIsEnabled );
1910 wmsDimensionItem->addChild( childWmsDimensionDefaultValue );
1912 QTreeWidgetItem *childWmsDimensionRefValue =
new QTreeWidgetItem();
1913 childWmsDimensionRefValue->setText( 0, tr(
"Reference value" ) );
1914 childWmsDimensionRefValue->setText( 1, wmsDim.
referenceValue.toString() );
1915 childWmsDimensionRefValue->setFlags( Qt::ItemIsEnabled );
1916 wmsDimensionItem->addChild( childWmsDimensionRefValue );
1918 if ( insertIndex >= 0 )
1919 mWmsDimensionsTreeWidget->insertTopLevelItem( insertIndex, wmsDimensionItem );
1921 mWmsDimensionsTreeWidget->addTopLevelItem( wmsDimensionItem );
1923 mWmsDimensionsTreeWidget->setCurrentItem( wmsDimensionItem );
1924 mWmsDimensionsTreeWidget->header()->setSectionResizeMode( QHeaderView::ResizeToContents );
1927void QgsVectorLayerProperties::mButtonRemoveWmsDimension_clicked()
1929 QTreeWidgetItem *currentWmsDimensionItem = mWmsDimensionsTreeWidget->currentItem();
1930 if ( !mLayer || !currentWmsDimensionItem )
1936 serverProperties->
removeWmsDimension( currentWmsDimensionItem->data( 0, Qt::UserRole ).toString() );
1937 mWmsDimensionsTreeWidget->takeTopLevelItem( mWmsDimensionsTreeWidget->indexOfTopLevelItem( currentWmsDimensionItem ) );
1941void QgsVectorLayerProperties::updateSymbologyPage()
1945 delete mRendererDialog;
1946 mRendererDialog =
nullptr;
1962 mOptsPage_Style->setEnabled(
false );
1965 if ( mRendererDialog )
1967 mRendererDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
1968 widgetStackRenderers->addWidget( mRendererDialog );
1969 widgetStackRenderers->setCurrentWidget( mRendererDialog );
1970 widgetStackRenderers->currentWidget()->layout()->setContentsMargins( 0, 0, 0, 0 );
1974void QgsVectorLayerProperties::setPbnQueryBuilderEnabled()
1976 pbnQueryBuilder->setEnabled( mLayer &&
1983 pbnQueryBuilder->setToolTip( tr(
"Stop editing mode to enable this." ) );
1988void QgsVectorLayerProperties::pbnUpdateExtents_clicked()
1991 mMetadataFilled =
false;
1998 bool isMetadataPanel = ( index ==
mOptStackedWidget->indexOf( mOptsPage_Metadata ) );
1999 mBtnStyle->setVisible( ! isMetadataPanel );
2000 mBtnMetadata->setVisible( isMetadataPanel );
2002 if ( index ==
mOptStackedWidget->indexOf( mOptsPage_Information ) && ! mMetadataFilled )
2005 teMetadataViewer->clear();
2006 teMetadataViewer->setHtml( htmlMetadata() );
2007 mMetadataFilled =
true;
2013void QgsVectorLayerProperties::mSimplifyDrawingGroupBox_toggled(
bool checked )
2018 mSimplifyDrawingAtProvider->setEnabled(
false );
2022 mSimplifyDrawingAtProvider->setEnabled( checked );
2026void QgsVectorLayerProperties::updateVariableEditor()
2029 mVariableEditor->setContext( &context );
2033 mVariableEditor->reloadContext();
2034 mVariableEditor->setEditableScopeIndex( 2 );
2037void QgsVectorLayerProperties::showHelp()
2039 const QVariant helpPage = mOptionsStackedWidget->currentWidget()->property(
"helpPage" );
2041 if ( helpPage.isValid() )
2047 QgsHelp::openHelp( QStringLiteral(
"working_with_vector/vector_properties.html" ) );
2051void QgsVectorLayerProperties::updateAuxiliaryStoragePage()
2058 mAuxiliaryStorageInformationGrpBox->setEnabled(
true );
2059 mAuxiliaryStorageFieldsGrpBox->setEnabled(
true );
2066 mAuxiliaryStorageFeaturesLineEdit->setText( QLocale().toString( features ) );
2069 mAuxiliaryLayerActionClear->setEnabled(
true );
2070 mAuxiliaryLayerActionDelete->setEnabled(
true );
2071 mAuxiliaryLayerActionExport->setEnabled(
true );
2072 mAuxiliaryLayerActionNew->setEnabled(
false );
2078 mAuxiliaryStorageFieldsLineEdit->setText( QLocale().toString( fields ) );
2081 mAuxiliaryStorageFieldsTree->clear();
2085 QTreeWidgetItem *item =
new QTreeWidgetItem();
2087 item->setText( 0, prop.
origin() );
2088 item->setText( 1, prop.
name() );
2089 item->setText( 2, prop.
comment() );
2093 mAuxiliaryStorageFieldsTree->addTopLevelItem( item );
2099 mAuxiliaryStorageInformationGrpBox->setEnabled(
false );
2100 mAuxiliaryStorageFieldsGrpBox->setEnabled(
false );
2102 mAuxiliaryLayerActionClear->setEnabled(
false );
2103 mAuxiliaryLayerActionDelete->setEnabled(
false );
2104 mAuxiliaryLayerActionExport->setEnabled(
false );
2105 mAuxiliaryLayerActionNew->setEnabled(
true );
2107 mAuxiliaryStorageFieldsTree->clear();
2108 mAuxiliaryStorageKeyLineEdit->setText( QString() );
2109 mAuxiliaryStorageFieldsLineEdit->setText( QString() );
2110 mAuxiliaryStorageFeaturesLineEdit->setText( QString() );
2114void QgsVectorLayerProperties::onAuxiliaryLayerNew()
2122 if ( dlg.exec() == QDialog::Accepted )
2124 updateAuxiliaryStoragePage();
2128void QgsVectorLayerProperties::onAuxiliaryLayerClear()
2135 const QString msg = tr(
"Are you sure you want to clear auxiliary data for %1?" ).arg( mLayer->
name() );
2136 QMessageBox::StandardButton reply;
2137 reply = QMessageBox::question(
this,
"Clear Auxiliary Data", msg, QMessageBox::Yes | QMessageBox::No );
2139 if ( reply == QMessageBox::Yes )
2141 QApplication::setOverrideCursor( Qt::WaitCursor );
2143 QApplication::restoreOverrideCursor();
2144 updateAuxiliaryStoragePage();
2149void QgsVectorLayerProperties::onAuxiliaryLayerDelete()
2155 const QString msg = tr(
"Are you sure you want to delete auxiliary storage for %1?" ).arg( mLayer->
name() );
2156 QMessageBox::StandardButton reply;
2157 reply = QMessageBox::question(
this,
"Delete Auxiliary Storage", msg, QMessageBox::Yes | QMessageBox::No );
2159 if ( reply == QMessageBox::Yes )
2161 QApplication::setOverrideCursor( Qt::WaitCursor );
2174 QApplication::restoreOverrideCursor();
2175 updateAuxiliaryStoragePage();
2180void QgsVectorLayerProperties::onAuxiliaryLayerDeleteField()
2186 QList<QTreeWidgetItem *> items = mAuxiliaryStorageFieldsTree->selectedItems();
2187 if ( items.count() < 1 )
2191 const QTreeWidgetItem *item = items[0];
2194 def.
setName( item->text( 1 ) );
2204 const QString msg = tr(
"Are you sure you want to delete auxiliary field %1 for %2?" ).arg( item->text( 1 ), item->text( 0 ) );
2206 QMessageBox::StandardButton reply;
2207 const QString title = QObject::tr(
"Delete Auxiliary Field" );
2208 reply = QMessageBox::question(
this, title, msg, QMessageBox::Yes | QMessageBox::No );
2210 if ( reply == QMessageBox::Yes )
2212 QApplication::setOverrideCursor( Qt::WaitCursor );
2213 deleteAuxiliaryField( index );
2215 QApplication::restoreOverrideCursor();
2219void QgsVectorLayerProperties::onAuxiliaryLayerAddField()
2226 if ( dlg.exec() == QDialog::Accepted )
2228 updateAuxiliaryStoragePage();
2232void QgsVectorLayerProperties::deleteAuxiliaryField(
int index )
2245 if ( key >= 0 && def.
origin().compare(
"labeling", Qt::CaseInsensitive ) == 0
2252 updateAuxiliaryStoragePage();
2253 mSourceFieldsPropertiesDialog->
init();
2257 const QString title = QObject::tr(
"Delete Auxiliary Field" );
2259 const QString msg = QObject::tr(
"Unable to remove auxiliary field (%1)" ).arg( errors );
2260 mMessageBar->
pushMessage( title, msg, Qgis::MessageLevel::Warning );
static QString defaultProjectScales()
A string with default project scales.
void clearActions()
Removes all actions.
QUuid addAction(QgsAction::ActionType type, const QString &name, const QString &command, bool capture=false)
Add an action with the given name and action details.
Utility class that encapsulates an action based on vector attributes.
static QString reportStyleSheet(QgsApplication::StyleSheetType styleSheetType=QgsApplication::StyleSheetType::Qt)
Returns a css style sheet for reports, the styleSheetType argument determines what type of stylesheet...
static QRegularExpression shortNameRegularExpression()
Returns the short name regular expression for line edit validator.
void init(const QgsActionManager &action, const QgsAttributeTableConfig &attributeTableConfig)
bool showWidgetInAttributeTable() const
QList< QgsAction > actions() const
QgsAttributeTableConfig::ActionWidgetStyle attributeTableWidgetStyle() const
This is a container for configuration of the attribute table.
@ Action
This column represents an action widget.
QVector< QgsAttributeTableConfig::ColumnConfig > columns() const
Gets the list with all columns and their configuration.
void update(const QgsFields &fields)
Update the configuration with the given fields.
void setActionWidgetStyle(ActionWidgetStyle actionWidgetStyle)
Set the style of the action widget.
void setColumns(const QVector< QgsAttributeTableConfig::ColumnConfig > &columns)
Set the list of columns visible in the attribute table.
Class allowing to manage the auxiliary storage for a vector layer.
static QString nameFromProperty(const QgsPropertyDefinition &def, bool joined=false)
Returns the name of the auxiliary field for a property definition.
static QgsPropertyDefinition propertyDefinitionFromField(const QgsField &field)
Returns the property definition from an auxiliary field.
bool clear()
Deletes all features from the layer.
bool deleteAttribute(int attr) override
Removes attribute from the layer and commits changes.
QgsFields auxiliaryFields() const
Returns a list of all auxiliary fields currently managed by the layer.
int propertyFromIndex(int index) const
Returns the underlying property key for the field index.
QgsVectorLayerJoinInfo joinInfo() const
Returns information to use for joining with primary key and so on.
QgsPropertyDefinition propertyDefinitionFromIndex(int index) const
Returns the property definition for the underlying field index.
static bool deleteTable(const QgsDataSourceUri &uri)
Removes a table from the auxiliary storage.
This class represents a coordinate reference system (CRS).
virtual bool supportsSubsetString() const
Returns true if the provider supports setting of subset strings.
Class for storing the component parts of a RDBMS data source URI (e.g.
void syncToLayer()
Updates the widget to reflect the layer's current diagram settings.
void auxiliaryFieldCreated()
static void setLayerVariables(QgsMapLayer *layer, const QVariantMap &variables)
Sets all layer context variables.
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static QgsExpressionContextScope * atlasScope(const QgsLayoutAtlas *atlas)
Creates a new scope which contains variables and functions relating to a QgsLayoutAtlas.
static QgsExpressionContextScope * mapSettingsScope(const QgsMapSettings &mapSettings)
Creates a new scope which contains variables and functions relating to a QgsMapSettings object.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
static QgsExpressionContextScope * globalScope()
Creates a new scope which contains variables and functions relating to the global QGIS context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
bool forceRasterRender() const
Returns whether the renderer must render as a raster.
void setForceRasterRender(bool forceRaster)
Sets whether the renderer should be rendered to a raster destination.
double referenceScale() const
Returns the symbology reference scale.
void setReferenceScale(double scale)
Sets the symbology reference scale.
@ SpatialIndexPresent
A valid spatial index exists for the source.
virtual SpatialIndexPresence hasSpatialIndex() const
Returns an enum value representing the presence of a valid spatial index on the source,...
Encapsulate a field in an attribute table or data source.
QString typeName() const
Gets the field type.
int indexFromName(const QString &fieldName) const
Gets the field index from the field name.
int indexOf(const QString &fieldName) const
Gets the field index from the field name.
int count() const
Returns number of items.
int size() const
Returns number of items.
static QgsProviderSourceWidgetProviderRegistry * sourceWidgetProviderRegistry()
Returns the registry of provider source widget providers.
static QgsNative * nativePlatformInterface()
Returns the global native interface, which offers abstraction to the host OS's underlying public inte...
static QgsSubsetStringEditorProviderRegistry * subsetStringEditorProviderRegistry()
Returns the registry of subset string editors of data providers.
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
QgsLayerTreeFilterProxyModel is a sort filter proxy model to easily reproduce the legend/layer tree i...
QList< QgsMapLayer * > checkedLayers() const
Returns the checked layers.
void setLayerTreeModel(QgsLayerTreeModel *layerTreeModel)
Sets the layer tree model.
void setCheckedLayers(const QList< QgsMapLayer * > layers)
Initialize the list of checked layers.
The QgsLayerTreeModel class is model implementation for Qt item views framework.
Map canvas is a class for displaying all GIS data types on a canvas.
double scale() const
Returns the last reported scale of the canvas.
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
This class models dependencies with or between map layers.
A reusable dialog which allows users to select stored layer styles and categories to load for a map l...
Manages QGIS Server properties for a map layer.
void addStyleManagerActions(QMenu *m, QgsMapLayer *layer)
adds actions to the menu in accordance to the layer
static QgsMapLayerStyleGuiUtils * instance()
returns a singleton instance of this class
QString currentStyle() const
Returns name of the current style.
QStringList styles() const
Returns list of all defined style names.
bool setCurrentStyle(const QString &name)
Set a different style as the current style - will apply it to the layer.
static bool isDefault(const QString &styleName)
Returns true if this is the default style.
QgsMapLayerStyle style(const QString &name) const
Returns data of a stored style - accessed by its unique name.
void currentStyleChanged(const QString ¤tName)
Emitted when the current style has been changed.
QString xmlData() const
Returns XML content of the style.
Base class for all map layer types.
void setShortName(const QString &shortName)
Sets the short name of the layer used by QGIS Server to identify the layer.
QString legendUrlFormat() const
Returns the format for a URL based layer legend.
void setRefreshOnNotifyEnabled(bool enabled)
Set whether provider notification is connected to triggerRepaint.
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
void setAbstract(const QString &abstract)
Sets the abstract of the layer used by QGIS Server in GetCapabilities request.
virtual QString saveSldStyle(const QString &uri, bool &resultFlag) const
Saves the properties of this layer to an SLD format file.
QString source() const
Returns the source for the layer.
void setLegendUrl(const QString &legendUrl)
Sets the URL for the layer's legend.
QString providerType() const
Returns the provider type (provider key) for this layer.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
QgsCoordinateReferenceSystem crs
QgsMapLayerServerProperties * serverProperties()
Returns QGIS Server Properties for the map layer.
QString attribution() const
Returns the attribution of the layer used by QGIS Server in GetCapabilities request.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
virtual QString loadNamedMetadata(const QString &uri, bool &resultFlag)
Retrieve a named metadata for this layer if one exists (either as a .qmd file on disk or as a record ...
bool hasAutoRefreshEnabled() const
Returns true if auto refresh is enabled for the layer.
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
void setAttributionUrl(const QString &attribUrl)
Sets the attribution URL of the layer used by QGIS Server in GetCapabilities request.
void setAutoRefreshEnabled(bool enabled)
Sets whether auto refresh is enabled for the layer.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsLayerMetadata metadata
QString abstract() const
Returns the abstract of the layer used by QGIS Server in GetCapabilities request.
QString dataUrlFormat() const
Returns the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
void setDataUrl(const QString &dataUrl)
Sets the DataUrl of the layer used by QGIS Server in GetCapabilities request.
void setKeywordList(const QString &keywords)
Sets the keyword list of the layer used by QGIS Server in GetCapabilities request.
void setAttribution(const QString &attrib)
Sets the attribution of the layer used by QGIS Server in GetCapabilities request.
bool isRefreshOnNotifyEnabled() const
Returns true if the refresh on provider nofification is enabled.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
virtual QString loadSldStyle(const QString &uri, bool &resultFlag)
Attempts to style the layer using the formatting from an SLD type file.
virtual QString saveDefaultMetadata(bool &resultFlag)
Save the current metadata of this layer as the default metadata (either as a .qmd file on disk or as ...
void setDataUrlFormat(const QString &dataUrlFormat)
Sets the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
virtual QString styleURI() const
Retrieve the style URI for this layer (either as a .qml file on disk or as a record in the users styl...
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
void setRefreshOnNofifyMessage(const QString &message)
Set the notification message that triggers repaint If refresh on notification is enabled,...
static QString extensionPropertyType(PropertyType type)
Returns the extension of a Property.
void setName(const QString &name)
Set the display name of the layer.
void setAutoRefreshInterval(int interval)
Sets the auto refresh interval (in milliseconds) for the layer.
QString saveNamedMetadata(const QString &uri, bool &resultFlag)
Save the current metadata of this layer as a named metadata (either as a .qmd file on disk or as a re...
QString refreshOnNotifyMessage() const
Returns the message that should be notified by the provider to triggerRepaint.
QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
double minimumScale() const
Returns the minimum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
QString legendUrl() const
Returns the URL for the layer's legend.
void setLegendUrlFormat(const QString &legendUrlFormat)
Sets the format for a URL based layer legend.
virtual QString saveNamedStyle(const QString &uri, bool &resultFlag, StyleCategories categories=AllStyleCategories)
Save the properties of this layer as a named style (either as a .qml file on disk or as a record in t...
virtual QString metadataUri() const
Retrieve the metadata URI for this layer (either as a .qmd file on disk or as a record in the users s...
virtual QString saveDefaultStyle(bool &resultFlag, StyleCategories categories)
Save the properties of this layer as the default style (either as a .qml file on disk or as a record ...
double maximumScale() const
Returns the maximum map scale (i.e.
QString keywordList() const
Returns the keyword list of the layer used by QGIS Server in GetCapabilities request.
void setTitle(const QString &title)
Sets the title of the layer used by QGIS Server in GetCapabilities request.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
A bar for displaying non-blocking messages to the user.
void pushMessage(const QString &text, Qgis::MessageLevel level=Qgis::MessageLevel::Info, int duration=-1)
A convenience method for pushing a message with the specified text to the bar.
A dialog to create a new auxiliary field.
A dialog to create a new auxiliary layer.
A base dialog for options and properties dialogs that offers vertical tabs.
void resizeAlltabs(int index)
Resizes all tabs when the dialog is resized.
void addPage(const QString &title, const QString &tooltip, const QIcon &icon, QWidget *widget, const QStringList &path=QStringList())
Adds a new page to the dialog pages.
virtual void optionsStackedWidget_CurrentChanged(int index)
Select relevant tab on current page change.
void insertPage(const QString &title, const QString &tooltip, const QIcon &icon, QWidget *widget, const QString &before, const QStringList &path=QStringList())
Inserts a new page into the dialog pages.
void restoreOptionsBaseUi(const QString &title=QString())
Restore the base ui.
QStackedWidget * mOptStackedWidget
void initOptionsBase(bool restoreUi=true, const QString &title=QString())
Set up the base ui connections for vertical tabs.
Property
Data definable properties.
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
void setDirty(bool b=true)
Flag the project as dirty (modified).
Definition for a property.
QString comment() const
Returns the comment of the property.
void setOrigin(const QString &origin)
Sets the origin of the property.
QString name() const
Returns the name of the property.
void setName(const QString &name)
Sets the name of the property.
QString origin() const
Returns the origin of the property.
void setComment(const QString &comment)
Sets comment of the property.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
void showPanel(QgsPanelWidget *panel)
Emit when you require a panel to be show in the interface.
void setContext(const QgsSymbolWidgetContext &context)
Sets the context in which the dialog is shown, e.g., the associated map canvas and expression context...
void apply()
Apply the changes from the dialog to the layer.
void layerVariablesChanged()
Emitted when expression context variables on the associated vector layers have been changed.
void widgetChanged()
Emitted when something on the widget has changed.
void setDockMode(bool dockMode)
Set the widget in dock mode which tells the widget to emit panel widgets and not open dialogs.
static QMap< int, QString > wmsDimensionDefaultDisplayLabels()
Returns WMS Dimension default display labels.
bool addWmsDimension(const QgsServerWmsDimensionProperties::WmsDimensionInfo &wmsDimInfo)
Adds a QGIS Server WMS Dimension.
bool removeWmsDimension(const QString &wmsDimName)
Removes a QGIS Server WMS Dimension.
const QList< QgsServerWmsDimensionProperties::WmsDimensionInfo > wmsDimensions() const
Returns the QGIS Server WMS Dimension list.
This class is a composition of two QSettings instances:
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
bool contains(const QString &key, QgsSettings::Section section=QgsSettings::NoSection) const
Returns true if there exists a setting called key; returns false otherwise.
void setValue(const QString &key, const QVariant &value, QgsSettings::Section section=QgsSettings::NoSection)
Sets the value of setting key to value.
static QgsStyle * defaultStyle()
Returns default application-wide style.
Interface for a dialog that can edit subset strings.
virtual QString subsetString() const =0
Returns the subset string entered in the dialog.
virtual void setSubsetString(const QString &subsetString)=0
Sets a subset string into the dialog.
QgsSubsetStringEditorInterface * createDialog(QgsVectorLayer *layer, QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags)
Creates a new dialog to edit the subset string of the provided layer.
Contains settings which reflect the context in which a symbol (or renderer) widget is shown,...
void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
void setMessageBar(QgsMessageBar *bar)
Sets the message bar associated with the widget.
This is the base class for vector data providers.
static QStringList availableEncodings()
Returns a list of available encodings.
@ SimplifyGeometries
Supports simplification of geometries on provider side according to a distance tolerance.
@ SelectEncoding
Allows user to select encoding.
@ CreateSpatialIndex
Allows creation of spatial index.
virtual bool isSaveAndLoadStyleToDatabaseSupported() const
It returns false by default.
virtual bool createSpatialIndex()
Creates a spatial index on the datasource (if supported by the provider type).
virtual bool createAttributeIndex(int field)
Create an attribute index on the datasource.
QString encoding() const
Returns the encoding which is used for accessing data.
virtual Q_INVOKABLE QgsVectorDataProvider::Capabilities capabilities() const
Returns flags containing the supported capabilities.
Defines left outer join from our vector layer to some other vector layer.
bool hasCascadedDelete() const
Returns whether a feature deleted on the target layer has to impact the joined layer by deleting the ...
bool isDynamicFormEnabled() const
Returns whether the form has to be dynamically updated with joined fields when a feature is being cre...
bool hasUpsertOnEdit() const
Returns whether a feature created on the target layer has to impact the joined layer by creating a ne...
bool isEditable() const
Returns whether joined fields may be edited through the form of the target layer.
bool isUsingMemoryCache() const
Returns whether values from the joined layer should be cached in memory to speed up lookups.
QString prefix() const
Returns prefix of fields from the joined layer. If nullptr, joined layer's name will be used.
static QStringList joinFieldNamesSubset(const QgsVectorLayerJoinInfo &info, bool blocklisted=true)
Returns the list of field names to use for joining considering blocklisted fields and subset.
QString joinFieldName() const
Returns name of the field of joined layer that will be used for join.
QString targetFieldName() const
Returns name of the field of our layer that will be used for join.
QString joinLayerId() const
ID of the joined layer - may be used to resolve reference to the joined layer.
QgsVectorLayer * joinLayer() const
Returns joined layer (may be nullptr if the reference was set by layer ID and not resolved yet)
QgsVectorLayerProperties(QgsMapCanvas *canvas, QgsMessageBar *messageBar, QgsVectorLayer *lyr=nullptr, QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags)
void optionsStackedWidget_CurrentChanged(int index) override
void addPropertiesPageFactory(const QgsMapLayerConfigWidgetFactory *factory)
Adds a properties page factory to the vector layer properties dialog.
void toggleEditing(QgsMapLayer *)
void exportAuxiliaryLayer(QgsAuxiliaryLayer *layer)
The QgsVectorLayerSaveStyleDialog class provides the UI to save the current style or multiple styles ...
Represents a vector layer which manages a vector based data sets.
void setAuxiliaryLayer(QgsAuxiliaryLayer *layer=nullptr)
Sets the current auxiliary layer.
virtual void saveStyleToDatabase(const QString &name, const QString &description, bool useAsDefault, const QString &uiFileContent, QString &msgError, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Saves named and sld style of the layer to the style table in the db.
Q_INVOKABLE QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
bool addJoin(const QgsVectorLayerJoinInfo &joinInfo)
Joins another vector layer to this layer.
QSet< QgsMapLayerDependency > dependencies() const FINAL
Gets the list of dependencies.
long long featureCount(const QString &legendKey) const
Number of features rendered with specified legend key.
virtual int listStylesInDatabase(QStringList &ids, QStringList &names, QStringList &descriptions, QString &msgError)
Lists all the style in db split into related to the layer and not related to.
void updateFields()
Will regenerate the fields property of this layer by obtaining all fields from the dataProvider,...
bool isSpatial() const FINAL
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
virtual QString loadNamedStyle(const QString &theURI, bool &resultFlag, bool loadFromLocalDb, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Loads a named style from file/local db/datasource db.
QString htmlMetadata() const FINAL
Obtain a formatted HTML string containing assorted metadata for this layer.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
void setSimplifyMethod(const QgsVectorSimplifyMethod &simplifyMethod)
Sets the simplification settings for fast rendering of features.
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
virtual QString getStyleFromDatabase(const QString &styleId, QString &msgError)
Returns the named style corresponding to style id provided.
QgsAuxiliaryLayer * auxiliaryLayer()
Returns the current auxiliary layer.
bool setDependencies(const QSet< QgsMapLayerDependency > &layers) FINAL
Sets the list of dependencies.
void setProviderEncoding(const QString &encoding)
Sets the text encoding of the data provider.
void setDisplayExpression(const QString &displayExpression)
Set the preview expression, used to create a human readable preview string.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
bool isEditable() const FINAL
Returns true if the provider is in editing mode.
QStringList commitErrors() const
Returns a list containing any error messages generated when attempting to commit changes to the layer...
virtual void updateExtents(bool force=false)
Update the extents for the layer.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
QString displayExpression
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
QgsAttributeTableConfig attributeTableConfig() const
Returns the attribute table configuration object.
QgsActionManager * actions()
Returns all layer actions defined on this layer.
void setAttributeTableConfig(const QgsAttributeTableConfig &attributeTableConfig)
Sets the attribute table configuration object.
virtual bool setSubsetString(const QString &subset)
Sets the string (typically sql) used to define a subset of the layer.
const QgsVectorSimplifyMethod & simplifyMethod() const
Returns the simplification settings for fast rendering of features.
const QList< QgsVectorLayerJoinInfo > vectorJoins() const
This class contains information how to simplify geometries fetched from a vector layer.
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported,...
void setSimplifyHints(SimplifyHints simplifyHints)
Sets the simplification hints of the vector layer managed.
float maximumScale() const
Gets the maximum scale at which the layer should be simplified.
void setThreshold(float threshold)
Sets the simplification threshold of the vector layer managed.
void setSimplifyAlgorithm(SimplifyAlgorithm simplifyAlgorithm)
Sets the local simplification algorithm of the vector layer managed.
void setForceLocalOptimization(bool localOptimization)
Sets where the simplification executes, after fetch the geometries from provider, or when supported,...
SimplifyHints simplifyHints() const
Gets the simplification hints of the vector layer managed.
SimplifyAlgorithm simplifyAlgorithm() const
Gets the local simplification algorithm of the vector layer managed.
float threshold() const
Gets the simplification threshold of the vector layer managed.
@ GeometrySimplification
The geometries can be simplified using the current map2pixel context state.
@ AntialiasingSimplification
The geometries can be rendered with 'AntiAliasing' disabled because of it is '1-pixel size'.
@ NoSimplification
No simplification can be applied.
SimplifyAlgorithm
Types of local simplification algorithms that can be used.
@ Distance
The simplification uses the distance between points to remove duplicate points.
@ SnapToGrid
The simplification uses a grid (similar to ST_SnapToGrid) to remove duplicate points.
@ Visvalingam
The simplification gives each point in a line an importance weighting, so that least important points...
void setMaximumScale(float maximumScale)
Sets the maximum scale at which the layer should be simplified.
The QgsWmsDimensionDialog class provides an interface for WMS/OAPIF (WFS3) dimensions configuration A...
#define Q_NOWARN_DEPRECATED_POP
#define Q_NOWARN_DEPRECATED_PUSH
const QgsCoordinateReferenceSystem & crs
Setting options for creating vector data providers.
Setting to define QGIS Server WMS Dimension.