source: trunk/Cocoa/Pester/Source/PSMovieAlert.h@ 622

Last change on this file since 622 was 544, checked in by Nicholas Riley, 15 years ago

Don't keep QTMovies around (and corresponding files open) for pending alarms; we could run out of file handles this way.

File size: 594 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 "PSMediaAlert.h"
11
12@class BDAlias;
13@class QTMovie;
14
15@interface PSMovieAlert : PSMediaAlert {
16 BDAlias *alias;
17 BOOL hasAudio;
18 BOOL hasVideo;
19}
20
21+ (PSMovieAlert *)alertWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned short)numReps;
22
23- (id)initWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps;
24
25- (BOOL)hasVideo;
26- (QTMovie *)movie;
27- (BDAlias *)movieFileAlias;
28
29@end
Note: See TracBrowser for help on using the repository browser.