私はJTabbedPanesをネストしたアプリケーションを持っています。各JTabbedPaneには、他のJTabbedPaneが含まれています。JTabbedPaneにタブを残さないようにする方法
ユーザーが現在のタブから離れることを許可する前に、何かを確認したいと思います。
次のコードを実行すると、[月] - [2月]タブに[許可]チェックボックスが表示されます。
[許可]チェックボックスをオンにすると、ユーザーが現在のパネルを離れてナビゲートできるようにします。そうでなければ、彼らはそれができるまで残すことができません。
次のコンポーネント(別のJTabbedPane上にある可能性があります)が表示される前に、そのリクエストを処理する方法が見つからないようです。
これは、[月] - [2月]タブに移動し、[色]タブを選択することで実証できます。
アイデア?
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.HierarchyEvent;
import java.awt.event.HierarchyListener;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.SwingUtilities;
public class VerifyBeforeLeavingTab extends JFrame
{
private static final long serialVersionUID = 1L;
public VerifyBeforeLeavingTab()
{
setSize(700, 700);
JTabbedPane mainTabbedPane = new JTabbedPane(JTabbedPane.TOP);
MyJTabbedPane colorsPane = new MyJTabbedPane(JTabbedPane.TOP, "colors");
JPanel bluePanel = new JPanel();
bluePanel.setBackground(Color.blue);
colorsPane.addTab("Blue", bluePanel);
JPanel redPanel = new JPanel();
redPanel.setBackground(Color.red);
colorsPane.addTab("Red", redPanel);
mainTabbedPane.addTab("Colors", colorsPane);
JTabbedPane monthsPane = new MyJTabbedPane(JTabbedPane.TOP, "months");
JPanel janPanel = new JPanel();
monthsPane.addTab("January", janPanel);
JPanel febPanel = new MyUnleavableJPanel();
monthsPane.addTab("February", febPanel);
mainTabbedPane.addTab("Months", monthsPane);
add(mainTabbedPane, BorderLayout.CENTER);
getContentPane().add(mainTabbedPane);
}
private class MyUnleavableJPanel extends JPanel
{
private static final long serialVersionUID = 1L;
public MyUnleavableJPanel()
{
final JCheckBox chckBoxAllowToLeave = new JCheckBox("Allow to leave");
chckBoxAllowToLeave.setBounds(100, 100, 50, 50);
this.add(chckBoxAllowToLeave);
addHierarchyListener(new HierarchyListener()
{
public void hierarchyChanged(HierarchyEvent e)
{
if ((HierarchyEvent.SHOWING_CHANGED & e.getChangeFlags()) != 0)
{
if (isShowing())
{
System.out.println("Showing an unleavable panel");
}
else
{
// TODO: Do not let them leave this JCheckbox is selected
if (chckBoxAllowToLeave.isSelected())
{
System.out.println("OK to leave");
}
else
{
System.out.println("Not allowed to leave");
}
}
}
}
});
}
}
private class MyJTabbedPane extends JTabbedPane
{
private static final long serialVersionUID = 1L;
public MyJTabbedPane(int i, String name)
{
super(i);
setName(name);
}
@Override
public void setSelectedIndex(int index)
{
System.out.println("Now on '" + getName() + "' tab #" + index);
super.setSelectedIndex(index);
}
}
private static void createAndShowGUI()
{
// Create and set up the window.
VerifyBeforeLeavingTab frame = new VerifyBeforeLeavingTab();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
try
{
createAndShowGUI();
}
catch (Exception e)
{
e.printStackTrace();
System.exit(0);
}
}
});
}
}
また、この[回答](http://stackoverflow.com/a/2016686/230513)も参照してください。 – trashgod