77#include <QDesktopServices>
87#include <QColorDialog>
90#include <QRegularExpressionValidator>
102 , mMessageBar( messageBar )
104 , mOriginalSubsetSQL( lyr->subsetString() )
107 connect( pbnQueryBuilder, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnQueryBuilder_clicked );
108 connect( pbnIndex, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnIndex_clicked );
110 connect( pbnUpdateExtents, &QPushButton::clicked,
this, &QgsVectorLayerProperties::pbnUpdateExtents_clicked );
111 connect( mButtonAddJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonAddJoin_clicked );
112 connect( mButtonEditJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonEditJoin_clicked );
113 connect( mJoinTreeWidget, &QTreeWidget::itemDoubleClicked,
this, &QgsVectorLayerProperties::mJoinTreeWidget_itemDoubleClicked );
114 connect( mButtonRemoveJoin, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonRemoveJoin_clicked );
115 connect( mButtonAddWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonAddWmsDimension_clicked );
116 connect( mButtonEditWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonEditWmsDimension_clicked );
117 connect( mWmsDimensionsTreeWidget, &QTreeWidget::itemDoubleClicked,
this, &QgsVectorLayerProperties::mWmsDimensionsTreeWidget_itemDoubleClicked );
118 connect( mButtonRemoveWmsDimension, &QPushButton::clicked,
this, &QgsVectorLayerProperties::mButtonRemoveWmsDimension_clicked );
119 connect( mSimplifyDrawingGroupBox, &QGroupBox::toggled,
this, &QgsVectorLayerProperties::mSimplifyDrawingGroupBox_toggled );
120 connect( buttonRemoveMetadataUrl, &QPushButton::clicked,
this, &QgsVectorLayerProperties::removeSelectedMetadataUrl );
121 connect( buttonAddMetadataUrl, &QPushButton::clicked,
this, &QgsVectorLayerProperties::addMetadataUrl );
122 connect( buttonBox, &QDialogButtonBox::helpRequested,
this, &QgsVectorLayerProperties::showHelp );
129 mBtnStyle =
new QPushButton( tr(
"Style" ),
this );
130 QMenu *menuStyle =
new QMenu(
this );
131 mActionLoadStyle =
new QAction( tr(
"Load Style…" ),
this );
134 mActionSaveStyle =
new QAction( tr(
"Save Current Style…" ),
this );
137 mActionSaveMultipleStyles =
new QAction( tr(
"Save Multiple Styles…" ),
this );
138 connect( mActionSaveMultipleStyles, &QAction::triggered,
this, &QgsVectorLayerProperties::saveMultipleStylesAs );
140 mSourceGroupBox->hide();
142 mBtnStyle->setMenu( menuStyle );
143 connect( menuStyle, &QMenu::aboutToShow,
this, &QgsVectorLayerProperties::aboutToShowStyleMenu );
144 buttonBox->addButton( mBtnStyle, QDialogButtonBox::ResetRole );
146 mBtnMetadata =
new QPushButton( tr(
"Metadata" ),
this );
147 QMenu *menuMetadata =
new QMenu(
this );
148 mActionLoadMetadata = menuMetadata->addAction( tr(
"Load Metadata…" ),
this, &QgsVectorLayerProperties::loadMetadata );
149 mActionSaveMetadataAs = menuMetadata->addAction( tr(
"Save Metadata…" ),
this, &QgsVectorLayerProperties::saveMetadataAs );
150 menuMetadata->addSeparator();
151 menuMetadata->addAction( tr(
"Save as Default" ),
this, &QgsVectorLayerProperties::saveDefaultMetadata );
152 menuMetadata->addAction( tr(
"Restore Default" ),
this, &QgsVectorLayerProperties::loadDefaultMetadata );
153 mBtnMetadata->setMenu( menuMetadata );
154 buttonBox->addButton( mBtnMetadata, QDialogButtonBox::ResetRole );
158 connect( buttonBox->button( QDialogButtonBox::Apply ), &QAbstractButton::clicked,
this, &QgsVectorLayerProperties::apply );
159 connect(
this, &QDialog::accepted,
this, &QgsVectorLayerProperties::apply );
160 connect(
this, &QDialog::rejected,
this, &QgsVectorLayerProperties::onCancel );
168 mMapTipExpressionFieldWidget->setLayer( lyr );
169 mMapTipExpressionFieldWidget->registerExpressionContextGenerator(
this );
170 mDisplayExpressionWidget->setLayer( lyr );
171 mDisplayExpressionWidget->registerExpressionContextGenerator(
this );
174 connect( mInsertExpressionButton, &QAbstractButton::clicked,
this, &QgsVectorLayerProperties::insertFieldOrExpression );
179 connect( mEnableMapTips, &QAbstractButton::toggled, mHtmlMapTipGroupBox, &QWidget::setEnabled );
182 QVBoxLayout *layout =
nullptr;
187 layout =
new QVBoxLayout( labelingFrame );
188 layout->setContentsMargins( 0, 0, 0, 0 );
190 labelingDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
192 layout->addWidget( labelingDialog );
193 labelingFrame->setLayout( layout );
196 layout =
new QVBoxLayout( mMaskingFrame );
197 layout->setContentsMargins( 0, 0, 0, 0 );
198 mMaskingWidget =
new QgsMaskingWidget( mMaskingFrame );
199 mMaskingWidget->setLayer( mLayer );
200 mMaskingWidget->layout()->setContentsMargins( 0, 0, 0, 0 );
201 layout->addWidget( mMaskingWidget );
202 mMaskingFrame->setLayout( layout );
206 labelingDialog =
nullptr;
207 mOptsPage_Labels->setEnabled(
false );
208 mOptsPage_Masks->setEnabled(
false );
209 mGeomGroupBox->setEnabled(
false );
210 mGeomGroupBox->setVisible(
false );
211 mCrsGroupBox->setEnabled(
false );
212 mCrsGroupBox->setVisible(
false );
216 QVBoxLayout *actionLayout =
new QVBoxLayout( actionOptionsFrame );
217 actionLayout->setContentsMargins( 0, 0, 0, 0 );
219 mActionDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
220 actionLayout->addWidget( mActionDialog );
223 mSourceFieldsPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
224 mSourceFieldsFrame->setLayout(
new QVBoxLayout( mSourceFieldsFrame ) );
225 mSourceFieldsFrame->layout()->setContentsMargins( 0, 0, 0, 0 );
226 mSourceFieldsFrame->layout()->addWidget( mSourceFieldsPropertiesDialog );
231 mAttributesFormPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
232 mAttributesFormFrame->setLayout(
new QVBoxLayout( mAttributesFormFrame ) );
233 mAttributesFormFrame->layout()->setContentsMargins( 0, 0, 0, 0 );
234 mAttributesFormFrame->layout()->addWidget( mAttributesFormPropertiesDialog );
237 QVBoxLayout *metadataLayout =
new QVBoxLayout( metadataFrame );
238 metadataLayout->setContentsMargins( 0, 0, 0, 0 );
240 mMetadataWidget->layout()->setContentsMargins( 0, 0, 0, 0 );
242 metadataLayout->addWidget( mMetadataWidget );
243 metadataFrame->setLayout( metadataLayout );
245 QVBoxLayout *temporalLayout =
new QVBoxLayout( temporalFrame );
246 temporalLayout->setContentsMargins( 0, 0, 0, 0 );
248 temporalLayout->addWidget( mTemporalWidget );
258 pbnIndex->setEnabled(
false );
262 pbnIndex->setEnabled(
false );
263 pbnIndex->setText( tr(
"Spatial Index Exists" ) );
270 int encindex = cboProviderEncoding->findText( enc );
273 cboProviderEncoding->insertItem( 0, enc );
276 cboProviderEncoding->setCurrentIndex( encindex );
278 else if ( mLayer->
providerType() == QLatin1String(
"ogr" ) )
283 cboProviderEncoding->setEnabled(
false );
288 mDataSourceEncodingFrame->hide();
292 mCrsSelector->setCrs( mLayer->
crs() );
295 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
298 addJoinToTreeWidget( join );
303 QVBoxLayout *diagLayout =
new QVBoxLayout( mDiagramFrame );
304 diagLayout->setContentsMargins( 0, 0, 0, 0 );
306 diagramPropertiesDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
308 diagLayout->addWidget( diagramPropertiesDialog );
309 mDiagramFrame->setLayout( diagLayout );
312 mLegendWidget->setMapCanvas( mCanvas );
313 mLegendWidget->setLayer( mLayer );
314 mLegendConfigEmbeddedWidget->setLayer( mLayer );
317 mLayerShortNameLineEdit->setText( mLayer->
shortName() );
320 mLayerShortNameLineEdit->setValidator( shortNameValidator );
323 mLayerTitleLineEdit->setText( mLayer->
title() );
324 mLayerAbstractTextEdit->setPlainText( mLayer->
abstract() );
325 mLayerKeywordListLineEdit->setText( mLayer->
keywordList() );
326 mLayerDataUrlLineEdit->setText( mLayer->
dataUrl() );
327 mLayerDataUrlFormatComboBox->setCurrentIndex(
328 mLayerDataUrlFormatComboBox->findText(
333 mLayerAttributionLineEdit->setText( mLayer->
attribution() );
334 mLayerAttributionUrlLineEdit->setText( mLayer->
attributionUrl() );
337 tableViewMetadataUrl->setSelectionMode( QAbstractItemView::SingleSelection );
338 tableViewMetadataUrl->setSelectionBehavior( QAbstractItemView::SelectRows );
339 tableViewMetadataUrl->horizontalHeader()->setStretchLastSection(
true );
340 tableViewMetadataUrl->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch );
342 mMetadataUrlModel =
new QStandardItemModel( tableViewMetadataUrl );
343 mMetadataUrlModel->clear();
344 mMetadataUrlModel->setColumnCount( 3 );
345 QStringList metadataUrlHeaders;
346 metadataUrlHeaders << tr(
"URL" ) << tr(
"Type" ) << tr(
"Format" );
347 mMetadataUrlModel->setHorizontalHeaderLabels( metadataUrlHeaders );
348 tableViewMetadataUrl->setModel( mMetadataUrlModel );
349 tableViewMetadataUrl->setItemDelegate(
new MetadataUrlItemDelegate(
this ) );
354 const int row = mMetadataUrlModel->rowCount();
355 mMetadataUrlModel->setItem( row, 0,
new QStandardItem( metaUrl.url ) );
356 mMetadataUrlModel->setItem( row, 1,
new QStandardItem( metaUrl.type ) );
357 mMetadataUrlModel->setItem( row, 2,
new QStandardItem( metaUrl.format ) );
361 mLayerLegendUrlLineEdit->setText( mLayer->
legendUrl() );
362 mLayerLegendUrlFormatComboBox->setCurrentIndex(
363 mLayerLegendUrlFormatComboBox->findText(
370 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &wmsDims = serverProperties->
wmsDimensions();
373 addWmsDimensionInfoToTreeWidget( dim );
377 myStyle.append( QStringLiteral(
"body { margin: 10px; }\n " ) );
378 teMetadataViewer->clear();
379 teMetadataViewer->document()->setDefaultStyleSheet( myStyle );
380 teMetadataViewer->setHtml( htmlMetadata() );
381 teMetadataViewer->setOpenLinks(
false );
382 connect( teMetadataViewer, &QTextBrowser::anchorClicked,
this, &QgsVectorLayerProperties::urlClicked );
383 mMetadataFilled =
true;
388 if ( !settings.
contains( QStringLiteral(
"/Windows/VectorLayerProperties/tab" ) ) )
390 settings.
setValue( QStringLiteral(
"Windows/VectorLayerProperties/tab" ),
394 QString title = tr(
"Layer Properties — %1" ).arg( mLayer->
name() );
399 QList<QgsMapLayer *> dependencySources;
400 const QSet<QgsMapLayerDependency> constDependencies = mLayer->
dependencies();
405 dependencySources << layer;
411 connect(
QgsProject::instance(), &QObject::destroyed,
this, [ = ] {mLayersDependenciesTreeView->setModel(
nullptr );} );
412 mLayersDependenciesTreeView->setModel( mLayersDependenciesTreeModel );
414 connect( mRefreshLayerCheckBox, &QCheckBox::toggled, mRefreshLayerIntervalSpinBox, &QDoubleSpinBox::setEnabled );
417 QMenu *menu =
new QMenu(
this );
419 mAuxiliaryLayerActionNew =
new QAction( tr(
"Create" ),
this );
420 menu->addAction( mAuxiliaryLayerActionNew );
421 connect( mAuxiliaryLayerActionNew, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerNew );
423 mAuxiliaryLayerActionClear =
new QAction( tr(
"Clear" ),
this );
424 menu->addAction( mAuxiliaryLayerActionClear );
425 connect( mAuxiliaryLayerActionClear, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerClear );
427 mAuxiliaryLayerActionDelete =
new QAction( tr(
"Delete" ),
this );
428 menu->addAction( mAuxiliaryLayerActionDelete );
429 connect( mAuxiliaryLayerActionDelete, &QAction::triggered,
this, &QgsVectorLayerProperties::onAuxiliaryLayerDelete );
431 mAuxiliaryLayerActionExport =
new QAction( tr(
"Export" ),
this );
432 menu->addAction( mAuxiliaryLayerActionExport );
435 mAuxiliaryStorageActions->setMenu( menu );
437 connect( mAuxiliaryStorageFieldsDeleteBtn, &QPushButton::clicked,
this, &QgsVectorLayerProperties::onAuxiliaryLayerDeleteField );
438 connect( mAuxiliaryStorageFieldsAddBtn, &QPushButton::clicked,
this, &QgsVectorLayerProperties::onAuxiliaryLayerAddField );
440 updateAuxiliaryStoragePage();
442 mOptsPage_Information->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#information-properties" ) );
443 mOptsPage_Source->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#source-properties" ) );
444 mOptsPage_Style->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#symbology-properties" ) );
445 mOptsPage_Labels->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#labels-properties" ) );
446 mOptsPage_Masks->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#masks-properties" ) );
447 mOptsPage_Diagrams->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#diagrams-properties" ) );
448 mOptsPage_SourceFields->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#fields-properties" ) );
449 mOptsPage_AttributesForm->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#attributes-form-properties" ) );
450 mOptsPage_Joins->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#joins-properties" ) );
451 mOptsPage_AuxiliaryStorage->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#auxiliary-storage-properties" ) );
452 mOptsPage_Actions->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#actions-properties" ) );
453 mOptsPage_Display->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#display-properties" ) );
454 mOptsPage_Rendering->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#rendering-properties" ) );
455 mOptsPage_Temporal->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#temporal-properties" ) );
456 mOptsPage_Variables->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#variables-properties" ) );
457 mOptsPage_Metadata->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#metadata-properties" ) );
458 mOptsPage_DataDependencies->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#dependencies-properties" ) ) ;
459 mOptsPage_Legend->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#legend-properties" ) );
460 mOptsPage_Server->setProperty(
"helpPage", QStringLiteral(
"working_with_vector/vector_properties.html#qgis-server-properties" ) );
466void QgsVectorLayerProperties::toggleEditing()
471 emit toggleEditing( mLayer );
473 setPbnQueryBuilderEnabled();
487 mLayerPropertiesPages << page;
490 if ( beforePage.isEmpty() )
497void QgsVectorLayerProperties::insertFieldOrExpression()
501 QString expression = QStringLiteral(
"[% " );
502 expression += mMapTipExpressionFieldWidget->asExpression();
503 expression += QLatin1String(
" %]" );
505 mMapTipWidget->insertText( expression );
508void QgsVectorLayerProperties::addMetadataUrl()
510 const int row = mMetadataUrlModel->rowCount();
511 mMetadataUrlModel->setItem( row, 0,
new QStandardItem( QLatin1String() ) );
512 mMetadataUrlModel->setItem( row, 1,
new QStandardItem( QLatin1String() ) );
513 mMetadataUrlModel->setItem( row, 2,
new QStandardItem( QLatin1String() ) );
516void QgsVectorLayerProperties::removeSelectedMetadataUrl()
518 const QModelIndexList selectedRows = tableViewMetadataUrl->selectionModel()->selectedRows();
519 if ( selectedRows.empty() )
521 mMetadataUrlModel->removeRow( selectedRows[0].row() );
525void QgsVectorLayerProperties::syncToLayer()
527 if ( !mSourceWidget )
532 QHBoxLayout *layout =
new QHBoxLayout();
533 layout->addWidget( mSourceWidget );
534 mSourceGroupBox->setLayout( layout );
535 mSourceGroupBox->show();
539 buttonBox->button( QDialogButtonBox::Apply )->setEnabled( isValid );
540 buttonBox->button( QDialogButtonBox::Ok )->setEnabled( isValid );
549 mLayerOrigNameLineEdit->setText( mLayer->
name() );
550 mBackupCrs = mLayer->
crs();
552 mSubsetGroupBox->setEnabled(
true );
559 txtSubsetSQL->setReadOnly(
true );
560 txtSubsetSQL->setCaretWidth( 0 );
561 txtSubsetSQL->setCaretLineVisible(
false );
562 setPbnQueryBuilderEnabled();
571 mScaleRangeWidget->setMapCanvas( mCanvas );
574 mReferenceScaleWidget->setShowCurrentScaleButton(
true );
575 mReferenceScaleWidget->setMapCanvas( mCanvas );
576 if ( mUseReferenceScaleGroupBox->isChecked() )
579 mReferenceScaleWidget->setScale( mCanvas->
scale() );
584 mSimplifyDrawingSpinBox->setValue( simplifyMethod.
threshold() );
585 mSimplifyDrawingSpinBox->setClearValue( 1.0 );
587 QString remark = QStringLiteral(
" (%1)" ).arg( tr(
"Not supported" ) );
591 mSimplifyDrawingAtProvider->setChecked(
false );
592 mSimplifyDrawingAtProvider->setEnabled(
false );
593 if ( !mSimplifyDrawingAtProvider->text().endsWith( remark ) )
594 mSimplifyDrawingAtProvider->setText( mSimplifyDrawingAtProvider->text().append( remark ) );
599 mSimplifyDrawingAtProvider->setEnabled( mSimplifyDrawingGroupBox->isChecked() );
600 if ( mSimplifyDrawingAtProvider->text().endsWith( remark ) )
602 QString newText = mSimplifyDrawingAtProvider->text();
603 newText.chop( remark.size() );
604 mSimplifyDrawingAtProvider->setText( newText );
609 if ( mLayer->
geometryType() == Qgis::GeometryType::Point )
611 mSimplifyDrawingGroupBox->setChecked(
false );
612 mSimplifyDrawingGroupBox->setEnabled(
false );
619 mSimplifyAlgorithmComboBox->setCurrentIndex( mSimplifyAlgorithmComboBox->findData( simplifyMethod.
simplifyAlgorithm() ) );
622 myScalesList.append( QStringLiteral(
"1:1" ) );
623 mSimplifyMaximumScaleComboBox->updateScales( myScalesList );
624 mSimplifyMaximumScaleComboBox->setScale( simplifyMethod.
maximumScale() );
638 updateSymbologyPage();
642 if ( labelingDialog )
645 mSourceFieldsPropertiesDialog->
init();
646 mAttributesFormPropertiesDialog->
init();
649 updateVariableEditor();
651 if ( diagramPropertiesDialog )
655 const auto constMLayerPropertiesPages = mLayerPropertiesPages;
658 page->syncToLayer( mLayer );
665 mLegendWidget->setLayer( mLayer );
669void QgsVectorLayerProperties::apply()
673 const QString newSource = mSourceWidget->
sourceUri();
674 if ( newSource != mLayer->
source() )
681 if ( labelingDialog )
685 mBackupCrs = mLayer->
crs();
687 mLegendWidget->applyToLayer();
688 mLegendConfigEmbeddedWidget->applyToLayer();
692 mMetadataFilled =
false;
695 if ( mMaskingWidget && mMaskingWidget->hasBeenPopulated() )
696 mMaskingWidget->apply();
701 mSubsetGroupBox->setEnabled(
true );
707 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;
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." ) );
1032 if ( defaultLoadedFlag )
1041 QMessageBox::information(
this, tr(
"Default Style" ), myMessage );
1054 QMessageBox askToUser;
1055 askToUser.setText( tr(
"Save default style to: " ) );
1056 askToUser.setIcon( QMessageBox::Question );
1057 askToUser.addButton( tr(
"Cancel" ), QMessageBox::RejectRole );
1058 askToUser.addButton( tr(
"Local Database" ), QMessageBox::NoRole );
1059 askToUser.addButton( tr(
"Datasource Database" ), QMessageBox::YesRole );
1061 switch ( askToUser.exec() )
1067 QString errorMessage;
1070 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1071 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1072 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1077 else if ( !errorMessage.isEmpty() )
1079 QMessageBox::warning(
nullptr, QObject::tr(
"Save style in database" ),
1085 if ( errorMsg.isNull() )
1096 bool defaultSavedFlag =
false;
1102 if ( !defaultSavedFlag )
1104 QMessageBox::warning(
this, tr(
"Default Style" ), errorMsg );
1108void QgsVectorLayerProperties::loadMetadata()
1111 QString myLastUsedDir = myQSettings.
value( QStringLiteral(
"style/lastStyleDir" ), QDir::homePath() ).toString();
1113 QString myFileName = QFileDialog::getOpenFileName(
this, tr(
"Load Layer Metadata from Metadata File" ), myLastUsedDir,
1114 tr(
"QGIS Layer Metadata File" ) +
" (*.qmd)" );
1115 if ( myFileName.isNull() )
1121 bool defaultLoadedFlag =
false;
1125 if ( defaultLoadedFlag )
1132 QMessageBox::warning(
this, tr(
"Load Metadata" ), myMessage );
1135 QFileInfo myFI( myFileName );
1136 QString myPath = myFI.path();
1137 myQSettings.
setValue( QStringLiteral(
"style/lastStyleDir" ), myPath );
1142void QgsVectorLayerProperties::saveMetadataAs()
1145 QString myLastUsedDir = myQSettings.
value( QStringLiteral(
"style/lastStyleDir" ), QDir::homePath() ).toString();
1147 QString myOutputFileName = QFileDialog::getSaveFileName(
this, tr(
"Save Layer Metadata as QMD" ),
1148 myLastUsedDir, tr(
"QMD File" ) +
" (*.qmd)" );
1149 if ( myOutputFileName.isNull() )
1163 bool defaultLoadedFlag =
false;
1167 if ( defaultLoadedFlag )
1174 QMessageBox::information(
this, tr(
"Save Metadata" ), myMessage );
1177 QFileInfo myFI( myOutputFileName );
1178 QString myPath = myFI.path();
1180 myQSettings.
setValue( QStringLiteral(
"style/lastStyleDir" ), myPath );
1183void QgsVectorLayerProperties::saveDefaultMetadata()
1187 bool defaultSavedFlag =
false;
1189 if ( !defaultSavedFlag )
1191 QMessageBox::warning(
this, tr(
"Default Metadata" ), errorMsg );
1195void QgsVectorLayerProperties::loadDefaultMetadata()
1197 bool defaultLoadedFlag =
false;
1200 if ( defaultLoadedFlag )
1206 QMessageBox::information(
this, tr(
"Default Metadata" ), myMessage );
1222 bool defaultLoadedFlag =
false;
1223 QString errorMessage;
1237 errorMessage = mLayer->
saveSldStyleV2( defaultLoadedFlag, sldContext );
1241 if ( defaultLoadedFlag )
1248 QMessageBox::information(
this, tr(
"Save Style" ), errorMessage );
1255 QString infoWindowTitle = QObject::tr(
"Save style to DB (%1)" ).arg( mLayer->
providerType() );
1261 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1262 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1263 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1268 else if ( !errorMessage.isEmpty() )
1270 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1276 if ( !errorMessage.isNull() )
1278 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1282 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style saved" ), Qgis::MessageLevel::Success );
1288 QString infoWindowTitle = tr(
"Save default style to local database" );
1290 if ( !defaultLoadedFlag )
1292 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1296 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style saved" ), Qgis::MessageLevel::Success );
1304void QgsVectorLayerProperties::saveMultipleStylesAs()
1307 dlg.setSaveOnlyCurrentStyle(
false );
1316 const QListWidget *stylesWidget { dlg.stylesWidget() };
1319 QStringList stylesSelected;
1320 for (
int i = 0; i < stylesWidget->count(); i++ )
1322 if ( stylesWidget->item( i )->checkState() == Qt::CheckState::Checked )
1324 stylesSelected.push_back( stylesWidget->item( i )->text() );
1328 if ( ! stylesSelected.isEmpty() )
1331 for (
const QString &styleName : std::as_const( stylesSelected ) )
1333 bool defaultLoadedFlag =
false;
1335 StyleType type = dlg.currentStyleType();
1343 const QString filePath { dlg.outputFilePath() };
1344 QString safePath { filePath };
1345 if ( styleIndex > 0 && stylesSelected.count( ) > 1 )
1348 while ( QFile::exists( safePath ) )
1350 const QFileInfo fi { filePath };
1351 safePath = QString( filePath ).replace(
'.' + fi.completeSuffix(),
1352 QStringLiteral(
"_%1.%2" ).arg( QString::number( i ), fi.completeSuffix() ) );
1357 message = mLayer->
saveNamedStyle( safePath, defaultLoadedFlag, dlg.styleCategories() );
1359 message = mLayer->
saveSldStyle( safePath, defaultLoadedFlag );
1362 if ( defaultLoadedFlag )
1369 QMessageBox::information(
this, tr(
"Save Style" ), message );
1376 QString infoWindowTitle = QObject::tr(
"Save style '%1' to DB (%2)" )
1383 QString name { dbSettings.
name };
1384 if ( name.isEmpty() )
1390 QStringList ids, names, descriptions;
1393 while ( names.contains( name ) )
1395 name = QStringLiteral(
"%1 %2" ).arg( name, QString::number( i ) );
1400 QString errorMessage;
1403 if ( QMessageBox::question(
nullptr, QObject::tr(
"Save style in database" ),
1404 QObject::tr(
"A matching style already exists in the database for this layer. Do you want to overwrite it?" ),
1405 QMessageBox::Yes | QMessageBox::No ) == QMessageBox::No )
1410 else if ( !errorMessage.isEmpty() )
1412 mMessageBar->
pushMessage( infoWindowTitle, errorMessage, Qgis::MessageLevel::Warning );
1418 if ( !msgError.isNull() )
1420 mMessageBar->
pushMessage( infoWindowTitle, msgError, Qgis::MessageLevel::Warning );
1424 mMessageBar->
pushMessage( infoWindowTitle, tr(
"Style '%1' saved" ).arg( styleName ),
1425 Qgis::MessageLevel::Success );
1440void QgsVectorLayerProperties::aboutToShowStyleMenu()
1443 QMenu *m = qobject_cast<QMenu *>( sender() );
1446 m->addAction( mActionLoadStyle );
1447 m->addAction( mActionSaveStyle );
1452 mActionSaveStyle->setText( tr(
"Save Current Style…" ) );
1453 m->addAction( mActionSaveMultipleStyles );
1457 mActionSaveStyle->setText( tr(
"Save Style…" ) );
1474 QStringList ids, names, descriptions;
1486 bool defaultLoadedFlag =
false;
1495 errorMsg = mLayer->
loadSldStyle( filePath, defaultLoadedFlag );
1499 errorMsg = mLayer->
loadNamedStyle( filePath, defaultLoadedFlag,
true, categories );
1502 if ( defaultLoadedFlag )
1510 QMessageBox::warning(
this, tr(
"Load Style" ), errorMsg );
1519 if ( !errorMsg.isNull() )
1521 QMessageBox::warning(
this, tr(
"Load Styles from Database" ), errorMsg );
1525 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
1526 myDocument.setContent( qmlStyle );
1535 QMessageBox::warning(
this, tr(
"Load Styles from Database" ),
1536 tr(
"The retrieved style is not a valid named style. Error message: %1" )
1545 if ( defaultLoadedFlag )
1552 QMessageBox::warning(
this, tr(
"Load Default Style" ), errorMsg );
1561void QgsVectorLayerProperties::mButtonAddJoin_clicked()
1566 QList<QgsMapLayer *> joinedLayers;
1567 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
1568 joinedLayers.reserve( joins.size() );
1569 for (
int i = 0; i < joins.size(); ++i )
1571 joinedLayers.append( joins[i].joinLayer() );
1575 if ( d.exec() == QDialog::Accepted )
1579 if ( d.createAttributeIndex() )
1588 addJoinToTreeWidget( info );
1589 setPbnQueryBuilderEnabled();
1590 mSourceFieldsPropertiesDialog->
init();
1591 mAttributesFormPropertiesDialog->
init();
1595void QgsVectorLayerProperties::mButtonEditJoin_clicked()
1597 QTreeWidgetItem *currentJoinItem = mJoinTreeWidget->currentItem();
1598 mJoinTreeWidget_itemDoubleClicked( currentJoinItem, 0 );
1601void QgsVectorLayerProperties::mJoinTreeWidget_itemDoubleClicked( QTreeWidgetItem *item,
int )
1603 if ( !mLayer || !item )
1608 QList<QgsMapLayer *> joinedLayers;
1609 QString joinLayerId = item->data( 0, Qt::UserRole ).toString();
1610 const QList< QgsVectorLayerJoinInfo > &joins = mLayer->
vectorJoins();
1612 for (
int i = 0; i < joins.size(); ++i )
1618 if ( joinLayer->
id() == joinLayerId )
1625 joinedLayers.append( joinLayer );
1634 d.setWindowTitle( tr(
"Edit Vector Join" ) );
1635 d.setJoinInfo( joins[j] );
1637 if ( d.exec() == QDialog::Accepted )
1643 int idx = mJoinTreeWidget->indexOfTopLevelItem( item );
1644 mJoinTreeWidget->takeTopLevelItem( idx );
1649 if ( d.createAttributeIndex() )
1658 addJoinToTreeWidget( info, idx );
1660 setPbnQueryBuilderEnabled();
1661 mSourceFieldsPropertiesDialog->
init();
1662 mAttributesFormPropertiesDialog->
init();
1666void QgsVectorLayerProperties::addJoinToTreeWidget(
const QgsVectorLayerJoinInfo &join,
const int insertIndex )
1668 QTreeWidgetItem *joinItem =
new QTreeWidgetItem();
1669 joinItem->setFlags( Qt::ItemIsEnabled );
1672 if ( !mLayer || !joinLayer )
1677 joinItem->setText( 0, tr(
"Join layer" ) );
1683 joinItem->setText( 1, joinLayer->
name() );
1685 QFont f = joinItem->font( 0 );
1687 joinItem->setFont( 0, f );
1688 joinItem->setFont( 1, f );
1690 joinItem->setData( 0, Qt::UserRole, join.
joinLayerId() );
1692 QTreeWidgetItem *childJoinField =
new QTreeWidgetItem();
1693 childJoinField->setText( 0, tr(
"Join field" ) );
1695 childJoinField->setFlags( Qt::ItemIsEnabled );
1696 joinItem->addChild( childJoinField );
1698 QTreeWidgetItem *childTargetField =
new QTreeWidgetItem();
1699 childTargetField->setText( 0, tr(
"Target field" ) );
1701 joinItem->addChild( childTargetField );
1703 QTreeWidgetItem *childMemCache =
new QTreeWidgetItem();
1704 childMemCache->setText( 0, tr(
"Cache join layer in virtual memory" ) );
1706 childMemCache->setText( 1, QChar( 0x2714 ) );
1707 joinItem->addChild( childMemCache );
1709 QTreeWidgetItem *childDynForm =
new QTreeWidgetItem();
1710 childDynForm->setText( 0, tr(
"Dynamic form" ) );
1712 childDynForm->setText( 1, QChar( 0x2714 ) );
1713 joinItem->addChild( childDynForm );
1715 QTreeWidgetItem *childEditable =
new QTreeWidgetItem();
1716 childEditable->setText( 0, tr(
"Editable join layer" ) );
1718 childEditable->setText( 1, QChar( 0x2714 ) );
1719 joinItem->addChild( childEditable );
1721 QTreeWidgetItem *childUpsert =
new QTreeWidgetItem();
1722 childUpsert->setText( 0, tr(
"Upsert on edit" ) );
1724 childUpsert->setText( 1, QChar( 0x2714 ) );
1725 joinItem->addChild( childUpsert );
1727 QTreeWidgetItem *childCascade =
new QTreeWidgetItem();
1728 childCascade->setText( 0, tr(
"Delete cascade" ) );
1730 childCascade->setText( 1, QChar( 0x2714 ) );
1731 joinItem->addChild( childCascade );
1733 QTreeWidgetItem *childPrefix =
new QTreeWidgetItem();
1734 childPrefix->setText( 0, tr(
"Custom field name prefix" ) );
1735 childPrefix->setText( 1, join.
prefix() );
1736 joinItem->addChild( childPrefix );
1738 QTreeWidgetItem *childFields =
new QTreeWidgetItem();
1739 childFields->setText( 0, tr(
"Joined fields" ) );
1742 childFields->setText( 1, QLocale().toString( list->count() ) );
1744 childFields->setText( 1, tr(
"all" ) );
1745 joinItem->addChild( childFields );
1747 if ( insertIndex >= 0 )
1748 mJoinTreeWidget->insertTopLevelItem( insertIndex, joinItem );
1750 mJoinTreeWidget->addTopLevelItem( joinItem );
1752 mJoinTreeWidget->setCurrentItem( joinItem );
1753 mJoinTreeWidget->header()->setSectionResizeMode( QHeaderView::ResizeToContents );
1763 QDialog *dlg =
new QDialog();
1764 QString key = QStringLiteral(
"/UI/paneldialog/%1" ).arg( panel->
panelTitle() );
1766 dlg->restoreGeometry( settings.
value( key ).toByteArray() );
1768 dlg->setLayout(
new QVBoxLayout() );
1769 dlg->layout()->addWidget( panel );
1770 QDialogButtonBox *buttonBox =
new QDialogButtonBox( QDialogButtonBox::Ok );
1771 connect( buttonBox, &QDialogButtonBox::accepted, dlg, &QDialog::accept );
1772 dlg->layout()->addWidget( buttonBox );
1774 settings.
setValue( key, dlg->saveGeometry() );
1778void QgsVectorLayerProperties::mButtonRemoveJoin_clicked()
1780 QTreeWidgetItem *currentJoinItem = mJoinTreeWidget->currentItem();
1781 if ( !mLayer || !currentJoinItem )
1786 mLayer->
removeJoin( currentJoinItem->data( 0, Qt::UserRole ).toString() );
1787 mJoinTreeWidget->takeTopLevelItem( mJoinTreeWidget->indexOfTopLevelItem( currentJoinItem ) );
1788 setPbnQueryBuilderEnabled();
1789 mSourceFieldsPropertiesDialog->
init();
1790 mAttributesFormPropertiesDialog->
init();
1794void QgsVectorLayerProperties::mButtonAddWmsDimension_clicked()
1800 QStringList alreadyDefinedDimensions;
1802 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &dims = serverProperties->
wmsDimensions();
1805 alreadyDefinedDimensions << dim.name;
1809 if ( d.exec() == QDialog::Accepted )
1814 addWmsDimensionInfoToTreeWidget( info );
1818void QgsVectorLayerProperties::mButtonEditWmsDimension_clicked()
1820 QTreeWidgetItem *currentWmsDimensionItem = mWmsDimensionsTreeWidget->currentItem();
1821 mWmsDimensionsTreeWidget_itemDoubleClicked( currentWmsDimensionItem, 0 );
1824void QgsVectorLayerProperties::mWmsDimensionsTreeWidget_itemDoubleClicked( QTreeWidgetItem *item,
int )
1826 if ( !mLayer || !item )
1831 QString wmsDimName = item->data( 0, Qt::UserRole ).toString();
1833 const QList<QgsMapLayerServerProperties::WmsDimensionInfo> &dims = serverProperties->
wmsDimensions();
1834 QStringList alreadyDefinedDimensions;
1836 for (
int i = 0; i < dims.size(); ++i )
1838 QString dimName = dims[i].name;
1839 if ( dimName == wmsDimName )
1845 alreadyDefinedDimensions << dimName;
1854 d.setWindowTitle( tr(
"Edit WMS Dimension" ) );
1855 d.setInfo( dims[j] );
1857 if ( d.exec() == QDialog::Accepted )
1864 int idx = mWmsDimensionsTreeWidget->indexOfTopLevelItem( item );
1865 mWmsDimensionsTreeWidget->takeTopLevelItem( idx );
1869 addWmsDimensionInfoToTreeWidget( info, idx );
1875 QTreeWidgetItem *wmsDimensionItem =
new QTreeWidgetItem();
1876 wmsDimensionItem->setFlags( Qt::ItemIsEnabled );
1878 wmsDimensionItem->setText( 0, tr(
"Dimension" ) );
1879 wmsDimensionItem->setText( 1, wmsDim.
name );
1881 QFont f = wmsDimensionItem->font( 0 );
1883 wmsDimensionItem->setFont( 0, f );
1884 wmsDimensionItem->setFont( 1, f );
1886 wmsDimensionItem->setData( 0, Qt::UserRole, wmsDim.
name );
1888 QTreeWidgetItem *childWmsDimensionField =
new QTreeWidgetItem();
1889 childWmsDimensionField->setText( 0, tr(
"Field" ) );
1890 childWmsDimensionField->setText( 1, wmsDim.
fieldName );
1891 childWmsDimensionField->setFlags( Qt::ItemIsEnabled );
1892 wmsDimensionItem->addChild( childWmsDimensionField );
1894 QTreeWidgetItem *childWmsDimensionEndField =
new QTreeWidgetItem();
1895 childWmsDimensionEndField->setText( 0, tr(
"End field" ) );
1896 childWmsDimensionEndField->setText( 1, wmsDim.
endFieldName );
1897 childWmsDimensionEndField->setFlags( Qt::ItemIsEnabled );
1898 wmsDimensionItem->addChild( childWmsDimensionEndField );
1900 QTreeWidgetItem *childWmsDimensionUnits =
new QTreeWidgetItem();
1901 childWmsDimensionUnits->setText( 0, tr(
"Units" ) );
1902 childWmsDimensionUnits->setText( 1, wmsDim.
units );
1903 childWmsDimensionUnits->setFlags( Qt::ItemIsEnabled );
1904 wmsDimensionItem->addChild( childWmsDimensionUnits );
1906 QTreeWidgetItem *childWmsDimensionUnitSymbol =
new QTreeWidgetItem();
1907 childWmsDimensionUnitSymbol->setText( 0, tr(
"Unit symbol" ) );
1908 childWmsDimensionUnitSymbol->setText( 1, wmsDim.
unitSymbol );
1909 childWmsDimensionUnitSymbol->setFlags( Qt::ItemIsEnabled );
1910 wmsDimensionItem->addChild( childWmsDimensionUnitSymbol );
1912 QTreeWidgetItem *childWmsDimensionDefaultValue =
new QTreeWidgetItem();
1913 childWmsDimensionDefaultValue->setText( 0, tr(
"Default display" ) );
1915 childWmsDimensionDefaultValue->setFlags( Qt::ItemIsEnabled );
1916 wmsDimensionItem->addChild( childWmsDimensionDefaultValue );
1918 QTreeWidgetItem *childWmsDimensionRefValue =
new QTreeWidgetItem();
1919 childWmsDimensionRefValue->setText( 0, tr(
"Reference value" ) );
1920 childWmsDimensionRefValue->setText( 1, wmsDim.
referenceValue.toString() );
1921 childWmsDimensionRefValue->setFlags( Qt::ItemIsEnabled );
1922 wmsDimensionItem->addChild( childWmsDimensionRefValue );
1924 if ( insertIndex >= 0 )
1925 mWmsDimensionsTreeWidget->insertTopLevelItem( insertIndex, wmsDimensionItem );
1927 mWmsDimensionsTreeWidget->addTopLevelItem( wmsDimensionItem );
1929 mWmsDimensionsTreeWidget->setCurrentItem( wmsDimensionItem );
1930 mWmsDimensionsTreeWidget->header()->setSectionResizeMode( QHeaderView::ResizeToContents );
1933void QgsVectorLayerProperties::mButtonRemoveWmsDimension_clicked()
1935 QTreeWidgetItem *currentWmsDimensionItem = mWmsDimensionsTreeWidget->currentItem();
1936 if ( !mLayer || !currentWmsDimensionItem )
1942 serverProperties->
removeWmsDimension( currentWmsDimensionItem->data( 0, Qt::UserRole ).toString() );
1943 mWmsDimensionsTreeWidget->takeTopLevelItem( mWmsDimensionsTreeWidget->indexOfTopLevelItem( currentWmsDimensionItem ) );
1947void QgsVectorLayerProperties::updateSymbologyPage()
1951 delete mRendererDialog;
1952 mRendererDialog =
nullptr;
1968 mOptsPage_Style->setEnabled(
false );
1971 if ( mRendererDialog )
1973 mRendererDialog->layout()->setContentsMargins( 0, 0, 0, 0 );
1974 widgetStackRenderers->addWidget( mRendererDialog );
1975 widgetStackRenderers->setCurrentWidget( mRendererDialog );
1976 widgetStackRenderers->currentWidget()->layout()->setContentsMargins( 0, 0, 0, 0 );
1980void QgsVectorLayerProperties::setPbnQueryBuilderEnabled()
1982 pbnQueryBuilder->setEnabled( mLayer &&
1989 pbnQueryBuilder->setToolTip( tr(
"Stop editing mode to enable this." ) );
1994void QgsVectorLayerProperties::pbnUpdateExtents_clicked()
1997 mMetadataFilled =
false;
2004 bool isMetadataPanel = ( index ==
mOptStackedWidget->indexOf( mOptsPage_Metadata ) );
2005 mBtnStyle->setVisible( ! isMetadataPanel );
2006 mBtnMetadata->setVisible( isMetadataPanel );
2008 if ( index ==
mOptStackedWidget->indexOf( mOptsPage_Information ) && ! mMetadataFilled )
2011 teMetadataViewer->clear();
2012 teMetadataViewer->setHtml( htmlMetadata() );
2013 mMetadataFilled =
true;
2019void QgsVectorLayerProperties::mSimplifyDrawingGroupBox_toggled(
bool checked )
2024 mSimplifyDrawingAtProvider->setEnabled(
false );
2028 mSimplifyDrawingAtProvider->setEnabled( checked );
2032void QgsVectorLayerProperties::updateVariableEditor()
2035 mVariableEditor->setContext( &context );
2039 mVariableEditor->reloadContext();
2040 mVariableEditor->setEditableScopeIndex( 2 );
2043void QgsVectorLayerProperties::showHelp()
2045 const QVariant helpPage = mOptionsStackedWidget->currentWidget()->property(
"helpPage" );
2047 if ( helpPage.isValid() )
2053 QgsHelp::openHelp( QStringLiteral(
"working_with_vector/vector_properties.html" ) );
2057void QgsVectorLayerProperties::updateAuxiliaryStoragePage()
2064 mAuxiliaryStorageInformationGrpBox->setEnabled(
true );
2065 mAuxiliaryStorageFieldsGrpBox->setEnabled(
true );
2072 mAuxiliaryStorageFeaturesLineEdit->setText( QLocale().toString( features ) );
2075 mAuxiliaryLayerActionClear->setEnabled(
true );
2076 mAuxiliaryLayerActionDelete->setEnabled(
true );
2077 mAuxiliaryLayerActionExport->setEnabled(
true );
2078 mAuxiliaryLayerActionNew->setEnabled(
false );
2084 mAuxiliaryStorageFieldsLineEdit->setText( QLocale().toString( fields ) );
2087 mAuxiliaryStorageFieldsTree->clear();
2091 QTreeWidgetItem *item =
new QTreeWidgetItem();
2093 item->setText( 0, prop.
origin() );
2094 item->setText( 1, prop.
name() );
2095 item->setText( 2, prop.
comment() );
2099 mAuxiliaryStorageFieldsTree->addTopLevelItem( item );
2105 mAuxiliaryStorageInformationGrpBox->setEnabled(
false );
2106 mAuxiliaryStorageFieldsGrpBox->setEnabled(
false );
2108 mAuxiliaryLayerActionClear->setEnabled(
false );
2109 mAuxiliaryLayerActionDelete->setEnabled(
false );
2110 mAuxiliaryLayerActionExport->setEnabled(
false );
2111 mAuxiliaryLayerActionNew->setEnabled(
true );
2113 mAuxiliaryStorageFieldsTree->clear();
2114 mAuxiliaryStorageKeyLineEdit->setText( QString() );
2115 mAuxiliaryStorageFieldsLineEdit->setText( QString() );
2116 mAuxiliaryStorageFeaturesLineEdit->setText( QString() );
2120void QgsVectorLayerProperties::onAuxiliaryLayerNew()
2128 if ( dlg.exec() == QDialog::Accepted )
2130 updateAuxiliaryStoragePage();
2134void QgsVectorLayerProperties::onAuxiliaryLayerClear()
2141 const QString msg = tr(
"Are you sure you want to clear auxiliary data for %1?" ).arg( mLayer->
name() );
2142 QMessageBox::StandardButton reply;
2143 reply = QMessageBox::question(
this,
"Clear Auxiliary Data", msg, QMessageBox::Yes | QMessageBox::No );
2145 if ( reply == QMessageBox::Yes )
2147 QApplication::setOverrideCursor( Qt::WaitCursor );
2149 QApplication::restoreOverrideCursor();
2150 updateAuxiliaryStoragePage();
2155void QgsVectorLayerProperties::onAuxiliaryLayerDelete()
2161 const QString msg = tr(
"Are you sure you want to delete auxiliary storage for %1?" ).arg( mLayer->
name() );
2162 QMessageBox::StandardButton reply;
2163 reply = QMessageBox::question(
this,
"Delete Auxiliary Storage", msg, QMessageBox::Yes | QMessageBox::No );
2165 if ( reply == QMessageBox::Yes )
2167 QApplication::setOverrideCursor( Qt::WaitCursor );
2180 QApplication::restoreOverrideCursor();
2181 updateAuxiliaryStoragePage();
2186void QgsVectorLayerProperties::onAuxiliaryLayerDeleteField()
2192 QList<QTreeWidgetItem *> items = mAuxiliaryStorageFieldsTree->selectedItems();
2193 if ( items.count() < 1 )
2197 const QTreeWidgetItem *item = items[0];
2200 def.
setName( item->text( 1 ) );
2210 const QString msg = tr(
"Are you sure you want to delete auxiliary field %1 for %2?" ).arg( item->text( 1 ), item->text( 0 ) );
2212 QMessageBox::StandardButton reply;
2213 const QString title = QObject::tr(
"Delete Auxiliary Field" );
2214 reply = QMessageBox::question(
this, title, msg, QMessageBox::Yes | QMessageBox::No );
2216 if ( reply == QMessageBox::Yes )
2218 QApplication::setOverrideCursor( Qt::WaitCursor );
2219 deleteAuxiliaryField( index );
2221 QApplication::restoreOverrideCursor();
2225void QgsVectorLayerProperties::onAuxiliaryLayerAddField()
2232 if ( dlg.exec() == QDialog::Accepted )
2234 updateAuxiliaryStoragePage();
2238void QgsVectorLayerProperties::deleteAuxiliaryField(
int index )
2251 if ( key >= 0 && def.
origin().compare(
"labeling", Qt::CaseInsensitive ) == 0
2258 updateAuxiliaryStoragePage();
2259 mSourceFieldsPropertiesDialog->
init();
2263 const QString title = QObject::tr(
"Delete Auxiliary Field" );
2265 const QString msg = QObject::tr(
"Unable to remove auxiliary field (%1)" ).arg( errors );
2266 mMessageBar->
pushMessage( title, msg, Qgis::MessageLevel::Warning );
2273 if ( obj == mMapTipPreviewContainer && ev->type() == QEvent::Resize )
2277 return QgsOptionsDialogBase::eventFilter( obj, ev );
2280void QgsVectorLayerProperties::initMapTipPreview()
2283 mMapTipSplitter->setSizes( { 400, 200 } );
2285 mMapTipPreviewContainer->installEventFilter(
this );
2289 mMapTipPreview =
new QgsWebView( mMapTipPreviewContainer );
2292 mMapTipPreview->page()->setLinkDelegationPolicy( QWebPage::DelegateAllLinks );
2293 mMapTipPreview->setContextMenuPolicy( Qt::NoContextMenu );
2294 connect( mMapTipPreview, &QWebView::loadFinished,
this, &QgsVectorLayerProperties::resizeMapTip );
2297 mMapTipPreview->page()->settings()->setAttribute( QWebSettings::DeveloperExtrasEnabled,
true );
2298 mMapTipPreview->page()->settings()->setAttribute( QWebSettings::JavascriptEnabled,
true );
2299 mMapTipPreview->page()->settings()->setAttribute( QWebSettings::LocalStorageEnabled,
true );
2302 mMapTipPreview->page()->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff );
2303 mMapTipPreview->page()->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff );
2306 connect( mMapTipWidget, &QgsCodeEditorHTML::textChanged,
this, &QgsVectorLayerProperties::updateMapTipPreview );
2310void QgsVectorLayerProperties::updateMapTipPreview()
2312 mMapTipPreview->setMaximumSize( mMapTipPreviewContainer->width(), mMapTipPreviewContainer->height() );
2314 mMapTipPreview->setHtml( htmlContent );
2317void QgsVectorLayerProperties::resizeMapTip()
2320 mMapTipPreview->setMaximumSize( mMapTipPreviewContainer->width(), mMapTipPreviewContainer->height() );
2323 const QWebElement container = mMapTipPreview->page()->mainFrame()->findFirstElement(
2324 QStringLiteral(
"#QgsWebViewContainer" ) );
2325 const int width = container.geometry().width();
2326 const int height = container.geometry().height();
2327 mMapTipPreview->resize( width, height );
2330 mMapTipPreview->move( ( mMapTipPreviewContainer->width() - mMapTipPreview->width() ) / 2,
2331 ( mMapTipPreviewContainer->height() - mMapTipPreview->height() ) / 2 );
2334 mMapTipPreview->adjustSize();
@ NoVendorExtension
No vendor extensions.
static QString defaultProjectScales()
A string with default project scales.
void clearActions()
Removes all actions.
QUuid addAction(Qgis::AttributeActionType 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...
QgsMapLayer::StyleCategories styleCategories() const
Returns the list of selected style categories the user has opted to load.
void initializeLists(const QStringList &ids, const QStringList &names, const QStringList &descriptions, int sectionLimit)
Initialize list of database stored styles.
QString selectedStyleId()
Returns the ID of the selected database stored style.
QString filePath() const
Returns the full path to the selected layer style source file.
QgsVectorLayerProperties::StyleType currentStyleType() const
Returns the selected vector style type, for vector layers only.
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.
virtual QString saveSldStyleV2(bool &resultFlag, const QgsSldExportContext &exportContext) const
Saves the properties of this layer to an SLD format file.
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.
void setMapTipsEnabled(bool enabled)
Enable or disable map tips for this layer.
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...
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
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.
static QString vectorMapTipPreviewText(QgsMapLayer *layer, QgsMapCanvas *mapCanvas, const QString &mapTemplate, const QString &displayExpression)
Returns the html that would be displayed in a maptip for a given layer.
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.
virtual void optionsStackedWidget_CurrentChanged(int index)
Select relevant tab on current page change.
void addPage(const QString &title, const QString &tooltip, const QIcon &icon, QWidget *widget, const QStringList &path=QStringList(), const QString &key=QString())
Adds a new page to 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.
void insertPage(const QString &title, const QString &tooltip, const QIcon &icon, QWidget *widget, const QString &before, const QStringList &path=QStringList(), const QString &key=QString())
Inserts a new page into the dialog pages.
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.
The QgsSldExportContext class holds SLD export options and other information related to SLD export of...
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)
bool eventFilter(QObject *obj, QEvent *ev) override
QgsVectorLayerProperties(QgsMapCanvas *canvas, QgsMessageBar *messageBar, QgsVectorLayer *lyr=nullptr, QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags)
void loadDefaultStyle()
Loads the default style when appropriate button is pressed.
void addPropertiesPageFactory(const QgsMapLayerConfigWidgetFactory *factory)
Adds a properties page factory to the vector layer properties dialog.
void optionsStackedWidget_CurrentChanged(int index) final
void toggleEditing(QgsMapLayer *)
void saveStyleAs()
Saves a style when appriate button is pressed.
void loadStyle()
Loads a saved style when appropriate button is pressed.
void saveDefaultStyle()
Saves the default style when appropriate button is pressed.
void exportAuxiliaryLayer(QgsAuxiliaryLayer *layer)
The QgsVectorLayerSaveStyleDialog class provides the UI to save the current style or multiple styles ...
Qgis::SldExportOptions sldExportOptions() const
Returns the SLD export options.
SaveToDbSettings saveToDbSettings() const
QgsMapLayer::StyleCategories styleCategories() const
QgsVectorLayerProperties::StyleType currentStyleType() const
QString outputFilePath() const
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.
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.
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.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
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 QgsWebView class is a collection of stubs to mimic the API of QWebView on systems where the real ...
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.