Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I think you meant to specify the swing package in yuor link: scala-lang.org/api/current/index.html#scala.swing.package – am75 May 13 '11 at 1:12
3  
What have you tried so far? What doesn't work? – Jean-Philippe Pellet May 13 '11 at 6:08

2 Answers

up vote 1 down vote accepted

If you're wondering how to add a JSpinner to a Scala swing application, you need to use Component.wrap(JComponent) to get a Scala component. This should give you something to model on:

import swing._

import javax.swing.SpinnerListModel
import javax.swing.JSpinner

object SpinnerDemo extends SimpleSwingApplication {
  val monthStrings: Array[Object] = Array("January", "February", "March",
    "April", "May", "June", "July",
    "August", "September", "October",
    "November", "December")

  def top = new MainFrame {
    title = "Spinner Demo"

    val monthModel = new SpinnerListModel(monthStrings)
    val spinner = new JSpinner(monthModel)
    contents = new FlowPanel {
      contents += new Label("Month")
      contents += Component.wrap(spinner)
    }
  }
}
share|improve this answer

It's not as easy.

[error] /home/ciembor/projekty/VirtualCut/src/main/scala/View/View.scala:22: reference to Action is ambiguous;
[error] it is imported twice in the same scope by
[error] import javax.swing._
[error] and import swing._

swing and javax.swing are conflicting. I think I should import only JSpinner class.

share|improve this answer
Interesting. The code in my answer compiled and ran correctly for me using scala 2.9.0. I'll edit my answer and make the imports a little tighter. – Ian McLaird May 17 '11 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.