Poked around a bit, added Show Player to MenuController
[MenuTunes.git] / StatusWindowController.m
1 //
2 //  StatusWindowController.m
3 //  MenuTunes
4 //
5 //  Created by Matthew L. Judy on Thu Apr 17 2003.
6 //  Copyright (c) 2003 NibFile.com. All rights reserved.
7 //
8
9 #import "StatusWindowController.h"
10
11
12 @implementation StatusWindowController
13
14
15 - (void)showSongWindowWithTitle:(NSString *)title
16                           album:(NSString *)album
17                          artist:(NSString *)artist
18                            time:(NSString *)time  // FLOW: Should probably be NSDate or something.
19                     trackNumber:       (int)trackNumber
20                      trackTotal:       (int)trackTotal
21                          rating:       (int)rating
22 {
23
24 }
25
26 - (void)showUpcomingSongsWithTitles:(NSArray *)titleStrings
27 {
28
29 }
30
31 - (void)showVolumeWindowWithLevel:(int)level
32 {
33
34 }
35
36 - (void)showRatingWindowWithLevel:(int)level
37 {
38
39 }
40
41 - (void)showShuffleWindowWithMode:(MTStatusWindowShuffleMode)mode
42 {
43
44 }
45
46 - (void)showLoopWindowWithMode:(MTStatusWindowLoopMode)mode
47 {
48
49 }
50
51 @end