OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <cmath> |
| 6 |
| 7 #import "chrome/browser/cocoa/location_bar/image_decoration.h" |
| 8 |
| 9 #import "chrome/browser/cocoa/image_utils.h" |
| 10 |
| 11 ImageDecoration::ImageDecoration() { |
| 12 } |
| 13 |
| 14 ImageDecoration::~ImageDecoration() { |
| 15 } |
| 16 |
| 17 NSImage* ImageDecoration::GetImage() { |
| 18 return image_; |
| 19 } |
| 20 |
| 21 void ImageDecoration::SetImage(NSImage* image) { |
| 22 image_.reset([image retain]); |
| 23 } |
| 24 |
| 25 NSRect ImageDecoration::GetDrawRectInFrame(NSRect frame) { |
| 26 NSImage* image = GetImage(); |
| 27 if (!image) |
| 28 return frame; |
| 29 |
| 30 const CGFloat delta_height = NSHeight(frame) - [image size].height; |
| 31 const CGFloat y_inset = std::floor(delta_height / 2.0); |
| 32 return NSInsetRect(frame, 0.0, y_inset); |
| 33 } |
| 34 |
| 35 CGFloat ImageDecoration::GetWidthForSpace(CGFloat width) { |
| 36 NSImage* image = GetImage(); |
| 37 if (image) { |
| 38 const CGFloat image_width = [image size].width; |
| 39 if (image_width <= width) |
| 40 return image_width; |
| 41 } |
| 42 return kOmittedWidth; |
| 43 } |
| 44 |
| 45 void ImageDecoration::DrawInFrame(NSRect frame, NSView* control_view) { |
| 46 [GetImage() drawInRect:GetDrawRectInFrame(frame) |
| 47 fromRect:NSZeroRect // Entire image |
| 48 operation:NSCompositeSourceOver |
| 49 fraction:1.0 |
| 50 neverFlipped:YES]; |
| 51 } |
OLD | NEW |