use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable in project cuba by cuba-platform.
the class AbstractDefaultLayoutDropHandler method handleDropFromAbsoluteParentLayout.
/**
* Handles a drop by a component which has an absolute layout as parent. In
* this case the component is moved.
*
* @param event
* The drag and drop event
*/
protected void handleDropFromAbsoluteParentLayout(DragAndDropEvent event) {
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
TargetDetails details = event.getTargetDetails();
MouseEventDetails mouseDown = transferable.getMouseDownEvent();
MouseEventDetails mouseUp = MouseEventDetails.deSerialize((String) details.getData(Constants.DROP_DETAIL_MOUSE_EVENT));
int movex = mouseUp.getClientX() - mouseDown.getClientX();
int movey = mouseUp.getClientY() - mouseDown.getClientY();
Component comp = transferable.getComponent();
DDAbsoluteLayout parent = (DDAbsoluteLayout) comp.getParent();
ComponentPosition position = parent.getPosition(comp);
if (position.getLeftValue() != null) {
float x = position.getLeftValue() + movex;
position.setLeft(x, Sizeable.UNITS_PIXELS);
}
if (position.getRightValue() != null) {
float x = position.getRightValue() - movex;
position.setRight(x, Sizeable.UNITS_PIXELS);
}
if (position.getTopValue() != null) {
float y = position.getTopValue() + movey;
position.setTop(y, Sizeable.UNITS_PIXELS);
}
if (position.getBottomValue() != null) {
float y = position.getBottomValue() - movey;
position.setBottom(y, Sizeable.UNITS_PIXELS);
}
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable in project cuba by cuba-platform.
the class AbstractDefaultLayoutDropHandler method drop.
public void drop(DragAndDropEvent event) {
// Get information about the drop
TargetDetails details = event.getTargetDetails();
DropTarget layout = details.getTarget();
Component source = event.getTransferable().getSourceComponent();
if (event.getTransferable().getData("html5Data") != null) {
handleHTML5Drop(event);
} else if (layout == source) {
handleComponentReordering(event);
} else if (event.getTransferable() instanceof LayoutBoundTransferable) {
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
Component comp = transferable.getComponent();
if (comp == layout) {
if (comp.getParent() instanceof DDAbsoluteLayout) {
handleDropFromAbsoluteParentLayout(event);
}
} else {
handleDropFromLayout(event);
}
}
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable in project cuba by cuba-platform.
the class DefaultAccordionDropHandler method handleComponentReordering.
/**
* Called when tabs are being rearranged
*
* @param event
* A drag and drop event
*/
@Override
protected void handleComponentReordering(DragAndDropEvent event) {
AccordionTargetDetails details = (AccordionTargetDetails) event.getTargetDetails();
DDAccordion acc = (DDAccordion) details.getTarget();
VerticalDropLocation location = details.getDropLocation();
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
Component c = transferable.getComponent();
int idx = details.getOverIndex();
Tab tab = acc.getTab(c);
if (location == VerticalDropLocation.TOP) {
// Left of previous tab
int originalIndex = acc.getTabPosition(tab);
if (originalIndex > idx) {
acc.setTabPosition(tab, idx);
} else if (idx - 1 >= 0) {
acc.setTabPosition(tab, idx - 1);
}
} else if (location == VerticalDropLocation.BOTTOM) {
// Right of previous tab
int originalIndex = acc.getTabPosition(tab);
if (originalIndex > idx) {
acc.setTabPosition(tab, idx + 1);
} else {
acc.setTabPosition(tab, idx);
}
}
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable in project cuba by cuba-platform.
the class DefaultAccordionDropHandler method handleDropFromLayout.
/**
* Adds a new tab from the drop
*
* @param event
* The drag and drop event
*/
@Override
protected void handleDropFromLayout(DragAndDropEvent event) {
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
// Get the target details
AccordionTargetDetails details = (AccordionTargetDetails) event.getTargetDetails();
DDAccordion acc = (DDAccordion) details.getTarget();
Component c = transferable.getComponent();
int idx = details.getOverIndex();
VerticalDropLocation location = details.getDropLocation();
// Detach from old source
Component source = transferable.getSourceComponent();
if (source instanceof ComponentContainer) {
((ComponentContainer) source).removeComponent(c);
} else if (source instanceof SingleComponentContainer) {
((SingleComponentContainer) source).setContent(null);
}
if (location == VerticalDropLocation.TOP) {
acc.addTab(c, idx);
} else if (location == VerticalDropLocation.BOTTOM) {
acc.addTab(c, idx + 1);
} else {
acc.addTab(c);
}
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable in project cuba by cuba-platform.
the class DefaultVerticalLayoutDropHandler method handleComponentReordering.
/**
* Called when a component changed location within the layout
*
* @param event
* The drag and drop event
*/
@Override
protected void handleComponentReordering(DragAndDropEvent event) {
// Component re-ordering
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
VerticalLayoutTargetDetails details = (VerticalLayoutTargetDetails) event.getTargetDetails();
AbstractOrderedLayout layout = (AbstractOrderedLayout) details.getTarget();
Component comp = transferable.getComponent();
int idx = details.getOverIndex();
int oldIndex = layout.getComponentIndex(comp);
if (idx == oldIndex) {
// Index did not change
return;
}
// Detach
layout.removeComponent(comp);
// Account for detachment if new index is bigger then old index
if (idx > oldIndex) {
idx--;
}
// Increase index if component is dropped after or above a previous
// component
VerticalDropLocation loc = details.getDropLocation();
if (loc == VerticalDropLocation.MIDDLE || loc == VerticalDropLocation.BOTTOM) {
idx++;
}
// Add component
if (idx >= 0) {
layout.addComponent(comp, idx);
} else {
layout.addComponent(comp);
}
// Add component alignment if given
if (dropAlignment != null) {
layout.setComponentAlignment(comp, dropAlignment);
}
}
Aggregations