summaryrefslogtreecommitdiff
path: root/src/main/scala/graphyx/gui/AboutHelpFrame.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/graphyx/gui/AboutHelpFrame.scala')
-rw-r--r--src/main/scala/graphyx/gui/AboutHelpFrame.scala24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/scala/graphyx/gui/AboutHelpFrame.scala b/src/main/scala/graphyx/gui/AboutHelpFrame.scala
new file mode 100644
index 0000000..0bb3c36
--- /dev/null
+++ b/src/main/scala/graphyx/gui/AboutHelpFrame.scala
@@ -0,0 +1,24 @@
+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
+ |
+ |https://github.com/jodersky/sims
+ |
+ |Version 1.2""".stripMargin
+ ) {editable = false}
+}
+
+object AboutHelpFrame {
+ val frame = new AboutHelpFrame
+}