update copyrights
[fedora-idea.git] / platform / lang-api / src / com / intellij / execution / ui / actions / AbstractFocusOnAction.java
blob198fe1c6e4fbd5b4e4b3098f8c6b550ff57ca854
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.execution.ui.actions;
19 import com.intellij.execution.ui.layout.ViewContext;
20 import com.intellij.openapi.actionSystem.AnActionEvent;
21 import com.intellij.openapi.actionSystem.Toggleable;
22 import com.intellij.ui.content.Content;
24 public class AbstractFocusOnAction extends BaseViewAction implements Toggleable {
25 private final String myCondition;
27 public AbstractFocusOnAction(String condition) {
28 myCondition = condition;
31 protected void update(final AnActionEvent e, final ViewContext context, final Content[] content) {
32 final boolean visible = content.length == 1;
33 e.getPresentation().setVisible(visible);
34 if (visible) {
35 e.getPresentation().putClientProperty(SELECTED_PROPERTY, isToFocus(context, content));
39 private boolean isToFocus(final ViewContext context, final Content[] content) {
40 return context.getRunnerLayoutUi().getOptions().isToFocus(content[0], myCondition);
43 protected void actionPerformed(final AnActionEvent e, final ViewContext context, final Content[] content) {
44 final boolean toFocus = isToFocus(context, content);
45 context.getRunnerLayoutUi().getOptions().setToFocus(toFocus ? null : content[0], myCondition);