PHP Conference Japan 2024

Area

(UI 0.9.9)

介绍

Area 代表一个可以用于绘图以及响应鼠标和键盘事件的画布。

类概要

class UI\Area extends UI\Control {
/* 常量 */
const int Ctrl;
const int Alt;
const int Shift;
const int Super;
const int Down;
const int Up;
/* 方法 */
protected onDraw(
    UI\Draw\Pen $pen,
    UI\Size $areaSize,
    UI\Point $clipPoint,
    UI\Size $clipSize
)
protected onKey(string $key, int $ext, int $flags)
protected onMouse(UI\Point $areaPoint, UI\Size $areaSize, int $flags)
public redraw()
public scrollTo(UI\Point $point, UI\Size $size)
public setSize(UI\Size $size)
/* 继承的方法 */
}

预定义常量

UI\Area::Ctrl
CTRL键处于活动状态时,应将其设置为传递给键和鼠标事件的修饰符。
UI\Area::Alt
ALT键处于活动状态时,应将其设置为传递给键和鼠标事件的修饰符。
UI\Area::Shift
SHIFT键处于活动状态时,应将其设置为传递给键和鼠标事件的修饰符。
UI\Area::Super

UI\Area::Down

应将其设置为传递给键和鼠标事件的修饰符。

UI\Area::Up

应将其设置为传递给键和鼠标事件的修饰符。

目录

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top