Changeset 1412


Ignore:
Timestamp:
Mar 30, 2009, 4:04:33 AM (16 years ago)
Author:
Steven Levine
Message:

Keep more keys away from PM if extended search in progress
Increase extended search timeout to 3 seconds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/dircnrs.c

    r1411 r1412  
    6060  08 Mar 09 GKY Renamed commafmt.h i18nutil.h
    6161  08 Mar 09 GKY Additional strings move to PCSZs in init.c
     62  12 Mar 09 SHL Use common SearchContainer
    6263  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
    6366
    6467***********************************************************************/
     
    35423545  // Just to be safe, caller has probably already checked
    35433546  if (SHORT1FROMMP(mp1) & KC_KEYUP)
    3544     return FALSE;
     3547    return FALSE;                       // Let PM process key
    35453548
    35463549  // Just to be safe, caller has probably already cached
     
    35503553  // Shift toggles configured setting
    35513554  if (shiftstate & (KC_ALT | KC_CTRL) || (shiftstate & KC_SHIFT ? !fNoSearch : fNoSearch))
    3552     return FALSE;
     3555    return FALSE;                       // Let PM process key
    35533556
    35543557  if (SHORT1FROMMP(mp1) & KC_VIRTUALKEY) {
     
    35593562      key = '\x1b';
    35603563    else
    3561       return FALSE;
     3564      return FALSE;                             // Let PM process key
    35623565  }
    35633566  else if (SHORT1FROMMP(mp1) & KC_CHAR)
     
    35673570
    35683571  thistime = WinQueryMsgTime(WinQueryAnchorBlock(hwnd));
    3569   if (thistime > dcd->lasttime + 1500)
    3570     *dcd->szCommonName = 0;             // 1.5 seconds
     3572  if (thistime > dcd->lasttime + 3000)
     3573    *dcd->szCommonName = 0;             // 3 seconds since last character
    35713574  dcd->lasttime = thistime;
    35723575
     
    35773580  default:
    35783581    if (key == ' ' && !*dcd->szCommonName)
    3579       break;                    // Let PM see space to allow select toggle
     3582      break;                    // Let PM process space to allow select toggle
    35803583    len = strlen(dcd->szCommonName);
    35813584    if (key == '\x8') {
     
    36193622    else {
    36203623      if (key == ' ')
    3621         return FALSE;                   // Let PM see space to toggle select
     3624        return FALSE;                   // Let PM process space to toggle select
    36223625      // No match
    36233626      // Erase non-matching last character, len is not yet incremented
     
    36283631        if (SearchContainer(hwnd, msg, mp1, MPFROM2SHORT('\\', 0))) {
    36293632          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
    36333638#if 0 // 15 Mar 09 SHL fixme to not hang
    36343639      if (!fErrorBeepOff)
     
    36393644  } // switch
    36403645
    3641   return FALSE;                         // Let PM see key
     3646  return FALSE;                         // Let PM process key
    36423647}
    36433648
Note: See TracChangeset for help on using the changeset viewer.