use of org.talend.designer.abstractmap.ui.dnd.DraggingInfosPopup in project tdi-studio-se by Talend.
the class CompleteDropTargetStyledTextListener method dragLeave.
public void dragLeave(DropTargetEvent event) {
// System.out.println("\n>>dragLeave");
// System.out.println(event);
super.dragLeave(event);
UIManager uiManager = getUiManager();
DraggingInfosPopup draggingInfosPopup = uiManager.getDraggingInfosPopup();
draggingInfosPopup.setExpressionContext(false);
draggingInfosPopup.setInsertionEntryContext(false);
uiManager.setDragging(false);
}
use of org.talend.designer.abstractmap.ui.dnd.DraggingInfosPopup in project tdi-studio-se by Talend.
the class DefaultDropTargetListener method setPopupVisible.
private void setPopupVisible(boolean visible) {
AbstractUIManager uiManager = mapperManager.getUiManager();
DraggingInfosPopup draggingInfosPopup = uiManager.getDraggingInfosPopup();
draggingInfosPopup.setVisible(visible);
}
Aggregations