Last change
on this file since 312 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
|
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 "PSAlert.h"
|
---|
11 |
|
---|
12 | @class BDAlias;
|
---|
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 |
|
---|
24 | - (id)initWithMovieFileAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps;
|
---|
25 |
|
---|
26 | - (BOOL)hasVideo;
|
---|
27 | - (NSMovie *)movie;
|
---|
28 | - (BDAlias *)movieFileAlias;
|
---|
29 | - (unsigned short)repetitions;
|
---|
30 |
|
---|
31 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.