1 /* Unit test suite for edit control.
3 * Copyright 2004 Vitaliy Margolen
4 * Copyright 2005 C. Scott Ananian
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/test.h"
28 #define ES_COMBO 0x200
31 #define ID_EDITTESTDBUTTON 0x123
32 #define ID_EDITTEST2 99
36 int en_change
, en_maxtext
, en_update
;
39 static struct edit_notify notifications
;
41 static INT_PTR CALLBACK
multi_edit_dialog_proc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
43 static int num_ok_commands
= 0;
48 HWND hedit
= GetDlgItem(hdlg
, 1000);
52 /* test cases related to bug 12319 */
54 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
55 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
58 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
59 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
62 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
63 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
64 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
67 /* test cases for pressing enter */
70 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
71 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
81 if (HIWORD(wparam
) != BN_CLICKED
)
84 switch (LOWORD(wparam
))
97 HWND hfocus
= GetFocus();
98 HWND hedit
= GetDlgItem(hdlg
, 1000);
99 HWND hedit2
= GetDlgItem(hdlg
, 1001);
100 HWND hedit3
= GetDlgItem(hdlg
, 1002);
102 if (wparam
!= 0xdeadbeef)
109 EndDialog(hdlg
, 1111);
110 else if (hfocus
== hedit2
)
111 EndDialog(hdlg
, 2222);
112 else if (hfocus
== hedit3
)
113 EndDialog(hdlg
, 3333);
115 EndDialog(hdlg
, 4444);
118 if ((hfocus
== hedit
) && (num_ok_commands
== 0))
124 EndDialog(hdlg
, 5555);
130 EndDialog(hdlg
, 333);
140 static INT_PTR CALLBACK
edit_dialog_proc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
146 HWND hedit
= GetDlgItem(hdlg
, 1000);
152 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
155 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
158 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
159 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
162 /* more test cases for WM_CHAR */
164 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
165 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
168 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
169 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
172 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
173 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
176 /* more test cases for WM_KEYDOWN + WM_CHAR */
178 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
179 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
180 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
183 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
184 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
185 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
188 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
189 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
190 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
193 /* multiple tab tests */
195 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
196 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
197 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 2);
200 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
201 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
202 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
203 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 2);
213 if (HIWORD(wparam
) != BN_CLICKED
)
216 switch (LOWORD(wparam
))
219 EndDialog(hdlg
, 111);
223 EndDialog(hdlg
, 222);
234 HWND hok
= GetDlgItem(hdlg
, IDOK
);
235 HWND hcancel
= GetDlgItem(hdlg
, IDCANCEL
);
236 HWND hedit
= GetDlgItem(hdlg
, 1000);
237 HWND hfocus
= GetFocus();
239 if (wparam
!= 0xdeadbeef)
245 len
= SendMessage(hedit
, WM_GETTEXTLENGTH
, 0, 0);
247 EndDialog(hdlg
, 444);
249 EndDialog(hdlg
, 555);
253 len
= SendMessage(hedit
, WM_GETTEXTLENGTH
, 0, 0);
254 if ((hfocus
== hok
) && len
== 0)
255 EndDialog(hdlg
, 444);
257 EndDialog(hdlg
, 555);
263 else if (hfocus
== hcancel
)
265 else if (hfocus
== hedit
)
272 EndDialog(hdlg
, 555);
278 EndDialog(hdlg
, 333);
288 static INT_PTR CALLBACK
edit_singleline_dialog_proc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
294 HWND hedit
= GetDlgItem(hdlg
, 1000);
298 /* test cases for WM_KEYDOWN */
300 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
303 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
306 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
307 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
310 /* test cases for WM_CHAR */
312 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
313 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
316 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
317 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
320 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
321 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
324 /* test cases for WM_KEYDOWN + WM_CHAR */
326 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
327 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
330 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
331 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
334 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
335 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
336 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
346 if (HIWORD(wparam
) != BN_CLICKED
)
349 switch (LOWORD(wparam
))
352 EndDialog(hdlg
, 111);
356 EndDialog(hdlg
, 222);
366 HWND hok
= GetDlgItem(hdlg
, IDOK
);
367 HWND hedit
= GetDlgItem(hdlg
, 1000);
368 HWND hfocus
= GetFocus();
369 int len
= SendMessage(hedit
, WM_GETTEXTLENGTH
, 0, 0);
371 if (wparam
!= 0xdeadbeef)
377 if ((hfocus
== hedit
) && len
== 0)
378 EndDialog(hdlg
, 444);
380 EndDialog(hdlg
, 555);
384 if ((hfocus
== hok
) && len
== 0)
385 EndDialog(hdlg
, 444);
387 EndDialog(hdlg
, 555);
397 EndDialog(hdlg
, 333);
407 static INT_PTR CALLBACK
edit_wantreturn_dialog_proc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
413 HWND hedit
= GetDlgItem(hdlg
, 1000);
417 /* test cases for WM_KEYDOWN */
419 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
422 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
423 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
426 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
427 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
430 /* test cases for WM_CHAR */
432 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
433 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
436 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
437 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 2);
440 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
441 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
444 /* test cases for WM_KEYDOWN + WM_CHAR */
446 PostMessage(hedit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
447 PostMessage(hedit
, WM_CHAR
, VK_ESCAPE
, 0x10001);
448 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 0);
451 PostMessage(hedit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
452 PostMessage(hedit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
453 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 2);
456 PostMessage(hedit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
457 PostMessage(hedit
, WM_CHAR
, VK_TAB
, 0xf0001);
458 PostMessage(hdlg
, WM_USER
, 0xdeadbeef, 1);
468 if (HIWORD(wparam
) != BN_CLICKED
)
471 switch (LOWORD(wparam
))
474 EndDialog(hdlg
, 111);
478 EndDialog(hdlg
, 222);
488 HWND hok
= GetDlgItem(hdlg
, IDOK
);
489 HWND hedit
= GetDlgItem(hdlg
, 1000);
490 HWND hfocus
= GetFocus();
491 int len
= SendMessage(hedit
, WM_GETTEXTLENGTH
, 0, 0);
493 if (wparam
!= 0xdeadbeef)
499 if ((hfocus
== hedit
) && len
== 0)
500 EndDialog(hdlg
, 444);
502 EndDialog(hdlg
, 555);
506 if ((hfocus
== hok
) && len
== 0)
507 EndDialog(hdlg
, 444);
509 EndDialog(hdlg
, 555);
513 if ((hfocus
== hedit
) && len
== 2)
514 EndDialog(hdlg
, 444);
516 EndDialog(hdlg
, 555);
526 EndDialog(hdlg
, 333);
536 static HINSTANCE hinst
;
538 static const char szEditTest2Class
[] = "EditTest2Class";
539 static const char szEditTest3Class
[] = "EditTest3Class";
540 static const char szEditTextPositionClass
[] = "EditTextPositionWindowClass";
542 static HWND
create_editcontrol (DWORD style
, DWORD exstyle
)
546 handle
= CreateWindowEx(exstyle
,
551 NULL
, NULL
, hinst
, NULL
);
553 if (winetest_interactive
)
554 ShowWindow (handle
, SW_SHOW
);
558 static HWND
create_child_editcontrol (DWORD style
, DWORD exstyle
)
568 assert(AdjustWindowRect(&rect
, WS_OVERLAPPEDWINDOW
, FALSE
));
570 parentWnd
= CreateWindowEx(0,
571 szEditTextPositionClass
,
574 CW_USEDEFAULT
, CW_USEDEFAULT
,
575 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
576 NULL
, NULL
, hinst
, NULL
);
579 editWnd
= CreateWindowEx(exstyle
,
584 parentWnd
, NULL
, hinst
, NULL
);
586 if (winetest_interactive
)
587 ShowWindow (parentWnd
, SW_SHOW
);
591 static void destroy_child_editcontrol (HWND hwndEdit
)
593 if (GetParent(hwndEdit
))
594 DestroyWindow(GetParent(hwndEdit
));
596 trace("Edit control has no parent!\n");
597 DestroyWindow(hwndEdit
);
601 static LONG
get_edit_style (HWND hwnd
)
603 return GetWindowLongA( hwnd
, GWL_STYLE
) & (
605 /* FIXME: not implemented
624 static void set_client_height(HWND Wnd
, unsigned Height
)
626 RECT ClientRect
, WindowRect
;
628 GetWindowRect(Wnd
, &WindowRect
);
629 GetClientRect(Wnd
, &ClientRect
);
630 SetWindowPos(Wnd
, NULL
, 0, 0,
631 WindowRect
.right
- WindowRect
.left
,
632 Height
+ (WindowRect
.bottom
- WindowRect
.top
) -
633 (ClientRect
.bottom
- ClientRect
.top
),
634 SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
636 /* Workaround for a bug in Windows' edit control
638 GetWindowRect(Wnd
, &WindowRect
);
639 SetWindowPos(Wnd
, NULL
, 0, 0,
640 WindowRect
.right
- WindowRect
.left
+ 1,
641 WindowRect
.bottom
- WindowRect
.top
+ 1,
642 SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
643 SetWindowPos(Wnd
, NULL
, 0, 0,
644 WindowRect
.right
- WindowRect
.left
,
645 WindowRect
.bottom
- WindowRect
.top
,
646 SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
648 GetClientRect(Wnd
, &ClientRect
);
649 ok(ClientRect
.bottom
- ClientRect
.top
== Height
,
650 "The client height should be %d, but is %d\n",
651 Height
, ClientRect
.bottom
- ClientRect
.top
);
654 static void test_edit_control_1(void)
661 msMessage
.message
= WM_KEYDOWN
;
663 trace("EDIT: Single line\n");
664 hwEdit
= create_editcontrol(ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
665 r
= get_edit_style(hwEdit
);
666 ok(r
== (ES_AUTOVSCROLL
| ES_AUTOHSCROLL
), "Wrong style expected 0xc0 got: 0x%x\n", r
);
667 for (i
=0;i
<65535;i
++)
669 msMessage
.wParam
= i
;
670 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, (LPARAM
) &msMessage
);
671 ok(r
== (DLGC_WANTCHARS
| DLGC_HASSETSEL
| DLGC_WANTARROWS
),
672 "Expected DLGC_WANTCHARS | DLGC_HASSETSEL | DLGC_WANTARROWS got %x\n", r
);
674 DestroyWindow (hwEdit
);
676 trace("EDIT: Single line want returns\n");
677 hwEdit
= create_editcontrol(ES_WANTRETURN
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
678 r
= get_edit_style(hwEdit
);
679 ok(r
== (ES_AUTOVSCROLL
| ES_AUTOHSCROLL
| ES_WANTRETURN
), "Wrong style expected 0x10c0 got: 0x%x\n", r
);
680 for (i
=0;i
<65535;i
++)
682 msMessage
.wParam
= i
;
683 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, (LPARAM
) &msMessage
);
684 ok(r
== (DLGC_WANTCHARS
| DLGC_HASSETSEL
| DLGC_WANTARROWS
),
685 "Expected DLGC_WANTCHARS | DLGC_HASSETSEL | DLGC_WANTARROWS got %x\n", r
);
687 DestroyWindow (hwEdit
);
689 trace("EDIT: Multiline line\n");
690 hwEdit
= create_editcontrol(ES_MULTILINE
| WS_VSCROLL
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
691 r
= get_edit_style(hwEdit
);
692 ok(r
== (ES_AUTOHSCROLL
| ES_AUTOVSCROLL
| ES_MULTILINE
), "Wrong style expected 0xc4 got: 0x%x\n", r
);
693 for (i
=0;i
<65535;i
++)
695 msMessage
.wParam
= i
;
696 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, (LPARAM
) &msMessage
);
697 ok(r
== (DLGC_WANTCHARS
| DLGC_HASSETSEL
| DLGC_WANTALLKEYS
| DLGC_WANTARROWS
),
698 "Expected DLGC_WANTCHARS | DLGC_HASSETSEL | DLGC_WANTALLKEYS | DLGC_WANTARROWS got %x\n", r
);
700 DestroyWindow (hwEdit
);
702 trace("EDIT: Multi line want returns\n");
703 hwEdit
= create_editcontrol(ES_MULTILINE
| WS_VSCROLL
| ES_WANTRETURN
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
704 r
= get_edit_style(hwEdit
);
705 ok(r
== (ES_WANTRETURN
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
| ES_MULTILINE
), "Wrong style expected 0x10c4 got: 0x%x\n", r
);
706 for (i
=0;i
<65535;i
++)
708 msMessage
.wParam
= i
;
709 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, (LPARAM
) &msMessage
);
710 ok(r
== (DLGC_WANTCHARS
| DLGC_HASSETSEL
| DLGC_WANTALLKEYS
| DLGC_WANTARROWS
),
711 "Expected DLGC_WANTCHARS | DLGC_HASSETSEL | DLGC_WANTALLKEYS | DLGC_WANTARROWS got %x\n", r
);
713 DestroyWindow (hwEdit
);
716 /* WM_SETTEXT is implemented by selecting all text, and then replacing the
717 * selection. This test checks that the first 'select all' doesn't generate
718 * an UPDATE message which can escape and (via a handler) change the
719 * selection, which would cause WM_SETTEXT to break. This old bug
720 * was fixed 18-Mar-2005; we check here to ensure it doesn't regress.
722 static void test_edit_control_2(void)
725 char szLocalString
[MAXLEN
];
728 /* Create main and edit windows. */
729 hwndMain
= CreateWindow(szEditTest2Class
, "ET2", WS_OVERLAPPEDWINDOW
,
730 0, 0, 200, 200, NULL
, NULL
, hinst
, NULL
);
732 if (winetest_interactive
)
733 ShowWindow (hwndMain
, SW_SHOW
);
735 hwndET2
= CreateWindow("EDIT", NULL
,
736 WS_CHILD
|WS_BORDER
|ES_LEFT
|ES_AUTOHSCROLL
,
737 0, 0, 150, 50, /* important this not be 0 size. */
738 hwndMain
, (HMENU
) ID_EDITTEST2
, hinst
, NULL
);
740 if (winetest_interactive
)
741 ShowWindow (hwndET2
, SW_SHOW
);
743 trace("EDIT: SETTEXT atomicity\n");
744 /* Send messages to "type" in the word 'foo'. */
745 r
= SendMessage(hwndET2
, WM_CHAR
, 'f', 1);
746 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
747 r
= SendMessage(hwndET2
, WM_CHAR
, 'o', 1);
748 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
749 r
= SendMessage(hwndET2
, WM_CHAR
, 'o', 1);
750 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
751 /* 'foo' should have been changed to 'bar' by the UPDATE handler. */
752 GetWindowText(hwndET2
, szLocalString
, MAXLEN
);
753 ok(lstrcmp(szLocalString
, "bar")==0,
754 "Wrong contents of edit: %s\n", szLocalString
);
757 DestroyWindow (hwndET2
);
758 DestroyWindow (hwndMain
);
761 static void ET2_check_change(void) {
762 char szLocalString
[MAXLEN
];
763 /* This EN_UPDATE handler changes any 'foo' to 'bar'. */
764 GetWindowText(hwndET2
, szLocalString
, MAXLEN
);
765 if (lstrcmp(szLocalString
, "foo")==0) {
766 lstrcpy(szLocalString
, "bar");
767 SendMessage(hwndET2
, WM_SETTEXT
, 0, (LPARAM
) szLocalString
);
769 /* always leave the cursor at the end. */
770 SendMessage(hwndET2
, EM_SETSEL
, MAXLEN
- 1, MAXLEN
- 1);
772 static void ET2_OnCommand(HWND hwnd
, int id
, HWND hwndCtl
, UINT codeNotify
)
774 if (id
==ID_EDITTEST2
&& codeNotify
== EN_UPDATE
)
777 static LRESULT CALLBACK
ET2_WndProc(HWND hwnd
, UINT iMsg
, WPARAM wParam
, LPARAM lParam
)
781 ET2_OnCommand(hwnd
, LOWORD(wParam
), (HWND
)lParam
, HIWORD(wParam
));
784 return DefWindowProc(hwnd
, iMsg
, wParam
, lParam
);
787 static void zero_notify(void)
789 notifications
.en_change
= 0;
790 notifications
.en_maxtext
= 0;
791 notifications
.en_update
= 0;
794 #define test_notify(enchange, enmaxtext, enupdate) \
795 ok(notifications.en_change == enchange, "expected %d EN_CHANGE notifications, " \
796 "got %d\n", enchange, notifications.en_change); \
797 ok(notifications.en_maxtext == enmaxtext, "expected %d EN_MAXTEXT notifications, " \
798 "got %d\n", enmaxtext, notifications.en_maxtext); \
799 ok(notifications.en_update == enupdate, "expected %d EN_UPDATE notifications, " \
800 "got %d\n", enupdate, notifications.en_update)
803 static LRESULT CALLBACK
edit3_wnd_procA(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
807 switch (HIWORD(wParam
)) {
809 notifications
.en_maxtext
++;
812 notifications
.en_update
++;
815 notifications
.en_change
++;
820 return DefWindowProcA(hWnd
, msg
, wParam
, lParam
);
823 /* Test behaviour of WM_SETTEXT, WM_REPLACESEL and notificatisons sent in response
826 static void test_edit_control_3(void)
831 static const char *str
= "this is a long string.";
832 static const char *str2
= "this is a long string.\r\nthis is a long string.\r\nthis is a long string.\r\nthis is a long string.";
834 trace("EDIT: Test notifications\n");
836 hParent
= CreateWindowExA(0,
840 CW_USEDEFAULT
, CW_USEDEFAULT
, 10, 10,
841 NULL
, NULL
, NULL
, NULL
);
844 trace("EDIT: Single line, no ES_AUTOHSCROLL\n");
845 hWnd
= CreateWindowExA(0,
850 hParent
, NULL
, NULL
, NULL
);
854 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
855 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
856 ok(lstrlenA(str
) > len
, "text should have been truncated\n");
857 test_notify(1, 1, 1);
859 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
861 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)"a");
862 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
863 ok(1 == len
, "wrong text length, expected 1, got %d\n", len
);
864 test_notify(1, 0, 1);
867 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
868 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
869 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
870 test_notify(1, 0, 1);
872 SendMessageA(hWnd
, EM_SETLIMITTEXT
, 5, 0);
874 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
876 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
877 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
878 ok(5 == len
, "text should have been truncated to limit, expected 5, got %d\n", len
);
879 test_notify(1, 1, 1);
882 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
883 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
884 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
885 test_notify(1, 0, 1);
889 trace("EDIT: Single line, ES_AUTOHSCROLL\n");
890 hWnd
= CreateWindowExA(0,
895 hParent
, NULL
, NULL
, NULL
);
899 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
900 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
901 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
902 test_notify(1, 0, 1);
905 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
906 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
907 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
908 test_notify(1, 0, 1);
910 SendMessageA(hWnd
, EM_SETLIMITTEXT
, 5, 0);
912 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
914 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
915 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
916 ok(5 == len
, "text should have been truncated to limit, expected 5, got %d\n", len
);
917 test_notify(1, 1, 1);
920 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
921 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
922 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
923 test_notify(1, 0, 1);
927 trace("EDIT: Multline, no ES_AUTOHSCROLL, no ES_AUTOVSCROLL\n");
928 hWnd
= CreateWindowExA(0,
933 hParent
, NULL
, NULL
, NULL
);
937 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
938 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
939 ok(0 == len
, "text should have been truncated, expected 0, got %d\n", len
);
940 test_notify(1, 1, 1);
942 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
944 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)"a");
945 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
946 ok(1 == SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0), "wrong text length, expected 1, got %d\n", len
);
947 test_notify(1, 0, 1);
950 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
951 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
952 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
953 test_notify(0, 0, 0);
955 SendMessageA(hWnd
, EM_SETLIMITTEXT
, 5, 0);
957 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
959 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str
);
960 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
961 ok(5 == len
, "text should have been truncated to limit, expected 5, got %d\n", len
);
962 test_notify(1, 1, 1);
965 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
966 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
967 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
968 test_notify(0, 0, 0);
972 trace("EDIT: Multline, ES_AUTOHSCROLL, no ES_AUTOVSCROLL\n");
973 hWnd
= CreateWindowExA(0,
976 ES_MULTILINE
| ES_AUTOHSCROLL
,
978 hParent
, NULL
, NULL
, NULL
);
982 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str2
);
983 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
984 ok(0 == len
, "text should have been truncated, expected 0, got %d\n", len
);
985 test_notify(1, 1, 1);
987 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
989 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)"a");
990 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
991 ok(1 == SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0), "wrong text length, expected 1, got %d\n", len
);
992 test_notify(1, 0, 1);
995 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str2
);
996 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
997 ok(lstrlenA(str2
) == len
, "text shouldn't have been truncated\n");
998 test_notify(0, 0, 0);
1000 SendMessageA(hWnd
, EM_SETLIMITTEXT
, 5, 0);
1002 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
1004 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str2
);
1005 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1006 ok(5 == len
, "text should have been truncated to limit, expected 5, got %d\n", len
);
1007 test_notify(1, 1, 1);
1010 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str2
);
1011 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1012 ok(lstrlenA(str2
) == len
, "text shouldn't have been truncated\n");
1013 test_notify(0, 0, 0);
1015 DestroyWindow(hWnd
);
1017 trace("EDIT: Multline, ES_AUTOHSCROLL and ES_AUTOVSCROLL\n");
1018 hWnd
= CreateWindowExA(0,
1021 ES_MULTILINE
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
,
1023 hParent
, NULL
, NULL
, NULL
);
1027 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str2
);
1028 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1029 ok(lstrlenA(str2
) == len
, "text shouldn't have been truncated\n");
1030 test_notify(1, 0, 1);
1033 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str2
);
1034 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1035 ok(lstrlenA(str2
) == len
, "text shouldn't have been truncated\n");
1036 test_notify(0, 0, 0);
1038 SendMessageA(hWnd
, EM_SETLIMITTEXT
, 5, 0);
1040 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)"");
1042 SendMessageA(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)str2
);
1043 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1044 ok(5 == len
, "text should have been truncated to limit, expected 5, got %d\n", len
);
1045 test_notify(1, 1, 1);
1048 SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str2
);
1049 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1050 ok(lstrlenA(str2
) == len
, "text shouldn't have been truncated\n");
1051 test_notify(0, 0, 0);
1053 DestroyWindow(hWnd
);
1056 /* Test EM_CHARFROMPOS and EM_POSFROMCHAR
1058 static void test_edit_control_4(void)
1065 trace("EDIT: Test EM_CHARFROMPOS and EM_POSFROMCHAR\n");
1066 hwEdit
= create_editcontrol(ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1067 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1068 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1069 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1070 mid
= lo
+ (hi
- lo
) / 2;
1072 for (i
= lo
; i
< mid
; i
++) {
1073 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1074 ok(0 == ret
, "expected 0 got %d\n", ret
);
1076 for (i
= mid
; i
<= hi
; i
++) {
1077 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1078 ok(1 == ret
, "expected 1 got %d\n", ret
);
1080 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1081 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1082 DestroyWindow(hwEdit
);
1084 hwEdit
= create_editcontrol(ES_RIGHT
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1085 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1086 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1087 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1088 mid
= lo
+ (hi
- lo
) / 2;
1090 for (i
= lo
; i
< mid
; i
++) {
1091 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1092 ok(0 == ret
, "expected 0 got %d\n", ret
);
1094 for (i
= mid
; i
<= hi
; i
++) {
1095 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1096 ok(1 == ret
, "expected 1 got %d\n", ret
);
1098 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1099 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1100 DestroyWindow(hwEdit
);
1102 hwEdit
= create_editcontrol(ES_CENTER
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1103 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1104 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1105 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1106 mid
= lo
+ (hi
- lo
) / 2;
1108 for (i
= lo
; i
< mid
; i
++) {
1109 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1110 ok(0 == ret
, "expected 0 got %d\n", ret
);
1112 for (i
= mid
; i
<= hi
; i
++) {
1113 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1114 ok(1 == ret
, "expected 1 got %d\n", ret
);
1116 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1117 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1118 DestroyWindow(hwEdit
);
1120 hwEdit
= create_editcontrol(ES_MULTILINE
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1121 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1122 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1123 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1124 mid
= lo
+ (hi
- lo
) / 2 +1;
1126 for (i
= lo
; i
< mid
; i
++) {
1127 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1128 ok((0 == ret
|| 1 == ret
/* Vista */), "expected 0 or 1 got %d\n", ret
);
1130 for (i
= mid
; i
<= hi
; i
++) {
1131 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1132 ok(1 == ret
, "expected 1 got %d\n", ret
);
1134 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1135 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1136 DestroyWindow(hwEdit
);
1138 hwEdit
= create_editcontrol(ES_MULTILINE
| ES_RIGHT
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1139 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1140 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1141 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1142 mid
= lo
+ (hi
- lo
) / 2 +1;
1144 for (i
= lo
; i
< mid
; i
++) {
1145 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1146 ok((0 == ret
|| 1 == ret
/* Vista */), "expected 0 or 1 got %d\n", ret
);
1148 for (i
= mid
; i
<= hi
; i
++) {
1149 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1150 ok(1 == ret
, "expected 1 got %d\n", ret
);
1152 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1153 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1154 DestroyWindow(hwEdit
);
1156 hwEdit
= create_editcontrol(ES_MULTILINE
| ES_CENTER
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1157 SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "aa");
1158 lo
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 0, 0));
1159 hi
= LOWORD(SendMessage(hwEdit
, EM_POSFROMCHAR
, 1, 0));
1160 mid
= lo
+ (hi
- lo
) / 2 +1;
1162 for (i
= lo
; i
< mid
; i
++) {
1163 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1164 ok((0 == ret
|| 1 == ret
/* Vista */), "expected 0 or 1 got %d\n", ret
);
1166 for (i
= mid
; i
<= hi
; i
++) {
1167 ret
= LOWORD(SendMessage(hwEdit
, EM_CHARFROMPOS
, 0, i
));
1168 ok(1 == ret
, "expected 1 got %d\n", ret
);
1170 ret
= SendMessage(hwEdit
, EM_POSFROMCHAR
, 2, 0);
1171 ok(-1 == ret
, "expected -1 got %d\n", ret
);
1172 DestroyWindow(hwEdit
);
1175 /* Test if creating edit control without ES_AUTOHSCROLL and ES_AUTOVSCROLL
1176 * truncates text that doesn't fit.
1178 static void test_edit_control_5(void)
1180 static const char *str
= "test\r\ntest";
1184 RECT rc1
= { 10, 10, 11, 11};
1187 /* first show that a non-child won't do for this test */
1188 hWnd
= CreateWindowEx(0,
1193 NULL
, NULL
, NULL
, NULL
);
1195 /* size of non-child edit control is (much) bigger than requested */
1196 GetWindowRect( hWnd
, &rc
);
1197 ok( rc
.right
- rc
.left
> 20, "size of the window (%d) is smaller than expected\n",
1198 rc
.right
- rc
.left
);
1199 DestroyWindow(hWnd
);
1200 /* so create a parent, and give it edit controls children to test with */
1201 parentWnd
= CreateWindowEx(0,
1202 szEditTextPositionClass
,
1203 "Edit Test", WS_VISIBLE
|
1204 WS_OVERLAPPEDWINDOW
,
1205 CW_USEDEFAULT
, CW_USEDEFAULT
,
1207 NULL
, NULL
, hinst
, NULL
);
1209 ShowWindow( parentWnd
, SW_SHOW
);
1211 hWnd
= CreateWindowEx(0,
1213 str
, WS_VISIBLE
| WS_BORDER
|
1215 rc1
.left
, rc1
.top
, rc1
.right
- rc1
.left
, rc1
.bottom
- rc1
.top
,
1216 parentWnd
, NULL
, NULL
, NULL
);
1218 GetClientRect( hWnd
, &rc
);
1219 ok( rc
.right
== rc1
.right
- rc1
.left
&& rc
.bottom
== rc1
.bottom
- rc1
.top
,
1220 "Client rectangle not the expected size (%d,%d,%d,%d)\n",
1221 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
1222 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1223 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
1224 DestroyWindow(hWnd
);
1226 hWnd
= CreateWindowEx(0,
1229 WS_CHILD
| ES_MULTILINE
,
1230 rc1
.left
, rc1
.top
, rc1
.right
- rc1
.left
, rc1
.bottom
- rc1
.top
,
1231 parentWnd
, NULL
, NULL
, NULL
);
1233 GetClientRect( hWnd
, &rc
);
1234 ok( rc
.right
== rc1
.right
- rc1
.left
&& rc
.bottom
== rc1
.bottom
- rc1
.top
,
1235 "Client rectangle not the expected size (%d,%d,%d,%d)\n",
1236 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
1237 len
= SendMessageA(hWnd
, WM_GETTEXTLENGTH
, 0, 0);
1238 ok(lstrlenA(str
) == len
, "text shouldn't have been truncated\n");
1239 DestroyWindow(hWnd
);
1242 /* Test WM_GETTEXT processing
1243 * after destroy messages
1245 static void test_edit_control_6(void)
1247 static const char *str
= "test\r\ntest";
1252 hWnd
= CreateWindowEx(0,
1257 NULL
, NULL
, hinst
, NULL
);
1260 ret
= SendMessageA(hWnd
, WM_SETTEXT
, 0, (LPARAM
)str
);
1261 ok(ret
== TRUE
, "Expected %d, got %d\n", TRUE
, ret
);
1262 ret
= SendMessageA(hWnd
, WM_GETTEXT
, MAXLEN
, (LPARAM
)buf
);
1263 ok(ret
== lstrlen(str
), "Expected %s, got len %d\n", str
, ret
);
1264 ok(!lstrcmp(buf
, str
), "Expected %s, got %s\n", str
, buf
);
1266 ret
= SendMessageA(hWnd
, WM_DESTROY
, 0, 0);
1267 ok(ret
== 0, "Expected 0, got %d\n", ret
);
1268 ret
= SendMessageA(hWnd
, WM_GETTEXT
, MAXLEN
, (LPARAM
)buf
);
1269 ok(ret
== lstrlen(str
), "Expected %s, got len %d\n", str
, ret
);
1270 ok(!lstrcmp(buf
, str
), "Expected %s, got %s\n", str
, buf
);
1272 ret
= SendMessageA(hWnd
, WM_NCDESTROY
, 0, 0);
1273 ok(ret
== 0, "Expected 0, got %d\n", ret
);
1274 ret
= SendMessageA(hWnd
, WM_GETTEXT
, MAXLEN
, (LPARAM
)buf
);
1275 ok(ret
== 0, "Expected 0, got len %d\n", ret
);
1276 ok(!lstrcmp(buf
, ""), "Expected empty string, got %s\n", buf
);
1278 DestroyWindow(hWnd
);
1281 static void test_edit_control_limittext(void)
1286 /* Test default limit for single-line control */
1287 trace("EDIT: buffer limit for single-line\n");
1288 hwEdit
= create_editcontrol(ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1289 r
= SendMessage(hwEdit
, EM_GETLIMITTEXT
, 0, 0);
1290 ok(r
== 30000, "Incorrect default text limit, expected 30000 got %u\n", r
);
1291 SendMessage(hwEdit
, EM_SETLIMITTEXT
, 0, 0);
1292 r
= SendMessage(hwEdit
, EM_GETLIMITTEXT
, 0, 0);
1293 /* Win9x+ME: 32766; WinNT: 2147483646UL */
1294 ok( (r
== 32766) || (r
== 2147483646UL),
1295 "got limit %u (expected 32766 or 2147483646)\n", r
);
1296 DestroyWindow(hwEdit
);
1298 /* Test default limit for multi-line control */
1299 trace("EDIT: buffer limit for multi-line\n");
1300 hwEdit
= create_editcontrol(ES_MULTILINE
| WS_VSCROLL
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1301 r
= SendMessage(hwEdit
, EM_GETLIMITTEXT
, 0, 0);
1302 ok(r
== 30000, "Incorrect default text limit, expected 30000 got %u\n", r
);
1303 SendMessage(hwEdit
, EM_SETLIMITTEXT
, 0, 0);
1304 r
= SendMessage(hwEdit
, EM_GETLIMITTEXT
, 0, 0);
1305 /* Win9x+ME: 65535; WinNT: 4294967295UL */
1306 ok( (r
== 65535) || (r
== 4294967295UL),
1307 "got limit %u (expected 65535 or 4294967295)\n", r
);
1308 DestroyWindow(hwEdit
);
1311 static void test_margins(void)
1314 RECT old_rect
, new_rect
;
1315 INT old_left_margin
, old_right_margin
;
1316 DWORD old_margins
, new_margins
;
1318 hwEdit
= create_editcontrol(WS_BORDER
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
, 0);
1320 old_margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1321 old_left_margin
= LOWORD(old_margins
);
1322 old_right_margin
= HIWORD(old_margins
);
1324 /* Check if setting the margins works */
1326 SendMessage(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
, MAKELONG(10, 0));
1327 new_margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1328 ok(LOWORD(new_margins
) == 10, "Wrong left margin: %d\n", LOWORD(new_margins
));
1329 ok(HIWORD(new_margins
) == old_right_margin
, "Wrong right margin: %d\n", HIWORD(new_margins
));
1331 SendMessage(hwEdit
, EM_SETMARGINS
, EC_RIGHTMARGIN
, MAKELONG(0, 10));
1332 new_margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1333 ok(LOWORD(new_margins
) == 10, "Wrong left margin: %d\n", LOWORD(new_margins
));
1334 ok(HIWORD(new_margins
) == 10, "Wrong right margin: %d\n", HIWORD(new_margins
));
1337 /* The size of the rectangle must decrease if we increase the margin */
1339 SendMessage(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(5, 5));
1340 SendMessage(hwEdit
, EM_GETRECT
, 0, (LPARAM
)&old_rect
);
1341 SendMessage(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(15, 20));
1342 SendMessage(hwEdit
, EM_GETRECT
, 0, (LPARAM
)&new_rect
);
1343 ok(new_rect
.left
== old_rect
.left
+ 10, "The left border of the rectangle is wrong\n");
1344 ok(new_rect
.right
== old_rect
.right
- 15, "The right border of the rectangle is wrong\n");
1345 ok(new_rect
.top
== old_rect
.top
, "The top border of the rectangle must not change\n");
1346 ok(new_rect
.bottom
== old_rect
.bottom
, "The bottom border of the rectangle must not change\n");
1349 /* If we set the margin to same value as the current margin,
1350 the rectangle must not change */
1352 SendMessage(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(10, 10));
1354 old_rect
.right
= 99;
1356 old_rect
.bottom
= 99;
1357 SendMessage(hwEdit
, EM_SETRECT
, 0, (LPARAM
)&old_rect
);
1358 SendMessage(hwEdit
, EM_GETRECT
, 0, (LPARAM
)&old_rect
);
1359 SendMessage(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(10, 10));
1360 SendMessage(hwEdit
, EM_GETRECT
, 0, (LPARAM
)&new_rect
);
1361 ok(new_rect
.left
== old_rect
.left
, "The left border of the rectangle has changed\n");
1362 ok(new_rect
.right
== old_rect
.right
, "The right border of the rectangle has changed\n");
1363 ok(new_rect
.top
== old_rect
.top
, "The top border of the rectangle has changed\n");
1364 ok(new_rect
.bottom
== old_rect
.bottom
, "The bottom border of the rectangle has changed\n");
1366 DestroyWindow (hwEdit
);
1369 static INT CALLBACK
find_font_proc(const LOGFONT
*elf
, const TEXTMETRIC
*ntm
, DWORD type
, LPARAM lParam
)
1374 static void test_margins_font_change(void)
1377 DWORD margins
, font_margins
;
1379 HFONT hfont
, hfont2
;
1382 if(EnumFontFamiliesA(hdc
, "Arial", find_font_proc
, 0))
1384 trace("Arial not found - skipping font change margin tests\n");
1390 hwEdit
= create_child_editcontrol(0, 0);
1392 SetWindowPos(hwEdit
, NULL
, 10, 10, 1000, 100, SWP_NOZORDER
| SWP_NOACTIVATE
);
1394 memset(&lf
, 0, sizeof(lf
));
1395 strcpy(lf
.lfFaceName
, "Arial");
1397 lf
.lfCharSet
= DEFAULT_CHARSET
;
1398 hfont
= CreateFontIndirectA(&lf
);
1400 hfont2
= CreateFontIndirectA(&lf
);
1402 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1403 font_margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1404 ok(LOWORD(font_margins
) != 0, "got %d\n", LOWORD(font_margins
));
1405 ok(HIWORD(font_margins
) != 0, "got %d\n", HIWORD(font_margins
));
1407 /* With 'small' edit controls, test that the margin doesn't get set */
1408 SetWindowPos(hwEdit
, NULL
, 10, 10, 16, 100, SWP_NOZORDER
| SWP_NOACTIVATE
);
1409 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(0,0));
1410 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1411 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1412 ok(LOWORD(margins
) == 0 || broken(LOWORD(margins
) == LOWORD(font_margins
)), /* win95 */
1413 "got %d\n", LOWORD(margins
));
1414 ok(HIWORD(margins
) == 0 || broken(HIWORD(margins
) == HIWORD(font_margins
)), /* win95 */
1415 "got %d\n", HIWORD(margins
));
1417 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(1,0));
1418 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1419 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1420 ok(LOWORD(margins
) == 1 || broken(LOWORD(margins
) == LOWORD(font_margins
)), /* win95 */
1421 "got %d\n", LOWORD(margins
));
1422 ok(HIWORD(margins
) == 0 || broken(HIWORD(margins
) == HIWORD(font_margins
)), /* win95 */
1423 "got %d\n", HIWORD(margins
));
1425 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(1,1));
1426 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1427 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1428 ok(LOWORD(margins
) == 1 || broken(LOWORD(margins
) == LOWORD(font_margins
)), /* win95 */
1429 "got %d\n", LOWORD(margins
));
1430 ok(HIWORD(margins
) == 1 || broken(HIWORD(margins
) == HIWORD(font_margins
)), /* win95 */
1431 "got %d\n", HIWORD(margins
));
1433 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(EC_USEFONTINFO
,EC_USEFONTINFO
));
1434 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1435 ok(LOWORD(margins
) == 1 || broken(LOWORD(margins
) == LOWORD(font_margins
)), /* win95 */
1436 "got %d\n", LOWORD(margins
));
1437 ok(HIWORD(margins
) == 1 || broken(HIWORD(margins
) == HIWORD(font_margins
)), /* win95 */
1438 "got %d\n", HIWORD(margins
));
1440 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont2
, 0);
1441 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1442 ok(LOWORD(margins
) == 1 || broken(LOWORD(margins
) != 1 && LOWORD(margins
) != LOWORD(font_margins
)), /* win95 */
1443 "got %d\n", LOWORD(margins
));
1444 ok(HIWORD(margins
) == 1 || broken(HIWORD(margins
) != 1 && HIWORD(margins
) != HIWORD(font_margins
)), /* win95 */
1445 "got %d\n", HIWORD(margins
));
1447 /* Above a certain size threshold then the margin is updated */
1448 SetWindowPos(hwEdit
, NULL
, 10, 10, 1000, 100, SWP_NOZORDER
| SWP_NOACTIVATE
);
1449 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(1,0));
1450 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1451 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1452 ok(LOWORD(margins
) == LOWORD(font_margins
), "got %d\n", LOWORD(margins
));
1453 ok(HIWORD(margins
) == HIWORD(font_margins
), "got %d\n", HIWORD(margins
));
1455 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(1,1));
1456 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont
, 0);
1457 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1458 ok(LOWORD(margins
) == LOWORD(font_margins
), "got %d\n", LOWORD(margins
));
1459 ok(HIWORD(margins
) == HIWORD(font_margins
), "got %d\n", HIWORD(margins
));
1461 SendMessageA(hwEdit
, EM_SETMARGINS
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
, MAKELONG(EC_USEFONTINFO
,EC_USEFONTINFO
));
1462 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1463 ok(LOWORD(margins
) == LOWORD(font_margins
), "got %d\n", LOWORD(margins
));
1464 ok(HIWORD(margins
) == HIWORD(font_margins
), "got %d\n", HIWORD(margins
));
1465 SendMessageA(hwEdit
, WM_SETFONT
, (WPARAM
)hfont2
, 0);
1466 margins
= SendMessage(hwEdit
, EM_GETMARGINS
, 0, 0);
1467 ok(LOWORD(margins
) != LOWORD(font_margins
) || broken(LOWORD(margins
) == LOWORD(font_margins
)), /* win98 */
1468 "got %d\n", LOWORD(margins
));
1469 ok(HIWORD(margins
) != HIWORD(font_margins
), "got %d\n", HIWORD(margins
));
1471 SendMessageA(hwEdit
, WM_SETFONT
, 0, 0);
1473 DeleteObject(hfont2
);
1474 DeleteObject(hfont
);
1475 destroy_child_editcontrol(hwEdit
);
1479 #define edit_pos_ok(exp, got, txt) \
1480 ok(exp == got, "wrong " #txt " expected %d got %d\n", exp, got);
1482 #define check_pos(hwEdit, set_height, test_top, test_height, test_left) \
1486 set_client_height(hwEdit, set_height); \
1487 SendMessage(hwEdit, EM_GETRECT, 0, (LPARAM) &format_rect); \
1488 left_margin = LOWORD(SendMessage(hwEdit, EM_GETMARGINS, 0, 0)); \
1489 edit_pos_ok(test_top, format_rect.top, vertical position); \
1490 edit_pos_ok((int)test_height, format_rect.bottom - format_rect.top, height); \
1491 edit_pos_ok(test_left, format_rect.left - left_margin, left); \
1494 static void test_text_position_style(DWORD style
)
1497 HFONT font
, oldFont
;
1501 BOOL single_line
= !(style
& ES_MULTILINE
);
1503 b
= GetSystemMetrics(SM_CYBORDER
) + 1;
1508 /* Get a stock font for which we can determine the metrics */
1509 assert(font
= GetStockObject(SYSTEM_FONT
));
1510 assert(dc
= GetDC(NULL
));
1511 oldFont
= SelectObject(dc
, font
);
1512 assert(GetTextMetrics(dc
, &metrics
));
1513 SelectObject(dc
, oldFont
);
1514 ReleaseDC(NULL
, dc
);
1516 /* Windows' edit control has some bugs in multi-line mode:
1517 * - Sometimes the format rectangle doesn't get updated
1518 * (see workaround in set_client_height())
1519 * - If the height of the control is smaller than the height of a text
1520 * line, the format rectangle is still as high as a text line
1521 * (higher than the client rectangle) and the caret is not shown
1524 /* Edit controls that are in a parent window */
1526 hwEdit
= create_child_editcontrol(style
| WS_VISIBLE
, 0);
1527 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1529 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 0);
1530 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 0);
1531 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 0);
1532 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 0, metrics
.tmHeight
, 0);
1533 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 0, metrics
.tmHeight
, 0);
1534 destroy_child_editcontrol(hwEdit
);
1536 hwEdit
= create_child_editcontrol(style
| WS_BORDER
| WS_VISIBLE
, 0);
1537 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1539 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, b
);
1540 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, b
);
1541 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, b
);
1542 check_pos(hwEdit
, metrics
.tmHeight
+ bm
, 0, metrics
.tmHeight
, b
);
1543 check_pos(hwEdit
, metrics
.tmHeight
+ b2
, b
, metrics
.tmHeight
, b
);
1544 check_pos(hwEdit
, metrics
.tmHeight
+ b3
, b
, metrics
.tmHeight
, b
);
1545 destroy_child_editcontrol(hwEdit
);
1547 hwEdit
= create_child_editcontrol(style
| WS_VISIBLE
, WS_EX_CLIENTEDGE
);
1548 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1550 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 1);
1551 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 1);
1552 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 1);
1553 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 1, metrics
.tmHeight
, 1);
1554 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 1, metrics
.tmHeight
, 1);
1555 destroy_child_editcontrol(hwEdit
);
1557 hwEdit
= create_child_editcontrol(style
| WS_BORDER
| WS_VISIBLE
, WS_EX_CLIENTEDGE
);
1558 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1560 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 1);
1561 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 1);
1562 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 1);
1563 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 1, metrics
.tmHeight
, 1);
1564 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 1, metrics
.tmHeight
, 1);
1565 destroy_child_editcontrol(hwEdit
);
1568 /* Edit controls that are popup windows */
1570 hwEdit
= create_editcontrol(style
| WS_POPUP
, 0);
1571 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1573 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 0);
1574 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 0);
1575 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 0);
1576 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 0, metrics
.tmHeight
, 0);
1577 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 0, metrics
.tmHeight
, 0);
1578 DestroyWindow(hwEdit
);
1580 hwEdit
= create_editcontrol(style
| WS_POPUP
| WS_BORDER
, 0);
1581 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1583 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, b
);
1584 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, b
);
1585 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, b
);
1586 check_pos(hwEdit
, metrics
.tmHeight
+ bm
, 0, metrics
.tmHeight
, b
);
1587 check_pos(hwEdit
, metrics
.tmHeight
+ b2
, b
, metrics
.tmHeight
, b
);
1588 check_pos(hwEdit
, metrics
.tmHeight
+ b3
, b
, metrics
.tmHeight
, b
);
1589 DestroyWindow(hwEdit
);
1591 hwEdit
= create_editcontrol(style
| WS_POPUP
, WS_EX_CLIENTEDGE
);
1592 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1594 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 1);
1595 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 1);
1596 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 1);
1597 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 1, metrics
.tmHeight
, 1);
1598 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 1, metrics
.tmHeight
, 1);
1599 DestroyWindow(hwEdit
);
1601 hwEdit
= create_editcontrol(style
| WS_POPUP
| WS_BORDER
, WS_EX_CLIENTEDGE
);
1602 SendMessage(hwEdit
, WM_SETFONT
, (WPARAM
) font
, FALSE
);
1604 check_pos(hwEdit
, metrics
.tmHeight
- 1, 0, metrics
.tmHeight
- 1, 1);
1605 check_pos(hwEdit
, metrics
.tmHeight
, 0, metrics
.tmHeight
, 1);
1606 check_pos(hwEdit
, metrics
.tmHeight
+ 1, 0, metrics
.tmHeight
, 1);
1607 check_pos(hwEdit
, metrics
.tmHeight
+ 2, 1, metrics
.tmHeight
, 1);
1608 check_pos(hwEdit
, metrics
.tmHeight
+ 10, 1, metrics
.tmHeight
, 1);
1609 DestroyWindow(hwEdit
);
1612 static void test_text_position(void)
1614 trace("EDIT: Text position (Single line)\n");
1615 test_text_position_style(ES_AUTOHSCROLL
| ES_AUTOVSCROLL
);
1616 trace("EDIT: Text position (Multi line)\n");
1617 test_text_position_style(ES_MULTILINE
| ES_AUTOHSCROLL
| ES_AUTOVSCROLL
);
1620 static void test_espassword(void)
1625 const char* password
= "secret";
1627 hwEdit
= create_editcontrol(ES_PASSWORD
, 0);
1628 r
= get_edit_style(hwEdit
);
1629 ok(r
== ES_PASSWORD
, "Wrong style expected 0x%x got: 0x%x\n", ES_PASSWORD
, r
);
1631 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) password
);
1632 ok(r
== TRUE
, "Expected: %d, got: %d\n", TRUE
, r
);
1634 /* select all, cut (ctrl-x) */
1635 SendMessage(hwEdit
, EM_SETSEL
, 0, -1);
1636 r
= SendMessage(hwEdit
, WM_CHAR
, 24, 0);
1637 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1640 r
= SendMessage(hwEdit
, WM_GETTEXT
, 1024, (LPARAM
) buffer
);
1641 ok(r
== strlen(password
), "Expected: %s, got len %d\n", password
, r
);
1642 ok(strcmp(buffer
, password
) == 0, "expected %s, got %s\n", password
, buffer
);
1644 r
= OpenClipboard(hwEdit
);
1645 ok(r
== TRUE
, "expected %d, got %d\n", TRUE
, r
);
1646 r
= EmptyClipboard();
1647 ok(r
== TRUE
, "expected %d, got %d\n", TRUE
, r
);
1648 r
= CloseClipboard();
1649 ok(r
== TRUE
, "expected %d, got %d\n", TRUE
, r
);
1651 /* select all, copy (ctrl-c) and paste (ctrl-v) */
1652 SendMessage(hwEdit
, EM_SETSEL
, 0, -1);
1653 r
= SendMessage(hwEdit
, WM_CHAR
, 3, 0);
1654 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1655 r
= SendMessage(hwEdit
, WM_CHAR
, 22, 0);
1656 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1660 r
= SendMessage(hwEdit
, WM_GETTEXT
, 1024, (LPARAM
) buffer
);
1661 ok(r
== 0, "Expected: 0, got: %d\n", r
);
1662 ok(strcmp(buffer
, "") == 0, "expected empty string, got %s\n", buffer
);
1664 DestroyWindow (hwEdit
);
1667 static void test_undo(void)
1673 const char* text
= "undo this";
1675 hwEdit
= create_editcontrol(0, 0);
1676 r
= get_edit_style(hwEdit
);
1677 ok(0 == r
, "Wrong style expected 0x%x got: 0x%x\n", 0, r
);
1680 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) text
);
1681 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1684 cpMin
= cpMax
= 0xdeadbeef;
1685 SendMessage(hwEdit
, EM_SETSEL
, 0, -1);
1686 r
= SendMessage(hwEdit
, EM_GETSEL
, (WPARAM
) &cpMin
, (LPARAM
) &cpMax
);
1687 ok((strlen(text
) << 16) == r
, "Unexpected length %d\n", r
);
1688 ok(0 == cpMin
, "Expected: %d, got %d\n", 0, cpMin
);
1689 ok(9 == cpMax
, "Expected: %d, got %d\n", 9, cpMax
);
1692 r
= SendMessage(hwEdit
, WM_CHAR
, 24, 0);
1693 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1697 r
= SendMessage(hwEdit
, WM_GETTEXT
, 1024, (LPARAM
) buffer
);
1698 ok(0 == r
, "Expected: %d, got len %d\n", 0, r
);
1699 ok(0 == strcmp(buffer
, ""), "expected %s, got %s\n", "", buffer
);
1702 r
= SendMessage(hwEdit
, WM_CHAR
, 26, 0);
1703 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1707 r
= SendMessage(hwEdit
, WM_GETTEXT
, 1024, (LPARAM
) buffer
);
1708 ok(strlen(text
) == r
, "Unexpected length %d\n", r
);
1709 ok(0 == strcmp(buffer
, text
), "expected %s, got %s\n", text
, buffer
);
1711 /* undo again (ctrl-z) */
1712 r
= SendMessage(hwEdit
, WM_CHAR
, 26, 0);
1713 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1717 r
= SendMessage(hwEdit
, WM_GETTEXT
, 1024, (LPARAM
) buffer
);
1718 ok(r
== 0, "Expected: %d, got len %d\n", 0, r
);
1719 ok(0 == strcmp(buffer
, ""), "expected %s, got %s\n", "", buffer
);
1721 DestroyWindow (hwEdit
);
1724 static void test_enter(void)
1731 hwEdit
= create_editcontrol(ES_MULTILINE
, 0);
1732 r
= get_edit_style(hwEdit
);
1733 ok(ES_MULTILINE
== r
, "Wrong style expected 0x%x got: 0x%x\n", ES_MULTILINE
, r
);
1736 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "");
1737 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1739 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0);
1740 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1744 r
= SendMessage(hwEdit
, WM_GETTEXT
, 16, (LPARAM
) buffer
);
1745 ok(2 == r
, "Expected: %d, got len %d\n", 2, r
);
1746 ok(0 == strcmp(buffer
, "\r\n"), "expected \"\\r\\n\", got \"%s\"\n", buffer
);
1748 DestroyWindow (hwEdit
);
1751 hwEdit
= create_editcontrol(0, 0);
1752 r
= get_edit_style(hwEdit
);
1753 ok(0 == r
, "Wrong style expected 0x%x got: 0x%x\n", 0, r
);
1756 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "");
1757 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1759 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0);
1760 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1764 r
= SendMessage(hwEdit
, WM_GETTEXT
, 16, (LPARAM
) buffer
);
1765 ok(0 == r
, "Expected: %d, got len %d\n", 0, r
);
1766 ok(0 == strcmp(buffer
, ""), "expected \"\", got \"%s\"\n", buffer
);
1768 DestroyWindow (hwEdit
);
1770 /* single line with ES_WANTRETURN */
1771 hwEdit
= create_editcontrol(ES_WANTRETURN
, 0);
1772 r
= get_edit_style(hwEdit
);
1773 ok(ES_WANTRETURN
== r
, "Wrong style expected 0x%x got: 0x%x\n", ES_WANTRETURN
, r
);
1776 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "");
1777 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1779 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0);
1780 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1784 r
= SendMessage(hwEdit
, WM_GETTEXT
, 16, (LPARAM
) buffer
);
1785 ok(0 == r
, "Expected: %d, got len %d\n", 0, r
);
1786 ok(0 == strcmp(buffer
, ""), "expected \"\", got \"%s\"\n", buffer
);
1788 DestroyWindow (hwEdit
);
1791 static void test_tab(void)
1798 hwEdit
= create_editcontrol(ES_MULTILINE
, 0);
1799 r
= get_edit_style(hwEdit
);
1800 ok(ES_MULTILINE
== r
, "Wrong style expected 0x%x got: 0x%x\n", ES_MULTILINE
, r
);
1803 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "");
1804 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1806 r
= SendMessage(hwEdit
, WM_CHAR
, VK_TAB
, 0);
1807 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1811 r
= SendMessage(hwEdit
, WM_GETTEXT
, 16, (LPARAM
) buffer
);
1812 ok(1 == r
, "Expected: %d, got len %d\n", 1, r
);
1813 ok(0 == strcmp(buffer
, "\t"), "expected \"\\t\", got \"%s\"\n", buffer
);
1815 DestroyWindow (hwEdit
);
1818 hwEdit
= create_editcontrol(0, 0);
1819 r
= get_edit_style(hwEdit
);
1820 ok(0 == r
, "Wrong style expected 0x%x got: 0x%x\n", 0, r
);
1823 r
= SendMessage(hwEdit
, WM_SETTEXT
, 0, (LPARAM
) "");
1824 ok(TRUE
== r
, "Expected: %d, got: %d\n", TRUE
, r
);
1826 r
= SendMessage(hwEdit
, WM_CHAR
, VK_TAB
, 0);
1827 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
1831 r
= SendMessage(hwEdit
, WM_GETTEXT
, 16, (LPARAM
) buffer
);
1832 ok(0 == r
, "Expected: %d, got len %d\n", 0, r
);
1833 ok(0 == strcmp(buffer
, ""), "expected \"\", got \"%s\"\n", buffer
);
1835 DestroyWindow (hwEdit
);
1838 static void test_edit_dialog(void)
1842 /* from bug 11841 */
1843 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 0);
1844 ok(333 == r
, "Expected %d, got %d\n", 333, r
);
1845 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 1);
1846 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1847 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 2);
1848 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1850 /* more tests for WM_CHAR */
1851 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 3);
1852 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1853 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 4);
1854 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1855 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 5);
1856 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1858 /* more tests for WM_KEYDOWN + WM_CHAR */
1859 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 6);
1860 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1861 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 7);
1862 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1863 r
= DialogBoxParam(hinst
, "EDIT_READONLY_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 8);
1864 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1866 /* tests with an editable edit control */
1867 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 0);
1868 ok(333 == r
, "Expected %d, got %d\n", 333, r
);
1869 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 1);
1870 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1871 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 2);
1872 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1874 /* tests for WM_CHAR */
1875 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 3);
1876 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1877 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 4);
1878 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1879 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 5);
1880 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1882 /* tests for WM_KEYDOWN + WM_CHAR */
1883 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 6);
1884 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1885 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 7);
1886 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1887 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 8);
1888 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1890 /* multiple tab tests */
1891 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 9);
1892 ok(22 == r
, "Expected %d, got %d\n", 22, r
);
1893 r
= DialogBoxParam(hinst
, "EDIT_DIALOG", NULL
, (DLGPROC
)edit_dialog_proc
, 10);
1894 ok(33 == r
, "Expected %d, got %d\n", 33, r
);
1897 static void test_multi_edit_dialog(void)
1901 /* test for multiple edit dialogs (bug 12319) */
1902 r
= DialogBoxParam(hinst
, "MULTI_EDIT_DIALOG", NULL
, (DLGPROC
)multi_edit_dialog_proc
, 0);
1903 ok(2222 == r
, "Expected %d, got %d\n", 2222, r
);
1904 r
= DialogBoxParam(hinst
, "MULTI_EDIT_DIALOG", NULL
, (DLGPROC
)multi_edit_dialog_proc
, 1);
1905 ok(1111 == r
, "Expected %d, got %d\n", 1111, r
);
1906 r
= DialogBoxParam(hinst
, "MULTI_EDIT_DIALOG", NULL
, (DLGPROC
)multi_edit_dialog_proc
, 2);
1907 ok(2222 == r
, "Expected %d, got %d\n", 2222, r
);
1908 r
= DialogBoxParam(hinst
, "MULTI_EDIT_DIALOG", NULL
, (DLGPROC
)multi_edit_dialog_proc
, 3);
1909 ok(11 == r
, "Expected %d, got %d\n", 11, r
);
1912 static void test_wantreturn_edit_dialog(void)
1916 /* tests for WM_KEYDOWN */
1917 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 0);
1918 ok(333 == r
, "Expected %d, got %d\n", 333, r
);
1919 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 1);
1920 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1921 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 2);
1922 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1924 /* tests for WM_CHAR */
1925 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 3);
1926 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1927 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 4);
1928 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1929 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 5);
1930 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1932 /* tests for WM_KEYDOWN + WM_CHAR */
1933 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 6);
1934 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1935 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 7);
1936 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1937 r
= DialogBoxParam(hinst
, "EDIT_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_wantreturn_dialog_proc
, 8);
1938 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1941 static void test_singleline_wantreturn_edit_dialog(void)
1945 /* tests for WM_KEYDOWN */
1946 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 0);
1947 ok(222 == r
, "Expected %d, got %d\n", 222, r
);
1948 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 1);
1949 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1950 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 2);
1951 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1953 /* tests for WM_CHAR */
1954 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 3);
1955 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1956 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 4);
1957 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1958 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 5);
1959 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1961 /* tests for WM_KEYDOWN + WM_CHAR */
1962 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 6);
1963 ok(222 == r
, "Expected %d, got %d\n", 222, r
);
1964 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 7);
1965 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1966 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 8);
1967 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1969 /* tests for WM_KEYDOWN */
1970 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 0);
1971 ok(222 == r
, "Expected %d, got %d\n", 222, r
);
1972 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 1);
1973 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1974 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 2);
1975 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1977 /* tests for WM_CHAR */
1978 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 3);
1979 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1980 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 4);
1981 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1982 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 5);
1983 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1985 /* tests for WM_KEYDOWN + WM_CHAR */
1986 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 6);
1987 ok(222 == r
, "Expected %d, got %d\n", 222, r
);
1988 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 7);
1989 ok(111 == r
, "Expected %d, got %d\n", 111, r
);
1990 r
= DialogBoxParam(hinst
, "EDIT_SINGLELINE_WANTRETURN_DIALOG", NULL
, (DLGPROC
)edit_singleline_dialog_proc
, 8);
1991 ok(444 == r
, "Expected %d, got %d\n", 444, r
);
1994 static int child_edit_wmkeydown_num_messages
= 0;
1995 static INT_PTR CALLBACK
child_edit_wmkeydown_proc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
2004 child_edit_wmkeydown_num_messages
++;
2011 static void test_child_edit_wmkeydown(void)
2013 HWND hwEdit
, hwParent
;
2016 hwEdit
= create_child_editcontrol(0, 0);
2017 hwParent
= GetParent(hwEdit
);
2018 SetWindowLongPtr(hwParent
, GWLP_WNDPROC
, (LONG_PTR
)child_edit_wmkeydown_proc
);
2019 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
2020 ok(1 == r
, "expected 1, got %d\n", r
);
2021 ok(0 == child_edit_wmkeydown_num_messages
, "expected 0, got %d\n", child_edit_wmkeydown_num_messages
);
2022 destroy_child_editcontrol(hwEdit
);
2025 static BOOL
RegisterWindowClasses (void)
2029 WNDCLASSA text_position
;
2032 test2
.lpfnWndProc
= ET2_WndProc
;
2033 test2
.cbClsExtra
= 0;
2034 test2
.cbWndExtra
= 0;
2035 test2
.hInstance
= hinst
;
2037 test2
.hCursor
= LoadCursorA (NULL
, IDC_ARROW
);
2038 test2
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
2039 test2
.lpszMenuName
= NULL
;
2040 test2
.lpszClassName
= szEditTest2Class
;
2041 if (!RegisterClassA(&test2
)) return FALSE
;
2044 test3
.lpfnWndProc
= edit3_wnd_procA
;
2045 test3
.cbClsExtra
= 0;
2046 test3
.cbWndExtra
= 0;
2047 test3
.hInstance
= hinst
;
2049 test3
.hCursor
= LoadCursorA(0, IDC_ARROW
);
2050 test3
.hbrBackground
= GetStockObject(WHITE_BRUSH
);
2051 test3
.lpszMenuName
= NULL
;
2052 test3
.lpszClassName
= szEditTest3Class
;
2053 if (!RegisterClassA(&test3
)) return FALSE
;
2055 text_position
.style
= CS_HREDRAW
| CS_VREDRAW
;
2056 text_position
.cbClsExtra
= 0;
2057 text_position
.cbWndExtra
= 0;
2058 text_position
.hInstance
= hinst
;
2059 text_position
.hIcon
= NULL
;
2060 text_position
.hCursor
= LoadCursorA(NULL
, IDC_ARROW
);
2061 text_position
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+ 1);
2062 text_position
.lpszMenuName
= NULL
;
2063 text_position
.lpszClassName
= szEditTextPositionClass
;
2064 text_position
.lpfnWndProc
= DefWindowProc
;
2065 if (!RegisterClassA(&text_position
)) return FALSE
;
2070 static void UnregisterWindowClasses (void)
2072 UnregisterClassA(szEditTest2Class
, hinst
);
2073 UnregisterClassA(szEditTest3Class
, hinst
);
2074 UnregisterClassA(szEditTextPositionClass
, hinst
);
2077 static void test_fontsize(void)
2083 char szLocalString
[MAXLEN
];
2085 memset(&lf
,0,sizeof(LOGFONTA
));
2086 strcpy(lf
.lfFaceName
,"Arial");
2087 lf
.lfHeight
= -300; /* taller than the edit box */
2089 hfont
= CreateFontIndirect(&lf
);
2091 trace("EDIT: Oversized font (Multi line)\n");
2092 hwEdit
= CreateWindow("EDIT", NULL
, ES_MULTILINE
|ES_AUTOHSCROLL
,
2093 0, 0, 150, 50, NULL
, NULL
, hinst
, NULL
);
2095 SendMessage(hwEdit
,WM_SETFONT
,(WPARAM
)hfont
,0);
2097 if (winetest_interactive
)
2098 ShowWindow (hwEdit
, SW_SHOW
);
2100 r
= SendMessage(hwEdit
, WM_CHAR
, 'A', 1);
2101 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
2102 r
= SendMessage(hwEdit
, WM_CHAR
, 'B', 1);
2103 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
2104 r
= SendMessage(hwEdit
, WM_CHAR
, 'C', 1);
2105 ok(1 == r
, "Expected: %d, got: %d\n", 1, r
);
2107 GetWindowText(hwEdit
, szLocalString
, MAXLEN
);
2108 ok(lstrcmp(szLocalString
, "ABC")==0,
2109 "Wrong contents of edit: %s\n", szLocalString
);
2111 r
= SendMessage(hwEdit
, EM_POSFROMCHAR
,0,0);
2112 ok(r
!= -1,"EM_POSFROMCHAR failed index 0\n");
2113 r
= SendMessage(hwEdit
, EM_POSFROMCHAR
,1,0);
2114 ok(r
!= -1,"EM_POSFROMCHAR failed index 1\n");
2115 r
= SendMessage(hwEdit
, EM_POSFROMCHAR
,2,0);
2116 ok(r
!= -1,"EM_POSFROMCHAR failed index 2\n");
2117 r
= SendMessage(hwEdit
, EM_POSFROMCHAR
,3,0);
2118 ok(r
== -1,"EM_POSFROMCHAR succeeded index 3\n");
2120 DestroyWindow (hwEdit
);
2121 DeleteObject(hfont
);
2124 struct dialog_mode_messages
2126 int wm_getdefid
, wm_close
, wm_command
, wm_nextdlgctl
;
2129 static struct dialog_mode_messages dm_messages
;
2131 static void zero_dm_messages(void)
2133 dm_messages
.wm_command
= 0;
2134 dm_messages
.wm_close
= 0;
2135 dm_messages
.wm_getdefid
= 0;
2136 dm_messages
.wm_nextdlgctl
= 0;
2139 #define test_dm_messages(wmcommand, wmclose, wmgetdefid, wmnextdlgctl) \
2140 ok(dm_messages.wm_command == wmcommand, "expected %d WM_COMMAND messages, " \
2141 "got %d\n", wmcommand, dm_messages.wm_command); \
2142 ok(dm_messages.wm_close == wmclose, "expected %d WM_CLOSE messages, " \
2143 "got %d\n", wmclose, dm_messages.wm_close); \
2144 ok(dm_messages.wm_getdefid == wmgetdefid, "expected %d WM_GETDIFID messages, " \
2145 "got %d\n", wmgetdefid, dm_messages.wm_getdefid);\
2146 ok(dm_messages.wm_nextdlgctl == wmnextdlgctl, "expected %d WM_NEXTDLGCTL messages, " \
2147 "got %d\n", wmnextdlgctl, dm_messages.wm_nextdlgctl)
2149 static LRESULT CALLBACK
dialog_mode_wnd_proc(HWND hwnd
, UINT iMsg
, WPARAM wParam
, LPARAM lParam
)
2154 dm_messages
.wm_command
++;
2157 dm_messages
.wm_getdefid
++;
2158 return MAKELONG(ID_EDITTESTDBUTTON
, DC_HASDEFID
);
2160 dm_messages
.wm_nextdlgctl
++;
2163 dm_messages
.wm_close
++;
2167 return DefWindowProc(hwnd
, iMsg
, wParam
, lParam
);
2170 static void test_dialogmode(void)
2172 HWND hwEdit
, hwParent
, hwButton
;
2175 hwEdit
= create_child_editcontrol(ES_MULTILINE
, 0);
2177 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2178 ok(1 == r
, "expected 1, got %d\n", r
);
2179 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2180 ok(11 == len
, "expected 11, got %d\n", len
);
2182 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, 0);
2183 ok(0x8d == r
, "expected 0x8d, got 0x%x\n", r
);
2185 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2186 ok(1 == r
, "expected 1, got %d\n", r
);
2187 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2188 ok(13 == len
, "expected 13, got %d\n", len
);
2190 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, 0, (LPARAM
)&msg
);
2191 ok(0x8d == r
, "expected 0x8d, got 0x%x\n", r
);
2192 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2193 ok(1 == r
, "expected 1, got %d\n", r
);
2194 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2195 ok(13 == len
, "expected 13, got %d\n", len
);
2197 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2198 ok(1 == r
, "expected 1, got %d\n", r
);
2199 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2200 ok(13 == len
, "expected 13, got %d\n", len
);
2202 destroy_child_editcontrol(hwEdit
);
2204 hwEdit
= create_editcontrol(ES_MULTILINE
, 0);
2206 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2207 ok(1 == r
, "expected 1, got %d\n", r
);
2208 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2209 ok(11 == len
, "expected 11, got %d\n", len
);
2212 msg
.message
= WM_KEYDOWN
;
2213 msg
.wParam
= VK_BACK
;
2214 msg
.lParam
= 0xe0001;
2215 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, VK_BACK
, (LPARAM
)&msg
);
2216 ok(0x8d == r
, "expected 0x8d, got 0x%x\n", r
);
2218 r
= SendMessage(hwEdit
, WM_CHAR
, VK_RETURN
, 0x1c0001);
2219 ok(1 == r
, "expected 1, got %d\n", r
);
2220 len
= SendMessage(hwEdit
, WM_GETTEXTLENGTH
, 0, 0);
2221 ok(11 == len
, "expected 11, got %d\n", len
);
2223 DestroyWindow(hwEdit
);
2225 hwEdit
= create_child_editcontrol(0, 0);
2226 hwParent
= GetParent(hwEdit
);
2227 SetWindowLongPtr(hwParent
, GWLP_WNDPROC
, (LONG_PTR
)dialog_mode_wnd_proc
);
2230 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
2231 ok(1 == r
, "expected 1, got %d\n", r
);
2232 test_dm_messages(0, 0, 0, 0);
2235 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
2236 ok(1 == r
, "expected 1, got %d\n", r
);
2237 test_dm_messages(0, 0, 0, 0);
2241 msg
.message
= WM_KEYDOWN
;
2242 msg
.wParam
= VK_TAB
;
2243 msg
.lParam
= 0xf0001;
2244 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, VK_TAB
, (LPARAM
)&msg
);
2245 ok(0x89 == r
, "expected 0x89, got 0x%x\n", r
);
2246 test_dm_messages(0, 0, 0, 0);
2249 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
2250 ok(1 == r
, "expected 1, got %d\n", r
);
2251 test_dm_messages(0, 0, 0, 0);
2254 destroy_child_editcontrol(hwEdit
);
2256 hwEdit
= create_child_editcontrol(ES_MULTILINE
, 0);
2257 hwParent
= GetParent(hwEdit
);
2258 SetWindowLongPtr(hwParent
, GWLP_WNDPROC
, (LONG_PTR
)dialog_mode_wnd_proc
);
2260 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
2261 ok(1 == r
, "expected 1, got %d\n", r
);
2262 test_dm_messages(0, 0, 0, 0);
2266 msg
.message
= WM_KEYDOWN
;
2267 msg
.wParam
= VK_ESCAPE
;
2268 msg
.lParam
= 0x10001;
2269 r
= SendMessage(hwEdit
, WM_GETDLGCODE
, VK_ESCAPE
, (LPARAM
)&msg
);
2270 ok(0x8d == r
, "expected 0x8d, got 0x%x\n", r
);
2271 test_dm_messages(0, 0, 0, 0);
2274 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_ESCAPE
, 0x10001);
2275 ok(1 == r
, "expected 1, got %d\n", r
);
2276 test_dm_messages(0, 0, 0, 0);
2279 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_TAB
, 0xf0001);
2280 ok(1 == r
, "expected 1, got %d\n", r
);
2281 test_dm_messages(0, 0, 0, 1);
2284 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
2285 ok(1 == r
, "expected 1, got %d\n", r
);
2286 test_dm_messages(0, 0, 1, 0);
2289 hwButton
= CreateWindow("BUTTON", "OK", WS_VISIBLE
|WS_CHILD
|BS_PUSHBUTTON
,
2290 100, 100, 50, 20, hwParent
, (HMENU
)ID_EDITTESTDBUTTON
, hinst
, NULL
);
2291 ok(hwButton
!=NULL
, "CreateWindow failed with error code %d\n", GetLastError());
2293 r
= SendMessage(hwEdit
, WM_KEYDOWN
, VK_RETURN
, 0x1c0001);
2294 ok(1 == r
, "expected 1, got %d\n", r
);
2295 test_dm_messages(0, 0, 1, 1);
2298 DestroyWindow(hwButton
);
2299 destroy_child_editcontrol(hwEdit
);
2304 hinst
= GetModuleHandleA(NULL
);
2305 assert(RegisterWindowClasses());
2307 test_edit_control_1();
2308 test_edit_control_2();
2309 test_edit_control_3();
2310 test_edit_control_4();
2311 test_edit_control_5();
2312 test_edit_control_6();
2313 test_edit_control_limittext();
2315 test_margins_font_change();
2316 test_text_position();
2322 test_multi_edit_dialog();
2323 test_wantreturn_edit_dialog();
2324 test_singleline_wantreturn_edit_dialog();
2325 test_child_edit_wmkeydown();
2329 UnregisterWindowClasses();