I have an Eclipse GEF editor (started with the Shapes example) that includes a digram edit part (extends AbstractGraphicalEditPart). I'm implementing copy n paste of objects from editor instance to editor instance.
In the paste action (which extends SelectionAction and implements ISelectionChangedListener), is it possible to determine the point of selection?
The 'paste' action is only enabled after someone clicks in an open area of the diagram figure. The paste action receives a 'selectionChanged(SelectionChangedEvent event)' callback but I can't figure out from the event.source where the user clicked....
Any clues?