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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
/* HBAddPresetController.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 "HBAddPresetController.h"
#import "HBAudioDefaultsController.h"
#import "HBSubtitlesDefaultsController.h"
@import HandBrakeKit;
typedef NS_ENUM(NSUInteger, HBAddPresetControllerMode) {
HBAddPresetControllerModeNone,
HBAddPresetControllerModeCustom,
HBAddPresetControllerModeSourceMaximum,
};
@interface HBAddPresetController ()
@property (unsafe_unretained) IBOutlet NSTextField *name;
@property (unsafe_unretained) IBOutlet NSTextField *desc;
@property (unsafe_unretained) IBOutlet NSPopUpButton *picSettingsPopUp;
@property (unsafe_unretained) IBOutlet NSTextField *picWidth;
@property (unsafe_unretained) IBOutlet NSTextField *picHeight;
@property (unsafe_unretained) IBOutlet NSBox *picWidthHeightBox;
@property (nonatomic, strong) HBPreset *preset;
@property (nonatomic, strong) HBMutablePreset *mutablePreset;
@property (nonatomic) int width;
@property (nonatomic) int height;
@property (nonatomic) BOOL defaultToCustom;
@property (nonatomic, readwrite, strong) NSWindowController *defaultsController;
@end
@implementation HBAddPresetController
- (instancetype)initWithPreset:(HBPreset *)preset customWidth:(int)customWidth customHeight:(int)customHeight defaultToCustom:(BOOL)defaultToCustom
{
self = [super initWithWindowNibName:@"AddPreset"];
if (self)
{
NSParameterAssert(preset);
_mutablePreset = [preset mutableCopy];
_width = customWidth;
_height = customHeight;
_defaultToCustom = defaultToCustom;
}
return self;
}
- (void)windowDidLoad {
[super windowDidLoad];
/*
* Populate the preset picture settings popup.
*
* Custom is not applicable when the anamorphic mode is Strict.
*
* Use [NSMenuItem tag] to store preset values for each option.
*/
// Default to Source Maximum
HBAddPresetControllerMode mode = HBAddPresetControllerModeSourceMaximum;
[self.picSettingsPopUp addItemWithTitle:NSLocalizedString(@"None", nil)];
[[self.picSettingsPopUp lastItem] setTag:HBAddPresetControllerModeNone];
if (![self.preset[@"PicturePAR"] isEqualToString:@"strict"])
{
// not Strict, Custom is applicable
[self.picSettingsPopUp addItemWithTitle:NSLocalizedString(@"Custom", nil)];
[[self.picSettingsPopUp lastItem] setTag:HBAddPresetControllerModeCustom];
if (self.defaultToCustom)
{
mode = HBAddPresetControllerModeCustom;
}
}
[self.picSettingsPopUp addItemWithTitle:NSLocalizedString(@"Source Maximum", nil)];
[[self.picSettingsPopUp lastItem] setTag:HBAddPresetControllerModeSourceMaximum];
[self.picSettingsPopUp selectItemWithTag:mode];
// Initialize custom height and width settings to current values
[self.picWidth setIntValue:self.width];
[self.picHeight setIntValue:self.height];
[self addPresetPicDropdownChanged:nil];
}
- (IBAction)addPresetPicDropdownChanged:(id)sender
{
if (self.picSettingsPopUp.selectedItem.tag == HBAddPresetControllerModeCustom)
{
self.picWidthHeightBox.hidden = NO;
}
else
{
self.picWidthHeightBox.hidden = YES;
}
}
- (IBAction)showAudioSettingsSheet:(id)sender
{
HBAudioDefaults *defaults = [[HBAudioDefaults alloc] init];
[defaults applyPreset:self.mutablePreset];
self.defaultsController = [[HBAudioDefaultsController alloc] initWithSettings:defaults];
[NSApp beginSheet:self.defaultsController.window
modalForWindow:self.window
modalDelegate:self
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
contextInfo:(void *)CFBridgingRetain(defaults)];
}
- (IBAction)showSubtitlesSettingsSheet:(id)sender
{
HBSubtitlesDefaults *defaults = [[HBSubtitlesDefaults alloc] init];
[defaults applyPreset:self.mutablePreset];
self.defaultsController = [[HBSubtitlesDefaultsController alloc] initWithSettings:defaults];
[NSApp beginSheet:self.defaultsController.window
modalForWindow:self.window
modalDelegate:self
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
contextInfo:(void *)CFBridgingRetain(defaults)];
}
- (void)sheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo
{
id defaults = (id)CFBridgingRelease(contextInfo);
if (returnCode == NSModalResponseOK)
{
[defaults writeToPreset:self.mutablePreset];
}
self.defaultsController = nil;
}
- (IBAction)add:(id)sender
{
if (self.name.stringValue.length == 0)
{
NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:NSLocalizedString(@"The preset name cannot be empty.", @"")];
[alert setInformativeText:NSLocalizedString(@"Please enter a name.", @"")];
[alert runModal];
}
else
{
HBMutablePreset *newPreset = self.mutablePreset;
newPreset.name = self.name.stringValue;
newPreset.presetDescription = self.desc.stringValue;
// Get the picture size
newPreset[@"PictureWidth"] = @(self.picWidth.integerValue);
newPreset[@"PictureHeight"] = @(self.picHeight.integerValue);
//Get the whether or not to apply pic Size and Cropping (includes Anamorphic)
newPreset[@"UsesPictureSettings"] = @(self.picSettingsPopUp.selectedItem.tag);
// Always use Picture Filter settings for the preset
newPreset[@"UsesPictureFilters"] = @YES;
[newPreset cleanUp];
self.preset = [newPreset copy];
[self.window orderOut:nil];
[NSApp endSheet:self.window returnCode:NSModalResponseContinue];
}
}
- (IBAction)cancel:(id)sender
{
[self.window orderOut:nil];
[NSApp endSheet:self.window returnCode:NSModalResponseAbort];
}
- (IBAction)openUserGuide:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL
URLWithString:@"https://handbrake.fr/docs/en/latest/advanced/custom-presets.html"]];
}
@end
|