added cursor show/hide test, and modified osx screen class to be more robust with memory usage. also fixed some bad code style.

This commit is contained in:
Nick Bolton 2012-10-28 11:36:30 +00:00
parent e9bf981eec
commit 69db341660
3 changed files with 36 additions and 27 deletions

View File

@ -67,7 +67,7 @@ bool COSXScreen::s_testedForGHOM = false;
bool COSXScreen::s_hasGHOM = false; bool COSXScreen::s_hasGHOM = false;
CEvent::Type COSXScreen::s_confirmSleepEvent = CEvent::kUnknown; CEvent::Type COSXScreen::s_confirmSleepEvent = CEvent::kUnknown;
COSXScreen::COSXScreen(bool isPrimary) : COSXScreen::COSXScreen(bool isPrimary, bool autoShowHideCursor) :
MouseButtonEventMap(NumButtonIDs), MouseButtonEventMap(NumButtonIDs),
m_isPrimary(isPrimary), m_isPrimary(isPrimary),
m_isOnScreen(m_isPrimary), m_isOnScreen(m_isPrimary),
@ -92,7 +92,11 @@ COSXScreen::COSXScreen(bool isPrimary) :
m_lastSingleClick(0), m_lastSingleClick(0),
m_lastDoubleClick(0), m_lastDoubleClick(0),
m_lastSingleClickXCursor(0), m_lastSingleClickXCursor(0),
m_lastSingleClickYCursor(0) m_lastSingleClickYCursor(0),
m_autoShowHideCursor(autoShowHideCursor),
m_eventTapRLSR(nullptr),
m_eventTapPort(nullptr),
m_pmRootPort(0)
{ {
try { try {
m_displayID = CGMainDisplayID(); m_displayID = CGMainDisplayID();
@ -136,6 +140,7 @@ COSXScreen::COSXScreen(bool isPrimary) :
&COSXScreen::handleConfirmSleep)); &COSXScreen::handleConfirmSleep));
// create thread for monitoring system power state. // create thread for monitoring system power state.
*m_pmThreadReady = false;
LOG((CLOG_DEBUG "starting watchSystemPowerThread")); LOG((CLOG_DEBUG "starting watchSystemPowerThread"));
m_pmWatchThread = new CThread(new TMethodJob<COSXScreen> m_pmWatchThread = new CThread(new TMethodJob<COSXScreen>
(this, &COSXScreen::watchSystemPowerThread)); (this, &COSXScreen::watchSystemPowerThread));
@ -645,23 +650,15 @@ COSXScreen::showCursor()
{ {
LOG((CLOG_DEBUG "showing cursor")); LOG((CLOG_DEBUG "showing cursor"));
CGDisplayShowCursor(m_displayID);
CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman);
CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanFalse);
CFRelease(propertyString);
// interestingly, CGDisplayShowCursor was removed in favor of only using
// the above. this could have caused the intermittent issue:
//
// Bug #2855 - Mouse cursor remains hidden on Mac client.
//
// ... seems like it might be a good idea to add it back in (it's hard
// to prove for or against since the bug is so random).
CGError error = CGDisplayShowCursor(m_displayID); CGError error = CGDisplayShowCursor(m_displayID);
if (error != kCGErrorSuccess) { if (error != kCGErrorSuccess) {
LOG((CLOG_ERR "failed to show cursor, error=%d", error)); LOG((CLOG_ERR "failed to show cursor, error=%d", error));
} }
CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman);
CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanFalse);
CFRelease(propertyString);
if (!CGCursorIsVisible()) { if (!CGCursorIsVisible()) {
LOG((CLOG_WARN "cursor is not visible")); LOG((CLOG_WARN "cursor is not visible"));
} }
@ -711,7 +708,9 @@ COSXScreen::enable()
else { else {
// FIXME -- prevent system from entering power save mode // FIXME -- prevent system from entering power save mode
if (m_autoShowHideCursor) {
hideCursor(); hideCursor();
}
// warp the mouse to the cursor center // warp the mouse to the cursor center
fakeMouseMove(m_xCenter, m_yCenter); fakeMouseMove(m_xCenter, m_yCenter);
@ -724,30 +723,36 @@ COSXScreen::enable()
handleCGInputEventSecondary, handleCGInputEventSecondary,
this); this);
} }
if (!m_eventTapPort) { if (!m_eventTapPort) {
LOG((CLOG_ERR "failed to create quartz event tap")); LOG((CLOG_ERR "failed to create quartz event tap"));
} }
m_eventTapRLSR = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, m_eventTapPort, 0); m_eventTapRLSR = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, m_eventTapPort, 0);
if (!m_eventTapRLSR) { if (!m_eventTapRLSR) {
LOG((CLOG_ERR "failed to create a CFRunLoopSourceRef for the quartz event tap")); LOG((CLOG_ERR "failed to create a CFRunLoopSourceRef for the quartz event tap"));
} }
CFRunLoopAddSource(CFRunLoopGetCurrent(), m_eventTapRLSR, kCFRunLoopDefaultMode); CFRunLoopAddSource(CFRunLoopGetCurrent(), m_eventTapRLSR, kCFRunLoopDefaultMode);
} }
void void
COSXScreen::disable() COSXScreen::disable()
{ {
if (m_autoShowHideCursor) {
showCursor(); showCursor();
}
// FIXME -- stop watching jump zones, stop capturing input // FIXME -- stop watching jump zones, stop capturing input
if (m_eventTapRLSR) { if (m_eventTapRLSR) {
CFRelease(m_eventTapRLSR); CFRelease(m_eventTapRLSR);
m_eventTapRLSR=NULL; m_eventTapRLSR = nullptr;
} }
if (m_eventTapPort) { if (m_eventTapPort) {
CFRelease(m_eventTapPort); CFRelease(m_eventTapPort);
m_eventTapPort=NULL; m_eventTapPort = nullptr;
} }
// FIXME -- allow system to enter power saving mode // FIXME -- allow system to enter power saving mode

View File

@ -52,7 +52,7 @@ class COSXScreenSaver;
//! Implementation of IPlatformScreen for OS X //! Implementation of IPlatformScreen for OS X
class COSXScreen : public CPlatformScreen { class COSXScreen : public CPlatformScreen {
public: public:
COSXScreen(bool isPrimary); COSXScreen(bool isPrimary, bool autoShowHideCursor=true);
virtual ~COSXScreen(); virtual ~COSXScreen();
// IScreen overrides // IScreen overrides
@ -335,6 +335,9 @@ private:
double m_lastDoubleClick; double m_lastDoubleClick;
SInt32 m_lastSingleClickXCursor; SInt32 m_lastSingleClickXCursor;
SInt32 m_lastSingleClickYCursor; SInt32 m_lastSingleClickYCursor;
// cursor will hide and show on enable and disable if true.
bool m_autoShowHideCursor;
}; };
#endif #endif

View File

@ -28,6 +28,7 @@ elseif (APPLE)
list(APPEND src list(APPEND src
platform/COSXClipboardTests.cpp platform/COSXClipboardTests.cpp
platform/COSXKeyStateTests.cpp platform/COSXKeyStateTests.cpp
platform/COSXScreenTests.cpp
) )
elseif (UNIX) elseif (UNIX)