source: josm/trunk/src/org/openstreetmap/josm/gui/PleaseWaitDialog.java@ 2319

Last change on this file since 2319 was 2319, checked in by Gubaer, 14 years ago

fixed #3725: JOSM doesn't provide indication during upload that the server is sending 410 Gone errors
Progress dialog now includes a small log window for use cases like this. Use appendLogMessage() on the progress monitor.

  • Property svn:eol-style set to native
File size: 5.2 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.gui;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.Component;
7import java.awt.GridBagConstraints;
8import java.awt.GridBagLayout;
9import java.awt.event.ActionListener;
10import java.awt.event.ComponentEvent;
11import java.awt.event.ComponentListener;
12
13import javax.swing.BorderFactory;
14import javax.swing.BoundedRangeModel;
15import javax.swing.JButton;
16import javax.swing.JDialog;
17import javax.swing.JLabel;
18import javax.swing.JOptionPane;
19import javax.swing.JPanel;
20import javax.swing.JProgressBar;
21import javax.swing.JScrollPane;
22import javax.swing.JTextArea;
23import javax.swing.UIManager;
24
25import org.openstreetmap.josm.Main;
26import org.openstreetmap.josm.tools.GBC;
27import org.openstreetmap.josm.tools.ImageProvider;
28
29public class PleaseWaitDialog extends JDialog {
30
31 private final JProgressBar progressBar = new JProgressBar();
32
33 public final JLabel currentAction = new JLabel("");
34 private final JLabel customText = new JLabel("");
35 public final BoundedRangeModel progress = progressBar.getModel();
36 private JButton btnCancel;
37 /** the text area and the scroll pane for the log */
38 private JTextArea taLog = new JTextArea(5,50);
39 private JScrollPane spLog;
40
41 private void initDialog() {
42 setLayout(new GridBagLayout());
43 JPanel pane = new JPanel(new GridBagLayout());
44 pane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
45 pane.add(currentAction, GBC.eol().fill(GBC.HORIZONTAL));
46 pane.add(customText, GBC.eol().fill(GBC.HORIZONTAL));
47 pane.add(progressBar, GBC.eop().fill(GBC.HORIZONTAL));
48 btnCancel = new JButton(tr("Cancel"));
49 btnCancel.setIcon(ImageProvider.get("cancel"));
50 btnCancel.setToolTipText(tr("Click to cancel the current operation"));
51 pane.add(btnCancel, GBC.eol().anchor(GBC.CENTER));
52 GridBagConstraints gc = GBC.eol().fill(GBC.BOTH);
53 gc.weighty = 1.0;
54 gc.weightx = 1.0;
55 pane.add(spLog = new JScrollPane(taLog), gc);
56 spLog.setVisible(false);
57 setContentPane(pane);
58 //setSize(Main.pref.getInteger("progressdialog.size",600),100);
59 setCustomText("");
60 setLocationRelativeTo(getParent());
61 addComponentListener(new ComponentListener() {
62 public void componentHidden(ComponentEvent e) {}
63 public void componentMoved(ComponentEvent e) {}
64 public void componentShown(ComponentEvent e) {}
65 public void componentResized(ComponentEvent ev) {
66 int w = getWidth();
67 if(w > 200) {
68 Main.pref.putInteger("progressdialog.size",w);
69 }
70 }
71 });
72 }
73
74 public PleaseWaitDialog(Component parent) {
75 super(JOptionPane.getFrameForComponent(parent), true);
76 initDialog();
77 }
78
79 public void setIndeterminate(boolean newValue) {
80 UIManager.put("ProgressBar.cycleTime", UIManager.getInt("ProgressBar.repaintInterval") * 100);
81 progressBar.setIndeterminate(newValue);
82 }
83
84 protected void adjustLayout() {
85 invalidate();
86 pack();
87 setSize(Main.pref.getInteger("progressdialog.size", 600), getSize().height);
88 }
89
90 /**
91 * Sets a custom text line below currentAction. Can be used to display additional information
92 * @param text
93 */
94 public void setCustomText(String text) {
95 if(text == null || text.trim().length() == 0) {
96 customText.setVisible(false);
97 adjustLayout();
98 return;
99 }
100 if (!customText.isVisible()) {
101 customText.setVisible(true);
102 adjustLayout();
103 }
104 customText.setText(text);
105 }
106
107 /**
108 * Appends a log message to the progress dialog. If the log area isn't visible yet
109 * it becomes visible. The height of the progress dialog is slightly increased too.
110 *
111 * @param message the message to append to the log. Ignore if null or white space only.
112 */
113 public void appendLogMessage(String message) {
114 if (message == null || message.trim().length() ==0 )
115 return;
116 if (!spLog.isVisible()) {
117 spLog.setVisible(true);
118 taLog.setVisible(true);
119 adjustLayout();
120 }
121 taLog.append(message);
122 taLog.append("\n");
123 spLog.getVerticalScrollBar().setValue(spLog.getVerticalScrollBar().getMaximum());
124 }
125
126 /**
127 * Sets whether the cancel button is enabled or not
128 *
129 * @param enabled true, if the cancel button is enabled; false otherwise
130 */
131 public void setCancelEnabled(boolean enabled) {
132 btnCancel.setEnabled(enabled);
133 }
134
135 /**
136 * Installs a callback for the cancel button. If callback is null, all action listeners
137 * are removed from the cancel button.
138 *
139 * @param callback the cancel callback
140 */
141 public void setCancelCallback(ActionListener callback) {
142 if (callback == null) {
143 ActionListener[] listeners = btnCancel.getActionListeners();
144 for (ActionListener l: listeners) {
145 btnCancel.removeActionListener(l);
146 }
147 } else {
148 btnCancel.addActionListener(callback);
149 }
150 }
151}
Note: See TracBrowser for help on using the repository browser.