scala.swing.Oriented.scala Maven / Gradle / Ivy
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2007-2010, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
// $Id: Oriented.scala 20154 2009-12-16 16:07:30Z cunei $
package scala.swing
object Oriented {
trait Wrapper extends Oriented {
def peer: OrientedMixin
/*
* Need to revert to structural type, since scroll bars are oriented
* and these are created by scroll panes. Shouldn't be a bootleneck.
*/
protected type OrientedMixin = {
def getOrientation(): Int
def setOrientation(n: Int)
}
def orientation: Orientation.Value = Orientation(peer.getOrientation)
}
}
/**
* Something that can have an orientation.
*/
trait Oriented {
def orientation: Orientation.Value
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy