class BorderPanel extends Panel with LayoutContainer

A container that arranges its children around a central component that takes most of the space. The other children are placed on one of four borders: north, east, south, west.

See also

javax.swing.BorderLayout

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BorderPanel
  2. LayoutContainer
  3. Panel
  4. Wrapper
  5. Container
  6. Component
  7. UIElement
  8. LazyPublisher
  9. Publisher
  10. Reactor
  11. Proxy
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BorderPanel()

Type Members

  1. type Constraints = BorderPanel.Position.Value

    The type of component constraints for this container.

    The type of component constraints for this container.

    Definition Classes
    BorderPanelLayoutContainer

Value Members

  1. def background: Color
    Definition Classes
    UIElement
  2. def background_=(c: Color): Unit
    Definition Classes
    UIElement
  3. def border: Border
    Definition Classes
    Component
  4. def border_=(b: Border): Unit
    Definition Classes
    Component
  5. def bounds: Rectangle
    Definition Classes
    UIElement
  6. def componentOrientation: ComponentOrientation
    Definition Classes
    UIElement
  7. def componentOrientation_=(x: ComponentOrientation): Unit
    Definition Classes
    UIElement
  8. def contents: Seq[Component]

    The child components of this container.

    The child components of this container.

    Definition Classes
    WrapperContainer
  9. def cursor: Cursor
    Definition Classes
    UIElement
  10. def cursor_=(c: Cursor): Unit
    Definition Classes
    UIElement
  11. def deafTo(ps: Publisher*): Unit

    Installed reaction won't receive events from the given publisher anylonger.

    Installed reaction won't receive events from the given publisher anylonger.

    Definition Classes
    Reactor
  12. def displayable: Boolean
    Definition Classes
    UIElement
  13. def enabled: Boolean
    Definition Classes
    Component
  14. def enabled_=(b: Boolean): Unit
    Definition Classes
    Component
  15. def equals(that: Any): Boolean
    Definition Classes
    Proxy → Any
  16. def focusable: Boolean
    Definition Classes
    Component
  17. def focusable_=(b: Boolean): Unit
    Definition Classes
    Component
  18. def font: Font
    Definition Classes
    UIElement
  19. def font_=(f: Font): Unit
    Definition Classes
    UIElement
  20. def foreground: Color
    Definition Classes
    UIElement
  21. def foreground_=(c: Color): Unit
    Definition Classes
    UIElement
  22. def hasFocus: Boolean
    Definition Classes
    Component
  23. def hashCode(): Int
    Definition Classes
    Proxy → Any
  24. def ignoreRepaint: Boolean
    Definition Classes
    UIElement
  25. def ignoreRepaint_=(b: Boolean): Unit
    Definition Classes
    UIElement
  26. var initP: JComponent
    Definition Classes
    Component
  27. def inputVerifier: (Component) ⇒ Boolean
    Definition Classes
    Component
  28. def inputVerifier_=(v: (Component) ⇒ Boolean): Unit
    Definition Classes
    Component
  29. def layout: Map[Component, Constraints]

    A map of components to the associated layout constraints.

    A map of components to the associated layout constraints. Any element in this map is automatically added to the contents of this panel. Therefore, specifying the layout of a component via

    layout(myComponent) = myConstraints

    also ensures that myComponent is properly added to this container.

    Definition Classes
    LayoutContainer
  30. def layoutManager: BorderLayout
  31. def listenTo(ps: Publisher*): Unit

    Listen to the given publisher as long as deafTo isn't called for them.

    Listen to the given publisher as long as deafTo isn't called for them.

    Definition Classes
    Reactor
  32. def locale: Locale
    Definition Classes
    UIElement
  33. def location: Point
    Definition Classes
    UIElement
  34. def locationOnScreen: Point
    Definition Classes
    UIElement
  35. def maximumSize: Dimension
    Definition Classes
    UIElement
  36. def maximumSize_=(x: Dimension): Unit
    Definition Classes
    UIElement
  37. def minimumSize: Dimension
    Definition Classes
    UIElement
  38. def minimumSize_=(x: Dimension): Unit
    Definition Classes
    UIElement
  39. def name: String
    Definition Classes
    Component
  40. def name_=(s: String): Unit
    Definition Classes
    Component
  41. def opaque: Boolean
    Definition Classes
    Component
  42. def opaque_=(b: Boolean): Unit
    Definition Classes
    Component
  43. def paint(g: Graphics2D): Unit
    Definition Classes
    Component
  44. lazy val peer: JPanel with SuperMixin

    The underlying Swing peer.

    The underlying Swing peer.

    Definition Classes
    BorderPanelPanelWrapperComponentUIElement
  45. def preferredSize: Dimension
    Definition Classes
    UIElement
  46. def preferredSize_=(x: Dimension): Unit
    Definition Classes
    UIElement
  47. def publish(e: Event): Unit

    Notify all registered reactions.

    Notify all registered reactions.

    Definition Classes
    Publisher
  48. val reactions: Reactions

    All reactions of this reactor.

    All reactions of this reactor.

    Definition Classes
    Reactor
  49. def repaint(rect: Rectangle): Unit
    Definition Classes
    UIElement
  50. def repaint(): Unit
    Definition Classes
    UIElement
  51. def requestFocus(): Unit
    Definition Classes
    Component
  52. def requestFocusInWindow(): Boolean
    Definition Classes
    Component
  53. def revalidate(): Unit
    Definition Classes
    Component
  54. def self: java.awt.Component
    Definition Classes
    UIElement → Proxy
  55. def showing: Boolean
    Definition Classes
    UIElement
  56. def size: Dimension
    Definition Classes
    UIElement
  57. def subscribe(listener: Reaction): Unit
    Definition Classes
    LazyPublisher → Publisher
  58. def toString(): String
    Definition Classes
    Component → Proxy → AnyRef → Any
  59. def toolkit: Toolkit
    Definition Classes
    UIElement
  60. def tooltip: String
    Definition Classes
    Component
  61. def tooltip_=(t: String): Unit
    Definition Classes
    Component
  62. def unsubscribe(listener: Reaction): Unit
    Definition Classes
    LazyPublisher → Publisher
  63. def validate(): Unit
    Definition Classes
    UIElement
  64. def visible: Boolean
    Definition Classes
    UIElement
  65. def visible_=(b: Boolean): Unit
    Definition Classes
    UIElement
  66. def xLayoutAlignment: Double

    Used by certain layout managers, e.g., BoxLayout or OverlayLayout to align components relative to each other.

    Used by certain layout managers, e.g., BoxLayout or OverlayLayout to align components relative to each other.

    Definition Classes
    Component
  67. def xLayoutAlignment_=(x: Double): Unit
    Definition Classes
    Component
  68. def yLayoutAlignment: Double
    Definition Classes
    Component
  69. def yLayoutAlignment_=(y: Double): Unit
    Definition Classes
    Component
  70. object keys extends Publisher
    Definition Classes
    Component
  71. object mouse

    Contains publishers for various mouse events.

    Contains publishers for various mouse events. They are separated for efficiency reasons.

    Definition Classes
    Component