• 追加された行はこの色です。
  • 削除された行はこの色です。
---
category: swing
folder: CardLayoutTabbedPane
title: CardLayoutを使ってJTabbedPane風のコンポーネントを作成
tags: [CardLayout, GridLayout, LayoutManager, JRadioButton, JTableHeader, JTabbedPane]
tags: [CardLayout, GridLayout, LayoutManager, JRadioButton, JTableHeader, JTabbedPane, DragAndDrop]
author: aterai
pubdate: 2008-10-27T13:54:48+09:00
description: CardLayoutとJRadioButtonやJTableHeaderを組み合わせてJTabbedPane風のコンポーネントを作成します。
image: https://lh3.googleusercontent.com/-i_zX5mZNCL0/VZBOp7c2kwI/AAAAAAAAN74/yEHMZL9l8xs/s800/CardLayoutTabbedPane.png
hreflang:
    href: https://java-swing-tips.blogspot.com/2008/11/create-jtabbedpane-like-component-using.html
    lang: en
---
* 概要 [#u2e4ee0a]
* 概要 [#summary]
`CardLayout`と`JRadioButton`や`JTableHeader`を組み合わせて`JTabbedPane`風のコンポーネントを作成します。

#download(https://lh5.googleusercontent.com/_9Z4BYR88imo/TQTIbe7vt7I/AAAAAAAAASw/SGFMcgCN_r4/s800/CardLayoutTabbedPane.png)
#download(https://lh3.googleusercontent.com/-i_zX5mZNCL0/VZBOp7c2kwI/AAAAAAAAN74/yEHMZL9l8xs/s800/CardLayoutTabbedPane.png)

* サンプルコード [#wd961a26]
* サンプルコード [#sourcecode]
#code(link){{
class CardLayoutTabbedPane extends JPanel {
  protected final CardLayout cardLayout = new CardLayout();
  protected final JPanel tabPanel = new JPanel(new GridLayout(1, 0, 0, 0));
  protected final JPanel wrapPanel = new JPanel(new BorderLayout(0, 0));
  protected final JPanel contentsPanel = new JPanel(cardLayout);
  protected final ButtonGroup bg = new ButtonGroup();
  public CardLayoutTabbedPane() {
    super(new BorderLayout());
    int left  = 1;
    int right = 3;
    tabPanel.setBorder(BorderFactory.createEmptyBorder(1,left,0,right));
    contentsPanel.setBorder(BorderFactory.createEmptyBorder(4,left,2,right));
    tabPanel.setBorder(
      BorderFactory.createEmptyBorder(1, left, 0, right));
    contentsPanel.setBorder(
      BorderFactory.createEmptyBorder(4, left, 2, right));
    wrapPanel.add(tabPanel);
    wrapPanel.add(new JLabel("test:"), BorderLayout.WEST);
    add(wrapPanel, BorderLayout.NORTH);
    add(contentsPanel);
  }
  public void addTab(final String title, final Component comp) {

  public void addTab(String title, Component comp) {
    JRadioButton b = new TabButton(new AbstractAction(title) {
      @Override public void actionPerformed(ActionEvent e) {
        cardLayout.show(contentsPanel, title);
      }
    });
    tabPanel.add(b);
    bg.add(b);
    b.setSelected(true);
    contentsPanel.add(comp, title);
    cardLayout.show(contentsPanel, title);
  }
}
}}

* 解説 [#w7802e67]
`CardLayout`で`JTabbedPane`風のコンポーネントを作成すると、タブエリアのレイアウトをネストしてコンポーネントの追加したり、レイアウトマネージャーを変更することで、タブの配置を変更することが簡単になります。
* 解説 [#explanation]
- `CardLayout`と`JRadioButton`を使用して`JTabbedPane`風のコンポーネントを作成
-- `CardLayout`でパネルを切り替えるためのタブとして`UI`を変更してチェックアイコンを非表示にした`JRadioButton`を使用
-- これらのタブを配置するタブエリア(`JPanel`)のレイアウトマネージャーに`GridLayout`を適用して、すべてのタブサイズが均等になるように設定
-- `CardLayout`+`JTableHeader`を使用したサンプルは[[JTableHeaderで作成したタブエリアでCardLayoutのコンテナを切り替える>Swing/TableHeaderTabArea]]に移動

- `CardLayout`+`JRadioButton`
-- 上記のサンプルでは、`JRadioButton`を`GridLayout`で、均等なサイズになるように並べています。
-- `UI`を変更して、チェックは非表示にしています。
-- マウスでタブを押した時ではなく、 %%(`Opera`風に)%% 放した時に切り替わります。

- `CardLayout`+`JTableHeader`
-- 空の`JTable`を作成して`JTableHeader`を取り出して利用しています。
-- `JTableHeader`のドラッグ&ドロップによる入れ替えや、ヘッダ(タブ)幅のリサイズが利用できます。

* 参考リンク [#w973281a]
* 参考リンク [#reference]
- [[JTabbedPaneのタブをドラッグ&ドロップ>Swing/DnDTabbedPane]]
- [[TabbedPane風のタブ配置をレイアウトマネージャーで変更>Swing/NewTabButton]]
- [[JTableHeaderで作成したタブエリアでCardLayoutのコンテナを切り替える>Swing/TableHeaderTabArea]]

* コメント [#i7cab3fd]
* コメント [#comment]
#comment
- `CloseButton`(ダミー)を追加。 -- &user(aterai); &new{2008-10-29 (水) 18:14:02};
- タブに`CloseButton`を追加。 -- &user(aterai); &new{2008-10-29 (水) 18:14:02};

#comment