blob: 3383236b02e60e065daed08141168e484fd8f609 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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.intellij.openapi.wm.impl;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.PlatformDataKeys;
import com.intellij.openapi.actionSystem.ToggleAction;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.project.ProjectManager;
import com.intellij.openapi.wm.WindowManager;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
import java.awt.*;
/**
* @ author Bas Leijdekkers
* This class is programmatically instantiated and registered when opening and closing projects
* and thus not registered in plugin.xml
*/
@SuppressWarnings({"ComponentNotRegistered"})
public class ProjectWindowAction extends ToggleAction implements DumbAware {
private ProjectWindowAction myPrevious;
private ProjectWindowAction myNext;
@NotNull private final String myProjectName;
@NotNull private final String myProjectLocation;
public ProjectWindowAction(@NotNull String projectName, @NotNull String projectLocation, ProjectWindowAction previous) {
super();
myProjectName = projectName;
myProjectLocation = projectLocation;
if (previous != null) {
myPrevious = previous;
myNext = previous.myNext;
myNext.myPrevious = this;
myPrevious.myNext = this;
} else {
myPrevious = this;
myNext = this;
}
getTemplatePresentation().setText(projectName, false);
}
public void dispose() {
if (myPrevious == this) {
assert myNext == this;
return;
}
if (myNext == this) {
assert false;
return;
}
myPrevious.myNext = myNext;
myNext.myPrevious = myPrevious;
}
public ProjectWindowAction getPrevious() {
return myPrevious;
}
public ProjectWindowAction getNext() {
return myNext;
}
@NotNull
public String getProjectLocation() {
return myProjectLocation;
}
@NotNull
public String getProjectName() {
return myProjectName;
}
@Nullable
private Project findProject() {
final Project[] projects = ProjectManager.getInstance().getOpenProjects();
for (Project project : projects) {
if (myProjectLocation.equals(project.getPresentableUrl())) {
return project;
}
}
return null;
}
@Override
public boolean isSelected(AnActionEvent e) {
// show check mark for active and visible project frame
final Project project = e.getData(CommonDataKeys.PROJECT);
if (project == null) {
return false;
}
return myProjectLocation.equals(project.getPresentableUrl());
}
@Override
public void setSelected(@Nullable AnActionEvent e, boolean selected) {
if (!selected) {
return;
}
final Project project = findProject();
if (project == null) {
return;
}
final JFrame projectFrame = WindowManager.getInstance().getFrame(project);
final int frameState = projectFrame.getExtendedState();
if ((frameState & Frame.ICONIFIED) == Frame.ICONIFIED) {
// restore the frame if it is minimized
projectFrame.setExtendedState(frameState ^ Frame.ICONIFIED);
}
projectFrame.toFront();
projectFrame.requestFocus();
//ProjectUtil.focusProjectWindow(project, true);
}
@Override
public String toString() {
return getTemplatePresentation().getText() + " previous: " + myPrevious.getTemplatePresentation().getText() + " next: " + myNext.getTemplatePresentation().getText();
}
}