Retired Document
Important: This sample code may not represent best practices for current development. The project may use deprecated symbols and illustrate technologies and techniques that are no longer recommended.
src/JavaDrawing.java
/* |
* QuickTime for Java SDK Sample Code |
Usage subject to restrictions in SDK License Agreement |
* Copyright: © 1996-1999 Apple Computer, Inc. |
*/ |
import java.awt.*; |
import java.awt.event.*; |
import quicktime.*; |
import quicktime.app.QTFactory; |
import quicktime.app.display.*; |
import quicktime.app.image.*; |
public class JavaDrawing extends Frame { |
public static void main (String args[]) { |
try { |
QTSession.open(); |
JavaDrawing jd = new JavaDrawing("QT in Java"); |
jd.pack(); |
jd.show(); |
jd.toFront(); |
} catch (Exception e) { |
e.printStackTrace(); |
QTSession.close(); |
} |
} |
JavaDrawing (String title) throws Exception { |
super (title); |
setBackground (Color.lightGray); |
QTCanvas myQTCanvas = new QTCanvas (QTCanvas.kFreeResize, 0.5f, 0.5f); |
add("Center", myQTCanvas); |
// add a WindowListener to close the program down |
addWindowListener (new WindowAdapter () { |
public void windowClosing (WindowEvent e) { |
QTSession.close(); |
dispose(); |
} |
public void windowClosed (WindowEvent e) { |
System.exit(0); |
} |
}); |
JavaPainter jp = new JavaPainter (this, QTFactory.findAbsolutePath ("duke/T3.gif").getCanonicalPath()); |
jp.prepareImage(); |
QTImageDrawer qid = new QTImageDrawer (jp, new Dimension (160, 110), Redrawable.kSingleFrame); |
myQTCanvas.setClient (qid, true); |
} |
} |
Copyright © 2003 Apple Computer, Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2003-01-14