summaryrefslogtreecommitdiff
path: root/artwork
diff options
context:
space:
mode:
authorBurak Nehbit <nehbit@google.com>2022-07-14 15:57:20 -0700
committerBurak Nehbit <nehbit@google.com>2022-07-15 21:26:00 +0000
commitec0a1bebfba2126c42fee47133db0d7a415531f5 (patch)
tree80fac652f5e6a53177085403a84288fa56d4d059 /artwork
parent27095aa395c0e97e59ff09eb7f75c6892291919d (diff)
downloadidea-ec0a1bebfba2126c42fee47133db0d7a415531f5.tar.gz
Adds the new icons used in gutter and for notes.
Fixes: 234741219 Test: N/A Change-Id: I280a7ac0547cad3d575e8ab8d7750c39df45e77c
Diffstat (limited to 'artwork')
-rw-r--r--artwork/gen/icons/StudioIcons.java20
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr-inline.svg (renamed from artwork/resources/studio/icons/app-quality insights/anr-inline.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr-inline_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/anr-inline_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr-with-note.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr-with-note_dark.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr.svg (renamed from artwork/resources/studio/icons/app-quality insights/anr.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/anr_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/anr_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal-inline.svg (renamed from artwork/resources/studio/icons/app-quality insights/fatal-inline.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal-inline_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/fatal-inline_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal-with-note.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal-with-note_dark.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal.svg (renamed from artwork/resources/studio/icons/app-quality insights/fatal.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/fatal_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/fatal_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/issue.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/issue_dark.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal-inline.svg (renamed from artwork/resources/studio/icons/app-quality insights/non-fatal-inline.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal-inline_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/non-fatal-inline_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note_dark.svg1
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal.svg (renamed from artwork/resources/studio/icons/app-quality insights/non-fatal.svg)0
-rw-r--r--artwork/resources/studio/icons/app-quality-insights/non-fatal_dark.svg (renamed from artwork/resources/studio/icons/app-quality insights/non-fatal_dark.svg)0
-rw-r--r--artwork/resources/studio/icons/device-process-monitor/force-stop.svg1
-rw-r--r--artwork/resources/studio/icons/device-process-monitor/force-stop_dark.svg1
23 files changed, 24 insertions, 6 deletions
diff --git a/artwork/gen/icons/StudioIcons.java b/artwork/gen/icons/StudioIcons.java
index 3ace0f9c5ac..3b53f1da3bb 100644
--- a/artwork/gen/icons/StudioIcons.java
+++ b/artwork/gen/icons/StudioIcons.java
@@ -17,12 +17,16 @@ public class StudioIcons {
}
public static class AppQualityInsights {
- public static final Icon ANR_INLINE = load("/studio/icons/app-quality insights/anr-inline.svg"); // 16x16
- public static final Icon ANR = load("/studio/icons/app-quality insights/anr.svg"); // 16x16
- public static final Icon FATAL_INLINE = load("/studio/icons/app-quality insights/fatal-inline.svg"); // 16x16
- public static final Icon FATAL = load("/studio/icons/app-quality insights/fatal.svg"); // 16x16
- public static final Icon NON_FATAL_INLINE = load("/studio/icons/app-quality insights/non-fatal-inline.svg"); // 16x16
- public static final Icon NON_FATAL = load("/studio/icons/app-quality insights/non-fatal.svg"); // 16x16
+ public static final Icon ANR_INLINE = load("/studio/icons/app-quality-insights/anr-inline.svg"); // 16x16
+ public static final Icon ANR_WITH_NOTE = load("/studio/icons/app-quality-insights/anr-with-note.svg"); // 16x16
+ public static final Icon ANR = load("/studio/icons/app-quality-insights/anr.svg"); // 16x16
+ public static final Icon FATAL_INLINE = load("/studio/icons/app-quality-insights/fatal-inline.svg"); // 16x16
+ public static final Icon FATAL_WITH_NOTE = load("/studio/icons/app-quality-insights/fatal-with-note.svg"); // 16x16
+ public static final Icon FATAL = load("/studio/icons/app-quality-insights/fatal.svg"); // 16x16
+ public static final Icon ISSUE = load("/studio/icons/app-quality-insights/issue.svg"); // 16x16
+ public static final Icon NON_FATAL_INLINE = load("/studio/icons/app-quality-insights/non-fatal-inline.svg"); // 16x16
+ public static final Icon NON_FATAL_WITH_NOTE = load("/studio/icons/app-quality-insights/non-fatal-with-note.svg"); // 16x16
+ public static final Icon NON_FATAL = load("/studio/icons/app-quality-insights/non-fatal.svg"); // 16x16
}
public static class Avd {
@@ -251,6 +255,10 @@ public class StudioIcons {
public static final Icon VIRTUAL_DEVICE_WEAR = load("/studio/icons/device-explorer/virtual-device-wear.svg"); // 16x16
}
+ public static class DeviceProcessMonitor {
+ public static final Icon FORCE_STOP = load("/studio/icons/device-process-monitor/force-stop.svg"); // 16x16
+ }
+
public static class Emulator {
public static class Menu {
public static final Icon MODE_DESKTOP = load("/studio/icons/emulator/menu/mode-desktop.svg"); // 16x16
diff --git a/artwork/resources/studio/icons/app-quality insights/anr-inline.svg b/artwork/resources/studio/icons/app-quality-insights/anr-inline.svg
index e5253749dd8..e5253749dd8 100644
--- a/artwork/resources/studio/icons/app-quality insights/anr-inline.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/anr-inline.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/anr-inline_dark.svg b/artwork/resources/studio/icons/app-quality-insights/anr-inline_dark.svg
index e5253749dd8..e5253749dd8 100644
--- a/artwork/resources/studio/icons/app-quality insights/anr-inline_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/anr-inline_dark.svg
diff --git a/artwork/resources/studio/icons/app-quality-insights/anr-with-note.svg b/artwork/resources/studio/icons/app-quality-insights/anr-with-note.svg
new file mode 100644
index 00000000000..53969a933aa
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/anr-with-note.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.993 1A6.997 6.997 0 0 0 1 8c0 3.864 3.129 7 6.993 7H8v-4.665L6 8.89V4h2v3.672L8.425 8H15c0-3.864-3.136-7-7.007-7z" fill="#9AA7B0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#6E6E6E"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#6E6E6E"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality-insights/anr-with-note_dark.svg b/artwork/resources/studio/icons/app-quality-insights/anr-with-note_dark.svg
new file mode 100644
index 00000000000..48c7249ca77
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/anr-with-note_dark.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.993 1A6.997 6.997 0 0 0 1 8c0 3.864 3.129 7 6.993 7H8v-4.665L6 8.89V4h2v3.672L8.425 8H15c0-3.864-3.136-7-7.007-7z" fill="#9AA7B0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#AFB1B3"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#AFB1B3"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality insights/anr.svg b/artwork/resources/studio/icons/app-quality-insights/anr.svg
index 81033ce3f7b..81033ce3f7b 100644
--- a/artwork/resources/studio/icons/app-quality insights/anr.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/anr.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/anr_dark.svg b/artwork/resources/studio/icons/app-quality-insights/anr_dark.svg
index 81033ce3f7b..81033ce3f7b 100644
--- a/artwork/resources/studio/icons/app-quality insights/anr_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/anr_dark.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/fatal-inline.svg b/artwork/resources/studio/icons/app-quality-insights/fatal-inline.svg
index cbb0808a817..cbb0808a817 100644
--- a/artwork/resources/studio/icons/app-quality insights/fatal-inline.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal-inline.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/fatal-inline_dark.svg b/artwork/resources/studio/icons/app-quality-insights/fatal-inline_dark.svg
index cbb0808a817..cbb0808a817 100644
--- a/artwork/resources/studio/icons/app-quality insights/fatal-inline_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal-inline_dark.svg
diff --git a/artwork/resources/studio/icons/app-quality-insights/fatal-with-note.svg b/artwork/resources/studio/icons/app-quality-insights/fatal-with-note.svg
new file mode 100644
index 00000000000..6983fe75ec5
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal-with-note.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#6E6E6E"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#6E6E6E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.783 5.16L9.202 7.74h.001l.26.26h5.032A6.5 6.5 0 1 0 8 14.24V8.943l-2.581 2.58-1.201-1.203 2.58-2.58-2.58-2.581 1.201-1.202 2.582 2.58 2.58-2.58 1.202 1.203z" fill="#E05555"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality-insights/fatal-with-note_dark.svg b/artwork/resources/studio/icons/app-quality-insights/fatal-with-note_dark.svg
new file mode 100644
index 00000000000..be5438e59e0
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal-with-note_dark.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#AFB1B3"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#AFB1B3"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.783 5.16L9.202 7.74h.001l.26.26h5.032A6.5 6.5 0 1 0 8 14.24V8.943l-2.581 2.58-1.201-1.203 2.58-2.58-2.58-2.581 1.201-1.202 2.582 2.58 2.58-2.58 1.202 1.203z" fill="#E05555"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality insights/fatal.svg b/artwork/resources/studio/icons/app-quality-insights/fatal.svg
index 6a8756d4652..6a8756d4652 100644
--- a/artwork/resources/studio/icons/app-quality insights/fatal.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/fatal_dark.svg b/artwork/resources/studio/icons/app-quality-insights/fatal_dark.svg
index 6a8756d4652..6a8756d4652 100644
--- a/artwork/resources/studio/icons/app-quality insights/fatal_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/fatal_dark.svg
diff --git a/artwork/resources/studio/icons/app-quality-insights/issue.svg b/artwork/resources/studio/icons/app-quality-insights/issue.svg
new file mode 100644
index 00000000000..7b1186c6e50
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/issue.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.3 15l-2.1-5.09L15 8.635 11.5 8 15 1 9.4 6.727 6 3l1.3 5-5.8-1 4.4 3.545L3.5 14.5l5.2-3.318L14.3 15z" fill="#9AA7B0"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality-insights/issue_dark.svg b/artwork/resources/studio/icons/app-quality-insights/issue_dark.svg
new file mode 100644
index 00000000000..7b1186c6e50
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/issue_dark.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.3 15l-2.1-5.09L15 8.635 11.5 8 15 1 9.4 6.727 6 3l1.3 5-5.8-1 4.4 3.545L3.5 14.5l5.2-3.318L14.3 15z" fill="#9AA7B0"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality insights/non-fatal-inline.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal-inline.svg
index 918e8092d37..918e8092d37 100644
--- a/artwork/resources/studio/icons/app-quality insights/non-fatal-inline.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal-inline.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/non-fatal-inline_dark.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal-inline_dark.svg
index 918e8092d37..918e8092d37 100644
--- a/artwork/resources/studio/icons/app-quality insights/non-fatal-inline_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal-inline_dark.svg
diff --git a/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note.svg
new file mode 100644
index 00000000000..a32e639911d
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#6E6E6E"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#6E6E6E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15a7 7 0 1 1 7-7H9V4H7v5h1v1H7v2h1v3z" fill="#F4AF3D"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note_dark.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note_dark.svg
new file mode 100644
index 00000000000..cf10169e355
--- /dev/null
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal-with-note_dark.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10h-5v5h5v-5zM9 9v7h7V9H9z" fill="#AFB1B3"/><path d="M11 11h3v1h-3v-1zM11 13h2v1h-2v-1z" fill="#AFB1B3"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15a7 7 0 1 1 7-7H9V4H7v5h1v1H7v2h1v3z" fill="#F4AF3D"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/app-quality insights/non-fatal.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal.svg
index df245c98517..df245c98517 100644
--- a/artwork/resources/studio/icons/app-quality insights/non-fatal.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal.svg
diff --git a/artwork/resources/studio/icons/app-quality insights/non-fatal_dark.svg b/artwork/resources/studio/icons/app-quality-insights/non-fatal_dark.svg
index df245c98517..df245c98517 100644
--- a/artwork/resources/studio/icons/app-quality insights/non-fatal_dark.svg
+++ b/artwork/resources/studio/icons/app-quality-insights/non-fatal_dark.svg
diff --git a/artwork/resources/studio/icons/device-process-monitor/force-stop.svg b/artwork/resources/studio/icons/device-process-monitor/force-stop.svg
new file mode 100644
index 00000000000..6a8756d4652
--- /dev/null
+++ b/artwork/resources/studio/icons/device-process-monitor/force-stop.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm2.657-11l1.414 1.414L9.45 8.036l2.328 2.328-1.414 1.414L8.036 9.45l-2.327 2.327-1.414-1.414L6.62 8.036 4 5.414 5.414 4l2.622 2.621L10.657 4z" fill="#E05555"/></svg> \ No newline at end of file
diff --git a/artwork/resources/studio/icons/device-process-monitor/force-stop_dark.svg b/artwork/resources/studio/icons/device-process-monitor/force-stop_dark.svg
new file mode 100644
index 00000000000..6a8756d4652
--- /dev/null
+++ b/artwork/resources/studio/icons/device-process-monitor/force-stop_dark.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm2.657-11l1.414 1.414L9.45 8.036l2.328 2.328-1.414 1.414L8.036 9.45l-2.327 2.327-1.414-1.414L6.62 8.036 4 5.414 5.414 4l2.622 2.621L10.657 4z" fill="#E05555"/></svg> \ No newline at end of file