Component

A component defines something that can be drawn, handle events, and takes up a space on the screen

abstract
class Component : EventHandler {}

Constructors

this
this(Display container)

It may be useful for a component to have access to it's containing display

Members

Variables

container
Display container;

The display that contains this component

Meta