Tooltip.enterArea

void enterArea(WidgetPtr w, int x, int y, int width, int height, const(char) * tip) nothrow @nogc

Manually enters a tooltip area for a widget.

This can be used to show a tooltip for a specific region within a widget.

Parameters

wWidget pointer
xX position of the area
yY position of the area
widthWidth of the area
heightHeight of the area
tipTooltip text
void enterArea(WidgetPtr w, int x, int y, int width, int height, string tip)

ditto