summaryrefslogtreecommitdiff
path: root/src/swing/scala/swing/Orientable.scala
blob: a73bafb9d39ad9126db11adb3b6186ad47c2aa0a (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
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2007-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.swing

object Orientable {
  trait Wrapper extends Oriented.Wrapper with Orientable {
    def orientation_=(o: Orientation.Value) { peer.setOrientation(o.id) }
  }
}

/**
 * An <code>Oriented</code> whose orientation can be changed.
 */
trait Orientable extends Oriented {
  def orientation_=(o: Orientation.Value)
}