blob: bafbfe315afb48c5533323e351646f0e2baf3de3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
* Copyright 2000-2016 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.ui;
import com.vaadin.shared.ui.orderedlayout.VerticalLayoutState;
/**
* Vertical layout
*
* <code>VerticalLayout</code> is a component container, which shows the
* subcomponents in the order of their addition (vertically). A vertical layout
* is by default 100% wide.
*
* @author Vaadin Ltd.
* @since 5.3
*/
@SuppressWarnings("serial")
public class VerticalLayout extends AbstractOrderedLayout {
/**
* Constructs an empty VerticalLayout.
*/
public VerticalLayout() {
setWidth("100%");
setSpacing(true);
setMargin(true);
}
/**
* Constructs a VerticalLayout with the given components. The components are
* added in the given order.
*
* @see AbstractOrderedLayout#addComponents(Component...)
*
* @param children
* The components to add.
*/
public VerticalLayout(Component... children) {
this();
addComponents(children);
}
@Override
protected VerticalLayoutState getState() {
return (VerticalLayoutState) super.getState();
}
@Override
protected VerticalLayoutState getState(boolean markAsDirty) {
return (VerticalLayoutState) super.getState(markAsDirty);
}
/**
* Adds the given components to this layout and sets them as expanded. The
* height of all added child components are set to 100% so that the
* expansion will be effective. The height of this layout is also set to
* 100% if it is currently undefined.
* <p>
* The components are added in the provided order to the end of this layout.
* Any components that are already children of this layout will be moved to
* new positions.
*
* @param components
* the components to set, not <code>null</code>
* @since 8.0
*/
public void addComponentsAndExpand(Component... components) {
addComponents(components);
if (getHeight() < 0) {
setHeight(100, Unit.PERCENTAGE);
}
for (Component child : components) {
child.setHeight(100, Unit.PERCENTAGE);
setExpandRatio(child, 1);
}
}
}
|