通过键入前几个字符跳转到列表框项目

时间:2009-08-20 21:06:18

标签: user-interface winapi mfc

我有一个项目列表(可能很大),用户必须从中选择一个。我想让用户输入所需项目的前几个字母,以跳转到列表中的正确位置。默认情况下,每个按键跳转到以该字母开头的第一个项目,因此您无法键入第一个几个字母。有没有直接的方法来做到这一点?任何CodeProject或其他这样的例子?

我已经找了好几个小时,发现了IAutocomplete的任意数量的样本,但这在这里没有用,因为我需要保证结果在列表中。

我能想到的唯一方法是从CListBox派生,自己捕获击键,找到项目,运行一个计时器,以便在足够的暂停后进行新的击键将开始一个新的搜索......因为我是这不是一个MFC运动员,这是令人生畏的。任何提示都非常感激。

一个澄清说明:我的最终目标实际上是为DropDownList样式的ComboBox获取此键盘行为(即没有编辑框)。缺少编辑框排除了大多数自动完成代码,并且需要ComboBox功能意味着我不能单独使用CListCtrl。

3 个答案:

答案 0 :(得分:11)

经过多次不必要的痛苦,我发现真正正确的答案就是使用LBS_SORT。只需指定此样式,基本的vanilla列表框就支持我想要的增量搜索键盘快捷键样式。没有LBS_SORT(或组合框的CBS_SORT),你会得到令人生气且几乎无用的跳转到第一个字母的行为。我没有尝试LBS_SORT,因为我的列表内容无论如何都是按排序顺序添加的。

所以大约十几个小时的调查自定义控件等都是徒劳的,因为Microsoft文档没有提到LBS_SORT描述中这种重要的行为差异!

感谢所有贡献的人。

答案 1 :(得分:3)

我在核心Win32中实现了这样的功能。这是代码。

处理列表框插入的消息循环中的某处:

 switch(message)
{   
   case WM_CHAR:       
    if(HandleListBoxKeyStrokes(hwnd, wParam) == FALSE)
                return FALSE;

...

下面是代码(可能没有完全完成):

/* ======================================================================== */
/* ======================================================================== */
#define RETURNr(a, b) // homegrown asserts

BOOLEAN HandleListBoxKeyStrokes(HWND hwnd, UINT theKey)   

{
    #define MAXCHARCACHEINTERVALL 600.0  // Max. milisecs time offset to consider as typed 'at once'
    static char sgLastChars[255] = {'0'};
    static double  sgLastCharTime = 0.;

static HWND    sgLasthwnd = NULL;


if(GetSecs() - sgLastCharTime > MAXCHARCACHEINTERVALL ||
    sgLasthwnd != hwnd) 
    *sgLastChars = 0;

if(theKey == ' ' && *sgLastChars == 0)
    return TRUE; 

sgLastCharTime = GetSecs();
sgLasthwnd = hwnd; 

AppendChar(sgLastChars, toupper(theKey));

if(strlen(sgLastChars) > 1)
{
        LONG l = GetWindowLong(hwnd, GWL_STYLE);
        Char255 tx;
        GetClassName(hwnd, tx, sizeof(tx));
        if(  (! stricmp(tx, "Listbox") && 
              ! (l & (LBS_EXTENDEDSEL | LBS_MULTIPLESEL)) ) ||
             (! stricmp(tx, "ComboBox") &&  // combo Box support
                 l & CBS_DROPDOWNLIST   &&
              ! (l & (CBS_OWNERDRAWFIXED | CBS_OWNERDRAWVARIABLE)) ) )
        {
            long Count, l, BestMatch = - 1, BestMatchOff = 0;
            long LBcmdSet[] = {LB_GETCOUNT, LB_GETTEXTLEN  , LB_GETTEXT};
            long CBcmdSet[] = {CB_GETCOUNT, CB_GETLBTEXTLEN, CB_GETLBTEXT};
            long *cmdSet = (! stricmp(tx, "ComboBox")) ? CBcmdSet : LBcmdSet;

            RETURNr((Count = SendMessage(hwnd, cmdSet[0], 0, 0)) != LB_ERR, 0);
            for(int i = 0; i < Count; i++)


         {
                    RETURNr((l = SendMessage(hwnd, cmdSet[1], i, 0)) != LB_ERR, TRUE);
                    RETURNr( l < sizeof(tx), TRUE);
                    RETURNr((l = SendMessage(hwnd, cmdSet[2], i, (LPARAM)&tx)) != LB_ERR, TRUE);
                    strupr(tx);
                    if(! strncmp(tx, sgLastChars, strlen(sgLastChars)))
                    {
                        SelListBoxAndNotify(hwnd, i);
                        return FALSE;
                    }
                    char *p;
                    if(p = strstr(tx, sgLastChars))
                    {
                        int off = p - tx;
                        if(BestMatch == -1 || off < BestMatchOff)
                        {
                           BestMatch = i;
                           BestMatchOff = off;
                        }
                    }
                }
                // If text not found at start of string see if it matches some part inside the string
                if(BestMatch != -1)
                        SelListBoxAndNotify(hwnd, BestMatch);
                // Nothing found - dont process
                return FALSE;
            }
        }
        return TRUE;
    }
    /* ======================================================================== */
    /* ======================================================================== */

    void SelListBoxAndNotify(HWND hwnd, int index)

    {
    // i am sorry here - this is some XVT-toolkit specific code.
    // it has to be replaced with something similar for native Win32
        WINDOW win    = xvtwi_hwnd_to_window(hwnd);
        WINDOW parent = xvt_vobj_get_parent(win);
        xvt_list_set_sel(win, index, 1);
        EVENT evt;
        memset(&evt, 0, sizeof(evt));
        evt.type = E_CONTROL;
        evt.v.ctl.id = GetDlgCtrlID(hwnd);
        evt.v.ctl.ci.v.lbox.dbl_click = FALSE;
        xvt_win_dispatch_event(parent, &evt);  
    }
    /* ======================================================================== */
    /* ======================================================================== */

double  GetSecs(void)

{
        struct timeb timebuffer;
        ftime(&timebuffer);
        return (double)timebuffer.millitm + 
              ((double)timebuffer.time * 1000.) - // Timezone needed for DbfGetToday
              ((double)timebuffer.timezone * 60. * 1000.);
}
    /* ======================================================================== */
    /* ======================================================================== */

char    AppendChar(char *tx, char C)

{       int i;

        i = strlen(tx);
        tx[i    ] = C;
        tx[i + 1] = 0;
        return(C);
}

答案 2 :(得分:1)

您可以使用 CListView CListCtrl吗?默认情况下,它们就像那样工作。