742 changes: 742 additions & 0 deletions images/theme_originals/mActionDecreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
721 changes: 721 additions & 0 deletions images/theme_originals/mActionDecreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
742 changes: 742 additions & 0 deletions images/theme_originals/mActionIncreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
741 changes: 741 additions & 0 deletions images/theme_originals/mActionIncreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
742 changes: 742 additions & 0 deletions images/themes/default/mActionDecreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
721 changes: 721 additions & 0 deletions images/themes/default/mActionDecreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
742 changes: 742 additions & 0 deletions images/themes/default/mActionIncreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
741 changes: 741 additions & 0 deletions images/themes/default/mActionIncreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
742 changes: 742 additions & 0 deletions images/themes/gis/mActionDecreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
721 changes: 721 additions & 0 deletions images/themes/gis/mActionDecreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
742 changes: 742 additions & 0 deletions images/themes/gis/mActionIncreaseBrightness.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
741 changes: 741 additions & 0 deletions images/themes/gis/mActionIncreaseContrast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/app/qgisapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1680,10 +1680,10 @@ void QgisApp::setTheme( QString theThemeName )
mActionHelpContents->setIcon( QgsApplication::getThemeIcon( "/mActionHelpContents.png" ) );
mActionLocalHistogramStretch->setIcon( QgsApplication::getThemeIcon( "/mActionLocalHistogramStretch.png" ) );
mActionFullHistogramStretch->setIcon( QgsApplication::getThemeIcon( "/mActionFullHistogramStretch.png" ) );
//~ mActionIncreaseBrightness->setIcon( QgsApplication::getThemeIcon( "/mActionIncreaseBrightness.png" ) );
//~ mActionDecreaseBrightness->setIcon( QgsApplication::getThemeIcon( "/mActionDecreaseBrightness.png" ) );
//~ mActionIncreaseContrast->setIcon( QgsApplication::getThemeIcon( "/mActionIncreaseContrast.png" ) );
//~ mActionDecreaseContrast->setIcon( QgsApplication::getThemeIcon( "/mActionDecreaseContrast.png" ) );
mActionIncreaseBrightness->setIcon( QgsApplication::getThemeIcon( "/mActionIncreaseBrightness.svg" ) );
mActionDecreaseBrightness->setIcon( QgsApplication::getThemeIcon( "/mActionDecreaseBrightness.svg" ) );
mActionIncreaseContrast->setIcon( QgsApplication::getThemeIcon( "/mActionIncreaseContrast.svg" ) );
mActionDecreaseContrast->setIcon( QgsApplication::getThemeIcon( "/mActionDecreaseContrast.svg" ) );
mActionZoomActualSize->setIcon( QgsApplication::getThemeIcon( "/mActionZoomNative.png" ) );
mActionQgisHomePage->setIcon( QgsApplication::getThemeIcon( "/mActionQgisHomePage.png" ) );
mActionAbout->setIcon( QgsApplication::getThemeIcon( "/mActionHelpAbout.png" ) );
Expand Down
18 changes: 17 additions & 1 deletion src/ui/qgisapp.ui
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<x>0</x>
<y>0</y>
<width>1050</width>
<height>23</height>
<height>24</height>
</rect>
</property>
<widget class="QMenu" name="mEditMenu">
Expand Down Expand Up @@ -2020,21 +2020,37 @@ Acts on currently active editable layer</string>
</property>
</action>
<action name="mActionIncreaseBrightness">
<property name="icon">
<iconset resource="../../images/images.qrc">
<normaloff>:/images/themes/gis/mActionIncreaseBrightness.svg</normaloff>:/images/themes/gis/mActionIncreaseBrightness.svg</iconset>
</property>
<property name="text">
<string>Increase brightness</string>
</property>
</action>
<action name="mActionDecreaseBrightness">
<property name="icon">
<iconset resource="../../images/images.qrc">
<normaloff>:/images/themes/gis/mActionDecreaseBrightness.svg</normaloff>:/images/themes/gis/mActionDecreaseBrightness.svg</iconset>
</property>
<property name="text">
<string>Decrease brightness</string>
</property>
</action>
<action name="mActionIncreaseContrast">
<property name="icon">
<iconset resource="../../images/images.qrc">
<normaloff>:/images/themes/gis/mActionIncreaseContrast.svg</normaloff>:/images/themes/gis/mActionIncreaseContrast.svg</iconset>
</property>
<property name="text">
<string>Increase contrast</string>
</property>
</action>
<action name="mActionDecreaseContrast">
<property name="icon">
<iconset resource="../../images/images.qrc">
<normaloff>:/images/themes/gis/mActionDecreaseContrast.svg</normaloff>:/images/themes/gis/mActionDecreaseContrast.svg</iconset>
</property>
<property name="text">
<string>Decrease contrast</string>
</property>
Expand Down