summaryrefslogtreecommitdiff
path: root/src/swing/scala/swing/SequentialContainer.scala
blob: 5f32b08d252f3a85d774d373eba7acd383ca4a68 (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
25
26
27
28
29
30
31
32
33
34
35
36
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2007-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.swing

import scala.collection.mutable.Buffer

object SequentialContainer {
  /**
   * Utility trait for wrapping sequential containers.
   */
  trait Wrapper extends SequentialContainer with Container.Wrapper {
    override val contents: Buffer[Component] = new Content
    //def contents_=(c: Component*)  { contents.clear(); contents ++= c }
  }
}

/**
 * A container for which a sequential order of children makes sense, such as
 * flow panels, or menus. Its contents are mutable.
 */
trait SequentialContainer extends Container {
  /**
   * The mutable child components of this container. The order matters and
   * usually indicates the layout of the children.
   */
  override def contents: Buffer[Component]
  //def contents_=(c: Component*)
}