update copyright
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / actions / ShowSvnMapAction.java
blobec02cdbb8524f664e78db39f12b8622fad54f554
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.
16 package org.jetbrains.idea.svn.actions;
18 import com.intellij.openapi.actionSystem.*;
19 import com.intellij.openapi.project.Project;
20 import com.intellij.openapi.util.IconLoader;
21 import org.jetbrains.idea.svn.SvnBundle;
22 import org.jetbrains.idea.svn.dialogs.SvnMapDialog;
24 public class ShowSvnMapAction extends AnAction {
25 @Override
26 public void update(final AnActionEvent e) {
27 final DataContext dataContext = e.getDataContext();
28 final Project project = (Project) dataContext.getData(PlatformDataKeys.PROJECT.getName());
30 final Presentation presentation = e.getPresentation();
31 presentation.setVisible(project != null);
32 presentation.setEnabled(project != null);
34 presentation.setText(SvnBundle.message("action.show.svn.map.text"));
35 presentation.setDescription(SvnBundle.message("action.show.svn.map.description"));
36 presentation.setIcon(IconLoader.getIcon("/icons/ShowWorkingCopies.png"));
39 public void actionPerformed(final AnActionEvent e) {
40 final DataContext dataContext = e.getDataContext();
41 final Project project = (Project) dataContext.getData(PlatformDataKeys.PROJECT.getName());
42 if (project == null) {
43 return;
46 final SvnMapDialog dialog = new SvnMapDialog(project);
47 dialog.show();