forked from qt-creator/qt-creator
Icon refresh: First step towards the new Qt Creator themes
http://blog.qt.io/blog/author/didesous/ announced new designs/themes for Qt Creator. This patch replaces many of the existing toolbar icons with recolorizable masks for better theming support. Change-Id: I557aa485205fe2624f33724226f698c303342b40 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
|
||||
#include <coreplugin/coreconstants.h>
|
||||
#include <utils/stylehelper.h>
|
||||
#include <utils/themehelper.h>
|
||||
|
||||
#include <QVBoxLayout>
|
||||
#include <QHBoxLayout>
|
||||
@@ -87,10 +88,10 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow, Qt::Orientation orientation
|
||||
|
||||
m_errorIcon->setAlignment(Qt::AlignRight);
|
||||
m_warningIcon->setAlignment(Qt::AlignRight);
|
||||
m_errorIcon->setPixmap(QPixmap(Utils::StyleHelper::dpiSpecificImageFile(
|
||||
QLatin1String(Core::Constants::ICON_ERROR))));
|
||||
m_warningIcon->setPixmap(QPixmap(Utils::StyleHelper::dpiSpecificImageFile(
|
||||
QLatin1String(Core::Constants::ICON_WARNING))));
|
||||
m_errorIcon->setPixmap(Utils::ThemeHelper::themedIconPixmap(
|
||||
QLatin1String(Core::Constants::ICON_ERROR)));
|
||||
m_warningIcon->setPixmap(Utils::ThemeHelper::themedIconPixmap(
|
||||
QLatin1String(Core::Constants::ICON_WARNING)));
|
||||
|
||||
m_contentWidget->hide();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user