FileDocCategorySizeDatePackage
MyViewChooser.javaAPI DocExample1398Mon Nov 09 12:45:48 GMT 1998None

MyViewChooser

public class MyViewChooser extends JFrame

Fields Summary
JFrame
parent
Constructors Summary
public MyViewChooser()

    super("File View Test Frame");
    setSize(350, 200);
    addWindowListener(new BasicWindowMonitor());
    parent = this;

    Container c = getContentPane();
    c.setLayout(new FlowLayout());
    
    JButton openButton = new JButton("Open");
    final JLabel statusbar = 
                 new JLabel("Output of your selection will go here");

    openButton.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent ae) {
        JFileChooser chooser = new JFileChooser();

        // ok, set up our own file view for the chooser
        chooser.setFileView(new ThumbNailFileView(MyViewChooser.this));

        int option = chooser.showOpenDialog(parent);
        if (option == JFileChooser.APPROVE_OPTION) {
          statusbar.setText("You chose " + 
                            chooser.getSelectedFile().getName());
        }
        else {
          statusbar.setText("You cancelled.");
        }
      }
    });

    c.add(openButton);
    c.add(statusbar);
  
Methods Summary
public static voidmain(java.lang.String[] args)

    MyViewChooser vc = new MyViewChooser();
    vc.setVisible(true);