WM_KEYDOWN - capturing keypress causing event [duplicate]
I am trying to do a very simple task - have an event occur when a key is pressed - but am having a lot of difficulty implementing it.
I am using the Win32 API. I have been asked what framework I am using but I don't know that. I am using Visual C++ and the program is a Windows program.
All I want to do is have an event occur if a specific key is pressed. For this example I am using the 's' key, and the event is an integer either being set to 1 or 0; whichever it wasn't set to at the time of the key press (I would use bool but I don't know how it works just yet).
I have been told to use GetKeyState(), and th开发者_如何转开发en told that this is actually no good. I have also been told to use WM_KEYDOWN but can't work out how this works... Surely what I am doing must be absolute basic programming (keyboard input > output) but I can't get a clear explanation as to how it works?!
I have tried using the following, with no luck:
int Flag;
if (GetKeyState(115) == 1 && Flag == 0) Flag = 1;
if (GetKeyState(115) == 1 && Flag == 1) Flag = 0;
I have also tried using this:
if (GetKeyState(115) & 0x8000 && Flag == 0) Flag = 1;
if (GetKeyState(115) & 0x8000 && Flag == 1) Flag = 0;
Neither work. Does anyone know how I could implement WM_KEYDOWN?
I am using a Windows Message Loop
There are several ways to solve this problem. None of which will give you "nano-second" accuracy but here they are.
If you want the keypress to be recieved by an active window or dialog you handle a WM_KEYDOWN even in the WINPROC of the dialog/window like so.
void InSomePlace()
{
WNDCLASS wndClass
ZeroMemory( &wndClass, sizeof(wndClass) );
// Initialize wndClass members here
wndClass.lpszClassName = _T("MyWindow");
wndClass.lpfnWndProc = &MyWndProcHandler; //
RegisterClass( &wndClass );
HWND hWnd = CreateWindow( _T("MyWindow", /* lots of other parameters */ );
MSG msg;
BOOL bRet;
while ( (bRet = GetMessage( &msg, hWnd, 0, 0 )) != 0 )
{
if (bRet == -1)
{
// handle the error and possibly exit
}
else
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
}
LRESULT CALLBACK MyWndProcHandler( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
switch ( uMsg )
{
// Lots of case statements, in particular you want a WM_KEYDOWN case
case WM_KEYDOWN:
if ( wParam == 'S' )
{
// Do something here
return 0L;
}
break;
}
return DefWindowProc( hwnd, uMsg, wParam, lParam );
}
For a DialogBox its very similar, you would still have a DLGPROC which is passed as the last parameter to DialogBox/CreateDialog
void InSomePlace( HINSTANCE hInstance, HWND hParentWindow )
{
DialogBox( hInstance, _T("MyDialogTemplate"), hParentWindow, &MyDialogProc );
}
INT_PTR CALLBACK MyDialogProc( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
case ( uMsg )
{
// Lots of case statements, in particular you want a WM_KEYDOWN case
case WM_KEYDOWN:
if ( wParam == 'S' )
{
// Do something here
SetWindowLong(hwndDlg, DWL_MSGRESULT, 0L);
return TRUE;
}
break;
}
return FALSE;
}
精彩评论