OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/ui/window_snapshot/window_snapshot.h" | 5 #include "chrome/browser/ui/window_snapshot/window_snapshot.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/mac/scoped_cftyperef.h" | 10 #include "base/mac/scoped_cftyperef.h" |
11 #include "base/memory/scoped_nsobject.h" | 11 #include "base/memory/scoped_nsobject.h" |
12 #include "ui/gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
13 | 13 |
14 namespace browser { | 14 namespace browser { |
15 | 15 |
16 gfx::Rect GrabWindowSnapshot(gfx::NativeWindow window, | 16 bool GrabWindowSnapshot(gfx::NativeWindow window, |
17 std::vector<unsigned char>* png_representation) { | 17 std::vector<unsigned char>* png_representation, |
| 18 const gfx::Rect& snapshot_bounds) { |
| 19 NSScreen* screen = [[NSScreen screens] objectAtIndex:0]; |
| 20 gfx::Rect screen_bounds = gfx::Rect(NSRectToCGRect([screen frame])); |
| 21 gfx::Rect window_bounds = gfx::Rect(NSRectToCGRect([window frame])); |
| 22 |
| 23 // Flip window coordinates based on the primary screen. |
| 24 window_bounds.set_y( |
| 25 screen_bounds.height() - window_bounds.y() - window_bounds.height()); |
| 26 |
| 27 // Convert snapshot bounds relative to window into bounds relative to |
| 28 // screen. |
| 29 gfx::Rect screen_snapshot_bounds = gfx::Rect( |
| 30 window_bounds.origin().Add(snapshot_bounds.origin()), |
| 31 snapshot_bounds.size()); |
| 32 |
| 33 DCHECK_LE(screen_snapshot_bounds.right(), window_bounds.right()); |
| 34 DCHECK_LE(screen_snapshot_bounds.bottom(), window_bounds.bottom()); |
| 35 |
18 png_representation->clear(); | 36 png_representation->clear(); |
19 | 37 |
20 // Make sure to grab the "window frame" view so we get current tab + | 38 // Make sure to grab the "window frame" view so we get current tab + |
21 // tabstrip. | 39 // tabstrip. |
22 NSView* view = [[window contentView] superview]; | 40 NSView* view = [[window contentView] superview]; |
23 base::mac::ScopedCFTypeRef<CGImageRef> windowSnapshot(CGWindowListCreateImage( | 41 base::mac::ScopedCFTypeRef<CGImageRef> windowSnapshot(CGWindowListCreateImage( |
24 CGRectNull, kCGWindowListOptionIncludingWindow, | 42 screen_snapshot_bounds.ToCGRect(), kCGWindowListOptionIncludingWindow, |
25 [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming)); | 43 [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming)); |
26 if (CGImageGetWidth(windowSnapshot) <= 0) | 44 if (CGImageGetWidth(windowSnapshot) <= 0) |
27 return gfx::Rect(); | 45 return false; |
28 | 46 |
29 scoped_nsobject<NSBitmapImageRep> rep( | 47 scoped_nsobject<NSBitmapImageRep> rep( |
30 [[NSBitmapImageRep alloc] initWithCGImage:windowSnapshot]); | 48 [[NSBitmapImageRep alloc] initWithCGImage:windowSnapshot]); |
31 NSData* data = [rep representationUsingType:NSPNGFileType properties:nil]; | 49 NSData* data = [rep representationUsingType:NSPNGFileType properties:nil]; |
32 const unsigned char* buf = static_cast<const unsigned char*>([data bytes]); | 50 const unsigned char* buf = static_cast<const unsigned char*>([data bytes]); |
33 NSUInteger length = [data length]; | 51 NSUInteger length = [data length]; |
34 if (buf == NULL || length == 0) | 52 if (buf == NULL || length == 0) |
35 return gfx::Rect(); | 53 return false; |
36 | 54 |
37 png_representation->assign(buf, buf + length); | 55 png_representation->assign(buf, buf + length); |
38 DCHECK(!png_representation->empty()); | 56 DCHECK(!png_representation->empty()); |
39 | 57 |
40 return gfx::Rect(static_cast<int>([rep pixelsWide]), | 58 return true; |
41 static_cast<int>([rep pixelsHigh])); | |
42 } | 59 } |
43 | 60 |
44 } // namespace browser | 61 } // namespace browser |
OLD | NEW |