Last change
on this file since 90 was 53, checked in by Nicholas Riley, 22 years ago |
Updated for Pester 1.1a5 (very limited release).
Pester 1.1a4 was never released.
|
File size:
651 bytes
|
Rev | Line | |
---|
[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>
|
---|
| 10 | #import "PSAlert.h"
|
---|
| 11 |
|
---|
[53] | 12 | @class BDAlias;
|
---|
[34] | 13 |
|
---|
| 14 | @interface PSMovieAlert : PSAlert {
|
---|
| 15 | BDAlias *alias;
|
---|
| 16 | NSMovie *movie;
|
---|
| 17 | unsigned short repetitions;
|
---|
| 18 | BOOL hasAudio;
|
---|
| 19 | BOOL hasVideo;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | + (PSMovieAlert *)alertWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned short)numReps;
|
---|
| 23 |
|
---|
[53] | 24 | - (id)initWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps;
|
---|
[34] | 25 |
|
---|
| 26 | - (BOOL)hasVideo;
|
---|
| 27 | - (NSMovie *)movie;
|
---|
[53] | 28 | - (BDAlias *)movieFileAlias;
|
---|
[34] | 29 | - (unsigned short)repetitions;
|
---|
| 30 |
|
---|
| 31 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.