blob: 2587e4d46b4b49821462b5c053a231997ec1c5e5 (
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
|
/* HBSubtitlesDefaultsController.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 "HBSubtitlesDefaultsController.h"
#import "HBLanguagesSelection.h"
@import HandBrakeKit;
static void *HBSubtitlesDefaultsContext = &HBSubtitlesDefaultsContext;
@interface HBSubtitlesDefaultsController ()
@property (nonatomic, readonly) HBSubtitlesDefaults *settings;
@property (nonatomic, readonly) HBLanguagesSelection *languagesList;
@property (nonatomic, unsafe_unretained) IBOutlet HBLanguageArrayController *tableController;
@end
@implementation HBSubtitlesDefaultsController
- (instancetype)initWithSettings:(HBSubtitlesDefaults *)settings
{
self = [super initWithWindowNibName:@"SubtitlesDefaults"];
if (self)
{
_settings = settings;
_languagesList = [[HBLanguagesSelection alloc] initWithLanguages:_settings.trackSelectionLanguages];
_settings.undo = self.window.undoManager;
}
return self;
}
- (IBAction)ok:(id)sender
{
self.settings.trackSelectionLanguages = [self.languagesList.selectedLanguages mutableCopy];
[self.window.sheetParent endSheet:self.window returnCode:NSModalResponseOK];
}
- (IBAction)cancel:(id)sender
{
[self.window.sheetParent endSheet:self.window returnCode:NSModalResponseCancel];
}
- (IBAction)openUserGuide:(id)sender
{
[NSWorkspace.sharedWorkspace openURL:[HBUtilities.documentationURL URLByAppendingPathComponent:@"advanced/audio-subtitle-defaults.html"]];
}
@end
|