diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2040.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2040.java | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2040.java b/uitest/src/com/vaadin/tests/tickets/Ticket2040.java new file mode 100644 index 0000000000..a7ca7b179f --- /dev/null +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2040.java @@ -0,0 +1,87 @@ +package com.vaadin.tests.tickets; + +import com.vaadin.ui.Accordion; +import com.vaadin.ui.Label; +import com.vaadin.ui.Layout.MarginHandler; +import com.vaadin.ui.UI.LegacyWindow; +import com.vaadin.ui.TextArea; +import com.vaadin.ui.TextField; + +public class Ticket2040 extends com.vaadin.Application.LegacyApplication { + + TextField f = new TextField(); + + @Override + public void init() { + LegacyWindow main = new LegacyWindow(); + setMainWindow(main); + + main.getContent().setSizeFull(); + ((MarginHandler) main.getContent()).setMargin(true); + + setTheme("tests-tickets"); + + Accordion ts; + + ts = new Accordion(); + ts.setSizeFull(); + ts.setWidth("300px"); + + TextArea l = new TextArea("DSFS"); + l.setRows(2); + l.setStyleName("red"); + l.setSizeFull(); + ts.addTab(l, "100% h component", null); + + Label testContent = new Label( + "TabSheet by default uses caption, icon, errors etc. from Components. "); + + testContent.setCaption("Introduction to test"); + + ts.addTab(testContent); + + // main.addComponent(ts); + + ts = new Accordion(); + ts.setSizeFull(); + ts.setHeight("200px"); + ts.setWidth("300px"); + + l = new TextArea("DSFS"); + l.setRows(2); + l.setStyleName("red"); + l.setSizeFull(); + ts.addTab(l, "200px h component", null); + + testContent = new Label( + "TabSheet by default uses caption, icon, errors etc. from Components. "); + + testContent.setCaption("Introduction to test"); + + ts.addTab(testContent); + + main.addComponent(ts); + + ts = new Accordion(); + ts.setSizeFull(); + ts.setHeight("50%"); + ts.setWidth("300px"); + + l = new TextArea("DSFS"); + l.setRows(2); + l.setStyleName("red"); + l.setSizeFull(); + ts.addTab(l, "50% h component", null); + + testContent = new Label( + "TabSheet by default uses caption, icon, errors etc. from Components. "); + + testContent.setCaption("Introduction to test"); + + ts.addTab(testContent); + + // main.addComponent(ts); + + } + +}
\ No newline at end of file |