The scala-swing tag has no wiki summary.
11
votes
2answers
2k views
8
votes
4answers
1k views
Are there a good examples of using scala.swing?
I don't know Java or swing, but I'm quite familiar with Scala and I have no problems using it for my purposes. But when I try to implement GUI I get a lot of problems/bugs that documentation can't ...
8
votes
5answers
1k views
How do I extend scala.swing?
In response to a previous question on how to achieve a certain effect with Swing, I was directed to JDesktopPane and JInternalFrame. Unfortunately, scala.swing doesn't seem to have any wrapper for ...
6
votes
1answer
2k views
Scala Swing event framework - where do I add my reactors?
I'm trying to catch a mouse-click even on a Table (which should cause a popup to be shown). The table is inside a ScrollPane which is (in turn) inside a Panel. I have added reactions to all the ...
4
votes
2answers
123 views
Why is this reference ambiguous?
import swing._
object PeerTest extends SimpleSwingApplication {
def top = new MainFrame {
val p = peer.getMousePosition
}
}
gives
error: ambiguous reference to overloaded definition,
both ...
3
votes
0answers
67 views
How can I create collapsible text using Scala Swing
I simply need to have collapsible text in my Scala application. I am already using the Swing wrapper. Each block of text is stored in it's own object. I just need help finding out how to add the ...
3
votes
2answers
196 views
How to set only the preferred width of Panel with flow layout?
I have a panel with flow layout, and it can contain a variable number of items - from 1 to 2000. I want to put it inside a scroll pane, scrollable in vertical direction, and with fixed width. The ...
2
votes
2answers
66 views
Table headers disappear without ScrollPane
I wrote the following simple code to test scala.swing.Table:
// java version "1.7.0_01"
// Scala code runner version 2.9.1.final
// Windows 7 Ultimate 64-bit
import scala.swing._
object ...
2
votes
3answers
119 views
Closing a Scala swing frame
I am having a problem closing my Scala swing frame. Here is the code for my exit button
val buttonExit = new Button {
text = "Exit"
action = Action("Exit") {
WorldActor.run(false)
closer
...
2
votes
1answer
165 views
Scala Swing Newbie
Im trying to create an login window for an app im doing. I have searched all day for an example but I cant seem to find anything that helps. My basic structure is as follows:
// App.scala
object App ...
2
votes
3answers
183 views
JInternalFrame with scala.swing
scala swing looks interesting, but somehow it is incomplete, and sometimes I still need to use the old java classes, but i have no clue how I have to wrap them correctly.
So how do I wrap ...
2
votes
1answer
502 views
Problems with Scala Swing library
Hello I am having problems when using the Scala Swing library in version 2.8 Beta1-prerelease. I have a situation where I want to show a table in GUI, and update it as results are returned from a SQL ...
1
vote
2answers
63 views
Image files and relative paths in scala
I am trying to access some images for from image panel using a relative path. In the Eclipse project I have a folder named images with on image inside. Here is my code:
val top = new MainFrame {
...
1
vote
1answer
59 views
Navigating between panels in scala
I want to know how to navigate between panels in scala swinng. the current code I have is:
val top = new MainFrame {
title = "Predator and Prey Agent simulation"
val buttonExit = ...
1
vote
2answers
89 views
Discard all messages except the last one in a Scala actor
I have a SwingWorker actor which computes a plot for display from a parameters object it gets send; then draws the plot on the EDT thread. Some GUI elements can tweak parameters for this plot. When ...
1
vote
2answers
113 views
How do I update a Scala/Swing programmatically from an external class?
For example the following code shows a simple table
import java.awt.Dimension
import swing._
object SunsetTable extends SimpleSwingApplication {
var model = Array(List("BHP", 1).toArray)
lazy ...
1
vote
2answers
196 views
In scala.swing, how do I remove a component from a Container?
In scala.swing, I can add a component to a container like so:
new Frame {
contents += label
}
but sometimes I'd like to clear the contents of a container and replace them with new components. ...
1
vote
2answers
189 views
Multi-lined Label in Scala
Short question, hopefully simple solution:
I've got my own renderer for a ListView, nothing too fancy, it just connects a Label and and Icon. My questions is, so far, the Label ignores my "\n"s. How ...
1
vote
1answer
275 views
Scala Swing Components
I have a collection of ComboBox declared as below.
val cmbAll = for (i <- 0 to 4) yield new ComboBox(List("---", "Single", "Double"))
And I try to listen to one of it via
...
1
vote
1answer
161 views
Scala: Button in Table Cell does not “fire” Action
I've got a little Problem: I want to have Buttons in some of the cells of my Table. As rendering component I return a Button with the following code: (theres application specific and debugging code in ...
1
vote
1answer
309 views
Scala Swing Wait
//Main.scala
/* imports */
object Main extends SimpleSwingApplication {
lazy val ui = new TabbedPane {
/* contents */
}
def top = new MainFrame {
/* contents */
}
override def ...
0
votes
1answer
482 views
Changing Scala Swing ComboBox Items
I tried to implement a date selection using three ComboBox as shown below.
contents += new Label("Selected Date:")
val dayBox = new ComboBox(1 to 31)
contents += dayBox
val monthBox = new ...
-1
votes
1answer
185 views
how to access mongodb database in scala?
I would like to know how to access mongodb database from a scala swing application.
I am new to scala.I have created a database named mydb in mongodb and a collection named ...