electron/shell/browser/ui/drag_util_mac.mm

62 lines
2.3 KiB
Text
Raw Normal View History

2016-07-03 03:26:43 +00:00
// Copyright (c) 2016 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#import <Cocoa/Cocoa.h>
#include <vector>
2016-07-03 03:26:43 +00:00
#include "base/files/file_path.h"
#include "base/strings/sys_string_conversions.h"
#include "shell/browser/ui/drag_util.h"
2016-07-03 03:26:43 +00:00
namespace atom {
namespace {
// Write information about the file being dragged to the pasteboard.
2016-07-03 04:58:31 +00:00
void AddFilesToPasteboard(NSPasteboard* pasteboard,
const std::vector<base::FilePath>& files) {
NSMutableArray* fileList = [NSMutableArray array];
for (const base::FilePath& file : files)
[fileList addObject:base::SysUTF8ToNSString(file.value())];
2016-07-03 03:26:43 +00:00
[pasteboard declareTypes:[NSArray arrayWithObject:NSFilenamesPboardType]
owner:nil];
[pasteboard setPropertyList:fileList forType:NSFilenamesPboardType];
}
} // namespace
2016-07-03 04:58:31 +00:00
void DragFileItems(const std::vector<base::FilePath>& files,
const gfx::Image& icon,
gfx::NativeView view) {
2016-07-03 03:26:43 +00:00
NSPasteboard* pasteboard = [NSPasteboard pasteboardWithName:NSDragPboard];
2016-07-03 04:58:31 +00:00
AddFilesToPasteboard(pasteboard, files);
2016-07-03 03:26:43 +00:00
// Synthesize a drag event, since we don't have access to the actual event
// that initiated a drag (possibly consumed by the Web UI, for example).
NSWindow* window = [view.GetNativeNSView() window];
NSPoint position = [window mouseLocationOutsideOfEventStream];
2016-07-03 03:26:43 +00:00
NSTimeInterval eventTime = [[NSApp currentEvent] timestamp];
NSEvent* dragEvent = [NSEvent mouseEventWithType:NSLeftMouseDragged
location:position
modifierFlags:NSLeftMouseDraggedMask
timestamp:eventTime
windowNumber:[window windowNumber]
2016-07-03 03:26:43 +00:00
context:nil
eventNumber:0
clickCount:1
pressure:1.0];
// Run the drag operation.
[window dragImage:icon.ToNSImage()
at:position
offset:NSZeroSize
event:dragEvent
pasteboard:pasteboard
source:view.GetNativeNSView()
slideBack:YES];
2016-07-03 03:26:43 +00:00
}
} // namespace atom