Changeset 1642 in josm
- Timestamp:
- 2009-06-06T16:25:25+02:00 (16 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 15 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/TagConflictResolveCommand.java
r1622 r1642 25 25 */ 26 26 public class TagConflictResolveCommand extends Command { 27 27 28 28 /** my primitive (in the local dataset). merge decisions are applied to this 29 29 * primitive 30 30 */ 31 private OsmPrimitive my; 32 /** their primitive (in the server dataset) */ 33 private OsmPrimitive their; 34 31 private final OsmPrimitive my; 32 /** their primitive (in the server dataset) */ 33 private final OsmPrimitive their; 34 35 35 /** the list of merge decisions, represented as {@see TagMergeItem}s */ 36 private List<TagMergeItem> mergeItems; 37 36 private final List<TagMergeItem> mergeItems; 37 38 38 /** 39 39 * replies the number of decided conflicts 40 40 * 41 * @return the number of decided conflicts 41 * @return the number of decided conflicts 42 42 */ 43 43 public int getNumDecidedConflicts() { … … 45 45 for (TagMergeItem item: mergeItems) { 46 46 if (!item.getMergeDecision().equals(MergeDecisionType.UNDECIDED)) { 47 n++; 47 n++; 48 48 } 49 49 } 50 50 return n; 51 51 } 52 52 53 53 /** 54 54 * replies a (localized) display name for the type of an OSM primitive … … 63 63 return ""; 64 64 } 65 65 66 66 /** 67 * constructor 67 * constructor 68 68 * 69 69 * @param my my primitive 70 * @param their their primitive 70 * @param their their primitive 71 71 * @param mergeItems the list of merge decisions, represented as {@see TagMergeItem}s 72 72 */ … … 76 76 this.mergeItems = mergeItems; 77 77 } 78 79 78 79 80 80 @Override 81 public MutableTreeNode description() { 81 public MutableTreeNode description() { 82 82 return new DefaultMutableTreeNode( 83 new JLabel( 84 tr("Resolve {0} tag conflicts in {1} {2}",getNumDecidedConflicts(), getPrimitiveTypeAsString(my), my.id), 85 ImageProvider.get("data", "object"), 86 JLabel.HORIZONTAL 87 ) 88 ); 83 new JLabel( 84 tr("Resolve {0} tag conflicts in {1} {2}",getNumDecidedConflicts(), getPrimitiveTypeAsString(my), my.id), 85 ImageProvider.get("data", "object"), 86 JLabel.HORIZONTAL 87 ) 88 ); 89 89 } 90 90 … … 95 95 // 96 96 super.executeCommand(); 97 97 98 98 // apply the merge decisions to OSM primitive 'my' 99 99 // 100 100 for (TagMergeItem item: mergeItems) { 101 item.applyToMyPrimitive(my); 101 if (! item.getMergeDecision().equals(MergeDecisionType.UNDECIDED)) { 102 item.applyToMyPrimitive(my); 103 } 102 104 } 103 105 return true; … … 115 117 // 116 118 super.undoCommand(); 117 119 118 120 // restore a conflict if necessary 119 121 // … … 123 125 } 124 126 125 127 126 128 } -
trunk/src/org/openstreetmap/josm/command/VersionConflictResolveCommand.java
r1622 r1642 24 24 public class VersionConflictResolveCommand extends Command { 25 25 26 private OsmPrimitive my; 27 private OsmPrimitive their; 28 26 private final OsmPrimitive my; 27 private final OsmPrimitive their; 28 29 29 /** 30 * constructor 31 * @param my my primitive (i.e. the primitive from the local dataset) 32 * @param their their primitive (i.e. the primitive from the server) 30 * constructor 31 * @param my my primitive (i.e. the primitive from the local dataset) 32 * @param their their primitive (i.e. the primitive from the server) 33 33 */ 34 34 public VersionConflictResolveCommand(OsmPrimitive my, OsmPrimitive their) { 35 this.my = my; 36 this.their = their; 35 this.my = my; 36 this.their = their; 37 37 } 38 38 39 39 //FIXME copied from TagConflictResolveCommand -> refactor 40 40 /** … … 50 50 return ""; 51 51 } 52 52 53 53 @Override 54 54 public MutableTreeNode description() { 55 55 return new DefaultMutableTreeNode( 56 new JLabel( 57 tr("Resolve version conflicts for {0} {1}",getPrimitiveTypeAsString(my), my.id), 58 ImageProvider.get("data", "object"), 59 JLabel.HORIZONTAL 60 ) 61 56 new JLabel( 57 tr("Resolve version conflicts for {0} {1}",getPrimitiveTypeAsString(my), my.id), 58 ImageProvider.get("data", "object"), 59 JLabel.HORIZONTAL 60 ) 61 ); 62 62 } 63 63 … … 66 66 super.executeCommand(); 67 67 my.version = Math.max(my.version, their.version); 68 Main.map.conflictDialog. conflicts.remove(my);68 Main.map.conflictDialog.removeConflictForPrimitive(my); 69 69 return true; 70 70 } … … 79 79 public void undoCommand() { 80 80 super.undoCommand(); 81 81 82 82 // restore a conflict if necessary 83 83 // 84 84 if (!Main.map.conflictDialog.conflicts.containsKey(my)) { 85 Main.map.conflictDialog. conflicts.put(my,their);85 Main.map.conflictDialog.addConflict(my, their); 86 86 } 87 87 } 88 88 89 89 90 90 } -
trunk/src/org/openstreetmap/josm/gui/conflict/ConflictResolver.java
r1631 r1642 189 189 } 190 190 } 191 192 191 return new SequenceCommand(tr("Conflict Resolution"), commands); 193 192 } 193 194 public boolean isCompletelyResolved() { 195 if (my instanceof Node) { 196 // resolve the version conflict if this is a node and all tag 197 // conflicts have been resolved 198 // 199 if (tagMerger.getModel().isResolvedCompletely()) 200 return true; 201 } else if (my instanceof Way) { 202 // resolve the version conflict if this is a way, all tag 203 // conflicts have been resolved, and conflicts in the node list 204 // have been resolved 205 // 206 if (tagMerger.getModel().isResolvedCompletely() && nodeListMerger.getModel().isFrozen()) 207 return true; 208 } else if (my instanceof Relation) { 209 // resolve the version conflict if this is a relation, all tag 210 // conflicts and all conflicts in the member list 211 // have been resolved 212 // 213 if (tagMerger.getModel().isResolvedCompletely() && relationMemberMerger.getModel().isFrozen()) 214 return true; 215 } 216 return false; 217 } 194 218 } -
trunk/src/org/openstreetmap/josm/gui/conflict/ListMergeModel.java
r1631 r1642 11 11 12 12 import javax.swing.DefaultListSelectionModel; 13 import javax.swing.ListSelectionModel;14 13 import javax.swing.table.DefaultTableModel; 15 14 import javax.swing.table.TableModel; … … 35 34 * {@see #PROP_FROZEN}. 36 35 * 37 * ListMergeModel is an abstract class. Th ere methods have to be implemented by subclasses:36 * ListMergeModel is an abstract class. Three methods have to be implemented by subclasses: 38 37 * <ul> 39 38 * <li>{@see ListMergeModel#cloneEntry(Object)} - clones an entry of type T</li> … … 61 60 protected DefaultTableModel mergedEntriesTableModel; 62 61 63 protected DefaultListSelectionModel myEntriesSelectionModel;64 protected DefaultListSelectionModel theirEntriesSelectionModel;65 protected DefaultListSelectionModel mergedEntriesSelectionModel;62 protected EntriesSelectionModel<T> myEntriesSelectionModel; 63 protected EntriesSelectionModel<T> theirEntriesSelectionModel; 64 protected EntriesSelectionModel<T> mergedEntriesSelectionModel; 66 65 67 66 private final ArrayList<PropertyChangeListener> listeners; … … 100 99 101 100 protected void buildMyEntriesTableModel() { 102 myEntriesTableModel = new ListTableModel<T>(myEntries);101 myEntriesTableModel = new EntriesTableModel<T>(myEntries); 103 102 } 104 103 105 104 protected void buildTheirEntriesTableModel() { 106 theirEntriesTableModel = new ListTableModel<T>(theirEntries);105 theirEntriesTableModel = new EntriesTableModel<T>(theirEntries); 107 106 } 108 107 109 108 protected void buildMergedEntriesTableModel() { 110 mergedEntriesTableModel = new ListTableModel<T>(mergedEntries);109 mergedEntriesTableModel = new EntriesTableModel<T>(mergedEntries); 111 110 } 112 111 … … 120 119 buildMergedEntriesTableModel(); 121 120 122 myEntriesSelectionModel = new DefaultListSelectionModel();123 theirEntriesSelectionModel = new DefaultListSelectionModel();124 mergedEntriesSelectionModel = new DefaultListSelectionModel();121 myEntriesSelectionModel = new EntriesSelectionModel<T>(myEntries); 122 theirEntriesSelectionModel = new EntriesSelectionModel<T>(theirEntries); 123 mergedEntriesSelectionModel = new EntriesSelectionModel<T>(mergedEntries); 125 124 126 125 listeners = new ArrayList<PropertyChangeListener>(); … … 177 176 } 178 177 179 public ListSelectionModel getMySelectionModel() {178 public EntriesSelectionModel getMySelectionModel() { 180 179 return myEntriesSelectionModel; 181 180 } 182 181 183 public ListSelectionModel getTheirSelectionModel() {182 public EntriesSelectionModel getTheirSelectionModel() { 184 183 return theirEntriesSelectionModel; 185 184 } 186 185 187 public ListSelectionModel getMergedSelectionModel() {186 public EntriesSelectionModel getMergedSelectionModel() { 188 187 return mergedEntriesSelectionModel; 189 188 } … … 339 338 throw new IllegalArgumentException(tr("parameter current out of range: got {0}", current)); 340 339 if (current == mergedEntries.size() -1) { 341 copyMyToEnd(rows); 340 if (source == myEntries) { 341 copyMyToEnd(rows); 342 } else if (source == theirEntries) { 343 copyTheirToEnd(rows); 344 } 342 345 } else { 343 346 for (int i=rows.length -1; i>=0; i--) { … … 461 464 462 465 463 464 protected class ListTableModel<T> extends DefaultTableModel { 465 private final ArrayList<T> entries; 466 467 public ListTableModel(ArrayList<T> nodes) { 466 protected class EntriesTableModel<T1> extends DefaultTableModel { 467 private final ArrayList<T1> entries; 468 469 public EntriesTableModel(ArrayList<T1> nodes) { 468 470 this.entries = nodes; 469 471 } … … 471 473 @Override 472 474 public int getRowCount() { 473 return entries == null ? 0 : entries.size(); 475 int count = myEntries.size(); 476 count = Math.max(count, mergedEntries.size()); 477 count = Math.max(count, theirEntries.size()); 478 return count; 474 479 } 475 480 476 481 @Override 477 482 public Object getValueAt(int row, int column) { 478 return entries.get(row); 483 if (row < entries.size()) 484 return entries.get(row); 485 return null; 479 486 } 480 487 … … 490 497 } 491 498 492 493 499 protected class EntriesSelectionModel<T1> extends DefaultListSelectionModel { 500 private final ArrayList<T1> entries; 501 502 public EntriesSelectionModel(ArrayList<T1> nodes) { 503 this.entries = nodes; 504 } 505 506 @Override 507 public void addSelectionInterval(int index0, int index1) { 508 if (entries.isEmpty()) return; 509 if (index0 > entries.size() - 1) return; 510 index0 = Math.min(entries.size()-1, index0); 511 index1 = Math.min(entries.size()-1, index1); 512 super.addSelectionInterval(index0, index1); 513 } 514 515 @Override 516 public void insertIndexInterval(int index, int length, boolean before) { 517 if (entries.isEmpty()) return; 518 if (before) { 519 int newindex = Math.min(entries.size()-1, index); 520 if (newindex < index - length) return; 521 length = length - (index - newindex); 522 super.insertIndexInterval(newindex, length, before); 523 } else { 524 if (index > entries.size() -1) return; 525 length = Math.min(entries.size()-1 - index, length); 526 super.insertIndexInterval(index, length, before); 527 } 528 } 529 530 @Override 531 public void moveLeadSelectionIndex(int leadIndex) { 532 if (entries.isEmpty()) return; 533 leadIndex = Math.max(0, leadIndex); 534 leadIndex = Math.min(entries.size() - 1, leadIndex); 535 super.moveLeadSelectionIndex(leadIndex); 536 } 537 538 @Override 539 public void removeIndexInterval(int index0, int index1) { 540 if (entries.isEmpty()) return; 541 index0 = Math.max(0, index0); 542 index0 = Math.min(entries.size() - 1, index0); 543 544 index1 = Math.max(0, index1); 545 index1 = Math.min(entries.size() - 1, index1); 546 super.removeIndexInterval(index0, index1); 547 } 548 549 @Override 550 public void removeSelectionInterval(int index0, int index1) { 551 if (entries.isEmpty()) return; 552 index0 = Math.max(0, index0); 553 index0 = Math.min(entries.size() - 1, index0); 554 555 index1 = Math.max(0, index1); 556 index1 = Math.min(entries.size() - 1, index1); 557 super.removeSelectionInterval(index0, index1); 558 } 559 560 @Override 561 public void setAnchorSelectionIndex(int anchorIndex) { 562 if (entries.isEmpty()) return; 563 anchorIndex = Math.min(entries.size() - 1, anchorIndex); 564 super.setAnchorSelectionIndex(anchorIndex); 565 } 566 567 @Override 568 public void setLeadSelectionIndex(int leadIndex) { 569 if (entries.isEmpty()) return; 570 leadIndex = Math.min(entries.size() - 1, leadIndex); 571 super.setLeadSelectionIndex(leadIndex); 572 } 573 574 @Override 575 public void setSelectionInterval(int index0, int index1) { 576 if (entries.isEmpty()) return; 577 index0 = Math.max(0, index0); 578 index0 = Math.min(entries.size() - 1, index0); 579 580 index1 = Math.max(0, index1); 581 index1 = Math.min(entries.size() - 1, index1); 582 583 super.setSelectionInterval(index0, index1); 584 } 585 } 494 586 } -
trunk/src/org/openstreetmap/josm/gui/conflict/ListMerger.java
r1631 r1642 3 3 import static org.openstreetmap.josm.tools.I18n.tr; 4 4 5 import java.awt.Adjustable; 6 import java.awt.FlowLayout; 5 7 import java.awt.GridBagConstraints; 6 8 import java.awt.GridBagLayout; 7 9 import java.awt.Insets; 8 10 import java.awt.event.ActionEvent; 11 import java.awt.event.AdjustmentEvent; 12 import java.awt.event.AdjustmentListener; 9 13 import java.awt.event.ItemEvent; 10 14 import java.awt.event.ItemListener; 11 15 import java.beans.PropertyChangeEvent; 12 16 import java.beans.PropertyChangeListener; 17 import java.util.ArrayList; 18 import java.util.HashMap; 19 import java.util.Observable; 20 import java.util.Observer; 13 21 import java.util.logging.Logger; 14 22 … … 17 25 import javax.swing.ImageIcon; 18 26 import javax.swing.JButton; 27 import javax.swing.JCheckBox; 19 28 import javax.swing.JLabel; 20 29 import javax.swing.JPanel; … … 58 67 private FreezeAction freezeAction; 59 68 60 69 private AdjustmentSynchronizer adjustmentSynchronizer; 70 71 private JCheckBox cbLockMyScrolling; 72 private JCheckBox cbLockMergedScrolling; 73 private JCheckBox cbLockTheirScrolling; 74 75 abstract protected JScrollPane buildMyElementsTable(); 76 abstract protected JScrollPane buildMergedElementsTable(); 77 abstract protected JScrollPane buildTheirElementsTable(); 61 78 62 79 protected JScrollPane embeddInScrollPane(JTable table) { … … 64 81 pane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); 65 82 pane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED); 83 if (adjustmentSynchronizer == null) { 84 adjustmentSynchronizer = new AdjustmentSynchronizer(); 85 } 66 86 return pane; 67 87 } 68 69 abstract protected JScrollPane buildMyElementsTable();70 abstract protected JScrollPane buildMergedElementsTable();71 abstract protected JScrollPane buildTheirElementsTable();72 73 74 88 75 89 protected void wireActionsToSelectionModels() { … … 99 113 mergedEntriesTable.getSelectionModel().addListSelectionListener(removeMergedAction); 100 114 } 101 102 103 115 104 116 protected JPanel buildLeftButtonPanel() { … … 206 218 } 207 219 220 protected JPanel buildAdjustmentLockControlPanel(JCheckBox cb) { 221 JPanel panel = new JPanel(); 222 panel.setLayout(new FlowLayout(FlowLayout.RIGHT)); 223 panel.add(new JLabel(tr("lock scrolling"))); 224 panel.add(cb); 225 return panel; 226 } 227 208 228 protected void build() { 209 229 setLayout(new GridBagLayout()); 210 230 GridBagConstraints gc = new GridBagConstraints(); 211 231 232 // ------------------ 212 233 gc.gridx = 0; 213 234 gc.gridy = 0; … … 225 246 gc.gridx = 2; 226 247 gc.gridy = 0; 227 gc.gridwidth = 1;228 gc.gridheight = 1;229 gc.fill = GridBagConstraints.NONE;230 gc.anchor = GridBagConstraints.CENTER;231 gc.weightx = 0.0;232 gc.weighty = 0.0;233 248 lbl = new JLabel(tr("Merged version")); 234 249 lbl.setToolTipText(tr("List of merged elements. They will replace the my elements when the merge decisions are applied.")); … … 237 252 gc.gridx = 4; 238 253 gc.gridy = 0; 254 lbl = new JLabel(tr("Their version")); 255 lbl.setToolTipText(tr("List of elements in their dataset, i.e. the server dataset")); 256 add(lbl, gc); 257 258 // ------------------------------ 259 gc.gridx = 0; 260 gc.gridy = 1; 239 261 gc.gridwidth = 1; 240 262 gc.gridheight = 1; 241 gc.fill = GridBagConstraints. NONE;242 gc.anchor = GridBagConstraints. CENTER;243 gc.weightx = 0. 0;263 gc.fill = GridBagConstraints.HORIZONTAL; 264 gc.anchor = GridBagConstraints.FIRST_LINE_START; 265 gc.weightx = 0.33; 244 266 gc.weighty = 0.0; 245 lbl= newJLabel(tr("Their version"));246 lbl.setToolTipText(tr("List of elements in their dataset, i.e. the server dataset"));247 248 add( lbl, gc);249 250 gc.gridx = 0;267 gc.insets = new Insets(0,0,0,0); 268 cbLockMyScrolling = new JCheckBox(); 269 cbLockMyScrolling.setName("checkbox.lockmyscrolling"); 270 add(buildAdjustmentLockControlPanel(cbLockMyScrolling), gc); 271 272 gc.gridx = 2; 251 273 gc.gridy = 1; 274 cbLockMergedScrolling = new JCheckBox(); 275 cbLockMergedScrolling.setName("checkbox.lockmergedscrolling"); 276 add(buildAdjustmentLockControlPanel(cbLockMergedScrolling), gc); 277 278 gc.gridx = 4; 279 gc.gridy = 1; 280 cbLockTheirScrolling = new JCheckBox(); 281 cbLockTheirScrolling.setName("checkbox.locktheirscrolling"); 282 add(buildAdjustmentLockControlPanel(cbLockTheirScrolling), gc); 283 284 // -------------------------------- 285 gc.gridx = 0; 286 gc.gridy = 2; 252 287 gc.gridwidth = 1; 253 288 gc.gridheight = 1; 254 289 gc.fill = GridBagConstraints.BOTH; 255 290 gc.anchor = GridBagConstraints.FIRST_LINE_START; 256 gc.weightx = 0.3; 291 gc.weightx = 0.33; 257 292 gc.weighty = 1.0; 258 293 gc.insets = new Insets(0,0,0,0); 259 add(buildMyElementsTable(), gc); 294 JScrollPane pane = buildMyElementsTable(); 295 adjustmentSynchronizer.adapt(cbLockMyScrolling, pane.getVerticalScrollBar()); 296 add(pane, gc); 260 297 261 298 gc.gridx = 1; 262 gc.gridy = 1; 263 gc.gridwidth = 1; 264 gc.gridheight = 1; 299 gc.gridy = 2; 265 300 gc.fill = GridBagConstraints.NONE; 266 301 gc.anchor = GridBagConstraints.CENTER; … … 270 305 271 306 gc.gridx = 2; 272 gc.gridy = 1; 273 gc.gridwidth = 1; 274 gc.gridheight = 1; 307 gc.gridy = 2; 275 308 gc.fill = GridBagConstraints.BOTH; 276 309 gc.anchor = GridBagConstraints.FIRST_LINE_START; 277 gc.weightx = 0.3; 310 gc.weightx = 0.33; 278 311 gc.weighty = 0.0; 279 add(buildMergedElementsTable(), gc); 312 pane = buildMergedElementsTable(); 313 adjustmentSynchronizer.adapt(cbLockMergedScrolling, pane.getVerticalScrollBar()); 314 add(pane, gc); 280 315 281 316 gc.gridx = 3; 282 gc.gridy = 1; 283 gc.gridwidth = 1; 284 gc.gridheight = 1; 317 gc.gridy = 2; 285 318 gc.fill = GridBagConstraints.NONE; 286 319 gc.anchor = GridBagConstraints.CENTER; … … 290 323 291 324 gc.gridx = 4; 292 gc.gridy = 1; 293 gc.gridwidth = 1; 294 gc.gridheight = 1; 325 gc.gridy = 2; 295 326 gc.fill = GridBagConstraints.BOTH; 296 327 gc.anchor = GridBagConstraints.FIRST_LINE_START; 297 gc.weightx = 0.3; 328 gc.weightx = 0.33; 298 329 gc.weighty = 0.0; 299 add(buildTheirElementsTable(), gc); 300 330 pane = buildTheirElementsTable(); 331 adjustmentSynchronizer.adapt(cbLockTheirScrolling, pane.getVerticalScrollBar()); 332 add(pane, gc); 333 334 // ---------------------------------- 301 335 gc.gridx = 2; 302 gc.gridy = 2;336 gc.gridy = 3; 303 337 gc.gridwidth = 1; 304 338 gc.gridheight = 1; 305 339 gc.fill = GridBagConstraints.BOTH; 306 340 gc.anchor = GridBagConstraints.CENTER; 307 gc.weightx = 0. 3;341 gc.weightx = 0.0; 308 342 gc.weighty = 0.0; 309 343 add(buildMergedListControlButtons(), gc); … … 317 351 model.addPropertyChangeListener(this); 318 352 } 319 320 353 321 354 /** … … 666 699 */ 667 700 public void adapt(final JToggleButton btn) { 668 // btn.addItemListener(669 // new ItemListener() {670 // public void itemStateChanged(ItemEvent e) {671 // boolean isSelected = (Boolean)getValue(PROP_SELECTED);672 // if (isSelected != (e.getStateChange() == ItemEvent.SELECTED)) {673 // putValue(PROP_SELECTED, e.getStateChange() == ItemEvent.SELECTED);674 // }675 // model.setFrozen(e.getStateChange() == ItemEvent.SELECTED);676 // }677 // }678 // );679 701 btn.addItemListener(this); 680 702 addPropertyChangeListener( … … 728 750 return model; 729 751 } 752 753 754 755 /** 756 * Synchronizes scrollbar adjustments between a set of 757 * {@see Adjustable}s. Whenever the adjustment of one of 758 * the registerd Adjustables is updated the adjustment of 759 * the other registered Adjustables is adjusted too. 760 * 761 */ 762 class AdjustmentSynchronizer implements AdjustmentListener { 763 764 private final ArrayList<Adjustable> synchronizedAdjustables; 765 private final HashMap<Adjustable, Boolean> enabledMap; 766 767 private final Observable observable; 768 769 public AdjustmentSynchronizer() { 770 synchronizedAdjustables = new ArrayList<Adjustable>(); 771 enabledMap = new HashMap<Adjustable, Boolean>(); 772 observable = new Observable(); 773 } 774 775 776 /** 777 * registers an {@see Adjustable} for participation in synchronized 778 * scrolling. 779 * 780 * @param adjustable the adjustable 781 */ 782 public void participateInSynchronizedScrolling(Adjustable adjustable) { 783 if (adjustable == null) 784 return; 785 if (synchronizedAdjustables.contains(adjustable)) 786 return; 787 synchronizedAdjustables.add(adjustable); 788 setParticipatingInSynchronizedScrolling(adjustable, true); 789 adjustable.addAdjustmentListener(this); 790 } 791 792 /** 793 * event handler for {@see AdjustmentEvent}s 794 * 795 */ 796 public void adjustmentValueChanged(AdjustmentEvent e) { 797 if (! enabledMap.get(e.getAdjustable())) 798 return; 799 for (Adjustable a : synchronizedAdjustables) { 800 if (a != e.getAdjustable() && isParticipatingInSynchronizedScrolling(a)) { 801 a.setValue(e.getValue()); 802 } 803 } 804 } 805 806 /** 807 * sets whether adjustable participates in adjustment synchronization 808 * or not 809 * 810 * @param adjustable the adjustable 811 */ 812 protected void setParticipatingInSynchronizedScrolling(Adjustable adjustable, boolean isParticipating) { 813 if (adjustable == null) 814 throw new IllegalArgumentException(tr("argument \"adjustable\" must not be null")); 815 816 if (! synchronizedAdjustables.contains(adjustable)) 817 throw new IllegalStateException(tr("adjustable {0} not registered yet. Can't set participation in synchronized adjustment",adjustable)); 818 819 enabledMap.put(adjustable, isParticipating); 820 observable.notifyObservers(); 821 } 822 823 /** 824 * returns true if an adjustable is participating in synchronized scrolling 825 * 826 * @param adjustable the adjustable 827 * @return true, if the adjustable is participating in synchronized scrolling, false otherwise 828 * @throws IllegalStateException thrown, if adjustable is not registered for synchronized scrolling 829 */ 830 protected boolean isParticipatingInSynchronizedScrolling(Adjustable adjustable) throws IllegalStateException { 831 if (! synchronizedAdjustables.contains(adjustable)) 832 throw new IllegalStateException(tr("adjustable {0} not registered yet",adjustable)); 833 834 return enabledMap.get(adjustable); 835 } 836 837 /** 838 * wires a {@see JCheckBox} to the adjustment synchronizer, in such a way that: 839 * <li> 840 * <ol>state changes in the checkbox control whether the adjustable participates 841 * in synchronized adjustment</ol> 842 * <ol>state changes in this {@see AdjustmentSynchronizer} are reflected in the 843 * {@see JCheckBox}</ol> 844 * </li> 845 * 846 * 847 * @param view the checkbox to control whether an adjustable participates in synchronized 848 * adjustment 849 * @param adjustable the adjustable 850 * @exception IllegalArgumentException thrown, if view is null 851 * @exception IllegalArgumentException thrown, if adjustable is null 852 */ 853 protected void adapt(final JCheckBox view, final Adjustable adjustable) throws IllegalArgumentException, IllegalStateException { 854 if (adjustable == null) 855 throw new IllegalArgumentException(tr("argument \"adjustable\" must not be null")); 856 if (view == null) 857 throw new IllegalArgumentException(tr("argument \"view\" must not be null")); 858 859 if (! synchronizedAdjustables.contains(adjustable)) { 860 participateInSynchronizedScrolling(adjustable); 861 } 862 863 // register an item lister with the check box 864 // 865 view.addItemListener(new ItemListener() { 866 public void itemStateChanged(ItemEvent e) { 867 switch(e.getStateChange()) { 868 case ItemEvent.SELECTED: 869 if (!isParticipatingInSynchronizedScrolling(adjustable)) { 870 setParticipatingInSynchronizedScrolling(adjustable, true); 871 } 872 break; 873 case ItemEvent.DESELECTED: 874 if (isParticipatingInSynchronizedScrolling(adjustable)) { 875 setParticipatingInSynchronizedScrolling(adjustable, false); 876 } 877 break; 878 } 879 } 880 }); 881 882 883 observable.addObserver( 884 new Observer() { 885 public void update(Observable o, Object arg) { 886 boolean sync = isParticipatingInSynchronizedScrolling(adjustable); 887 if (view.isSelected() != sync) { 888 view.setSelected(sync); 889 } 890 } 891 } 892 ); 893 setParticipatingInSynchronizedScrolling(adjustable, true); 894 view.setSelected(true); 895 } 896 } 730 897 } -
trunk/src/org/openstreetmap/josm/gui/conflict/nodes/NodeListColumnModel.java
r1631 r1642 14 14 TableColumn col = null; 15 15 16 // column 0 - Node16 // column 0 - Row num 17 17 col = new TableColumn(0); 18 col.setHeaderValue(""); 19 col.setResizable(false); 20 col.setWidth(30); 21 col.setMaxWidth(30); 22 col.setCellRenderer(renderer); 23 addColumn(col); 24 25 // column 1 - Node 26 col = new TableColumn(1); 18 27 col.setHeaderValue(tr("Node")); 19 28 col.setResizable(true); -
trunk/src/org/openstreetmap/josm/gui/conflict/nodes/NodeListMerger.java
r1631 r1642 32 32 ); 33 33 myEntriesTable.setName("table.mynodes"); 34 myEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 34 35 return embeddInScrollPane(myEntriesTable); 35 36 } … … 45 46 ); 46 47 mergedEntriesTable.setName("table.mergednodes"); 48 mergedEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 47 49 return embeddInScrollPane(mergedEntriesTable); 48 50 } … … 58 60 ); 59 61 theirEntriesTable.setName("table.theirnodes"); 62 theirEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 60 63 return embeddInScrollPane(theirEntriesTable); 61 64 } -
trunk/src/org/openstreetmap/josm/gui/conflict/nodes/NodeListTableCellRenderer.java
r1640 r1642 6 6 import java.awt.Color; 7 7 import java.awt.Component; 8 import java.net.URL;9 8 import java.text.DecimalFormat; 10 9 10 import javax.swing.BorderFactory; 11 11 import javax.swing.ImageIcon; 12 12 import javax.swing.JLabel; 13 13 import javax.swing.JTable; 14 import javax.swing.border.Border; 14 15 import javax.swing.table.TableCellRenderer; 15 16 16 17 import org.openstreetmap.josm.data.osm.Node; 18 import org.openstreetmap.josm.tools.ImageProvider; 17 19 18 20 /** 19 21 * This is the {@see TableCellRenderer} used in the node tables of {@see NodeListMerger}. 20 22 * 21 *22 23 */ 23 24 public class NodeListTableCellRenderer extends JLabel implements TableCellRenderer { 24 25 private static DecimalFormat COORD_FORMATTER = new DecimalFormat("###0.0000"); 25 26 public final static Color BGCOLOR_SELECTED = new Color(143,170,255); 27 public final static Color BGCOLOR_EMPTY_ROW = new Color(234,234,234); 26 28 27 /** 28 * Load the image icon for an OSM primitive of type node 29 * 30 * @return the icon; null, if not found 31 */ 32 protected ImageIcon loadIcon() { 33 URL url = this.getClass().getResource("/images/data/node.png");; 34 if (url == null) { 35 System.out.println(tr("Failed to load resource /images/data/node.png")); 36 return null; 37 } 38 return new ImageIcon(url); 39 } 29 private ImageIcon icon = null; 30 private Border rowNumberBorder = null; 40 31 41 32 /** … … 43 34 */ 44 35 public NodeListTableCellRenderer() { 45 setIcon(loadIcon()); 36 icon = ImageProvider.get("data", "node"); 37 rowNumberBorder = BorderFactory.createEmptyBorder(0,4,0,0); 46 38 setOpaque(true); 47 39 } … … 90 82 */ 91 83 protected void renderNode(Node node, boolean isSelected) { 84 setIcon(icon); 85 setBorder(null); 92 86 if (isSelected) { 93 87 setBackground(BGCOLOR_SELECTED); 94 88 } 95 89 setText(getDisplayName(node)); 90 } 91 92 protected void renderEmptyRow() { 93 setIcon(null); 94 setBackground(BGCOLOR_EMPTY_ROW); 95 setText(""); 96 } 97 98 /** 99 * render the row id 100 * @param row the row index 101 * @param isSelected 102 */ 103 protected void renderRowId(int row, boolean isSelected) { 104 setIcon(null); 105 setBorder(rowNumberBorder); 106 if (isSelected) { 107 setBackground(BGCOLOR_SELECTED); 108 } 109 setText(Integer.toString(row+1)); 96 110 } 97 111 … … 101 115 Node node = (Node)value; 102 116 reset(); 103 renderNode(node,isSelected); 117 switch(column) { 118 case 0: 119 renderRowId(row, isSelected); 120 break; 121 case 1: 122 if (node == null) { 123 renderEmptyRow(); 124 } else { 125 renderNode(node,isSelected); 126 } 127 break; 128 default: 129 // should not happen 130 throw new RuntimeException(tr("unexpected column index. Got {0}", column)); 131 } 104 132 return this; 105 133 } -
trunk/src/org/openstreetmap/josm/gui/conflict/relation/RelationMemberListColumnModel.java
r1631 r1642 15 15 // column 0 - Role 16 16 col = new TableColumn(0); 17 col.setHeaderValue(""); 18 col.setResizable(false); 19 col.setWidth(20); 20 col.setMaxWidth(20); 21 col.setCellRenderer(renderer); 22 addColumn(col); 23 24 // column 1 - Role 25 col = new TableColumn(1); 17 26 col.setHeaderValue(tr("Role")); 18 27 col.setResizable(true); 19 28 col.setCellRenderer(renderer); 29 col.setMaxWidth(100); 20 30 col.setCellEditor(new RelationMemberTableCellEditor()); 21 31 addColumn(col); 22 32 23 // column 1- Primitive24 col = new TableColumn( 1);33 // column 2 - Primitive 34 col = new TableColumn(2); 25 35 col.setHeaderValue(tr("Primitive")); 26 36 col.setResizable(true); -
trunk/src/org/openstreetmap/josm/gui/conflict/relation/RelationMemberListMergeModel.java
r1631 r1642 37 37 // editing cells in the first column 38 38 // 39 mergedEntriesTableModel = this.new ListTableModel<RelationMember>(mergedEntries) {39 mergedEntriesTableModel = this.new EntriesTableModel<RelationMember>(mergedEntries) { 40 40 @Override 41 41 public boolean isCellEditable(int row, int column) { 42 42 switch(column) { 43 case 0: return true;43 case 1: return true; 44 44 default: return false; 45 45 } … … 50 50 @Override 51 51 protected void setValueAt(DefaultTableModel model, Object value, int row, int col) { 52 if (model == getMergedTableModel() && col == 0) {52 if (model == getMergedTableModel() && col == 1) { 53 53 RelationMember member = mergedEntries.get(row); 54 54 member.role = (String)value; -
trunk/src/org/openstreetmap/josm/gui/conflict/relation/RelationMemberMerger.java
r1631 r1642 25 25 ); 26 26 myEntriesTable.setName("table.mynodes"); 27 myEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 27 28 return embeddInScrollPane(myEntriesTable); 28 29 } … … 30 31 @Override 31 32 protected JScrollPane buildMergedElementsTable() { 32 logger.info(model.getMergedTableModel().toString());33 33 mergedEntriesTable = new JTable( 34 34 model.getMergedTableModel(), … … 38 38 mergedEntriesTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE); 39 39 mergedEntriesTable.setName("table.mergednodes"); 40 mergedEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 40 41 return embeddInScrollPane(mergedEntriesTable); 41 42 } … … 49 50 ); 50 51 theirEntriesTable.setName("table.theirnodes"); 52 theirEntriesTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); 51 53 return embeddInScrollPane(theirEntriesTable); 52 54 } -
trunk/src/org/openstreetmap/josm/gui/conflict/relation/RelationMemberTableCellRenderer.java
r1640 r1642 8 8 import java.text.DecimalFormat; 9 9 10 import javax.swing.BorderFactory; 10 11 import javax.swing.ImageIcon; 11 12 import javax.swing.JLabel; 12 13 import javax.swing.JTable; 14 import javax.swing.border.Border; 13 15 import javax.swing.table.TableCellRenderer; 14 16 … … 23 25 * This is the {@see TableCellRenderer} used in the tables of {@see RelationMemberMerger}. 24 26 * 25 *26 27 */ 27 28 public class RelationMemberTableCellRenderer extends JLabel implements TableCellRenderer { 28 private static DecimalFormat COORD_FORMATTER = new DecimalFormat("###0.0000"); 29 private final static DecimalFormat COORD_FORMATTER = new DecimalFormat("###0.0000"); 29 30 public final static Color BGCOLOR_SELECTED = new Color(143,170,255); 31 public final static Color BGCOLOR_EMPTY_ROW = new Color(234,234,234); 30 32 31 33 private ImageIcon nodeIcon; 32 34 private ImageIcon wayIcon; 33 35 private ImageIcon relationIcon; 36 private Border rowNumberBorder = null; 34 37 35 38 /** … … 51 54 setOpaque(true); 52 55 loadIcons(); 56 rowNumberBorder = BorderFactory.createEmptyBorder(0,4,0,0); 53 57 } 54 58 … … 100 104 setBackground(Color.WHITE); 101 105 setForeground(Color.BLACK); 106 setBorder(null); 107 setIcon(null); 108 setToolTipText(null); 102 109 } 103 110 … … 110 117 protected void renderRole(RelationMember member) { 111 118 setText(member.role == null ? "" : member.role); 112 set Icon(null);119 setToolTipText(member.role == null ? "" : member.role); 113 120 } 114 121 … … 129 136 } 130 137 138 /** 139 * render the row id 140 * @param row the row index 141 * @param isSelected 142 */ 143 protected void renderRowId(int row, boolean isSelected) { 144 setBorder(rowNumberBorder); 145 setText(Integer.toString(row+1)); 146 } 147 148 protected void renderEmptyRow() { 149 setIcon(null); 150 setBackground(BGCOLOR_EMPTY_ROW); 151 setText(""); 152 } 153 154 131 155 public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, 132 156 int row, int column) { … … 137 161 switch(column) { 138 162 case 0: 139 renderRo le(member);163 renderRowId(row, isSelected); 140 164 break; 141 165 case 1: 142 renderPrimitive(member); 166 if (member == null) { 167 renderEmptyRow(); 168 } else { 169 renderRole(member); 170 } 171 break; 172 case 2: 173 if (member == null) { 174 renderEmptyRow(); 175 } else { 176 renderPrimitive(member); 177 } 143 178 break; 144 179 default: -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/MergedTableCellRenderer.java
r1627 r1642 6 6 import java.awt.Color; 7 7 8 public class UndecidedTableCellRenderer extends TagMergeTableCellRenderer {8 public class MergedTableCellRenderer extends TagMergeTableCellRenderer { 9 9 10 10 public final static Color BGCOLOR_UNDECIDED = new Color(255,197,197); -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagMerger.java
r1631 r1642 13 13 import java.awt.event.MouseAdapter; 14 14 import java.awt.event.MouseEvent; 15 import java.net.URL;16 15 import java.util.ArrayList; 17 16 … … 27 26 import javax.swing.event.ListSelectionListener; 28 27 28 import org.openstreetmap.josm.tools.ImageProvider; 29 /** 30 * UI component for resolving conflicts in the tag sets of two {@see OsmPrimitive}s. 31 * 32 */ 29 33 public class TagMerger extends JPanel { 30 34 … … 37 41 AdjustmentSynchronizer adjustmentSynchronizer; 38 42 43 /** 44 * embeds table in a new {@see JScrollPane} and returns th scroll pane 45 * 46 * @param table the table 47 * @return the scroll pane embedding the table 48 */ 39 49 protected JScrollPane embeddInScrollPane(JTable table) { 40 50 JScrollPane pane = new JScrollPane(table); … … 46 56 } 47 57 58 /** 59 * builds the table for my tag set (table already embedded in a scroll pane) 60 * 61 * @return the table (embedded in a scroll pane) 62 */ 48 63 protected JScrollPane buildMineTagTable() { 49 64 mineTable = new JTable( … … 57 72 } 58 73 74 /** 75 * builds the table for their tag set (table already embedded in a scroll pane) 76 * 77 * @return the table (embedded in a scroll pane) 78 */ 59 79 protected JScrollPane buildTheirTable() { 60 80 theirTable = new JTable( … … 68 88 } 69 89 70 protected JScrollPane buildUndecidedTable() { 90 /** 91 * builds the table for the merged tag set (table already embedded in a scroll pane) 92 * 93 * @return the table (embedded in a scroll pane) 94 */ 95 96 protected JScrollPane buildMergedTable() { 71 97 mergedTable = new JTable( 72 98 model, 73 99 new TagMergeColumnModel( 74 new UndecidedTableCellRenderer()100 new MergedTableCellRenderer() 75 101 ) 76 102 ); … … 79 105 } 80 106 107 /** 108 * build the user interface 109 */ 81 110 protected void build() { 82 111 GridBagConstraints gc = new GridBagConstraints(); … … 152 181 gc.weightx = 0.3; 153 182 gc.weighty = 1.0; 154 add(build UndecidedTable(), gc);183 add(buildMergedTable(), gc); 155 184 156 185 gc.gridx = 3; … … 205 234 } 206 235 236 /** 237 * replies the model used by this tag merger 238 * 239 * @return the model 240 */ 207 241 public TagMergeModel getModel() { 208 242 return model; 209 243 } 210 244 211 protected ImageIcon loadIcon(String name) { 212 String path = "/images/dialogs/conflict/" + name; 213 URL url = this.getClass().getResource(path); 214 if (url == null) { 215 System.out.println(tr("WARNING: failed to load resource {0}", path)); 216 return null; 217 } 218 return new ImageIcon(url); 219 } 220 245 /** 246 * Keeps the currently selected tags in my table in the list of merged tags. 247 * 248 */ 221 249 class KeepMineAction extends AbstractAction implements ListSelectionListener { 222 223 224 250 public KeepMineAction() { 225 ImageIcon icon = loadIcon("tagkeepmine.png");251 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagkeepmine.png"); 226 252 if (icon != null) { 227 253 putValue(Action.SMALL_ICON, icon); … … 246 272 } 247 273 274 /** 275 * Keeps the currently selected tags in their table in the list of merged tags. 276 * 277 */ 248 278 class KeepTheirAction extends AbstractAction implements ListSelectionListener { 249 250 279 public KeepTheirAction() { 251 ImageIcon icon = loadIcon("tagkeeptheir.png");280 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagkeeptheir.png"); 252 281 if (icon != null) { 253 282 putValue(Action.SMALL_ICON, icon); … … 272 301 } 273 302 303 /** 304 * Synchronizes scrollbar adjustments between a set of 305 * {@see Adjustable}s. Whenever the adjustment of one of 306 * the registerd Adjustables is updated the adjustment of 307 * the other registered Adjustables is adjusted too. 308 * 309 */ 274 310 class AdjustmentSynchronizer implements AdjustmentListener { 275 311 private final ArrayList<Adjustable> synchronizedAdjustables; … … 297 333 } 298 334 335 /** 336 * Handler for double clicks on entries in the three tag tables. 337 * 338 */ 299 339 class DoubleClickAdapter extends MouseAdapter { 300 340 … … 324 364 } 325 365 366 /** 367 * Sets the currently selected tags in the table of merged tags to state 368 * {@see MergeDecisionType#UNDECIDED} 369 * 370 */ 326 371 class UndecideAction extends AbstractAction implements ListSelectionListener { 327 372 328 373 public UndecideAction() { 329 ImageIcon icon = loadIcon("tagundecide.png");374 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagundecide.png"); 330 375 if (icon != null) { 331 376 putValue(Action.SMALL_ICON, icon); -
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java
r1640 r1642 51 51 private final DefaultListModel model = new DefaultListModel(); 52 52 private final JList displaylist = new JList(model); 53 53 54 54 private final SideButton sbSelect = new SideButton(marktr("Select"), "select", "Conflict", 55 55 tr("Set the selected elements on the map to the selected items in the list above."), new ActionListener(){ 56 public void actionPerformed(ActionEvent e) { 57 Collection<OsmPrimitive> sel = new LinkedList<OsmPrimitive>(); 58 for (Object o : displaylist.getSelectedValues()) 59 sel.add((OsmPrimitive)o); 60 Main.ds.setSelected(sel); 61 } 62 }); 56 public void actionPerformed(ActionEvent e) { 57 Collection<OsmPrimitive> sel = new LinkedList<OsmPrimitive>(); 58 for (Object o : displaylist.getSelectedValues()) { 59 sel.add((OsmPrimitive)o); 60 } 61 Main.ds.setSelected(sel); 62 } 63 }); 63 64 private final SideButton sbResolve = new SideButton(marktr("Resolve"), "conflict", "Conflict", 64 65 tr("Open a merge dialog of all selected items in the list above."), new ActionListener(){ … … 70 71 public ConflictDialog() { 71 72 super(tr("Conflict"), "conflict", tr("Merging conflicts."), 72 Shortcut.registerShortcut("subwindow:conflict", tr("Toggle: {0}", tr("Conflict")), KeyEvent.VK_C, Shortcut.GROUP_LAYER), 100); 73 Shortcut.registerShortcut("subwindow:conflict", tr("Toggle: {0}", tr("Conflict")), KeyEvent.VK_C, Shortcut.GROUP_LAYER), 100); 73 74 displaylist.setCellRenderer(new OsmPrimitivRenderer()); 74 75 displaylist.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); 75 76 displaylist.addMouseListener(new MouseAdapter(){ 76 77 @Override public void mouseClicked(MouseEvent e) { 77 if (e.getClickCount() >= 2) 78 if (e.getClickCount() >= 2) { 78 79 resolve(); 80 } 79 81 } 80 82 }); … … 102 104 } 103 105 }); 104 106 105 107 rebuildList(); 106 108 } … … 110 112 method = method.trim().toLowerCase(); 111 113 if (method.equals("traditional")) { 112 resolveTraditional(); 114 resolveTraditional(); 113 115 } else if (method.equals("extended")) { 114 116 resolveExtended(); … … 118 120 } 119 121 } 120 121 122 123 122 124 private final void resolveExtended() { 123 if(model.size() == 1) 125 if(model.size() == 1) { 124 126 displaylist.setSelectedIndex(0); 125 127 } 128 126 129 if (displaylist.getSelectedIndex() == -1) 127 130 return; 128 131 129 132 int [] selectedRows = displaylist.getSelectedIndices(); 130 if (selectedRows == null || selectedRows.length == 0) { 131 return; 132 } 133 if (selectedRows == null || selectedRows.length == 0) 134 return; 133 135 int row = selectedRows[0]; 134 136 OsmPrimitive my = (OsmPrimitive)model.get(row); 135 137 OsmPrimitive their = conflicts.get(my); 136 ConflictResolutionDialog dialog = new ConflictResolutionDialog(Main.parent); 138 ConflictResolutionDialog dialog = new ConflictResolutionDialog(Main.parent); 137 139 dialog.getConflictResolver().populate(my, their); 138 140 dialog.setVisible(true); 139 141 Main.map.mapView.repaint(); 140 142 } 141 142 143 144 143 145 private final void resolveTraditional() { 144 if(model.size() == 1) 146 if(model.size() == 1) { 145 147 displaylist.setSelectedIndex(0); 146 148 } 149 147 150 if (displaylist.getSelectedIndex() == -1) 148 151 return; … … 154 157 ConflictResolver resolver = new ConflictResolver(sel); 155 158 int answer = new ExtendedDialog(Main.parent, 156 157 158 159 160 ).getValue(); 159 tr("Resolve Conflicts"), 160 resolver, 161 new String[] { tr("Solve Conflict"), tr("Cancel") }, 162 new String[] { "dialogs/conflict.png", "cancel.png"} 163 ).getValue(); 161 164 162 165 if (answer != 1) … … 171 174 model.addElement(osm); 172 175 } 173 176 174 177 if(model.size() != 0) { 175 178 setTitle(tr("Conflicts: {0}", model.size()), true); … … 177 180 setTitle(tr("Conflicts"), false); 178 181 } 179 182 180 183 sbSelect.setEnabled(model.size() > 0); 181 184 sbResolve.setEnabled(model.size() > 0); … … 185 188 this.conflicts.putAll(conflicts); 186 189 rebuildList(); 190 } 191 192 193 /** 194 * removes a conflict registered for {@see OsmPrimitive} <code>my</code> 195 * 196 * @param my the {@see OsmPrimitive} for which a conflict is registered 197 * with this dialog 198 */ 199 public void removeConflictForPrimitive(OsmPrimitive my) { 200 if (! conflicts.keySet().contains(my)) 201 return; 202 conflicts.remove(my); 203 rebuildList(); 204 repaint(); 205 } 206 207 /** 208 * registers a conflict with this dialog. The conflict is represented 209 * by a pair of {@see OsmPrimitive} with differences in their tag sets, 210 * their node lists (for {@see Way}s) or their member lists (for {@see Relation}s) 211 * 212 * @param my my version of the {@see OsmPrimitive} 213 * @param their their version of the {@see OsmPrimitive} 214 */ 215 public void addConflict(OsmPrimitive my, OsmPrimitive their) { 216 conflicts.put(my, their); 217 rebuildList(); 218 repaint(); 187 219 } 188 220 … … 222 254 } 223 255 public void visit(Relation e) { 224 for (RelationMember em : e.members) 256 for (RelationMember em : e.members) { 225 257 em.member.visit(this); 258 } 226 259 } 227 260 }; -
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java
r1631 r1642 169 169 170 170 public void actionPerformed(ActionEvent arg0) { 171 if (! resolver.isCompletelyResolved()) { 172 Object[] options = { 173 tr("Apply partial resolutions"), 174 tr("Continue resolving")}; 175 int n = JOptionPane.showOptionDialog(null, 176 tr("<html>You didn''t finish to resolve all conflicts.<br>" 177 + "Click <strong>{0}</strong> to apply already resolved conflicts anyway.<br>" 178 + "You can resolve the remaining conflicts later.<br>" 179 + "Click <strong>{1}</strong> to return to resolving conflicts.</html>" 180 , options[0].toString(), options[1].toString() 181 ), 182 tr("Warning"), 183 JOptionPane.YES_NO_OPTION, 184 JOptionPane.WARNING_MESSAGE, 185 null, 186 options, 187 options[1] 188 ); 189 if (n == JOptionPane.NO_OPTION || n == JOptionPane.CLOSED_OPTION) 190 return; 191 } 171 192 Command cmd = resolver.buildResolveCommand(); 172 193 Main.main.undoRedo.add(cmd);
Note:
See TracChangeset
for help on using the changeset viewer.