diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2222.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2222.java | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2222.java b/uitest/src/com/vaadin/tests/tickets/Ticket2222.java new file mode 100644 index 0000000000..14024fda8b --- /dev/null +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2222.java @@ -0,0 +1,64 @@ +package com.vaadin.tests.tickets; + +import com.vaadin.Application; +import com.vaadin.ui.AbstractOrderedLayout; +import com.vaadin.ui.GridLayout; +import com.vaadin.ui.HorizontalLayout; +import com.vaadin.ui.Label; +import com.vaadin.ui.UI.LegacyWindow; +import com.vaadin.ui.VerticalLayout; + +public class Ticket2222 extends Application.LegacyApplication { + + @Override + public void init() { + LegacyWindow w = new LegacyWindow(getClass().getSimpleName()); + setMainWindow(w); + setTheme("tests-tickets"); + createUI((AbstractOrderedLayout) w.getContent()); + } + + private void createUI(AbstractOrderedLayout layout) { + HorizontalLayout horiz = new HorizontalLayout(); + horiz.setSpacing(true); + horiz.setMargin(true); + horiz.setStyleName("ticket2222"); + + horiz.addComponent(new Label("Horiz spacing: 60px;")); + horiz.addComponent(new Label("Margin-left: 40px")); + horiz.addComponent(new Label("Margin-top: 100px;")); + horiz.addComponent(new Label("Margin-right: 20px;")); + horiz.addComponent(new Label("Margin-bottom: 30px;")); + horiz.addStyleName("borders"); + + VerticalLayout vert = new VerticalLayout(); + vert.setSizeUndefined(); + vert.setSpacing(true); + vert.setMargin(false); + vert.setStyleName("ticket2222"); + vert.addComponent(new Label("Vert spacing: 50px;")); + vert.addComponent(new Label("No margins")); + vert.addComponent(new Label("label 3")); + vert.addStyleName("borders"); + + GridLayout gl = new GridLayout(3, 2); + gl.setStyleName("borders"); + gl.setSpacing(true); + gl.setMargin(true); + gl.setStyleName("ticket2222"); + gl.addComponent(new Label("Vert spacing: 50px; horiz 20px;")); + gl.addComponent(new Label("Margin-left: 40px")); + gl.addComponent(new Label("Margin-top: 100px;")); + gl.addComponent(new Label("Margin-right: 20px;")); + gl.addComponent(new Label("Margin-bottom: 30px;")); + gl.addComponent(new Label("label 3")); + gl.addStyleName("borders"); + + layout.addComponent(horiz); + layout.addComponent(new Label(" ")); + layout.addComponent(vert); + layout.addComponent(new Label(" ")); + layout.addComponent(gl); + } + +} |