-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathParametersWindowController.m
283 lines (222 loc) · 6.75 KB
/
ParametersWindowController.m
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/* vim: set ft=objc ts=4 et sw=4 nowrap: */
/*
* ParametersWindowController.m
*
* Copyright (c) 2004, 2016
*
* Author: Andreas Schik <andreas@schik.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <Foundation/Foundation.h>
#include "ParametersWindowController.h"
#include "AppController.h"
#include "Constants.h"
#include "Functions.h"
#include "ProjectWindowController.h"
#include <Burn/PreferencesModule.h>
#include <Burn/ExternalTools.h>
/**
* <p>standardModules contains the list of class names
* for preferences classes. The preferences objects are created
* and inserted into the panel in the order of their appearance
* in standardModules.</p>
*/
static NSString *standardModules[] = {
@"GeneralParameters",
nil
};
@interface ParametersWindowController (Private)
- (void) initializeWithStandardModules;
- (void) initializeWithOptionalModules;
- (void) addModule: (id<PreferencesModule>) module;
@end
@implementation ParametersWindowController (Private)
- (void) initializeWithStandardModules
{
int i = 0;
NSString *className;
// When creating an ISO image we do not need the General parameters
if (opMode == OperationModeCreateIso) {
return;
}
while (nil != (className = standardModules[i++])) {
Class class = NSClassFromString(className);
id<PreferencesModule> module = [class singleInstance];
if (nil == module) {
logToConsole(MessageStatusError, [NSString stringWithFormat:
_(@"Common.initModuleFail"), className]);
return;
}
[self addModule: module];
RELEASE((id<NSObject>)module);
}
}
//
//
//
- (void) initializeWithOptionalModules
{
// In ISO creation mode we do not need all the other panels.
if ((opMode == OperationModeCreateIso)
|| (opMode & OperationModeBurnData)) {
id bundle = [[AppController appController] currentMkisofsBundle];
if (nil != bundle) {
id<PreferencesModule> module = [bundle parameters];
[self addModule: module];
}
}
if (opMode & OperationModeBurnAll) {
id bundle = [[AppController appController] currentWriterBundle];
if (nil != bundle) {
id<PreferencesModule> module = [bundle parameters];
[self addModule: module];
}
}
if (opMode & OperationModeBurnAudio) {
id bundle = [[AppController appController] currentCDGrabberBundle];
if (nil != bundle) {
id<PreferencesModule> module = [bundle parameters];
[self addModule: module];
}
bundle = [[AppController appController] currentAudioConverterBundle];
if (nil != bundle) {
id<PreferencesModule> module = [bundle parameters];
[self addModule: module];
}
}
[matrix sizeToCells];
[matrix setNeedsDisplay: YES];
}
- (void) addModule: (id<PreferencesModule>) module
{
int column = [matrix numberOfColumns];
if (nil != module) {
NSButtonCell *aButtonCell;
// We add our column
[matrix addColumn];
[allModules setObject: module forKey: [module title]];
aButtonCell = [matrix cellAtRow: 0 column: column];
[aButtonCell setTag: column];
[aButtonCell setTitle: [module title]];
[aButtonCell setFont: [NSFont systemFontOfSize: 8]];
[aButtonCell setImage: [module image]];
}
}
@end
@implementation ParametersWindowController
- (id) init
{
[self initWithWindowNibName: @"ParametersWindow" operationMode: OperationModeBurnAll];
return self;
}
- (id) initWithWindowNibName: (NSString *) nibName
operationMode: (OperationMode) operationMode;
{
self = [super initWithWindowNibName: nibName];
if (nil != self) {
opMode = operationMode;
if (![NSBundle loadNibNamed: nibName owner: self]) {
logToConsole(MessageStatusError, [NSString stringWithFormat:
_(@"Common.loadNibFail"), nibName]);
} else {
[[self window] setExcludedFromWindowsMenu: YES];
[[self window] setHidesOnDeactivate: YES];
[[self window] setTitle: _(@"ParametersWindowController.title")];
[okButton setTitle: _(@"ParametersWindowController.exec.title")];
[[self window] setFrameAutosaveName: @"ParametersWindow"];
[[self window] setFrameUsingName: @"ParametersWindow"];
}
}
return self;
}
//
//
//
- (void) dealloc
{
RELEASE(allModules);
[super dealloc];
}
- (void) awakeFromNib
{
allModules = [[NSMutableDictionary alloc] initWithCapacity: 2];
NSInteger numcols = [matrix numberOfColumns];
while (--numcols >= 0) {
[matrix removeColumn: numcols];
}
[matrix setCellSize: NSMakeSize(64,64)];
// We initialize our matrix with the standard modules
[self initializeWithStandardModules];
// We then add our additional modules
[self initializeWithOptionalModules];
// We select the first cell in our matrix
[matrix selectCellAtRow: 0 column: 0];
[self handleCellAction: matrix];
}
//
// action methods
//
- (void) okClicked: (id) sender
{
[self saveParameters];
[NSApp stopModalWithCode: NSOKButton];
}
- (void) handleCellAction: (id)sender
{
id aModule;
aModule = [allModules objectForKey: [[matrix selectedCell] title]];
if (aModule) {
[self addModuleToView: aModule];
} else {
logToConsole(MessageStatusError, [NSString stringWithFormat:
_(@"Common.loadBundleFail"), [[matrix selectedCell] title]]);
}
}
//
// other methods
//
- (void) saveParameters
{
NSArray *allNames;
id<PreferencesModule> aModule;
int i;
allNames = [allModules allValues];
for (i = 0; i < [allNames count]; i++) {
aModule = [allNames objectAtIndex: i];
[aModule saveChanges];
}
// [[NSUserDefaults standardUserDefaults] synchronize];
}
- (void) addModuleToView: (id<PreferencesModule>)aModule
{
if (aModule == nil) {
return;
}
if ([box contentView] != [aModule view]) {
[box setContentView: [aModule view]];
[box setTitle: [aModule title]];
}
}
//
//
//
//
// access/mutation methods
//
//
// class methods
//
@end