Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / main / java / org / gvsig / gui / beans / wizard / panel / ProgressOptionPanel.java @ 40561

History | View | Annotate | Download (4.17 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/* gvSIG. Geographic Information System of the Valencian Government
25
*
26
* Copyright (C) 2007-2008 Infrastructures and Transports Department
27
* of the Valencian Government (CIT)
28
* 
29
* This program is free software; you can redistribute it and/or
30
* modify it under the terms of the GNU General Public License
31
* as published by the Free Software Foundation; either version 2
32
* of the License, or (at your option) any later version.
33
* 
34
* This program is distributed in the hope that it will be useful,
35
* but WITHOUT ANY WARRANTY; without even the implied warranty of
36
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37
* GNU General Public License for more details.
38
* 
39
* You should have received a copy of the GNU General Public License
40
* along with this program; if not, write to the Free Software
41
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
42
* MA  02110-1301, USA.
43
* 
44
*/
45

    
46
/*
47
* AUTHORS (In addition to CIT):
48
* 2010 {Prodevelop}   {Task}
49
*/
50
 
51
package org.gvsig.gui.beans.wizard.panel;
52

    
53
import java.awt.BorderLayout;
54
import java.awt.Font;
55
import java.awt.GridBagConstraints;
56
import java.awt.GridBagLayout;
57
import java.awt.Insets;
58

    
59
import javax.swing.JLabel;
60
import javax.swing.JPanel;
61
import javax.swing.JProgressBar;
62

    
63
/**
64
 * <p>
65
 * This panel implements a progress bar that can be added to a wizard.
66
 * <p>
67
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
68
 */
69
public class ProgressOptionPanel extends JPanel {
70
        private JLabel pluginLabel;
71
        private JProgressBar progressBar;
72
        private JLabel progressLabel;
73

    
74
        public ProgressOptionPanel() {
75
                super();                
76
                initComponents();                
77
        }
78

    
79
        private void initComponents() {
80
                java.awt.GridBagConstraints gridBagConstraints;
81

    
82
                JPanel northPanel = new JPanel();
83
                northPanel.setLayout(new GridBagLayout());
84
                
85
                progressBar = new JProgressBar();
86
                progressLabel = new JLabel();
87
                pluginLabel = new JLabel();
88

    
89
                gridBagConstraints = new GridBagConstraints();
90
                gridBagConstraints.gridx = 0;
91
                gridBagConstraints.gridy = 2;
92
                gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
93
                gridBagConstraints.weightx = 1.0;
94
                gridBagConstraints.insets = new Insets(2, 2, 2, 2);
95
                northPanel.add(progressBar, gridBagConstraints);
96

    
97
                progressLabel.setFont(new Font("DejaVu Sans", 0, 11)); // NOI18N
98
                progressLabel.setText("task");
99
                gridBagConstraints = new GridBagConstraints();
100
                gridBagConstraints.gridx = 0;
101
                gridBagConstraints.gridy = 1;
102
                gridBagConstraints.anchor = GridBagConstraints.WEST;
103
                gridBagConstraints.insets = new Insets(5, 2, 2, 2);
104
                northPanel.add(progressLabel, gridBagConstraints);
105

    
106
                pluginLabel.setText("plugin");
107
                gridBagConstraints = new GridBagConstraints();
108
                gridBagConstraints.anchor = GridBagConstraints.WEST;
109
                gridBagConstraints.insets = new Insets(5, 2, 2, 2);
110
                northPanel.add(pluginLabel, gridBagConstraints);
111
                
112
            setLayout(new BorderLayout());
113
                add(northPanel, BorderLayout.NORTH);
114
        }
115

    
116
        /**
117
         * @param plugin the plugin to set
118
         */
119
        public void setMainText(String plugin) {
120
                this.pluginLabel.setText(plugin);
121
        }        
122
        
123
        public void setSecondaryText(String plugin) {
124
                this.progressLabel.setText(plugin);
125
        }                
126
        
127
        public void setProgress(int progress){
128
                progressBar.setValue(progress);
129
        }        
130
        
131
        public void setExceptionText(String text, Exception e) {
132
                progressLabel.setText(text);                
133
        }
134
}
135

    
136