Scrollable tab header line (Smart GWT) : Tab « 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.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Java » GWT » TabScreenshots 
Scrollable tab header line (Smart GWT)
Scrollable tab header line (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.Side;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.IButton;
import com.smartgwt.client.widgets.Img;
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;
import com.smartgwt.client.widgets.tab.Tab;
import com.smartgwt.client.widgets.tab.TabSet;

public class Showcase implements EntryPoint {

  public void onModuleLoad() {
    RootPanel.get().add(getViewPanel());
  }

  public Canvas getViewPanel() {

    final TabSet tabSet = new TabSet();
    tabSet.setTabBarPosition(Side.TOP);
    tabSet.setWidth(400);
    tabSet.setHeight(200);

    Tab tTab1 = new Tab("Blue""pieces/16/pawn_blue.png");
    Img tImg1 = new Img("pieces/48/pawn_blue.png"4848);
    tTab1.setPane(tImg1);

    Tab tTab2 = new Tab("Green""pieces/16/pawn_green.png");
    Img tImg2 = new Img("pieces/48/pawn_green.png"4848);
    tTab2.setPane(tImg2);

    tabSet.addTab(tTab1);
    tabSet.addTab(tTab2);

    HLayout buttons = new HLayout();
    buttons.setMembersMargin(15);

    IButton addButton = new IButton("Add Tab");
    addButton.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            //alternate between yellow pawn and green cube
            if (tabSet.getTabs().length % == 0) {
                Tab tab = new Tab("Yellow""pieces/16/pawn_yellow.png");
                Img img = new Img("pieces/48/pawn_yellow.png"4848);
                tab.setPane(img);
                tabSet.addTab(tab);
            else {
                Tab tab = new Tab("Green""pieces/16/cube_green.png");
                Img img = new Img("pieces/48/cube_green.png"4848);
                tab.setPane(img);
                tabSet.addTab(tab);
            }
            if (tabSet.getTabs().length == 0) {
                tabSet.selectTab(0);
            }
        }
    });

    IButton removeButton = new IButton("Remove Tab");
    removeButton.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            tabSet.removeTab(tabSet.getTabs().length - 1);
        }
    });

    buttons.addMember(addButton);
    buttons.addMember(removeButton);

    VLayout vLayout = new VLayout();
    vLayout.setMembersMargin(15);
    vLayout.addMember(tabSet);
    vLayout.addMember(buttons);
    vLayout.setAutoHeight();

    return vLayout;
  }

}

   
    
    
  
SmartGWT.zip( 9,880 k)
Related examples in the same category
1.Tab orientation (Smart GWT)Tab orientation (Smart GWT)
2.Set tab alignment (Smart GWT)Set tab alignment (Smart GWT)
3.Add a tab, remove a tab (Smart GWT)Add a tab, remove a tab (Smart GWT)
4.Closable tab (Smart GWT)Closable tab (Smart GWT)
5.Tabs Custom Control Sample (Smart GWT)Tabs Custom Control Sample (Smart GWT)
6.Change Tab title dynamically (Smart GWT)Change Tab title dynamically (Smart GWT)
7.Add controls to Tab page (Smart GWT)Add controls to Tab page (Smart GWT)
8.Set URL view for Tab (Smart GWT)Set URL view for Tab (Smart GWT)
9.Basic Focus Tabbing Sample (Smart GWT)Basic Focus Tabbing Sample (Smart GWT)
10.Using tab to hold form (Smart GWT)Using tab to hold form (Smart GWT)
11.Click on the resizebar next to the Navigation tree to hide it (Smart GWT)Click on the resizebar next to the Navigation tree to hide it (Smart GWT)
12.Adding text to tab panel (Ext GWT)Adding text to tab panel (Ext GWT)
13.Adding Autoload ajax content to tab panel (Ext GWT)Adding Autoload ajax content to tab panel (Ext GWT)
14.Listen to tab selection event (Ext GWT)Listen to tab selection event (Ext GWT)
15.Adding icon to tab bar (Ext GWT)Adding icon to tab bar (Ext GWT)
16.Diable a tab item (Ext GWT)Diable a tab item (Ext GWT)
17.Using VerticalPanel to hold tab panel (Ext GWT)Using VerticalPanel to hold tab panel (Ext GWT)
18.Adding HTML content to a tab panel (Ext GWT)Adding HTML content to a tab panel (Ext GWT)
19.Adding new tab dynamically (Ext GWT)Adding new tab dynamically (Ext GWT)
20.Closable tab (Ext GWT)Closable tab (Ext GWT)
21.Enable tab context menu (Ext GWT)Enable tab context menu (Ext GWT)
22.Make tab scrollable (Ext GWT)Make tab scrollable (Ext GWT)
23.Set selected tab (Ext GWT)Set selected tab (Ext GWT)
24.Tabbed Form (Ext GWT)Tabbed Form (Ext GWT)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.