Last change
on this file since 543 was
543,
checked in by Nicholas Riley, 11 years ago
|
Minimally convert media playback to QTKit. Some direct QuickTime? access still needs migrating.
|
File size:
622 bytes
|
Line | |
---|
1 | // |
---|
2 | // PSMovieAlert.h |
---|
3 | // Pester |
---|
4 | // |
---|
5 | // Created by Nicholas Riley on Sat Oct 26 2002. |
---|
6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved. |
---|
7 | // |
---|
8 | |
---|
9 | #import <AppKit/AppKit.h> |
---|
10 | #import <QTKit/QTKit.h> |
---|
11 | #import "PSMediaAlert.h" |
---|
12 | |
---|
13 | @class BDAlias; |
---|
14 | |
---|
15 | @interface PSMovieAlert : PSMediaAlert { |
---|
16 | BDAlias *alias; |
---|
17 | QTMovie *movie; |
---|
18 | BOOL hasAudio; |
---|
19 | BOOL hasVideo; |
---|
20 | } |
---|
21 | |
---|
22 | + (PSMovieAlert *)alertWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned short)numReps; |
---|
23 | |
---|
24 | - (id)initWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps; |
---|
25 | |
---|
26 | - (BOOL)hasVideo; |
---|
27 | - (QTMovie *)movie; |
---|
28 | - (BDAlias *)movieFileAlias; |
---|
29 | |
---|
30 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.