1 | /* $Id: GuestDnDSourceImpl.h 51556 2014-06-05 14:38:31Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Console COM Class implementation - Guest drag'n drop source.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2014 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_GUESTDNDSOURCEIMPL
|
---|
19 | #define ____H_GUESTDNDSOURCEIMPL
|
---|
20 |
|
---|
21 | #include "GuestDnDSourceWrap.h"
|
---|
22 | #include "GuestDnDPrivate.h"
|
---|
23 |
|
---|
24 | class ATL_NO_VTABLE GuestDnDSource :
|
---|
25 | public GuestDnDSourceWrap,
|
---|
26 | protected GuestDnDBase
|
---|
27 | {
|
---|
28 | public:
|
---|
29 | /** @name COM and internal init/term/mapping cruft.
|
---|
30 | * @{ */
|
---|
31 | DECLARE_EMPTY_CTOR_DTOR(GuestDnDSource)
|
---|
32 |
|
---|
33 | int init(const ComObjPtr<Guest>& pGuest);
|
---|
34 | void uninit(void);
|
---|
35 |
|
---|
36 | HRESULT FinalConstruct(void);
|
---|
37 | void FinalRelease(void);
|
---|
38 | /** @} */
|
---|
39 |
|
---|
40 | private:
|
---|
41 |
|
---|
42 | /** Private wrapped @name IDnDBase methods.
|
---|
43 | * @{ */
|
---|
44 | HRESULT isFormatSupported(const com::Utf8Str &aFormat, BOOL *aSupported);
|
---|
45 | HRESULT getFormats(std::vector<com::Utf8Str> &aFormats);
|
---|
46 | HRESULT addFormats(const std::vector<com::Utf8Str> &aFormats);
|
---|
47 | HRESULT removeFormats(const std::vector<com::Utf8Str> &aFormats);
|
---|
48 | /** @} */
|
---|
49 |
|
---|
50 | /** Private wrapped @name IDnDSource methods.
|
---|
51 | * @{ */
|
---|
52 | HRESULT dragIsPending(ULONG uScreenId, std::vector<com::Utf8Str> &aFormats, std::vector<DnDAction_T> &aAllowedActions, DnDAction_T *aDefaultAction);
|
---|
53 | HRESULT drop(const com::Utf8Str &aFormat, DnDAction_T aAction, ComPtr<IProgress> &aProgress);
|
---|
54 | HRESULT receiveData(std::vector<BYTE> &aData);
|
---|
55 | /** @} */
|
---|
56 |
|
---|
57 | protected:
|
---|
58 |
|
---|
59 | /** @name Attributes.
|
---|
60 | * @{ */
|
---|
61 | /** Pointer to guest implementation. */
|
---|
62 | const ComObjPtr<Guest> m_pGuest;
|
---|
63 | /** @} */
|
---|
64 | };
|
---|
65 |
|
---|
66 | #endif /* !____H_GUESTDNDSOURCEIMPL */
|
---|
67 |
|
---|