/* * Copyright 2010 Ronnie Kolehmainen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.cssxfire.tree; import com.intellij.navigation.ItemPresentation; import com.intellij.openapi.actionSystem.ActionGroup; import com.intellij.openapi.actionSystem.ActionManager; import com.intellij.openapi.util.Iconable; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.psi.PsiFile; import org.jetbrains.annotations.Nullable; import javax.swing.*; import javax.swing.tree.TreeNode; /** * Created by IntelliJ IDEA. * User: Ronnie */ public class CssFileNode extends CssTreeNode implements Navigatable { private final PsiFile psiFile; public CssFileNode(PsiFile psiFile) { this.psiFile = psiFile; } public String getFilename() { return psiFile.getName(); } @Nullable public VirtualFile getVirtualFile() { return psiFile.getVirtualFile(); } @Override public Icon getIcon() { ItemPresentation presentation = psiFile.getPresentation(); return presentation != null ? presentation.getIcon(true) : psiFile.getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS); } @Override public String getName() { return getFilename(); } @Override public String getText() { return getName() + " (" + TreeUtils.countLeafs(this) + ")"; } @Override public ActionGroup getActionGroup() { return (ActionGroup) ActionManager.getInstance().getAction("IncomingChanges.DeclarationNodePopup.File"); } public void navigate() { // this check shouldn't be needed but better safe than sorry... if (getChildCount() > 0) { TreeNode firstChild = getChildAt(0); if (firstChild instanceof Navigatable) { ((Navigatable) firstChild).navigate(); } } } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CssFileNode fileNode = (CssFileNode) o; if (psiFile != null ? !psiFile.equals(fileNode.psiFile) : fileNode.psiFile != null) { return false; } return true; } @Override public int hashCode() { return psiFile != null ? psiFile.hashCode() : 0; } }