update copyrights
[fedora-idea.git] / platform / lang-impl / src / com / intellij / codeInsight / hint / PrevNextParameterHandler.java
blob80a2195cb9dba2dd7438a45ec07018374c301497
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.codeInsight.hint;
19 import com.intellij.openapi.actionSystem.DataContext;
20 import com.intellij.openapi.actionSystem.PlatformDataKeys;
21 import com.intellij.openapi.editor.Editor;
22 import com.intellij.openapi.editor.actionSystem.EditorActionHandler;
23 import com.intellij.openapi.project.Project;
24 import com.intellij.psi.PsiDocumentManager;
25 import com.intellij.psi.PsiElement;
26 import com.intellij.psi.PsiFile;
28 /**
29 * @author ven
31 public class PrevNextParameterHandler extends EditorActionHandler {
32 public PrevNextParameterHandler(boolean isNextParameterHandler) {
33 myIsNextParameterHandler = isNextParameterHandler;
36 private final boolean myIsNextParameterHandler;
38 private static PsiElement getExpressionList(Editor editor, Project project) {
39 int offset = editor.getCaretModel().getOffset();
40 PsiFile file = PsiDocumentManager.getInstance(project).getPsiFile(editor.getDocument());
41 if (file == null) return null;
42 return ParameterInfoController.findArgumentList(file, offset, -1);
45 public boolean isEnabled(Editor editor, DataContext dataContext) {
46 Project project = PlatformDataKeys.PROJECT.getData(dataContext);
47 if (project == null) return false;
48 PsiDocumentManager.getInstance(project).commitAllDocuments();
50 PsiElement exprList = getExpressionList(editor, project);
51 return exprList != null && ParameterInfoController.isAlreadyShown(editor, exprList.getTextRange().getStartOffset());
54 public void execute(Editor editor, DataContext dataContext) {
55 Project project = PlatformDataKeys.PROJECT.getData(dataContext);
56 PsiElement exprList = getExpressionList(editor, project);
57 int listOffset = exprList.getTextRange().getStartOffset();
58 if (myIsNextParameterHandler) {
59 ParameterInfoController.nextParameter(editor, listOffset);
61 else {
62 ParameterInfoController.prevParameter(editor, listOffset);