Changeset 24109 in osm for applications/editors/josm/plugins/FixAddresses
- Timestamp:
- 2010-11-07T13:59:29+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/AddressEditDialog.java
r24107 r24109 190 190 } catch (Exception e) { 191 191 e.printStackTrace(); 192 } 193 192 } 194 193 195 194 /* Map Panel */ … … 199 198 mapPanel.setMinimumSize(new Dimension(200, 200)); 200 199 mapViewer.setVisible(false); 200 201 JPanel mapControl = new JPanel(new GridLayout(1, 4)); 202 JLabel mapL1 = new JLabel(tr("Complete Addresses")); 203 mapL1.setForeground(Color.BLUE); 204 mapControl.add(mapL1); 205 206 JLabel mapL2 = new JLabel(tr("Incomplete Addresses")); 207 mapL2.setForeground(Color.RED); 208 mapControl.add(mapL2); 209 210 JLabel mapL3 = new JLabel(tr("Selected Addresses")); 211 mapL3.setForeground(Color.ORANGE); 212 mapControl.add(mapL3); 213 214 JLabel mapL4 = new JLabel(tr("Selected Street")); 215 mapL4.setForeground(Color.GREEN); 216 mapControl.add(mapL4); 217 218 mapPanel.add(mapControl, BorderLayout.SOUTH); 201 219 202 220 /* Combine panels */
Note:
See TracChangeset
for help on using the changeset viewer.