dupeguru-cocoa/cocoa/ProblemDialog.h

27 lines
695 B
C
Raw Normal View History

2017-03-11 19:18:27 -06:00
/*
2017-04-04 20:45:59 -05:00
Copyright 2017 Virgil Dupras
2017-03-11 19:18:27 -06:00
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
which should be included with this package. The terms are also available at
http://www.gnu.org/licenses/gpl-3.0.html
*/
#import <Cocoa/Cocoa.h>
#import "PyProblemDialog.h"
#import "HSTable.h"
@interface ProblemDialog : NSWindowController
{
PyProblemDialog *model;
HSTable *problemTable;
2017-04-04 20:45:59 -05:00
IBOutlet NSTableView *problemTableView;
2017-03-11 19:18:27 -06:00
}
@property (readwrite, retain) PyProblemDialog *model;
@property (readwrite, retain) NSTableView *problemTableView;
- (id)initWithPyRef:(PyObject *)aPyRef;
- (void)initializeColumns;
2017-04-04 20:45:59 -05:00
- (IBAction)revealSelected:(id)sender;
2017-03-11 19:18:27 -06:00
@end