Utils: Move CONTINUE_SMALL Icon from ProjectExplorer to Utils
We want a variant of the icon (without the debugger beetle) in Utils, in order to use it in the ImageViewer plugin to resume paused animations. Change-Id: I55ff301db60cae626d8e95d2fadf3c76a36cee39 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
Before Width: | Height: | Size: 93 B After Width: | Height: | Size: 93 B |
Before Width: | Height: | Size: 96 B After Width: | Height: | Size: 96 B |
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 136 B |
Before Width: | Height: | Size: 161 B After Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 158 B |
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 175 B |
@@ -48,6 +48,12 @@
|
|||||||
<file>images/clean_pane_small@2x.png</file>
|
<file>images/clean_pane_small@2x.png</file>
|
||||||
<file>images/compile_error_taskbar.png</file>
|
<file>images/compile_error_taskbar.png</file>
|
||||||
<file>images/compile_error_taskbar@2x.png</file>
|
<file>images/compile_error_taskbar@2x.png</file>
|
||||||
|
<file>images/continue_1_small.png</file>
|
||||||
|
<file>images/continue_1_small@2x.png</file>
|
||||||
|
<file>images/continue_2_small.png</file>
|
||||||
|
<file>images/continue_2_small@2x.png</file>
|
||||||
|
<file>images/debugger_overlay_small.png</file>
|
||||||
|
<file>images/debugger_overlay_small@2x.png</file>
|
||||||
<file>images/editcopy.png</file>
|
<file>images/editcopy.png</file>
|
||||||
<file>images/editcopy@2x.png</file>
|
<file>images/editcopy@2x.png</file>
|
||||||
<file>images/editcut.png</file>
|
<file>images/editcut.png</file>
|
||||||
|
@@ -225,6 +225,12 @@ const Icon INTERRUPT_SMALL({
|
|||||||
{":/utils/images/interrupt_small.png", Theme::IconsInterruptColor}}, Icon::MenuTintedStyle);
|
{":/utils/images/interrupt_small.png", Theme::IconsInterruptColor}}, Icon::MenuTintedStyle);
|
||||||
const Icon INTERRUPT_SMALL_TOOLBAR({
|
const Icon INTERRUPT_SMALL_TOOLBAR({
|
||||||
{":/utils/images/interrupt_small.png", Theme::IconsInterruptToolBarColor}});
|
{":/utils/images/interrupt_small.png", Theme::IconsInterruptToolBarColor}});
|
||||||
|
const Icon CONTINUE_SMALL({
|
||||||
|
{":/utils/images/continue_1_small.png", Theme::IconsInterruptColor},
|
||||||
|
{":/utils/images/continue_2_small.png", Theme::IconsRunColor}}, Icon::MenuTintedStyle);
|
||||||
|
const Icon CONTINUE_SMALL_TOOLBAR({
|
||||||
|
{":/utils/images/continue_1_small.png", Theme::IconsInterruptToolBarColor},
|
||||||
|
{":/utils/images/continue_2_small.png", Theme::IconsRunToolBarColor}});
|
||||||
const Icon BOUNDING_RECT({
|
const Icon BOUNDING_RECT({
|
||||||
{":/utils/images/boundingrect.png", Theme::IconsBaseColor}});
|
{":/utils/images/boundingrect.png", Theme::IconsBaseColor}});
|
||||||
const Icon EYE_OPEN({
|
const Icon EYE_OPEN({
|
||||||
|
@@ -120,6 +120,9 @@ QTCREATOR_UTILS_EXPORT extern const Icon STOP_SMALL;
|
|||||||
QTCREATOR_UTILS_EXPORT extern const Icon STOP_SMALL_TOOLBAR;
|
QTCREATOR_UTILS_EXPORT extern const Icon STOP_SMALL_TOOLBAR;
|
||||||
QTCREATOR_UTILS_EXPORT extern const Icon INTERRUPT_SMALL;
|
QTCREATOR_UTILS_EXPORT extern const Icon INTERRUPT_SMALL;
|
||||||
QTCREATOR_UTILS_EXPORT extern const Icon INTERRUPT_SMALL_TOOLBAR;
|
QTCREATOR_UTILS_EXPORT extern const Icon INTERRUPT_SMALL_TOOLBAR;
|
||||||
|
QTCREATOR_UTILS_EXPORT extern const Icon CONTINUE_SMALL;
|
||||||
|
QTCREATOR_UTILS_EXPORT extern const Icon CONTINUE_SMALL_TOOLBAR;
|
||||||
|
|
||||||
QTCREATOR_UTILS_EXPORT extern const Icon BOUNDING_RECT;
|
QTCREATOR_UTILS_EXPORT extern const Icon BOUNDING_RECT;
|
||||||
QTCREATOR_UTILS_EXPORT extern const Icon EYE_OPEN;
|
QTCREATOR_UTILS_EXPORT extern const Icon EYE_OPEN;
|
||||||
QTCREATOR_UTILS_EXPORT extern const Icon EYE_OPEN_TOOLBAR;
|
QTCREATOR_UTILS_EXPORT extern const Icon EYE_OPEN_TOOLBAR;
|
||||||
|
@@ -34,13 +34,13 @@ const Icon CONTINUE_FLAT({
|
|||||||
{":/debugger/images/debugger_continue_2_mask.png", Theme::IconsRunToolBarColor},
|
{":/debugger/images/debugger_continue_2_mask.png", Theme::IconsRunToolBarColor},
|
||||||
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
||||||
const Icon DEBUG_CONTINUE_SMALL({
|
const Icon DEBUG_CONTINUE_SMALL({
|
||||||
{":/projectexplorer/images/continue_1_small.png", Theme::IconsInterruptColor},
|
{":/utils/images/continue_1_small.png", Theme::IconsInterruptColor},
|
||||||
{":/projectexplorer/images/continue_2_small.png", Theme::IconsRunColor},
|
{":/utils/images/continue_2_small.png", Theme::IconsRunColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
{":/utils/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
||||||
const Icon DEBUG_CONTINUE_SMALL_TOOLBAR({
|
const Icon DEBUG_CONTINUE_SMALL_TOOLBAR({
|
||||||
{":/projectexplorer/images/continue_1_small.png", Theme::IconsInterruptToolBarColor},
|
{":/utils/images/continue_1_small.png", Theme::IconsInterruptToolBarColor},
|
||||||
{":/projectexplorer/images/continue_2_small.png", Theme::IconsRunToolBarColor},
|
{":/utils/images/continue_2_small.png", Theme::IconsRunToolBarColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
{":/utils/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
||||||
const Icon INTERRUPT(
|
const Icon INTERRUPT(
|
||||||
":/debugger/images/debugger_interrupt.png");
|
":/debugger/images/debugger_interrupt.png");
|
||||||
const Icon INTERRUPT_FLAT({
|
const Icon INTERRUPT_FLAT({
|
||||||
@@ -53,16 +53,16 @@ const Icon STOP_FLAT({
|
|||||||
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
||||||
const Icon DEBUG_INTERRUPT_SMALL({
|
const Icon DEBUG_INTERRUPT_SMALL({
|
||||||
{":/utils/images/interrupt_small.png", Theme::IconsInterruptColor},
|
{":/utils/images/interrupt_small.png", Theme::IconsInterruptColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
{":/utils/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
||||||
const Icon DEBUG_INTERRUPT_SMALL_TOOLBAR({
|
const Icon DEBUG_INTERRUPT_SMALL_TOOLBAR({
|
||||||
{":/utils/images/interrupt_small.png", Theme::IconsInterruptToolBarColor},
|
{":/utils/images/interrupt_small.png", Theme::IconsInterruptToolBarColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
{":/utils/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
||||||
const Icon DEBUG_EXIT_SMALL({
|
const Icon DEBUG_EXIT_SMALL({
|
||||||
{":/utils/images/stop_small.png", Theme::IconsStopColor},
|
{":/utils/images/stop_small.png", Theme::IconsStopColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
{":/utils/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
||||||
const Icon DEBUG_EXIT_SMALL_TOOLBAR({
|
const Icon DEBUG_EXIT_SMALL_TOOLBAR({
|
||||||
{":/utils/images/stop_small.png", Theme::IconsStopToolBarColor},
|
{":/utils/images/stop_small.png", Theme::IconsStopToolBarColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
{":/utils/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
||||||
const Icon LOCATION({
|
const Icon LOCATION({
|
||||||
{":/debugger/images/location_background.png", Theme::IconsCodeModelOverlayForegroundColor},
|
{":/debugger/images/location_background.png", Theme::IconsCodeModelOverlayForegroundColor},
|
||||||
{":/debugger/images/location.png", Theme::IconsWarningToolBarColor}}, Icon::Tint);
|
{":/debugger/images/location.png", Theme::IconsWarningToolBarColor}}, Icon::Tint);
|
||||||
|
@@ -20,8 +20,6 @@
|
|||||||
<file>images/run@2x.png</file>
|
<file>images/run@2x.png</file>
|
||||||
<file>images/run_mask.png</file>
|
<file>images/run_mask.png</file>
|
||||||
<file>images/run_mask@2x.png</file>
|
<file>images/run_mask@2x.png</file>
|
||||||
<file>images/debugger_overlay_small.png</file>
|
|
||||||
<file>images/debugger_overlay_small@2x.png</file>
|
|
||||||
<file>images/analyzer_overlay_small.png</file>
|
<file>images/analyzer_overlay_small.png</file>
|
||||||
<file>images/analyzer_overlay_small@2x.png</file>
|
<file>images/analyzer_overlay_small@2x.png</file>
|
||||||
<file>images/devicestatusindicator.png</file>
|
<file>images/devicestatusindicator.png</file>
|
||||||
@@ -34,10 +32,6 @@
|
|||||||
<file>images/build_hammerhead_mask@2x.png</file>
|
<file>images/build_hammerhead_mask@2x.png</file>
|
||||||
<file>images/targetpanel_bottom.png</file>
|
<file>images/targetpanel_bottom.png</file>
|
||||||
<file>images/window.png</file>
|
<file>images/window.png</file>
|
||||||
<file>images/continue_1_small.png</file>
|
|
||||||
<file>images/continue_1_small@2x.png</file>
|
|
||||||
<file>images/continue_2_small.png</file>
|
|
||||||
<file>images/continue_2_small@2x.png</file>
|
|
||||||
<file>images/buildstepdisable.png</file>
|
<file>images/buildstepdisable.png</file>
|
||||||
<file>images/buildstepdisable@2x.png</file>
|
<file>images/buildstepdisable@2x.png</file>
|
||||||
<file>images/buildstepmovedown.png</file>
|
<file>images/buildstepmovedown.png</file>
|
||||||
|
@@ -50,10 +50,10 @@ const Icon DEBUG_START_FLAT({
|
|||||||
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
{":/projectexplorer/images/debugger_beetle_mask.png", Theme::IconsDebugColor}});
|
||||||
const Icon DEBUG_START_SMALL({
|
const Icon DEBUG_START_SMALL({
|
||||||
{":/utils/images/run_small.png", Theme::IconsRunColor},
|
{":/utils/images/run_small.png", Theme::IconsRunColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
{":/utils/images/debugger_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
||||||
const Icon DEBUG_START_SMALL_TOOLBAR({
|
const Icon DEBUG_START_SMALL_TOOLBAR({
|
||||||
{":/utils/images/run_small.png", Theme::IconsRunToolBarColor},
|
{":/utils/images/run_small.png", Theme::IconsRunToolBarColor},
|
||||||
{":/projectexplorer/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
{":/utils/images/debugger_overlay_small.png", Theme::IconsDebugColor}});
|
||||||
const Icon ANALYZER_START_SMALL({
|
const Icon ANALYZER_START_SMALL({
|
||||||
{":/utils/images/run_small.png", Theme::IconsRunColor},
|
{":/utils/images/run_small.png", Theme::IconsRunColor},
|
||||||
{":/projectexplorer/images/analyzer_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
{":/projectexplorer/images/analyzer_overlay_small.png", Theme::PanelTextColorMid}}, Icon::MenuTintedStyle);
|
||||||
|
@@ -4626,7 +4626,7 @@
|
|||||||
sodipodi:nodetypes="cc" />
|
sodipodi:nodetypes="cc" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
id="src/plugins/projectexplorer/images/debugger_overlay_small"
|
id="src/libs/utils/images/debugger_overlay_small"
|
||||||
transform="translate(16)">
|
transform="translate(16)">
|
||||||
<rect
|
<rect
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
@@ -5363,7 +5363,7 @@
|
|||||||
<g
|
<g
|
||||||
style="display:inline"
|
style="display:inline"
|
||||||
transform="translate(144)"
|
transform="translate(144)"
|
||||||
id="src/plugins/projectexplorer/images/continue_1_small">
|
id="src/libs/utils/images/continue_1_small">
|
||||||
<rect
|
<rect
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
x="265"
|
x="265"
|
||||||
@@ -5383,7 +5383,7 @@
|
|||||||
<g
|
<g
|
||||||
style="display:inline"
|
style="display:inline"
|
||||||
transform="translate(160)"
|
transform="translate(160)"
|
||||||
id="src/plugins/projectexplorer/images/continue_2_small">
|
id="src/libs/utils/images/continue_2_small">
|
||||||
<rect
|
<rect
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
x="265"
|
x="265"
|
||||||
|
Before Width: | Height: | Size: 366 KiB After Width: | Height: | Size: 366 KiB |