OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/base/dragdrop/drag_utils.h" | 5 #include "ui/base/dragdrop/drag_utils.h" |
6 | 6 |
7 #include <objidl.h> | 7 #include <objidl.h> |
8 #include <shlobj.h> | 8 #include <shlobj.h> |
9 #include <shobjidl.h> | 9 #include <shobjidl.h> |
10 | 10 |
11 #include "base/win/scoped_comptr.h" | 11 #include "base/win/scoped_comptr.h" |
12 #include "base/win/scoped_hdc.h" | 12 #include "base/win/scoped_hdc.h" |
13 #include "third_party/skia/include/core/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
14 #include "ui/base/dragdrop/os_exchange_data.h" | 14 #include "ui/base/dragdrop/os_exchange_data.h" |
15 #include "ui/base/dragdrop/os_exchange_data_provider_win.h" | 15 #include "ui/base/dragdrop/os_exchange_data_provider_win.h" |
16 #include "ui/gfx/canvas.h" | 16 #include "ui/gfx/canvas.h" |
17 #include "ui/gfx/gdi_util.h" | 17 #include "ui/gfx/gdi_util.h" |
18 #include "ui/gfx/geometry/size.h" | 18 #include "ui/gfx/geometry/size.h" |
19 #include "ui/gfx/image/image_skia.h" | 19 #include "ui/gfx/image/image_skia.h" |
20 #include "ui/gfx/skbitmap_operations.h" | 20 #include "ui/gfx/skbitmap_operations.h" |
21 #include "ui/gfx/win/dpi.h" | |
21 | 22 |
22 namespace drag_utils { | 23 namespace drag_utils { |
23 | 24 |
24 static void SetDragImageOnDataObject(HBITMAP hbitmap, | 25 static void SetDragImageOnDataObject(HBITMAP hbitmap, |
25 const gfx::Size& size_in_pixels, | 26 const gfx::Size& size_in_pixels, |
26 const gfx::Vector2d& cursor_offset, | 27 const gfx::Vector2d& cursor_offset, |
27 IDataObject* data_object) { | 28 IDataObject* data_object) { |
28 base::win::ScopedComPtr<IDragSourceHelper> helper; | 29 base::win::ScopedComPtr<IDragSourceHelper> helper; |
29 HRESULT rv = CoCreateInstance(CLSID_DragDropHelper, 0, CLSCTX_INPROC_SERVER, | 30 HRESULT rv = CoCreateInstance(CLSID_DragDropHelper, 0, CLSCTX_INPROC_SERVER, |
30 IID_IDragSourceHelper, helper.ReceiveVoid()); | 31 IID_IDragSourceHelper, helper.ReceiveVoid()); |
(...skipping 20 matching lines...) Expand all Loading... | |
51 if (!bitmap || !bits) | 52 if (!bitmap || !bits) |
52 return NULL; | 53 return NULL; |
53 DCHECK_EQ(sk_bitmap.rowBytes(), static_cast<size_t>(sk_bitmap.width() * 4)); | 54 DCHECK_EQ(sk_bitmap.rowBytes(), static_cast<size_t>(sk_bitmap.width() * 4)); |
54 SkAutoLockPixels lock(sk_bitmap); | 55 SkAutoLockPixels lock(sk_bitmap); |
55 memcpy( | 56 memcpy( |
56 bits, sk_bitmap.getPixels(), sk_bitmap.height() * sk_bitmap.rowBytes()); | 57 bits, sk_bitmap.getPixels(), sk_bitmap.height() * sk_bitmap.rowBytes()); |
57 return bitmap; | 58 return bitmap; |
58 } | 59 } |
59 | 60 |
60 void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, | 61 void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, |
61 const gfx::Vector2d& cursor_offset, | 62 const gfx::Vector2d& cursor_offset, |
sky
2015/11/25 23:38:43
I suspect you need to adjust cursor_offset too.
ananta
2015/12/01 02:42:28
Done.
| |
62 ui::OSExchangeData* data_object) { | 63 ui::OSExchangeData* data_object) { |
63 DCHECK(data_object && !image_skia.size().IsEmpty()); | 64 DCHECK(data_object && !image_skia.size().IsEmpty()); |
65 | |
66 // Attempt to find a bitmap closely matching the current dpi scale. | |
67 gfx::ImageSkiaRep image_rep_for_scale = image_skia.GetRepresentation( | |
68 gfx::GetDPIScale()); | |
69 | |
64 // InitializeFromBitmap() doesn't expect an alpha channel and is confused | 70 // InitializeFromBitmap() doesn't expect an alpha channel and is confused |
65 // by premultiplied colors, so unpremultiply the bitmap. | 71 // by premultiplied colors, so unpremultiply the bitmap. |
66 // SetDragImageOnDataObject(HBITMAP) takes ownership of the bitmap. | 72 // SetDragImageOnDataObject(HBITMAP) takes ownership of the bitmap. |
67 HBITMAP bitmap = CreateHBITMAPFromSkBitmap( | 73 HBITMAP bitmap = CreateHBITMAPFromSkBitmap(SkBitmapOperations::UnPreMultiply( |
68 SkBitmapOperations::UnPreMultiply(*image_skia.bitmap())); | 74 image_rep_for_scale.sk_bitmap())); |
69 if (bitmap) { | 75 if (bitmap) { |
70 // Attach 'bitmap' to the data_object. | 76 // Attach 'bitmap' to the data_object. |
71 SetDragImageOnDataObject( | 77 SetDragImageOnDataObject( |
72 bitmap, | 78 bitmap, |
73 gfx::Size(image_skia.bitmap()->width(), image_skia.bitmap()->height()), | 79 gfx::Size(image_skia.bitmap()->width(), image_skia.bitmap()->height()), |
74 cursor_offset, | 80 cursor_offset, |
75 ui::OSExchangeDataProviderWin::GetIDataObject(*data_object)); | 81 ui::OSExchangeDataProviderWin::GetIDataObject(*data_object)); |
76 } | 82 } |
77 | 83 |
78 // TODO: the above code is used in non-Ash, while below is used in Ash. If we | 84 // TODO: the above code is used in non-Ash, while below is used in Ash. If we |
79 // could figure this context out then we wouldn't do unnecessary work. However | 85 // could figure this context out then we wouldn't do unnecessary work. However |
80 // as it stands getting this information in ui/base would be a layering | 86 // as it stands getting this information in ui/base would be a layering |
81 // violation. | 87 // violation. |
82 data_object->provider().SetDragImage(image_skia, cursor_offset); | 88 data_object->provider().SetDragImage(image_skia, cursor_offset); |
83 } | 89 } |
84 | 90 |
85 } // namespace drag_utils | 91 } // namespace drag_utils |
OLD | NEW |