I have a Jface treeviewer and GEF GraphicalEditorWithFlyoutPalette.
In GraphicalEditorWithFlyoutPalette i draw my model(GraphicalEditor is displayed in WorkbenchPage editor ).
In TreeViewer's createPartControl I register a listener to listen for selections in my graphical model, so the appropriate node in treeview is selected.
getSite().getPage().addPostSelectionListener(new ISelectionListener() {
public void selectionChanged(IWorkbenchPart part, ISelection selection) {
if (selection instanceof IStructuredSelection) {
}
}
});
(every selection in gef automatically sends an event, so i can catch it)
I want the same to happen in opposite directions.
How can I do it?
This didn't catch any selection events:
GraphicalViewer viewer = getGraphicalViewer();
viewer.addSelectionChangedListener(new ISelectionChangedListener() {
public void selectionChanged(SelectionChangedEvent event) {
}
});