Line | |
---|
1 | //
|
---|
2 | // PSMovieAlertController.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 |
|
---|
11 | @class PSAlarm;
|
---|
12 | @class PSMovieAlert;
|
---|
13 | @class QTMovieView;
|
---|
14 |
|
---|
15 | @interface PSMovieAlertController : NSWindowController {
|
---|
16 | PSAlarm *alarm;
|
---|
17 | PSMovieAlert *alert;
|
---|
18 | IBOutlet QTMovieView *movieView;
|
---|
19 | unsigned short repetitions;
|
---|
20 | unsigned short repetitionsRemaining;
|
---|
21 | }
|
---|
22 |
|
---|
23 | // note: retains itself until the alert completes
|
---|
24 | + (PSMovieAlertController *)newControllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
25 |
|
---|
26 | - (id)initWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
27 |
|
---|
28 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.