Changeset 74335 in vbox
- Timestamp:
- Sep 18, 2018 9:29:23 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125145
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/DragAndDropSvc.h
r74234 r74335 124 124 enum eHostFn 125 125 { 126 /** The host just has seta new DnD mode. */126 /** The host sets a new DnD mode. */ 127 127 HOST_DND_SET_MODE = 100, 128 128 … … 131 131 */ 132 132 133 /** The host enter edthe VM window for starting an actual133 /** The host enters the VM window for starting an actual 134 134 * DnD operation. */ 135 135 HOST_DND_HG_EVT_ENTER = 200, 136 /** The host's DnD cursor move dwithin the VM window. */136 /** The host's DnD cursor moves within the VM window. */ 137 137 HOST_DND_HG_EVT_MOVE = 201, 138 /** The host le ftthe guest VM window. */138 /** The host leaves the guest VM window. */ 139 139 HOST_DND_HG_EVT_LEAVE = 202, 140 /** The host issue da "drop" event, meaning that the host is140 /** The host issues a "drop" event, meaning that the host is 141 141 * ready to transfer data over to the guest. */ 142 142 HOST_DND_HG_EVT_DROPPED = 203, 143 /** The host request edto cancel the current DnD operation on143 /** The host requests to cancel the current DnD operation on 144 144 * the guest side. This can happen on user request on the host's 145 145 * UI side or due to some host error which has happened. … … 149 149 * properly cancel the operation. */ 150 150 HOST_DND_HG_EVT_CANCEL = 204, 151 /** Sends the data header at the beginning of a (new)151 /** The host sends the data header at the beginning of a (new) 152 152 * data transfer. */ 153 153 HOST_DND_HG_SND_DATA_HDR = 210, 154 154 /** 155 * Sends the actual meta data, based on155 * The host sends the actual meta data, based on 156 156 * the format(s) specified by HOST_DND_HG_EVT_ENTER. 157 157 * … … 163 163 */ 164 164 HOST_DND_HG_SND_DATA = 205, 165 /** Sent when the actual buffer for HOST_DND_HG_SND_DATA was too small. */ 165 /** The host sends more data in case the data did not entirely fit in 166 * the HOST_DND_HG_SND_DATA message. */ 166 167 /** @todo Deprecated function; do not use anymore. */ 167 168 HOST_DND_HG_SND_MORE_DATA = 206, 168 /** Directory entry to be sentto the guest. */169 /** The host sends a directory entry to the guest. */ 169 170 HOST_DND_HG_SND_DIR = 207, 170 /** File data chunk to sendto the guest. */171 /** The host sends a file data chunk to the guest. */ 171 172 HOST_DND_HG_SND_FILE_DATA = 208, 172 /** File header to sendto the guest.173 /** The host sends a file header to the guest. 173 174 * Note: Only for protocol version 2 and up (>= VBox 5.0). */ 174 175 HOST_DND_HG_SND_FILE_HDR = 209, … … 196 197 enum eGuestFn 197 198 { 198 /* Guest sends a connection request to the HGCM service, 199 /** 200 * The guest sends a connection request to the HGCM service, 199 201 * along with some additional information like supported 200 202 * protocol version and flags. … … 202 204 GUEST_DND_CONNECT = 10, 203 205 204 /* Sent when a guest client disconnectedfrom the HGCM service. */206 /** The guest client disconnects from the HGCM service. */ 205 207 GUEST_DND_DISCONNECT = 11, 206 208 207 209 /** 208 * Guest waits for a new message the host wants to process210 * The guest waits for a new message the host wants to process 209 211 * on the guest side. This can be a blocking call. 210 212 */ … … 215 217 */ 216 218 217 /** The guest acknowledges that the pending DnD data from 218 * the host can be dropped on the currently selected source 219 * on the guest. */ 219 /** The guest acknowledges that a pending DnD operation from the host 220 * can be dropped on the currently selected area on the guest. */ 220 221 GUEST_DND_HG_ACK_OP = 400, 221 /** The guest requests the actual DnD data to be sent 222 * from the host. */ 222 /** The guest requests the actual DnD data to be sent from the host. */ 223 223 GUEST_DND_HG_REQ_DATA = 401, 224 /** Reports back the guest's progress on a host -> guest operation. */224 /** The guest reports back its progress back to the host. */ 225 225 GUEST_DND_HG_EVT_PROGRESS = 402, 226 226 … … 235 235 */ 236 236 GUEST_DND_GH_ACK_PENDING = 500, 237 /** Sends the data header at the beginning of a (new)237 /** The guest sends the data header at the beginning of a (new) 238 238 * data transfer. */ 239 239 GUEST_DND_GH_SND_DATA_HDR = 503, 240 240 /** 241 * Sends data of the requested format to the host. There can241 * The guest sends data of the requested format to the host. There can 242 242 * be more than one message if the actual data does not fit 243 243 * into one. 244 244 */ 245 245 GUEST_DND_GH_SND_DATA = 501, 246 /** Reports an error back to the host. */246 /** The guest reports an error back to the host. */ 247 247 GUEST_DND_GH_EVT_ERROR = 502, 248 /** Guest sends a directory entry to the host. */248 /** The guest sends a directory entry to the host. */ 249 249 GUEST_DND_GH_SND_DIR = 700, 250 /** Guest sends file data to the host. */251 /* Note: On protocol version 1 this also contains the file name250 /** The guest sends file data to the host. 251 * Note: On protocol version 1 this also contains the file name 252 252 * and other attributes. */ 253 253 GUEST_DND_GH_SND_FILE_DATA = 701, 254 /** Guest sends a file header to the host, marking the254 /** The guest sends a file header to the host, marking the 255 255 * beginning of a (new) file transfer. 256 256 * Note: Available since protocol version 2 (VBox 5.0). */
Note:
See TracChangeset
for help on using the changeset viewer.