comparison flys-client/src/main/java/de/intevation/flys/client/client/ui/AbstractUIProvider.java @ 788:dfbc6693247e

Integrated a stacked panel on the right side of the ParameterList that enables users to see calculation results and the helper panel at the same time. flys-client/trunk@2289 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 06 Jul 2011 12:31:32 +0000
parents 9f16ac843dda
children 77a549772aa9
comparison
equal deleted inserted replaced
787:4e0b73b7113b 788:dfbc6693247e
4 import java.util.List; 4 import java.util.List;
5 5
6 import com.google.gwt.core.client.GWT; 6 import com.google.gwt.core.client.GWT;
7 7
8 import com.smartgwt.client.util.SC; 8 import com.smartgwt.client.util.SC;
9 import com.smartgwt.client.widgets.Button;
9 import com.smartgwt.client.widgets.Canvas; 10 import com.smartgwt.client.widgets.Canvas;
10 import com.smartgwt.client.widgets.Img; 11 import com.smartgwt.client.widgets.Img;
11 import com.smartgwt.client.widgets.events.ClickEvent; 12 import com.smartgwt.client.widgets.events.ClickEvent;
12 import com.smartgwt.client.widgets.events.ClickHandler; 13 import com.smartgwt.client.widgets.events.ClickHandler;
13 import com.smartgwt.client.widgets.Button; 14 import com.smartgwt.client.widgets.layout.VLayout;
14 15
15 import de.intevation.flys.client.client.FLYSConstants; 16 import de.intevation.flys.client.client.FLYSConstants;
16 import de.intevation.flys.client.client.event.HasStepBackHandlers; 17 import de.intevation.flys.client.client.event.HasStepBackHandlers;
17 import de.intevation.flys.client.client.event.HasStepForwardHandlers; 18 import de.intevation.flys.client.client.event.HasStepForwardHandlers;
18 import de.intevation.flys.client.client.event.StepBackEvent; 19 import de.intevation.flys.client.client.event.StepBackEvent;
42 43
43 /** The StepForwardHandlers.*/ 44 /** The StepForwardHandlers.*/
44 protected List<StepBackHandler> backHandlers; 45 protected List<StepBackHandler> backHandlers;
45 46
46 /** The container that is used to position helper widgets.*/ 47 /** The container that is used to position helper widgets.*/
47 protected Canvas helperContainer; 48 protected VLayout helperContainer;
48 49
49 /** The artifact that contains status information.*/ 50 /** The artifact that contains status information.*/
50 protected Artifact artifact; 51 protected Artifact artifact;
51 52
52 /** 53 /**
173 * This method injects a container that is used to position helper widgets. 174 * This method injects a container that is used to position helper widgets.
174 * 175 *
175 * @param helperContainer A container that is used to position helper 176 * @param helperContainer A container that is used to position helper
176 * widgets. 177 * widgets.
177 */ 178 */
178 public void setContainer(Canvas helperContainer) { 179 public void setContainer(VLayout helperContainer) {
179 this.helperContainer = helperContainer; 180 this.helperContainer = helperContainer;
180 } 181 }
181 182
182 183
183 /** 184 /**

http://dive4elements.wald.intevation.org