de.sciss.lucre.swing.View.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lucreswing_2.13.0-M5 Show documentation
Show all versions of lucreswing_2.13.0-M5 Show documentation
Swing support for Lucre, and common views
The newest version!
/*
* View.scala
* (LucreSwing)
*
* Copyright (c) 2014-2019 Hanns Holger Rutz. All rights reserved.
*
* This software is published under the GNU Lesser General Public License v2.1+
*
*
* For further information, please contact Hanns Holger Rutz at
* [email protected]
*/
package de.sciss.lucre.swing
import de.sciss.desktop.UndoManager
import de.sciss.lucre.stm.Sys
import de.sciss.lucre.stm
import de.sciss.lucre.stm.Disposable
import de.sciss.lucre.swing.impl.ComponentHolder
import scala.swing.Component
object View {
type T[S <: Sys[S], C1 <: Component] = View[S] { type C = C1 }
trait Cursor[S <: Sys[S]] extends View[S] {
implicit def cursor: stm.Cursor[S]
}
trait Editable[S <: Sys[S]] extends Cursor[S] {
def undoManager: UndoManager
}
trait File {
def file: java.io.File
}
def wrap[S <: Sys[S], C <: Component](component: => C)(implicit tx: S#Tx): View.T[S, C] = {
val res = new Wrap[S, C]
deferTx {
res.guiInit(component)
}
res
}
private final class Wrap[S <: Sys[S], C1 <: Component] extends View[S] with ComponentHolder[C1] {
type C = C1
def guiInit(c: C1): Unit = component = c
def dispose()(implicit tx: S#Tx): Unit = ()
}
}
trait View[S <: Sys[S]] extends Disposable[S#Tx] {
type C <: Component
def component: C
}