2012-03-14 16:47:21 +00:00
|
|
|
/*
|
2015-01-03 21:30:57 +00:00
|
|
|
Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2012-03-14 16:47:21 +00:00
|
|
|
|
2015-01-03 21:33:16 +00:00
|
|
|
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2012-03-14 16:47:21 +00:00
|
|
|
which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
2012-03-14 16:47:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import "IgnoreListDialog.h"
|
2012-07-22 16:46:43 +00:00
|
|
|
#import "IgnoreListDialog_UI.h"
|
2012-05-28 18:45:13 +00:00
|
|
|
#import "HSPyUtil.h"
|
2012-03-14 16:47:21 +00:00
|
|
|
|
|
|
|
@implementation IgnoreListDialog
|
2012-07-22 16:46:43 +00:00
|
|
|
|
|
|
|
@synthesize model;
|
|
|
|
@synthesize ignoreListTableView;
|
|
|
|
|
2012-03-14 16:47:21 +00:00
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef
|
|
|
|
{
|
2012-07-22 16:46:43 +00:00
|
|
|
self = [super initWithWindow:nil];
|
|
|
|
self.model = [[[PyIgnoreListDialog alloc] initWithModel:aPyRef] autorelease];
|
|
|
|
[self.model bindCallback:createCallback(@"IgnoreListDialogView", self)];
|
|
|
|
[self setWindow:createIgnoreListDialog_UI(self)];
|
2012-03-14 16:47:21 +00:00
|
|
|
ignoreListTable = [[HSTable alloc] initWithPyRef:[model ignoreListTable] tableView:ignoreListTableView];
|
|
|
|
[self initializeColumns];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[ignoreListTable release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)initializeColumns
|
|
|
|
{
|
|
|
|
HSColumnDef defs[] = {
|
|
|
|
{@"path1", 240, 40, 0, NO, nil},
|
|
|
|
{@"path2", 240, 40, 0, NO, nil},
|
|
|
|
nil
|
|
|
|
};
|
|
|
|
[[ignoreListTable columns] initializeColumns:defs];
|
|
|
|
[[ignoreListTable columns] setColumnsAsReadOnly];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* model --> view */
|
|
|
|
- (void)show
|
|
|
|
{
|
|
|
|
[self showWindow:self];
|
|
|
|
}
|
|
|
|
@end
|