blob: 479ab7f00545435b36c944e5c9c4225a0f4d8097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Download utility implementation for Mac OS X.
#include "chrome/browser/cocoa/download_util_mac.h"
#include "app/gfx/native_widget_types.h"
#include "base/sys_string_conversions.h"
#include "chrome/browser/download/download_manager.h"
#include "skia/ext/skia_utils_mac.h"
namespace download_util {
void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path) {
// Write information about the file being dragged to the pasteboard.
NSString* file = base::SysUTF8ToNSString(path.value());
NSArray* fileList = [NSArray arrayWithObject:file];
[pasteboard declareTypes:[NSArray arrayWithObject:NSFilenamesPboardType]
owner:nil];
[pasteboard setPropertyList:fileList forType:NSFilenamesPboardType];
}
void NotifySystemOfDownloadComplete(const FilePath& path) {
NSString* filePath = base::SysUTF8ToNSString(path.value());
[[NSDistributedNotificationCenter defaultCenter]
postNotificationName:@"com.apple.DownloadFileFinished"
object:filePath];
NSString* parentPath = [filePath stringByDeletingLastPathComponent];
FNNotifyByPath(
reinterpret_cast<const UInt8*>([parentPath fileSystemRepresentation]),
kFNDirectoryModifiedMessage,
kNilOptions);
}
void DragDownload(const DownloadItem* download,
SkBitmap* icon,
gfx::NativeView view) {
NSPasteboard* pasteboard = [NSPasteboard pasteboardWithName:NSDragPboard];
AddFileToPasteboard(pasteboard, download->full_path());
// Convert to an NSImage.
NSImage* dragImage = gfx::SkBitmapToNSImage(*icon);
// Synthesize a drag event, since we don't have access to the actual event
// that initiated a drag (possibly consumed by the DOM UI, for example).
NSPoint position = [[view window] mouseLocationOutsideOfEventStream];
NSTimeInterval eventTime = [[NSApp currentEvent] timestamp];
NSEvent* dragEvent = [NSEvent mouseEventWithType:NSLeftMouseDragged
location:position
modifierFlags:NSLeftMouseDraggedMask
timestamp:eventTime
windowNumber:[[view window] windowNumber]
context:nil
eventNumber:0
clickCount:1
pressure:1.0];
// Run the drag operation.
[[view window] dragImage:dragImage
at:position
offset:NSZeroSize
event:dragEvent
pasteboard:pasteboard
source:view
slideBack:YES];
}
} // namespace download_util
|