Set layout percentage with * (Smart GWT) : Layout « GWT « Java






Set layout percentage with * (Smart GWT)

Set layout percentage with * (Smart GWT)
  

/*
 * SmartGWT (GWT for SmartClient)
 * Copyright 2008 and beyond, Isomorphic Software, Inc.
 *
 * SmartGWT is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3
 * as published by the Free Software Foundation.  SmartGWT is also
 * available under typical commercial license terms - see
 * http://smartclient.com/license
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 */

package com.smartgwt.sample.showcase.client;


import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.smartgwt.client.types.Alignment;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.Label;
import com.smartgwt.client.widgets.layout.HLayout;
import com.smartgwt.client.widgets.layout.VLayout;

public class Showcase implements EntryPoint{

    public void onModuleLoad() {
       RootPanel.get().add(getViewPanel());
    }
    public Canvas getViewPanel() {
      HLayout layout = new HLayout();
      layout.setWidth100();
      layout.setHeight100();
      layout.setMembersMargin(20);

      VLayout vLayout = new VLayout();
      vLayout.setShowEdges(true);
      vLayout.setWidth(150);
      vLayout.setMembersMargin(5);
      vLayout.setLayoutMargin(10);
      vLayout.addMember(new BlueBox(null, 50, "height 50"));
      vLayout.addMember(new BlueBox((String) null, "*", "height *"));
      vLayout.addMember(new BlueBox((String) null, "30%", "height 30%"));
      layout.addMember(vLayout);

      HLayout hLayout = new HLayout();
      hLayout.setShowEdges(true);
      hLayout.setHeight(150);
      hLayout.setMembersMargin(5);
      hLayout.setLayoutMargin(10);
      hLayout.addMember(new BlueBox(50, (Integer) null, "width 50"));
      hLayout.addMember(new BlueBox("*", null, "width *"));
      hLayout.addMember(new BlueBox("30%", null, "width 30%"));
      layout.addMember(hLayout);

      return layout;
  }

    class BlueBox extends Label {

        public BlueBox(String contents) {
            setAlign(Alignment.CENTER);
            setBorder("1px solid #808080");
            setBackgroundColor("lightblue");
            setContents(contents);
        }

        public BlueBox(Integer width, Integer height, String contents) {
            this(contents);
            if (width != null) setWidth(width);
            if (height != null) setHeight(height);
        }

        public BlueBox(Integer width, String height, String contents) {
            this(contents);
            if (width != null) setWidth(width);
            if (height != null) setHeight(height);
        }

        public BlueBox(String width, String height, String contents) {
            this(contents);
            if (width != null) setWidth(width);
            if (height != null) setHeight(height);
        }
    }
}

   
    
  








Related examples in the same category

1.Set margin of vertical layout (Smart GWT)Set margin of vertical layout (Smart GWT)
2.HLayout/VLayout manage the stacked positions and sizes of multiple member components (Smart GWT)HLayout/VLayout manage the stacked positions and sizes of multiple member components (Smart GWT)
3.Full client area nested layout (Smart GWT)Full client area nested layout (Smart GWT)
4.Remove widget from layout mananger (Smart GWT)Remove widget from layout mananger (Smart GWT)
5.Using Canvas to hold Layout managers (Smart GWT)Using Canvas to hold Layout managers (Smart GWT)
6.HStack/VStack containers manage the stacked positions of multiple member components (Smart GWT)HStack/VStack containers manage the stacked positions of multiple member components (Smart GWT)
7.Click and hold the arrow to move the image. (Smart GWT)Click and hold the arrow to move the image. (Smart GWT)
8.Add buttons to Canvas (Smart GWT)Add buttons to Canvas (Smart GWT)
9.Show or hide the message (Smart GWT)Show or hide the message (Smart GWT)
10.CardLayout Example (Ext GWT)CardLayout Example (Ext GWT)
11.CenterLayout Example (Ext GWT)CenterLayout Example (Ext GWT)
12.Horizontal and vertical row layout (Ext GWT)Horizontal and vertical row layout (Ext GWT)
13.Horizontal box layout align top (Ext GWT)Horizontal box layout align top (Ext GWT)
14.Horizontal box layout align middle (Ext GWT)Horizontal box layout align middle (Ext GWT)
15.Horizontal box layout align bottom (Ext GWT)Horizontal box layout align bottom (Ext GWT)
16.Horizontal Box Layout Align.STRETCH (Ext GWT)Horizontal Box Layout Align.STRETCH (Ext GWT)
17.Horizontal Flex: All even (Ext GWT)Horizontal Flex: All even (Ext GWT)
18.Horizontal Flex: ratio (Ext GWT)Horizontal Flex: ratio (Ext GWT)
19.Horizontal Flex + Stretch (Ext GWT)Horizontal Flex + Stretch (Ext GWT)
20.Pack: start (Ext GWT)Pack: start (Ext GWT)
21.Pack: center (Ext GWT)Pack: center (Ext GWT)
22.Pack: end (Ext GWT)Pack: end (Ext GWT)
23.VBoxLayout Example (Ext GWT)
24.BorderLayout and BorderLayoutData (Ext GWT)BorderLayout and BorderLayoutData (Ext GWT)
25.Using HorizontalPanel to hold buttons (Ext GWT)Using HorizontalPanel to hold buttons (Ext GWT)
26.Spaced VerticalBox Layout (Ext GWT)Spaced VerticalBox Layout (Ext GWT)
27.extends LayoutContainter (Ext GWT)extends LayoutContainter (Ext GWT)
28.Multi-Spaced horizontal layout (Ext GWT)