/* File: QTMovieLayer.h Copyright: (c)2005-2012 by Apple Inc., all rights reserved. */ /* Note: do not attempt to directly modify the `contents' property of * an QTMovieLayer object - doing so will effectively turn it into a * regular CALayer. */ #import #import #if (QTKIT_VERSION_MAX_ALLOWED >= QTKIT_VERSION_7_2) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) #import @class QTMovie; @class QTMovieLayerPrivate; @class QTInfoLayer; @interface QTMovieLayer : CALayer // QTMovieLayer is a layer that renders a QTMovie within a layer hierarchy { @private QTMovieLayerPrivate * _movieLayerPriv; } + (id)layerWithMovie:(QTMovie *)movie; - (id)initWithMovie:(QTMovie *)movie; // the designated initializer - (void)setMovie:(QTMovie *)movie; - (QTMovie *)movie; @end #endif /* (QTKIT_VERSION_MAX_ALLOWED >= QTKIT_VERSION_7_2) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) */