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

Last change on this file since 544 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
RevLine 
[34]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>
[133]10#import "PSMediaAlert.h"
[34]11
[53]12@class BDAlias;
[544]13@class QTMovie;
[34]14
[133]15@interface PSMovieAlert : PSMediaAlert {
[34]16 BDAlias *alias;
17 BOOL hasAudio;
18 BOOL hasVideo;
19}
20
21+ (PSMovieAlert *)alertWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned short)numReps;
22
[53]23- (id)initWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps;
[34]24
25- (BOOL)hasVideo;
[543]26- (QTMovie *)movie;
[53]27- (BDAlias *)movieFileAlias;
[34]28
29@end
Note: See TracBrowser for help on using the repository browser.