List of usage examples for com.vaadin.ui AbstractLayout subclass-usage
From source file com.zipsoft.widgets.AbstractLazyLayout.java
public abstract class AbstractLazyLayout extends AbstractLayout implements SelectiveRenderer { private static final long serialVersionUID = -5692267088590594285L; /** * Custom layout slots containing the components. */
From source file de.bonprix.gridstacklayout.GridStackLayout.java
/**
* A vaadin layout that arranged the added components in draggable and resizable widgets inside a grid.
*
* @author Sebastian Funck
*
*/
From source file info.magnolia.ui.vaadin.form.FormSection.java
/** * Form layout server side implementation. */ public class FormSection extends AbstractLayout { private final List<Component> components = new LinkedList<Component>();
From source file org.vaadin.alump.fancylayouts.FancyCssLayout.java
/** * FancyCssLayout is similiar to Vaadin CssLayout. But it also has * fancyRemoveComponent() which will add transition to removal. Also when Items * are added with addComponent() those will be added with transition. */ @SuppressWarnings("serial")
From source file org.vaadin.alump.fancylayouts.FancyPanel.java
/** * FancyPanel works like Vaadin Panel but it adds transition when content inside * it is changed. */ @SuppressWarnings("serial") public class FancyPanel extends AbstractLayout implements ComponentContainer.ComponentAttachListener,
From source file org.vaadin.alump.gridstack.GridStackLayout.java
/** * Vaadin layout using gridstack.js library to layout components * * gridstack.js by Pavel Reznikov: http://troolee.github.io/gridstack.js/ */ @JavaScript({ "jquery-1.11.3.min.js", "jquery-ui.min.js", "lodash.min.js", "gridstack.js" })
From source file org.vaadin.alump.masonry.MasonryLayout.java
/** Layout that uses Masonry JavaScript library to layout components * Masonry by David DeSandro: http://masonry.desandro.com/ */ @JavaScript({ "masonry.pkgd.min.js" }) public class MasonryLayout extends AbstractLayout implements LayoutEvents.LayoutClickNotifier {