org.hyperscala.ui

history

package history

Visibility
  1. Public
  2. All

Type Members

  1. case class FunctionalHistoryEntry(description: String, undoFunction: () ⇒ Unit, redoFunction: () ⇒ Unit, time: Long = System.currentTimeMillis()) extends HistoryEntry with Product with Serializable

  2. case class HistoryAdded(entry: HistoryEntry, redos: Queue[HistoryEntry]) extends HistoryStateChange with Product with Serializable

  3. case class HistoryCleared(undos: Queue[HistoryEntry], redos: Queue[HistoryEntry]) extends HistoryStateChange with Product with Serializable

  4. trait HistoryEntry extends AnyRef

  5. class HistoryInstance extends Listenable

  6. case class HistoryRedo(entry: HistoryEntry) extends HistoryStateChange with Product with Serializable

  7. sealed trait HistoryStateChange extends AnyRef

  8. case class HistoryUndo(entry: HistoryEntry) extends HistoryStateChange with Product with Serializable

Value Members

  1. object History extends Module

    History module provides history management functionality to a webpage.

  2. object HistoryEntry

Ungrouped