-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from snyk/feat/IDE-711_icon-chooser
chore: UI cleanup [IDE-711 ]
- Loading branch information
Showing
23 changed files
with
435 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
plugin/src/main/java/io/snyk/eclipse/plugin/utils/SnykIcons.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package io.snyk.eclipse.plugin.utils; | ||
|
||
import org.eclipse.jface.resource.ImageDescriptor; | ||
|
||
import io.snyk.eclipse.plugin.Activator; | ||
|
||
public class SnykIcons { | ||
public static final ImageDescriptor CODE = Activator.getImageDescriptor("/icons/code.png"); | ||
public static final ImageDescriptor CODE_DISABLED = Activator.getImageDescriptor("/icons/code_disabled.png"); | ||
|
||
public static final ImageDescriptor OSS = Activator.getImageDescriptor("/icons/oss.png"); | ||
public static final ImageDescriptor OSS_DISABLED = Activator.getImageDescriptor("/icons/oss_disabled.png"); | ||
|
||
public static final ImageDescriptor IAC = Activator.getImageDescriptor("/icons/iac.png"); | ||
public static final ImageDescriptor IAC_DISABLED = Activator.getImageDescriptor("/icons/iac_disabled.png"); | ||
|
||
public static final ImageDescriptor SEVERITY_CRITICAL = Activator | ||
.getImageDescriptor("/icons/severity-critical.png"); | ||
public static final ImageDescriptor SEVERITY_HIGH = Activator.getImageDescriptor("/icons/severity-high.png"); | ||
public static final ImageDescriptor SEVERITY_MEDIUM = Activator.getImageDescriptor("/icons/severity-medium.png"); | ||
public static final ImageDescriptor SEVERITY_LOW = Activator.getImageDescriptor("/icons/severity-low.png"); | ||
|
||
public static final ImageDescriptor ENABLED = Activator.getImageDescriptor("/icons/enabled.png"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.