git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Positioning Fixes. The window might still do some weirdness if you change its positi...
[MenuTunes.git]
/
MainController.h
diff --git
a/MainController.h
b/MainController.h
index
8438c82
..
ae6f7fd
100755
(executable)
--- a/
MainController.h
+++ b/
MainController.h
@@
-17,8
+17,9
@@
#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, MenuController;
+@class StatusWindowController, MenuController
, NetworkController
;
@interface MainController : NSObject
{
@interface MainController : NSObject
{
@@
-32,16
+33,27
@@
//Used in updating the menu automatically
NSTimer *refreshTimer;
NSString *_latestSongIdentifier;
//Used in updating the menu automatically
NSTimer *refreshTimer;
NSString *_latestSongIdentifier;
-
+
StatusWindowController *statusWindowController; //Shows status windows
MenuController *menuController;
StatusWindowController *statusWindowController; //Shows status windows
MenuController *menuController;
+ NetworkController *networkController;
NSUserDefaults *df;
NSUserDefaults *df;
+
+ MTBlingController *bling;
+ NSTimer *registerTimer;
+ BOOL timerUpdating;
+ BOOL blinged;
}
+ (MainController *)sharedController;
- (void)menuClicked;
//Methods called from MenuController by menu items
}
+ (MainController *)sharedController;
- (void)menuClicked;
//Methods called from MenuController by menu items
+- (NSDate*)getBlingTime;
+- (void)blingTime;
+- (void)blingNow;
+- (BOOL)blingBling;
+
- (void)playPause;
- (void)nextSong;
- (void)prevSong;
- (void)playPause;
- (void)nextSong;
- (void)prevSong;
@@
-51,13
+63,25
@@
- (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)showPreferences;
+- (void)showTestWindow;
- (void)quitMenuTunes;
//
- (void)quitMenuTunes;
//
+- (void)setServerStatus:(BOOL)newStatus;
+- (int)connectToServer;
+- (BOOL)disconnectFromServer;
+- (void)networkError:(NSException *)exception;
+
+//
+
- (ITMTRemote *)currentRemote;
- (void)clearHotKeys;
- (ITMTRemote *)currentRemote;
- (void)clearHotKeys;
+- (void)setupHotKeys;
- (void)closePreferences;
- (void)closePreferences;
+- (void)showCurrentTrackInfo;
+
@end
@end