- using cocoa code to fake mouse button down instead of using synergy code.

- fake a ctrl key up and esc key down and up before leave the screen if there is a dragging operation.
This commit is contained in:
jerry 2013-09-12 17:42:50 +00:00
parent dbc7659776
commit e9f43fa7c5
2 changed files with 8 additions and 1 deletions

View file

@ -744,7 +744,6 @@ COSXScreen::showCursor()
#if defined(MAC_OS_X_VERSION_10_7)
// TODO: use real file extension
fakeDragging("txt", 3, m_xCursor, m_yCursor);
fakeMouseButton(kButtonLeft, true);
#else
LOG((CLOG_WARN "drag drop not supported"));
#endif
@ -911,6 +910,11 @@ COSXScreen::leave()
if (m_draggingStarted) {
if (!m_isPrimary) {
// fake ctrl key up
fakeKeyUp(29);
// fake esc key down and up
fakeKeyDown(kKeyEscape, 8192, 1);
fakeKeyUp(1);
CFStringRef dragInfo = getDraggedFileURL();
char* dragInfoCStr = CFStringRefToUTF8String(dragInfo);
LOG((CLOG_DEBUG "drag info: %s", dragInfoCStr));