windows_programming_notes.nbk: Home | Index | Next Page: TrackPopupMenu | Previous Page: Tracking the Mouse Cursor


 TrackMouseEvent

The TrackMouseEvent function posts messages when the mouse pointer leaves a window or hovers over a window for a specified amount of time.

Syntax

    BOOL TrackMouseEvent(
        LPTRACKMOUSEEVENT lpEventTrack
    );

Parameters

Return Value

If the function succeeds, the return value is nonzero .

If the function fails, return value is zero. To get extended error information, call GetLastError.

The function can post the following messages.

Remarks

The mouse pointer is considered to be hovering when it stays within a specified rectangle for a specified period of time. Call SystemParametersInfo. and use the values SPI_GETMOUSEHOVERWIDTH, SPI_GETMOUSEHOVERHEIGHT, and SPI_GETMOUSEHOVERTIME to retrieve the size of the rectangle and the time.

Note The _TrackMouseEvent function calls TrackMouseEvent if it exists, otherwise _TrackMouseEvent emulates TrackMouseEvent. The _TrackMouseEvent function is in commctrl.h and is exported by COMCTRL32.DLL.

Function Information


windows_programming_notes.nbk: Home | Index | Next Page: TrackPopupMenu | Previous Page: Tracking the Mouse Cursor


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time