2010-04-12 12:21:01 +02:00
|
|
|
/*
|
2013-04-28 10:35:51 -04:00
|
|
|
Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2010-04-12 12:21:01 +02:00
|
|
|
|
2010-09-30 12:17:41 +02:00
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2010-04-12 12:21:01 +02:00
|
|
|
which should be included with this package. The terms are also available at
|
2010-09-30 12:17:41 +02:00
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
2010-04-12 12:21:01 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PyProblemDialog.h"
|
2012-01-13 14:43:43 -05:00
|
|
|
#import "HSTable.h"
|
2010-04-12 12:21:01 +02:00
|
|
|
|
2012-01-13 12:19:23 -05:00
|
|
|
@interface ProblemDialog : NSWindowController
|
2010-04-12 12:21:01 +02:00
|
|
|
{
|
2012-01-13 12:19:23 -05:00
|
|
|
PyProblemDialog *model;
|
2012-01-13 14:43:43 -05:00
|
|
|
HSTable *problemTable;
|
2012-07-23 11:04:13 -04:00
|
|
|
NSTableView *problemTableView;
|
2010-04-12 12:21:01 +02:00
|
|
|
}
|
2012-07-23 11:04:13 -04:00
|
|
|
|
|
|
|
@property (readwrite, retain) PyProblemDialog *model;
|
|
|
|
@property (readwrite, retain) NSTableView *problemTableView;
|
|
|
|
|
2012-01-13 15:25:34 -05:00
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef;
|
2010-04-12 12:21:01 +02:00
|
|
|
|
2011-11-28 10:45:11 -05:00
|
|
|
- (void)initializeColumns;
|
2010-04-12 12:21:01 +02:00
|
|
|
@end
|