Full client area nested layout (Smart GWT) : Layout « GWT « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » GWT » Layout 




Full client area nested layout (Smart GWT)
Full client area nested layout (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.types.DragAppearance;
import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.IButton;
import com.smartgwt.client.widgets.Label;
import com.smartgwt.client.widgets.events.ClickEvent;
import com.smartgwt.client.widgets.events.ClickHandler;
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 mainLayout = new HLayout();
    mainLayout.setWidth100();
    mainLayout.setHeight100();

    Label navigationLabel = new Label();
    navigationLabel.setContents("Navigation");
    navigationLabel.setAlign(Alignment.CENTER);
    navigationLabel.setOverflow(Overflow.HIDDEN);
    navigationLabel.setWidth("30%");
    navigationLabel.setShowResizeBar(true);
    navigationLabel.setBorder("1px solid blue");

    mainLayout.addMember(navigationLabel);

    VLayout vLayout = new VLayout();
    vLayout.setWidth("70%");

    Label listingLabel = new Label();
    listingLabel.setContents("Listing");
    listingLabel.setAlign(Alignment.CENTER);
    listingLabel.setOverflow(Overflow.HIDDEN);
    listingLabel.setHeight("30%");
    listingLabel.setShowResizeBar(true);
    listingLabel.setBorder("1px solid blue");

    Label detailsLabel = new Label();
    detailsLabel.setContents("Details");
    detailsLabel.setAlign(Alignment.CENTER);
    detailsLabel.setOverflow(Overflow.HIDDEN);
    detailsLabel.setHeight("70%");
    detailsLabel.setBorder("1px solid blue");

    vLayout.addMember(listingLabel);
    vLayout.addMember(detailsLabel);

    mainLayout.addMember(vLayout);
    return mainLayout;
  }

}

   
    
    
  














SmartGWT.zip( 9,880 k)
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.Set layout percentage with * (Smart GWT)Set layout percentage with * (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)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.