scala.swing
RichWindow
trait
RichWindow extends Window
Inherits
- Window
- RootPanel
- Container
- UIElement
- LazyPublisher
- Publisher
- Reactor
- Proxy
- AnyRef
- Any
Value Members
-
def
background: Color
-
def
background_=(c: Color): Unit
-
def
bounds: Rectangle
-
def
centerOnScreen(): Unit
-
def
close(): Unit
-
def
closeOperation(): Unit
-
-
def
contents_=(c: Component): Unit
-
def
cursor: Cursor
-
def
cursor_=(c: Cursor): Unit
-
def
deafTo(ps: Publisher*): Unit
-
-
def
defaultButton_=(b: Option[Button]): Unit
-
def
defaultButton_=(b: Button): Unit
-
def
displayable: Boolean
-
def
dispose(): Unit
-
def
equals(that: Any): Boolean
-
def
font: Font
-
def
font_=(f: Font): Unit
-
def
foreground: Color
-
def
foreground_=(c: Color): Unit
-
def
hashCode(): Int
-
def
ignoreRepaint: Boolean
-
def
ignoreRepaint_=(b: Boolean): Unit
-
def
listenTo(ps: Publisher*): Unit
-
def
locale: Locale
-
def
location: Point
-
def
locationOnScreen: Point
-
def
location_=(p: Point): Unit
-
def
maximumSize: Dimension
-
def
maximumSize_=(x: Dimension): Unit
-
-
def
menuBar_=(m: MenuBar): Unit
-
def
minimumSize: Dimension
-
def
minimumSize_=(x: Dimension): Unit
-
def
onFirstSubscribe(): Unit
-
def
onLastUnsubscribe(): Unit
-
def
open(): Unit
-
-
-
-
def
preferredSize: Dimension
-
def
preferredSize_=(xy: (Int, Int)): Unit
-
def
preferredSize_=(x: Dimension): Unit
-
def
publish(e: Event): Unit
-
-
def
repaint(rect: Rectangle): Unit
-
def
repaint(): Unit
-
def
resizable: Boolean
-
def
resizable_=(b: Boolean): Unit
-
def
self: Component
-
def
setLocationRelativeTo(c: UIElement): Unit
-
def
showing: Boolean
-
def
size: Dimension
-
def
size_=(xy: (Int, Int)): Unit
-
def
size_=(dim: Dimension): Unit
-
-
def
title: String
-
def
title_=(s: String): Unit
-
def
toString(): String
-
def
toolkit: Toolkit
-
def
unsubscribe(listener: PartialFunction[Event, Unit]): Unit
-
def
visible: Boolean
-
def
visible_=(b: Boolean): Unit
A window that adds some functionality to the plain Window class and serves as the common base class for frames and dialogs.
Implementation note: this class is sealed since we need to know that a rich window is either a dialog or a frame at some point.