cog/Application/AppController.h

86 lines
2.3 KiB
C
Raw Normal View History

2005-06-02 18:16:43 +00:00
/* AppController */
#import <Cocoa/Cocoa.h>
2006-09-10 21:27:20 +00:00
#import "NDHotKeyEvent.h"
@class PlaybackController;
@class PlaylistController;
@class PlaylistView;
@class FileTreeDataSource;
@class FileOutlineView;
@class AppleRemote;
@class PlaylistLoader;
2005-06-02 18:16:43 +00:00
@interface AppController : NSObject
{
IBOutlet PlaybackController *playbackController;
IBOutlet PlaylistController *playlistController;
IBOutlet PlaylistLoader *playlistLoader;
IBOutlet NSWindow *mainWindow;
2008-01-23 03:03:46 +00:00
IBOutlet NSSegmentedControl *playbackButtons;
IBOutlet NSButton *infoButton;
2006-09-02 16:09:20 +00:00
IBOutlet NSButton *fileButton;
IBOutlet NSButton *shuffleButton;
IBOutlet NSButton *repeatButton;
IBOutlet NSTextField *totalTimeField;
2006-04-04 01:08:21 +00:00
IBOutlet NSDrawer *infoDrawer;
2006-09-02 16:09:20 +00:00
IBOutlet NSDrawer *fileDrawer;
IBOutlet FileTreeDataSource *fileTreeDataSource;
IBOutlet FileOutlineView *fileOutlineView;
2006-09-10 21:27:20 +00:00
IBOutlet PlaylistView *playlistView;
IBOutlet NSMenuItem *showIndexColumn;
IBOutlet NSMenuItem *showTitleColumn;
IBOutlet NSMenuItem *showArtistColumn;
IBOutlet NSMenuItem *showAlbumColumn;
IBOutlet NSMenuItem *showGenreColumn;
IBOutlet NSMenuItem *showLengthColumn;
IBOutlet NSMenuItem *showTrackColumn;
IBOutlet NSMenuItem *showYearColumn;
IBOutlet NSWindowController *spotlightWindowController;
2006-09-10 21:27:20 +00:00
NDHotKeyEvent *playHotKey;
NDHotKeyEvent *prevHotKey;
NDHotKeyEvent *nextHotKey;
2007-02-18 23:00:55 +00:00
AppleRemote *remote;
BOOL remoteButtonHeld; /* true as long as the user holds the left,right,plus or minus on the remote control */
2005-06-02 18:16:43 +00:00
}
2005-06-07 19:28:44 +00:00
- (IBAction)openURL:(id)sender;
2006-09-02 16:09:20 +00:00
- (IBAction)openFiles:(id)sender;
2005-06-02 18:16:43 +00:00
- (IBAction)delEntries:(id)sender;
- (IBAction)savePlaylist:(id)sender;
2006-04-04 01:08:21 +00:00
- (IBAction)donate:(id)sender;
- (IBAction)toggleInfoDrawer:(id)sender;
2006-09-02 16:09:20 +00:00
- (IBAction)toggleFileDrawer:(id)sender;
2006-04-04 01:08:21 +00:00
- (void)drawerDidOpen:(NSNotification *)notification;
- (void)drawerDidClose:(NSNotification *)notification;
//Fun stuff
2005-06-02 18:16:43 +00:00
- (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)flag;
- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename;
- (void)application:(NSApplication *)theApplication openFiles:(NSArray *)filenames;
2006-09-02 16:09:20 +00:00
- (void)registerHotKeys;
OSStatus handleHotKey(EventHandlerCallRef nextHandler,EventRef theEvent,void *userData);
- (void)clickPlay;
- (void)clickPrev;
- (void)clickNext;
2005-06-02 18:16:43 +00:00
@end