commdlg: Let the color picker respond properly to keystrokes.

oldstable
Dan Kegel 2005-12-31 13:23:30 +01:00 committed by Alexandre Julliard
parent 7b4b4b7930
commit 0ab7cfc5b2
1 changed files with 5 additions and 5 deletions

View File

@ -671,7 +671,7 @@ void CC_EditSetHSL( HWND hDlg, int h, int s, int l )
{ {
char buffer[10]; char buffer[10];
LCCPRIV lpp = (LCCPRIV)GetWindowLongPtrW(hDlg, DWLP_USER); LCCPRIV lpp = (LCCPRIV)GetWindowLongPtrW(hDlg, DWLP_USER);
lpp->updating = TRUE;
if (IsWindowVisible( GetDlgItem(hDlg, 0x2c6) )) /* if full size */ if (IsWindowVisible( GetDlgItem(hDlg, 0x2c6) )) /* if full size */
{ {
lpp->updating = TRUE; lpp->updating = TRUE;
@ -938,7 +938,7 @@ LRESULT CC_WMCommand( HWND hDlg, WPARAM wParam, LPARAM lParam, WORD notifyCode,
COLORREF *cr; COLORREF *cr;
LCCPRIV lpp = (LCCPRIV)GetWindowLongPtrW(hDlg, DWLP_USER); LCCPRIV lpp = (LCCPRIV)GetWindowLongPtrW(hDlg, DWLP_USER);
TRACE("CC_WMCommand wParam=%x lParam=%lx\n", wParam, lParam); TRACE("CC_WMCommand wParam=%x lParam=%lx\n", wParam, lParam);
switch (wParam) switch (LOWORD(wParam))
{ {
case 0x2c2: /* edit notify RGB */ case 0x2c2: /* edit notify RGB */
case 0x2c3: case 0x2c3:
@ -950,7 +950,7 @@ LRESULT CC_WMCommand( HWND hDlg, WPARAM wParam, LPARAM lParam, WORD notifyCode,
g = GetGValue(lpp->lpcc->rgbResult); g = GetGValue(lpp->lpcc->rgbResult);
b= GetBValue(lpp->lpcc->rgbResult); b= GetBValue(lpp->lpcc->rgbResult);
xx = 0; xx = 0;
switch (wParam) switch (LOWORD(wParam))
{ {
case 0x2c2: if ((xx = (i != r))) r = i; break; case 0x2c2: if ((xx = (i != r))) r = i; break;
case 0x2c3: if ((xx = (i != g))) g = i; break; case 0x2c3: if ((xx = (i != g))) g = i; break;
@ -975,9 +975,9 @@ LRESULT CC_WMCommand( HWND hDlg, WPARAM wParam, LPARAM lParam, WORD notifyCode,
case 0x2c1: case 0x2c1:
if (notifyCode == EN_UPDATE && !lpp->updating) if (notifyCode == EN_UPDATE && !lpp->updating)
{ {
i = CC_CheckDigitsInEdit(hwndCtl , wParam == 0x2bf ? 239:240); i = CC_CheckDigitsInEdit(hwndCtl , LOWORD(wParam) == 0x2bf ? 239:240);
xx = 0; xx = 0;
switch (wParam) switch (LOWORD(wParam))
{ {
case 0x2bf: if ((xx = ( i != lpp->h))) lpp->h = i; break; case 0x2bf: if ((xx = ( i != lpp->h))) lpp->h = i; break;
case 0x2c0: if ((xx = ( i != lpp->s))) lpp->s = i; break; case 0x2c0: if ((xx = ( i != lpp->s))) lpp->s = i; break;