summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-30 17:24:36 +0300
committerArtur Signell <artur@vaadin.com>2012-08-30 17:24:36 +0300
commit7b25b3886ea95bc6495506fbe9472e45fcbde684 (patch)
tree0b93cb65dab437feb46720659a63b8f1ef48f7f4 /uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java
parent8941056349e302e687e40e94c13709e75f256d73 (diff)
downloadvaadin-framework-7b25b3886ea95bc6495506fbe9472e45fcbde684.tar.gz
vaadin-framework-7b25b3886ea95bc6495506fbe9472e45fcbde684.zip
Renamed tests -> uitest and tests/testbench -> uitest/src (#9299)
Diffstat (limited to 'uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java')
-rw-r--r--uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java115
1 files changed, 115 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java b/uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java
new file mode 100644
index 0000000000..1d28a0a1b4
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/TestForBasicApplicationLayout.java
@@ -0,0 +1,115 @@
+/*
+ * Copyright 2011 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+package com.vaadin.tests;
+
+import java.util.Locale;
+
+import com.vaadin.server.Sizeable;
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Button.ClickEvent;
+import com.vaadin.ui.Button.ClickListener;
+import com.vaadin.ui.CustomComponent;
+import com.vaadin.ui.DateField;
+import com.vaadin.ui.HorizontalSplitPanel;
+import com.vaadin.ui.Label;
+import com.vaadin.ui.Panel;
+import com.vaadin.ui.TabSheet;
+import com.vaadin.ui.Table;
+import com.vaadin.ui.VerticalLayout;
+import com.vaadin.ui.themes.Reindeer;
+
+public class TestForBasicApplicationLayout extends CustomComponent {
+
+ private final Button click;
+ private final Button click2;
+ private final TabSheet tab;
+
+ public TestForBasicApplicationLayout() {
+
+ click = new Button("Set height -1", new ClickListener() {
+
+ @Override
+ public void buttonClick(ClickEvent event) {
+ tab.setHeight(null);
+ }
+
+ });
+
+ click2 = new Button("Set height 100%", new ClickListener() {
+
+ @Override
+ public void buttonClick(ClickEvent event) {
+ tab.setHeight(100, TabSheet.UNITS_PERCENTAGE);
+ }
+
+ });
+
+ final HorizontalSplitPanel sp = new HorizontalSplitPanel();
+ sp.setSplitPosition(290, Sizeable.UNITS_PIXELS);
+
+ final HorizontalSplitPanel sp2 = new HorizontalSplitPanel();
+ sp2.setSplitPosition(255, Sizeable.UNITS_PIXELS);
+
+ final Panel p = new Panel("Accordion Panel");
+ p.setSizeFull();
+
+ tab = new TabSheet();
+ tab.setSizeFull();
+
+ final Panel report = new Panel("Monthly Program Runs",
+ new VerticalLayout());
+ final VerticalLayout controls = new VerticalLayout();
+ controls.setMargin(true);
+ controls.addComponent(new Label("Report tab"));
+ controls.addComponent(click);
+ controls.addComponent(click2);
+ report.addComponent(controls);
+ final DateField cal = new DateField();
+ cal.setResolution(DateField.RESOLUTION_DAY);
+ cal.setLocale(new Locale("en", "US"));
+ report.addComponent(cal);
+ ((VerticalLayout) report.getContent()).setExpandRatio(controls, 1);
+ report.addStyleName(Reindeer.PANEL_LIGHT);
+ report.setHeight(100, Sizeable.UNITS_PERCENTAGE);
+
+ sp2.setFirstComponent(report);
+
+ final Table table = TestForTablesInitialColumnWidthLogicRendering
+ .getTestTable(5, 200);
+ table.setPageLength(15);
+ table.setSelectable(true);
+ table.setRowHeaderMode(Table.ROW_HEADER_MODE_INDEX);
+ table.setColumnCollapsingAllowed(true);
+ table.setColumnReorderingAllowed(true);
+ table.setSortDisabled(false);
+ table.setSizeFull();
+ table.addStyleName("table-inline");
+ sp2.setSecondComponent(table);
+
+ tab.addTab(new Label("Tab1"), "Summary", null);
+ tab.addTab(sp2, "Reports", null);
+ tab.addTab(new Label("Tab 3"), "Statistics", null);
+ tab.addTab(new Label("Tab 4"), "Error Tracking", null);
+ tab.setSelectedTab(sp2);
+
+ sp.setFirstComponent(p);
+ sp.setSecondComponent(tab);
+
+ setCompositionRoot(sp);
+ }
+
+}