summaryrefslogtreecommitdiff
path: root/src/graphyx/gui/MenuPanel.scala
blob: d3196fed2b80a44e3109495dd0d1321aef9319bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package graphyx.gui

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

class MenuPanel(container: Container) extends BoxPanel(Orientation.Horizontal) {
  val mnu = new MenuBar
  mnu.contents += new MenuHelp
  contents  += mnu
}