Package com.vaadin.tests.tickets

Source Code of com.vaadin.tests.tickets.Ticket2406

package com.vaadin.tests.tickets;

import com.vaadin.server.LegacyApplication;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;

public class Ticket2406 extends LegacyApplication {

    private Window w;

    @Override
    public void init() {
        LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
        setMainWindow(w);
        // setTheme("tests-tickets");
        createUI((VerticalLayout) w.getContent());
    }

    private void createUI(VerticalLayout layout) {
        w = new Window("A sub window");
        w.setSizeUndefined();
        getMainWindow().addWindow(w);

        VerticalLayout l = new VerticalLayout();
        l.setSizeFull();
        w.setContent(l);

        Button b = new Button("Button 1");
        b.setSizeFull();
        b.addListener(new ClickListener() {

            @Override
            public void buttonClick(ClickEvent event) {
                w.setHeight("200px");
            }

        });
        l.addComponent(b);

        for (int i = 0; i < 5; i++) {
            b = new Button("Button number " + (i + 2));
            b.setSizeFull();
            l.addComponent(b);
        }
    }
}
TOP

Related Classes of com.vaadin.tests.tickets.Ticket2406

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.