JFrame: getGlassPane() : JFrame « javax.swing « Java by API






JFrame: getGlassPane()

  
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class MainClass {

  public static void main(String[] args) {
    JFrame f = new JFrame();
    
    final JPanel p1 = new JPanel();
    p1.add(new JLabel("GlassPane Example"));
    JButton show = new JButton("Show");
    p1.add(show);
    p1.add(new JButton("No-op"));
    f.getContentPane().add(p1);

    final JPanel glass = (JPanel)f.getGlassPane();

    glass.setVisible(true);
    glass.setLayout(new GridBagLayout());
    JButton glassButton = new JButton("Hide");
    glass.add(glassButton);

    f.setSize(150, 80);
    f.setVisible(true);

    show.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        glass.setVisible(true);
        p1.repaint();
      }
    });
    glassButton.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        glass.setVisible(false);
        p1.repaint();
      }
    });
  }
}

           
         
    
  








Related examples in the same category

1.JFrame.DISPOSE_ON_CLOSE
2.JFrame.DO_NOTHING_ON_CLOSE
3.JFrame.EXIT_ON_CLOSE
4.JFrame: addComponentListener(ComponentListener l)
5.JFrame: addContainerListener(ContainerListener l)1
6.JFrame: addMouseWheelListener(MouseWheelListener l)
7.JFrame: addWindowListener(WindowListener lis)
8.JFrame: getAccessibleContext()
9.JFrame: getContentPane().getActionMap() [Bind key action to JFrame]
10.JFrame: getDefaultCloseOperation()
11.JFrame: getFontMetrics(Font font)
12.JFrame: getLayeredPane()
13.JFrame: isFocusOwner()
14.JFrame: isUndecorated()
15.JFrame: processWindowEvent(WindowEvent e)
16.JFrame: setAlwaysOnTop(boolean alwaysOnTop)
17.JFrame: setBackground(Color c)
18.JFrame: setCursor(Cursor c)
19.JFrame: setDefaultButton(JButton defaultButton)
20.JFrame: setDefaultButton(JButton bn) (Remove 'Enter' key stroke from JTextField)
21.JFrame: setDefaultCloseOperation(int option)
22.JFrame: setDefaultLookAndFeelDecorated(boolean b)
23.JFrame: setExtendedState(int state)
24.JFrame: setFocusable(boolean focusable)
25.JFrame: setFocusableWindowState(boolean focusableWindowState)
26.JFrame: setFocusTraversalPolicy(FocusTraversalPolicy lo)
27.JFrame: setIconImage(Image image)
28.JFrame: setJMenuBar(JMenuBar bar)
29.JFrame: setLocation(int x, int y)
30.JFrame: setLocationByPlatform(boolean locationByPlatform)
31.JFrame: setLocationRelativeTo(Component c)
32.JFrame: setMaximizedBounds(Rectangle bounds)
33.JFrame: setSize(int width, int height)
34.JFrame: setTitle(String title)
35.JFrame: setUndecorated(boolean b)
36.JFrame: setVisible(boolean visible)