diff --git a/Ghidra/Debug/Debugger/certification.manifest b/Ghidra/Debug/Debugger/certification.manifest
index c71daadd7e..723e3acccf 100644
--- a/Ghidra/Debug/Debugger/certification.manifest
+++ b/Ghidra/Debug/Debugger/certification.manifest
@@ -155,12 +155,12 @@ src/main/resources/images/closedFolder.png||Modified Nuvola Icons - LGPL 2.1||||
src/main/resources/images/conf.png||GHIDRA||||END|
src/main/resources/images/connect.png||GHIDRA||||END|
src/main/resources/images/console.png||GHIDRA||||END|
-src/main/resources/images/continue.png||GHIDRA||||END|
src/main/resources/images/debugger.png||GHIDRA||||END|
src/main/resources/images/debugger32.png||GHIDRA||||END|
src/main/resources/images/delete.png||FAMFAMFAM Icons - CC 2.5|||famfamfam silk icon set|END|
src/main/resources/images/detach.png||GHIDRA||||END|
src/main/resources/images/disconnect.png||GHIDRA||||END|
+src/main/resources/images/interrupt.png||GHIDRA||||END|
src/main/resources/images/kill.png||GHIDRA||||END|
src/main/resources/images/launch.png||GHIDRA||||END|
src/main/resources/images/modules.png||GHIDRA||||END|
@@ -172,14 +172,16 @@ src/main/resources/images/process.png||GHIDRA||||END|
src/main/resources/images/record.png||GHIDRA||||END|
src/main/resources/images/register-marker.png||GHIDRA||||END|
src/main/resources/images/registers.png||GHIDRA||||END|
+src/main/resources/images/resume.png||GHIDRA||||END|
+src/main/resources/images/seek-present.png||GHIDRA||||END|
src/main/resources/images/select-registers.png||GHIDRA||||END|
src/main/resources/images/skipover.png||GHIDRA||||END|
src/main/resources/images/stack.png||GHIDRA||||END|
src/main/resources/images/stepback.png||GHIDRA||||END|
src/main/resources/images/stepinto.png||GHIDRA||||END|
+src/main/resources/images/steplast.png||GHIDRA||||END|
src/main/resources/images/stepout.png||GHIDRA||||END|
src/main/resources/images/stepover.png||GHIDRA||||END|
-src/main/resources/images/stop.png||GHIDRA||||END|
src/main/resources/images/sync_enabled.png||GHIDRA||||END|
src/main/resources/images/system-switch-user.png||Oxygen Icons - LGPL 3.0|||Oxygen icon theme (dual license; LGPL or CC-SA-3.0)|END|
src/main/resources/images/table.png||FAMFAMFAM Icons - CC 2.5|||famfamfam silk icon set|END|
@@ -207,27 +209,32 @@ src/main/svg/breakpoints-enable-all.svg||GHIDRA||||END|
src/main/svg/breakpoints-make-effective.svg||GHIDRA||||END|
src/main/svg/connect.svg||GHIDRA||||END|
src/main/svg/console.svg||GHIDRA||||END|
-src/main/svg/continue.svg||GHIDRA||||END|
src/main/svg/debugger.svg||GHIDRA||||END|
src/main/svg/detach.svg||GHIDRA||||END|
src/main/svg/disconnect.svg||GHIDRA||||END|
+src/main/svg/interrupt.svg||GHIDRA||||END|
src/main/svg/kill.svg||GHIDRA||||END|
src/main/svg/launch.svg||GHIDRA||||END|
-src/main/svg/memory.svg||GHIDRA||||END|
+src/main/svg/modules.svg||GHIDRA||||END|
+src/main/svg/object-populated.svg||GHIDRA||||END|
+src/main/svg/object-running.svg||GHIDRA||||END|
src/main/svg/object-terminated.svg||GHIDRA||||END|
-src/main/svg/pencil.png||GHIDRA||||END|
+src/main/svg/object-unpopulated.svg||GHIDRA||||END|
+src/main/svg/overlay-pencil.svg||GHIDRA||||END|
src/main/svg/process.svg||GHIDRA||||END|
-src/main/svg/recording.svg||GHIDRA||||END|
+src/main/svg/record.svg||GHIDRA||||END|
src/main/svg/register-marker.svg||GHIDRA||||END|
src/main/svg/registers.svg||GHIDRA||||END|
+src/main/svg/resume.svg||GHIDRA||||END|
+src/main/svg/seek-present.svg||GHIDRA||||END|
src/main/svg/select-registers.svg||GHIDRA||||END|
src/main/svg/skipover.svg||GHIDRA||||END|
src/main/svg/stack.svg||GHIDRA||||END|
src/main/svg/stepback.svg||GHIDRA||||END|
src/main/svg/stepinto.svg||GHIDRA||||END|
+src/main/svg/steplast.svg||GHIDRA||||END|
src/main/svg/stepout.svg||GHIDRA||||END|
src/main/svg/stepover.svg||GHIDRA||||END|
-src/main/svg/stop.svg||GHIDRA||||END|
src/main/svg/thread.svg||GHIDRA||||END|
src/main/svg/write-disabled.svg||GHIDRA||||END|
src/main/svg/write-emulator.svg||GHIDRA||||END|
diff --git a/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/DebuggerResources.java b/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/DebuggerResources.java
index 35b922f138..aa63833058 100644
--- a/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/DebuggerResources.java
+++ b/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/DebuggerResources.java
@@ -80,8 +80,8 @@ public interface DebuggerResources {
ImageIcon ICON_LAUNCH = ResourceManager.loadImage("images/launch.png");
ImageIcon ICON_ATTACH = ResourceManager.loadImage("images/attach.png");
- ImageIcon ICON_RESUME = ResourceManager.loadImage("images/continue.png");
- ImageIcon ICON_TERMINATE = ResourceManager.loadImage("images/stop.png");
+ ImageIcon ICON_RESUME = ResourceManager.loadImage("images/resume.png");
+ ImageIcon ICON_INTERRUPT = ResourceManager.loadImage("images/interrupt.png");
ImageIcon ICON_KILL = ResourceManager.loadImage("images/kill.png");
ImageIcon ICON_DETACH = ResourceManager.loadImage("images/detach.png");
ImageIcon ICON_RECORD = ResourceManager.loadImage("images/record.png");
@@ -91,10 +91,11 @@ public interface DebuggerResources {
ImageIcon ICON_SKIP_OVER = ResourceManager.loadImage("images/skipover.png");
ImageIcon ICON_STEP_FINISH = ResourceManager.loadImage("images/stepout.png");
ImageIcon ICON_STEP_BACK = ResourceManager.loadImage("images/stepback.png");
+ ImageIcon ICON_STEP_LAST = ResourceManager.loadImage("images/steplast.png");
// TODO: Draw new icons?
ImageIcon ICON_SNAP_FORWARD = ResourceManager.loadImage("images/2rightarrow.png");
ImageIcon ICON_SNAP_BACKWARD = ResourceManager.loadImage("images/2leftarrow.png");
- ImageIcon ICON_SEEK_PRESENT = ICON_RESUME;
+ ImageIcon ICON_SEEK_PRESENT = ResourceManager.loadImage("images/seek-present.png");
ImageIcon ICON_SET_BREAKPOINT = ResourceManager.loadImage("images/breakpoint-enable.png");
ImageIcon ICON_CLEAR_BREAKPOINT = ResourceManager.loadImage("images/breakpoint-clear.png");
@@ -692,7 +693,7 @@ public interface DebuggerResources {
abstract class AbstractStepLastAction extends DockingAction {
public static final String NAME = "Step Last";
- public static final Icon ICON = ICON_STEP_FINISH; // TODO: Draw one
+ public static final Icon ICON = ICON_STEP_LAST;
public static final String HELP_ANCHOR = "step_last";
public static HelpLocation help(Plugin owner) {
@@ -708,7 +709,7 @@ public interface DebuggerResources {
abstract class AbstractInterruptAction extends DockingAction {
public static final String NAME = "Interrupt";
- public static final Icon ICON = ICON_TERMINATE;
+ public static final Icon ICON = ICON_INTERRUPT;
public static final String HELP_ANCHOR = "interrupt";
public static HelpLocation help(Plugin owner) {
@@ -798,7 +799,7 @@ public interface DebuggerResources {
interface InterpreterInterruptAction {
String NAME = "Interpreter Interrupt";
String DESCRIPTION = "Send an interrupt through this Interpreter";
- Icon ICON = ICON_TERMINATE;
+ Icon ICON = ICON_INTERRUPT;
String HELP_ANCHOR = "interrupt";
public static ActionBuilder builder(Plugin owner) {
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/attach.png b/Ghidra/Debug/Debugger/src/main/resources/images/attach.png
index cb0196300d..58afa3a319 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/attach.png and b/Ghidra/Debug/Debugger/src/main/resources/images/attach.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/breakpoints-make-effective.png b/Ghidra/Debug/Debugger/src/main/resources/images/breakpoints-make-effective.png
index d220d56af1..b7d77b5fcf 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/breakpoints-make-effective.png and b/Ghidra/Debug/Debugger/src/main/resources/images/breakpoints-make-effective.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/connect.png b/Ghidra/Debug/Debugger/src/main/resources/images/connect.png
index 82da18ee0d..219885a15e 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/connect.png and b/Ghidra/Debug/Debugger/src/main/resources/images/connect.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/console.png b/Ghidra/Debug/Debugger/src/main/resources/images/console.png
index b24b1f5786..b255f53c15 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/console.png and b/Ghidra/Debug/Debugger/src/main/resources/images/console.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/continue.png b/Ghidra/Debug/Debugger/src/main/resources/images/continue.png
deleted file mode 100644
index b79f8b752c..0000000000
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/continue.png and /dev/null differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/debugger.png b/Ghidra/Debug/Debugger/src/main/resources/images/debugger.png
index 1e39f8bbec..cec4164be4 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/debugger.png and b/Ghidra/Debug/Debugger/src/main/resources/images/debugger.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/debugger32.png b/Ghidra/Debug/Debugger/src/main/resources/images/debugger32.png
index 4b730e647f..aa34cb4287 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/debugger32.png and b/Ghidra/Debug/Debugger/src/main/resources/images/debugger32.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/detach.png b/Ghidra/Debug/Debugger/src/main/resources/images/detach.png
index 04e8e975db..f3201c28f1 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/detach.png and b/Ghidra/Debug/Debugger/src/main/resources/images/detach.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/disconnect.png b/Ghidra/Debug/Debugger/src/main/resources/images/disconnect.png
index 7f78c170d9..de33d19e82 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/disconnect.png and b/Ghidra/Debug/Debugger/src/main/resources/images/disconnect.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/interrupt.png b/Ghidra/Debug/Debugger/src/main/resources/images/interrupt.png
new file mode 100644
index 0000000000..f6ae4fc5db
Binary files /dev/null and b/Ghidra/Debug/Debugger/src/main/resources/images/interrupt.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/kill.png b/Ghidra/Debug/Debugger/src/main/resources/images/kill.png
index b7f91ad889..4599a64450 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/kill.png and b/Ghidra/Debug/Debugger/src/main/resources/images/kill.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/launch.png b/Ghidra/Debug/Debugger/src/main/resources/images/launch.png
index 948c5efde4..0503b4491c 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/launch.png and b/Ghidra/Debug/Debugger/src/main/resources/images/launch.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/modules.png b/Ghidra/Debug/Debugger/src/main/resources/images/modules.png
index 4ecd076bdb..d61799e084 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/modules.png and b/Ghidra/Debug/Debugger/src/main/resources/images/modules.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/object-populated.png b/Ghidra/Debug/Debugger/src/main/resources/images/object-populated.png
index ea1e926811..c3cc6c66e7 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/object-populated.png and b/Ghidra/Debug/Debugger/src/main/resources/images/object-populated.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/object-running.png b/Ghidra/Debug/Debugger/src/main/resources/images/object-running.png
index b060bd20c3..804be735ac 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/object-running.png and b/Ghidra/Debug/Debugger/src/main/resources/images/object-running.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/object-terminated.png b/Ghidra/Debug/Debugger/src/main/resources/images/object-terminated.png
index cb1d378235..b5130e3bea 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/object-terminated.png and b/Ghidra/Debug/Debugger/src/main/resources/images/object-terminated.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/object-unpopulated.png b/Ghidra/Debug/Debugger/src/main/resources/images/object-unpopulated.png
index 6386998ebc..8756da3c1d 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/object-unpopulated.png and b/Ghidra/Debug/Debugger/src/main/resources/images/object-unpopulated.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/process.png b/Ghidra/Debug/Debugger/src/main/resources/images/process.png
index 0fbc22619f..4aef23713c 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/process.png and b/Ghidra/Debug/Debugger/src/main/resources/images/process.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/record.png b/Ghidra/Debug/Debugger/src/main/resources/images/record.png
index 27d1402648..69f9ee123a 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/record.png and b/Ghidra/Debug/Debugger/src/main/resources/images/record.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/register-marker.png b/Ghidra/Debug/Debugger/src/main/resources/images/register-marker.png
index 7d843e4796..d6506a58f3 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/register-marker.png and b/Ghidra/Debug/Debugger/src/main/resources/images/register-marker.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/registers.png b/Ghidra/Debug/Debugger/src/main/resources/images/registers.png
index 922c2f9245..c9b6d204ef 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/registers.png and b/Ghidra/Debug/Debugger/src/main/resources/images/registers.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/resume.png b/Ghidra/Debug/Debugger/src/main/resources/images/resume.png
new file mode 100644
index 0000000000..b9f6990bff
Binary files /dev/null and b/Ghidra/Debug/Debugger/src/main/resources/images/resume.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/seek-present.png b/Ghidra/Debug/Debugger/src/main/resources/images/seek-present.png
new file mode 100644
index 0000000000..ec3673bb39
Binary files /dev/null and b/Ghidra/Debug/Debugger/src/main/resources/images/seek-present.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/select-registers.png b/Ghidra/Debug/Debugger/src/main/resources/images/select-registers.png
index 19902fa065..c8ffc2ba31 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/select-registers.png and b/Ghidra/Debug/Debugger/src/main/resources/images/select-registers.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/skipover.png b/Ghidra/Debug/Debugger/src/main/resources/images/skipover.png
index a477c46575..3dd8717a12 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/skipover.png and b/Ghidra/Debug/Debugger/src/main/resources/images/skipover.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stack.png b/Ghidra/Debug/Debugger/src/main/resources/images/stack.png
index 3a10222bfb..521f2fb0bc 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stack.png and b/Ghidra/Debug/Debugger/src/main/resources/images/stack.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stepback.png b/Ghidra/Debug/Debugger/src/main/resources/images/stepback.png
index 3dfc69c95d..0f606929fb 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stepback.png and b/Ghidra/Debug/Debugger/src/main/resources/images/stepback.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stepinto.png b/Ghidra/Debug/Debugger/src/main/resources/images/stepinto.png
index bbcb749eb0..4c92124af4 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stepinto.png and b/Ghidra/Debug/Debugger/src/main/resources/images/stepinto.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/steplast.png b/Ghidra/Debug/Debugger/src/main/resources/images/steplast.png
new file mode 100644
index 0000000000..0c5c187b87
Binary files /dev/null and b/Ghidra/Debug/Debugger/src/main/resources/images/steplast.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stepout.png b/Ghidra/Debug/Debugger/src/main/resources/images/stepout.png
index 9e533aa876..1e8886167a 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stepout.png and b/Ghidra/Debug/Debugger/src/main/resources/images/stepout.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stepover.png b/Ghidra/Debug/Debugger/src/main/resources/images/stepover.png
index d4a38991fb..72d995c318 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stepover.png and b/Ghidra/Debug/Debugger/src/main/resources/images/stepover.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/stop.png b/Ghidra/Debug/Debugger/src/main/resources/images/stop.png
deleted file mode 100644
index fa53723b0a..0000000000
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/stop.png and /dev/null differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/thread.png b/Ghidra/Debug/Debugger/src/main/resources/images/thread.png
index 338ef79b1e..a0282cfdab 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/thread.png and b/Ghidra/Debug/Debugger/src/main/resources/images/thread.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/write-disabled.png b/Ghidra/Debug/Debugger/src/main/resources/images/write-disabled.png
index 483d165a27..bad4477d96 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/write-disabled.png and b/Ghidra/Debug/Debugger/src/main/resources/images/write-disabled.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/write-emulator.png b/Ghidra/Debug/Debugger/src/main/resources/images/write-emulator.png
index 72600b472c..53964c75ed 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/write-emulator.png and b/Ghidra/Debug/Debugger/src/main/resources/images/write-emulator.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/write-target.png b/Ghidra/Debug/Debugger/src/main/resources/images/write-target.png
index c8f0e047ec..37b05b2d51 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/write-target.png and b/Ghidra/Debug/Debugger/src/main/resources/images/write-target.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/resources/images/write-trace.png b/Ghidra/Debug/Debugger/src/main/resources/images/write-trace.png
index c0b120cd82..f3c62d5a2c 100644
Binary files a/Ghidra/Debug/Debugger/src/main/resources/images/write-trace.png and b/Ghidra/Debug/Debugger/src/main/resources/images/write-trace.png differ
diff --git a/Ghidra/Debug/Debugger/src/main/svg/attach.svg b/Ghidra/Debug/Debugger/src/main/svg/attach.svg
index 1e7270f6a4..73aa81152c 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/attach.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/attach.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+ id="g858">
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.04581916;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 10 0 A 6 6 0 0 0 5.6054688 1.9257812 L 3.6152344 0.36914062 L 3.3066406 0.76171875 C 2.1360722 2.2566877 1.5005523 4.1012735 1.5 6 C 1.5 10.688498 5.3115019 14.5 10 14.5 C 11.915968 14.4972 13.775267 13.846173 15.275391 12.654297 L 15.666016 12.34375 L 14.103516 10.371094 A 6 6 0 0 0 16 6 A 6 6 0 0 0 10 0 z "
+ id="path833" />
+
+ id="path5852" />
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 0.79296875,9.5 1.6464844,10.353516 2.5859375,11.292969 0.171875,13.707031 2.2929688,15.828125 4.7070312,13.414062 6.5,15.207031 V 9.5 Z"
+ id="path836" />
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/breakpoints-make-effective.svg b/Ghidra/Debug/Debugger/src/main/svg/breakpoints-make-effective.svg
index 1aa938dc7b..bfd9cb2416 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/breakpoints-make-effective.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/breakpoints-make-effective.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
-
-
-
-
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/connect.svg b/Ghidra/Debug/Debugger/src/main/svg/connect.svg
index 6974dcb7de..130cd3433b 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/connect.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/connect.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- version="1.1"
- id="svg4819"
+ width="16"
height="16"
- width="16">
+ id="svg4819"
+ version="1.1"
+ viewBox="0 0 16 16">
image/svg+xml
-
+
-
-
-
-
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/console.svg b/Ghidra/Debug/Debugger/src/main/svg/console.svg
index 9d6d818f07..b229d07a79 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/console.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/console.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+ id="rect1057" />
+ id="rect1062" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/debugger.svg b/Ghidra/Debug/Debugger/src/main/svg/debugger.svg
index 7ba20dc55b..481c8f5adb 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/debugger.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/debugger.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+ id="g819">
+ style="opacity:1;fill:#2c5aa0;fill-opacity:1;stroke:none;stroke-width:0.70244753;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 8.5,1 C 8.5,1.7247441 8.6289321,2.4173758 8.8496094,3.0683594 7.9558048,3.2126832 7.0370041,3.5974858 6.1914062,4.1816406 4.7716325,3.9227677 3.185712,4.1752882 2,4.6972656 V 5.8046875 C 2.9745225,5.2756988 4.0513397,5.0354513 5.1171875,5.0683594 5.1080541,5.0768011 5.0989394,5.0852647 5.0898438,5.09375 3.9613247,6.2260577 3.2205798,7.6417507 3.0449219,9.0019531 3.0299517,9.0012179 3.0149775,9.0005669 3,9 2.297388,9.0015552 1.6075807,9.1881535 1,9.5410156 V 10.769531 C 1.5491933,10.275544 2.2613297,10.001539 3,10 c 0.00586,-1.72e-5 0.011719,-1.72e-5 0.017578,0 v 0.002 L 4.2128906,11.197266 9,7 4.8027344,11.787109 6,12.982422 c 1.72e-5,0.0059 1.72e-5,0.01172 0,0.01758 -0.001,0.738413 -0.2743002,1.450517 -0.7675781,2 H 6.4589844 C 6.8118465,14.392417 6.9984448,13.702612 7,13 6.999426,12.98567 6.99877,12.97135 6.99805,12.95703 c 1.3612806,-0.176463 2.7777334,-0.917943 3.910156,-2.046875 0.0085,-0.0091 0.01695,-0.01821 0.02539,-0.02734 0.03331,1.065814 -0.207402,2.142591 -0.736328,3.117188 h 1.105468 c 0.596767,-1.327925 0.76278,-2.790229 0.513672,-4.1875 C 12.400692,8.9644709 12.784213,8.0434872 12.925781,7.1484375 13.578436,7.3703747 14.273091,7.5 15,7.5 v -1 C 14.283954,6.5 13.606636,6.3520477 12.980469,6.1035156 12.937057,5.3942048 12.718552,4.7607409 12.341797,4.2519531 l -0.585938,-0.59375 C 11.24558,3.2788527 10.609301,3.0589618 9.8964844,3.015625 9.6488005,2.3903831 9.5,1.7147552 9.5,1 Z"
+ id="path962" />
+ style="opacity:1;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1.17669678;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 12,1 V 1.765625 A 1.7650453,1.1766968 45 0 0 11.501953,2.0019531 1.7650453,1.1766968 45 0 0 11.917969,4.0820312 1.7650453,1.1766968 45 0 0 13.998047,4.4980469 1.7650453,1.1766968 45 0 0 14.236328,4 H 15 V 3 H 14.017578 A 1.7650453,1.1766968 45 0 0 13.582031,2.4179688 1.7650453,1.1766968 45 0 0 13,1.9804688 V 1 Z"
+ id="path967" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/detach.svg b/Ghidra/Debug/Debugger/src/main/svg/detach.svg
index 5c1df84373..e147646db9 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/detach.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/detach.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+
+ transform="rotate(-180,3.3360625,12.663938)"
+ id="g847">
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 0.7930938,9.4998752 1.6466094,10.353391 2.5860625,11.292844 0.172,13.706906 2.2930938,15.828 4.7071562,13.413937 6.500125,15.206906 V 9.4998752 Z"
+ id="path836" />
-
+ style="opacity:1;fill:#c00000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.000125,9.999875 1.2929688,1.292969 -2.4140625,2.414062 1.4140625,1.414063 2.4140624,-2.414063 1.2929688,1.292969 v -4 z"
+ id="rect5901" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/disconnect.svg b/Ghidra/Debug/Debugger/src/main/svg/disconnect.svg
index 2c2818c1f9..1dac6e0a13 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/disconnect.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/disconnect.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- version="1.1"
- id="svg4819"
+ width="16"
height="16"
- width="16">
+ id="svg4819"
+ version="1.1"
+ viewBox="0 0 16 16">
image/svg+xml
-
+
+ id="path819"
+ d="M 13.585938,0.29296875 13.232422,0.64648438 11.123047,2.7558594 C 10.757941,2.6294826 10.390133,2.5007932 10.001953,2.5 H 10 C 8.0729257,2.5 6.5,4.0729257 6.5,6 6.5,7.9270743 8.0729257,9.5 10,9.5 11.927074,9.5 13.5,7.9270743 13.5,6 V 5.99805 C 13.499207,5.6098661 13.370518,5.242059 13.244141,4.8769531 l 2.46289,-2.4628906 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+
+
+ id="path838" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/interrupt.svg b/Ghidra/Debug/Debugger/src/main/svg/interrupt.svg
new file mode 100644
index 0000000000..9a70e30785
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/interrupt.svg
@@ -0,0 +1,55 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/kill.svg b/Ghidra/Debug/Debugger/src/main/svg/kill.svg
index 3353236304..b70f109290 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/kill.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/kill.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
-
-
+
+ width="10"
+ height="10"
+ x="3"
+ y="3" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/launch.svg b/Ghidra/Debug/Debugger/src/main/svg/launch.svg
index 2ea6d28c0d..eb42347f02 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/launch.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/launch.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+ id="path5895" />
+ id="path5852" />
+ id="rect827"
+ d="M 3.0588236,8.2352937 V 11.058823 H 0.23529412 v 1.882353 H 3.0588236 v 2.82353 h 1.8823528 v -2.82353 H 7.7647058 V 11.058823 H 4.9411764 V 8.2352937 Z"
+ style="fill:#0080ff;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/modules.svg b/Ghidra/Debug/Debugger/src/main/svg/modules.svg
new file mode 100644
index 0000000000..00267deb56
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/modules.svg
@@ -0,0 +1,35 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/continue.svg b/Ghidra/Debug/Debugger/src/main/svg/object-populated.svg
similarity index 51%
rename from Ghidra/Debug/Debugger/src/main/svg/continue.svg
rename to Ghidra/Debug/Debugger/src/main/svg/object-populated.svg
index 162f8aee1c..8a68c01cba 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/continue.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/object-populated.svg
@@ -5,34 +5,36 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
+ width="16px"
+ height="16px"
viewBox="0 0 16 16"
version="1.1"
- id="svg4819"
- height="16"
- width="16">
+ id="SVGRoot">
+ id="defs5287" />
+ id="metadata5290">
image/svg+xml
-
+
+
-
+ style="opacity:1;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:1.14285719;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 8,4 C 5.790861,4 4,5.790861 4,8 c 0,2.209139 1.790861,4 4,4 2.209139,0 4,-1.790861 4,-4 C 12,5.790861 10.209139,4 8,4 Z"
+ id="path821" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/object-running.svg b/Ghidra/Debug/Debugger/src/main/svg/object-running.svg
new file mode 100644
index 0000000000..93f5e2d644
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/object-running.svg
@@ -0,0 +1,39 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/object-terminated.svg b/Ghidra/Debug/Debugger/src/main/svg/object-terminated.svg
index 980d822578..9c7275b6ad 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/object-terminated.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/object-terminated.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- width="16px"
- height="16px"
- viewBox="0 0 16 16"
+ id="SVGRoot"
version="1.1"
- id="SVGRoot">
+ viewBox="0 0 16 16"
+ height="16px"
+ width="16px">
+
+ style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:none;stroke-width:1.14285719;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/memory.svg b/Ghidra/Debug/Debugger/src/main/svg/object-unpopulated.svg
similarity index 53%
rename from Ghidra/Debug/Debugger/src/main/svg/memory.svg
rename to Ghidra/Debug/Debugger/src/main/svg/object-unpopulated.svg
index f1ba59159c..7098041a6c 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/memory.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/object-unpopulated.svg
@@ -20,15 +20,22 @@
image/svg+xml
-
+
+
+ id="path821"
+ d="M 8 4 A 4 4 0 0 0 4 8 A 4 4 0 0 0 8 12 A 4 4 0 0 0 12 8 A 4 4 0 0 0 8 4 z M 8 6 A 2 2 0 0 1 10 8 A 2 2 0 0 1 8 10 A 2 2 0 0 1 6 8 A 2 2 0 0 1 8 6 z "
+ style="opacity:1;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:1.14285719;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/overlay-pencil.svg b/Ghidra/Debug/Debugger/src/main/svg/overlay-pencil.svg
new file mode 100644
index 0000000000..cec162523b
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/overlay-pencil.svg
@@ -0,0 +1,59 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/pencil.png b/Ghidra/Debug/Debugger/src/main/svg/pencil.png
deleted file mode 100644
index cd17091c3a..0000000000
Binary files a/Ghidra/Debug/Debugger/src/main/svg/pencil.png and /dev/null differ
diff --git a/Ghidra/Debug/Debugger/src/main/svg/process.svg b/Ghidra/Debug/Debugger/src/main/svg/process.svg
index 1e81213c0e..af6c43bb7a 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/process.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/process.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
-
-
-
+ id="g857">
+
+
+
+
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/recording.svg b/Ghidra/Debug/Debugger/src/main/svg/record.svg
similarity index 74%
rename from Ghidra/Debug/Debugger/src/main/svg/recording.svg
rename to Ghidra/Debug/Debugger/src/main/svg/record.svg
index 5d9b55b21e..0b2d3278b7 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/recording.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/record.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- width="16px"
- height="16px"
- viewBox="0 0 16 16"
+ id="SVGRoot"
version="1.1"
- id="SVGRoot">
+ viewBox="0 0 16 16"
+ height="16px"
+ width="16px">
+ id="g858">
+
+
-
-
-
+ style="opacity:1;fill:#ff2a2a;fill-opacity:1;stroke:none;stroke-width:1.14285719;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/register-marker.svg b/Ghidra/Debug/Debugger/src/main/svg/register-marker.svg
index 6d75f0e38f..5ce488d361 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/register-marker.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/register-marker.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+ id="rect1057" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/registers.svg b/Ghidra/Debug/Debugger/src/main/svg/registers.svg
index b1e5e4d95c..778ed79c6c 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/registers.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/registers.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+
+
+ id="rect1057" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/resume.svg b/Ghidra/Debug/Debugger/src/main/svg/resume.svg
new file mode 100644
index 0000000000..11d119c70f
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/resume.svg
@@ -0,0 +1,35 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/seek-present.svg b/Ghidra/Debug/Debugger/src/main/svg/seek-present.svg
new file mode 100644
index 0000000000..d65f114c2c
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/seek-present.svg
@@ -0,0 +1,39 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/select-registers.svg b/Ghidra/Debug/Debugger/src/main/svg/select-registers.svg
index 286bb7a162..2a41554bc8 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/select-registers.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/select-registers.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/skipover.svg b/Ghidra/Debug/Debugger/src/main/svg/skipover.svg
index 2711748e65..c4d47a98ef 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/skipover.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/skipover.svg
@@ -5,59 +5,57 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
version="1.1"
- id="svg5428"
- height="16"
- width="16">
-
+ id="svg2"
+ width="16"
+ height="16">
+ id="metadata8">
image/svg+xml
-
+
+
+
+
+
+ id="g826"
+ transform="rotate(45,7.5,12.5)">
+ transform="rotate(90)"
+ y="-10.5"
+ x="11.5"
+ height="6"
+ width="2"
+ id="rect820"
+ style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:2.32378983;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-
-
-
+ transform="scale(-1)"
+ style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:2.32378983;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect822"
+ width="2"
+ height="6"
+ x="-8.5"
+ y="-15.5" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stack.svg b/Ghidra/Debug/Debugger/src/main/svg/stack.svg
index c6c8d32836..f8f77ce27a 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/stack.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/stack.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- width="16"
- height="16"
- id="svg4819"
+ viewBox="0 0 16 16"
version="1.1"
- viewBox="0 0 16 16">
+ id="svg4819"
+ height="16"
+ width="16">
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stepback.svg b/Ghidra/Debug/Debugger/src/main/svg/stepback.svg
index 31809cb01d..16f92568b4 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/stepback.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/stepback.svg
@@ -7,50 +7,44 @@
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
- viewBox="0 0 16 16"
- height="16"
- width="16">
-
+ width="16"
+ height="16">
+ id="metadata8">
image/svg+xml
-
+
-
-
-
-
-
-
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stepinto.svg b/Ghidra/Debug/Debugger/src/main/svg/stepinto.svg
index 3c50e65ba1..628469626b 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/stepinto.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/stepinto.svg
@@ -5,48 +5,51 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- version="1.1"
- id="svg4819"
height="16"
- width="16">
-
+ width="16"
+ id="svg2"
+ version="1.1">
+ id="metadata8">
image/svg+xml
-
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/steplast.svg b/Ghidra/Debug/Debugger/src/main/svg/steplast.svg
new file mode 100644
index 0000000000..5eb30d6d2a
--- /dev/null
+++ b/Ghidra/Debug/Debugger/src/main/svg/steplast.svg
@@ -0,0 +1,34 @@
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stepout.svg b/Ghidra/Debug/Debugger/src/main/svg/stepout.svg
index 2d60f17b32..e3e7e8ec45 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/stepout.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/stepout.svg
@@ -5,15 +5,12 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- width="16"
height="16"
- id="svg4819"
- version="1.1"
- viewBox="0 0 16 16">
-
+ width="16"
+ id="svg2"
+ version="1.1">
+ id="metadata8">
@@ -24,29 +21,39 @@
+
+
+
+
+ transform="rotate(-90,8.9786846,4.9786637)"
+ id="g819">
-
-
+ id="path834"
+ d="M 11,8.000217 H 9 V 5.5 C 9,3 9,3 6.5,3 H 1 L 1,5 H 6.5 C 7,5 7,5 7,5.5 V 8.000217 L 5,7.9997411 8,11.000217 Z"
+ style="opacity:1;vector-effect:none;fill:#d4aa00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stepover.svg b/Ghidra/Debug/Debugger/src/main/svg/stepover.svg
index c76b9a4efa..571d3d4363 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/stepover.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/stepover.svg
@@ -5,51 +5,44 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- version="1.1"
- id="svg4819"
height="16"
- width="16">
-
+ width="16"
+ id="svg2"
+ version="1.1">
+ id="metadata8">
image/svg+xml
-
+
-
-
-
-
-
-
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/stop.svg b/Ghidra/Debug/Debugger/src/main/svg/stop.svg
deleted file mode 100644
index b97f9de54a..0000000000
--- a/Ghidra/Debug/Debugger/src/main/svg/stop.svg
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
diff --git a/Ghidra/Debug/Debugger/src/main/svg/thread.svg b/Ghidra/Debug/Debugger/src/main/svg/thread.svg
index a1586d455d..346011e209 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/thread.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/thread.svg
@@ -5,11 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- id="SVGRoot"
- version="1.1"
- viewBox="0 0 16 16"
+ width="16px"
height="16px"
- width="16px">
+ viewBox="0 0 16 16"
+ version="1.1"
+ id="SVGRoot">
image/svg+xml
-
+
+
+ id="path5852" />
diff --git a/Ghidra/Debug/Debugger/src/main/svg/write-disabled.svg b/Ghidra/Debug/Debugger/src/main/svg/write-disabled.svg
index 2af2786bae..c1c1571f12 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/write-disabled.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/write-disabled.svg
@@ -5,12 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- id="svg8"
- version="1.1"
- viewBox="0 0 4.2333331 4.2333331"
+ width="15.999999"
height="15.999999"
- width="15.999999">
+ viewBox="0 0 4.2333331 4.2333331"
+ version="1.1"
+ id="svg8">
-
+ transform="translate(92.278163,-373.01405)"
+ id="g5181">
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -90.161496,376.45363 v -1.32292 l 0.79375,-1.5875 c 0,0 0.264584,-0.52916 0.79375,-0.26458 0.529167,0.26458 0.264584,0.79375 0.264584,0.79375 l -0.79375,1.5875 z"
+ id="path864" />
+
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/write-emulator.svg b/Ghidra/Debug/Debugger/src/main/svg/write-emulator.svg
index 7d4627d504..82bf822dd7 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/write-emulator.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/write-emulator.svg
@@ -5,12 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- id="svg8"
- version="1.1"
- viewBox="0 0 4.2333331 4.2333331"
+ width="15.999999"
height="15.999999"
- width="15.999999">
+ viewBox="0 0 4.2333331 4.2333331"
+ version="1.1"
+ id="svg8">
+ id="g857"
+ transform="matrix(0.26458333,0,0,0.26458333,-8.6817406e-5,8.6605656e-5)">
+ id="g886"
+ transform="translate(3.2812024e-4,-3.2800024e-4)">
+
+
+
+
+
-
+
+
+
+
+
+
+
+
diff --git a/Ghidra/Debug/Debugger/src/main/svg/write-target.svg b/Ghidra/Debug/Debugger/src/main/svg/write-target.svg
index c559e002f5..fc3f940bd6 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/write-target.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/write-target.svg
@@ -5,12 +5,11 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- id="svg8"
- version="1.1"
- viewBox="0 0 4.2333331 4.2333331"
+ width="15.999999"
height="15.999999"
- width="15.999999">
+ viewBox="0 0 4.2333331 4.2333331"
+ version="1.1"
+ id="svg8">
-
-
-
-
-
-
+ transform="scale(0.26458333)"
+ id="g858"
+ style="">
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/Ghidra/Debug/Debugger/src/main/svg/write-trace.svg b/Ghidra/Debug/Debugger/src/main/svg/write-trace.svg
index 6edb3492dd..484ce7ba7a 100644
--- a/Ghidra/Debug/Debugger/src/main/svg/write-trace.svg
+++ b/Ghidra/Debug/Debugger/src/main/svg/write-trace.svg
@@ -6,11 +6,11 @@
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
- id="svg8"
- version="1.1"
- viewBox="0 0 4.2333331 4.2333331"
+ width="15.999999"
height="15.999999"
- width="15.999999">
+ viewBox="0 0 4.2333331 4.2333331"
+ version="1.1"
+ id="svg8">
+
-
-
+ id="g5189">
+
+
+
+
+
+