Window

(UI 0.9.9)

Introduction

Represents a UI Window

Class synopsis

class UI\Window extends UI\Control {
/* Properties */
protected $controls;
/* Constructor */
public __construct(string $title, Size $size, bool $menu = false)
/* Methods */
public add(UI\Control $control)
public error(string $title, string $msg)
public getSize(): UI\Size
public getTitle(): string
public hasBorders(): bool
public hasMargin(): bool
public isFullScreen(): bool
public msg(string $title, string $msg)
protected onClosing(): int
public open(): string
public save(): string
public setBorders(bool $borders)
public setFullScreen(bool $full)
public setMargin(bool $margin)
public setSize(UI\Size $size)
public setTitle(string $title)
/* Inherited methods */
public UI\Control::isEnabled(): bool
public UI\Control::isVisible(): bool
}

Properties

controls

Contains controls, should not be manipulated directly

Table of Contents

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top