forked from qt-creator/qt-creator
Themed Icons: Introduce Utils::Icon
Instead of describing icons via file name or in the themed icons case via a string that is a list of mask/color pairs, we have now a class for it. Icons are now listed in per-plugin *icons.h headers. RunControl::m_icon was The only place left where an icon property was in fact a string. This patch changes that member to be a Utils::Icon. Change-Id: Ibcfa8bb25e6d2e330c567ee7ccc0b97ead603177 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
86
src/plugins/debugger/debuggericons.h
Normal file
86
src/plugins/debugger/debuggericons.h
Normal file
@@ -0,0 +1,86 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2015 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing
|
||||
**
|
||||
** This file is part of Qt Creator.
|
||||
**
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms and
|
||||
** conditions see http://www.qt.io/terms-conditions. For further information
|
||||
** use the contact form at http://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 2.1 or version 3 as published by the Free
|
||||
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
||||
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
||||
** following information to ensure the GNU Lesser General Public License
|
||||
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
||||
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||
**
|
||||
** In addition, as a special exception, The Qt Company gives you certain additional
|
||||
** rights. These rights are described in The Qt Company LGPL Exception
|
||||
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef DEBUGGERICONS_H
|
||||
#define DEBUGGERICONS_H
|
||||
|
||||
#include <utils/icon.h>
|
||||
|
||||
namespace Debugger {
|
||||
namespace Icons {
|
||||
|
||||
const Utils::Icon BREAKPOINT(
|
||||
QLatin1String(":/debugger/images/breakpoint_16.png"));
|
||||
const Utils::Icon BREAKPOINT_DISABLED(
|
||||
QLatin1String(":/debugger/images/breakpoint_disabled_16.png"));
|
||||
const Utils::Icon BREAKPOINT_PENDING(
|
||||
QLatin1String(":/debugger/images/breakpoint_pending_16.png"));
|
||||
const Utils::Icon BREAKPOINTS(
|
||||
QLatin1String(":/debugger/images/debugger_breakpoints.png"));
|
||||
const Utils::Icon WATCHPOINT(
|
||||
QLatin1String(":/debugger/images/watchpoint.png"));
|
||||
const Utils::Icon TRACEPOINT(
|
||||
QLatin1String(":/debugger/images/tracepoint.png"));
|
||||
const Utils::Icon CONTINUE(
|
||||
QLatin1String(":/debugger/images/debugger_continue.png"));
|
||||
const Utils::Icon INTERRUPT(
|
||||
QLatin1String(":/debugger/images/debugger_interrupt.png"));
|
||||
const Utils::Icon LOCATION(
|
||||
QLatin1String(":/debugger/images/location_16.png"));
|
||||
const Utils::Icon SNAPSHOT(
|
||||
QLatin1String(":/debugger/images/debugger_snapshot_small.png"));
|
||||
const Utils::Icon REVERSE_MODE(
|
||||
QLatin1String(":/debugger/images/debugger_reversemode_16.png"));
|
||||
const Utils::Icon APPLY_ON_SAVE(
|
||||
QLatin1String(":/debugger/images/qml/apply-on-save.png"));
|
||||
const Utils::Icon APP_ON_TOP(
|
||||
QLatin1String(":/debugger/images/qml/app-on-top.png"));
|
||||
const Utils::Icon SELECT(
|
||||
QLatin1String(":/debugger/images/qml/select.png"));
|
||||
const Utils::Icon EMPTY(
|
||||
QLatin1String(":/debugger/images/debugger_empty_14.png"));
|
||||
|
||||
const Utils::Icon STEP_OVER({
|
||||
{QLatin1String(":/debugger/images/debugger_stepover_small.png"), Utils::Theme::IconsBaseColor}});
|
||||
const Utils::Icon STEP_OVER_TOOLBUTTON({
|
||||
{QLatin1String(":/debugger/images/debugger_stepover_small.png"), Utils::Theme::TextColorNormal}}, Utils::Icon::Style::Tinted);
|
||||
const Utils::Icon STEP_INTO({
|
||||
{QLatin1String(":/debugger/images/debugger_stepinto_small.png"), Utils::Theme::IconsBaseColor}});
|
||||
const Utils::Icon STEP_OUT({
|
||||
{QLatin1String(":/debugger/images/debugger_stepout_small.png"), Utils::Theme::IconsBaseColor}});
|
||||
const Utils::Icon RESTART({
|
||||
{QLatin1String(":/debugger/images/debugger_restart_small.png"), Utils::Theme::IconsRunColor}});
|
||||
const Utils::Icon SINGLE_INSTRUCTION_MODE({
|
||||
{QLatin1String(":/debugger/images/debugger_singleinstructionmode.png"), Utils::Theme::IconsBaseColor}});
|
||||
|
||||
} // namespace Icons
|
||||
} // namespace Debugger
|
||||
|
||||
#endif // DEBUGGERICONS_H
|
||||
Reference in New Issue
Block a user