Detect if Java Swing component has been hidden
- by kayahr
Assume we have the following Swing application:
final JFrame frame = new JFrame();
final JPanel outer = new JPanel();
frame.add(outer);
JComponent inner = new SomeSpecialComponent();
outer.add(inner);
So in this example we simply have an outer panel in the frame and a special component in the panel. This special component…