Licensing MenuTunes under the GNU General Public License version 2.
[MenuTunes.git] / iTunesRemote.h
index 9408c63..ef4e75b 100755 (executable)
@@ -1,20 +1,26 @@
-//
-//  iTunesRemote.h
-//  MenuTunes
-//
-//  Created by Joseph Spiros on Sat Sep 06 2003.
-//  Copyright (c) 2003 __MyCompanyName__. 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        _currentPSN;
-    iTunesPlayer _player;
-    BOOL _activated;
+@interface iTunesRemote : ITMTRemote <ITMTRemote>
+{
+    ProcessSerialNumber savedPSN;
+       float _iTunesVersion;
 }
+- (BOOL)isPlaying;
 - (ProcessSerialNumber)iTunesPSN;
+- (NSString*)formatTimeInSeconds:(long)seconds;
+- (NSString*)zeroSixty:(int)seconds;
 @end