super ("Basic QT Player");
theMovie = m;
QTComponent qc = QTFactory.makeQTComponent (m);
Component c = qc.asComponent();
setLayout (new BorderLayout());
add (c, BorderLayout.CENTER);
Panel buttons = new Panel();
revButton = new Button("<");
revButton.addActionListener (this);
stopButton = new Button ("0");
stopButton.addActionListener (this);
startButton = new Button ("1");
startButton.addActionListener (this);
fwdButton = new Button (">");
fwdButton.addActionListener (this);
buttons.add (revButton);
buttons.add (stopButton);
buttons.add (startButton);
buttons.add (fwdButton);
add (buttons, BorderLayout.SOUTH);
pack();