source: josm/src/org/openstreetmap/josm/gui/MapStatus.java@ 51

Last change on this file since 51 was 51, checked in by imi, 19 years ago
  • fixed server rounding problem
  • fixed bug, that save with filter does not add extension
  • fixed modified flag for data from server vs. data from disk
  • hacked "ConcurrentModifyException" (need to do this better)
File size: 7.9 KB
Line 
1package org.openstreetmap.josm.gui;
2
3import java.awt.AWTEvent;
4import java.awt.Cursor;
5import java.awt.Font;
6import java.awt.GridBagLayout;
7import java.awt.Point;
8import java.awt.Toolkit;
9import java.awt.event.AWTEventListener;
10import java.awt.event.InputEvent;
11import java.awt.event.MouseAdapter;
12import java.awt.event.MouseEvent;
13import java.awt.event.MouseMotionListener;
14import java.beans.PropertyChangeEvent;
15import java.beans.PropertyChangeListener;
16import java.util.Collection;
17import java.util.ConcurrentModificationException;
18import java.util.Map.Entry;
19
20import javax.swing.BorderFactory;
21import javax.swing.BoxLayout;
22import javax.swing.JLabel;
23import javax.swing.JPanel;
24import javax.swing.JTextField;
25import javax.swing.Popup;
26import javax.swing.PopupFactory;
27
28import org.openstreetmap.josm.Main;
29import org.openstreetmap.josm.data.GeoPoint;
30import org.openstreetmap.josm.data.osm.Key;
31import org.openstreetmap.josm.data.osm.OsmPrimitive;
32import org.openstreetmap.josm.data.osm.visitor.SelectionComponentVisitor;
33
34/**
35 * A component that manages some status information display about the map.
36 * It keeps a status line below the map up to date and displays some tooltip
37 * information if the user hold the mouse long enough at some point.
38 *
39 * All this is done in background to not disturb other processes.
40 *
41 * The background thread does not alter any data of the map (read only thread).
42 * Also it is rather fail safe. In case of some error in the data, it just do
43 * nothing instead of whining and complaining.
44 *
45 * @author imi
46 */
47public class MapStatus extends JPanel {
48
49 /**
50 * The MapView this status belongs.
51 */
52 final MapView mv;
53 /**
54 * The position of the mouse cursor.
55 */
56 JTextField positionText = new JTextField("-000.00000000000000 -000.00000000000000".length());
57 /**
58 * The field holding the name of the object under the mouse.
59 */
60 JTextField nameText = new JTextField(30);
61
62 /**
63 * The collector class that waits for notification and then update
64 * the display objects.
65 *
66 * @author imi
67 */
68 private final class Collector implements Runnable {
69 /**
70 * The last object displayed in status line.
71 */
72 Collection<OsmPrimitive> osmStatus;
73 /**
74 * The old modifiers, that was pressed the last time this collector ran.
75 */
76 private int oldModifiers;
77 /**
78 * The popup displayed to show additional information
79 */
80 private Popup popup;
81 /**
82 * Signals the collector to shut down on next event.
83 */
84 boolean exitCollector = false;
85
86 /**
87 * Execution function for the Collector.
88 */
89 public void run() {
90 for (;;) {
91 MouseState ms = new MouseState();
92 synchronized (this) {
93 try {wait();} catch (InterruptedException e) {}
94 ms.modifiers = mouseState.modifiers;
95 ms.mousePos = mouseState.mousePos;
96 }
97 if (exitCollector)
98 return;
99 if ((ms.modifiers & MouseEvent.CTRL_DOWN_MASK) != 0 || ms.mousePos == null)
100 continue; // freeze display when holding down ctrl
101 Collection<OsmPrimitive> osms = mv.getAllNearest(ms.mousePos);
102
103 if (osms == null && osmStatus == null && ms.modifiers == oldModifiers)
104 continue;
105 if (osms != null && osms.equals(osmStatus) && ms.modifiers == oldModifiers)
106 continue;
107
108 osmStatus = osms;
109 oldModifiers = ms.modifiers;
110
111 // This try/catch is a hack to stop the flooding bug reports about this.
112 // The exception needed to handle with in the first place, means that this
113 // access to the data need to be restarted, if the main thread modifies
114 // the data.
115 OsmPrimitive osmNearest = null;
116 try {
117 // Set the text label in the bottom status bar
118 osmNearest = mv.getNearest(ms.mousePos, (ms.modifiers & MouseEvent.ALT_DOWN_MASK) != 0);
119 } catch (ConcurrentModificationException x) {
120 }
121 if (osmNearest != null) {
122 SelectionComponentVisitor visitor = new SelectionComponentVisitor();
123 osmNearest.visit(visitor);
124 nameText.setText(visitor.name);
125 } else
126 nameText.setText("");
127
128 // Popup Information
129 if ((ms.modifiers & MouseEvent.BUTTON2_DOWN_MASK) != 0 && osms != null) {
130 if (popup != null)
131 popup.hide();
132
133 JPanel c = new JPanel(new GridBagLayout());
134 for (final OsmPrimitive osm : osms) {
135 SelectionComponentVisitor visitor = new SelectionComponentVisitor();
136 osm.visit(visitor);
137 final StringBuilder text = new StringBuilder();
138 if (osm.id == 0 || osm.modified || osm.modifiedProperties)
139 visitor.name = "<i><b>"+visitor.name+"*</b></i>";
140 text.append(visitor.name);
141 if (osm.id != 0)
142 text.append("<br>id="+osm.id);
143 if (osm.keys != null)
144 for (Entry<Key, String> e : osm.keys.entrySet())
145 text.append("<br>"+e.getKey().name+"="+e.getValue());
146 final JLabel l = new JLabel("<html>"+text.toString()+"</html>", visitor.icon, JLabel.HORIZONTAL);
147 l.setFont(l.getFont().deriveFont(Font.PLAIN));
148 l.setVerticalTextPosition(JLabel.TOP);
149 l.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
150 l.addMouseListener(new MouseAdapter(){
151 @Override
152 public void mouseEntered(MouseEvent e) {
153 l.setText("<html><u color='blue'>"+text.toString()+"</u></html>");
154 }
155 @Override
156 public void mouseExited(MouseEvent e) {
157 l.setText("<html>"+text.toString()+"</html>");
158 }
159 @Override
160 public void mouseClicked(MouseEvent e) {
161 Main.main.ds.clearSelection();
162 osm.setSelected(true);
163 mv.repaint();
164 }
165 });
166 c.add(l, GBC.eol());
167 }
168
169 Point p = mv.getLocationOnScreen();
170 popup = PopupFactory.getSharedInstance().getPopup(mv, c, p.x+ms.mousePos.x+16, p.y+ms.mousePos.y+16);
171 popup.show();
172 } else if (popup != null) {
173 popup.hide();
174 popup = null;
175 }
176 }
177 }
178 }
179
180 /**
181 * Everything, the collector is interested of. Access must be synchronized.
182 * @author imi
183 */
184 class MouseState {
185 Point mousePos;
186 int modifiers;
187 }
188 /**
189 * The last sent mouse movement event.
190 */
191 MouseState mouseState = new MouseState();
192
193 /**
194 * Construct a new MapStatus and attach it to the map view.
195 * @param mv The MapView the status line is part of.
196 */
197 public MapStatus(final MapFrame mapFrame) {
198 this.mv = mapFrame.mapView;
199
200 // Listen for mouse movements and set the position text field
201 mv.addMouseMotionListener(new MouseMotionListener(){
202 public void mouseDragged(MouseEvent e) {
203 mouseMoved(e);
204 }
205 public void mouseMoved(MouseEvent e) {
206 // Do not update the view, if ctrl is pressed.
207 if ((e.getModifiersEx() & MouseEvent.CTRL_DOWN_MASK) == 0) {
208 GeoPoint p = mv.getPoint(e.getX(),e.getY(),true);
209 positionText.setText(p.lat+" "+p.lon);
210 }
211 }
212 });
213
214 positionText.setEditable(false);
215 nameText.setEditable(false);
216 setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
217 setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
218 add(new JLabel("Lat/Lon "));
219 add(positionText);
220 add(new JLabel(" Object "));
221 add(nameText);
222
223 // The background thread
224 final Collector collector = new Collector();
225 new Thread(collector).start();
226
227 // Listen to keyboard/mouse events for pressing/releasing alt key and
228 // inform the collector.
229 Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener(){
230 public void eventDispatched(AWTEvent event) {
231 synchronized (collector) {
232 mouseState.modifiers = ((InputEvent)event).getModifiersEx();
233 if (event instanceof MouseEvent)
234 mouseState.mousePos = ((MouseEvent)event).getPoint();
235 collector.notify();
236 }
237 }
238 }, AWTEvent.KEY_EVENT_MASK | AWTEvent.MOUSE_EVENT_MASK | AWTEvent.MOUSE_MOTION_EVENT_MASK);
239
240 // listen for shutdowns to cancel the background thread
241 mapFrame.addPropertyChangeListener("visible", new PropertyChangeListener(){
242 public void propertyChange(PropertyChangeEvent evt) {
243 if (evt.getNewValue() == Boolean.FALSE) {
244 collector.exitCollector = true;
245 synchronized (collector) {
246 collector.notify();
247 }
248 }
249 }
250 });
251 }
252}
Note: See TracBrowser for help on using the repository browser.