Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: chrome/browser/cocoa/location_bar/image_decoration.mm

Issue 2971004: [Mac] Star as a rhs-decoration in AutocompleteTextFieldCell. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Changes for rohit, unit-test tweaks. Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/location_bar/image_decoration.h ('k') | chrome/browser/cocoa/location_bar/image_decoration_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698