Yet a bit more icons removed
|
Before Width: | Height: | Size: 539 B |
|
Before Width: | Height: | Size: 537 B |
|
Before Width: | Height: | Size: 438 B |
|
Before Width: | Height: | Size: 476 B |
|
Before Width: | Height: | Size: 435 B |
|
Before Width: | Height: | Size: 182 B |
|
Before Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 812 B |
|
Before Width: | Height: | Size: 809 B |
|
Before Width: | Height: | Size: 809 B |
|
Before Width: | Height: | Size: 812 B |
|
Before Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 199 B |
|
Before Width: | Height: | Size: 378 B After Width: | Height: | Size: 378 B |
@@ -8,6 +8,7 @@
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module" module-name="lvcs-impl" exported="" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="util" />
|
||||
</component>
|
||||
</module>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<component>
|
||||
<actions>
|
||||
<action id="Vcs.ShowTabbedFileHistory" class="com.intellij.openapi.vcs.actions.TabbedShowHistoryAction"
|
||||
icon="AllIcons._cvs.ShowAsTree"/>
|
||||
icon="AllIcons.Actions.ShowAsTree"/>
|
||||
|
||||
<action id="CheckinProject" class="com.intellij.openapi.vcs.actions.CommonCheckinProjectAction" icon="AllIcons.Actions.Commit">
|
||||
<keyboard-shortcut first-keystroke="control K" keymap="$default"/>
|
||||
@@ -48,7 +48,7 @@
|
||||
text = "VCS Operations Popup..." description="Context aware popup with list of commonly used VCS actions"/>
|
||||
<action id="Vcs.ChangesView" class="com.intellij.openapi.vcs.changes.ShowChangesViewAction"/>
|
||||
<reference ref="CheckinProject"/>
|
||||
<action id="Vcs.UpdateProject" class="com.intellij.openapi.vcs.update.CommonUpdateProjectAction" icon="AllIcons._cvs.CheckOut">
|
||||
<action id="Vcs.UpdateProject" class="com.intellij.openapi.vcs.update.CommonUpdateProjectAction" icon="AllIcons.Actions.CheckOut">
|
||||
<keyboard-shortcut first-keystroke="control T" keymap="$default"/>
|
||||
</action>
|
||||
<action id="Vcs.IntegrateProject" class="com.intellij.openapi.vcs.update.CommonIntegrateProjectAction"/>
|
||||
|
||||
@@ -6,26 +6,6 @@ import javax.swing.*;
|
||||
|
||||
public class AllIcons {
|
||||
|
||||
public static class _cvs {
|
||||
public static final Icon CheckOut = IconLoader.getIcon("/_cvs/checkOut.png");
|
||||
public static final Icon Cvs = IconLoader.getIcon("/_cvs/cvs.png");
|
||||
public static final Icon HideMissing = IconLoader.getIcon("/_cvs/hideMissing.png");
|
||||
public static final Icon HideUnknown = IconLoader.getIcon("/_cvs/hideUnknown.png");
|
||||
public static final Icon HideUptodate = IconLoader.getIcon("/_cvs/hideUptodate.png");
|
||||
public static final Icon Missing = IconLoader.getIcon("/_cvs/missing.png");
|
||||
public static final Icon ShowAsTree = IconLoader.getIcon("/_cvs/showAsTree.png");
|
||||
public static final Icon TestInProgress1 = IconLoader.getIcon("/_cvs/testInProgress1.png");
|
||||
public static final Icon TestInProgress2 = IconLoader.getIcon("/_cvs/testInProgress2.png");
|
||||
public static final Icon TestInProgress3 = IconLoader.getIcon("/_cvs/testInProgress3.png");
|
||||
public static final Icon TestInProgress4 = IconLoader.getIcon("/_cvs/testInProgress4.png");
|
||||
public static final Icon TestInProgress5 = IconLoader.getIcon("/_cvs/testInProgress5.png");
|
||||
public static final Icon TestInProgress6 = IconLoader.getIcon("/_cvs/testInProgress6.png");
|
||||
public static final Icon TestInProgress7 = IconLoader.getIcon("/_cvs/testInProgress7.png");
|
||||
public static final Icon TestInProgress8 = IconLoader.getIcon("/_cvs/testInProgress8.png");
|
||||
public static final Icon Unknown = IconLoader.getIcon("/_cvs/unknown.png");
|
||||
|
||||
}
|
||||
|
||||
public static class Actions {
|
||||
public static final Icon AddFacesSupport = IconLoader.getIcon("/actions/addFacesSupport.png");
|
||||
public static final Icon Annotate = IconLoader.getIcon("/actions/annotate.png");
|
||||
@@ -155,6 +135,7 @@ public class AllIcons {
|
||||
public static final Icon Search = IconLoader.getIcon("/actions/search.png");
|
||||
public static final Icon Selectall = IconLoader.getIcon("/actions/selectall.png");
|
||||
public static final Icon Share = IconLoader.getIcon("/actions/share.png");
|
||||
public static final Icon ShowAsTree = IconLoader.getIcon("/actions/showAsTree.png");
|
||||
public static final Icon ShowChangesOnly = IconLoader.getIcon("/actions/showChangesOnly.png");
|
||||
public static final Icon ShowHiddens = IconLoader.getIcon("/actions/showHiddens.png");
|
||||
public static final Icon ShowImportStatements = IconLoader.getIcon("/actions/showImportStatements.png");
|
||||
|
||||
@@ -108,7 +108,7 @@ public class CvsTabbedWindow {
|
||||
ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(myProject);
|
||||
ToolWindow toolWindow =
|
||||
toolWindowManager.registerToolWindow(ToolWindowId.CVS, myContentManager.getComponent(), ToolWindowAnchor.BOTTOM);
|
||||
toolWindow.setIcon(AllIcons._cvs.Cvs);
|
||||
toolWindow.setIcon(AllIcons.Actions.Cvs);
|
||||
toolWindow.installWatcher(myContentManager);
|
||||
}
|
||||
|
||||
|
||||