git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed launch player with MenuTunes checkbox in prefs.
[MenuTunes.git]
/
MainController.h
diff --git
a/MainController.h
b/MainController.h
index
3db1655
..
1245103
100755
(executable)
--- a/
MainController.h
+++ b/
MainController.h
@@
-17,31
+17,40
@@
#import <ITKit/ITKit.h>
#import <ITFoundation/ITFoundation.h>
#import <ITMTRemote/ITMTRemote.h>
#import <ITKit/ITKit.h>
#import <ITFoundation/ITFoundation.h>
#import <ITMTRemote/ITMTRemote.h>
+#import "MTBlingController.h"
-
-@class StatusWindowController;
-
+@class StatusWindowController, MenuController;
@interface MainController : NSObject
{
ITStatusItem *statusItem;
NSMutableArray *remoteArray;
ITMTRemote *currentRemote;
@interface MainController : NSObject
{
ITStatusItem *statusItem;
NSMutableArray *remoteArray;
ITMTRemote *currentRemote;
-
+
ITMTRemotePlayerRunningState playerRunningState;
ITMTRemotePlayerPlaylistClass latestPlaylistClass;
//Used in updating the menu automatically
NSTimer *refreshTimer;
ITMTRemotePlayerRunningState playerRunningState;
ITMTRemotePlayerPlaylistClass latestPlaylistClass;
//Used in updating the menu automatically
NSTimer *refreshTimer;
-
NSString *_latestSongIdentifier;
NSString *_latestSongIdentifier;
-
- StatusWindowController *statusWindowController; //Shows track info and upcoming songs.
+
+ StatusWindowController *statusWindowController; //Shows status windows
+ MenuController *menuController;
NSUserDefaults *df;
NSUserDefaults *df;
+
+ NSDate *blingDate;
+ MTBlingController *bling;
+ BOOL timerUpdating;
}
+ (MainController *)sharedController;
}
+ (MainController *)sharedController;
+- (void)menuClicked;
+
//Methods called from MenuController by menu items
//Methods called from MenuController by menu items
+- (void)blingTime;
+- (void)blingNow;
+- (BOOL)blingBling;
+
- (void)playPause;
- (void)nextSong;
- (void)prevSong;
- (void)playPause;
- (void)nextSong;
- (void)prevSong;
@@
-51,6
+60,7
@@
- (void)selectSongAtIndex:(int)index;
- (void)selectSongRating:(int)rating;
- (void)selectEQPresetAtIndex:(int)index;
- (void)selectSongAtIndex:(int)index;
- (void)selectSongRating:(int)rating;
- (void)selectEQPresetAtIndex:(int)index;
+- (void)showPlayer;
- (void)showPreferences;
- (void)quitMenuTunes;
- (void)showPreferences;
- (void)quitMenuTunes;
@@
-58,6
+68,7
@@
- (ITMTRemote *)currentRemote;
- (void)clearHotKeys;
- (ITMTRemote *)currentRemote;
- (void)clearHotKeys;
+- (void)setupHotKeys;
- (void)closePreferences;
@end
- (void)closePreferences;
@end