MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / OnMouseMove

Function OnMouseMove

Libraries/PropertyGrid/PropertyList.h:794–808  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

792 }
793
794 LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM lParam, BOOL &bHandled)
795 {
796 // Column resize code added by Remco Verhoef, thanks.
797 if( m_iPrevious > 0 ) {
798 int x = _GetDragPos(GET_X_LPARAM(lParam));
799 if( m_iPrevXGhostBar != x ) {
800 if( m_iPrevXGhostBar ) _DrawGhostBar(m_iPrevXGhostBar);
801 m_iPrevXGhostBar = x;
802 _DrawGhostBar(m_iPrevXGhostBar);
803 }
804 return 0;
805 }
806 bHandled = FALSE;
807 return 0;
808 }
809
810 LRESULT OnSetCursor(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled)
811 {

Callers

nothing calls this directly

Calls 2

_GetDragPosFunction · 0.85
_DrawGhostBarFunction · 0.85

Tested by

no test coverage detected