List of usage examples for com.vaadin.ui DragAndDropWrapper subclass-usage
From source file com.hivesys.dashboard.view.repository.DragAndDropBox.java
/** * * @author swoorup */ @StyleSheet("dragndropexample.css") public abstract class DragAndDropBox extends DragAndDropWrapper implements DropHandler {
From source file com.hybridbpm.ui.component.bpm.designer.ElementModelLayout.java
/** * * @author Marat Gubaidullin */ public class ElementModelLayout extends DragAndDropWrapper implements ClickListener {
From source file com.jorambarrez.DndNode.java
/** * @author Joram Barrez */ public class DndNode extends DragAndDropWrapper implements Node { private static final long serialVersionUID = 1L;
From source file info.magnolia.ui.admincentral.shellapp.favorites.AbstractFavoritesDragAndDropWrapper.java
/** * Abstract drag&drop wrapper for the favorites components. */ public abstract class AbstractFavoritesDragAndDropWrapper extends DragAndDropWrapper { private final Component wrappedComponent;
From source file org.escidoc.browser.ui.dnd.FilesDropBox.java
@SuppressWarnings("serial") class FilesDropBox extends DragAndDropWrapper implements DropHandler { private static final Logger LOG = LoggerFactory.getLogger(FilesDropBox.class); private static final int FILE_SIZE_IN_MEGABYTE = 20;
From source file org.opencms.ui.components.CmsWrappedHorizontalLayout.java
/** * Wrapper for horizontal layouts to be used as a drag and drop target.<p> */ public class CmsWrappedHorizontalLayout extends DragAndDropWrapper { /** The serial version id. */
From source file org.vaadin.alump.masonry.DnDMasonryLayout.java
/** * Adds DnD reordering features to MasonryLayout. DnDMasonryLayout inherits DragAndDropWrapper, * how ever this default implementation does not do any drop handling. If you want to handle dropping * on layout itself, set the DropHandler. */ public class DnDMasonryLayout extends DragAndDropWrapper {
From source file org.vaadin.alump.masonry.MasonryDnDWrapper.java
/**
* Adds DnD reordering features to MasonryLayout. MasonryDndWrapper inherits DragAndDropWrapper,
* how ever this default implementation does not do any drop handling. If you want to handle dropping
* on layout itself, set the DropHandler. If all you need is reordering by dragging, see MasonryDndLayout class.
* @see org.vaadin.alump.masonry.MasonryDnDLayout
*/
From source file ui.helper.ImageDropBox.java
/** * * @author lifetime */ public class ImageDropBox extends DragAndDropWrapper implements DropHandler {