blob: 941d6b3a1154b58d29d7cb2c8ccc51cba4b4bd58 (
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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/cocoa/preferences_window_controller.h"
#include "base/mac_util.h"
#include "chrome/common/pref_service.h"
PreferencesWindowController* gPrefWindowSingleton = nil;
@implementation PreferencesWindowController
- (id)initWithPrefs:(PrefService*)prefs {
DCHECK(prefs);
// Use initWithWindowNibPath:: instead of initWithWindowNibName: so we
// can override it in a unit test.
NSString *nibpath = [mac_util::MainAppBundle()
pathForResource:@"Preferences"
ofType:@"nib"];
if ((self = [super initWithWindowNibPath:nibpath owner:self])) {
prefs_ = prefs;
}
return self;
}
- (void)awakeFromNib {
}
// Synchronizes the window's UI elements with the values in |prefs_|.
- (void)syncWithPrefs {
// TODO(pinkerton): do it...
}
// Show the preferences window.
- (IBAction)showPreferences:(id)sender {
[self syncWithPrefs];
[self showWindow:sender];
}
// Called when the window is being closed. Send out a notification that the
// user is done editing preferences.
- (void)windowWillClose:(NSNotification *)notification {
// TODO(pinkerton): send notification. Write unit test that makes sure
// we receive it.
}
@end
|