Changeset 55845 in vbox
- Timestamp:
- May 13, 2015 1:39:02 PM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
-
UIMachineView.cpp (modified) (5 diffs)
-
UIMachineView.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r55821 r55845 1415 1415 1416 1416 #ifdef VBOX_WITH_DRAG_AND_DROP 1417 /**1418 * Host -> Guest: Issued when the host cursor enters the guest (VM) window.1419 * The guest will receive the relative cursor coordinates of the1420 * appropriate screen ID.1421 *1422 * @param pEvent Related enter event.1423 */1424 1417 void UIMachineView::dragEnterEvent(QDragEnterEvent *pEvent) 1425 1418 { … … 1442 1435 } 1443 1436 1444 /**1445 * Host -> Guest: Issued when the host cursor moves inside (over) the guest (VM) window.1446 * The guest will receive the relative cursor coordinates of the1447 * appropriate screen ID.1448 *1449 * @param pEvent Related move event.1450 */1451 1437 void UIMachineView::dragMoveEvent(QDragMoveEvent *pEvent) 1452 1438 { … … 1469 1455 } 1470 1456 1471 /**1472 * Host -> Guest: Issued when the host cursor leaves the guest (VM) window again.1473 * This will ask the guest to stop any further drag'n drop operation.1474 *1475 * @param pEvent Related leave event.1476 */1477 1457 void UIMachineView::dragLeaveEvent(QDragLeaveEvent *pEvent) 1478 1458 { … … 1484 1464 } 1485 1465 1486 /**1487 * Guest -> Host: Checks for a pending drag and drop event within the guest1488 * and (optionally) starts a drag and drop operation on the host.1489 */1490 1466 void UIMachineView::dragIsPending(void) 1491 1467 { … … 1495 1471 } 1496 1472 1497 /**1498 * Host -> Guest: Issued when the host drops data into the guest (VM) window.1499 *1500 * @param pEvent Related drop event.1501 */1502 1473 void UIMachineView::dropEvent(QDropEvent *pEvent) 1503 1474 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h
r55821 r55845 258 258 259 259 #ifdef VBOX_WITH_DRAG_AND_DROP 260 /** 261 * Host -> Guest: Issued when the host cursor enters the guest (VM) window. 262 * The guest will receive the relative cursor coordinates of the 263 * appropriate screen ID. 264 * 265 * @param pEvent Related enter event. 266 */ 260 267 void dragEnterEvent(QDragEnterEvent *pEvent); 268 269 /** 270 * Host -> Guest: Issued when the host cursor moves inside (over) the guest (VM) window. 271 * The guest will receive the relative cursor coordinates of the 272 * appropriate screen ID. 273 * 274 * @param pEvent Related move event. 275 */ 261 276 void dragLeaveEvent(QDragLeaveEvent *pEvent); 277 278 /** 279 * Host -> Guest: Issued when the host cursor leaves the guest (VM) window again. 280 * This will ask the guest to stop any further drag'n drop operation. 281 * 282 * @param pEvent Related leave event. 283 */ 262 284 void dragMoveEvent(QDragMoveEvent *pEvent); 285 286 /** 287 * Guest -> Host: Checks for a pending drag and drop event within the guest 288 * and (optionally) starts a drag and drop operation on the host. 289 */ 263 290 void dragIsPending(void); 291 292 /** 293 * Host -> Guest: Issued when the host drops data into the guest (VM) window. 294 * 295 * @param pEvent Related drop event. 296 */ 264 297 void dropEvent(QDropEvent *pEvent); 265 298 #endif /* VBOX_WITH_DRAG_AND_DROP */
Note:
See TracChangeset
for help on using the changeset viewer.

