Tooltip tooltip = new Tooltip(tooltipText);
// TODO Ensure that the tooltip stays on screen
Point mouseLocation = component.getDisplay().getMouseLocation();
tooltip.setLocation(mouseLocation.x + 16, mouseLocation.y);
tooltip.open(component.getWindow());
}
}
}
private Component component = null;