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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
import java.util.Map;
import com.vaadin.event.LayoutEvents.LayoutClickEvent;
import com.vaadin.event.LayoutEvents.LayoutClickNotifier;
import com.vaadin.terminal.PaintException;
import com.vaadin.terminal.PaintTarget;
import com.vaadin.terminal.gwt.client.EventId;
import com.vaadin.terminal.gwt.client.MouseEventDetails;
import com.vaadin.ui.Layout.MarginHandler;
/**
* An abstract class that defines default implementation for the {@link Layout}
* interface.
*
* @author Vaadin Ltd.
* @version
* @VERSION@
* @since 5.0
*/
@SuppressWarnings("serial")
public abstract class AbstractLayout extends AbstractComponentContainer
implements Layout, MarginHandler {
private static final String CLICK_EVENT = EventId.LAYOUT_CLICK;
protected MarginInfo margins = new MarginInfo(false);
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.Layout#setMargin(boolean)
*/
public void setMargin(boolean enabled) {
margins.setMargins(enabled);
requestRepaint();
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.Layout.MarginHandler#getMargin()
*/
public MarginInfo getMargin() {
return margins;
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.Layout.MarginHandler#setMargin(MarginInfo)
*/
public void setMargin(MarginInfo marginInfo) {
margins.setMargins(marginInfo);
requestRepaint();
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.Layout#setMargin(boolean, boolean, boolean, boolean)
*/
public void setMargin(boolean topEnabled, boolean rightEnabled,
boolean bottomEnabled, boolean leftEnabled) {
margins.setMargins(topEnabled, rightEnabled, bottomEnabled, leftEnabled);
requestRepaint();
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.AbstractComponent#paintContent(com.vaadin
* .terminal.PaintTarget)
*/
@Override
public void paintContent(PaintTarget target) throws PaintException {
// Add margin info. Defaults to false.
target.addAttribute("margins", margins.getBitMask());
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.AbstractComponent#changeVariables(java.lang.Object,
* java.util.Map)
*/
@SuppressWarnings("unchecked")
@Override
public void changeVariables(Object source, Map<String, Object> variables) {
super.changeVariables(source, variables);
// not all subclasses use these events
if (this instanceof LayoutClickNotifier
&& variables.containsKey(CLICK_EVENT)) {
fireClick((Map<String, Object>) variables.get(CLICK_EVENT));
}
}
/**
* Fire a layout click event.
*
* Note that this method is only used by the subclasses that implement
* {@link LayoutClickNotifier}, and can be overridden for custom click event
* firing.
*
* @param parameters
* The parameters received from the client side implementation
*/
protected void fireClick(Map<String, Object> parameters) {
MouseEventDetails mouseDetails = MouseEventDetails
.deSerialize((String) parameters.get("mouseDetails"));
Component clickedComponent = (Component) parameters.get("component");
Component childComponent = clickedComponent;
while (childComponent != null && childComponent.getParent() != this) {
childComponent = childComponent.getParent();
}
fireEvent(new LayoutClickEvent(this, mouseDetails, clickedComponent,
childComponent));
}
}
|