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
|
package tim.prune.undo;
import tim.prune.I18nManager;
import tim.prune.data.TrackInfo;
/**
* Operation to undo a load photos operation
*/
public class UndoLoadPhotos implements UndoOperation
{
private int _numPhotos = -1;
private int _numPoints = -1;
/**
* Constructor
* @param inNumPhotos number of photos loaded
* @param inNumPoints number of points loaded
*/
public UndoLoadPhotos(int inNumPhotos, int inNumPoints)
{
_numPhotos = inNumPhotos;
_numPoints = inNumPoints;
}
/**
* @return description of operation including number of photos loaded
*/
public String getDescription()
{
String desc = I18nManager.getText("undo.loadphotos");
if (_numPhotos > 0)
desc = desc + " (" + _numPhotos + ")";
return desc;
}
/**
* Perform the undo operation on the given Track
* Delete both track points and Photo objects
* @param inTrackInfo TrackInfo object on which to perform the operation
*/
public void performUndo(TrackInfo inTrackInfo) throws UndoException
{
int cropIndex;
// crop track to previous size
if (_numPoints > 0)
{
cropIndex = inTrackInfo.getTrack().getNumPoints() - _numPoints;
inTrackInfo.getTrack().cropTo(cropIndex);
}
// crop photo list to previous size
cropIndex = inTrackInfo.getPhotoList().getNumPhotos() - _numPhotos;
inTrackInfo.getPhotoList().cropTo(cropIndex);
// clear selection
inTrackInfo.getSelection().clearAll();
}
}
|