blob: d8ce3333189e7b87ebc237b8f63ac4a0e33e6789 (
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
|
// 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"
@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 gtm_themePatternPhase];
[[NSGraphicsContext currentContext] setPatternPhase:phase];
[self drawBackground];
}
// Override of |-[BackgroundGradientView strokeColor]|; make it respect opacity.
- (NSColor*)strokeColor {
return [[super strokeColor] colorWithAlphaComponent:[self dividerOpacity]];
}
@end
|