ScalaFx将ImageView绑定到自定义枚举

时间:2015-01-30 07:58:38

标签: scala binding javafx scalafx

我刚刚开始编写scalafx应用程序并对绑定提出疑问。

我的演示者类中有一个具有连接状态的枚举,我想在视图类的标签中选择适当的图标。我基本上可以用javafx方式创建绑定并设置转换器,每次状态更改时都会选择适当的ImageView,但是可以用ScalaFX方式吗?

我看了很多scalafx的例子,但仍然找不到这样的东西。

以下是一些代码:

package view

import scalafx.beans.property.ObjectProperty

class MainWindowPresenter {
  object DatabaseState extends  Enumeration {
    type DatabaseState = Value
    val NOT_CONNECTED, IDLE, BUSY, ERROR = Value
  }

  val login = new ObjectProperty[String](this, "login", "awesomeloginname")
  val state = new ObjectProperty[DatabaseState.DatabaseState](this, "state", DatabaseState.ERROR)
}

查看课程:

package view

import java.util.concurrent.Callable
import javafx.beans.binding.ObjectBinding

import collection.immutable.HashMap

import javafx.scene.control.SeparatorMenuItem

import scala.util.Random
import scalafx.beans.property.{ObjectProperty}
import scalafx.geometry.{Orientation, Insets, Pos}
import scalafx.scene.control._
import scalafx.scene.image.{ImageView, Image}
import scalafx.scene.layout._

import scalafx.Includes._

class MainWindowView extends BorderPane {
  val model = new MainWindowPresenter

  top = new HBox {
    content = List(
      new Label() {
       graphic <== //somehow select imageview depending on model.state
      }
    )
  }

  private def imageFromResource(name : String) =
    new ImageView(new Image(getClass.getClassLoader.getResourceAsStream(name)))
}

提前致谢并抱歉语法错误,如果有的话 - 英语不是我的母语。

1 个答案:

答案 0 :(得分:0)

您可以使用EasyBindReactFX的快照(2.0-SNAPSHOT)版本来创建绑定。两者都是Java库,但它们很容易从Scala中使用。这是EasyBind方式:

graphic <== EasyBind.map(model.state, stateToImage)

val stateToImage: Function1[DatabaseState.DatabaseState, ImageView] = {
  // convert state to ImageView
}

此代码使用Scala的Function1到Java Function的隐式转换。

您还可以定义从ScalaFX ObjectProperty到EasyBind MonadicObservableValue的隐式转换,然后可以将上面的第一行重写为:

graphic <== model.state.map(stateToImage)