FileDocCategorySizeDatePackage
ColorPicker2.javaAPI DocExample1409Thu Oct 24 20:14:24 BST 2002None

ColorPicker2

public class ColorPicker2 extends JFrame

Fields Summary
Color
c
Constructors Summary
public ColorPicker2()

    super("JColorChooser Test Frame");
    setSize(200, 100);

    final JButton go = new JButton("Show JColorChoser");
    final Container contentPane = getContentPane();
    go.addActionListener(new ActionListener() {
      final JColorChooser chooser = new JColorChooser();
      boolean first = true;
      public void actionPerformed(ActionEvent e) {
        if (first) {
          first = false;
          GrayScalePanel gsp = new GrayScalePanel();
          chooser.addChooserPanel(gsp);
        }
        JDialog dialog = JColorChooser.createDialog(ColorPicker2.this, 
                         "Demo 2", true, chooser, new ActionListener() {
                            public void actionPerformed(ActionEvent e) {
                              c = chooser.getColor();
                            }}, null);
        dialog.setVisible(true);
        contentPane.setBackground(c);
      }
    });
    contentPane.add(go);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
  
Methods Summary
public static voidmain(java.lang.String[] args)

    ColorPicker2 cp2 = new ColorPicker2();
    cp2.setVisible(true);