Skip to content

Commit

Permalink
Merge pull request #5900 from m-kuhn/layerPropsStyleInTitle
Browse files Browse the repository at this point in the history
Show style name in layer properties dialog title
  • Loading branch information
m-kuhn committed Jan 11, 2018
2 parents e137ea8 + bb40de3 commit f76421d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions python/core/qgsmaplayerstylemanager.sip
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,13 @@ Each call must be paired with restoreOverrideStyle()
bool restoreOverrideStyle();
%Docstring
Restore the original store after a call to setOverrideStyle()
%End

bool isDefault( const QString &styleName ) const;
%Docstring
Returns true if this is the default style

.. versionadded:: 3.0
%End

signals:
Expand Down
3 changes: 3 additions & 0 deletions src/app/qgsrasterlayerproperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,9 @@ QgsRasterLayerProperties::QgsRasterLayerProperties( QgsMapLayer *lyr, QgsMapCanv
mResetColorRenderingBtn->setIcon( QgsApplication::getThemeIcon( QStringLiteral( "/mActionUndo.svg" ) ) );

QString title = QString( tr( "Layer Properties - %1" ) ).arg( lyr->name() );

if ( !mRasterLayer->styleManager()->isDefault( mRasterLayer->styleManager()->currentStyle() ) )
title += QStringLiteral( " (%1)" ).arg( mRasterLayer->styleManager()->currentStyle() );
restoreOptionsBaseUi( title );
optionsStackedWidget_CurrentChanged( mOptionsStackedWidget->currentIndex() );
} // QgsRasterLayerProperties ctor
Expand Down
2 changes: 2 additions & 0 deletions src/app/qgsvectorlayerproperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(
}

QString title = QString( tr( "Layer Properties - %1" ) ).arg( mLayer->name() );
if ( !mLayer->styleManager()->isDefault( mLayer->styleManager()->currentStyle() ) )
title += QStringLiteral( " (%1)" ).arg( mLayer->styleManager()->currentStyle() );
restoreOptionsBaseUi( title );

mLayersDependenciesTreeGroup.reset( QgsProject::instance()->layerTreeRoot()->clone() );
Expand Down
5 changes: 5 additions & 0 deletions src/core/qgsmaplayerstylemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ bool QgsMapLayerStyleManager::restoreOverrideStyle()
return true;
}

bool QgsMapLayerStyleManager::isDefault( const QString &styleName ) const
{
return styleName == defaultStyleName();
}


// -----

Expand Down
7 changes: 7 additions & 0 deletions src/core/qgsmaplayerstylemanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ class CORE_EXPORT QgsMapLayerStyleManager : public QObject
//! Restore the original store after a call to setOverrideStyle()
bool restoreOverrideStyle();

/**
* Returns true if this is the default style
*
* \since QGIS 3.0
*/
bool isDefault( const QString &styleName ) const;

signals:
//! Emitted when a new style has been added
void styleAdded( const QString &name );
Expand Down

0 comments on commit f76421d

Please sign in to comment.