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
|
package tim.prune.undo;
import tim.prune.I18nManager;
import tim.prune.data.DataPoint;
import tim.prune.data.PhotoList;
import tim.prune.data.TrackInfo;
/**
* Operation to undo a delete of a range of points
*/
public class UndoDeleteRange implements UndoOperation
{
private int _startIndex = -1;
private DataPoint[] _points = null;
private PhotoList _photoList = null;
private DataPoint _nextTrackPoint = null;
private boolean _segmentStart = false;
/**
* Constructor
* @param inTrackInfo track info object
*/
public UndoDeleteRange(TrackInfo inTrackInfo)
{
_startIndex = inTrackInfo.getSelection().getStart();
_points = inTrackInfo.cloneSelectedRange();
_photoList = inTrackInfo.getPhotoList().cloneList();
// Save segment flag of following track point
_nextTrackPoint = inTrackInfo.getTrack().getNextTrackPoint(_startIndex + _points.length);
if (_nextTrackPoint != null) {
_segmentStart = _nextTrackPoint.getSegmentStart();
}
}
/**
* @return description of operation including range length
*/
public String getDescription()
{
return I18nManager.getText("undo.deleterange")
+ " (" + _points.length + ")";
}
/**
* Perform the undo operation on the given Track
* @param inTrackInfo TrackInfo object on which to perform the operation
*/
public void performUndo(TrackInfo inTrackInfo)
{
// restore photos to how they were before
inTrackInfo.getPhotoList().restore(_photoList);
// reconnect photos to points
for (int i=0; i<_points.length; i++)
{
DataPoint point = _points[i];
if (point != null && point.getPhoto() != null)
{
point.getPhoto().setDataPoint(point);
}
}
// restore point array into track
inTrackInfo.getTrack().insertRange(_points, _startIndex);
// Restore segment flag of following track point
if (_nextTrackPoint != null) {
_nextTrackPoint.setSegmentStart(_segmentStart);
}
}
}
|