summaryrefslogtreecommitdiff
path: root/docs/examples/swing/ButtonApp.scala
blob: 96799b24f29abcafccbfb15b1ef307b7b908cbb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package examples.swing

import java.awt.Dimension

import swing._
import swing.event._

object ButtonApp extends SimpleSwingApplication {
  def top = new MainFrame {
    title = "My Frame"
    contents = new GridPanel(2, 2) {
      hGap = 3
      vGap = 3
      contents += new Button {
        text = "Press Me!"
        reactions += {
          case ButtonClicked(_) => text = "Hello Scala"
        }
      }
    }
    size = new Dimension(300, 80)
  }
}