Internal desktop messages
[Messages]

Defines


Define Documentation

#define MSG_DT_KEYDOWN   0x00E8

User presses a key down on the desktop.

This message is posted to the desktop window when the user presses a key down.

 MSG_DT_KEYDOWN
 int scancode = (int)wParam;
Parameters:
scancode The scan code of the pressed key.
See also:
MSG_DT_KEYUP

Definition at line 1499 of file window.h.

#define MSG_DT_KEYUP   0x00EA

User releases up a key on the desktop.

This message is posted to the desktop window when the user releases up a key.

 MSG_DT_KEYUP
 int scancode = (int)wParam;
Parameters:
scancode The scan code of the released key.
See also:
MSG_DT_KEYDOWN

Definition at line 1517 of file window.h.

#define MSG_DT_LBUTTONDBLCLK   0x00E3

Left mouse button double clicked message on the desktop.

This message is posted to the desktop window when the user double clicks the left button of the mouse in the area of the desktop window.

 MSG_DT_LBUTTONDBLCLK
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in client coordinates.
See also:
MSG_RBUTTONDBLCLK

Definition at line 1401 of file window.h.

#define MSG_DT_LBUTTONDOWN   0x00E1

Left mouse button down message on the desktop.

This message is posted to the desktop window when the user presses down the left button of the mouse in the area of the desktop window.

 MSG_DT_LBUTTONDOWN
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_DT_LBUTTONUP, MSG_LBUTTONDOWN

Definition at line 1363 of file window.h.

#define MSG_DT_LBUTTONUP   0x00E2

Left mouse button up message on the desktop.

This message is posted to the desktop window when the user releases up the left button of the mouse in the area of the desktop window.

 MSG_DT_LBUTTONUP
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_DT_LBUTTONDOWN, MSG_LBUTTONUP

Definition at line 1382 of file window.h.

#define MSG_DT_MOUSEMOVE   0x00E4

The mouse moved message on the desktop.

This message is posted to the desktop window when the user moves the mouse in the area of the desktop window.

 MSG_DT_MOUSEMOVE
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_MOUSEMOVE

Definition at line 1420 of file window.h.

#define MSG_DT_RBUTTONDBLCLK   0x00E7

Right mouse button double clicked message on the desktop.

This message is posted to the desktop window when the user double clicks the right button of the mouse in the area of the desktop window.

 MSG_DT_RBUTTONDBLCLK
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_LBUTTONDBLCLK

Definition at line 1478 of file window.h.

#define MSG_DT_RBUTTONDOWN   0x00E5

Right mouse button down message on the desktop.

This message is posted to the desktop window when the user presses down the right button of the mouse in the area of the desktop window.

 MSG_DT_RBUTTONDOWN
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_DT_RBUTTONUP, MSG_RBUTTONDOWN

Definition at line 1440 of file window.h.

#define MSG_DT_RBUTTONUP   0x00E6

Right mouse button up message on the desktop.

This message is posted to the desktop window when the user releases up the right button of the mouse in the area of the desktop window.

 MSG_DT_RBUTTONUP
 int x_pos = LOSWORD (lParam);
 int y_pos = HISWORD (lParam);
Parameters:
x_pos,y_pos The position of the mouse in desktop coordinates.
See also:
MSG_DT_RBUTTONDOWN, MSG_RBUTTONUP

Definition at line 1459 of file window.h.

Generated on Thu Apr 7 15:58:39 2011 for MiniGUI V3.0.12 API Reference by  doxygen 1.6.3