File: UndoInsert.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 (81 lines) | stat: -rw-r--r-- 2,194 bytes parent folder | download | duplicates (5)
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
75
76
77
78
79
80
81
package tim.prune.undo;

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

/**
 * Operation to undo an insertion (eg average)
 */
public class UndoInsert implements UndoOperation
{
	private int _startPosition = 0;
	private int _numInserted = 0;
	private boolean _hasSegmentFlag = false;
	private boolean _segmentFlag = false;


	/**
	 * Constructor without segment flag
	 * @param inStart start of insert
	 * @param inNumInserted number of points inserted
	 */
	public UndoInsert(int inStart, int inNumInserted)
	{
		this(inStart, inNumInserted, false, false);
	}


	/**
	 * Constructor with segment flag
	 * @param inStart start of insert
	 * @param inNumInserted number of points inserted
	 * @param inSegmentFlag segment flag of following point
	 */
	public UndoInsert(int inStart, int inNumInserted, boolean inSegmentFlag)
	{
		this(inStart, inNumInserted, true, inSegmentFlag);
	}


	/**
	 * Constructor
	 * @param inStart start of insert
	 * @param inNumInserted number of points inserted
	 * @param inHasFlag is there a segment flag present
	 * @param inFlag segment flag, if any
	 */
	public UndoInsert(int inStart, int inNumInserted, boolean inHasFlag, boolean inFlag)
	{
		_startPosition = inStart;
		_numInserted = inNumInserted;
		_hasSegmentFlag = inHasFlag;
		_segmentFlag = inFlag;
	}


	/**
	 * @return description of operation including parameters
	 */
	public String getDescription()
	{
		return I18nManager.getText("undo.insert") + " (" + _numInserted + ")";
	}


	/**
	 * Perform the undo operation on the given TrackInfo
	 * @param inTrackInfo TrackInfo object on which to perform the operation
	 */
	public void performUndo(TrackInfo inTrackInfo) throws UndoException
	{
		// restore track to previous values
		inTrackInfo.getTrack().deleteRange(_startPosition, _startPosition + _numInserted - 1);
		if (_hasSegmentFlag) {
			DataPoint nextPoint = inTrackInfo.getTrack().getNextTrackPoint(_startPosition);
			if (nextPoint != null) {nextPoint.setSegmentStart(_segmentFlag);}
		}
		// reset selection
		inTrackInfo.getSelection().clearAll();
	}
}