Subversion Repository Public Repository

litesoft

Diff Revisions 506 vs 538 for /trunk/GWT_Sandbox/MultiModule/groupFront/src/org/litesoft/sandbox/multimodule/groupfront/client/front/FrontViewImpl.java

Diff revisions: vs.
  @@ -17,10 +17,14 @@
17 17
18 18 public FrontViewImpl()
19 19 {
20 - CubeFace zCubeFace = new CubeFace( this, "FrontGroup", mCenter = Places.Front, Places.Top, Places.Right, Places.Left, Places.Bottom );
20 + String zSection = "FrontGroup";
21 + mCenter = Places.Front;
22 + DieRotator zCubeFace = new DieRotator( this, "FrontGroup" , mCenter = Places.Front );
21 23
22 24 VerticalPanel zPanel = new VerticalPanel();
23 25 zPanel.setHorizontalAlignment( HasHorizontalAlignment.ALIGN_CENTER );
26 + zPanel.add( new HelpWidget( zSection, "" + mCenter ) );
27 + zPanel.add( new Label( "" + mCenter ) );
24 28 zPanel.add( zCubeFace );
25 29 zPanel.add( new Button( "Feeling Lucky", new ClickHandler()
26 30 {