Edit State
data class EditState(val currentSelectedTool: ActionType = ActionType.NONE, val lastSelectedTool: ActionType = ActionType.NONE, val currentSelectedTracks: MutableList<Int> = mutableListOf(), val currentSelectedPoints: MutableList<Pair<Int, Double>> = mutableListOf(), val direction: InsertPosition = InsertPosition.BACK, val version: Long = System.nanoTime())
Edition state
Constructors
Link copied to clipboard
constructor(currentSelectedTool: ActionType = ActionType.NONE, lastSelectedTool: ActionType = ActionType.NONE, currentSelectedTracks: MutableList<Int> = mutableListOf(), currentSelectedPoints: MutableList<Pair<Int, Double>> = mutableListOf(), direction: InsertPosition = InsertPosition.BACK, version: Long = System.nanoTime())