Changeset 27465 in osm
- Timestamp:
- 2012-01-15T12:10:55+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress/build.xml
r27352 r27465 33 33 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/CS:JOSM/Plugins/CzechAddress"/> 34 34 <attribute name="Plugin-Icon" value="images/preferences/czech_flag.png"/> 35 <attribute name="Plugin-Mainversion" value="4 549"/>35 <attribute name="Plugin-Mainversion" value="4733"/> 36 36 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 37 37 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/actions/ManagerAction.java
r23190 r27465 23 23 "Adresy: Přiřadit adresy", 24 24 KeyEvent.VK_P, Shortcut.GROUP_DIRECT, Shortcut.SHIFT_DEFAULT), 25 true );25 true, "czechaddress/manager", true); 26 26 } 27 27 -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/FactoryDialog.java
r26299 r27465 68 68 initComponents(); 69 69 setLayout(originalManager); 70 add(mainPanel);70 createLayout(mainPanel, false, null); 71 71 72 72 // Register to all messages -
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 -
applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java
r26887 r27465 172 172 }); 173 173 174 add(rcPanel, BorderLayout.CENTER);174 createLayout(rcPanel, false, null); 175 175 } 176 176 -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/dialogs/TrustDialog.java
r25785 r27465 352 352 dataPanel.add(geomTree); 353 353 354 add(new JScrollPane(dataPanel), BorderLayout.CENTER);355 356 JPanel buttonPanel = new JPanel(new GridLayout(1, 3));357 358 354 checkButton = new SideButton(marktr("Check"), "checksignatures", "TrustOSM", 359 355 tr("Check all available signatures for selected object."), this); 360 buttonPanel.add(checkButton);361 362 356 signButton = new SideButton(marktr("Sign"), "sign", "TrustOSM", 363 357 tr("Digital sign selected Tags, if you believe they are correct."), this); 364 buttonPanel.add(signButton);365 366 358 showButton = new SideButton(marktr("Show"), "showsig", "TrustOSM", 367 359 tr("Show all available signatures for selected attribute."), this); 368 buttonPanel.add(showButton); 369 370 371 add(buttonPanel, BorderLayout.SOUTH);360 361 createLayout(dataPanel, true, Arrays.asList(new SideButton[] { 362 checkButton, signButton, showButton 363 })); 372 364 DataSet.addSelectionListener(this); 373 365 }
Note:
See TracChangeset
for help on using the changeset viewer.