2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
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]"
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 * Portions Copyright 2008 Alexander Coles (Ikonoklastik Productions).
31 * If you wish your version of this file to be governed by only the CDDL
32 * or only the GPL Version 2, indicate your decision by adding
33 * "[Contributor] elects to include this software in this distribution
34 * under the [CDDL or GPL Version 2] license." If you do not indicate a
35 * single choice of license, a recipient has the option to distribute
36 * your version of this file under either the CDDL, the GPL Version 2 or
37 * to extend the choice of license to its licensees as provided above.
38 * However, if you add GPL Version 2 code and therefore, elected the GPL
39 * Version 2 license, then the option applies only if the new code is
40 * made subject to such option by the copyright holder.
42 package org
.netbeans
.modules
.git
.ui
.wizards
;
44 import java
.awt
.BorderLayout
;
45 import java
.awt
.event
.ActionEvent
;
46 import java
.awt
.event
.ActionListener
;
47 import javax
.swing
.JButton
;
48 import javax
.swing
.JComponent
;
49 import javax
.swing
.JLabel
;
50 import javax
.swing
.JPanel
;
51 import javax
.swing
.SwingUtilities
;
52 import org
.netbeans
.api
.progress
.ProgressHandle
;
53 import org
.netbeans
.api
.progress
.ProgressHandleFactory
;
54 import org
.netbeans
.modules
.git
.GitProgressSupport
;
55 import org
.openide
.util
.Cancellable
;
59 * @author Tomas Stupka
61 public abstract class WizardStepProgressSupport
extends GitProgressSupport
implements Runnable
, Cancellable
{
63 private JPanel progressComponent
;
64 private JLabel progressLabel
;
66 private JButton stopButton
;
68 public WizardStepProgressSupport(JPanel panel
) {
72 public abstract void setEditable(boolean bl
);
75 public void startProgress() {
76 SwingUtilities
.invokeLater(new Runnable() {
78 ProgressHandle progress
= getProgressHandle(); // NOI18N
79 JComponent bar
= ProgressHandleFactory
.createProgressComponent(progress
);
80 stopButton
= new JButton(org
.openide
.util
.NbBundle
.getMessage(WizardStepProgressSupport
.class, "BK2022")); // NOI18N
81 stopButton
.addActionListener(new ActionListener() {
82 public void actionPerformed(ActionEvent e
) {
86 progressComponent
= new JPanel();
87 progressComponent
.setLayout(new BorderLayout(6, 0));
88 progressLabel
= new JLabel();
89 progressLabel
.setText(getDisplayName());
90 progressComponent
.add(progressLabel
, BorderLayout
.NORTH
);
91 progressComponent
.add(bar
, BorderLayout
.CENTER
);
92 progressComponent
.add(stopButton
, BorderLayout
.LINE_END
);
93 WizardStepProgressSupport
.super.startProgress();
94 panel
.setVisible(true);
95 panel
.add(progressComponent
, BorderLayout
.SOUTH
);
102 protected void finnishProgress() {
103 WizardStepProgressSupport
.super.finnishProgress();
104 SwingUtilities
.invokeLater(new Runnable() {
106 panel
.remove(progressComponent
);
109 panel
.setVisible(false);
116 public void setDisplayName(String displayName
) {
117 if(progressLabel
!= null) progressLabel
.setText(displayName
);
118 super.setDisplayName(displayName
);
122 public synchronized boolean cancel() {
123 if(stopButton
!=null) stopButton
.setEnabled(false);
124 setDisplayName(org
.openide
.util
.NbBundle
.getMessage(WizardStepProgressSupport
.class, "MSG_Progress_Terminating"));
125 return super.cancel();