VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestDnDTargetImpl.h@ 73768

Last change on this file since 73768 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/* $Id: GuestDnDTargetImpl.h 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * VBox Console COM Class implementation - Guest drag'n drop target.
4 */
5
6/*
7 * Copyright (C) 2014-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ____H_GUESTDNDTARGETIMPL
19#define ____H_GUESTDNDTARGETIMPL
20
21#include "GuestDnDTargetWrap.h"
22#include "GuestDnDPrivate.h"
23
24#include <VBox/GuestHost/DragAndDrop.h>
25#include <VBox/HostServices/DragAndDropSvc.h>
26
27struct SENDDATACTX;
28typedef struct SENDDATACTX *PSENDDATACTX;
29class SendDataTask;
30
31class ATL_NO_VTABLE GuestDnDTarget :
32 public GuestDnDTargetWrap,
33 public GuestDnDBase
34{
35public:
36 /** @name COM and internal init/term/mapping cruft.
37 * @{ */
38 DECLARE_EMPTY_CTOR_DTOR(GuestDnDTarget)
39
40 int init(const ComObjPtr<Guest>& pGuest);
41 void uninit(void);
42
43 HRESULT FinalConstruct(void);
44 void FinalRelease(void);
45 /** @} */
46
47private:
48
49 /** Private wrapped @name IDnDBase methods.
50 * @{ */
51 HRESULT isFormatSupported(const com::Utf8Str &aFormat, BOOL *aSupported);
52 HRESULT getFormats(GuestDnDMIMEList &aFormats);
53 HRESULT addFormats(const GuestDnDMIMEList &aFormats);
54 HRESULT removeFormats(const GuestDnDMIMEList &aFormats);
55
56 HRESULT getProtocolVersion(ULONG *aProtocolVersion);
57 /** @} */
58
59 /** Private wrapped @name IDnDTarget methods.
60 * @{ */
61 HRESULT enter(ULONG aScreenId, ULONG ax, ULONG aY, DnDAction_T aDefaultAction, const std::vector<DnDAction_T> &aAllowedActions, const GuestDnDMIMEList &aFormats, DnDAction_T *aResultAction);
62 HRESULT move(ULONG aScreenId, ULONG aX, ULONG aY, DnDAction_T aDefaultAction, const std::vector<DnDAction_T> &aAllowedActions, const GuestDnDMIMEList &aFormats, DnDAction_T *aResultAction);
63 HRESULT leave(ULONG aScreenId);
64 HRESULT drop(ULONG aScreenId, ULONG aX, ULONG aY, DnDAction_T aDefaultAction, const std::vector<DnDAction_T> &aAllowedActions, const GuestDnDMIMEList &aFormats, com::Utf8Str &aFormat, DnDAction_T *aResultAction);
65 HRESULT sendData(ULONG aScreenId, const com::Utf8Str &aFormat, const std::vector<BYTE> &aData, ComPtr<IProgress> &aProgress);
66 HRESULT cancel(BOOL *aVeto);
67 /** @} */
68
69protected:
70
71 static Utf8Str i_guestErrorToString(int guestRc);
72 static Utf8Str i_hostErrorToString(int hostRc);
73
74 /** @name Thread task workers.
75 * @{ */
76 static void i_sendDataThreadTask(SendDataTask *pTask);
77 /** @} */
78
79 /** @name Callbacks for dispatch handler.
80 * @{ */
81 static DECLCALLBACK(int) i_sendURIDataCallback(uint32_t uMsg, void *pvParms, size_t cbParms, void *pvUser);
82 /** @} */
83
84protected:
85
86 int i_cancelOperation(void);
87 int i_sendData(PSENDDATACTX pCtx, RTMSINTERVAL msTimeout);
88 int i_sendDataBody(PSENDDATACTX pCtx, GuestDnDData *pData);
89 int i_sendDataHeader(PSENDDATACTX pCtx, GuestDnDData *pData, GuestDnDURIData *pURIData /* = NULL */);
90 int i_sendDirectory(PSENDDATACTX pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg);
91 int i_sendFile(PSENDDATACTX pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg);
92 int i_sendFileData(PSENDDATACTX pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg);
93 int i_sendRawData(PSENDDATACTX pCtx, RTMSINTERVAL msTimeout);
94 int i_sendURIData(PSENDDATACTX pCtx, RTMSINTERVAL msTimeout);
95 int i_sendURIDataLoop(PSENDDATACTX pCtx, GuestDnDMsg *pMsg);
96
97protected:
98
99 struct
100 {
101 bool mfTransferIsPending;
102 /** Maximum data block size (in bytes) the target can handle. */
103 uint32_t mcbBlockSize;
104 } mData;
105
106 friend class SendDataTask;
107};
108
109#endif /* !____H_GUESTDNDTARGETIMPL */
110
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use