2009-03-07 19:31:57 -03:00
|
|
|
//
|
|
|
|
// InfoWindowController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/7/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2013-10-11 16:10:30 -03:00
|
|
|
#import "AppController.h"
|
2022-02-07 02:49:27 -03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-07 19:31:57 -03:00
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface InfoWindowController : NSWindowController {
|
2009-03-07 19:31:57 -03:00
|
|
|
IBOutlet id playlistSelectionController;
|
2022-02-07 02:49:27 -03:00
|
|
|
IBOutlet id currentEntryController;
|
|
|
|
IBOutlet AppController *appController;
|
2013-10-11 16:10:30 -03:00
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
id __unsafe_unretained valueToDisplay;
|
2009-03-07 19:31:57 -03:00
|
|
|
}
|
|
|
|
|
2013-10-11 16:10:30 -03:00
|
|
|
@property(assign) id valueToDisplay;
|
2009-03-07 19:31:57 -03:00
|
|
|
|
|
|
|
- (IBAction)toggleWindow:(id)sender;
|
|
|
|
|
|
|
|
@end
|