forked from qt-creator/qt-creator
Icons: Move "next/prev", "[un]locked" and "zoom" from Core to Utils
They are needed in the timeline view. The change in qtcreator-project.qdocconf makes sure that qdoc still finds the referenced icons. Change-Id: I812fba8e57d06d93efc00c295467c83c08cd1784 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
This commit is contained in:
@@ -32,6 +32,24 @@ namespace Icons {
|
||||
|
||||
const Utils::Icon EDIT_CLEAR({
|
||||
{QLatin1String(":/core/images/editclear.png"), Utils::Theme::PanelTextColorMid}}, Utils::Icon::Tint);
|
||||
const Utils::Icon LOCKED_TOOLBAR({
|
||||
{QLatin1String(":/utils/images/locked.png"), Utils::Theme::IconsBaseColor}});
|
||||
const Utils::Icon LOCKED({
|
||||
{QLatin1String(":/utils/images/locked.png"), Utils::Theme::PanelTextColorDark}}, Icon::Tint);
|
||||
const Utils::Icon UNLOCKED_TOOLBAR({
|
||||
{QLatin1String(":/utils/images/unlocked.png"), Utils::Theme::IconsBaseColor}});
|
||||
const Utils::Icon NEXT({
|
||||
{QLatin1String(":/utils/images/next.png"), Utils::Theme::IconsWarningColor}}, Utils::Icon::MenuTintedStyle);
|
||||
const Utils::Icon NEXT_TOOLBAR({
|
||||
{QLatin1String(":/utils/images/next.png"), Utils::Theme::IconsNavigationArrowsColor}});
|
||||
const Utils::Icon PREV({
|
||||
{QLatin1String(":/utils/images/prev.png"), Utils::Theme::IconsWarningColor}}, Utils::Icon::MenuTintedStyle);
|
||||
const Utils::Icon PREV_TOOLBAR({
|
||||
{QLatin1String(":/utils/images/prev.png"), Utils::Theme::IconsNavigationArrowsColor}});
|
||||
const Utils::Icon ZOOM({
|
||||
{QLatin1String(":/utils/images/zoom.png"), Utils::Theme::PanelTextColorMid}}, Utils::Icon::Tint);
|
||||
const Utils::Icon ZOOM_TOOLBAR({
|
||||
{QLatin1String(":/utils/images/zoom.png"), Utils::Theme::IconsBaseColor}});
|
||||
|
||||
} // namespace Icons
|
||||
} // namespace Utils
|
||||
|
||||
Reference in New Issue
Block a user