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 #ifndef UI_BASE_DRAGDROP_DRAG_UTILS_H_ | 5 #ifndef UI_BASE_DRAGDROP_DRAG_UTILS_H_ |
6 #define UI_BASE_DRAGDROP_DRAG_UTILS_H_ | 6 #define UI_BASE_DRAGDROP_DRAG_UTILS_H_ |
7 | 7 |
8 #include <string> | |
9 | |
10 #include "base/files/file_path.h" | |
11 #include "ui/base/ui_base_export.h" | 8 #include "ui/base/ui_base_export.h" |
12 | 9 |
13 namespace gfx { | 10 namespace gfx { |
14 class Canvas; | |
15 class ImageSkia; | 11 class ImageSkia; |
16 class Vector2d; | 12 class Vector2d; |
17 } | 13 } |
18 | 14 |
19 namespace ui { | 15 namespace ui { |
20 class OSExchangeData; | 16 class OSExchangeData; |
21 } | 17 } |
22 | 18 |
23 namespace drag_utils { | 19 namespace drag_utils { |
24 | 20 |
25 // Sets the drag image on data_object from the supplied canvas. | |
26 // |cursor_offset| gives the location of the hotspot for the drag image. | |
27 UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::Canvas& canvas, | |
28 const gfx::Vector2d& cursor_offset, | |
29 ui::OSExchangeData* data_object); | |
30 | |
31 // Sets the drag image on data_object from the supplied ImageSkia. | 21 // Sets the drag image on data_object from the supplied ImageSkia. |
32 // |cursor_offset| gives the location of the hotspot for the drag image. | 22 // |cursor_offset| gives the location of the hotspot for the drag image. |
33 UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, | 23 UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, |
34 const gfx::Vector2d& cursor_offset, | 24 const gfx::Vector2d& cursor_offset, |
35 ui::OSExchangeData* data_object); | 25 ui::OSExchangeData* data_object); |
36 | 26 |
37 } // namespace drag_utils | 27 } // namespace drag_utils |
38 | 28 |
39 #endif // UI_BASE_DRAGDROP_DRAG_UTILS_H_ | 29 #endif // UI_BASE_DRAGDROP_DRAG_UTILS_H_ |
OLD | NEW |