blob: 75a893f92dfed1727c7830141629cf435e5c1791 (
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
|
// 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/toolbar_view.h"
#import "chrome/browser/cocoa/themed_window.h"
@implementation ToolbarView
@synthesize dividerOpacity = dividerOpacity_;
// Prevent mouse down events from moving the parent window around.
- (BOOL)mouseDownCanMoveWindow {
return NO;
}
- (void)drawRect:(NSRect)rect {
// The toolbar's background pattern is phased relative to the
// tab strip view's background pattern.
NSPoint phase = [[self window] themePatternPhase];
[[NSGraphicsContext currentContext] setPatternPhase:phase];
[self drawBackground];
}
// Override of |-[BackgroundGradientView strokeColor]|; make it respect opacity.
- (NSColor*)strokeColor {
return [[super strokeColor] colorWithAlphaComponent:[self dividerOpacity]];
}
- (BOOL)accessibilityIsIgnored {
return NO;
}
- (id)accessibilityAttributeValue:(NSString*)attribute {
if ([attribute isEqual:NSAccessibilityRoleAttribute])
return NSAccessibilityToolbarRole;
return [super accessibilityAttributeValue:attribute];
}
@end
|