de.sciss.lucre.swing.graph.PathField.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!
/*
* PathField.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
package graph
import de.sciss.desktop.{FileDialog, PathField => Peer}
import de.sciss.file.File
import de.sciss.lucre.expr.ExOps._
import de.sciss.lucre.expr.graph.Constant
import de.sciss.lucre.expr.{Ex, IExpr, Model}
import de.sciss.lucre.stm.Sys
import de.sciss.lucre.swing.graph.impl.{ComponentExpandedImpl, ComponentImpl, PathFieldValueExpandedImpl}
import de.sciss.lucre.swing.impl.ComponentHolder
object PathField {
def apply(): PathField = Impl()
def apply(mode: Ex[Int]): PathField = {
val res = apply()
res.mode = mode
res
}
val Open : Ex[Int] = 0
val Save : Ex[Int] = 1
val Folder: Ex[Int] = 1
private[graph] final val keyValue = "value"
private[graph] final val keyTitle = "title"
private[graph] final val keyMode = "mode"
private[graph] final val defaultValue = new File("")
private[graph] final val defaultMode = 0
final case class Value(w: PathField) extends Ex[File] {
override def productPrefix: String = s"PathField$$Value" // serialization
def expand[S <: Sys[S]](implicit ctx: Ex.Context[S], tx: S#Tx): IExpr[S, File] = {
import ctx.{cursor, targets}
val ws = w.expand[S]
val valueOpt = ctx.getProperty[Ex[File]](w, keyValue)
val value0 = valueOpt.fold[File](defaultValue)(_.expand[S].value)
new PathFieldValueExpandedImpl[S](ws.component, value0).init()
}
}
private final val titleSeq = List(
"Open File",
"Save File",
"Choose Folder"
)
private def defaultTitle(mode: Ex[Int]): Ex[String] = {
Constant(titleSeq).applyOption(mode).getOrElse("Choose")
}
final case class Title(w: PathField) extends Ex[String] {
override def productPrefix: String = s"PathField$$Title" // serialization
def expand[S <: Sys[S]](implicit ctx: Ex.Context[S], tx: S#Tx): IExpr[S, String] = {
val valueOpt = ctx.getProperty[Ex[String]](w, keyTitle)
valueOpt.getOrElse(defaultTitle(w.mode)).expand[S]
}
}
final case class Mode(w: PathField) extends Ex[Int] {
override def productPrefix: String = s"PathField$$Mode" // serialization
def expand[S <: Sys[S]](implicit ctx: Ex.Context[S], tx: S#Tx): IExpr[S, Int] = {
val valueOpt = ctx.getProperty[Ex[Int]](w, keyMode)
valueOpt.getOrElse(Constant(defaultMode)).expand[S]
}
}
private final class Expanded[S <: Sys[S]](protected val w: PathField) extends View[S]
with ComponentHolder[Peer] with ComponentExpandedImpl[S] {
type C = Peer
override def init()(implicit tx: S#Tx, ctx: Ex.Context[S]): this.type = {
val valueOpt = ctx.getProperty[Ex[File ]](w, keyValue).map(_.expand[S].value)
val titleOpt = ctx.getProperty[Ex[String ]](w, keyTitle).map(_.expand[S].value)
val mode = ctx.getProperty[Ex[Int ]](w, keyMode ).fold(defaultMode)(_.expand[S].value) match {
case 0 => FileDialog.Open
case 1 => FileDialog.Save
case 2 => FileDialog.Folder
case _ => FileDialog.Open
}
deferTx {
val c = new Peer
valueOpt.foreach(c.value = _)
titleOpt.foreach(c.title = _)
c.mode = mode
component = c
}
super.init()
}
}
private final case class Impl() extends PathField with ComponentImpl { w =>
override def productPrefix: String = "PathField" // serialization
protected def mkControl[S <: Sys[S]](implicit ctx: Ex.Context[S], tx: S#Tx): Repr[S] =
new Expanded[S](this).init()
object value extends Model[File] {
def apply(): Ex[File] = Value(w)
def update(value: Ex[File]): Unit = {
val b = Graph.builder
b.putProperty(w, keyValue, value)
}
}
def title: Ex[String] = Title(this)
def title_=(value: Ex[String]): Unit = {
val b = Graph.builder
b.putProperty(this, keyTitle, value)
}
def mode: Ex[Int] = Mode(this)
def mode_=(value: Ex[Int]): Unit = {
val b = Graph.builder
b.putProperty(this, keyMode, value)
}
}
}
trait PathField extends Component {
type C = Peer
var title : Ex[String]
var mode : Ex[Int]
def value : Model[File]
}