-//
-// iTunesRemoteControl.h
-// MenuTunes
-//
-// Created by Matt L. Judy on Sun Jan 05 2003.
-// Copyright (c) 2003 NibFile.com. All rights reserved.
-//
-
+/*
+ * MenuTunes
+ * iTunesRemote.h
+ *
+ * Copyright (c) 2003 iThink Software
+ *
+ */
#import <Cocoa/Cocoa.h>
#import <Carbon/Carbon.h>
#import <ITMTRemote/ITMTRemote.h>
#import <ITFoundation/ITFoundation.h>
+#import <ITMac/ITMac.h>
+
+@class PlaylistNode;
@interface iTunesRemote : ITMTRemote <ITMTRemote>
{
- ProcessSerialNumber iTunesPSN;
+ ProcessSerialNumber savedPSN;
+ float _iTunesVersion;
}
+- (BOOL)isPlaying;
- (ProcessSerialNumber)iTunesPSN;
-- (void)applicationLaunched:(NSNotification *)note;
-- (void)applicationTerminated:(NSNotification *)note;
+- (NSString*)formatTimeInSeconds:(long)seconds;
+- (NSString*)zeroSixty:(int)seconds;
@end