summaryrefslogtreecommitdiff
path: root/src/graphyx/gui/AboutHelpFrame.scala
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2009-11-05 21:02:40 +0000
committerJakob Odersky <jodersky@gmail.com>2009-11-05 21:02:40 +0000
commit9d20024aa35cd7f923ebfc1ed9a2ffbf2731da70 (patch)
tree4e97fadc391b310ee1cc7156fda590dff414b2c3 /src/graphyx/gui/AboutHelpFrame.scala
parent034bc5930ea6f01745f64a6070711d899d2c27ae (diff)
downloadsims-9d20024aa35cd7f923ebfc1ed9a2ffbf2731da70.tar.gz
sims-9d20024aa35cd7f923ebfc1ed9a2ffbf2731da70.tar.bz2
sims-9d20024aa35cd7f923ebfc1ed9a2ffbf2731da70.zip
Initial import.
Diffstat (limited to 'src/graphyx/gui/AboutHelpFrame.scala')
-rw-r--r--src/graphyx/gui/AboutHelpFrame.scala22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/graphyx/gui/AboutHelpFrame.scala b/src/graphyx/gui/AboutHelpFrame.scala
new file mode 100644
index 0000000..5afa58e
--- /dev/null
+++ b/src/graphyx/gui/AboutHelpFrame.scala
@@ -0,0 +1,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
+ )
+}
+
+object AboutHelpFrame {
+ val frame = new AboutHelpFrame
+}