Last change
on this file since 547 was 543, checked in by Nicholas Riley, 15 years ago |
Minimally convert media playback to QTKit. Some direct QuickTime access still needs migrating.
|
File size:
677 bytes
|
Rev | Line | |
---|
[34] | 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;
|
---|
[543] | 13 | @class QTMovieView;
|
---|
[34] | 14 |
|
---|
| 15 | @interface PSMovieAlertController : NSWindowController {
|
---|
[53] | 16 | PSAlarm *alarm;
|
---|
| 17 | PSMovieAlert *alert;
|
---|
[543] | 18 | IBOutlet QTMovieView *movieView;
|
---|
[34] | 19 | void *theMovie; /* Movie */
|
---|
| 20 | unsigned short repetitions;
|
---|
[133] | 21 | unsigned short repetitionsRemaining;
|
---|
[34] | 22 | }
|
---|
| 23 |
|
---|
[53] | 24 | + (PSMovieAlertController *)controllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
[34] | 25 |
|
---|
[53] | 26 | - (id)initWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
[34] | 27 |
|
---|
| 28 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.