use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.DDAbsoluteLayout 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.DDAbsoluteLayout 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.DDAbsoluteLayout in project cuba by cuba-platform.
the class DefaultAbsoluteLayoutDropHandler method handleComponentReordering.
/**
* Called when a component changed location within the layout
*
* @param event
* The drag and drop event
*/
@Override
protected void handleComponentReordering(DragAndDropEvent event) {
AbsoluteLayoutTargetDetails details = (AbsoluteLayoutTargetDetails) event.getTargetDetails();
DDAbsoluteLayout layout = (DDAbsoluteLayout) details.getTarget();
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
Component component = transferable.getComponent();
// Get top-left pixel position
int leftPixelPosition = details.getRelativeLeft();
int topPixelPosition = details.getRelativeTop();
ComponentPosition position = layout.getPosition(component);
position.setLeft((float) leftPixelPosition, Sizeable.UNITS_PIXELS);
position.setTop((float) topPixelPosition, Sizeable.UNITS_PIXELS);
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.DDAbsoluteLayout in project cuba by cuba-platform.
the class DefaultAbsoluteLayoutDropHandler method handleHTML5Drop.
@Override
protected void handleHTML5Drop(DragAndDropEvent event) {
AbsoluteLayoutTargetDetails details = (AbsoluteLayoutTargetDetails) event.getTargetDetails();
DDAbsoluteLayout layout = (DDAbsoluteLayout) details.getTarget();
int leftPixelPosition = details.getRelativeLeft();
int topPixelPosition = details.getRelativeTop();
layout.addComponent(resolveComponentFromHTML5Drop(event), "left:" + leftPixelPosition + "px;top:" + topPixelPosition + "px");
}
use of com.haulmont.cuba.web.widgets.addons.dragdroplayouts.DDAbsoluteLayout in project cuba by cuba-platform.
the class DefaultAbsoluteLayoutDropHandler method handleDropFromLayout.
/**
* Handle a drop from another layout
*
* @param event
* The drag and drop event
*/
@Override
protected void handleDropFromLayout(DragAndDropEvent event) {
AbsoluteLayoutTargetDetails details = (AbsoluteLayoutTargetDetails) event.getTargetDetails();
LayoutBoundTransferable transferable = (LayoutBoundTransferable) event.getTransferable();
Component component = transferable.getComponent();
Component source = event.getTransferable().getSourceComponent();
DDAbsoluteLayout layout = (DDAbsoluteLayout) details.getTarget();
int leftPixelPosition = details.getRelativeLeft();
int topPixelPosition = details.getRelativeTop();
// Check that we are not dragging an outer layout into an
// inner
// layout
Component parent = source.getParent();
while (parent != null) {
parent = parent.getParent();
}
// remove component from source
if (source instanceof ComponentContainer) {
((ComponentContainer) source).removeComponent(component);
} else if (source instanceof SingleComponentContainer) {
((SingleComponentContainer) source).setContent(null);
}
// Add component to absolute layout
layout.addComponent(component, "left:" + leftPixelPosition + "px;top:" + topPixelPosition + "px");
}
Aggregations