#ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_WIN_H_
#define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_WIN_H_
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "ui/views/views_export.h"
#include "ui/wm/public/drag_drop_client.h"
namespace ui {
class DragSourceWin;
}
namespace views {
class DesktopDropTargetWin;
class VIEWS_EXPORT DesktopDragDropClientWin
: public aura::client::DragDropClient {
public:
DesktopDragDropClientWin(aura::Window* root_window, HWND window);
virtual ~DesktopDragDropClientWin();
virtual int StartDragAndDrop(
const ui::OSExchangeData& data,
aura::Window* root_window,
aura::Window* source_window,
const gfx::Point& root_location,
int operation,
ui::DragDropTypes::DragEventSource source) OVERRIDE;
virtual void DragUpdate(aura::Window* target,
const ui::LocatedEvent& event) OVERRIDE;
virtual void Drop(aura::Window* target,
const ui::LocatedEvent& event) OVERRIDE;
virtual void DragCancel() OVERRIDE;
virtual bool IsDragDropInProgress() OVERRIDE;
void OnNativeWidgetDestroying(HWND window);
private:
bool drag_drop_in_progress_;
int drag_operation_;
scoped_refptr<ui::DragSourceWin> drag_source_;
scoped_refptr<DesktopDropTargetWin> drop_target_;
DISALLOW_COPY_AND_ASSIGN(DesktopDragDropClientWin);
};
}
#endif