~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/update/RevertModifications.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
package org.netbeans.modules.mercurial.ui.update;
 
42
 
 
43
import java.awt.Dialog;
 
44
import java.awt.event.ActionEvent;
 
45
import java.awt.event.ActionListener;
 
46
import java.beans.PropertyChangeEvent;
 
47
import java.beans.PropertyChangeListener;
 
48
import java.net.MalformedURLException;
 
49
import javax.swing.JButton;
 
50
import javax.swing.JRadioButton;
 
51
import javax.swing.event.DocumentEvent;
 
52
import javax.swing.event.DocumentListener;
 
53
import org.openide.DialogDescriptor;
 
54
import org.openide.DialogDisplayer;
 
55
import org.openide.ErrorManager;
 
56
import org.openide.util.HelpCtx;
 
57
import java.io.File;
 
58
 
 
59
/**
 
60
 *
 
61
 * @author Padraig O'Briain
 
62
 */
 
63
public class RevertModifications implements PropertyChangeListener {
 
64
 
 
65
    private RevertModificationsPanel panel;
 
66
    private JButton okButton;
 
67
    private JButton cancelButton;
 
68
    
 
69
    /** Creates a new instance of RevertModifications */
 
70
    public RevertModifications(File repository, File[] files) {
 
71
        this (repository, files, null);
 
72
    }
 
73
 
 
74
    public RevertModifications(File repository, File[] files, String defaultRevision) {
 
75
        panel = new RevertModificationsPanel(repository, files);
 
76
        okButton = new JButton();
 
77
        org.openide.awt.Mnemonics.setLocalizedText(okButton, org.openide.util.NbBundle.getMessage(RevertModifications.class, "CTL_RevertForm_Action_Revert")); // NOI18N
 
78
        okButton.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSD_RevertForm_Action_Revert")); // NOI18N
 
79
        okButton.getAccessibleContext().setAccessibleName(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSN_RevertForm_Action_Revert")); // NOI18N
 
80
        cancelButton = new JButton();
 
81
        org.openide.awt.Mnemonics.setLocalizedText(cancelButton, org.openide.util.NbBundle.getMessage(RevertModifications.class, "CTL_RevertForm_Action_Cancel")); // NOI18N
 
82
        cancelButton.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSD_RevertForm_Action_Cancel")); // NOI18N
 
83
        cancelButton.getAccessibleContext().setAccessibleName(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSN_RevertForm_Action_Cancel")); // NOI18N
 
84
    } 
 
85
    
 
86
    public boolean showDialog() {
 
87
        File[] revertFiles = panel.getRevertFiles();
 
88
        DialogDescriptor dialogDescriptor;
 
89
        if (revertFiles.length == 1) {
 
90
            dialogDescriptor = new DialogDescriptor(panel, org.openide.util.NbBundle.getMessage(RevertModifications.class, "CTL_RevertDialog", revertFiles[0].getName())); // NOI18N
 
91
        } else {
 
92
            dialogDescriptor = new DialogDescriptor(panel, org.openide.util.NbBundle.getMessage(RevertModifications.class, "CTL_MultiRevertDialog")); // NOI18N 
 
93
        }
 
94
        dialogDescriptor.setOptions(new Object[] {okButton, cancelButton});
 
95
        
 
96
        dialogDescriptor.setModal(true);
 
97
        dialogDescriptor.setHelpCtx(new HelpCtx(this.getClass()));
 
98
        dialogDescriptor.setValid(false);
 
99
        
 
100
        Dialog dialog = DialogDisplayer.getDefault().createDialog(dialogDescriptor);     
 
101
        if (revertFiles.length == 1) {
 
102
            dialog.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSD_RevertDialog", revertFiles[0].getName())); // NOI18N
 
103
        } else {
 
104
            dialog.getAccessibleContext().setAccessibleDescription(org.openide.util.NbBundle.getMessage(RevertModifications.class, "ACSD_MultiRevertDialog")); // NOI18N
 
105
        }
 
106
        dialog.setVisible(true);
 
107
        dialog.setResizable(false);
 
108
        boolean ret = dialogDescriptor.getValue() == okButton;
 
109
        return ret;       
 
110
    }
 
111
 
 
112
    public void propertyChange(PropertyChangeEvent evt) {
 
113
        if(okButton != null) {
 
114
            boolean valid = ((Boolean)evt.getNewValue()).booleanValue();
 
115
            okButton.setEnabled(valid);
 
116
        }       
 
117
    }
 
118
 
 
119
    public String getSelectionRevision() {
 
120
        if (panel == null) return null;
 
121
        return panel.getSelectedRevision();
 
122
    }
 
123
}