/* * Copyright 2000-2014 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.event.MouseEvents.ClickEvent; import com.vaadin.event.MouseEvents.ClickListener; import com.vaadin.server.Resource; import com.vaadin.shared.EventId; import com.vaadin.shared.MouseEventDetails; import com.vaadin.shared.ui.image.ImageServerRpc; import com.vaadin.shared.ui.image.ImageState; /** * Component for embedding images. * * @author Vaadin Ltd. * @version * @VERSION@ * @since 7.0 */ @SuppressWarnings("serial") public class Image extends AbstractEmbedded { protected ImageServerRpc rpc = new ImageServerRpc() { @Override public void click(MouseEventDetails mouseDetails) { fireEvent(new ClickEvent(Image.this, mouseDetails)); } }; /** * Creates a new empty Image. */ public Image() { registerRpc(rpc); } /** * Creates a new empty Image with caption. * * @param caption */ public Image(String caption) { this(); setCaption(caption); } /** * Creates a new Image whose contents is loaded from given resource. The * dimensions are assumed if possible. The type is guessed from resource. * * @param caption * @param source * the Source of the embedded object. */ public Image(String caption, Resource source) { this(caption); setSource(source); } @Override protected ImageState getState() { return (ImageState) super.getState(); } /** * @deprecated As of 7.0, use {@link #addClickListener(ClickListener)} * instead */ @Deprecated public void addListener(ClickListener listener) { addClickListener(listener); } /** * Add a click listener to the component. The listener is called whenever * the user clicks inside the component. Depending on the content the event * may be blocked and in that case no event is fired. * * Use {@link #removeClickListener(ClickListener)} to remove the listener. * * @param listener * The listener to add */ public void addClickListener(ClickListener listener) { addListener(EventId.CLICK_EVENT_IDENTIFIER, ClickEvent.class, listener, ClickListener.clickMethod); } /** * @deprecated As of 7.0, use {@link #removeClickListener(ClickListener)} * instead */ @Deprecated public void removeListener(ClickListener listener) { removeClickListener(listener); } /** * Remove a click listener from the component. The listener should earlier * have been added using {@link #addClickListener(ClickListener)}. * * @param listener * The listener to remove */ public void removeClickListener(ClickListener listener) { removeListener(EventId.CLICK_EVENT_IDENTIFIER, ClickEvent.class, listener); } } =dbdc4b761b51c59c90e05fe2fb8977d2182ba992'>commitdiffstats
path: root/src/effects/Tween.js
blob: 43eb8fa0b19ba1a7ec1060ac7c56c8273dc55c1b (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123