summaryrefslogtreecommitdiffstats
path: root/macosx/HBAddCategoryController.m
blob: 598f70460c9ae3741361295645bfd2f8cf9d4479 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*  HBAddCategoryController.m

 This file is part of the HandBrake source code.
 Homepage: <http://handbrake.fr/>.
 It may be used under the terms of the GNU General Public License. */

#import "HBAddCategoryController.h"

#import "HBPresetsManager.h"
#import "HBPreset.h"

@interface HBAddCategoryController () <NSTextFieldDelegate>

@property (nonatomic, strong) IBOutlet NSTextField *name;
@property (nonatomic, strong) IBOutlet NSButton *createButton;

@property (nonatomic, strong) HBPresetsManager *manager;
@property (nonatomic, readwrite) HBPreset *category;

@end

@implementation HBAddCategoryController

- (instancetype)initWithPresetManager:(HBPresetsManager *)manager
{
    self = [super initWithWindowNibName:@"HBAddCategoryController"];
    if (self)
    {
        NSParameterAssert(manager);
        _manager = manager;
    }
    return self;
}

- (void)windowDidLoad
{
    [super windowDidLoad];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(controlTextDidChange:)
                                                 name:NSControlTextDidChangeNotification object:nil];
}

- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:NSControlTextDidChangeNotification object:nil];
}

- (void)controlTextDidChange:(NSNotification *)obj {
    self.createButton.enabled = self.name.stringValue.length > 0 ? YES : NO;
}

- (IBAction)dismiss:(id)sender
{
    if (self.window.isSheet)
    {
        [self.window.sheetParent endSheet:self.window returnCode:NSModalResponseCancel];
    }
    else
    {
        [NSApp stopModalWithCode:NSModalResponseCancel];
        [self.window orderOut:self];
    }
}

- (IBAction)create:(id)sender
{
    self.category = [[HBPreset alloc] initWithCategoryName:self.name.stringValue builtIn:NO];
    [self.manager addPreset:self.category];

    if (self.window.isSheet)
    {
        [self.window.sheetParent endSheet:self.window returnCode:NSModalResponseOK];
    }
    else
    {
        [NSApp stopModalWithCode:NSModalResponseOK];
        [self.window orderOut:self];
    }
}


@end