blob: a0d03fa3e50e76c74c47b0f35cc96d47ec0ec557 (
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
93
94
95
96
97
98
99
100
101
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
/**
* A layout that will give one of it's components as much space as possible,
* while still showing the other components in the layout. The other components
* will in effect be given a fixed sized space, while the space given to the
* expanded component will grow/shrink to fill the rest of the space available -
* for instance when re-sizing the window.
*
* Note that this layout is 100% in both directions by default ({link
* {@link #setSizeFull()}). Remember to set the units if you want to specify a
* fixed size. If the layout fails to show up, check that the parent layout is
* actually giving some space.
*
* @deprecated Deprecated in favor of the new OrderedLayout
*/
@SuppressWarnings("serial")
@Deprecated
public class ExpandLayout extends OrderedLayout {
private Component expanded = null;
public ExpandLayout() {
this(ORIENTATION_VERTICAL);
}
public ExpandLayout(int orientation) {
super(orientation);
setSizeFull();
}
/**
* @param c
* Component which container will be maximized
*/
public void expand(Component c) {
if (expanded != null) {
try {
setExpandRatio(expanded, 0.0f);
} catch (IllegalArgumentException e) {
// Ignore error if component has been removed
}
}
expanded = c;
if (expanded != null) {
setExpandRatio(expanded, 1.0f);
}
requestRepaint();
}
@Override
public void addComponent(Component c, int index) {
super.addComponent(c, index);
if (expanded == null) {
expand(c);
}
}
@Override
public void addComponent(Component c) {
super.addComponent(c);
if (expanded == null) {
expand(c);
}
}
@Override
public void addComponentAsFirst(Component c) {
super.addComponentAsFirst(c);
if (expanded == null) {
expand(c);
}
}
@Override
public void removeComponent(Component c) {
super.removeComponent(c);
if (c == expanded) {
if (getComponentIterator().hasNext()) {
expand(getComponentIterator().next());
} else {
expand(null);
}
}
}
@Override
public void replaceComponent(Component oldComponent, Component newComponent) {
super.replaceComponent(oldComponent, newComponent);
if (oldComponent == expanded) {
expand(newComponent);
}
}
}
|