Package tools.aqua.bgw.visual

Types

Link copied to clipboard
open class ColorVisual(color: Color) : SingleLayerVisual

A solid color visual. Displays a rectangle filled with the given color.

Link copied to clipboard
open class CompoundVisual(children: List<SingleLayerVisual>) : Visual

A compound visual containing stacked SingleLayerVisuals.

Link copied to clipboard
open class ImageVisual(    image: BufferedImage,     width: Int = -1,     height: Int = -1,     offsetX: Int = 0,     offsetY: Int = 0,     val path: String = "") : SingleLayerVisual

Visual showing an Image.

Link copied to clipboard
sealed class SingleLayerVisual : Visual

Baseclass for single layer visuals.

Link copied to clipboard
open class TextVisual(    text: String,     font: Font = Font(),     alignment: Alignment = Alignment.CENTER,     offsetX: Number = 0,     offsetY: Number = 0) : SingleLayerVisual

A visual displaying text.

Link copied to clipboard
sealed class Visual : Observable

Visual baseclass.