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