2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2010-01-01 20:11:34 +00:00
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
|
|
|
This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/hs_license
|
|
|
|
*/
|
|
|
|
|
2009-06-15 12:33:58 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2010-02-07 15:19:14 +00:00
|
|
|
#import "HSWindowController.h"
|
2009-06-15 12:33:58 +00:00
|
|
|
#import "PyApp.h"
|
2010-02-05 19:10:54 +00:00
|
|
|
#import "PyDetailsPanel.h"
|
2009-06-15 12:33:58 +00:00
|
|
|
|
2010-02-07 15:19:14 +00:00
|
|
|
@interface DetailsPanel : HSWindowController
|
2009-06-15 12:33:58 +00:00
|
|
|
{
|
2010-02-05 19:10:54 +00:00
|
|
|
IBOutlet NSTableView *detailsTable;
|
2009-06-15 12:33:58 +00:00
|
|
|
}
|
|
|
|
- (id)initWithPy:(PyApp *)aPy;
|
2010-02-07 15:19:14 +00:00
|
|
|
- (PyDetailsPanel *)py;
|
2009-06-15 12:33:58 +00:00
|
|
|
|
2009-11-02 15:16:34 +00:00
|
|
|
- (void)toggleVisibility;
|
2009-06-15 12:53:47 +00:00
|
|
|
|
2010-02-05 19:10:54 +00:00
|
|
|
/* Python --> Cocoa */
|
|
|
|
- (void)refresh;
|
2009-06-15 12:33:58 +00:00
|
|
|
@end
|