-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ExceptionsPref.h
26 lines (25 loc) · 991 Bytes
/
ExceptionsPref.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// ExceptionsPref.h
// Hachidori
//
// Created by 高町なのは on 2014/11/16.
// Copyright 2014-2015 MAL Updater OS X Group and James Moy All rights reserved. Code licensed under New BSD License
//
#import <Cocoa/Cocoa.h>
#import <MASPreferences/MASPreferences.h>
#import "FixSearchDialog.h"
#import "AppDelegate.h"
@class FixSearchDialog;
@interface ExceptionsPref : NSViewController <MASPreferencesViewController>{
NSManagedObjectContext *managedObjectContext;
}
@property (strong) IBOutlet NSArrayController * arraycontroller;
@property (strong) IBOutlet NSArrayController * ignorearraycontroller;
@property (strong) IBOutlet NSArrayController * ignorefilenamearraycontroller;
@property (strong) IBOutlet NSTableView * tb;
@property (strong) IBOutlet NSTableView * iftb;
@property (strong) NSString *detectedtitle;
@property int detectedseason;
@property(strong) FixSearchDialog *fsdialog;
@property (nonatomic, readonly) NSManagedObjectContext *managedObjectContext;
@end