Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 1497 of file trackbar.c.
Referenced by TRACKBAR_WindowProc().
{ if (infoPtr->flags & TB_DRAG_MODE) { notify_with_scroll (infoPtr, TB_THUMBPOSITION | (infoPtr->lPos<<16)); notify_with_scroll (infoPtr, TB_ENDTRACK); infoPtr->flags &= ~TB_DRAG_MODE; ReleaseCapture (); notify(infoPtr, NM_RELEASEDCAPTURE); TRACKBAR_ActivateToolTip(infoPtr, FALSE); TRACKBAR_InvalidateThumb(infoPtr, infoPtr->lPos); } if (infoPtr->flags & TB_AUTO_PAGE) { KillTimer (infoPtr->hwndSelf, TB_REFRESH_TIMER); infoPtr->flags &= ~TB_AUTO_PAGE; notify_with_scroll (infoPtr, TB_ENDTRACK); ReleaseCapture (); notify(infoPtr, NM_RELEASEDCAPTURE); } return 0; }