summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/LayoutDemo.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
committerArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
commit6a3c715dae922edd723c9423b4308d5d7948b74e (patch)
tree46a007274681a9803afccf135ace5554f3e01e3a /src/com/vaadin/tests/LayoutDemo.java
parent931d75fef69deb9b738fad97001cf5621de9f43e (diff)
downloadvaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.tar.gz
vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.zip
Split demo and tests files to own source folders, for #3298
svn changeset:9390/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/tests/LayoutDemo.java')
-rw-r--r--src/com/vaadin/tests/LayoutDemo.java149
1 files changed, 0 insertions, 149 deletions
diff --git a/src/com/vaadin/tests/LayoutDemo.java b/src/com/vaadin/tests/LayoutDemo.java
deleted file mode 100644
index cdeeebfa37..0000000000
--- a/src/com/vaadin/tests/LayoutDemo.java
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
-@ITMillApache2LicenseForJavaFiles@
- */
-
-package com.vaadin.tests;
-
-import com.vaadin.terminal.ClassResource;
-import com.vaadin.ui.Component;
-import com.vaadin.ui.Embedded;
-import com.vaadin.ui.GridLayout;
-import com.vaadin.ui.Label;
-import com.vaadin.ui.Layout;
-import com.vaadin.ui.OrderedLayout;
-import com.vaadin.ui.Panel;
-import com.vaadin.ui.TabSheet;
-import com.vaadin.ui.Window;
-
-/**
- * This example demonstrates layouts. Layouts are populated with sample Vaadin
- * UI components.
- *
- * @author IT Mill Ltd.
- * @since 4.0.0
- *
- */
-public class LayoutDemo extends com.vaadin.Application {
-
- /**
- * Initialize Application. Demo components are added to main window.
- */
- @Override
- public void init() {
- final Window mainWindow = new Window("Layout demo");
- setMainWindow(mainWindow);
-
- //
- // Create horizontal ordered layout
- //
- final OrderedLayout layoutA = new OrderedLayout(
- OrderedLayout.ORIENTATION_HORIZONTAL);
- // Add 4 panels
- fillLayout(layoutA, 4);
-
- //
- // Create vertical ordered layout
- //
- final OrderedLayout layoutB = new OrderedLayout(
- OrderedLayout.ORIENTATION_VERTICAL);
- // Add 4 panels
- fillLayout(layoutB, 4);
-
- //
- // Create grid layout
- //
- final GridLayout layoutG = new GridLayout(4, 4);
- // Add 16 panels components
- fillLayout(layoutG, 16);
-
- //
- // Create grid layout
- //
- final GridLayout layoutG2 = new GridLayout(4, 4);
- // Add 4 panels with absolute coordinates (diagonally)
- layoutG2.addComponent(getExampleComponent("x=0, y=0"), 0, 0);
- layoutG2.addComponent(getExampleComponent("x=1, y=1"), 1, 1);
- layoutG2.addComponent(getExampleComponent("x=2, y=2"), 2, 2);
- layoutG2.addComponent(getExampleComponent("x=3, y=3"), 3, 3);
- // Add 4 pictures with absolute coordinates (diagonally)
- layoutG2.addComponent(getExamplePicture("x=3, y=0"), 3, 0);
- layoutG2.addComponent(getExamplePicture("x=2, y=1"), 2, 1);
- layoutG2.addComponent(getExamplePicture("x=1, y=2"), 1, 2);
- layoutG2.addComponent(getExamplePicture("x=0, y=3"), 0, 3);
-
- //
- // Create TabSheet
- //
- final TabSheet tabsheet = new TabSheet();
- tabsheet
- .setCaption("Tabsheet, above layouts are added to this component");
- tabsheet.addTab(layoutA, "Horizontal ordered layout", null);
- tabsheet.addTab(layoutB, "Vertical ordered layout", null);
- tabsheet.addTab(layoutG, "First grid layout", null);
- tabsheet.addTab(layoutG2, "Second grid layout", null);
-
- //
- // Add demo layouts to main window
- //
- mainWindow.addComponent(new Label(
- "<h3>Horizontal ordered layout</h3>Added four components.",
- Label.CONTENT_XHTML));
- mainWindow.addComponent(layoutA);
- mainWindow.addComponent(new Label(
- "<br /><h3>Vertical ordered layout</h3>Added four components.",
- Label.CONTENT_XHTML));
- mainWindow.addComponent(layoutB);
- mainWindow.addComponent(new Label(
- "<br /><h3>Grid Layout (4 x 4)</h3>Added 16 components.",
- Label.CONTENT_XHTML));
- mainWindow.addComponent(layoutG);
- mainWindow
- .addComponent(new Label("<br /><h3>Grid Layout (4 x 4)</h3>"
- + "Added four panels and four embedded components "
- + "diagonally with absolute coordinates.",
- Label.CONTENT_XHTML));
- mainWindow.addComponent(layoutG2);
- mainWindow.addComponent(new Label(
- "<br /><h3>TabSheet</h3>Added above layouts as tabs.",
- Label.CONTENT_XHTML));
- mainWindow.addComponent(tabsheet);
-
- }
-
- private Component getExamplePicture(String caption) {
- // loads image from package com.vaadin.demo
- final ClassResource cr = new ClassResource("m-bullet-blue.gif", this);
- final Embedded em = new Embedded("Embedded " + caption, cr);
- em.setWidth(170);
- return em;
- }
-
- private Component getExampleComponent(String caption) {
- final Panel panel = new Panel();
- panel.setCaption("Panel component " + caption);
- panel
- .addComponent(new Label(
- "Panel is a container for other components, by default it draws a frame around it's "
- + "extremities and may have a caption to clarify the nature of the contained components' purpose."
- + " Panel contains an layout where the actual contained components are added, "
- + "this layout may be switched on the fly.",
- Label.CONTENT_XHTML));
- panel.setWidth(222);
- return panel;
- }
-
- /**
- * Add multiple demo component to given layout.
- *
- * @param layout
- * where components are added
- * @param numberOfComponents
- * to add
- */
- private void fillLayout(Layout layout, int numberOfComponents) {
- for (int i = 1; i <= numberOfComponents; i++) {
- layout.addComponent(getExampleComponent(Integer.toString(i)));
- }
- }
-
-}