void QgsLabelPropertyDialog::updateFont( const QFont& font, bool block ) { // update background reference font if ( font != mLabelFont ) { mLabelFont = font; } if ( block ) blockElementSignals( true ); mFontFamilyCmbBx->setCurrentFont( mLabelFont ); populateFontStyleComboBox(); mFontUnderlineBtn->setChecked( mLabelFont.underline() ); mFontStrikethroughBtn->setChecked( mLabelFont.strikeOut() ); mFontBoldBtn->setChecked( mLabelFont.bold() ); mFontItalicBtn->setChecked( mLabelFont.italic() ); if ( block ) blockElementSignals( false ); }
void QgsLabelPropertyDialog::init( const QString& layerId, int featureId ) { if ( !mMapRenderer ) { return; } //get feature attributes QgsVectorLayer* vlayer = dynamic_cast<QgsVectorLayer*>( QgsMapLayerRegistry::instance()->mapLayer( layerId ) ); if ( !vlayer ) { return; } QgsFeature f; if ( !vlayer->featureAtId( featureId, f, false, true ) ) { return; } const QgsAttributeMap& attributeValues = f.attributeMap(); //get layerproperties. Problem: only for pallabeling... QgsPalLabeling* lbl = dynamic_cast<QgsPalLabeling*>( mMapRenderer->labelingEngine() ); if ( !lbl ) { return; } blockElementSignals( true ); //get label field and fill line edit QString labelFieldName = vlayer->customProperty( "labeling/fieldName" ).toString(); if ( !labelFieldName.isEmpty() ) { mCurrentLabelField = vlayer->fieldNameIndex( labelFieldName ); mLabelTextLineEdit->setText( attributeValues[mCurrentLabelField].toString() ); const QgsFieldMap& layerFields = vlayer->pendingFields(); switch ( layerFields[mCurrentLabelField].type() ) { case QVariant::Double: mLabelTextLineEdit->setValidator( new QDoubleValidator( this ) ); break; case QVariant::Int: case QVariant::UInt: case QVariant::LongLong: mLabelTextLineEdit->setValidator( new QIntValidator( this ) ); break; default: break; } } //get attributes of the feature and fill data defined values QgsPalLayerSettings& layerSettings = lbl->layer( layerId ); mLabelFont = layerSettings.textFont; //set all the gui elements to the default values mFontSizeSpinBox->setValue( layerSettings.textFont.pointSizeF() ); mBufferColorButton->setColor( layerSettings.textColor ); mLabelDistanceSpinBox->setValue( layerSettings.dist ); mBufferSizeSpinBox->setValue( layerSettings.bufferSize ); mMinScaleSpinBox->setValue( layerSettings.scaleMin ); mMaxScaleSpinBox->setValue( layerSettings.scaleMax ); mHaliComboBox->setCurrentIndex( mHaliComboBox->findText( "Left" ) ); mValiComboBox->setCurrentIndex( mValiComboBox->findText( "Bottom" ) ); disableGuiElements(); mDataDefinedProperties = layerSettings.dataDefinedProperties; QMap< QgsPalLayerSettings::DataDefinedProperties, int >::const_iterator propIt = mDataDefinedProperties.constBegin(); for ( ; propIt != mDataDefinedProperties.constEnd(); ++propIt ) { switch ( propIt.key() ) { case QgsPalLayerSettings::Show: mShowLabelChkbx->setEnabled( true ); mShowLabelChkbx->setChecked( attributeValues[propIt.value()].toInt() != 0 ); break; case QgsPalLayerSettings::AlwaysShow: mAlwaysShowChkbx->setEnabled( true ); mAlwaysShowChkbx->setChecked( attributeValues[propIt.value()].toBool() ); break; case QgsPalLayerSettings::MinScale: mMinScaleSpinBox->setEnabled( true ); mMinScaleSpinBox->setValue( attributeValues[propIt.value()].toInt() ); break; case QgsPalLayerSettings::MaxScale: mMaxScaleSpinBox->setEnabled( true ); mMaxScaleSpinBox->setValue( attributeValues[propIt.value()].toInt() ); break; case QgsPalLayerSettings::Size: mFontSizeSpinBox->setEnabled( true ); mLabelFont.setPointSizeF( attributeValues[propIt.value()].toDouble() ); mFontSizeSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; case QgsPalLayerSettings::BufferSize: mBufferSizeSpinBox->setEnabled( true ); mBufferSizeSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; case QgsPalLayerSettings::PositionX: mXCoordSpinBox->setEnabled( true ); mXCoordSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; case QgsPalLayerSettings::PositionY: mYCoordSpinBox->setEnabled( true ); mYCoordSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; case QgsPalLayerSettings::LabelDistance: mLabelDistanceSpinBox->setEnabled( true ); mLabelDistanceSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; case QgsPalLayerSettings::Hali: mHaliComboBox->setEnabled( true ); mHaliComboBox->setCurrentIndex( mHaliComboBox->findText( attributeValues[propIt.value()].toString() ) ); break; case QgsPalLayerSettings::Vali: mValiComboBox->setEnabled( true ); mValiComboBox->setCurrentIndex( mValiComboBox->findText( attributeValues[propIt.value()].toString() ) ); break; case QgsPalLayerSettings::BufferColor: mBufferColorButton->setEnabled( true ); mBufferColorButton->setColor( QColor( attributeValues[propIt.value()].toString() ) ); break; case QgsPalLayerSettings::Color: mFontColorButton->setEnabled( true ); mFontColorButton->setColor( QColor( attributeValues[propIt.value()].toString() ) ); break; case QgsPalLayerSettings::Rotation: mRotationSpinBox->setEnabled( true ); mRotationSpinBox->setValue( attributeValues[propIt.value()].toDouble() ); break; //font related properties case QgsPalLayerSettings::Bold: mLabelFont.setBold( attributeValues[propIt.value()].toBool() ); break; case QgsPalLayerSettings::Italic: mLabelFont.setItalic( attributeValues[propIt.value()].toBool() ); break; case QgsPalLayerSettings::Underline: mLabelFont.setUnderline( attributeValues[propIt.value()].toBool() ); break; case QgsPalLayerSettings::Strikeout: mLabelFont.setStrikeOut( attributeValues[propIt.value()].toBool() ); break; case QgsPalLayerSettings::Family: mLabelFont.setFamily( attributeValues[propIt.value()].toString() ); break; default: break; } } mFontPushButton->setEnabled( labelFontEditingPossible() ); blockElementSignals( false ); }
void QgsLabelPropertyDialog::init( const QString& layerId, const QString& providerId, int featureId, const QString& labelText ) { //get feature attributes QgsVectorLayer* vlayer = dynamic_cast<QgsVectorLayer*>( QgsMapLayerRegistry::instance()->mapLayer( layerId ) ); if ( !vlayer ) { return; } if ( !vlayer->labeling() ) { return; } if ( !vlayer->getFeatures( QgsFeatureRequest().setFilterFid( featureId ).setFlags( QgsFeatureRequest::NoGeometry ) ).nextFeature( mCurLabelFeat ) ) { return; } QgsAttributes attributeValues = mCurLabelFeat.attributes(); //get layerproperties. Problem: only for pallabeling... blockElementSignals( true ); QgsPalLayerSettings layerSettings = vlayer->labeling()->settings( vlayer, providerId ); //get label field and fill line edit if ( layerSettings.isExpression && !labelText.isNull() ) { mLabelTextLineEdit->setText( labelText ); mLabelTextLineEdit->setEnabled( false ); mLabelTextLabel->setText( tr( "Expression result" ) ); } else { QString labelFieldName = vlayer->customProperty( "labeling/fieldName" ).toString(); if ( !labelFieldName.isEmpty() ) { mCurLabelField = vlayer->fieldNameIndex( labelFieldName ); if ( mCurLabelField >= 0 ) { mLabelTextLineEdit->setText( attributeValues.at( mCurLabelField ).toString() ); const QgsFields& layerFields = vlayer->fields(); switch ( layerFields.at( mCurLabelField ).type() ) { case QVariant::Double: mLabelTextLineEdit->setValidator( new QDoubleValidator( this ) ); break; case QVariant::Int: case QVariant::UInt: case QVariant::LongLong: mLabelTextLineEdit->setValidator( new QIntValidator( this ) ); break; default: break; } } else { mLabelTextLineEdit->setEnabled( false ); } } } //get attributes of the feature and fill data defined values // font is set directly from QgsLabelPosition updateFont( mLabelFont, false ); //set all the gui elements to the default layer-level values mLabelDistanceSpinBox->clear(); mLabelDistanceSpinBox->setSpecialValueText( tr( "Layer default (%1)" ).arg( QString::number( layerSettings.dist, 'f', mLabelDistanceSpinBox->decimals() ) ) ); mBufferSizeSpinBox->clear(); mBufferSizeSpinBox->setSpecialValueText( tr( "Layer default (%1)" ).arg( QString::number( layerSettings.bufferSize, 'f', mBufferSizeSpinBox->decimals() ) ) ); mRotationSpinBox->clear(); mXCoordSpinBox->clear(); mYCoordSpinBox->clear(); mShowLabelChkbx->setChecked( true ); mFontColorButton->setColor( layerSettings.textColor ); mBufferColorButton->setColor( layerSettings.bufferColor ); mMinScaleSpinBox->setValue( layerSettings.scaleMin ); mMaxScaleSpinBox->setValue( layerSettings.scaleMax ); mHaliComboBox->setCurrentIndex( mHaliComboBox->findData( "Left" ) ); mValiComboBox->setCurrentIndex( mValiComboBox->findData( "Bottom" ) ); mFontColorButton->setColorDialogTitle( tr( "Font color" ) ); mBufferColorButton->setColorDialogTitle( tr( "Buffer color" ) ); disableGuiElements(); QMap< QgsPalLayerSettings::DataDefinedProperties, QgsDataDefined* >::const_iterator it = layerSettings.dataDefinedProperties.constBegin(); for ( ; it != layerSettings.dataDefinedProperties.constEnd(); ++it ) { mDataDefinedProperties.insert( it.key(), it.value() ? new QgsDataDefined( *it.value() ) : nullptr ); } //set widget values from data defined results setDataDefinedValues( layerSettings, vlayer ); //enable widgets connected to data defined fields enableDataDefinedWidgets( vlayer ); blockElementSignals( false ); }
void QgsLabelPropertyDialog::init( const QString &layerId, const QString &providerId, int featureId, const QString &labelText ) { //get feature attributes QgsVectorLayer *vlayer = QgsProject::instance()->mapLayer<QgsVectorLayer *>( layerId ); if ( !vlayer ) { return; } if ( !vlayer->labeling() ) { return; } if ( !vlayer->getFeatures( QgsFeatureRequest().setFilterFid( featureId ).setFlags( QgsFeatureRequest::NoGeometry ) ).nextFeature( mCurLabelFeat ) ) { return; } QgsAttributes attributeValues = mCurLabelFeat.attributes(); //get layerproperties. Problem: only for pallabeling... blockElementSignals( true ); QgsPalLayerSettings layerSettings = vlayer->labeling()->settings( providerId ); //get label field and fill line edit if ( layerSettings.isExpression && !labelText.isNull() ) { mLabelTextLineEdit->setText( labelText ); mLabelTextLineEdit->setEnabled( false ); mLabelTextLabel->setText( tr( "Expression result" ) ); } else { QString labelFieldName = layerSettings.fieldName; if ( !labelFieldName.isEmpty() ) { mCurLabelField = vlayer->fields().lookupField( labelFieldName ); if ( mCurLabelField >= 0 ) { mLabelTextLineEdit->setText( attributeValues.at( mCurLabelField ).toString() ); if ( vlayer->isEditable() ) mLabelTextLineEdit->setEnabled( true ); else mLabelTextLineEdit->setEnabled( false ); const QgsFields &layerFields = vlayer->fields(); switch ( layerFields.at( mCurLabelField ).type() ) { case QVariant::Double: mLabelTextLineEdit->setValidator( new QDoubleValidator( this ) ); break; case QVariant::Int: case QVariant::UInt: case QVariant::LongLong: mLabelTextLineEdit->setValidator( new QIntValidator( this ) ); break; default: break; } } else { mLabelTextLineEdit->setEnabled( false ); } } } //get attributes of the feature and fill data defined values // font is set directly from QgsLabelPosition updateFont( mLabelFont, false ); QgsTextFormat format = layerSettings.format(); QgsTextBufferSettings buffer = format.buffer(); //set all the gui elements to the default layer-level values mLabelDistanceSpinBox->clear(); mLabelDistanceSpinBox->setSpecialValueText( tr( "Layer default (%1)" ).arg( QString::number( layerSettings.dist, 'f', mLabelDistanceSpinBox->decimals() ) ) ); mBufferSizeSpinBox->clear(); mBufferSizeSpinBox->setSpecialValueText( tr( "Layer default (%1)" ).arg( QString::number( buffer.size(), 'f', mBufferSizeSpinBox->decimals() ) ) ); mRotationSpinBox->clear(); mXCoordSpinBox->clear(); mYCoordSpinBox->clear(); mShowLabelChkbx->setChecked( true ); mFontColorButton->setColor( format.color() ); mBufferColorButton->setColor( buffer.color() ); mMinScaleWidget->setScale( layerSettings.minimumScale ); mMaxScaleWidget->setScale( layerSettings.maximumScale ); mHaliComboBox->setCurrentIndex( mHaliComboBox->findData( "Left" ) ); mValiComboBox->setCurrentIndex( mValiComboBox->findData( "Bottom" ) ); mFontColorButton->setColorDialogTitle( tr( "Font Color" ) ); mBufferColorButton->setColorDialogTitle( tr( "Buffer Color" ) ); disableGuiElements(); mDataDefinedProperties = layerSettings.dataDefinedProperties(); //set widget values from data defined results setDataDefinedValues( vlayer ); //enable widgets connected to data defined fields enableDataDefinedWidgets( vlayer ); blockElementSignals( false ); }