Changeset 27465 in osm for applications/editors/josm/plugins/junctionchecking
- Timestamp:
- 2012-01-15T12:10:55+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckDialog.java
r25501 r27465 9 9 import java.awt.event.ActionListener; 10 10 import java.awt.event.KeyEvent; 11 import java.util.Arrays; 11 12 import java.util.Collection; 12 13 … … 87 88 88 89 // ButtonPanel 89 JPanel buttonPanel = new JPanel();90 buttonPanel.setLayout(new GridLayout(1, 3));91 90 createDigraphButton = new SideButton(marktr("Create"), "digraphcreation", tr ("start the channel digraph creation"), 92 91 tr("create the channel digraph"), this); 93 buttonPanel.add(createDigraphButton);94 92 checkJunctionButton = new SideButton(marktr("Check "), "junctioncheck", tr("check a marked subset if it is a junction"), 95 93 tr("check the subust for junction properties"), this); 96 94 checkJunctionButton.setEnabled(false); 97 buttonPanel.add(checkJunctionButton);98 95 searchJunctionButton = new SideButton(marktr("Search "), "junctionsearch", tr ("search for junctions into a subset of channels"), 99 96 tr("search for junctions in the channel subset"), this); 100 97 searchJunctionButton.setEnabled(false); 101 buttonPanel.add(searchJunctionButton);102 98 103 add(centerPanel, BorderLayout.CENTER); 104 add(buttonPanel, BorderLayout.SOUTH); 99 createLayout(centerPanel, false, Arrays.asList(new SideButton[] { 100 createDigraphButton, checkJunctionButton, searchJunctionButton 101 })); 105 102 } 106 103
Note:
See TracChangeset
for help on using the changeset viewer.