blob: c42248e8354d6b89b36a2a2b838a1617764a044b (
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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client;
import com.google.gwt.user.client.ui.Widget;
/**
* An interface used by client-side widgets or paintable parts to receive
* updates from the corresponding server-side components in the form of
* {@link UIDL}.
*
* Updates can be sent back to the server using the
* {@link ApplicationConnection#updateVariable()} methods.
*/
public interface VPaintableWidget extends VPaintable {
/**
* TODO: Rename to getWidget
*/
public Widget getWidgetForPaintable();
/**
* Returns the parent {@link VPaintableWidgetContainer}
*
* @return
*/
// FIXME: Rename to getParent()
public VPaintableWidgetContainer getParent();
public LayoutManager getLayoutManager();
/**
* Returns <code>true</code> if the width of this paintable is currently
* undefined. If the width is undefined, the actual width of the paintable
* is defined by its contents.
*
* @return <code>true</code> if the width is undefined, else
* <code>false</code>
*/
public boolean isUndefinedWidth();
/**
* Returns <code>true</code> if the height of this paintable is currently
* undefined. If the height is undefined, the actual height of the paintable
* is defined by its contents.
*
* @return <code>true</code> if the height is undefined, else
* <code>false</code>
*/
public boolean isUndefinedHeight();
/**
* Returns <code>true</code> if the width of this paintable is currently
* relative. If the width is relative, the actual width of the paintable is
* a percentage of the size allocated to it by its parent.
*
* @return <code>true</code> if the width is undefined, else
* <code>false</code>
*/
public boolean isRelativeWidth();
/**
* Returns <code>true</code> if the height of this paintable is currently
* relative. If the height is relative, the actual height of the paintable
* is a percentage of the size allocated to it by its parent.
*
* @return <code>true</code> if the width is undefined, else
* <code>false</code>
*/
public boolean isRelativeHeight();
/**
* Gets the width of this paintable as defined on the server.
*
* @return the server side width definition
*/
public String getDeclaredWidth();
/**
* Gets the height of this paintable as defined on the server.
*
* @return the server side height definition
*/
public String getDeclaredHeight();
}
|