Changeset 57292 in vbox
- Timestamp:
- Aug 12, 2015 1:20:14 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102051
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
r57288 r57292 655 655 int rc = VINF_SUCCESS; 656 656 657 /* Send a mouse event with released mouse buttons into the guest that triggers 658 * the "drop" event in our proxy window on the guest. */ 659 AssertPtr(m_pSession); 660 m_pSession->mouse().PutMouseEvent(0, 0, 0, 0, 0); 661 662 /* Start getting the data from the source. Request and transfer data 663 * from the source and display a modal progress dialog while doing this. */ 657 /* Indicate to the guest that we have dropped the data on the host. 658 * The guest then will initiate the actual "drop" operation into our proxy on the guest. */ 664 659 Assert(!m_dndSource.isNull()); 665 660 CProgress progress = m_dndSource.Drop(strMIMEType, 666 661 UIDnDHandler::toVBoxDnDAction(dropAction)); 667 668 662 LogFlowFunc(("Source: isOk=%RTbool\n", m_dndSource.isOk())); 669 663 if (m_dndSource.isOk()) 670 664 { 665 /* Send a mouse event with released mouse buttons into the guest that triggers 666 * the "drop" event in our proxy window on the guest. */ 667 AssertPtr(m_pSession); 668 m_pSession->mouse().PutMouseEvent(0, 0, 0, 0, 0); 669 671 670 msgCenter().showModalProgressDialog(progress, 672 671 tr("Retrieving data ..."), ":/progress_dnd_gh_90px.png",
Note:
See TracChangeset
for help on using the changeset viewer.