OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/gfx/chrome_canvas.h" | 5 #include "chrome/common/gfx/chrome_canvas.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/gfx/rect.h" | 9 #include "base/gfx/rect.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 int x, int y, int w, int h) { | 51 int x, int y, int w, int h) { |
52 SkPaint paint; | 52 SkPaint paint; |
53 paint.setColor(color); | 53 paint.setColor(color); |
54 paint.setStyle(SkPaint::kFill_Style); | 54 paint.setStyle(SkPaint::kFill_Style); |
55 paint.setPorterDuffXfermode(SkPorterDuff::kSrcOver_Mode); | 55 paint.setPorterDuffXfermode(SkPorterDuff::kSrcOver_Mode); |
56 FillRectInt(x, y, w, h, paint); | 56 FillRectInt(x, y, w, h, paint); |
57 } | 57 } |
58 | 58 |
59 void ChromeCanvas::FillRectInt(int x, int y, int w, int h, | 59 void ChromeCanvas::FillRectInt(int x, int y, int w, int h, |
60 const SkPaint& paint) { | 60 const SkPaint& paint) { |
61 SkRect rc = {SkIntToScalar(x), SkIntToScalar(y), | 61 SkIRect rc = {x, y, x + w, y + h}; |
62 SkIntToScalar(x + w), SkIntToScalar(y + h) }; | 62 drawIRect(rc, paint); |
63 drawRect(rc, paint); | |
64 } | 63 } |
65 | 64 |
66 void ChromeCanvas::DrawRectInt(const SkColor& color, | 65 void ChromeCanvas::DrawRectInt(const SkColor& color, |
67 int x, int y, int w, int h) { | 66 int x, int y, int w, int h) { |
68 DrawRectInt(color, x, y, w, h, SkPorterDuff::kSrcOver_Mode); | 67 DrawRectInt(color, x, y, w, h, SkPorterDuff::kSrcOver_Mode); |
69 } | 68 } |
70 | 69 |
71 void ChromeCanvas::DrawRectInt(const SkColor& color, int x, int y, int w, int h, | 70 void ChromeCanvas::DrawRectInt(const SkColor& color, |
| 71 int x, int y, int w, int h, |
72 SkPorterDuff::Mode mode) { | 72 SkPorterDuff::Mode mode) { |
73 SkPaint paint; | 73 SkPaint paint; |
74 paint.setColor(color); | 74 paint.setColor(color); |
75 paint.setStyle(SkPaint::kStroke_Style); | 75 paint.setStyle(SkPaint::kStroke_Style); |
76 // Contrary to the docs, a width of 0 results in nothing. | 76 // Set a stroke width of 0, which will put us down the stroke rect path. If |
77 paint.setStrokeWidth(SkIntToScalar(1)); | 77 // we set a stroke width of 1, for example, this will internally create a |
| 78 // path and fill it, which causes problems near the edge of the canvas. |
| 79 paint.setStrokeWidth(SkIntToScalar(0)); |
78 paint.setPorterDuffXfermode(mode); | 80 paint.setPorterDuffXfermode(mode); |
79 | 81 |
80 SkRect rc = {SkIntToScalar(x), SkIntToScalar(y), | 82 SkIRect rc = {x, y, x + w, y + h}; |
81 SkIntToScalar(x + w), SkIntToScalar(y + h) }; | 83 drawIRect(rc, paint); |
82 drawRect(rc, paint); | |
83 } | 84 } |
84 | 85 |
85 void ChromeCanvas::DrawFocusRect(int x, int y, int width, int height) { | 86 void ChromeCanvas::DrawFocusRect(int x, int y, int width, int height) { |
86 // Create a 2D bitmap containing alternating on/off pixels - we do this | 87 // Create a 2D bitmap containing alternating on/off pixels - we do this |
87 // so that you never get two pixels of the same color around the edges | 88 // so that you never get two pixels of the same color around the edges |
88 // of the focus rect (this may mean that opposing edges of the rect may | 89 // of the focus rect (this may mean that opposing edges of the rect may |
89 // have a dot pattern out of phase to each other). | 90 // have a dot pattern out of phase to each other). |
90 static SkBitmap* dots = NULL; | 91 static SkBitmap* dots = NULL; |
91 if (!dots) { | 92 if (!dots) { |
92 int col_pixels = 32; | 93 int col_pixels = 32; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 SkBitmap ChromeCanvas::ExtractBitmap() { | 247 SkBitmap ChromeCanvas::ExtractBitmap() { |
247 const SkBitmap& device_bitmap = getDevice()->accessBitmap(false); | 248 const SkBitmap& device_bitmap = getDevice()->accessBitmap(false); |
248 | 249 |
249 // Make a bitmap to return, and a canvas to draw into it. We don't just want | 250 // Make a bitmap to return, and a canvas to draw into it. We don't just want |
250 // to call extractSubset or the copy constuctor, since we want an actual copy | 251 // to call extractSubset or the copy constuctor, since we want an actual copy |
251 // of the bitmap. | 252 // of the bitmap. |
252 SkBitmap result; | 253 SkBitmap result; |
253 device_bitmap.copyTo(&result, SkBitmap::kARGB_8888_Config); | 254 device_bitmap.copyTo(&result, SkBitmap::kARGB_8888_Config); |
254 return result; | 255 return result; |
255 } | 256 } |
OLD | NEW |