source: trunk/Cocoa/Pester/Source/NJRQTMediaPopUpButton.h@ 130

Last change on this file since 130 was 53, checked in by Nicholas Riley, 21 years ago

Updated for Pester 1.1a5 (very limited release).

Pester 1.1a4 was never released.

File size: 658 bytes
Line 
1//
2// NJRQTMediaPopUpButton.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 "BDAlias.h"
11
12extern NSString * const NJRQTMediaPopUpButtonMovieChangedNotification;
13
14@interface NJRQTMediaPopUpButton : NSPopUpButton {
15 IBOutlet NSMovieView *preview;
16 BOOL movieCanRepeat;
17 NSMenuItem *otherItem;
18 BDAlias *selectedAlias, *previousAlias;
19 NSMutableArray *recentMediaAliasData;
20 BOOL dragAccepted;
21}
22
23- (BDAlias *)selectedAlias;
24- (void)setAlias:(BDAlias *)alias;
25
26- (BOOL)canRepeat;
27
28- (IBAction)stopSoundPreview:(id)sender;
29
30@end
Note: See TracBrowser for help on using the repository browser.