Changeset 1412
- Timestamp:
- Mar 30, 2009, 4:04:33 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/dircnrs.c ¶
r1411 r1412 60 60 08 Mar 09 GKY Renamed commafmt.h i18nutil.h 61 61 08 Mar 09 GKY Additional strings move to PCSZs in init.c 62 12 Mar 09 SHL Use common SearchContainer 62 63 14 Mar 09 GKY Prevent execution of UM_SHOWME while drive scan is occuring 64 29 Mar 09 SHL Keep more keys away from PM if extended search in progress 65 29 Mar 09 SHL Increase extended search timeout to 3 seconds 63 66 64 67 ***********************************************************************/ … … 3542 3545 // Just to be safe, caller has probably already checked 3543 3546 if (SHORT1FROMMP(mp1) & KC_KEYUP) 3544 return FALSE; 3547 return FALSE; // Let PM process key 3545 3548 3546 3549 // Just to be safe, caller has probably already cached … … 3550 3553 // Shift toggles configured setting 3551 3554 if (shiftstate & (KC_ALT | KC_CTRL) || (shiftstate & KC_SHIFT ? !fNoSearch : fNoSearch)) 3552 return FALSE; 3555 return FALSE; // Let PM process key 3553 3556 3554 3557 if (SHORT1FROMMP(mp1) & KC_VIRTUALKEY) { … … 3559 3562 key = '\x1b'; 3560 3563 else 3561 return FALSE; 3564 return FALSE; // Let PM process key 3562 3565 } 3563 3566 else if (SHORT1FROMMP(mp1) & KC_CHAR) … … 3567 3570 3568 3571 thistime = WinQueryMsgTime(WinQueryAnchorBlock(hwnd)); 3569 if (thistime > dcd->lasttime + 1500)3570 *dcd->szCommonName = 0; // 1.5 seconds3572 if (thistime > dcd->lasttime + 3000) 3573 *dcd->szCommonName = 0; // 3 seconds since last character 3571 3574 dcd->lasttime = thistime; 3572 3575 … … 3577 3580 default: 3578 3581 if (key == ' ' && !*dcd->szCommonName) 3579 break; // Let PM seespace to allow select toggle3582 break; // Let PM process space to allow select toggle 3580 3583 len = strlen(dcd->szCommonName); 3581 3584 if (key == '\x8') { … … 3619 3622 else { 3620 3623 if (key == ' ') 3621 return FALSE; // Let PM seespace to toggle select3624 return FALSE; // Let PM process space to toggle select 3622 3625 // No match 3623 3626 // Erase non-matching last character, len is not yet incremented … … 3628 3631 if (SearchContainer(hwnd, msg, mp1, MPFROM2SHORT('\\', 0))) { 3629 3632 if (SearchContainer(hwnd, msg, mp1, mp2)) 3630 return (MRESULT)TRUE; 3631 } 3632 } 3633 return (MRESULT)TRUE; // Grab key from PM 3634 } 3635 } 3636 if (*dcd->szCommonName) 3637 return (MRESULT)TRUE; // Have partial match, grab key from PM 3633 3638 #if 0 // 15 Mar 09 SHL fixme to not hang 3634 3639 if (!fErrorBeepOff) … … 3639 3644 } // switch 3640 3645 3641 return FALSE; // Let PM seekey3646 return FALSE; // Let PM process key 3642 3647 } 3643 3648
Note:
See TracChangeset
for help on using the changeset viewer.