comctl32/listview: Send LVN_ENDLABELEDIT in any case, but with null text if it's the same.

oldstable
Nikolay Sivov 2009-11-21 14:37:01 +03:00 committed by Alexandre Julliard
parent f5f0763827
commit 899a53eda5
2 changed files with 27 additions and 8 deletions

View File

@ -5585,16 +5585,11 @@ static BOOL LISTVIEW_EndEditLabelT(LISTVIEW_INFO *infoPtr, BOOL storeText, BOOL
bSame = (lstrcmpW(dispInfo.item.pszText, tmp) == 0);
textfreeT(tmp, FALSE);
}
if (bSame)
{
res = TRUE;
goto cleanup;
}
/* add the text from the edit in */
dispInfo.item.mask |= LVIF_TEXT;
dispInfo.item.pszText = pszText;
dispInfo.item.cchTextMax = textlenT(pszText, isW);
dispInfo.item.pszText = bSame ? NULL : pszText;
dispInfo.item.cchTextMax = bSame ? 0 : textlenT(pszText, isW);
/* Do we need to update the Item Text */
if (!notify_dispinfoT(infoPtr, LVN_ENDLABELEDITW, &dispInfo, isW))
@ -5608,6 +5603,11 @@ static BOOL LISTVIEW_EndEditLabelT(LISTVIEW_INFO *infoPtr, BOOL storeText, BOOL
goto cleanup;
}
if (!pszText) return TRUE;
if (bSame)
{
res = TRUE;
goto cleanup;
}
if (!(infoPtr->dwStyle & LVS_OWNERDATA))
{

View File

@ -272,7 +272,7 @@ static const struct message lvs_ex_transparentbkgnd_seq[] = {
};
static const struct message edit_end_nochange[] = {
{ WM_NOTIFY, sent|id, 0, 0, LVN_ENDLABELEDITA }, /* todo */
{ WM_NOTIFY, sent|id, 0, 0, LVN_ENDLABELEDITA },
{ WM_NOTIFY, sent|id, 0, 0, NM_CUSTOMDRAW }, /* todo */
{ WM_NOTIFY, sent|id, 0, 0, NM_SETFOCUS },
{ 0 }
@ -321,8 +321,12 @@ static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LP
return blockEdit;
case LVN_ENDLABELEDIT:
{
/* always accept new item text */
NMLVDISPINFO *di = (NMLVDISPINFO*)lParam;
trace("LVN_ENDLABELEDIT: text=%s\n", di->item.pszText);
return TRUE;
}
case LVN_BEGINSCROLL:
case LVN_ENDSCROLL:
{
@ -3426,9 +3430,24 @@ static void test_editbox(void)
r = SendMessage(hwnd, LVM_GETITEMTEXTA, 0, (LPARAM)&item);
expect(lstrlen(item.pszText), r);
ok(strcmp(buffer, testitem1A) == 0, "Expected item text to change\n");
ok(!IsWindow(hwndedit), "Expected Edit window to be freed\n");
/* end edit without saving */
SetFocus(hwnd);
hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
flush_sequences(sequences, NUM_MSG_SEQUENCES);
r = SendMessage(hwndedit, WM_KEYDOWN, VK_ESCAPE, 0);
expect(0, r);
ok_sequence(sequences, PARENT_SEQ_INDEX, edit_end_nochange,
"edit box - end edit, no change, escape", TRUE);
/* end edit with saving */
SetFocus(hwnd);
hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
flush_sequences(sequences, NUM_MSG_SEQUENCES);
r = SendMessage(hwndedit, WM_KEYDOWN, VK_RETURN, 0);
expect(0, r);
ok_sequence(sequences, PARENT_SEQ_INDEX, edit_end_nochange,
"edit box - end edit, no change, return", TRUE);
memset(&item, 0, sizeof(item));
item.pszText = buffer;
item.cchTextMax = 10;