blob: 8c9415e175ed5c4bddd0c8b196e509b4634c7689 [file] [log] [blame]
/*
* Copyright 2000-2009 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.ide.actions;
import com.intellij.ide.IdeBundle;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.command.CommandProcessor;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.editor.actionSystem.EditorActionHandler;
import com.intellij.openapi.editor.actions.TextComponentEditorAction;
import com.intellij.openapi.project.DumbAware;
public class SelectAllAction extends TextComponentEditorAction implements DumbAware {
public SelectAllAction() {
super(new Handler());
}
private static class Handler extends EditorActionHandler {
@Override
public void execute(final Editor editor, DataContext dataContext) {
CommandProcessor processor = CommandProcessor.getInstance();
processor.executeCommand(CommonDataKeys.PROJECT.getData(dataContext), new Runnable() {
public void run() {
editor.getSelectionModel().setSelection(0, editor.getDocument().getTextLength());
}
}, IdeBundle.message("command.select.all"), null);
}
}
public void update(AnActionEvent event){
Presentation presentation = event.getPresentation();
Editor editor = TextComponentEditorAction.getEditorFromContext(event.getDataContext());
presentation.setEnabled(editor != null);
}
}