diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp index 611e70b35fed10a8149c71f88272043add99339a..01aa5c79c2452b3ea23a3547c99f766059b3642e 100644 --- a/indra/llui/llbutton.cpp +++ b/indra/llui/llbutton.cpp @@ -608,7 +608,9 @@ BOOL LLButton::handleHover(S32 x, S32 y, MASK mask) // We only handle the click if the click both started and ended within us getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << LL_ENDL; +#endif } return TRUE; } diff --git a/indra/llui/lldraghandle.cpp b/indra/llui/lldraghandle.cpp index 48bf5bb80ff3a6e14130d1a7967c6cfcd7da0fc6..3b2f5e29e3322b9065a1c4155893e2d1f51e40a2 100644 --- a/indra/llui/lldraghandle.cpp +++ b/indra/llui/lldraghandle.cpp @@ -365,13 +365,17 @@ BOOL LLDragHandle::handleHover(S32 x, S32 y, MASK mask) mDragLastScreenY += delta_y; getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" <<LL_ENDL; +#endif handled = TRUE; } else { getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#endif handled = TRUE; } diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index e7b4f32d14f26e18c756b9ae1a09ffbc71fffa66..997dab0dceb8537be3414cf4b8a5d6e09e80da69 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -869,14 +869,18 @@ BOOL LLLineEditor::handleHover(S32 x, S32 y, MASK mask) mKeystrokeTimer.reset(); getWindow()->setCursor(UI_CURSOR_IBEAM); - LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#endif handled = TRUE; } if( !handled ) { getWindow()->setCursor(UI_CURSOR_IBEAM); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#endif handled = TRUE; } diff --git a/indra/llui/llmodaldialog.cpp b/indra/llui/llmodaldialog.cpp index 208b27fd9b33c5e540229d1350e958cc9e0ec5e3..cef56377b21c4dbcf9c6b0ca9ee62a0e5830e262 100644 --- a/indra/llui/llmodaldialog.cpp +++ b/indra/llui/llmodaldialog.cpp @@ -195,7 +195,9 @@ BOOL LLModalDialog::handleHover(S32 x, S32 y, MASK mask) if( childrenHandleHover(x, y, mask) == NULL ) { getWindow()->setCursor(UI_CURSOR_ARROW); - LL_DEBUGS("UserInput") << "hover handled by " << getName() << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << LL_ENDL; +#endif } LLView* popup_menu = LLMenuGL::sMenuContainer->getVisibleMenu(); diff --git a/indra/llui/llmultislider.cpp b/indra/llui/llmultislider.cpp index 604d246f12cb5f566fe5b281d24cbaa347ba545d..1ccfc065fb944deb2117386d4f7e159b363f253e 100644 --- a/indra/llui/llmultislider.cpp +++ b/indra/llui/llmultislider.cpp @@ -506,7 +506,9 @@ BOOL LLMultiSlider::handleHover(S32 x, S32 y, MASK mask) onCommit(); getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#endif } else { @@ -529,7 +531,9 @@ BOOL LLMultiSlider::handleHover(S32 x, S32 y, MASK mask) } getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#endif } return TRUE; } diff --git a/indra/llui/llscrollbar.cpp b/indra/llui/llscrollbar.cpp index f728d4fa1c49734a17c238700401a84ea0d4a28a..260119734f15e481a73bef5db6e913d9db6107c9 100644 --- a/indra/llui/llscrollbar.cpp +++ b/indra/llui/llscrollbar.cpp @@ -381,7 +381,9 @@ BOOL LLScrollbar::handleHover(S32 x, S32 y, MASK mask) } getWindow()->setCursor(UI_CURSOR_ARROW); - LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#endif handled = TRUE; } else @@ -393,7 +395,9 @@ BOOL LLScrollbar::handleHover(S32 x, S32 y, MASK mask) if( !handled ) { getWindow()->setCursor(UI_CURSOR_ARROW); - LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#endif handled = TRUE; } diff --git a/indra/llui/llslider.cpp b/indra/llui/llslider.cpp index 62df5a2c385938602bea50aca08743ad0c21f222..5e8c6d9599d531a18f17130fe6f882cee39bea3a 100644 --- a/indra/llui/llslider.cpp +++ b/indra/llui/llslider.cpp @@ -186,12 +186,16 @@ BOOL LLSlider::handleHover(S32 x, S32 y, MASK mask) setValueAndCommit(t * (mMaxValue - mMinValue) + mMinValue ); } getWindow()->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#endif } else { getWindow()->setCursor(UI_CURSOR_ARROW); - LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (inactive)" << LL_ENDL; +#endif } return TRUE; } diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index f36fc1a5778510f6da3ab18cb501011815d6af54..7175e97aa96223b0ae8cda604d2928725f716bfc 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -802,7 +802,9 @@ BOOL LLTextEditor::handleHover(S32 x, S32 y, MASK mask) setCursorAtLocalPos( clamped_x, clamped_y, true ); mSelectionEnd = mCursorPos; } - LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by " << getName() << " (active)" << LL_ENDL; +#endif getWindow()->setCursor(UI_CURSOR_IBEAM); handled = TRUE; } diff --git a/indra/llui/lluictrl.cpp b/indra/llui/lluictrl.cpp index 1d9f0b75cdea999605fd27287cc93a0251b5e703..515488006a314b528c0b771fa6ed9f36b5eccb7e 100644 --- a/indra/llui/lluictrl.cpp +++ b/indra/llui/lluictrl.cpp @@ -343,8 +343,9 @@ void LLUICtrl::onMouseLeave(S32 x, S32 y, MASK mask) //virtual BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask) { - +#if SHOW_DEBUG LL_DEBUGS() << "LLUICtrl::handleMouseDown calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << LL_ENDL; +#endif BOOL handled = LLView::handleMouseDown(x,y,mask); @@ -352,7 +353,9 @@ BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask) { (*mMouseDownSignal)(this,x,y,mask); } +#if SHOW_DEBUG LL_DEBUGS() << "LLUICtrl::handleMousedown - handled is returning as: " << handled << " " << LL_ENDL; +#endif #if AL_VIEWER_EVENT_RECORDER if (handled && LLViewerEventRecorder::getLoggingStatus()) { @@ -365,8 +368,9 @@ BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask) //virtual BOOL LLUICtrl::handleMouseUp(S32 x, S32 y, MASK mask) { - +#if SHOW_DEBUG LL_DEBUGS() << "LLUICtrl::handleMouseUp calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << LL_ENDL; +#endif BOOL handled = LLView::handleMouseUp(x,y,mask); @@ -380,7 +384,9 @@ BOOL LLUICtrl::handleMouseUp(S32 x, S32 y, MASK mask) (*mMouseUpSignal)(this,x,y,mask); } +#if SHOW_DEBUG LL_DEBUGS() << "LLUICtrl::handleMouseUp - handled for xui " << getPathname() << " - is returning as: " << handled << " " << LL_ENDL; +#endif return handled; } diff --git a/indra/newview/llmanip.cpp b/indra/newview/llmanip.cpp index 8c6ec08d660a5fab480a7d1041a3f59021d01a7d..31924269181f946865706d7d5ccc1f794fc3abc0 100644 --- a/indra/newview/llmanip.cpp +++ b/indra/newview/llmanip.cpp @@ -227,11 +227,15 @@ BOOL LLManip::handleHover(S32 x, S32 y, MASK mask) setMouseCapture( FALSE ); } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManip (active)" << LL_ENDL; +#endif } else { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManip (inactive)" << LL_ENDL; +#endif } gViewerWindow->setCursor(UI_CURSOR_ARROW); return TRUE; diff --git a/indra/newview/llmaniprotate.cpp b/indra/newview/llmaniprotate.cpp index c39f57df27e182385907dfbceaf86c74f8e29fa7..791a44839756bea9ae1d94c2e025298e7d8e7d04 100644 --- a/indra/newview/llmaniprotate.cpp +++ b/indra/newview/llmaniprotate.cpp @@ -522,12 +522,16 @@ BOOL LLManipRotate::handleHover(S32 x, S32 y, MASK mask) drag(x, y); } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipRotate (active)" << LL_ENDL; +#endif } else { highlightManipulators(x, y); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipRotate (inactive)" << LL_ENDL; +#endif } gViewerWindow->setCursor(UI_CURSOR_TOOLROTATE); diff --git a/indra/newview/llmanipscale.cpp b/indra/newview/llmanipscale.cpp index 6ae12a1249b79e0f69982beb97e27cef6781acec..777adf24dd91e0baf2bbebd1322d6b8fbd4b2453 100644 --- a/indra/newview/llmanipscale.cpp +++ b/indra/newview/llmanipscale.cpp @@ -428,7 +428,9 @@ BOOL LLManipScale::handleHover(S32 x, S32 y, MASK mask) drag( x, y ); } } - LL_DEBUGS("UserInput") << "hover handled by LLManipScale (active)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLManipScale (active)" << LL_ENDL; +#endif } else { @@ -558,7 +560,9 @@ void LLManipScale::highlightManipulators(S32 x, S32 y) } } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipScale (inactive)" << LL_ENDL; +#endif } diff --git a/indra/newview/llmaniptranslate.cpp b/indra/newview/llmaniptranslate.cpp index e53ab91e1bf64eb4faaccc7ff535fcc3d1bbd28e..66eed6c134adc41fbf445004bd0d7822e07e7b7a 100644 --- a/indra/newview/llmaniptranslate.cpp +++ b/indra/newview/llmaniptranslate.cpp @@ -413,7 +413,9 @@ BOOL LLManipTranslate::handleHover(S32 x, S32 y, MASK mask) // Bail out if mouse not down. if( !hasMouseCapture() ) { - LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (inactive)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (inactive)" << LL_ENDL; +#endif // Always show cursor // gViewerWindow->setCursor(UI_CURSOR_ARROW); gViewerWindow->setCursor(UI_CURSOR_TOOLTRANSLATE); @@ -449,7 +451,9 @@ BOOL LLManipTranslate::handleHover(S32 x, S32 y, MASK mask) // rotation above. if( x == mLastHoverMouseX && y == mLastHoverMouseY && !rotated) { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (mouse unmoved)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLTRANSLATE); return TRUE; } @@ -462,7 +466,9 @@ BOOL LLManipTranslate::handleHover(S32 x, S32 y, MASK mask) { if (abs(mMouseDownX - x) < MOUSE_DRAG_SLOP && abs(mMouseDownY - y) < MOUSE_DRAG_SLOP ) { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (mouse inside slop)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLTRANSLATE); return TRUE; } @@ -479,7 +485,9 @@ BOOL LLManipTranslate::handleHover(S32 x, S32 y, MASK mask) // When we make the copy, we don't want to do any other processing. // If so, the object will also be moved, and the copy will be offset. +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (made copy)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLTRANSLATE); } } @@ -772,7 +780,9 @@ BOOL LLManipTranslate::handleHover(S32 x, S32 y, MASK mask) gAgentCamera.clearFocusObject(); dialog_refresh_all(); // ??? is this necessary? +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLManipTranslate (active)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLTRANSLATE); return TRUE; } diff --git a/indra/newview/lltool.cpp b/indra/newview/lltool.cpp index c5e31ff8e6bd3d1f6dc6b76cf9c225dd8c01c850..3e80123de6dfc9caa9f364407fc4e652b5c2a2c5 100644 --- a/indra/newview/lltool.cpp +++ b/indra/newview/lltool.cpp @@ -103,7 +103,9 @@ BOOL LLTool::handleMouseUp(S32 x, S32 y, MASK mask) BOOL LLTool::handleHover(S32 x, S32 y, MASK mask) { gViewerWindow->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by a tool" << LL_ENDL; +#endif // by default, do nothing, say we handled it return TRUE; } diff --git a/indra/newview/lltoolbrush.cpp b/indra/newview/lltoolbrush.cpp index 2d2c069f91b6e3bc4fb207cf44040846c828784e..8cf83dd4200a0adda56771c21c4eb4118df83e8a 100644 --- a/indra/newview/lltoolbrush.cpp +++ b/indra/newview/lltoolbrush.cpp @@ -405,9 +405,11 @@ BOOL LLToolBrushLand::handleMouseDown(S32 x, S32 y, MASK mask) BOOL LLToolBrushLand::handleHover( S32 x, S32 y, MASK mask ) { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolBrushLand (" << (hasMouseCapture() ? "active":"inactive") << ")" << LL_ENDL; +#endif mMouseX = x; mMouseY = y; mGotHover = TRUE; diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp index ce323e224455e5306a2e61008ea25ee182a04acf..45210a916816d08a7d7fbe3355704809ebc9d975 100644 --- a/indra/newview/lltooldraganddrop.cpp +++ b/indra/newview/lltooldraganddrop.cpp @@ -551,7 +551,9 @@ BOOL LLToolDragAndDrop::handleHover( S32 x, S32 y, MASK mask ) ECursorType cursor = acceptanceToCursor(acceptance); gViewerWindow->getWindow()->setCursor( cursor ); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolDragAndDrop" << LL_ENDL; +#endif return TRUE; } diff --git a/indra/newview/lltoolfocus.cpp b/indra/newview/lltoolfocus.cpp index 9a527c5b00639161cbfaec69da85876f5e6dd863..977a8027d8ea75e69b5deef4036f473b72f30223 100644 --- a/indra/newview/lltoolfocus.cpp +++ b/indra/newview/lltoolfocus.cpp @@ -356,7 +356,9 @@ BOOL LLToolCamera::handleHover(S32 x, S32 y, MASK mask) { if (!mValidClickPoint) { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolFocus [invalid point]" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_NO); gViewerWindow->showCursor(); return TRUE; @@ -383,7 +385,9 @@ BOOL LLToolCamera::handleHover(S32 x, S32 y, MASK mask) gViewerWindow->moveCursorToCenter(); } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolFocus [active]" << LL_ENDL; +#endif } else if ( gCameraBtnPan || mask == MASK_PAN || @@ -411,7 +415,9 @@ BOOL LLToolCamera::handleHover(S32 x, S32 y, MASK mask) gViewerWindow->moveCursorToCenter(); } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPan" << LL_ENDL; +#endif } else if (gCameraBtnZoom) { @@ -443,7 +449,9 @@ BOOL LLToolCamera::handleHover(S32 x, S32 y, MASK mask) gViewerWindow->moveCursorToCenter(); } - LL_DEBUGS("UserInput") << "hover handled by LLToolZoom" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLToolZoom" << LL_ENDL; +#endif } } diff --git a/indra/newview/lltoolgrab.cpp b/indra/newview/lltoolgrab.cpp index f4c82aee094f808ccd84864c9dcd24279612311c..732cd29a8d3efbf24d32c8d4e3261925220a98b2 100644 --- a/indra/newview/lltoolgrab.cpp +++ b/indra/newview/lltoolgrab.cpp @@ -762,7 +762,9 @@ void LLToolGrabBase::handleHoverActive(S32 x, S32 y, MASK mask) // HACK to avoid assert: error checking system makes sure that the cursor is set during every handleHover. This is actually a no-op since the cursor is hidden. gViewerWindow->setCursor(UI_CURSOR_ARROW); - LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (active) [cursor hidden]" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (active) [cursor hidden]" << LL_ENDL; +#endif } @@ -927,7 +929,9 @@ void LLToolGrabBase::handleHoverNonPhysical(S32 x, S32 y, MASK mask) void LLToolGrabBase::handleHoverInactive(S32 x, S32 y, MASK mask) { // JC - TODO - change cursor based on gGrabBtnVertical, gGrabBtnSpin +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (inactive-not over editable object)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLGRAB); } @@ -937,7 +941,9 @@ void LLToolGrabBase::handleHoverFailed(S32 x, S32 y, MASK mask) if( GRAB_NOOBJECT == mMode ) { gViewerWindow->setCursor(UI_CURSOR_NO); - LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (not on object)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (not on object)" << LL_ENDL; +#endif } else { @@ -950,7 +956,9 @@ void LLToolGrabBase::handleHoverFailed(S32 x, S32 y, MASK mask) { case GRAB_LOCKED: gViewerWindow->setCursor(UI_CURSOR_GRABLOCKED); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (grab failed, no move permission)" << LL_ENDL; +#endif break; // Non physical now handled by handleHoverActive - CRO @@ -965,7 +973,9 @@ void LLToolGrabBase::handleHoverFailed(S32 x, S32 y, MASK mask) else { gViewerWindow->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolGrab (grab failed but within slop)" << LL_ENDL; +#endif } } } diff --git a/indra/newview/lltoolgun.cpp b/indra/newview/lltoolgun.cpp index 9af0588c096cedd75c57f4982497a5836687e475..fd030b8b9022d4b1089dae5e68b23356684f8c04 100644 --- a/indra/newview/lltoolgun.cpp +++ b/indra/newview/lltoolgun.cpp @@ -143,12 +143,16 @@ BOOL LLToolGun::handleHover(S32 x, S32 y, MASK mask) gViewerWindow->hideCursor(); } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolGun (mouselook)" << LL_ENDL; +#endif } +#if SHOW_DEBUG else { LL_DEBUGS("UserInput") << "hover handled by LLToolGun (not mouselook)" << LL_ENDL; } +#endif // HACK to avoid assert: error checking system makes sure that the cursor is set during every handleHover. This is actually a no-op since the cursor is hidden. gViewerWindow->setCursor(UI_CURSOR_ARROW); diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index 1c1ec8af35addec4be230a695cbdc958e714dbf1..60f5c87f497b3b392bfbed9e6f8e3c19b7d84759 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -710,7 +710,9 @@ BOOL LLToolPie::handleHover(S32 x, S32 y, MASK mask) // could disable it here. show_highlight = true; // cursor set by media object +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPie (inactive)" << LL_ENDL; +#endif } else if (!mMouseOutsideSlop && mMouseButtonDown @@ -748,7 +750,9 @@ BOOL LLToolPie::handleHover(S32 x, S32 y, MASK mask) show_highlight = true; ECursorType cursor = cursorFromObject(click_action_object); gViewerWindow->setCursor(cursor); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPie (inactive)" << LL_ENDL; +#endif } // [RLVa:KB] - Checked: RLVa-1.1.0 else if ( (object) && (RlvActions::isRlvEnabled()) && (!RlvActions::canTouch(object, mHoverPick.mObjectOffset)) ) @@ -762,19 +766,25 @@ BOOL LLToolPie::handleHover(S32 x, S32 y, MASK mask) { show_highlight = true; gViewerWindow->setCursor(UI_CURSOR_TOOLGRAB); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPie (inactive)" << LL_ENDL; +#endif } else if ((!object || !object->isAttachment() || object->getClickAction() != CLICK_ACTION_DISABLED) && ((object && object->flagHandleTouch()) || (parent && parent->flagHandleTouch()))) { show_highlight = true; gViewerWindow->setCursor(UI_CURSOR_HAND); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPie (inactive)" << LL_ENDL; +#endif } else { gViewerWindow->setCursor(UI_CURSOR_ARROW); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolPie (inactive)" << LL_ENDL; +#endif } } diff --git a/indra/newview/lltoolplacer.cpp b/indra/newview/lltoolplacer.cpp index f9c91d7d820fafc57703b4c7a1b382941e517f0d..34d33743b9403b080d656a27f122c4577133ab91 100644 --- a/indra/newview/lltoolplacer.cpp +++ b/indra/newview/lltoolplacer.cpp @@ -545,7 +545,9 @@ BOOL LLToolPlacer::placeObject(S32 x, S32 y, MASK mask) BOOL LLToolPlacer::handleHover(S32 x, S32 y, MASK mask) { - LL_DEBUGS("UserInput") << "hover handled by LLToolPlacer" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLToolPlacer" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_TOOLCREATE); return TRUE; } diff --git a/indra/newview/lltoolselectland.cpp b/indra/newview/lltoolselectland.cpp index ff991dc9fd62ba29714e9e68340155adb202e432..a918905ac273839c4615a1153e0fe032cf8c8d85 100644 --- a/indra/newview/lltoolselectland.cpp +++ b/indra/newview/lltoolselectland.cpp @@ -168,13 +168,17 @@ BOOL LLToolSelectLand::handleHover(S32 x, S32 y, MASK mask) roundXY(mWestSouthBottom); roundXY(mEastNorthTop); +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolSelectLand (active, land)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_ARROW); } else { mDragEndValid = FALSE; +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolSelectLand (active, no land)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_NO); } @@ -183,13 +187,17 @@ BOOL LLToolSelectLand::handleHover(S32 x, S32 y, MASK mask) } else { +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "hover handled by LLToolSelectLand (active, in slop)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_ARROW); } } else { - LL_DEBUGS("UserInput") << "hover handled by LLToolSelectLand (inactive)" << LL_ENDL; +#if SHOW_DEBUG + LL_DEBUGS("UserInput") << "hover handled by LLToolSelectLand (inactive)" << LL_ENDL; +#endif gViewerWindow->setCursor(UI_CURSOR_ARROW); } diff --git a/indra/newview/llviewerkeyboard.cpp b/indra/newview/llviewerkeyboard.cpp index afbabe4c7c09952ca36306784eb36b72566410b8..82d5f7c848b59d4a9f780e08deaadab87c058d8a 100644 --- a/indra/newview/llviewerkeyboard.cpp +++ b/indra/newview/llviewerkeyboard.cpp @@ -727,7 +727,9 @@ BOOL LLViewerKeyboard::handleKey(KEY translated_key, MASK translated_mask, BOOL return FALSE; } +#if SHOW_DEBUG LL_DEBUGS("UserInput") << "keydown -" << translated_key << "-" << LL_ENDL; +#endif // skip skipped keys if(mKeysSkippedByUI.find(translated_key) != mKeysSkippedByUI.end()) {