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
|
// Copyright 2013 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.
#include "content/browser/theme_helper_mac.h"
#import <Cocoa/Cocoa.h>
#include "base/command_line.h"
#include "content/common/view_messages.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/common/content_switches.h"
// Declare notification names from the 10.7 SDK.
#if !defined(MAC_OS_X_VERSION_10_7) || \
MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
NSString* NSPreferredScrollerStyleDidChangeNotification =
@"NSPreferredScrollerStyleDidChangeNotification";
@interface NSScroller (LionSDK)
+ (NSInteger)preferredScrollerStyle;
@end
#endif
@interface ScrollbarPrefsObserver : NSObject
+ (void)registerAsObserver;
+ (void)appearancePrefsChanged:(NSNotification*)notification;
+ (void)behaviorPrefsChanged:(NSNotification*)notification;
+ (void)notifyPrefsChangedWithRedraw:(BOOL)redraw;
@end
@implementation ScrollbarPrefsObserver
+ (void)registerAsObserver {
[[NSDistributedNotificationCenter defaultCenter]
addObserver:self
selector:@selector(appearancePrefsChanged:)
name:@"AppleAquaScrollBarVariantChanged"
object:nil
suspensionBehavior:NSNotificationSuspensionBehaviorDeliverImmediately];
[[NSDistributedNotificationCenter defaultCenter]
addObserver:self
selector:@selector(behaviorPrefsChanged:)
name:@"AppleNoRedisplayAppearancePreferenceChanged"
object:nil
suspensionBehavior:NSNotificationSuspensionBehaviorCoalesce];
// In single-process mode, renderers will catch these notifications
// themselves and listening for them here may trigger the DCHECK in Observe().
if ([NSScroller respondsToSelector:@selector(preferredScrollerStyle)] &&
!CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess)) {
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(behaviorPrefsChanged:)
name:NSPreferredScrollerStyleDidChangeNotification
object:nil];
}
}
+ (void)appearancePrefsChanged:(NSNotification*)notification {
[self notifyPrefsChangedWithRedraw:YES];
}
+ (void)behaviorPrefsChanged:(NSNotification*)notification {
[self notifyPrefsChangedWithRedraw:NO];
}
+ (void)notifyPrefsChangedWithRedraw:(BOOL)redraw {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
[defaults synchronize];
content::ThemeHelperMac::SendThemeChangeToAllRenderers(
[defaults floatForKey:@"NSScrollerButtonDelay"],
[defaults floatForKey:@"NSScrollerButtonPeriod"],
[defaults boolForKey:@"AppleScrollerPagingBehavior"],
content::ThemeHelperMac::GetPreferredScrollerStyle(),
redraw);
}
@end
namespace content {
// static
ThemeHelperMac* ThemeHelperMac::GetInstance() {
return Singleton<ThemeHelperMac,
LeakySingletonTraits<ThemeHelperMac> >::get();
}
// static
blink::ScrollerStyle ThemeHelperMac::GetPreferredScrollerStyle() {
if (![NSScroller respondsToSelector:@selector(preferredScrollerStyle)])
return blink::ScrollerStyleLegacy;
return static_cast<blink::ScrollerStyle>([NSScroller preferredScrollerStyle]);
}
// static
void ThemeHelperMac::SendThemeChangeToAllRenderers(
float initial_button_delay,
float autoscroll_button_delay,
bool jump_on_track_click,
blink::ScrollerStyle preferred_scroller_style,
bool redraw) {
for (RenderProcessHost::iterator it(RenderProcessHost::AllHostsIterator());
!it.IsAtEnd();
it.Advance()) {
it.GetCurrentValue()->Send(new ViewMsg_UpdateScrollbarTheme(
initial_button_delay,
autoscroll_button_delay,
jump_on_track_click,
preferred_scroller_style,
redraw));
}
}
ThemeHelperMac::ThemeHelperMac() {
[ScrollbarPrefsObserver registerAsObserver];
registrar_.Add(this,
NOTIFICATION_RENDERER_PROCESS_CREATED,
NotificationService::AllSources());
}
ThemeHelperMac::~ThemeHelperMac() {
}
void ThemeHelperMac::Observe(int type,
const NotificationSource& source,
const NotificationDetails& details) {
DCHECK_EQ(NOTIFICATION_RENDERER_PROCESS_CREATED, type);
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
[defaults synchronize];
RenderProcessHost* rph = Source<RenderProcessHost>(source).ptr();
rph->Send(new ViewMsg_UpdateScrollbarTheme(
[defaults floatForKey:@"NSScrollerButtonDelay"],
[defaults floatForKey:@"NSScrollerButtonPeriod"],
[defaults boolForKey:@"AppleScrollerPagingBehavior"],
GetPreferredScrollerStyle(),
false));
}
} // namespace content
|