Last change
on this file since 215 was 34, checked in by Nicholas Riley, 22 years ago |
Changes for Pester 1.1d1.
|
File size:
617 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 | #import "BDAlias.h"
|
---|
12 |
|
---|
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)initWithAlias:(BDAlias *)anAlias repetitions:(unsigned int) numReps;
|
---|
25 |
|
---|
26 | - (BOOL)hasVideo;
|
---|
27 | - (NSMovie *)movie;
|
---|
28 | - (unsigned short)repetitions;
|
---|
29 |
|
---|
30 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.