File: UndoLoadAudios.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 (49 lines) | stat: -rw-r--r-- 1,152 bytes parent folder | download | duplicates (7)
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
package tim.prune.undo;

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

/**
 * Operation to undo a load audios operation
 */
public class UndoLoadAudios implements UndoOperation
{
	/** Number of audio clips added */
	private int _numAudios = -1;


	/**
	 * Constructor
	 * @param inNumAudios number of audios loaded
	 */
	public UndoLoadAudios(int inNumAudios)
	{
		_numAudios = inNumAudios;
	}


	/**
	 * @return description of operation including number of audios loaded
	 */
	public String getDescription()
	{
		String desc = I18nManager.getText("undo.loadaudios");
		if (_numAudios > 0)
			desc = desc + " (" + _numAudios + ")";
		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
	{
		// crop audio list to previous size
		int cropIndex = inTrackInfo.getAudioList().getNumAudios() - _numAudios;
		inTrackInfo.getAudioList().cropTo(cropIndex);
		// clear selection
		inTrackInfo.getSelection().clearAll();
	}
}