int height = ga.getHeight();
if (mX > x && mX < x + width && mY > y && mY < y + height) {
int relativeX = mX - x;
int relativeY = mY - y;
ILocationInfo locationInfo = Graphiti.getLayoutService().getLocationInfo((Shape) pe, relativeX, relativeY);
context.setInnerPictogramElement(locationInfo.getShape());
context.setInnerGraphicsAlgorithm(locationInfo.getGraphicsAlgorithm());
}
}
}
}