Color TabbedPane Example : TabbedPane « Swing Components « 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 » Swing Components » TabbedPane 




Color TabbedPane Example
Color TabbedPane Example

// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html

/* (swing1.1.1) */


import java.awt.Color;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.plaf.metal.MetalTabbedPaneUI;

/**
 @version 1.0 08/23/99
 */
public class ColorTabbedPaneExample extends JFrame {

  String[] titles = "blue""cyan""green""yellow""orange""pink",
      "red" };

  Color[] colors = Color.blue, Color.cyan, Color.green, Color.yellow,
      Color.orange, Color.pink, Color.red };

  JTabbedPane tabbedPane;

  public ColorTabbedPaneExample() {
    super("ColorTabbedPaneExample (Metal)");

    UIManager.put("TabbedPane.selected", colors[0]);
    tabbedPane = new JTabbedPane() {
      public void updateUI() {
        setUI(new ColoredTabbedPaneUI());
      }
    };
    for (int i = 0; i < titles.length; i++) {
      tabbedPane.addTab(titles[i], createPane(titles[i], colors[i]));
      tabbedPane.setBackgroundAt(i, colors[i].darker());
    }
    tabbedPane.setSelectedIndex(0);

    tabbedPane.addChangeListener(new ChangeListener() {
      public void stateChanged(ChangeEvent e) {
        int i = tabbedPane.getSelectedIndex();
        ((ColoredTabbedPaneUItabbedPane.getUI())
            .setSelectedTabBackground(colors[i]);
        tabbedPane.revalidate();
        tabbedPane.repaint();
      }
    });
    getContentPane().add(tabbedPane);
  }

  JPanel createPane(String title, Color color) {
    JPanel panel = new JPanel();
    panel.setBackground(color);
    JLabel label = new JLabel(title);
    label.setOpaque(true);
    label.setBackground(Color.white);
    panel.add(label);
    return panel;
  }

  class ColoredTabbedPaneUI extends MetalTabbedPaneUI {
    public void setSelectedTabBackground(Color color) {
      selectColor = color;
    }

    protected void paintFocusIndicator(Graphics g, int tabPlacement,
        Rectangle[] rects, int tabIndex, Rectangle iconRect,
        Rectangle textRect, boolean isSelected) {
    }
  }

  public static void main(String[] args) {
    JFrame frame = new ColorTabbedPaneExample();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    frame.setSize(360100);
    frame.setVisible(true);
  }
}
           
       














Related examples in the same category
1.Swing Windows (Eclipse) like TabbedPanelSwing Windows (Eclipse) like TabbedPanel
2.Mnemonic Tabbed Pane ExampleMnemonic Tabbed Pane Example
3.Tab Color ExampleTab Color Example
4.Single Row Tabbed Pane Example 1Single Row Tabbed Pane Example 1
5.Single Row Tabbed Pane Example 2Single Row Tabbed Pane Example 2
6.Single Row Tabbed Pane Example 4Single Row Tabbed Pane Example 4
7.Color TabbedPane Example 2Color TabbedPane Example 2
8.Color TabbedPane Example 3Color TabbedPane Example 3
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.