windows_programming_notes.nbk: Home | Index | Next Page: WM_LBUTTONDOWN | Previous Page: WM_KILLFOCUS


 WM_LBUTTONDBLCLK

The WM_LBUTTONDBLCLK message is posted when the user double-clicks the left mouse button while the cursor is in the client area of a window. If the mouse is not captured, the message is posted to the window beneath the cursor. Otherwise, the message is posted to the window that has captured the mouse.

A window receives this message through its WindowProc function.

    LRESULT CALLBACK WindowProc(
      HWND hwnd,       // handle to window
      UINT uMsg,       // WM_LBUTTONDBLCLK
      WPARAM wParam,   // key indicator
      LPARAM lParam    // horizontal and vertical position
    );

Parameters

Return Values

If an application processes this message, it should return zero.

Remarks

Use the following code to obtain the horizontal and vertical position:

Only windows that have the CS_DBLCLKS style can receive WM_LBUTTONDBLCLK messages, which the system generates whenever the user presses, releases, and again presses the left mouse button within the system's double-click time limit. Double-clicking the left mouse button actually generates a sequence of four messages: WM_LBUTTONDOWN, WM_LBUTTONUP, WM_LBUTTONDBLCLK, and WM_LBUTTONUP.

Requirements

  Windows NT/2000 or later: Requires Windows NT 3.1 or later.
  Windows 95/98/Me: Requires Windows 95 or later.
  Header: Declared in Winuser.h; include Windows.h.

Prototype for Message Handler

void on_lbutton_dbl_clk(HWND hwnd, BOOL doubleclick, int x, int y, UINT
keyflags)
{
}

#define HANDLE_WM_LBUTTONDBLCLK(hwnd,wParam,lParam,fn) 
((fn)((hwnd),TRUE,(int)(short)LOWORD(lParam),(int)(short)HIWORD(lParam),(UINT)(wParam)),0)

args to handler:


windows_programming_notes.nbk: Home | Index | Next Page: WM_LBUTTONDOWN | Previous Page: WM_KILLFOCUS


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