Click here to Skip to main content
Click here to Skip to main content

Tab Control in Java ( in AWT)

By , 7 Jun 2010
 

Sample Image - tabcontrol.gif

Introduction

Dear friends, this is one of most useful components in the Java programming world. Here, I am using the Card Layout for developing this component. Download the project files and run the run.bat file to get the output.

Explanation

The Following files are used in the Tab Control.

  • Border.java, BorderPanel.java, Scrollbar.java are used to create a customized scroll bar.
  • Scrollpanel.java is used to embed a customized scroll bar into a Panel.
  • TabPanel.java is used to create tabs.
  • chatClient1.java is the main applet

Source Code

Here is the source code for setting a Tab Panel:

import java.awt.Panel;
import java.awt.CardLayout;
import java.awt.BorderLayout;
import java.awt.*;
import java.awt.event.*;

public class TapPanel extends Panel
{
    TabPanel(chatClient1 app)
    {
        // Initialize the Components
        chatclient = app;	
        // Main Panel
        RightPanel = new CPanel(300, 500);

        Panel panel2 = new Panel();
        CardLayout cardlayout = new CardLayout();
        panel2.setLayout(cardlayout);
        UserPanel = new Panel();	  
        UserPanel.add("Center",new Label("User"));

        ImgScrollPanel = new Panel();
        ImgScrollPanel.setLayout(new BorderLayout());

        BuddyPanel = new Panel();
        BuddyPanel.setLayout(new BorderLayout());

        RoomPanel = new Panel();
        RoomPanel.setLayout(new BorderLayout());
	  
        panel2.add("UserPanel", UserPanel);
        panel2.add("RoomPanel", RoomPanel); 
        panel2.add("ImgScrollPanel", ImgScrollPanel); 
        panel2.add("BuddyPanel", BuddyPanel);

        cardlayout.show(panel2, "UserPanel");

        RightTab = new BorderPanel(this,chatclient, cardlayout, panel2, 210, 270);

        RightTab.addTab("USERS", "UserPanel");
        RightTab.addTab("ROOMS", "RoomPanel"); 
        RightTab.addTab("IMAGES", "ImgScrollPanel");
        RightTab.addTab("BUDDY", "BuddyPanel");
        RightPanel.add(RightTab);
        add(RightPanel);  
    }

    Panel LeftPanel, BuddyPanel, RoomPanel, ImgScrollPanel, UserPanel;
    CPanel RightPanel;
    BorderPanel RightTab;
    chatClient1 chatclient;
    public int i;
}

Finally,

If you want a TabPanel, you can import the TabPanel class in your applet or main application. Adding the code tab = new TabPanel(this); will embed it into your application.

Jeeva S

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Jeeva S
Architect
United States United States
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionفين باقى الكود بتاع الشات والmain function ?? PinmemberFatomaa30-Aug-12 18:36 
Questionneed help PinmemberAttaullah bablu30-Nov-11 6:53 
QuestionNeed your Assistance PinmemberNiraj Deshmukh12313-Nov-11 22:18 
GeneralCode java of Chat program Pinmemberthopt3-Nov-09 7:51 
GeneralNew in Java [modified] PinmemberaskPrins17-Jul-08 9:30 
GeneralHey! Pinmember138256ssn16-Sep-07 8:03 
General*-- How to GET the SOURCE CODE -- * Pinmembertheo25121-Feb-07 1:35 
Generalhave the coding Pinmembercoool_ajit17-Apr-06 19:44 
Generalplz send Pinmemberashishkumar.er20-Mar-06 5:59 
GeneralThere is an error in your run.bat file Pinsusscode rider17-Oct-04 19:30 
QuestionNo Source files!? PinmemberT.Haberkern19-Apr-02 0:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130619.1 | Last Updated 7 Jun 2010
Article Copyright 2002 by Jeeva S
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid