File: UndoDeleteMarked.java

package info (click to toggle)
gpsprune 17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,984 kB
  • ctags: 5,218
  • sloc: java: 39,403; sh: 25; makefile: 17; python: 15
file content (74 lines) | stat: -rw-r--r-- 1,986 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package tim.prune.undo;

import tim.prune.I18nManager;
import tim.prune.data.DataPoint;
import tim.prune.data.Track;
import tim.prune.data.TrackInfo;

/**
 * Operation to undo the deletion of marked points
 */
public class UndoDeleteMarked implements UndoOperation
{
	private DataPoint[] _contents = null;
	protected int _numPointsDeleted = -1;
	private boolean[] _segmentStarts = null;


	/**
	 * Constructor
	 * @param inTrack track contents to copy
	 */
	public UndoDeleteMarked(Track inTrack)
	{
		_contents = inTrack.cloneContents();
		// Copy boolean segment start flags
		_segmentStarts = new boolean[inTrack.getNumPoints()];
		for (int i=0; i<inTrack.getNumPoints(); i++) {
			_segmentStarts[i] = inTrack.getPoint(i).getSegmentStart();
		}
	}


	/**
	 * Set the number of points deleted
	 * (only known after attempted compression)
	 * @param inNum number of points deleted
	 */
	public void setNumPointsDeleted(int inNum)
	{
		_numPointsDeleted = inNum;
	}


	/**
	 * @return description of operation including parameters
	 */
	public String getDescription()
	{
		String desc = I18nManager.getText("undo.deletemarked");
		if (_numPointsDeleted > 0)
			desc = desc + " (" + _numPointsDeleted + ")";
		return desc;
	}


	/**
	 * Perform the undo operation on the given Track
	 * @param inTrackInfo TrackInfo object on which to perform the operation
	 */
	public void performUndo(TrackInfo inTrackInfo) throws UndoException
	{
		// restore track to previous values
		inTrackInfo.getTrack().replaceContents(_contents);
		// Copy boolean segment start flags
		Track track = inTrackInfo.getTrack();
		if (_segmentStarts.length != track.getNumPoints())
			throw new UndoException("Cannot undo delete - track length no longer matches");
		for (int i=0; i<_segmentStarts.length; i++) {
			track.getPoint(i).setSegmentStart(_segmentStarts[i]);
		}
		// clear selection
		inTrackInfo.getSelection().clearAll();
	}
}