use of com.intellij.designer.designSurface.tools.InputTool in project intellij-community by JetBrains.
the class DecorationLayer method findTargetTool.
@Nullable
public InputTool findTargetTool(int x, int y) {
List<RadComponent> selection = myArea.getSelection();
for (RadComponent component : selection) {
ComponentDecorator decorator = getDecorator(component, selection);
InputTool tracker = decorator.findTargetTool(this, component, x, y);
if (tracker != null) {
return tracker;
}
}
return null;
}
Aggregations