update copyright
[fedora-idea.git] / plugins / cvs / cvs-plugin / src / com / intellij / cvsSupport2 / ui / SelectFileVersionDialog.java
blob14e97ff4de77a66ce3cdeef41d32e24fa392ed83
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 com.intellij.cvsSupport2.ui;
18 import com.intellij.cvsSupport2.config.CvsConfiguration;
19 import com.intellij.cvsSupport2.config.DateOrRevisionSettings;
20 import com.intellij.cvsSupport2.cvsoperations.cvsTagOrBranch.TagsProviderOnVirtualFiles;
21 import com.intellij.cvsSupport2.cvsoperations.dateOrRevision.ui.DateOrRevisionOrTagSettings;
22 import com.intellij.openapi.project.Project;
23 import com.intellij.openapi.ui.DialogWrapper;
24 import com.intellij.openapi.vcs.FilePath;
26 import javax.swing.*;
27 import java.util.Collections;
29 /**
30 * author: lesya
32 public class SelectFileVersionDialog extends DialogWrapper {
33 private final DateOrRevisionOrTagSettings myDateOrRevisionOrTagSettings;
34 private final Project myProject;
36 public SelectFileVersionDialog(FilePath file, Project project) {
37 super(true);
38 myProject = project;
39 myDateOrRevisionOrTagSettings =
40 new DateOrRevisionOrTagSettings(new TagsProviderOnVirtualFiles(Collections.singleton(file)),
41 myProject, false);
43 myDateOrRevisionOrTagSettings.updateFrom(CvsConfiguration.getInstance(project).SHOW_CHANGES_REVISION_SETTINGS);
44 setTitle(com.intellij.CvsBundle.message("dialog.title.select.tag.or.date"));
45 init();
48 protected void doOKAction() {
49 try {
50 myDateOrRevisionOrTagSettings.saveTo(CvsConfiguration.getInstance(myProject).SHOW_CHANGES_REVISION_SETTINGS);
52 finally {
53 super.doOKAction();
57 protected JComponent createCenterPanel() {
58 return myDateOrRevisionOrTagSettings.getPanel();
61 public DateOrRevisionSettings getRevisionOrDate() {
62 return CvsConfiguration.getInstance(myProject).SHOW_CHANGES_REVISION_SETTINGS;