dead icons
@@ -1,18 +0,0 @@
|
||||
package icons;
|
||||
|
||||
import com.intellij.openapi.util.IconLoader;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
/**
|
||||
* NOTE THIS FILE IS AUTO-GENERATED by the build/scripts/icons.gant
|
||||
* Don't repeat mistakes of others ;-)
|
||||
*/
|
||||
public class IntentionPowerPackPluginIcons {
|
||||
private static Icon load(String path) {
|
||||
return IconLoader.getIcon(path, IntentionPowerPackPluginIcons.class);
|
||||
}
|
||||
|
||||
public static final Icon IPPIcon = load("/IPPIcon.png"); // 32x32
|
||||
public static final Icon IPPIconold = load("/IPPIconold.png"); // 32x32
|
||||
}
|
||||
|
Before Width: | Height: | Size: 712 B |
|
Before Width: | Height: | Size: 715 B |
|
Before Width: | Height: | Size: 1007 B |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 1007 B |
|
Before Width: | Height: | Size: 737 B |
|
Before Width: | Height: | Size: 619 B |
|
Before Width: | Height: | Size: 739 B |
|
Before Width: | Height: | Size: 711 B |
|
Before Width: | Height: | Size: 771 B |
|
Before Width: | Height: | Size: 775 B |
@@ -0,0 +1,2 @@
|
||||
# error.png is used in MavenProjectsStructure
|
||||
used: error.png
|
||||
|
Before Width: | Height: | Size: 631 B |
|
Before Width: | Height: | Size: 792 B |
|
Before Width: | Height: | Size: 789 B |
|
Before Width: | Height: | Size: 647 B |
|
Before Width: | Height: | Size: 771 B |
|
Before Width: | Height: | Size: 724 B |
|
Before Width: | Height: | Size: 428 B |
|
Before Width: | Height: | Size: 616 B |
@@ -21,6 +21,7 @@ import com.intellij.openapi.actionSystem.Anchor;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.spellchecker.SpellCheckerManager;
|
||||
import com.intellij.spellchecker.util.SpellCheckerBundle;
|
||||
import icons.SpellcheckerIcons;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import javax.swing.*;
|
||||
@@ -61,6 +62,6 @@ public class AcceptWordAsCorrect implements SpellCheckerQuickFix {
|
||||
}
|
||||
|
||||
public Icon getIcon(int flags) {
|
||||
return new ImageIcon(ShowSuggestions.class.getResource("spellcheck.png"));
|
||||
return SpellcheckerIcons.Spellcheck;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@ import com.intellij.codeInspection.LocalQuickFix;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.util.Iconable;
|
||||
import com.intellij.spellchecker.SpellCheckerManager;
|
||||
import icons.SpellcheckerIcons;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import javax.swing.*;
|
||||
@@ -46,6 +47,6 @@ public abstract class ShowSuggestions implements LocalQuickFix, Iconable {
|
||||
}
|
||||
|
||||
public Icon getIcon(int flags) {
|
||||
return new ImageIcon(ShowSuggestions.class.getResource("spellcheck.png"));
|
||||
return SpellcheckerIcons.Spellcheck;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,5 +13,5 @@ public class SpellcheckerIcons {
|
||||
return IconLoader.getIcon(path, SpellcheckerIcons.class);
|
||||
}
|
||||
|
||||
public static final Icon Spellcheck = load("/com/intellij/spellchecker/quickfixes/spellcheck.png"); // 16x16
|
||||
public static final Icon Spellcheck = load("/icons/spellcheck.png"); // 16x16
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 765 B After Width: | Height: | Size: 765 B |
@@ -15,20 +15,20 @@
|
||||
*/
|
||||
package org.jetbrains.idea.svn;
|
||||
|
||||
import com.intellij.openapi.util.IconLoader;
|
||||
import icons.Svn4ideaIcons;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
public enum ConflictState {
|
||||
none(false, false, false, null),
|
||||
tree(true, false, false, "/icons/conflictc.png"),
|
||||
text(false, true, false, "/icons/conflictt.png"),
|
||||
prop(false, false, true, "/icons/conflictp.png"),
|
||||
tree_text(true, true, false, "/icons/conflictct.png"), // ? -
|
||||
tree_prop(true, false, true, "/icons/conflictcp.png"), // now falls but marked
|
||||
text_prop(false, true, true, "/icons/conflicttp.png"),
|
||||
all3(true, true, true, "/icons/conflictctp.png"); // ? -
|
||||
tree(true, false, false, Svn4ideaIcons.Conflictc),
|
||||
text(false, true, false, Svn4ideaIcons.Conflictt),
|
||||
prop(false, false, true, Svn4ideaIcons.Conflictp),
|
||||
tree_text(true, true, false, Svn4ideaIcons.Conflictct), // ? -
|
||||
tree_prop(true, false, true, Svn4ideaIcons.Conflictcp), // now falls but marked
|
||||
text_prop(false, true, true, Svn4ideaIcons.Conflicttp),
|
||||
all3(true, true, true, Svn4ideaIcons.Conflictctp); // ? -
|
||||
|
||||
private final boolean myTree;
|
||||
private final boolean myText;
|
||||
@@ -37,16 +37,12 @@ public enum ConflictState {
|
||||
private final Icon myIcon;
|
||||
private final String myDescription;
|
||||
|
||||
private ConflictState(final boolean tree, final boolean text, final boolean property, final String iconPath) {
|
||||
ConflictState(final boolean tree, final boolean text, final boolean property, @Nullable final Icon icon) {
|
||||
myTree = tree;
|
||||
myText = text;
|
||||
myProperty = property;
|
||||
|
||||
if (iconPath != null) {
|
||||
myIcon = IconLoader.getIcon(iconPath);
|
||||
} else {
|
||||
myIcon = null;
|
||||
}
|
||||
myIcon = icon;
|
||||
|
||||
myDescription = createDescription();
|
||||
}
|
||||
@@ -64,7 +60,7 @@ public enum ConflictState {
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
private int checkOne(final boolean value, final int init, final StringBuilder sb, final String text) {
|
||||
private static int checkOne(final boolean value, final int init, final StringBuilder sb, final String text) {
|
||||
if (value) {
|
||||
if (sb.length() > 0) {
|
||||
sb.append(", ");
|
||||
|
||||
@@ -20,7 +20,6 @@ public class TasksCoreIcons {
|
||||
public static final Icon Github = load("/icons/github.png"); // 16x16
|
||||
public static final Icon Lighthouse = load("/icons/lighthouse.gif"); // 16x16
|
||||
public static final Icon Mantis = load("/icons/mantis.png"); // 16x16
|
||||
public static final Icon Navigate = load("/icons/navigate.png"); // 16x16
|
||||
public static final Icon Other = load("/icons/other.png"); // 16x16
|
||||
|
||||
public static class Pivotal {
|
||||
@@ -32,10 +31,8 @@ public class TasksCoreIcons {
|
||||
}
|
||||
public static final Icon Pivotal = load("/icons/pivotal.png"); // 16x16
|
||||
public static final Icon Redmine = load("/icons/redmine.png"); // 16x16
|
||||
public static final Icon Save = load("/icons/save.png"); // 16x16
|
||||
public static final Icon SavedContext = load("/icons/savedContext.png"); // 16x16
|
||||
public static final Icon Trac = load("/icons/trac.png"); // 16x16
|
||||
public static final Icon Unknown = load("/icons/unknown.png"); // 16x16
|
||||
public static final Icon Web = load("/icons/web.png"); // 16x16
|
||||
public static final Icon Youtrack = load("/icons/youtrack.png"); // 16x16
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ public class UIDesignerIcons {
|
||||
return IconLoader.getIcon(path, UIDesignerIcons.class);
|
||||
}
|
||||
|
||||
public static final Icon Break = load("/com/intellij/uiDesigner/icons/break.png"); // 18x18
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public static final Icon Button = load("/com/intellij/uiDesigner/icons/button.png"); // 16x16
|
||||
@@ -27,7 +26,6 @@ public class UIDesignerIcons {
|
||||
@SuppressWarnings("unused")
|
||||
public static final Icon ComboBox = load("/com/intellij/uiDesigner/icons/comboBox.png"); // 16x16
|
||||
public static final Icon DataBindingWizard = load("/com/intellij/uiDesigner/icons/dataBindingWizard.png"); // 16x16
|
||||
public static final Icon Delete = load("/com/intellij/uiDesigner/icons/delete.png"); // 18x18
|
||||
public static final Icon DeleteCell = load("/com/intellij/uiDesigner/icons/deleteCell.png"); // 7x7
|
||||
public static final Icon Drag = load("/com/intellij/uiDesigner/icons/drag.png"); // 11x11
|
||||
|
||||
@@ -39,8 +37,6 @@ public class UIDesignerIcons {
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public static final Icon FormattedTextField = load("/com/intellij/uiDesigner/icons/formattedTextField.png"); // 16x16
|
||||
public static final Icon Grid = load("/com/intellij/uiDesigner/icons/grid.png"); // 18x18
|
||||
public static final Icon Horizontal = load("/com/intellij/uiDesigner/icons/horizontal.png"); // 18x18
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public static final Icon Hspacer = load("/com/intellij/uiDesigner/icons/hspacer.png"); // 16x16
|
||||
@@ -115,7 +111,6 @@ public class UIDesignerIcons {
|
||||
public static final Icon Tree = load("/com/intellij/uiDesigner/icons/tree.png"); // 16x16
|
||||
public static final Icon Unknown_small = load("/com/intellij/uiDesigner/icons/unknown-small.png"); // 16x16
|
||||
public static final Icon Unknown = load("/com/intellij/uiDesigner/icons/unknown.png"); // 18x18
|
||||
public static final Icon Vertical = load("/com/intellij/uiDesigner/icons/vertical.png"); // 18x18
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public static final Icon Vspacer = load("/com/intellij/uiDesigner/icons/vspacer.png"); // 16x16
|
||||
|
||||