2009-07-24 21:11:01 +02:00
|
|
|
// Copyright (c) 2008 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2006-2008 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.
|
|
|
|
|
|
|
|
#include "browser_drop_delegate.h"
|
|
|
|
|
|
|
|
#include "webkit/api/public/WebDragData.h"
|
|
|
|
#include "webkit/api/public/WebPoint.h"
|
|
|
|
#include "webkit/glue/webdropdata.h"
|
|
|
|
#include "webkit/glue/webview.h"
|
|
|
|
|
2009-09-17 18:56:32 +02:00
|
|
|
using WebKit::WebDragOperation;
|
|
|
|
using WebKit::WebDragOperationCopy;
|
2009-07-24 21:11:01 +02:00
|
|
|
using WebKit::WebPoint;
|
|
|
|
|
|
|
|
// BaseDropTarget methods ----------------------------------------------------
|
|
|
|
|
|
|
|
DWORD BrowserDropDelegate::OnDragEnter(IDataObject* data_object,
|
|
|
|
DWORD key_state,
|
|
|
|
POINT cursor_position,
|
|
|
|
DWORD effect) {
|
|
|
|
WebDropData drop_data;
|
|
|
|
WebDropData::PopulateWebDropData(data_object, &drop_data);
|
|
|
|
|
|
|
|
POINT client_pt = cursor_position;
|
|
|
|
ScreenToClient(GetHWND(), &client_pt);
|
2009-09-17 18:56:32 +02:00
|
|
|
WebDragOperation op = webview_->DragTargetDragEnter(
|
2009-07-24 21:11:01 +02:00
|
|
|
drop_data.ToDragData(), drop_data.identity,
|
|
|
|
WebPoint(client_pt.x, client_pt.y),
|
2009-09-17 18:56:32 +02:00
|
|
|
WebPoint(cursor_position.x, cursor_position.y),
|
|
|
|
WebDragOperationCopy);
|
|
|
|
// TODO(snej): Pass the real drag operation instead
|
|
|
|
return op ? DROPEFFECT_COPY : DROPEFFECT_NONE;
|
|
|
|
// TODO(snej): Return the real drop effect constant matching 'op'
|
2009-07-24 21:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DWORD BrowserDropDelegate::OnDragOver(IDataObject* data_object,
|
|
|
|
DWORD key_state,
|
|
|
|
POINT cursor_position,
|
|
|
|
DWORD effect) {
|
|
|
|
POINT client_pt = cursor_position;
|
|
|
|
ScreenToClient(GetHWND(), &client_pt);
|
2009-09-17 18:56:32 +02:00
|
|
|
WebDragOperation op = webview_->DragTargetDragOver(
|
2009-07-24 21:11:01 +02:00
|
|
|
WebPoint(client_pt.x, client_pt.y),
|
2009-09-17 18:56:32 +02:00
|
|
|
WebPoint(cursor_position.x, cursor_position.y),
|
|
|
|
WebDragOperationCopy);
|
|
|
|
// TODO(snej): Pass the real drag operation instead
|
|
|
|
return op ? DROPEFFECT_COPY : DROPEFFECT_NONE;
|
|
|
|
// TODO(snej): Return the real drop effect constant matching 'op'
|
2009-07-24 21:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BrowserDropDelegate::OnDragLeave(IDataObject* data_object) {
|
|
|
|
webview_->DragTargetDragLeave();
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD BrowserDropDelegate::OnDrop(IDataObject* data_object,
|
|
|
|
DWORD key_state,
|
|
|
|
POINT cursor_position,
|
|
|
|
DWORD effect) {
|
|
|
|
POINT client_pt = cursor_position;
|
|
|
|
ScreenToClient(GetHWND(), &client_pt);
|
|
|
|
webview_->DragTargetDrop(
|
|
|
|
WebPoint(client_pt.x, client_pt.y),
|
|
|
|
WebPoint(cursor_position.x, cursor_position.y));
|
|
|
|
|
|
|
|
// webkit win port always returns DROPEFFECT_NONE
|
|
|
|
return DROPEFFECT_NONE;
|
|
|
|
}
|
|
|
|
|