diff --git a/src/plugins/debugger/analyzer/analyzericons.h b/src/plugins/debugger/analyzer/analyzericons.h index f9f4a69056b..30b333e4ecf 100644 --- a/src/plugins/debugger/analyzer/analyzericons.h +++ b/src/plugins/debugger/analyzer/analyzericons.h @@ -32,8 +32,8 @@ namespace Debugger { namespace Icons { const Utils::Icon ANALYZER_CONTROL_START({ - {QLatin1String(":/images/analyzer_overlay_small.png"), Utils::Theme::IconsBaseColor}, - {QLatin1String(":/core/images/run_overlay_small.png"), Utils::Theme::IconsRunColor}}); + {QLatin1String(":/projectexplorer/images/run_small.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/images/analyzer_overlay_small.png"), Utils::Theme::IconsBaseColor}}); const Utils::Icon MODE_ANALYZE_CLASSIC( QLatin1String(":/images/mode_analyze.png")); const Utils::Icon MODE_ANALYZE_FLAT({ diff --git a/src/plugins/debugger/analyzer/images/analyzer_overlay_small.png b/src/plugins/debugger/analyzer/images/analyzer_overlay_small.png index 138391ddd01..4e22d67ab0d 100644 Binary files a/src/plugins/debugger/analyzer/images/analyzer_overlay_small.png and b/src/plugins/debugger/analyzer/images/analyzer_overlay_small.png differ diff --git a/src/plugins/debugger/analyzer/images/analyzer_overlay_small@2x.png b/src/plugins/debugger/analyzer/images/analyzer_overlay_small@2x.png index 7fb5ea48b77..f8da44ca486 100644 Binary files a/src/plugins/debugger/analyzer/images/analyzer_overlay_small@2x.png and b/src/plugins/debugger/analyzer/images/analyzer_overlay_small@2x.png differ diff --git a/src/plugins/debugger/debugger.qrc b/src/plugins/debugger/debugger.qrc index cea824430d2..8c3a1c6118a 100644 --- a/src/plugins/debugger/debugger.qrc +++ b/src/plugins/debugger/debugger.qrc @@ -4,14 +4,10 @@ images/debugger_breakpoints.png images/debugger_continue.png images/debugger_continue@2x.png - images/debugger_continue_mask.png - images/debugger_continue_mask@2x.png - images/stop_overlay_small.png - images/stop_overlay_small@2x.png - images/interrupt_overlay_small.png - images/interrupt_overlay_small@2x.png - images/continue_overlay_small.png - images/continue_overlay_small@2x.png + images/debugger_continue_1_mask.png + images/debugger_continue_1_mask@2x.png + images/debugger_continue_2_mask.png + images/debugger_continue_2_mask@2x.png images/debugger_empty_14.png images/debugger_interrupt.png images/debugger_interrupt@2x.png diff --git a/src/plugins/debugger/debuggericons.h b/src/plugins/debugger/debuggericons.h index a1180bedb40..234f9000067 100644 --- a/src/plugins/debugger/debuggericons.h +++ b/src/plugins/debugger/debuggericons.h @@ -46,22 +46,24 @@ const Utils::Icon TRACEPOINT( const Utils::Icon CONTINUE( QLatin1String(":/debugger/images/debugger_continue.png")); const Utils::Icon CONTINUE_FLAT({ - {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/debugger/images/debugger_continue_mask.png"), Utils::Theme::IconsRunColor}}); + {QLatin1String(":/debugger/images/debugger_continue_1_mask.png"), Utils::Theme::IconsInterruptColor}, + {QLatin1String(":/debugger/images/debugger_continue_2_mask.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon DEBUG_CONTINUE_SMALL({ - {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/debugger/images/continue_overlay_small.png"), Utils::Theme::IconsRunColor}}); + {QLatin1String(":/projectexplorer/images/continue_1_small.png"), Utils::Theme::IconsInterruptColor}, + {QLatin1String(":/projectexplorer/images/continue_2_small.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon INTERRUPT( QLatin1String(":/debugger/images/debugger_interrupt.png")); const Utils::Icon INTERRUPT_FLAT({ - {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/debugger/images/debugger_interrupt_mask.png"), Utils::Theme::IconsInterruptColor}}); + {QLatin1String(":/debugger/images/debugger_interrupt_mask.png"), Utils::Theme::IconsInterruptColor}, + {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon DEBUG_INTERRUPT_SMALL({ - {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/debugger/images/interrupt_overlay_small.png"), Utils::Theme::IconsInterruptColor}}); + {QLatin1String(":/projectexplorer/images/interrupt_small.png"), Utils::Theme::IconsInterruptColor}, + {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon DEBUG_EXIT_SMALL({ - {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/debugger/images/stop_overlay_small.png"), Utils::Theme::IconsStopColor}}); + {QLatin1String(":/projectexplorer/images/stop_small.png"), Utils::Theme::IconsStopColor}, + {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon LOCATION( QLatin1String(":/debugger/images/location_16.png")); const Utils::Icon SNAPSHOT( diff --git a/src/plugins/debugger/images/continue_overlay_small.png b/src/plugins/debugger/images/continue_overlay_small.png deleted file mode 100644 index 75df55d1f69..00000000000 Binary files a/src/plugins/debugger/images/continue_overlay_small.png and /dev/null differ diff --git a/src/plugins/debugger/images/continue_overlay_small@2x.png b/src/plugins/debugger/images/continue_overlay_small@2x.png deleted file mode 100644 index 5fc601ca176..00000000000 Binary files a/src/plugins/debugger/images/continue_overlay_small@2x.png and /dev/null differ diff --git a/src/plugins/debugger/images/debugger_continue_1_mask.png b/src/plugins/debugger/images/debugger_continue_1_mask.png new file mode 100644 index 00000000000..522e5f36cc3 Binary files /dev/null and b/src/plugins/debugger/images/debugger_continue_1_mask.png differ diff --git a/src/plugins/debugger/images/debugger_continue_1_mask@2x.png b/src/plugins/debugger/images/debugger_continue_1_mask@2x.png new file mode 100644 index 00000000000..217ddc826f7 Binary files /dev/null and b/src/plugins/debugger/images/debugger_continue_1_mask@2x.png differ diff --git a/src/plugins/debugger/images/debugger_continue_2_mask.png b/src/plugins/debugger/images/debugger_continue_2_mask.png new file mode 100644 index 00000000000..756ba959f03 Binary files /dev/null and b/src/plugins/debugger/images/debugger_continue_2_mask.png differ diff --git a/src/plugins/debugger/images/debugger_continue_2_mask@2x.png b/src/plugins/debugger/images/debugger_continue_2_mask@2x.png new file mode 100644 index 00000000000..a4801fa6bac Binary files /dev/null and b/src/plugins/debugger/images/debugger_continue_2_mask@2x.png differ diff --git a/src/plugins/debugger/images/debugger_continue_mask.png b/src/plugins/debugger/images/debugger_continue_mask.png deleted file mode 100644 index fb9b1cb9169..00000000000 Binary files a/src/plugins/debugger/images/debugger_continue_mask.png and /dev/null differ diff --git a/src/plugins/debugger/images/debugger_continue_mask@2x.png b/src/plugins/debugger/images/debugger_continue_mask@2x.png deleted file mode 100644 index 18b5be7203a..00000000000 Binary files a/src/plugins/debugger/images/debugger_continue_mask@2x.png and /dev/null differ diff --git a/src/plugins/debugger/images/debugger_interrupt_mask.png b/src/plugins/debugger/images/debugger_interrupt_mask.png index c2081ca1360..87f195f5c08 100644 Binary files a/src/plugins/debugger/images/debugger_interrupt_mask.png and b/src/plugins/debugger/images/debugger_interrupt_mask.png differ diff --git a/src/plugins/debugger/images/debugger_interrupt_mask@2x.png b/src/plugins/debugger/images/debugger_interrupt_mask@2x.png index 43aec6f9cc2..6c477085d7b 100644 Binary files a/src/plugins/debugger/images/debugger_interrupt_mask@2x.png and b/src/plugins/debugger/images/debugger_interrupt_mask@2x.png differ diff --git a/src/plugins/debugger/images/interrupt_overlay_small.png b/src/plugins/debugger/images/interrupt_overlay_small.png deleted file mode 100644 index e61b75384a3..00000000000 Binary files a/src/plugins/debugger/images/interrupt_overlay_small.png and /dev/null differ diff --git a/src/plugins/debugger/images/interrupt_overlay_small@2x.png b/src/plugins/debugger/images/interrupt_overlay_small@2x.png deleted file mode 100644 index 2d686964bf1..00000000000 Binary files a/src/plugins/debugger/images/interrupt_overlay_small@2x.png and /dev/null differ diff --git a/src/plugins/debugger/images/stop_overlay_small.png b/src/plugins/debugger/images/stop_overlay_small.png deleted file mode 100644 index 8350ba9eec5..00000000000 Binary files a/src/plugins/debugger/images/stop_overlay_small.png and /dev/null differ diff --git a/src/plugins/debugger/images/stop_overlay_small@2x.png b/src/plugins/debugger/images/stop_overlay_small@2x.png deleted file mode 100644 index f0fb92f6706..00000000000 Binary files a/src/plugins/debugger/images/stop_overlay_small@2x.png and /dev/null differ diff --git a/src/plugins/projectexplorer/images/continue_1_small.png b/src/plugins/projectexplorer/images/continue_1_small.png new file mode 100644 index 00000000000..1240171792a Binary files /dev/null and b/src/plugins/projectexplorer/images/continue_1_small.png differ diff --git a/src/plugins/projectexplorer/images/continue_1_small@2x.png b/src/plugins/projectexplorer/images/continue_1_small@2x.png new file mode 100644 index 00000000000..f683251b925 Binary files /dev/null and b/src/plugins/projectexplorer/images/continue_1_small@2x.png differ diff --git a/src/plugins/projectexplorer/images/continue_2_small.png b/src/plugins/projectexplorer/images/continue_2_small.png new file mode 100644 index 00000000000..876cb829bf5 Binary files /dev/null and b/src/plugins/projectexplorer/images/continue_2_small.png differ diff --git a/src/plugins/projectexplorer/images/continue_2_small@2x.png b/src/plugins/projectexplorer/images/continue_2_small@2x.png new file mode 100644 index 00000000000..5794fa039ed Binary files /dev/null and b/src/plugins/projectexplorer/images/continue_2_small@2x.png differ diff --git a/src/plugins/projectexplorer/images/debugger_beetle_mask.png b/src/plugins/projectexplorer/images/debugger_beetle_mask.png index 359b6cc425b..b041005b3ae 100644 Binary files a/src/plugins/projectexplorer/images/debugger_beetle_mask.png and b/src/plugins/projectexplorer/images/debugger_beetle_mask.png differ diff --git a/src/plugins/projectexplorer/images/debugger_beetle_mask@2x.png b/src/plugins/projectexplorer/images/debugger_beetle_mask@2x.png index 24a5f3b7bc0..f4f7098ee39 100644 Binary files a/src/plugins/projectexplorer/images/debugger_beetle_mask@2x.png and b/src/plugins/projectexplorer/images/debugger_beetle_mask@2x.png differ diff --git a/src/plugins/projectexplorer/images/debugger_overlay_small.png b/src/plugins/projectexplorer/images/debugger_overlay_small.png index deb68239db4..809bf347326 100644 Binary files a/src/plugins/projectexplorer/images/debugger_overlay_small.png and b/src/plugins/projectexplorer/images/debugger_overlay_small.png differ diff --git a/src/plugins/projectexplorer/images/debugger_overlay_small@2x.png b/src/plugins/projectexplorer/images/debugger_overlay_small@2x.png index fe9107f75fb..c24c861cbbb 100644 Binary files a/src/plugins/projectexplorer/images/debugger_overlay_small@2x.png and b/src/plugins/projectexplorer/images/debugger_overlay_small@2x.png differ diff --git a/src/plugins/projectexplorer/images/debugger_run_mask.png b/src/plugins/projectexplorer/images/debugger_run_mask.png deleted file mode 100644 index 0e3ab010d0a..00000000000 Binary files a/src/plugins/projectexplorer/images/debugger_run_mask.png and /dev/null differ diff --git a/src/plugins/projectexplorer/images/debugger_run_mask@2x.png b/src/plugins/projectexplorer/images/debugger_run_mask@2x.png deleted file mode 100644 index 978d099a9c5..00000000000 Binary files a/src/plugins/projectexplorer/images/debugger_run_mask@2x.png and /dev/null differ diff --git a/src/plugins/projectexplorer/images/run_overlay_small.png b/src/plugins/projectexplorer/images/run_overlay_small.png deleted file mode 100644 index db22edd2fb7..00000000000 Binary files a/src/plugins/projectexplorer/images/run_overlay_small.png and /dev/null differ diff --git a/src/plugins/projectexplorer/images/run_overlay_small@2x.png b/src/plugins/projectexplorer/images/run_overlay_small@2x.png deleted file mode 100644 index a5ec8416b69..00000000000 Binary files a/src/plugins/projectexplorer/images/run_overlay_small@2x.png and /dev/null differ diff --git a/src/plugins/projectexplorer/projectexplorer.qrc b/src/plugins/projectexplorer/projectexplorer.qrc index e8d0044e3ff..ba19731f8da 100644 --- a/src/plugins/projectexplorer/projectexplorer.qrc +++ b/src/plugins/projectexplorer/projectexplorer.qrc @@ -9,8 +9,6 @@ images/debugger_start@2x.png images/debugger_beetle_mask.png images/debugger_beetle_mask@2x.png - images/debugger_run_mask.png - images/debugger_run_mask@2x.png images/mode_project.png images/mode_project@2x.png images/mode_project_mask.png @@ -26,8 +24,6 @@ images/run_small@2x.png images/debugger_overlay_small.png images/debugger_overlay_small@2x.png - images/run_overlay_small.png - images/run_overlay_small@2x.png images/session.png images/targetrunselected.png images/targetrunselected@2x.png @@ -58,6 +54,10 @@ images/stop_small@2x.png images/interrupt_small.png images/interrupt_small@2x.png + images/continue_1_small.png + images/continue_1_small@2x.png + images/continue_2_small.png + images/continue_2_small@2x.png images/buildstepdisable.png images/buildstepdisable@2x.png images/buildstepmovedown.png diff --git a/src/plugins/projectexplorer/projectexplorericons.h b/src/plugins/projectexplorer/projectexplorericons.h index 05a2ce3c364..49227f3fc6f 100644 --- a/src/plugins/projectexplorer/projectexplorericons.h +++ b/src/plugins/projectexplorer/projectexplorericons.h @@ -55,11 +55,11 @@ const Utils::Icon DEBUG_START( QLatin1String(":/projectexplorer/images/debugger_start.png")); const Utils::Icon DEBUG_START_FLAT({ - {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/projectexplorer/images/debugger_run_mask.png"), Utils::Theme::IconsRunColor}}); + {QLatin1String(":/projectexplorer/images/run_mask.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/projectexplorer/images/debugger_beetle_mask.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon DEBUG_START_SMALL({ - {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}, - {QLatin1String(":/projectexplorer/images/run_overlay_small.png"), Utils::Theme::IconsRunColor}}); + {QLatin1String(":/projectexplorer/images/run_small.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/projectexplorer/images/debugger_overlay_small.png"), Utils::Theme::IconsDebugColor}}); const Utils::Icon BUILDSTEP_MOVEUP({ {QLatin1String(":/projectexplorer/images/buildstepmoveup.png"), Utils::Theme::PanelTextColorDark}}, Utils::Icon::Tint); diff --git a/src/tools/icons/qtcreatoricons.svg b/src/tools/icons/qtcreatoricons.svg index e325bb9ab5a..dabc31ac651 100644 --- a/src/tools/icons/qtcreatoricons.svg +++ b/src/tools/icons/qtcreatoricons.svg @@ -625,11 +625,11 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="93.473168" - inkscape:cy="23.946208" + inkscape:zoom="4" + inkscape:cx="407.31417" + inkscape:cy="170.08332" inkscape:document-units="px" - inkscape:current-layer="layer3" + inkscape:current-layer="g4718" showgrid="true" showguides="true" inkscape:guide-bbox="true" @@ -2213,95 +2213,6 @@ x="274" y="570" /> - - - - - - - - - - - - - - - - - - @@ -2314,25 +2225,33 @@ id="rect4959-4" /> + transform="translate(2,0.625)"> + d="m 466.5,575.875 c -1.2497,0 -1.25,1.125 -1.25,1.5 l 2.5,0 c 0,-0.375 -3e-4,-1.5 -1.25,-1.5 z" + sodipodi:nodetypes="zccz" /> + d="m 463.27023,577.37502 -0.15225,1 1.36286,0 -0.24267,0.99998 -1.23817,0 0,1 1.23817,0 0.27709,1.00002 -1.39728,0 0.15225,1 1.13211,0 0.88226,-0.5 0.7154,0.49998 0,-4.5 -0.75,0 0,-0.5 z" + sodipodi:nodetypes="ccccccccccccccccc" /> + + d="m 481,576 0,7 7,0 0,-1 -6,0 0,-6 z m 2,0 0,1 5,0 0,-1 z m 0,2 0,1 3,0 0,-1 z m 0,2 0,1 1,0 0,-1 z" + style="fill:#000000;fill-opacity:1;stroke:none" + sodipodi:nodetypes="cccccccccccccccccccccc" /> + + + + + + + + - - - - - - - + + + + + + width="7" + height="18" + x="753" + y="52" /> + width="7" + height="18" + x="763" + y="52" /> + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + transform="translate(-340,305)" + style="display:inline"> + y="50" + width="24" + height="24" + id="rect4791-9" + inkscape:export-filename="c:\Users\aportale\ownprojects\stuff\experiments\iconrecoloring\icon.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + + + + -