The hotkey for showing track info now calls a different method that will hide the...
[MenuTunes.git] / iTunesRemote.h
1 //
2 //  iTunesRemoteControl.h
3 //  MenuTunes
4 //
5 //  Created by Matt L. Judy on Sun Jan 05 2003.
6 //  Copyright (c) 2003 iThink Software. All rights reserved.
7 //
8
9
10 #import <Cocoa/Cocoa.h>
11 #import <Carbon/Carbon.h>
12 #import <ITMTRemote/ITMTRemote.h>
13 #import <ITFoundation/ITFoundation.h>
14 #import <ITMac/ITMac.h>
15
16 @class PlaylistNode;
17
18 @interface iTunesRemote : ITMTRemote <ITMTRemote>
19 {
20     ProcessSerialNumber savedPSN;
21         float _iTunesVersion;
22 }
23 - (BOOL)isPlaying;
24 - (ProcessSerialNumber)iTunesPSN;
25 - (NSString*)formatTimeInSeconds:(long)seconds;
26 - (NSString*)zeroSixty:(int)seconds;
27 @end