summaryrefslogtreecommitdiff
path: root/src/graphyx/gui/AboutHelpFrame.scala
blob: 4dba9f14f1eb5c61be198b92131dcb05eaffa461 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package graphyx.gui

import graphyx.actors._
import graphyx.gui._
import scala.swing._
import scala.swing.event._

class AboutHelpFrame extends Frame {
  title = "About"
  contents = new TextArea(
     """|Graphyx, testing and visualization tool for SiMS.
     	|
     	|copyright (c) 2009 Jakob Odersky
     	|SiMS and Graphyx are made available under the MIT License
     	|
     	|http://sourceforge.net/projects/simplemechanics/""".stripMargin
  ) {editable = false}
}

object AboutHelpFrame {
  val frame = new AboutHelpFrame
}