Added a test to confirm the behavior of GetRandomRgn.
[wine] / dlls / user / edit.c
1 /*
2  *      Edit control
3  *
4  *      Copyright  David W. Metcalfe, 1994
5  *      Copyright  William Magro, 1995, 1996
6  *      Copyright  Frans van Dorsselaer, 1996, 1997
7  *
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  * NOTES
24  *
25  * This code was audited for completeness against the documented features
26  * of Comctl32.dll version 6.0 on Oct. 8, 2004, by Dimitrie O. Paun.
27  * 
28  * Unless otherwise noted, we believe this code to be complete, as per
29  * the specification mentioned above.
30  * If you discover missing features, or bugs, please note them below.
31  *
32  * TODO:
33  *   - EDITBALLOONTIP structure
34  *   - EM_GETCUEBANNER/Edit_GetCueBannerText
35  *   - EM_HIDEBALLOONTIP/Edit_HideBalloonTip
36  *   - EM_SETCUEBANNER/Edit_SetCueBannerText
37  *   - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip
38  *   - EM_GETIMESTATUS, EM_SETIMESTATUS
39  *   - EN_ALIGN_LTR_EC
40  *   - EN_ALIGN_RTL_EC
41  *   - ES_OEMCONVERT
42  *
43  */
44
45 #include "config.h"
46
47 #include <stdarg.h>
48 #include <string.h>
49 #include <stdlib.h>
50
51 #include "windef.h"
52 #include "winbase.h"
53 #include "winnt.h"
54 #include "wownt32.h"
55 #include "win.h"
56 #include "wine/winbase16.h"
57 #include "wine/winuser16.h"
58 #include "wine/unicode.h"
59 #include "controls.h"
60 #include "user_private.h"
61 #include "wine/debug.h"
62
63 WINE_DEFAULT_DEBUG_CHANNEL(edit);
64 WINE_DECLARE_DEBUG_CHANNEL(combo);
65 WINE_DECLARE_DEBUG_CHANNEL(relay);
66
67 #define BUFLIMIT_MULTI          65534   /* maximum buffer size (not including '\0')
68                                            FIXME: BTW, new specs say 65535 (do you dare ???) */
69 #define BUFLIMIT_SINGLE         32766   /* maximum buffer size (not including '\0') */
70 #define GROWLENGTH              32      /* buffers granularity in bytes: must be power of 2 */
71 #define ROUND_TO_GROW(size)     (((size) + (GROWLENGTH - 1)) & ~(GROWLENGTH - 1))
72 #define HSCROLL_FRACTION        3       /* scroll window by 1/3 width */
73
74 /*
75  *      extra flags for EDITSTATE.flags field
76  */
77 #define EF_MODIFIED             0x0001  /* text has been modified */
78 #define EF_FOCUSED              0x0002  /* we have input focus */
79 #define EF_UPDATE               0x0004  /* notify parent of changed state */
80 #define EF_VSCROLL_TRACK        0x0008  /* don't SetScrollPos() since we are tracking the thumb */
81 #define EF_HSCROLL_TRACK        0x0010  /* don't SetScrollPos() since we are tracking the thumb */
82 #define EF_AFTER_WRAP           0x0080  /* the caret is displayed after the last character of a
83                                            wrapped line, instead of in front of the next character */
84 #define EF_USE_SOFTBRK          0x0100  /* Enable soft breaks in text. */
85
86 typedef enum
87 {
88         END_0 = 0,                      /* line ends with terminating '\0' character */
89         END_WRAP,                       /* line is wrapped */
90         END_HARD,                       /* line ends with a hard return '\r\n' */
91         END_SOFT,                       /* line ends with a soft return '\r\r\n' */
92         END_RICH                        /* line ends with a single '\n' */
93 } LINE_END;
94
95 typedef struct tagLINEDEF {
96         INT length;                     /* bruto length of a line in bytes */
97         INT net_length;                 /* netto length of a line in visible characters */
98         LINE_END ending;
99         INT width;                      /* width of the line in pixels */
100         INT index;                      /* line index into the buffer */
101         struct tagLINEDEF *next;
102 } LINEDEF;
103
104 typedef struct
105 {
106         BOOL is_unicode;                /* how the control was created */
107         LPWSTR text;                    /* the actual contents of the control */
108         UINT buffer_size;               /* the size of the buffer in characters */
109         UINT buffer_limit;              /* the maximum size to which the buffer may grow in characters */
110         HFONT font;                     /* NULL means standard system font */
111         INT x_offset;                   /* scroll offset        for multi lines this is in pixels
112                                                                 for single lines it's in characters */
113         INT line_height;                /* height of a screen line in pixels */
114         INT char_width;                 /* average character width in pixels */
115         DWORD style;                    /* sane version of wnd->dwStyle */
116         WORD flags;                     /* flags that are not in es->style or wnd->flags (EF_XXX) */
117         INT undo_insert_count;          /* number of characters inserted in sequence */
118         UINT undo_position;             /* character index of the insertion and deletion */
119         LPWSTR undo_text;               /* deleted text */
120         UINT undo_buffer_size;          /* size of the deleted text buffer */
121         INT selection_start;            /* == selection_end if no selection */
122         INT selection_end;              /* == current caret position */
123         WCHAR password_char;            /* == 0 if no password char, and for multi line controls */
124         INT left_margin;                /* in pixels */
125         INT right_margin;               /* in pixels */
126         RECT format_rect;
127         INT text_width;                 /* width of the widest line in pixels for multi line controls
128                                            and just line width for single line controls */
129         INT region_posx;                /* Position of cursor relative to region: */
130         INT region_posy;                /* -1: to left, 0: within, 1: to right */
131         EDITWORDBREAKPROC16 word_break_proc16;
132         void *word_break_proc;          /* 32-bit word break proc: ANSI or Unicode */
133         INT line_count;                 /* number of lines */
134         INT y_offset;                   /* scroll offset in number of lines */
135         BOOL bCaptureState;             /* flag indicating whether mouse was captured */
136         BOOL bEnableState;              /* flag keeping the enable state */
137         HWND hwndSelf;                  /* the our window handle */
138         HWND hwndParent;                /* Handle of parent for sending EN_* messages.
139                                            Even if parent will change, EN_* messages
140                                            should be sent to the first parent. */
141         HWND hwndListBox;               /* handle of ComboBox's listbox or NULL */
142         /*
143          *      only for multi line controls
144          */
145         INT lock_count;                 /* amount of re-entries in the EditWndProc */
146         INT tabs_count;
147         LPINT tabs;
148         LINEDEF *first_line_def;        /* linked list of (soft) linebreaks */
149         HLOCAL hloc32W;                 /* our unicode local memory block */
150         HLOCAL16 hloc16;                /* alias for 16-bit control receiving EM_GETHANDLE16
151                                            or EM_SETHANDLE16 */
152         HLOCAL hloc32A;                 /* alias for ANSI control receiving EM_GETHANDLE
153                                            or EM_SETHANDLE */
154 } EDITSTATE;
155
156
157 #define SWAP_UINT32(x,y) do { UINT temp = (UINT)(x); (x) = (UINT)(y); (y) = temp; } while(0)
158 #define ORDER_UINT(x,y) do { if ((UINT)(y) < (UINT)(x)) SWAP_UINT32((x),(y)); } while(0)
159
160 /* used for disabled or read-only edit control */
161 #define EDIT_NOTIFY_PARENT(es, wNotifyCode) \
162         do \
163         { /* Notify parent which has created this edit control */ \
164             TRACE("notification " #wNotifyCode " sent to hwnd=%p\n", es->hwndParent); \
165             SendMessageW(es->hwndParent, WM_COMMAND, \
166                      MAKEWPARAM(GetWindowLongPtrW((es->hwndSelf),GWLP_ID), wNotifyCode), \
167                      (LPARAM)(es->hwndSelf)); \
168         } while(0)
169
170 /*********************************************************************
171  *
172  *      Declarations
173  *
174  */
175
176 /*
177  *      These functions have trivial implementations
178  *      We still like to call them internally
179  *      "static inline" makes them more like macro's
180  */
181 static inline BOOL      EDIT_EM_CanUndo(EDITSTATE *es);
182 static inline void      EDIT_EM_EmptyUndoBuffer(EDITSTATE *es);
183 static inline void      EDIT_WM_Clear(EDITSTATE *es);
184 static inline void      EDIT_WM_Cut(EDITSTATE *es);
185
186 /*
187  *      Helper functions only valid for one type of control
188  */
189 static void     EDIT_BuildLineDefs_ML(EDITSTATE *es, INT iStart, INT iEnd, INT delta, HRGN hrgn);
190 static void     EDIT_CalcLineWidth_SL(EDITSTATE *es);
191 static LPWSTR   EDIT_GetPasswordPointer_SL(EDITSTATE *es);
192 static void     EDIT_MoveDown_ML(EDITSTATE *es, BOOL extend);
193 static void     EDIT_MovePageDown_ML(EDITSTATE *es, BOOL extend);
194 static void     EDIT_MovePageUp_ML(EDITSTATE *es, BOOL extend);
195 static void     EDIT_MoveUp_ML(EDITSTATE *es, BOOL extend);
196 /*
197  *      Helper functions valid for both single line _and_ multi line controls
198  */
199 static INT      EDIT_CallWordBreakProc(EDITSTATE *es, INT start, INT index, INT count, INT action);
200 static INT      EDIT_CharFromPos(EDITSTATE *es, INT x, INT y, LPBOOL after_wrap);
201 static void     EDIT_ConfinePoint(EDITSTATE *es, LPINT x, LPINT y);
202 static void     EDIT_GetLineRect(EDITSTATE *es, INT line, INT scol, INT ecol, LPRECT rc);
203 static void     EDIT_InvalidateText(EDITSTATE *es, INT start, INT end);
204 static void     EDIT_LockBuffer(EDITSTATE *es);
205 static BOOL     EDIT_MakeFit(EDITSTATE *es, UINT size);
206 static BOOL     EDIT_MakeUndoFit(EDITSTATE *es, UINT size);
207 static void     EDIT_MoveBackward(EDITSTATE *es, BOOL extend);
208 static void     EDIT_MoveEnd(EDITSTATE *es, BOOL extend);
209 static void     EDIT_MoveForward(EDITSTATE *es, BOOL extend);
210 static void     EDIT_MoveHome(EDITSTATE *es, BOOL extend);
211 static void     EDIT_MoveWordBackward(EDITSTATE *es, BOOL extend);
212 static void     EDIT_MoveWordForward(EDITSTATE *es, BOOL extend);
213 static void     EDIT_PaintLine(EDITSTATE *es, HDC hdc, INT line, BOOL rev);
214 static INT      EDIT_PaintText(EDITSTATE *es, HDC hdc, INT x, INT y, INT line, INT col, INT count, BOOL rev);
215 static void     EDIT_SetCaretPos(EDITSTATE *es, INT pos, BOOL after_wrap);
216 static void     EDIT_AdjustFormatRect(EDITSTATE *es);
217 static void     EDIT_SetRectNP(EDITSTATE *es, LPRECT lprc);
218 static void     EDIT_UnlockBuffer(EDITSTATE *es, BOOL force);
219 static void     EDIT_UpdateScrollInfo(EDITSTATE *es);
220 static INT CALLBACK EDIT_WordBreakProc(LPWSTR s, INT index, INT count, INT action);
221 /*
222  *      EM_XXX message handlers
223  */
224 static LRESULT  EDIT_EM_CharFromPos(EDITSTATE *es, INT x, INT y);
225 static BOOL     EDIT_EM_FmtLines(EDITSTATE *es, BOOL add_eol);
226 static HLOCAL   EDIT_EM_GetHandle(EDITSTATE *es);
227 static HLOCAL16 EDIT_EM_GetHandle16(EDITSTATE *es);
228 static INT      EDIT_EM_GetLine(EDITSTATE *es, INT line, LPWSTR dst, BOOL unicode);
229 static LRESULT  EDIT_EM_GetSel(EDITSTATE *es, PUINT start, PUINT end);
230 static LRESULT  EDIT_EM_GetThumb(EDITSTATE *es);
231 static INT      EDIT_EM_LineFromChar(EDITSTATE *es, INT index);
232 static INT      EDIT_EM_LineIndex(EDITSTATE *es, INT line);
233 static INT      EDIT_EM_LineLength(EDITSTATE *es, INT index);
234 static BOOL     EDIT_EM_LineScroll(EDITSTATE *es, INT dx, INT dy);
235 static BOOL     EDIT_EM_LineScroll_internal(EDITSTATE *es, INT dx, INT dy);
236 static LRESULT  EDIT_EM_PosFromChar(EDITSTATE *es, INT index, BOOL after_wrap);
237 static void     EDIT_EM_ReplaceSel(EDITSTATE *es, BOOL can_undo, LPCWSTR lpsz_replace, BOOL send_update, BOOL honor_limit);
238 static LRESULT  EDIT_EM_Scroll(EDITSTATE *es, INT action);
239 static void     EDIT_EM_ScrollCaret(EDITSTATE *es);
240 static void     EDIT_EM_SetHandle(EDITSTATE *es, HLOCAL hloc);
241 static void     EDIT_EM_SetHandle16(EDITSTATE *es, HLOCAL16 hloc);
242 static void     EDIT_EM_SetLimitText(EDITSTATE *es, INT limit);
243 static void     EDIT_EM_SetMargins(EDITSTATE *es, INT action, INT left, INT right, BOOL repaint);
244 static void     EDIT_EM_SetPasswordChar(EDITSTATE *es, WCHAR c);
245 static void     EDIT_EM_SetSel(EDITSTATE *es, UINT start, UINT end, BOOL after_wrap);
246 static BOOL     EDIT_EM_SetTabStops(EDITSTATE *es, INT count, LPINT tabs);
247 static BOOL     EDIT_EM_SetTabStops16(EDITSTATE *es, INT count, LPINT16 tabs);
248 static void     EDIT_EM_SetWordBreakProc(EDITSTATE *es, void *wbp);
249 static void     EDIT_EM_SetWordBreakProc16(EDITSTATE *es, EDITWORDBREAKPROC16 wbp);
250 static BOOL     EDIT_EM_Undo(EDITSTATE *es);
251 /*
252  *      WM_XXX message handlers
253  */
254 static void     EDIT_WM_Char(EDITSTATE *es, WCHAR c);
255 static void     EDIT_WM_Command(EDITSTATE *es, INT code, INT id, HWND conrtol);
256 static void     EDIT_WM_ContextMenu(EDITSTATE *es, INT x, INT y);
257 static void     EDIT_WM_Copy(EDITSTATE *es);
258 static LRESULT  EDIT_WM_Create(EDITSTATE *es, LPCWSTR name);
259 static LRESULT  EDIT_WM_Destroy(EDITSTATE *es);
260 static LRESULT  EDIT_WM_EraseBkGnd(EDITSTATE *es, HDC dc);
261 static INT      EDIT_WM_GetText(EDITSTATE *es, INT count, LPWSTR dst, BOOL unicode);
262 static LRESULT  EDIT_WM_HScroll(EDITSTATE *es, INT action, INT pos);
263 static LRESULT  EDIT_WM_KeyDown(EDITSTATE *es, INT key);
264 static LRESULT  EDIT_WM_KillFocus(EDITSTATE *es);
265 static LRESULT  EDIT_WM_LButtonDblClk(EDITSTATE *es);
266 static LRESULT  EDIT_WM_LButtonDown(EDITSTATE *es, DWORD keys, INT x, INT y);
267 static LRESULT  EDIT_WM_LButtonUp(EDITSTATE *es);
268 static LRESULT  EDIT_WM_MButtonDown(EDITSTATE *es);
269 static LRESULT  EDIT_WM_MouseMove(EDITSTATE *es, INT x, INT y);
270 static LRESULT  EDIT_WM_NCCreate(HWND hwnd, LPCREATESTRUCTW lpcs, BOOL unicode);
271 static void     EDIT_WM_Paint(EDITSTATE *es, HDC hdc);
272 static void     EDIT_WM_Paste(EDITSTATE *es);
273 static void     EDIT_WM_SetFocus(EDITSTATE *es);
274 static void     EDIT_WM_SetFont(EDITSTATE *es, HFONT font, BOOL redraw);
275 static void     EDIT_WM_SetText(EDITSTATE *es, LPCWSTR text, BOOL unicode);
276 static void     EDIT_WM_Size(EDITSTATE *es, UINT action, INT width, INT height);
277 static LRESULT  EDIT_WM_StyleChanged(EDITSTATE *es, WPARAM which, const STYLESTRUCT *style);
278 static LRESULT  EDIT_WM_SysKeyDown(EDITSTATE *es, INT key, DWORD key_data);
279 static void     EDIT_WM_Timer(EDITSTATE *es);
280 static LRESULT  EDIT_WM_VScroll(EDITSTATE *es, INT action, INT pos);
281 static void     EDIT_UpdateText(EDITSTATE *es, LPRECT rc, BOOL bErase);
282 static void     EDIT_UpdateTextRegion(EDITSTATE *es, HRGN hrgn, BOOL bErase);
283
284 LRESULT WINAPI EditWndProcA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
285 LRESULT WINAPI EditWndProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
286
287 /*********************************************************************
288  * edit class descriptor
289  */
290 const struct builtin_class_descr EDIT_builtin_class =
291 {
292     "Edit",               /* name */
293     CS_DBLCLKS | CS_PARENTDC,   /* style */
294     EditWndProcA,         /* procA */
295     EditWndProcW,         /* procW */
296     sizeof(EDITSTATE *),  /* extra */
297     IDC_IBEAM,            /* cursor */
298     0                     /* brush */
299 };
300
301
302 /*********************************************************************
303  *
304  *      EM_CANUNDO
305  *
306  */
307 static inline BOOL EDIT_EM_CanUndo(EDITSTATE *es)
308 {
309         return (es->undo_insert_count || strlenW(es->undo_text));
310 }
311
312
313 /*********************************************************************
314  *
315  *      EM_EMPTYUNDOBUFFER
316  *
317  */
318 static inline void EDIT_EM_EmptyUndoBuffer(EDITSTATE *es)
319 {
320         es->undo_insert_count = 0;
321         *es->undo_text = '\0';
322 }
323
324
325 /*********************************************************************
326  *
327  *      WM_CLEAR
328  *
329  */
330 static inline void EDIT_WM_Clear(EDITSTATE *es)
331 {
332         static const WCHAR empty_stringW[] = {0};
333
334         /* Protect read-only edit control from modification */
335         if(es->style & ES_READONLY)
336             return;
337
338         EDIT_EM_ReplaceSel(es, TRUE, empty_stringW, TRUE, TRUE);
339 }
340
341
342 /*********************************************************************
343  *
344  *      WM_CUT
345  *
346  */
347 static inline void EDIT_WM_Cut(EDITSTATE *es)
348 {
349         EDIT_WM_Copy(es);
350         EDIT_WM_Clear(es);
351 }
352
353
354 /**********************************************************************
355  *         get_app_version
356  *
357  * Returns the window version in case Wine emulates a later version
358  * of windows than the application expects.
359  *
360  * In a number of cases when windows runs an application that was
361  * designed for an earlier windows version, windows reverts
362  * to "old" behaviour of that earlier version.
363  *
364  * An example is a disabled  edit control that needs to be painted.
365  * Old style behaviour is to send a WM_CTLCOLOREDIT message. This was
366  * changed in Win95, NT4.0 by a WM_CTLCOLORSTATIC message _only_ for
367  * applications with an expected version 0f 4.0 or higher.
368  *
369  */
370 static DWORD get_app_version(void)
371 {
372     static DWORD version;
373     if (!version)
374     {
375         DWORD dwEmulatedVersion;
376         OSVERSIONINFOW info;
377         DWORD dwProcVersion = GetProcessVersion(0);
378
379         info.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
380         GetVersionExW( &info );
381         dwEmulatedVersion = MAKELONG( info.dwMinorVersion, info.dwMajorVersion );
382         /* FIXME: this may not be 100% correct; see discussion on the
383          * wine developer list in Nov 1999 */
384         version = dwProcVersion < dwEmulatedVersion ? dwProcVersion : dwEmulatedVersion;
385     }
386     return version;
387 }
388
389
390 static HBRUSH EDIT_NotifyCtlColor(EDITSTATE *es, HDC hdc)
391 {
392         UINT msg;
393
394         if ( get_app_version() >= 0x40000 && (!es->bEnableState || (es->style & ES_READONLY)))
395                 msg = WM_CTLCOLORSTATIC;
396         else
397                 msg = WM_CTLCOLOREDIT;
398
399         /* why do we notify to es->hwndParent, and we send this one to GetParent()? */
400         return (HBRUSH)SendMessageW(GetParent(es->hwndSelf), msg, (WPARAM)hdc, (LPARAM)es->hwndSelf);
401 }
402
403 static inline LRESULT DefWindowProcT(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode)
404 {
405         if(unicode)
406                 return DefWindowProcW(hwnd, msg, wParam, lParam);
407         else
408                 return DefWindowProcA(hwnd, msg, wParam, lParam);
409 }
410
411 /*********************************************************************
412  *
413  *      EditWndProc_common
414  *
415  *      The messages are in the order of the actual integer values
416  *      (which can be found in include/windows.h)
417  *      Wherever possible the 16 bit versions are converted to
418  *      the 32 bit ones, so that we can 'fall through' to the
419  *      helper functions.  These are mostly 32 bit (with a few
420  *      exceptions, clearly indicated by a '16' extension to their
421  *      names).
422  *
423  */
424 static LRESULT WINAPI EditWndProc_common( HWND hwnd, UINT msg,
425                                           WPARAM wParam, LPARAM lParam, BOOL unicode )
426 {
427         EDITSTATE *es = (EDITSTATE *)GetWindowLongPtrW( hwnd, 0 );
428         LRESULT result = 0;
429
430         TRACE("hwnd=%p msg=%x (%s) wparam=%x lparam=%lx\n", hwnd, msg, SPY_GetMsgName(msg, hwnd), wParam, lParam);
431         
432         if (!es && msg != WM_NCCREATE)
433                 return DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
434
435         if (es && (msg != WM_DESTROY)) EDIT_LockBuffer(es);
436
437         switch (msg) {
438         case EM_GETSEL16:
439                 wParam = 0;
440                 lParam = 0;
441                 /* fall through */
442         case EM_GETSEL:
443                 result = EDIT_EM_GetSel(es, (PUINT)wParam, (PUINT)lParam);
444                 break;
445
446         case EM_SETSEL16:
447                 if ((short)LOWORD(lParam) == -1)
448                         EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
449                 else
450                         EDIT_EM_SetSel(es, LOWORD(lParam), HIWORD(lParam), FALSE);
451                 if (!wParam)
452                         EDIT_EM_ScrollCaret(es);
453                 result = 1;
454                 break;
455         case EM_SETSEL:
456                 EDIT_EM_SetSel(es, wParam, lParam, FALSE);
457                 EDIT_EM_ScrollCaret(es);
458                 result = 1;
459                 break;
460
461         case EM_GETRECT16:
462                 if (lParam)
463                 {
464                     RECT16 *r16 = MapSL(lParam);
465                     r16->left   = es->format_rect.left;
466                     r16->top    = es->format_rect.top;
467                     r16->right  = es->format_rect.right;
468                     r16->bottom = es->format_rect.bottom;
469                 }
470                 break;
471         case EM_GETRECT:
472                 if (lParam)
473                         CopyRect((LPRECT)lParam, &es->format_rect);
474                 break;
475
476         case EM_SETRECT16:
477                 if ((es->style & ES_MULTILINE) && lParam) {
478                         RECT rc;
479                         RECT16 *r16 = MapSL(lParam);
480                         rc.left   = r16->left;
481                         rc.top    = r16->top;
482                         rc.right  = r16->right;
483                         rc.bottom = r16->bottom;
484                         EDIT_SetRectNP(es, &rc);
485                         EDIT_UpdateText(es, NULL, TRUE);
486                 }
487                 break;
488         case EM_SETRECT:
489                 if ((es->style & ES_MULTILINE) && lParam) {
490                         EDIT_SetRectNP(es, (LPRECT)lParam);
491                         EDIT_UpdateText(es, NULL, TRUE);
492                 }
493                 break;
494
495         case EM_SETRECTNP16:
496                 if ((es->style & ES_MULTILINE) && lParam) {
497                         RECT rc;
498                         RECT16 *r16 = MapSL(lParam);
499                         rc.left   = r16->left;
500                         rc.top    = r16->top;
501                         rc.right  = r16->right;
502                         rc.bottom = r16->bottom;
503                         EDIT_SetRectNP(es, &rc);
504                 }
505                 break;
506         case EM_SETRECTNP:
507                 if ((es->style & ES_MULTILINE) && lParam)
508                         EDIT_SetRectNP(es, (LPRECT)lParam);
509                 break;
510
511         case EM_SCROLL16:
512         case EM_SCROLL:
513                 result = EDIT_EM_Scroll(es, (INT)wParam);
514                 break;
515
516         case EM_LINESCROLL16:
517                 wParam = (WPARAM)(INT)(SHORT)HIWORD(lParam);
518                 lParam = (LPARAM)(INT)(SHORT)LOWORD(lParam);
519                 /* fall through */
520         case EM_LINESCROLL:
521                 result = (LRESULT)EDIT_EM_LineScroll(es, (INT)wParam, (INT)lParam);
522                 break;
523
524         case EM_SCROLLCARET16:
525         case EM_SCROLLCARET:
526                 EDIT_EM_ScrollCaret(es);
527                 result = 1;
528                 break;
529
530         case EM_GETMODIFY16:
531         case EM_GETMODIFY:
532                 result = ((es->flags & EF_MODIFIED) != 0);
533                 break;
534
535         case EM_SETMODIFY16:
536         case EM_SETMODIFY:
537                 if (wParam)
538                         es->flags |= EF_MODIFIED;
539                 else
540                         es->flags &= ~(EF_MODIFIED | EF_UPDATE);  /* reset pending updates */
541                 break;
542
543         case EM_GETLINECOUNT16:
544         case EM_GETLINECOUNT:
545                 result = (es->style & ES_MULTILINE) ? es->line_count : 1;
546                 break;
547
548         case EM_LINEINDEX16:
549                 if ((INT16)wParam == -1)
550                         wParam = (WPARAM)-1;
551                 /* fall through */
552         case EM_LINEINDEX:
553                 result = (LRESULT)EDIT_EM_LineIndex(es, (INT)wParam);
554                 break;
555
556         case EM_SETHANDLE16:
557                 EDIT_EM_SetHandle16(es, (HLOCAL16)wParam);
558                 break;
559         case EM_SETHANDLE:
560                 EDIT_EM_SetHandle(es, (HLOCAL)wParam);
561                 break;
562
563         case EM_GETHANDLE16:
564                 result = (LRESULT)EDIT_EM_GetHandle16(es);
565                 break;
566         case EM_GETHANDLE:
567                 result = (LRESULT)EDIT_EM_GetHandle(es);
568                 break;
569
570         case EM_GETTHUMB16:
571         case EM_GETTHUMB:
572                 result = EDIT_EM_GetThumb(es);
573                 break;
574
575         /* these messages missing from specs */
576         case WM_USER+15:
577         case 0x00bf:
578         case WM_USER+16:
579         case 0x00c0:
580         case WM_USER+19:
581         case 0x00c3:
582         case WM_USER+26:
583         case 0x00ca:
584                 FIXME("undocumented message 0x%x, please report\n", msg);
585                 result = DefWindowProcW(hwnd, msg, wParam, lParam);
586                 break;
587                 
588         case EM_LINELENGTH16:
589         case EM_LINELENGTH:
590                 result = (LRESULT)EDIT_EM_LineLength(es, (INT)wParam);
591                 break;
592
593         case EM_REPLACESEL16:
594                 lParam = (LPARAM)MapSL(lParam);
595                 unicode = FALSE;  /* 16-bit message is always ascii */
596                 /* fall through */
597         case EM_REPLACESEL:
598         {
599                 LPWSTR textW;
600
601                 if(unicode)
602                     textW = (LPWSTR)lParam;
603                 else
604                 {
605                     LPSTR textA = (LPSTR)lParam;
606                     INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
607                     if((textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
608                         MultiByteToWideChar(CP_ACP, 0, textA, -1, textW, countW);
609                 }
610
611                 EDIT_EM_ReplaceSel(es, (BOOL)wParam, textW, TRUE, TRUE);
612                 result = 1;
613
614                 if(!unicode)
615                     HeapFree(GetProcessHeap(), 0, textW);
616                 break;
617         }
618
619         case EM_GETLINE16:
620                 lParam = (LPARAM)MapSL(lParam);
621                 unicode = FALSE;  /* 16-bit message is always ascii */
622                 /* fall through */
623         case EM_GETLINE:
624                 result = (LRESULT)EDIT_EM_GetLine(es, (INT)wParam, (LPWSTR)lParam, unicode);
625                 break;
626
627         case EM_LIMITTEXT16:
628         case EM_SETLIMITTEXT:
629                 EDIT_EM_SetLimitText(es, (INT)wParam);
630                 break;
631
632         case EM_CANUNDO16:
633         case EM_CANUNDO:
634                 result = (LRESULT)EDIT_EM_CanUndo(es);
635                 break;
636
637         case EM_UNDO16:
638         case EM_UNDO:
639         case WM_UNDO:
640                 result = (LRESULT)EDIT_EM_Undo(es);
641                 break;
642
643         case EM_FMTLINES16:
644         case EM_FMTLINES:
645                 result = (LRESULT)EDIT_EM_FmtLines(es, (BOOL)wParam);
646                 break;
647
648         case EM_LINEFROMCHAR16:
649         case EM_LINEFROMCHAR:
650                 result = (LRESULT)EDIT_EM_LineFromChar(es, (INT)wParam);
651                 break;
652
653         case EM_SETTABSTOPS16:
654                 result = (LRESULT)EDIT_EM_SetTabStops16(es, (INT)wParam, MapSL(lParam));
655                 break;
656         case EM_SETTABSTOPS:
657                 result = (LRESULT)EDIT_EM_SetTabStops(es, (INT)wParam, (LPINT)lParam);
658                 break;
659
660         case EM_SETPASSWORDCHAR16:
661                 unicode = FALSE;  /* 16-bit message is always ascii */
662                 /* fall through */
663         case EM_SETPASSWORDCHAR:
664         {
665                 WCHAR charW = 0;
666
667                 if(unicode)
668                     charW = (WCHAR)wParam;
669                 else
670                 {
671                     CHAR charA = wParam;
672                     MultiByteToWideChar(CP_ACP, 0, &charA, 1, &charW, 1);
673                 }
674
675                 EDIT_EM_SetPasswordChar(es, charW);
676                 break;
677         }
678
679         case EM_EMPTYUNDOBUFFER16:
680         case EM_EMPTYUNDOBUFFER:
681                 EDIT_EM_EmptyUndoBuffer(es);
682                 break;
683
684         case EM_GETFIRSTVISIBLELINE16:
685                 result = es->y_offset;
686                 break;
687         case EM_GETFIRSTVISIBLELINE:
688                 result = (es->style & ES_MULTILINE) ? es->y_offset : es->x_offset;
689                 break;
690
691         case EM_SETREADONLY16:
692         case EM_SETREADONLY:
693                 if (wParam) {
694                     SetWindowLongW( hwnd, GWL_STYLE,
695                                     GetWindowLongW( hwnd, GWL_STYLE ) | ES_READONLY );
696                     es->style |= ES_READONLY;
697                 } else {
698                     SetWindowLongW( hwnd, GWL_STYLE,
699                                     GetWindowLongW( hwnd, GWL_STYLE ) & ~ES_READONLY );
700                     es->style &= ~ES_READONLY;
701                 }
702                 result = 1;
703                 break;
704
705         case EM_SETWORDBREAKPROC16:
706                 EDIT_EM_SetWordBreakProc16(es, (EDITWORDBREAKPROC16)lParam);
707                 break;
708         case EM_SETWORDBREAKPROC:
709                 EDIT_EM_SetWordBreakProc(es, (void *)lParam);
710                 break;
711
712         case EM_GETWORDBREAKPROC16:
713                 result = (LRESULT)es->word_break_proc16;
714                 break;
715         case EM_GETWORDBREAKPROC:
716                 result = (LRESULT)es->word_break_proc;
717                 break;
718
719         case EM_GETPASSWORDCHAR16:
720                 unicode = FALSE;  /* 16-bit message is always ascii */
721                 /* fall through */
722         case EM_GETPASSWORDCHAR:
723         {
724                 if(unicode)
725                     result = es->password_char;
726                 else
727                 {
728                     WCHAR charW = es->password_char;
729                     CHAR charA = 0;
730                     WideCharToMultiByte(CP_ACP, 0, &charW, 1, &charA, 1, NULL, NULL);
731                     result = charA;
732                 }
733                 break;
734         }
735
736         /* The following EM_xxx are new to win95 and don't exist for 16 bit */
737
738         case EM_SETMARGINS:
739                 EDIT_EM_SetMargins(es, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam), TRUE);
740                 break;
741
742         case EM_GETMARGINS:
743                 result = MAKELONG(es->left_margin, es->right_margin);
744                 break;
745
746         case EM_GETLIMITTEXT:
747                 result = es->buffer_limit;
748                 break;
749
750         case EM_POSFROMCHAR:
751                 result = strlenW(es->text);
752                 if ((INT)wParam >= result) result = -1;
753                 else result = EDIT_EM_PosFromChar(es, (INT)wParam, FALSE);
754                 break;
755
756         case EM_CHARFROMPOS:
757                 result = EDIT_EM_CharFromPos(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
758                 break;
759
760         /* End of the EM_ messages which were in numerical order; what order
761          * are these in?  vaguely alphabetical?
762          */
763
764         case WM_NCCREATE:
765                 result = EDIT_WM_NCCreate(hwnd, (LPCREATESTRUCTW)lParam, unicode);
766                 break;
767
768         case WM_DESTROY:
769                 result = EDIT_WM_Destroy(es);
770                 es = NULL;
771                 break;
772
773         case WM_GETDLGCODE:
774                 result = DLGC_HASSETSEL | DLGC_WANTCHARS | DLGC_WANTARROWS;
775                 
776                 if (es->style & ES_MULTILINE)
777                 {
778                    result |= DLGC_WANTALLKEYS;
779                    break;
780                 }
781
782                 if (lParam && (((LPMSG)lParam)->message == WM_KEYDOWN))
783                 {
784                    int vk = (int)((LPMSG)lParam)->wParam;
785
786                    if (es->hwndListBox && (vk == VK_RETURN || vk == VK_ESCAPE))
787                    {
788                       if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
789                          result |= DLGC_WANTMESSAGE;
790                    }
791                 }
792                 break;
793
794         case WM_IME_CHAR:
795             if (!unicode)
796             {
797                 WCHAR charW;
798                 CHAR  strng[2];
799
800                 strng[0] = wParam >> 8;
801                 strng[1] = wParam & 0xff;
802                 if (strng[0]) MultiByteToWideChar(CP_ACP, 0, strng, 2, &charW, 1);
803                 else MultiByteToWideChar(CP_ACP, 0, &strng[1], 1, &charW, 1);
804                 EDIT_WM_Char(es, charW);
805                 break;
806             }
807             /* fall through */
808         case WM_CHAR:
809         {
810                 WCHAR charW;
811
812                 if(unicode)
813                     charW = wParam;
814                 else
815                 {
816                     CHAR charA = wParam;
817                     MultiByteToWideChar(CP_ACP, 0, &charA, 1, &charW, 1);
818                 }
819
820                 if ((charW == VK_RETURN || charW == VK_ESCAPE) && es->hwndListBox)
821                 {
822                    if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
823                       SendMessageW(GetParent(hwnd), WM_KEYDOWN, charW, 0);
824                    break;
825                 }
826                 EDIT_WM_Char(es, charW);
827                 break;
828         }
829
830         case WM_CLEAR:
831                 EDIT_WM_Clear(es);
832                 break;
833
834         case WM_COMMAND:
835                 EDIT_WM_Command(es, HIWORD(wParam), LOWORD(wParam), (HWND)lParam);
836                 break;
837
838         case WM_CONTEXTMENU:
839                 EDIT_WM_ContextMenu(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
840                 break;
841
842         case WM_COPY:
843                 EDIT_WM_Copy(es);
844                 break;
845
846         case WM_CREATE:
847                 if(unicode)
848                     result = EDIT_WM_Create(es, ((LPCREATESTRUCTW)lParam)->lpszName);
849                 else
850                 {
851                     LPCSTR nameA = ((LPCREATESTRUCTA)lParam)->lpszName;
852                     LPWSTR nameW = NULL;
853                     if(nameA)
854                     {
855                         INT countW = MultiByteToWideChar(CP_ACP, 0, nameA, -1, NULL, 0);
856                         if((nameW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
857                             MultiByteToWideChar(CP_ACP, 0, nameA, -1, nameW, countW);
858                     }
859                     result = EDIT_WM_Create(es, nameW);
860                     HeapFree(GetProcessHeap(), 0, nameW);
861                 }
862                 break;
863
864         case WM_CUT:
865                 EDIT_WM_Cut(es);
866                 break;
867
868         case WM_ENABLE:
869                 es->bEnableState = (BOOL) wParam;
870                 EDIT_UpdateText(es, NULL, TRUE);
871                 break;
872
873         case WM_ERASEBKGND:
874                 result = EDIT_WM_EraseBkGnd(es, (HDC)wParam);
875                 break;
876
877         case WM_GETFONT:
878                 result = (LRESULT)es->font;
879                 break;
880
881         case WM_GETTEXT:
882                 result = (LRESULT)EDIT_WM_GetText(es, (INT)wParam, (LPWSTR)lParam, unicode);
883                 break;
884
885         case WM_GETTEXTLENGTH:
886                 if (unicode) result = strlenW(es->text);
887                 else result = WideCharToMultiByte( CP_ACP, 0, es->text, strlenW(es->text),
888                                                    NULL, 0, NULL, NULL );
889                 break;
890
891         case WM_HSCROLL:
892                 result = EDIT_WM_HScroll(es, LOWORD(wParam), (short)HIWORD(wParam));
893                 break;
894
895         case WM_KEYDOWN:
896                 result = EDIT_WM_KeyDown(es, (INT)wParam);
897                 break;
898
899         case WM_KILLFOCUS:
900                 result = EDIT_WM_KillFocus(es);
901                 break;
902
903         case WM_LBUTTONDBLCLK:
904                 result = EDIT_WM_LButtonDblClk(es);
905                 break;
906
907         case WM_LBUTTONDOWN:
908                 result = EDIT_WM_LButtonDown(es, wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
909                 break;
910
911         case WM_LBUTTONUP:
912                 result = EDIT_WM_LButtonUp(es);
913                 break;
914
915         case WM_MBUTTONDOWN:
916                 result = EDIT_WM_MButtonDown(es);
917                 break;
918
919         case WM_MOUSEMOVE:
920                 result = EDIT_WM_MouseMove(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
921                 break;
922
923         case WM_PAINT:
924                 EDIT_WM_Paint(es, (HDC)wParam);
925                 break;
926
927         case WM_PASTE:
928                 EDIT_WM_Paste(es);
929                 break;
930
931         case WM_SETFOCUS:
932                 EDIT_WM_SetFocus(es);
933                 break;
934
935         case WM_SETFONT:
936                 EDIT_WM_SetFont(es, (HFONT)wParam, LOWORD(lParam) != 0);
937                 break;
938
939         case WM_SETREDRAW:
940                 /* FIXME: actually set an internal flag and behave accordingly */
941                 break;
942
943         case WM_SETTEXT:
944                 EDIT_WM_SetText(es, (LPCWSTR)lParam, unicode);
945                 result = TRUE;
946                 break;
947
948         case WM_SIZE:
949                 EDIT_WM_Size(es, (UINT)wParam, LOWORD(lParam), HIWORD(lParam));
950                 break;
951
952         case WM_STYLECHANGED:
953                 result = EDIT_WM_StyleChanged(es, wParam, (const STYLESTRUCT *)lParam);
954                 break;
955
956         case WM_STYLECHANGING:
957                 result = 0; /* See EDIT_WM_StyleChanged */
958                 break;
959
960         case WM_SYSKEYDOWN:
961                 result = EDIT_WM_SysKeyDown(es, (INT)wParam, (DWORD)lParam);
962                 break;
963
964         case WM_TIMER:
965                 EDIT_WM_Timer(es);
966                 break;
967
968         case WM_VSCROLL:
969                 result = EDIT_WM_VScroll(es, LOWORD(wParam), (short)HIWORD(wParam));
970                 break;
971
972         case WM_MOUSEWHEEL:
973                 {
974                     int gcWheelDelta = 0;
975                     UINT pulScrollLines = 3;
976                     SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
977
978                     if (wParam & (MK_SHIFT | MK_CONTROL)) {
979                         result = DefWindowProcW(hwnd, msg, wParam, lParam);
980                         break;
981                     }
982                     gcWheelDelta -= GET_WHEEL_DELTA_WPARAM(wParam);
983                     if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
984                     {
985                         int cLineScroll= (int) min((UINT) es->line_count, pulScrollLines);
986                         cLineScroll *= (gcWheelDelta / WHEEL_DELTA);
987                         result = EDIT_EM_LineScroll(es, 0, cLineScroll);
988                     }
989                 }
990                 break;
991         default:
992                 result = DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
993                 break;
994         }
995         
996         if (es) EDIT_UnlockBuffer(es, FALSE);
997
998         TRACE("hwnd=%p msg=%x (%s) -- 0x%08lx\n", hwnd, msg, SPY_GetMsgName(msg, hwnd), result);
999
1000         return result;
1001 }
1002
1003 /*********************************************************************
1004  *
1005  *      EditWndProcW   (USER32.@)
1006  */
1007 LRESULT WINAPI EditWndProcW(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1008 {
1009     return EditWndProc_common(hWnd, uMsg, wParam, lParam, TRUE);
1010 }
1011
1012 /*********************************************************************
1013  *
1014  *      EditWndProc   (USER32.@)
1015  */
1016 LRESULT WINAPI EditWndProcA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1017 {
1018     return EditWndProc_common(hWnd, uMsg, wParam, lParam, FALSE);
1019 }
1020
1021 /*********************************************************************
1022  *
1023  *      EDIT_BuildLineDefs_ML
1024  *
1025  *      Build linked list of text lines.
1026  *      Lines can end with '\0' (last line), a character (if it is wrapped),
1027  *      a soft return '\r\r\n' or a hard return '\r\n'
1028  *
1029  */
1030 static void EDIT_BuildLineDefs_ML(EDITSTATE *es, INT istart, INT iend, INT delta, HRGN hrgn)
1031 {
1032         HDC dc;
1033         HFONT old_font = 0;
1034         LPWSTR current_position, cp;
1035         INT fw;
1036         LINEDEF *current_line;
1037         LINEDEF *previous_line;
1038         LINEDEF *start_line;
1039         INT line_index = 0, nstart_line = 0, nstart_index = 0;
1040         INT line_count = es->line_count;
1041         INT orig_net_length;
1042         RECT rc;
1043
1044         if (istart == iend && delta == 0)
1045                 return;
1046
1047         dc = GetDC(es->hwndSelf);
1048         if (es->font)
1049                 old_font = SelectObject(dc, es->font);
1050
1051         previous_line = NULL;
1052         current_line = es->first_line_def;
1053
1054         /* Find starting line. istart must lie inside an existing line or
1055          * at the end of buffer */
1056         do {
1057                 if (istart < current_line->index + current_line->length ||
1058                                 current_line->ending == END_0)
1059                         break;
1060
1061                 previous_line = current_line;
1062                 current_line = current_line->next;
1063                 line_index++;
1064         } while (current_line);
1065
1066         if (!current_line) /* Error occurred start is not inside previous buffer */
1067         {
1068                 FIXME(" modification occurred outside buffer\n");
1069                 ReleaseDC(es->hwndSelf, dc);
1070                 return;
1071         }
1072
1073         /* Remember start of modifications in order to calculate update region */
1074         nstart_line = line_index;
1075         nstart_index = current_line->index;
1076
1077         /* We must start to reformat from the previous line since the modifications
1078          * may have caused the line to wrap upwards. */
1079         if (!(es->style & ES_AUTOHSCROLL) && line_index > 0)
1080         {
1081                 line_index--;
1082                 current_line = previous_line;
1083         }
1084         start_line = current_line;
1085
1086         fw = es->format_rect.right - es->format_rect.left;
1087         current_position = es->text + current_line->index;
1088         do {
1089                 if (current_line != start_line)
1090                 {
1091                         if (!current_line || current_line->index + delta > current_position - es->text)
1092                         {
1093                                 /* The buffer has been expanded, create a new line and
1094                                    insert it into the link list */
1095                                 LINEDEF *new_line = HeapAlloc(GetProcessHeap(), 0, sizeof(LINEDEF));
1096                                 new_line->next = previous_line->next;
1097                                 previous_line->next = new_line;
1098                                 current_line = new_line;
1099                                 es->line_count++;
1100                         }
1101                         else if (current_line->index + delta < current_position - es->text)
1102                         {
1103                                 /* The previous line merged with this line so we delete this extra entry */
1104                                 previous_line->next = current_line->next;
1105                                 HeapFree(GetProcessHeap(), 0, current_line);
1106                                 current_line = previous_line->next;
1107                                 es->line_count--;
1108                                 continue;
1109                         }
1110                         else /* current_line->index + delta == current_position */
1111                         {
1112                                 if (current_position - es->text > iend)
1113                                         break; /* We reached end of line modifications */
1114                                 /* else recalulate this line */
1115                         }
1116                 }
1117
1118                 current_line->index = current_position - es->text;
1119                 orig_net_length = current_line->net_length;
1120
1121                 /* Find end of line */
1122                 cp = current_position;
1123                 while (*cp) {
1124                     if (*cp == '\n') break;
1125                         if ((*cp == '\r') && (*(cp + 1) == '\n'))
1126                                 break;
1127                         cp++;
1128                 }
1129
1130                 /* Mark type of line termination */
1131                 if (!(*cp)) {
1132                         current_line->ending = END_0;
1133                         current_line->net_length = strlenW(current_position);
1134                 } else if ((cp > current_position) && (*(cp - 1) == '\r')) {
1135                         current_line->ending = END_SOFT;
1136                         current_line->net_length = cp - current_position - 1;
1137                 } else if (*cp == '\n') {
1138                         current_line->ending = END_RICH;
1139                         current_line->net_length = cp - current_position;
1140                 } else {
1141                         current_line->ending = END_HARD;
1142                         current_line->net_length = cp - current_position;
1143                 }
1144
1145                 /* Calculate line width */
1146                 current_line->width = (INT)LOWORD(GetTabbedTextExtentW(dc,
1147                                         current_position, current_line->net_length,
1148                                         es->tabs_count, es->tabs));
1149
1150                 /* FIXME: check here for lines that are too wide even in AUTOHSCROLL (> 32767 ???) */
1151                 if (!(es->style & ES_AUTOHSCROLL)) {
1152                    if (current_line->width > fw) {
1153                         INT next = 0;
1154                         INT prev;
1155                         do {
1156                                 prev = next;
1157                                 next = EDIT_CallWordBreakProc(es, current_position - es->text,
1158                                                 prev + 1, current_line->net_length, WB_RIGHT);
1159                                 current_line->width = (INT)LOWORD(GetTabbedTextExtentW(dc,
1160                                                         current_position, next, es->tabs_count, es->tabs));
1161                         } while (current_line->width <= fw);
1162                         if (!prev) { /* Didn't find a line break so force a break */
1163                                 next = 0;
1164                                 do {
1165                                         prev = next;
1166                                         next++;
1167                                         current_line->width = (INT)LOWORD(GetTabbedTextExtentW(dc,
1168                                                                 current_position, next, es->tabs_count, es->tabs));
1169                                 } while (current_line->width <= fw);
1170                                 if (!prev)
1171                                         prev = 1;
1172                         }
1173
1174                         /* If the first line we are calculating, wrapped before istart, we must
1175                          * adjust istart in order for this to be reflected in the update region. */
1176                         if (current_line->index == nstart_index && istart > current_line->index + prev)
1177                                 istart = current_line->index + prev;
1178                         /* else if we are updating the previous line before the first line we
1179                          * are re-calculating and it expanded */
1180                         else if (current_line == start_line &&
1181                                         current_line->index != nstart_index && orig_net_length < prev)
1182                         {
1183                           /* Line expanded due to an upwards line wrap so we must partially include
1184                            * previous line in update region */
1185                                 nstart_line = line_index;
1186                                 nstart_index = current_line->index;
1187                                 istart = current_line->index + orig_net_length;
1188                         }
1189
1190                         current_line->net_length = prev;
1191                         current_line->ending = END_WRAP;
1192                         current_line->width = (INT)LOWORD(GetTabbedTextExtentW(dc, current_position,
1193                                         current_line->net_length, es->tabs_count, es->tabs));
1194                     }
1195                     else if (orig_net_length <  current_line->net_length  &&
1196                         current_line == start_line &&
1197                         current_line->index != nstart_index) {
1198                         /* The previous line expanded but it's still not as wide as the client rect */
1199                         /* The expansion is due to an upwards line wrap so we must partially include
1200                            it in the update region */
1201                         nstart_line = line_index;
1202                         nstart_index = current_line->index;
1203                         istart = current_line->index + orig_net_length;
1204                     }
1205                 }
1206
1207
1208                 /* Adjust length to include line termination */
1209                 switch (current_line->ending) {
1210                 case END_SOFT:
1211                         current_line->length = current_line->net_length + 3;
1212                         break;
1213                 case END_RICH:
1214                         current_line->length = current_line->net_length + 1;
1215                         break;
1216                 case END_HARD:
1217                         current_line->length = current_line->net_length + 2;
1218                         break;
1219                 case END_WRAP:
1220                 case END_0:
1221                         current_line->length = current_line->net_length;
1222                         break;
1223                 }
1224                 es->text_width = max(es->text_width, current_line->width);
1225                 current_position += current_line->length;
1226                 previous_line = current_line;
1227                 current_line = current_line->next;
1228                 line_index++;
1229         } while (previous_line->ending != END_0);
1230
1231         /* Finish adjusting line indexes by delta or remove hanging lines */
1232         if (previous_line->ending == END_0)
1233         {
1234                 LINEDEF *pnext = NULL;
1235
1236                 previous_line->next = NULL;
1237                 while (current_line)
1238                 {
1239                         pnext = current_line->next;
1240                         HeapFree(GetProcessHeap(), 0, current_line);
1241                         current_line = pnext;
1242                         es->line_count--;
1243                 }
1244         }
1245         else if (delta != 0)
1246         {
1247                 while (current_line)
1248                 {
1249                         current_line->index += delta;
1250                         current_line = current_line->next;
1251                 }
1252         }
1253
1254         /* Calculate rest of modification rectangle */
1255         if (hrgn)
1256         {
1257                 HRGN tmphrgn;
1258            /*
1259                 * We calculate two rectangles. One for the first line which may have
1260                 * an indent with respect to the format rect. The other is a format-width
1261                 * rectangle that spans the rest of the lines that changed or moved.
1262                 */
1263                 rc.top = es->format_rect.top + nstart_line * es->line_height -
1264                         (es->y_offset * es->line_height); /* Adjust for vertical scrollbar */
1265                 rc.bottom = rc.top + es->line_height;
1266                 if ((es->style & ES_CENTER) || (es->style & ES_RIGHT))
1267                         rc.left = es->format_rect.left;
1268                 else
1269                         rc.left = es->format_rect.left + (INT)LOWORD(GetTabbedTextExtentW(dc,
1270                                         es->text + nstart_index, istart - nstart_index,
1271                                         es->tabs_count, es->tabs)) - es->x_offset; /* Adjust for horz scroll */
1272                 rc.right = es->format_rect.right;
1273                 SetRectRgn(hrgn, rc.left, rc.top, rc.right, rc.bottom);
1274
1275                 rc.top = rc.bottom;
1276                 rc.left = es->format_rect.left;
1277                 rc.right = es->format_rect.right;
1278            /*
1279                 * If lines were added or removed we must re-paint the remainder of the
1280             * lines since the remaining lines were either shifted up or down.
1281                 */
1282                 if (line_count < es->line_count) /* We added lines */
1283                         rc.bottom = es->line_count * es->line_height;
1284                 else if (line_count > es->line_count) /* We removed lines */
1285                         rc.bottom = line_count * es->line_height;
1286                 else
1287                         rc.bottom = line_index * es->line_height;
1288                 rc.bottom += es->format_rect.top;
1289                 rc.bottom -= (es->y_offset * es->line_height); /* Adjust for vertical scrollbar */
1290                 tmphrgn = CreateRectRgn(rc.left, rc.top, rc.right, rc.bottom);
1291                 CombineRgn(hrgn, hrgn, tmphrgn, RGN_OR);
1292                 DeleteObject(tmphrgn);
1293         }
1294
1295         if (es->font)
1296                 SelectObject(dc, old_font);
1297
1298         ReleaseDC(es->hwndSelf, dc);
1299 }
1300
1301 /*********************************************************************
1302  *
1303  *      EDIT_CalcLineWidth_SL
1304  *
1305  */
1306 static void EDIT_CalcLineWidth_SL(EDITSTATE *es)
1307 {
1308         SIZE size;
1309         LPWSTR text;
1310         HDC dc;
1311         HFONT old_font = 0;
1312
1313         text = EDIT_GetPasswordPointer_SL(es);
1314
1315         dc = GetDC(es->hwndSelf);
1316         if (es->font)
1317                 old_font = SelectObject(dc, es->font);
1318
1319         GetTextExtentPoint32W(dc, text, strlenW(text), &size);
1320
1321         if (es->font)
1322                 SelectObject(dc, old_font);
1323         ReleaseDC(es->hwndSelf, dc);
1324
1325         if (es->style & ES_PASSWORD)
1326                 HeapFree(GetProcessHeap(), 0, text);
1327
1328         es->text_width = size.cx;
1329 }
1330
1331 /*********************************************************************
1332  *
1333  *      EDIT_CallWordBreakProc
1334  *
1335  *      Call appropriate WordBreakProc (internal or external).
1336  *
1337  *      Note: The "start" argument should always be an index referring
1338  *              to es->text.  The actual wordbreak proc might be
1339  *              16 bit, so we can't always pass any 32 bit LPSTR.
1340  *              Hence we assume that es->text is the buffer that holds
1341  *              the string under examination (we can decide this for ourselves).
1342  *
1343  */
1344 static INT EDIT_CallWordBreakProc(EDITSTATE *es, INT start, INT index, INT count, INT action)
1345 {
1346         INT ret;
1347
1348         if (es->word_break_proc16) {
1349             HGLOBAL16 hglob16;
1350             SEGPTR segptr;
1351             INT countA;
1352             WORD args[5];
1353             DWORD result;
1354
1355             countA = WideCharToMultiByte(CP_ACP, 0, es->text + start, count, NULL, 0, NULL, NULL);
1356             hglob16 = GlobalAlloc16(GMEM_MOVEABLE | GMEM_ZEROINIT, countA);
1357             segptr = WOWGlobalLock16(hglob16);
1358             WideCharToMultiByte(CP_ACP, 0, es->text + start, count, MapSL(segptr), countA, NULL, NULL);
1359             args[4] = SELECTOROF(segptr);
1360             args[3] = OFFSETOF(segptr);
1361             args[2] = index;
1362             args[1] = countA;
1363             args[0] = action;
1364             WOWCallback16Ex((DWORD)es->word_break_proc16, WCB16_PASCAL, sizeof(args), args, &result);
1365             ret = LOWORD(result);
1366             GlobalUnlock16(hglob16);
1367             GlobalFree16(hglob16);
1368         }
1369         else if (es->word_break_proc)
1370         {
1371             if(es->is_unicode)
1372             {
1373                 EDITWORDBREAKPROCW wbpW = (EDITWORDBREAKPROCW)es->word_break_proc;
1374
1375                 TRACE_(relay)("(UNICODE wordbrk=%p,str=%s,idx=%d,cnt=%d,act=%d)\n",
1376                         es->word_break_proc, debugstr_wn(es->text + start, count), index, count, action);
1377                 ret = wbpW(es->text + start, index, count, action);
1378             }
1379             else
1380             {
1381                 EDITWORDBREAKPROCA wbpA = (EDITWORDBREAKPROCA)es->word_break_proc;
1382                 INT countA;
1383                 CHAR *textA;
1384
1385                 countA = WideCharToMultiByte(CP_ACP, 0, es->text + start, count, NULL, 0, NULL, NULL);
1386                 textA = HeapAlloc(GetProcessHeap(), 0, countA);
1387                 WideCharToMultiByte(CP_ACP, 0, es->text + start, count, textA, countA, NULL, NULL);
1388                 TRACE_(relay)("(ANSI wordbrk=%p,str=%s,idx=%d,cnt=%d,act=%d)\n",
1389                         es->word_break_proc, debugstr_an(textA, countA), index, countA, action);
1390                 ret = wbpA(textA, index, countA, action);
1391                 HeapFree(GetProcessHeap(), 0, textA);
1392             }
1393         }
1394         else
1395             ret = EDIT_WordBreakProc(es->text + start, index, count, action);
1396
1397         return ret;
1398 }
1399
1400
1401 /*********************************************************************
1402  *
1403  *      EDIT_CharFromPos
1404  *
1405  *      Beware: This is not the function called on EM_CHARFROMPOS
1406  *              The position _can_ be outside the formatting / client
1407  *              rectangle
1408  *              The return value is only the character index
1409  *
1410  */
1411 static INT EDIT_CharFromPos(EDITSTATE *es, INT x, INT y, LPBOOL after_wrap)
1412 {
1413         INT index;
1414         HDC dc;
1415         HFONT old_font = 0;
1416         INT x_high = 0, x_low = 0;
1417
1418         if (es->style & ES_MULTILINE) {
1419                 INT line = (y - es->format_rect.top) / es->line_height + es->y_offset;
1420                 INT line_index = 0;
1421                 LINEDEF *line_def = es->first_line_def;
1422                 INT low, high;
1423                 while ((line > 0) && line_def->next) {
1424                         line_index += line_def->length;
1425                         line_def = line_def->next;
1426                         line--;
1427                 }
1428                 x += es->x_offset - es->format_rect.left;
1429                 if (es->style & ES_RIGHT)
1430                         x -= (es->format_rect.right - es->format_rect.left) - line_def->width;
1431                 else if (es->style & ES_CENTER)
1432                         x -= ((es->format_rect.right - es->format_rect.left) - line_def->width) / 2;
1433                 if (x >= line_def->width) {
1434                         if (after_wrap)
1435                                 *after_wrap = (line_def->ending == END_WRAP);
1436                         return line_index + line_def->net_length;
1437                 }
1438                 if (x <= 0) {
1439                         if (after_wrap)
1440                                 *after_wrap = FALSE;
1441                         return line_index;
1442                 }
1443                 dc = GetDC(es->hwndSelf);
1444                 if (es->font)
1445                         old_font = SelectObject(dc, es->font);
1446                     low = line_index;
1447                     high = line_index + line_def->net_length + 1;
1448                     while (low < high - 1)
1449                     {
1450                         INT mid = (low + high) / 2;
1451                         INT x_now = LOWORD(GetTabbedTextExtentW(dc, es->text + line_index, mid - line_index, es->tabs_count, es->tabs));
1452                         if (x_now > x) {
1453                             high = mid;
1454                             x_high = x_now;
1455                         } else {
1456                             low = mid;
1457                             x_low = x_now;
1458                         }
1459                     }
1460                     if (abs(x_high - x) + 1 <= abs(x_low - x))
1461                         index = high;
1462                     else
1463                         index = low;
1464
1465                 if (after_wrap)
1466                         *after_wrap = ((index == line_index + line_def->net_length) &&
1467                                                         (line_def->ending == END_WRAP));
1468         } else {
1469                 LPWSTR text;
1470                 SIZE size;
1471                 if (after_wrap)
1472                         *after_wrap = FALSE;
1473                 x -= es->format_rect.left;
1474                 if (!x)
1475                         return es->x_offset;
1476
1477                 if (!es->x_offset)
1478                 {
1479                         INT indent = (es->format_rect.right - es->format_rect.left) - es->text_width;
1480                         if (es->style & ES_RIGHT)
1481                                 x -= indent;
1482                         else if (es->style & ES_CENTER)
1483                                 x -= indent / 2;
1484                 }
1485
1486                 text = EDIT_GetPasswordPointer_SL(es);
1487                 dc = GetDC(es->hwndSelf);
1488                 if (es->font)
1489                         old_font = SelectObject(dc, es->font);
1490                 if (x < 0)
1491                 {
1492                     INT low = 0;
1493                     INT high = es->x_offset;
1494                     while (low < high - 1)
1495                     {
1496                         INT mid = (low + high) / 2;
1497                         GetTextExtentPoint32W( dc, text + mid,
1498                                                es->x_offset - mid, &size );
1499                         if (size.cx > -x) {
1500                             low = mid;
1501                             x_low = size.cx;
1502                         } else {
1503                             high = mid;
1504                             x_high = size.cx;
1505                         }
1506                     }
1507                     if (abs(x_high + x) <= abs(x_low + x) + 1)
1508                         index = high;
1509                     else
1510                         index = low;
1511                 }
1512                 else
1513                 {
1514                     INT low = es->x_offset;
1515                     INT high = strlenW(es->text) + 1;
1516                     while (low < high - 1)
1517                     {
1518                         INT mid = (low + high) / 2;
1519                         GetTextExtentPoint32W( dc, text + es->x_offset,
1520                                                mid - es->x_offset, &size );
1521                         if (size.cx > x) {
1522                                high = mid;
1523                                x_high = size.cx;
1524                         } else {
1525                                low = mid;
1526                                x_low = size.cx;
1527                        }
1528                     }
1529                    if (abs(x_high - x) <= abs(x_low - x) + 1)
1530                        index = high;
1531                    else
1532                        index = low;
1533                 }
1534                 if (es->style & ES_PASSWORD)
1535                         HeapFree(GetProcessHeap(), 0, text);
1536         }
1537         if (es->font)
1538                 SelectObject(dc, old_font);
1539         ReleaseDC(es->hwndSelf, dc);
1540         return index;
1541 }
1542
1543
1544 /*********************************************************************
1545  *
1546  *      EDIT_ConfinePoint
1547  *
1548  *      adjusts the point to be within the formatting rectangle
1549  *      (so CharFromPos returns the nearest _visible_ character)
1550  *
1551  */
1552 static void EDIT_ConfinePoint(EDITSTATE *es, LPINT x, LPINT y)
1553 {
1554         *x = min(max(*x, es->format_rect.left), es->format_rect.right - 1);
1555         *y = min(max(*y, es->format_rect.top), es->format_rect.bottom - 1);
1556 }
1557
1558
1559 /*********************************************************************
1560  *
1561  *      EDIT_GetLineRect
1562  *
1563  *      Calculates the bounding rectangle for a line from a starting
1564  *      column to an ending column.
1565  *
1566  */
1567 static void EDIT_GetLineRect(EDITSTATE *es, INT line, INT scol, INT ecol, LPRECT rc)
1568 {
1569         INT line_index =  EDIT_EM_LineIndex(es, line);
1570
1571         if (es->style & ES_MULTILINE)
1572                 rc->top = es->format_rect.top + (line - es->y_offset) * es->line_height;
1573         else
1574                 rc->top = es->format_rect.top;
1575         rc->bottom = rc->top + es->line_height;
1576         rc->left = (scol == 0) ? es->format_rect.left : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + scol, TRUE));
1577         rc->right = (ecol == -1) ? es->format_rect.right : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + ecol, TRUE));
1578 }
1579
1580
1581 /*********************************************************************
1582  *
1583  *      EDIT_GetPasswordPointer_SL
1584  *
1585  *      note: caller should free the (optionally) allocated buffer
1586  *
1587  */
1588 static LPWSTR EDIT_GetPasswordPointer_SL(EDITSTATE *es)
1589 {
1590         if (es->style & ES_PASSWORD) {
1591                 INT len = strlenW(es->text);
1592                 LPWSTR text = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
1593                 text[len] = '\0';
1594                 while(len) text[--len] = es->password_char;
1595                 return text;
1596         } else
1597                 return es->text;
1598 }
1599
1600
1601 /*********************************************************************
1602  *
1603  *      EDIT_LockBuffer
1604  *
1605  *      This acts as a LocalLock16(), but it locks only once.  This way
1606  *      you can call it whenever you like, without unlocking.
1607  *
1608  *      Initially the edit control allocates a HLOCAL32 buffer 
1609  *      (32 bit linear memory handler).  However, 16 bit application
1610  *      might send an EM_GETHANDLE message and expect a HLOCAL16 (16 bit SEG:OFF
1611  *      handler).  From that moment on we have to keep using this 16 bit memory
1612  *      handler, because it is supposed to be valid at all times after EM_GETHANDLE.
1613  *      What we do is create a HLOCAL16 buffer, copy the text, and do pointer
1614  *      conversion.
1615  *
1616  */
1617 static void EDIT_LockBuffer(EDITSTATE *es)
1618 {
1619         STACK16FRAME* stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
1620         HINSTANCE16 hInstance = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
1621
1622         if (!es->text) {
1623             CHAR *textA = NULL;
1624             UINT countA = 0;
1625             BOOL _16bit = FALSE;
1626
1627             if(es->hloc32W)
1628             {
1629                 if(es->hloc32A)
1630                 {
1631                     TRACE("Synchronizing with 32-bit ANSI buffer\n");
1632                     textA = LocalLock(es->hloc32A);
1633                     countA = strlen(textA) + 1;
1634                 }
1635                 else if(es->hloc16)
1636                 {
1637                     HANDLE16 oldDS = stack16->ds;
1638                     TRACE("Synchronizing with 16-bit ANSI buffer\n");
1639                     stack16->ds = hInstance;
1640                     textA = MapSL(LocalLock16(es->hloc16));
1641                     stack16->ds = oldDS;
1642                     countA = strlen(textA) + 1;
1643                     _16bit = TRUE;
1644                 }
1645             }
1646             else {
1647                 ERR("no buffer ... please report\n");
1648                 return;
1649             }
1650
1651             if(textA)
1652             {
1653                 HLOCAL hloc32W_new;
1654                 UINT countW_new = MultiByteToWideChar(CP_ACP, 0, textA, countA, NULL, 0);
1655                 TRACE("%d bytes translated to %d WCHARs\n", countA, countW_new);
1656                 if(countW_new > es->buffer_size + 1)
1657                 {
1658                     UINT alloc_size = ROUND_TO_GROW(countW_new * sizeof(WCHAR));
1659                     TRACE("Resizing 32-bit UNICODE buffer from %d+1 to %d WCHARs\n", es->buffer_size, countW_new);
1660                     hloc32W_new = LocalReAlloc(es->hloc32W, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT);
1661                     if(hloc32W_new)
1662                     {
1663                         es->hloc32W = hloc32W_new;
1664                         es->buffer_size = LocalSize(hloc32W_new)/sizeof(WCHAR) - 1;
1665                         TRACE("Real new size %d+1 WCHARs\n", es->buffer_size);
1666                     }
1667                     else
1668                         WARN("FAILED! Will synchronize partially\n");
1669                 }
1670             }
1671
1672             /*TRACE("Locking 32-bit UNICODE buffer\n");*/
1673             es->text = LocalLock(es->hloc32W);
1674
1675             if(textA)
1676             {
1677                 MultiByteToWideChar(CP_ACP, 0, textA, countA, es->text, es->buffer_size + 1);
1678                 if(_16bit)
1679                 {
1680                     HANDLE16 oldDS = stack16->ds;
1681                     stack16->ds = hInstance;
1682                     LocalUnlock16(es->hloc16);
1683                     stack16->ds = oldDS;
1684                 }
1685                 else
1686                     LocalUnlock(es->hloc32A);
1687             }
1688         }
1689         es->lock_count++;
1690 }
1691
1692
1693 /*********************************************************************
1694  *
1695  *      EDIT_SL_InvalidateText
1696  *
1697  *      Called from EDIT_InvalidateText().
1698  *      Does the job for single-line controls only.
1699  *
1700  */
1701 static void EDIT_SL_InvalidateText(EDITSTATE *es, INT start, INT end)
1702 {
1703         RECT line_rect;
1704         RECT rc;
1705
1706         EDIT_GetLineRect(es, 0, start, end, &line_rect);
1707         if (IntersectRect(&rc, &line_rect, &es->format_rect))
1708                 EDIT_UpdateText(es, &rc, TRUE);
1709 }
1710
1711
1712 /*********************************************************************
1713  *
1714  *      EDIT_ML_InvalidateText
1715  *
1716  *      Called from EDIT_InvalidateText().
1717  *      Does the job for multi-line controls only.
1718  *
1719  */
1720 static void EDIT_ML_InvalidateText(EDITSTATE *es, INT start, INT end)
1721 {
1722         INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
1723         INT sl = EDIT_EM_LineFromChar(es, start);
1724         INT el = EDIT_EM_LineFromChar(es, end);
1725         INT sc;
1726         INT ec;
1727         RECT rc1;
1728         RECT rcWnd;
1729         RECT rcLine;
1730         RECT rcUpdate;
1731         INT l;
1732
1733         if ((el < es->y_offset) || (sl > es->y_offset + vlc))
1734                 return;
1735
1736         sc = start - EDIT_EM_LineIndex(es, sl);
1737         ec = end - EDIT_EM_LineIndex(es, el);
1738         if (sl < es->y_offset) {
1739                 sl = es->y_offset;
1740                 sc = 0;
1741         }
1742         if (el > es->y_offset + vlc) {
1743                 el = es->y_offset + vlc;
1744                 ec = EDIT_EM_LineLength(es, EDIT_EM_LineIndex(es, el));
1745         }
1746         GetClientRect(es->hwndSelf, &rc1);
1747         IntersectRect(&rcWnd, &rc1, &es->format_rect);
1748         if (sl == el) {
1749                 EDIT_GetLineRect(es, sl, sc, ec, &rcLine);
1750                 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1751                         EDIT_UpdateText(es, &rcUpdate, TRUE);
1752         } else {
1753                 EDIT_GetLineRect(es, sl, sc,
1754                                 EDIT_EM_LineLength(es,
1755                                         EDIT_EM_LineIndex(es, sl)),
1756                                 &rcLine);
1757                 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1758                         EDIT_UpdateText(es, &rcUpdate, TRUE);
1759                 for (l = sl + 1 ; l < el ; l++) {
1760                         EDIT_GetLineRect(es, l, 0,
1761                                 EDIT_EM_LineLength(es,
1762                                         EDIT_EM_LineIndex(es, l)),
1763                                 &rcLine);
1764                         if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1765                                 EDIT_UpdateText(es, &rcUpdate, TRUE);
1766                 }
1767                 EDIT_GetLineRect(es, el, 0, ec, &rcLine);
1768                 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1769                         EDIT_UpdateText(es, &rcUpdate, TRUE);
1770         }
1771 }
1772
1773
1774 /*********************************************************************
1775  *
1776  *      EDIT_InvalidateText
1777  *
1778  *      Invalidate the text from offset start upto, but not including,
1779  *      offset end.  Useful for (re)painting the selection.
1780  *      Regions outside the linewidth are not invalidated.
1781  *      end == -1 means end == TextLength.
1782  *      start and end need not be ordered.
1783  *
1784  */
1785 static void EDIT_InvalidateText(EDITSTATE *es, INT start, INT end)
1786 {
1787         if (end == start)
1788                 return;
1789
1790         if (end == -1)
1791                 end = strlenW(es->text);
1792
1793         if (end < start) {
1794             INT tmp = start;
1795             start = end;
1796             end = tmp;
1797         }
1798
1799         if (es->style & ES_MULTILINE)
1800                 EDIT_ML_InvalidateText(es, start, end);
1801         else
1802                 EDIT_SL_InvalidateText(es, start, end);
1803 }
1804
1805
1806 /*********************************************************************
1807  *
1808  *      EDIT_MakeFit
1809  *
1810  * Try to fit size + 1 characters in the buffer.
1811  */
1812 static BOOL EDIT_MakeFit(EDITSTATE *es, UINT size)
1813 {
1814         HLOCAL hNew32W;
1815
1816         if (size <= es->buffer_size)
1817                 return TRUE;
1818
1819         TRACE("trying to ReAlloc to %d+1 characters\n", size);
1820
1821         /* Force edit to unlock it's buffer. es->text now NULL */
1822         EDIT_UnlockBuffer(es, TRUE);
1823
1824         if (es->hloc32W) {
1825             UINT alloc_size = ROUND_TO_GROW((size + 1) * sizeof(WCHAR));
1826             if ((hNew32W = LocalReAlloc(es->hloc32W, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT))) {
1827                 TRACE("Old 32 bit handle %p, new handle %p\n", es->hloc32W, hNew32W);
1828                 es->hloc32W = hNew32W;
1829                 es->buffer_size = LocalSize(hNew32W)/sizeof(WCHAR) - 1;
1830             }
1831         }
1832
1833         EDIT_LockBuffer(es);
1834
1835         if (es->buffer_size < size) {
1836                 WARN("FAILED !  We now have %d+1\n", es->buffer_size);
1837                 EDIT_NOTIFY_PARENT(es, EN_ERRSPACE);
1838                 return FALSE;
1839         } else {
1840                 TRACE("We now have %d+1\n", es->buffer_size);
1841                 return TRUE;
1842         }
1843 }
1844
1845
1846 /*********************************************************************
1847  *
1848  *      EDIT_MakeUndoFit
1849  *
1850  *      Try to fit size + 1 bytes in the undo buffer.
1851  *
1852  */
1853 static BOOL EDIT_MakeUndoFit(EDITSTATE *es, UINT size)
1854 {
1855         UINT alloc_size;
1856
1857         if (size <= es->undo_buffer_size)
1858                 return TRUE;
1859
1860         TRACE("trying to ReAlloc to %d+1\n", size);
1861
1862         alloc_size = ROUND_TO_GROW((size + 1) * sizeof(WCHAR));
1863         if ((es->undo_text = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, es->undo_text, alloc_size))) {
1864                 es->undo_buffer_size = alloc_size/sizeof(WCHAR) - 1;
1865                 return TRUE;
1866         }
1867         else
1868         {
1869                 WARN("FAILED !  We now have %d+1\n", es->undo_buffer_size);
1870                 return FALSE;
1871         }
1872 }
1873
1874
1875 /*********************************************************************
1876  *
1877  *      EDIT_MoveBackward
1878  *
1879  */
1880 static void EDIT_MoveBackward(EDITSTATE *es, BOOL extend)
1881 {
1882         INT e = es->selection_end;
1883
1884         if (e) {
1885                 e--;
1886                 if ((es->style & ES_MULTILINE) && e &&
1887                                 (es->text[e - 1] == '\r') && (es->text[e] == '\n')) {
1888                         e--;
1889                         if (e && (es->text[e - 1] == '\r'))
1890                                 e--;
1891                 }
1892         }
1893         EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1894         EDIT_EM_ScrollCaret(es);
1895 }
1896
1897
1898 /*********************************************************************
1899  *
1900  *      EDIT_MoveDown_ML
1901  *
1902  *      Only for multi line controls
1903  *      Move the caret one line down, on a column with the nearest
1904  *      x coordinate on the screen (might be a different column).
1905  *
1906  */
1907 static void EDIT_MoveDown_ML(EDITSTATE *es, BOOL extend)
1908 {
1909         INT s = es->selection_start;
1910         INT e = es->selection_end;
1911         BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
1912         LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
1913         INT x = (short)LOWORD(pos);
1914         INT y = (short)HIWORD(pos);
1915
1916         e = EDIT_CharFromPos(es, x, y + es->line_height, &after_wrap);
1917         if (!extend)
1918                 s = e;
1919         EDIT_EM_SetSel(es, s, e, after_wrap);
1920         EDIT_EM_ScrollCaret(es);
1921 }
1922
1923
1924 /*********************************************************************
1925  *
1926  *      EDIT_MoveEnd
1927  *
1928  */
1929 static void EDIT_MoveEnd(EDITSTATE *es, BOOL extend)
1930 {
1931         BOOL after_wrap = FALSE;
1932         INT e;
1933
1934         /* Pass a high value in x to make sure of receiving the end of the line */
1935         if (es->style & ES_MULTILINE)
1936                 e = EDIT_CharFromPos(es, 0x3fffffff,
1937                         HIWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP)), &after_wrap);
1938         else
1939                 e = strlenW(es->text);
1940         EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, after_wrap);
1941         EDIT_EM_ScrollCaret(es);
1942 }
1943
1944
1945 /*********************************************************************
1946  *
1947  *      EDIT_MoveForward
1948  *
1949  */
1950 static void EDIT_MoveForward(EDITSTATE *es, BOOL extend)
1951 {
1952         INT e = es->selection_end;
1953
1954         if (es->text[e]) {
1955                 e++;
1956                 if ((es->style & ES_MULTILINE) && (es->text[e - 1] == '\r')) {
1957                         if (es->text[e] == '\n')
1958                                 e++;
1959                         else if ((es->text[e] == '\r') && (es->text[e + 1] == '\n'))
1960                                 e += 2;
1961                 }
1962         }
1963         EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1964         EDIT_EM_ScrollCaret(es);
1965 }
1966
1967
1968 /*********************************************************************
1969  *
1970  *      EDIT_MoveHome
1971  *
1972  *      Home key: move to beginning of line.
1973  *
1974  */
1975 static void EDIT_MoveHome(EDITSTATE *es, BOOL extend)
1976 {
1977         INT e;
1978
1979         /* Pass the x_offset in x to make sure of receiving the first position of the line */
1980         if (es->style & ES_MULTILINE)
1981                 e = EDIT_CharFromPos(es, -es->x_offset,
1982                         HIWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP)), NULL);
1983         else
1984                 e = 0;
1985         EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1986         EDIT_EM_ScrollCaret(es);
1987 }
1988
1989
1990 /*********************************************************************
1991  *
1992  *      EDIT_MovePageDown_ML
1993  *
1994  *      Only for multi line controls
1995  *      Move the caret one page down, on a column with the nearest
1996  *      x coordinate on the screen (might be a different column).
1997  *
1998  */
1999 static void EDIT_MovePageDown_ML(EDITSTATE *es, BOOL extend)
2000 {
2001         INT s = es->selection_start;
2002         INT e = es->selection_end;
2003         BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2004         LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2005         INT x = (short)LOWORD(pos);
2006         INT y = (short)HIWORD(pos);
2007
2008         e = EDIT_CharFromPos(es, x,
2009                 y + (es->format_rect.bottom - es->format_rect.top),
2010                 &after_wrap);
2011         if (!extend)
2012                 s = e;
2013         EDIT_EM_SetSel(es, s, e, after_wrap);
2014         EDIT_EM_ScrollCaret(es);
2015 }
2016
2017
2018 /*********************************************************************
2019  *
2020  *      EDIT_MovePageUp_ML
2021  *
2022  *      Only for multi line controls
2023  *      Move the caret one page up, on a column with the nearest
2024  *      x coordinate on the screen (might be a different column).
2025  *
2026  */
2027 static void EDIT_MovePageUp_ML(EDITSTATE *es, BOOL extend)
2028 {
2029         INT s = es->selection_start;
2030         INT e = es->selection_end;
2031         BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2032         LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2033         INT x = (short)LOWORD(pos);
2034         INT y = (short)HIWORD(pos);
2035
2036         e = EDIT_CharFromPos(es, x,
2037                 y - (es->format_rect.bottom - es->format_rect.top),
2038                 &after_wrap);
2039         if (!extend)
2040                 s = e;
2041         EDIT_EM_SetSel(es, s, e, after_wrap);
2042         EDIT_EM_ScrollCaret(es);
2043 }
2044
2045
2046 /*********************************************************************
2047  *
2048  *      EDIT_MoveUp_ML
2049  *
2050  *      Only for multi line controls
2051  *      Move the caret one line up, on a column with the nearest
2052  *      x coordinate on the screen (might be a different column).
2053  *
2054  */
2055 static void EDIT_MoveUp_ML(EDITSTATE *es, BOOL extend)
2056 {
2057         INT s = es->selection_start;
2058         INT e = es->selection_end;
2059         BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2060         LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2061         INT x = (short)LOWORD(pos);
2062         INT y = (short)HIWORD(pos);
2063
2064         e = EDIT_CharFromPos(es, x, y - es->line_height, &after_wrap);
2065         if (!extend)
2066                 s = e;
2067         EDIT_EM_SetSel(es, s, e, after_wrap);
2068         EDIT_EM_ScrollCaret(es);
2069 }
2070
2071
2072 /*********************************************************************
2073  *
2074  *      EDIT_MoveWordBackward
2075  *
2076  */
2077 static void EDIT_MoveWordBackward(EDITSTATE *es, BOOL extend)
2078 {
2079         INT s = es->selection_start;
2080         INT e = es->selection_end;
2081         INT l;
2082         INT ll;
2083         INT li;
2084
2085         l = EDIT_EM_LineFromChar(es, e);
2086         ll = EDIT_EM_LineLength(es, e);
2087         li = EDIT_EM_LineIndex(es, l);
2088         if (e - li == 0) {
2089                 if (l) {
2090                         li = EDIT_EM_LineIndex(es, l - 1);
2091                         e = li + EDIT_EM_LineLength(es, li);
2092                 }
2093         } else {
2094                 e = li + (INT)EDIT_CallWordBreakProc(es,
2095                                 li, e - li, ll, WB_LEFT);
2096         }
2097         if (!extend)
2098                 s = e;
2099         EDIT_EM_SetSel(es, s, e, FALSE);
2100         EDIT_EM_ScrollCaret(es);
2101 }
2102
2103
2104 /*********************************************************************
2105  *
2106  *      EDIT_MoveWordForward
2107  *
2108  */
2109 static void EDIT_MoveWordForward(EDITSTATE *es, BOOL extend)
2110 {
2111         INT s = es->selection_start;
2112         INT e = es->selection_end;
2113         INT l;
2114         INT ll;
2115         INT li;
2116
2117         l = EDIT_EM_LineFromChar(es, e);
2118         ll = EDIT_EM_LineLength(es, e);
2119         li = EDIT_EM_LineIndex(es, l);
2120         if (e - li == ll) {
2121                 if ((es->style & ES_MULTILINE) && (l != es->line_count - 1))
2122                         e = EDIT_EM_LineIndex(es, l + 1);
2123         } else {
2124                 e = li + EDIT_CallWordBreakProc(es,
2125                                 li, e - li + 1, ll, WB_RIGHT);
2126         }
2127         if (!extend)
2128                 s = e;
2129         EDIT_EM_SetSel(es, s, e, FALSE);
2130         EDIT_EM_ScrollCaret(es);
2131 }
2132
2133
2134 /*********************************************************************
2135  *
2136  *      EDIT_PaintLine
2137  *
2138  */
2139 static void EDIT_PaintLine(EDITSTATE *es, HDC dc, INT line, BOOL rev)
2140 {
2141         INT s = es->selection_start;
2142         INT e = es->selection_end;
2143         INT li;
2144         INT ll;
2145         INT x;
2146         INT y;
2147         LRESULT pos;
2148
2149         if (es->style & ES_MULTILINE) {
2150                 INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
2151                 if ((line < es->y_offset) || (line > es->y_offset + vlc) || (line >= es->line_count))
2152                         return;
2153         } else if (line)
2154                 return;
2155
2156         TRACE("line=%d\n", line);
2157
2158         pos = EDIT_EM_PosFromChar(es, EDIT_EM_LineIndex(es, line), FALSE);
2159         x = (short)LOWORD(pos);
2160         y = (short)HIWORD(pos);
2161         li = EDIT_EM_LineIndex(es, line);
2162         ll = EDIT_EM_LineLength(es, li);
2163         s = min(es->selection_start, es->selection_end);
2164         e = max(es->selection_start, es->selection_end);
2165         s = min(li + ll, max(li, s));
2166         e = min(li + ll, max(li, e));
2167         if (rev && (s != e) &&
2168                         ((es->flags & EF_FOCUSED) || (es->style & ES_NOHIDESEL))) {
2169                 x += EDIT_PaintText(es, dc, x, y, line, 0, s - li, FALSE);
2170                 x += EDIT_PaintText(es, dc, x, y, line, s - li, e - s, TRUE);
2171                 x += EDIT_PaintText(es, dc, x, y, line, e - li, li + ll - e, FALSE);
2172         } else
2173                 x += EDIT_PaintText(es, dc, x, y, line, 0, ll, FALSE);
2174 }
2175
2176
2177 /*********************************************************************
2178  *
2179  *      EDIT_PaintText
2180  *
2181  */
2182 static INT EDIT_PaintText(EDITSTATE *es, HDC dc, INT x, INT y, INT line, INT col, INT count, BOOL rev)
2183 {
2184         COLORREF BkColor;
2185         COLORREF TextColor;
2186         INT ret;
2187         INT li;
2188         INT BkMode;
2189         SIZE size;
2190
2191         if (!count)
2192                 return 0;
2193         BkMode = GetBkMode(dc);
2194         BkColor = GetBkColor(dc);
2195         TextColor = GetTextColor(dc);
2196         if (rev) {
2197                 SetBkColor(dc, GetSysColor(COLOR_HIGHLIGHT));
2198                 SetTextColor(dc, GetSysColor(COLOR_HIGHLIGHTTEXT));
2199                 SetBkMode( dc, OPAQUE);
2200         }
2201         li = EDIT_EM_LineIndex(es, line);
2202         if (es->style & ES_MULTILINE) {
2203                 ret = (INT)LOWORD(TabbedTextOutW(dc, x, y, es->text + li + col, count,
2204                                         es->tabs_count, es->tabs, es->format_rect.left - es->x_offset));
2205         } else {
2206                 LPWSTR text = EDIT_GetPasswordPointer_SL(es);
2207                 TextOutW(dc, x, y, text + li + col, count);
2208                 GetTextExtentPoint32W(dc, text + li + col, count, &size);
2209                 ret = size.cx;
2210                 if (es->style & ES_PASSWORD)
2211                         HeapFree(GetProcessHeap(), 0, text);
2212         }
2213         if (rev) {
2214                 SetBkColor(dc, BkColor);
2215                 SetTextColor(dc, TextColor);
2216                 SetBkMode( dc, BkMode);
2217         }
2218         return ret;
2219 }
2220
2221
2222 /*********************************************************************
2223  *
2224  *      EDIT_SetCaretPos
2225  *
2226  */
2227 static void EDIT_SetCaretPos(EDITSTATE *es, INT pos,
2228                              BOOL after_wrap)
2229 {
2230         LRESULT res = EDIT_EM_PosFromChar(es, pos, after_wrap);
2231         TRACE("%d - %dx%d\n", pos, (short)LOWORD(res), (short)HIWORD(res));
2232         SetCaretPos((short)LOWORD(res), (short)HIWORD(res));
2233 }
2234
2235
2236 /*********************************************************************
2237  *
2238  *      EDIT_AdjustFormatRect
2239  *
2240  *      Adjusts the format rectangle for the current font and the
2241  *      current client rectangle.
2242  *
2243  */
2244 static void EDIT_AdjustFormatRect(EDITSTATE *es)
2245 {
2246         RECT ClientRect;
2247         
2248         es->format_rect.right = max(es->format_rect.right, es->format_rect.left + es->char_width);
2249         if (es->style & ES_MULTILINE)
2250         {
2251             INT fw, vlc, max_x_offset, max_y_offset;
2252
2253             vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
2254             es->format_rect.bottom = es->format_rect.top + max(1, vlc) * es->line_height;
2255
2256             /* correct es->x_offset */
2257             fw = es->format_rect.right - es->format_rect.left;
2258             max_x_offset = es->text_width - fw;
2259             if(max_x_offset < 0) max_x_offset = 0;
2260             if(es->x_offset > max_x_offset)
2261                 es->x_offset = max_x_offset;
2262
2263             /* correct es->y_offset */
2264             max_y_offset = es->line_count - vlc;
2265             if(max_y_offset < 0) max_y_offset = 0;
2266             if(es->y_offset > max_y_offset)
2267                 es->y_offset = max_y_offset;
2268
2269             /* force scroll info update */
2270             EDIT_UpdateScrollInfo(es);
2271         }
2272         else
2273         /* Windows doesn't care to fix text placement for SL controls */
2274                 es->format_rect.bottom = es->format_rect.top + es->line_height;
2275
2276         /* Always stay within the client area */
2277         GetClientRect(es->hwndSelf, &ClientRect);
2278         es->format_rect.bottom = min(es->format_rect.bottom, ClientRect.bottom);
2279
2280         if ((es->style & ES_MULTILINE) && !(es->style & ES_AUTOHSCROLL))
2281                 EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
2282         
2283         EDIT_SetCaretPos(es, es->selection_end, es->flags & EF_AFTER_WRAP);
2284 }
2285
2286
2287 /*********************************************************************
2288  *
2289  *      EDIT_SetRectNP
2290  *
2291  *      note:   this is not (exactly) the handler called on EM_SETRECTNP
2292  *              it is also used to set the rect of a single line control
2293  *
2294  */
2295 static void EDIT_SetRectNP(EDITSTATE *es, LPRECT rc)
2296 {
2297         LONG_PTR ExStyle;
2298         INT bw, bh;
2299         ExStyle = GetWindowLongPtrW(es->hwndSelf, GWL_EXSTYLE);
2300         
2301         CopyRect(&es->format_rect, rc);
2302         
2303         if (ExStyle & WS_EX_CLIENTEDGE) {
2304                 es->format_rect.left++;
2305                 es->format_rect.right--;
2306                 
2307                 if (es->format_rect.bottom - es->format_rect.top
2308                     >= es->line_height + 2)
2309                 {
2310                         es->format_rect.top++;
2311                         es->format_rect.bottom--;
2312                 }
2313         }
2314         else if (es->style & WS_BORDER) {
2315                 bw = GetSystemMetrics(SM_CXBORDER) + 1;
2316                 bh = GetSystemMetrics(SM_CYBORDER) + 1;
2317                 es->format_rect.left += bw;
2318                 es->format_rect.right -= bw;
2319                 if (es->format_rect.bottom - es->format_rect.top
2320                   >= es->line_height + 2 * bh)
2321                 {
2322                     es->format_rect.top += bh;
2323                     es->format_rect.bottom -= bh;
2324                 }
2325         }
2326         
2327         es->format_rect.left += es->left_margin;
2328         es->format_rect.right -= es->right_margin;
2329         EDIT_AdjustFormatRect(es);
2330 }
2331
2332
2333 /*********************************************************************
2334  *
2335  *      EDIT_UnlockBuffer
2336  *
2337  */
2338 static void EDIT_UnlockBuffer(EDITSTATE *es, BOOL force)
2339 {
2340
2341         /* Edit window might be already destroyed */
2342         if(!IsWindow(es->hwndSelf))
2343         {
2344             WARN("edit hwnd %p already destroyed\n", es->hwndSelf);
2345             return;
2346         }
2347
2348         if (!es->lock_count) {
2349                 ERR("lock_count == 0 ... please report\n");
2350                 return;
2351         }
2352         if (!es->text) {
2353                 ERR("es->text == 0 ... please report\n");
2354                 return;
2355         }
2356
2357         if (force || (es->lock_count == 1)) {
2358             if (es->hloc32W) {
2359                 CHAR *textA = NULL;
2360                 UINT countA = 0;
2361                 UINT countW = strlenW(es->text) + 1;
2362                 STACK16FRAME* stack16 = NULL;
2363                 HANDLE16 oldDS = 0;
2364
2365                 if(es->hloc32A)
2366                 {
2367                     UINT countA_new = WideCharToMultiByte(CP_ACP, 0, es->text, countW, NULL, 0, NULL, NULL);
2368                     TRACE("Synchronizing with 32-bit ANSI buffer\n");
2369                     TRACE("%d WCHARs translated to %d bytes\n", countW, countA_new);
2370                     countA = LocalSize(es->hloc32A);
2371                     if(countA_new > countA)
2372                     {
2373                         HLOCAL hloc32A_new;
2374                         UINT alloc_size = ROUND_TO_GROW(countA_new);
2375                         TRACE("Resizing 32-bit ANSI buffer from %d to %d bytes\n", countA, alloc_size);
2376                         hloc32A_new = LocalReAlloc(es->hloc32A, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT);
2377                         if(hloc32A_new)
2378                         {
2379                             es->hloc32A = hloc32A_new;
2380                             countA = LocalSize(hloc32A_new);
2381                             TRACE("Real new size %d bytes\n", countA);
2382                         }
2383                         else
2384                             WARN("FAILED! Will synchronize partially\n");
2385                     }
2386                     textA = LocalLock(es->hloc32A);
2387                 }
2388                 else if(es->hloc16)
2389                 {
2390                     UINT countA_new = WideCharToMultiByte(CP_ACP, 0, es->text, countW, NULL, 0, NULL, NULL);
2391
2392                     TRACE("Synchronizing with 16-bit ANSI buffer\n");
2393                     TRACE("%d WCHARs translated to %d bytes\n", countW, countA_new);
2394
2395                     stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
2396                     oldDS = stack16->ds;
2397                     stack16->ds = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
2398
2399                     countA = LocalSize16(es->hloc16);
2400                     if(countA_new > countA)
2401                     {
2402                         HLOCAL16 hloc16_new;
2403                         UINT alloc_size = ROUND_TO_GROW(countA_new);
2404                         TRACE("Resizing 16-bit ANSI buffer from %d to %d bytes\n", countA, alloc_size);
2405                         hloc16_new = LocalReAlloc16(es->hloc16, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT);
2406                         if(hloc16_new)
2407                         {
2408                             es->hloc16 = hloc16_new;
2409                             countA = LocalSize16(hloc16_new);
2410                             TRACE("Real new size %d bytes\n", countA);
2411                         }
2412                         else
2413                             WARN("FAILED! Will synchronize partially\n");
2414                     }
2415                     textA = MapSL(LocalLock16(es->hloc16));
2416                 }
2417
2418                 if(textA)
2419                 {
2420                     WideCharToMultiByte(CP_ACP, 0, es->text, countW, textA, countA, NULL, NULL);
2421                     if(stack16)
2422                         LocalUnlock16(es->hloc16);
2423                     else
2424                         LocalUnlock(es->hloc32A);
2425                 }
2426
2427                 if (stack16) stack16->ds = oldDS;
2428                 LocalUnlock(es->hloc32W);
2429                 es->text = NULL;
2430             }
2431             else {
2432                 ERR("no buffer ... please report\n");
2433                 return;
2434             }
2435         }
2436         es->lock_count--;
2437 }
2438
2439
2440 /*********************************************************************
2441  *
2442  *      EDIT_UpdateScrollInfo
2443  *
2444  */
2445 static void EDIT_UpdateScrollInfo(EDITSTATE *es)
2446 {
2447     if ((es->style & WS_VSCROLL) && !(es->flags & EF_VSCROLL_TRACK))
2448     {
2449         SCROLLINFO si;
2450         si.cbSize       = sizeof(SCROLLINFO);
2451         si.fMask        = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_DISABLENOSCROLL;
2452         si.nMin         = 0;
2453         si.nMax         = es->line_count - 1;
2454         si.nPage        = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
2455         si.nPos         = es->y_offset;
2456         TRACE("SB_VERT, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
2457                 si.nMin, si.nMax, si.nPage, si.nPos);
2458         SetScrollInfo(es->hwndSelf, SB_VERT, &si, TRUE);
2459     }
2460
2461     if ((es->style & WS_HSCROLL) && !(es->flags & EF_HSCROLL_TRACK))
2462     {
2463         SCROLLINFO si;
2464         si.cbSize       = sizeof(SCROLLINFO);
2465         si.fMask        = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_DISABLENOSCROLL;
2466         si.nMin         = 0;
2467         si.nMax         = es->text_width - 1;
2468         si.nPage        = es->format_rect.right - es->format_rect.left;
2469         si.nPos         = es->x_offset;
2470         TRACE("SB_HORZ, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
2471                 si.nMin, si.nMax, si.nPage, si.nPos);
2472         SetScrollInfo(es->hwndSelf, SB_HORZ, &si, TRUE);
2473     }
2474 }
2475
2476 /*********************************************************************
2477  *
2478  *      EDIT_WordBreakProc
2479  *
2480  *      Find the beginning of words.
2481  *      Note:   unlike the specs for a WordBreakProc, this function only
2482  *              allows to be called without linebreaks between s[0] upto
2483  *              s[count - 1].  Remember it is only called
2484  *              internally, so we can decide this for ourselves.
2485  *
2486  */
2487 static INT CALLBACK EDIT_WordBreakProc(LPWSTR s, INT index, INT count, INT action)
2488 {
2489         INT ret = 0;
2490
2491         TRACE("s=%p, index=%d, count=%d, action=%d\n", s, index, count, action);
2492
2493         if(!s) return 0;
2494
2495         switch (action) {
2496         case WB_LEFT:
2497                 if (!count)
2498                         break;
2499                 if (index)
2500                         index--;
2501                 if (s[index] == ' ') {
2502                         while (index && (s[index] == ' '))
2503                                 index--;
2504                         if (index) {
2505                                 while (index && (s[index] != ' '))
2506                                         index--;
2507                                 if (s[index] == ' ')
2508                                         index++;
2509                         }
2510                 } else {
2511                         while (index && (s[index] != ' '))
2512                                 index--;
2513                         if (s[index] == ' ')
2514                                 index++;
2515                 }
2516                 ret = index;
2517                 break;
2518         case WB_RIGHT:
2519                 if (!count)
2520                         break;
2521                 if (index)
2522                         index--;
2523                 if (s[index] == ' ')
2524                         while ((index < count) && (s[index] == ' ')) index++;
2525                 else {
2526                         while (s[index] && (s[index] != ' ') && (index < count))
2527                                 index++;
2528                         while ((s[index] == ' ') && (index < count)) index++;
2529                 }
2530                 ret = index;
2531                 break;
2532         case WB_ISDELIMITER:
2533                 ret = (s[index] == ' ');
2534                 break;
2535         default:
2536                 ERR("unknown action code, please report !\n");
2537                 break;
2538         }
2539         return ret;
2540 }
2541
2542
2543 /*********************************************************************
2544  *
2545  *      EM_CHARFROMPOS
2546  *
2547  *      returns line number (not index) in high-order word of result.
2548  *      NB : Q137805 is unclear about this. POINT * pointer in lParam apply
2549  *      to Richedit, not to the edit control. Original documentation is valid.
2550  *      FIXME: do the specs mean to return -1 if outside client area or
2551  *              if outside formatting rectangle ???
2552  *
2553  */
2554 static LRESULT EDIT_EM_CharFromPos(EDITSTATE *es, INT x, INT y)
2555 {
2556         POINT pt;
2557         RECT rc;
2558         INT index;
2559
2560         pt.x = x;
2561         pt.y = y;
2562         GetClientRect(es->hwndSelf, &rc);
2563         if (!PtInRect(&rc, pt))
2564                 return -1;
2565
2566         index = EDIT_CharFromPos(es, x, y, NULL);
2567         return MAKELONG(index, EDIT_EM_LineFromChar(es, index));
2568 }
2569
2570
2571 /*********************************************************************
2572  *
2573  *      EM_FMTLINES
2574  *
2575  * Enable or disable soft breaks.
2576  * 
2577  * This means: insert or remove the soft linebreak character (\r\r\n).
2578  * Take care to check if the text still fits the buffer after insertion.
2579  * If not, notify with EN_ERRSPACE.
2580  * 
2581  */
2582 static BOOL EDIT_EM_FmtLines(EDITSTATE *es, BOOL add_eol)
2583 {
2584         es->flags &= ~EF_USE_SOFTBRK;
2585         if (add_eol) {
2586                 es->flags |= EF_USE_SOFTBRK;
2587                 FIXME("soft break enabled, not implemented\n");
2588         }
2589         return add_eol;
2590 }
2591
2592
2593 /*********************************************************************
2594  *
2595  *      EM_GETHANDLE
2596  *
2597  *      Hopefully this won't fire back at us.
2598  *      We always start with a fixed buffer in the local heap.
2599  *      Despite of the documentation says that the local heap is used
2600  *      only if DS_LOCALEDIT flag is set, NT and 2000 always allocate
2601  *      buffer on the local heap.
2602  *
2603  */
2604 static HLOCAL EDIT_EM_GetHandle(EDITSTATE *es)
2605 {
2606         HLOCAL hLocal;
2607
2608         if (!(es->style & ES_MULTILINE))
2609                 return 0;
2610
2611         if(es->is_unicode)
2612             hLocal = es->hloc32W;
2613         else
2614         {
2615             if(!es->hloc32A)
2616             {
2617                 CHAR *textA;
2618                 UINT countA, alloc_size;
2619                 TRACE("Allocating 32-bit ANSI alias buffer\n");
2620                 countA = WideCharToMultiByte(CP_ACP, 0, es->text, -1, NULL, 0, NULL, NULL);
2621                 alloc_size = ROUND_TO_GROW(countA);
2622                 if(!(es->hloc32A = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, alloc_size)))
2623                 {
2624                     ERR("Could not allocate %d bytes for 32-bit ANSI alias buffer\n", alloc_size);
2625                     return 0;
2626                 }
2627                 textA = LocalLock(es->hloc32A);
2628                 WideCharToMultiByte(CP_ACP, 0, es->text, -1, textA, countA, NULL, NULL);
2629                 LocalUnlock(es->hloc32A);
2630             }
2631             hLocal = es->hloc32A;
2632         }
2633
2634         TRACE("Returning %p, LocalSize() = %ld\n", hLocal, LocalSize(hLocal));
2635         return hLocal;
2636 }
2637
2638
2639 /*********************************************************************
2640  *
2641  *      EM_GETHANDLE16
2642  *
2643  *      Hopefully this won't fire back at us.
2644  *      We always start with a buffer in 32 bit linear memory.
2645  *      However, with this message a 16 bit application requests
2646  *      a handle of 16 bit local heap memory, where it expects to find
2647  *      the text.
2648  *      It's a pitty that from this moment on we have to use this
2649  *      local heap, because applications may rely on the handle
2650  *      in the future.
2651  *
2652  *      In this function we'll try to switch to local heap.
2653  */
2654 static HLOCAL16 EDIT_EM_GetHandle16(EDITSTATE *es)
2655 {
2656         CHAR *textA;
2657         UINT countA, alloc_size;
2658         STACK16FRAME* stack16;
2659         HANDLE16 oldDS;
2660
2661         if (!(es->style & ES_MULTILINE))
2662                 return 0;
2663
2664         if (es->hloc16)
2665                 return es->hloc16;
2666
2667         stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
2668         oldDS = stack16->ds;
2669         stack16->ds = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
2670
2671         if (!LocalHeapSize16()) {
2672
2673                 if (!LocalInit16(stack16->ds, 0, GlobalSize16(stack16->ds))) {
2674                         ERR("could not initialize local heap\n");
2675                         goto done;
2676                 }
2677                 TRACE("local heap initialized\n");
2678         }
2679
2680         countA = WideCharToMultiByte(CP_ACP, 0, es->text, -1, NULL, 0, NULL, NULL);
2681         alloc_size = ROUND_TO_GROW(countA);
2682
2683         TRACE("Allocating 16-bit ANSI alias buffer\n");
2684         if (!(es->hloc16 = LocalAlloc16(LMEM_MOVEABLE | LMEM_ZEROINIT, alloc_size))) {
2685                 ERR("could not allocate new 16 bit buffer\n");
2686                 goto done;
2687         }
2688
2689         if (!(textA = MapSL(LocalLock16( es->hloc16)))) {
2690                 ERR("could not lock new 16 bit buffer\n");
2691                 LocalFree16(es->hloc16);
2692                 es->hloc16 = 0;
2693                 goto done;
2694         }
2695
2696         WideCharToMultiByte(CP_ACP, 0, es->text, -1, textA, countA, NULL, NULL);
2697         LocalUnlock16(es->hloc16);
2698
2699         TRACE("Returning %04X, LocalSize() = %d\n", es->hloc16, LocalSize16(es->hloc16));
2700
2701 done:
2702         stack16->ds = oldDS;
2703         return es->hloc16;
2704 }
2705
2706
2707 /*********************************************************************
2708  *
2709  *      EM_GETLINE
2710  *
2711  */
2712 static INT EDIT_EM_GetLine(EDITSTATE *es, INT line, LPWSTR dst, BOOL unicode)
2713 {
2714         LPWSTR src;
2715         INT line_len, dst_len;
2716         INT i;
2717
2718         if (es->style & ES_MULTILINE) {
2719                 if (line >= es->line_count)
2720                         return 0;
2721         } else
2722                 line = 0;
2723         i = EDIT_EM_LineIndex(es, line);
2724         src = es->text + i;
2725         line_len = EDIT_EM_LineLength(es, i);
2726         dst_len = *(WORD *)dst;
2727         if(unicode)
2728         {
2729             if(dst_len <= line_len)
2730             {
2731                 memcpy(dst, src, dst_len * sizeof(WCHAR));
2732                 return dst_len;
2733             }
2734             else /* Append 0 if enough space */
2735             {
2736                 memcpy(dst, src, line_len * sizeof(WCHAR));
2737                 dst[line_len] = 0;
2738                 return line_len;
2739             }
2740         }
2741         else
2742         {
2743             INT ret = WideCharToMultiByte(CP_ACP, 0, src, line_len, (LPSTR)dst, dst_len, NULL, NULL);
2744             if(!ret) /* Insufficient buffer size */
2745                 return dst_len;
2746             if(ret < dst_len) /* Append 0 if enough space */
2747                 ((LPSTR)dst)[ret] = 0;
2748             return ret;
2749         }
2750 }
2751
2752
2753 /*********************************************************************
2754  *
2755  *      EM_GETSEL
2756  *
2757  */
2758 static LRESULT EDIT_EM_GetSel(EDITSTATE *es, PUINT start, PUINT end)
2759 {
2760         UINT s = es->selection_start;
2761         UINT e = es->selection_end;
2762
2763         ORDER_UINT(s, e);
2764         if (start)
2765                 *start = s;
2766         if (end)
2767                 *end = e;
2768         return MAKELONG(s, e);
2769 }
2770
2771
2772 /*********************************************************************
2773  *
2774  *      EM_GETTHUMB
2775  *
2776  *      FIXME: is this right ?  (or should it be only VSCROLL)
2777  *      (and maybe only for edit controls that really have their
2778  *      own scrollbars) (and maybe only for multiline controls ?)
2779  *      All in all: very poorly documented
2780  *
2781  */
2782 static LRESULT EDIT_EM_GetThumb(EDITSTATE *es)
2783 {
2784         return MAKELONG(EDIT_WM_VScroll(es, EM_GETTHUMB16, 0),
2785                 EDIT_WM_HScroll(es, EM_GETTHUMB16, 0));
2786 }
2787
2788
2789 /*********************************************************************
2790  *
2791  *      EM_LINEFROMCHAR
2792  *
2793  */
2794 static INT EDIT_EM_LineFromChar(EDITSTATE *es, INT index)
2795 {
2796         INT line;
2797         LINEDEF *line_def;
2798
2799         if (!(es->style & ES_MULTILINE))
2800                 return 0;
2801         if (index > (INT)strlenW(es->text))
2802                 return es->line_count - 1;
2803         if (index == -1)
2804                 index = min(es->selection_start, es->selection_end);
2805
2806         line = 0;
2807         line_def = es->first_line_def;
2808         index -= line_def->length;
2809         while ((index >= 0) && line_def->next) {
2810                 line++;
2811                 line_def = line_def->next;
2812                 index -= line_def->length;
2813         }
2814         return line;
2815 }
2816
2817
2818 /*********************************************************************
2819  *
2820  *      EM_LINEINDEX
2821  *
2822  */
2823 static INT EDIT_EM_LineIndex(EDITSTATE *es, INT line)
2824 {
2825         INT line_index;
2826         LINEDEF *line_def;
2827
2828         if (!(es->style & ES_MULTILINE))
2829                 return 0;
2830         if (line >= es->line_count)
2831                 return -1;
2832
2833         line_index = 0;
2834         line_def = es->first_line_def;
2835         if (line == -1) {
2836                 INT index = es->selection_end - line_def->length;
2837                 while ((index >= 0) && line_def->next) {
2838                         line_index += line_def->length;
2839                         line_def = line_def->next;
2840                         index -= line_def->length;
2841                 }
2842         } else {
2843                 while (line > 0) {
2844                         line_index += line_def->length;
2845                         line_def = line_def->next;
2846                         line--;
2847                 }
2848         }
2849         return line_index;
2850 }
2851
2852
2853 /*********************************************************************
2854  *
2855  *      EM_LINELENGTH
2856  *
2857  */
2858 static INT EDIT_EM_LineLength(EDITSTATE *es, INT index)
2859 {
2860         LINEDEF *line_def;
2861
2862         if (!(es->style & ES_MULTILINE))
2863                 return strlenW(es->text);
2864
2865         if (index == -1) {
2866                 /* get the number of remaining non-selected chars of selected lines */
2867                 INT32 l; /* line number */
2868                 INT32 li; /* index of first char in line */
2869                 INT32 count;
2870                 l = EDIT_EM_LineFromChar(es, es->selection_start);
2871                 /* # chars before start of selection area */
2872                 count = es->selection_start - EDIT_EM_LineIndex(es, l);
2873                 l = EDIT_EM_LineFromChar(es, es->selection_end);
2874                 /* # chars after end of selection */
2875                 li = EDIT_EM_LineIndex(es, l);
2876                 count += li + EDIT_EM_LineLength(es, li) - es->selection_end;
2877                 return count;
2878         }
2879         line_def = es->first_line_def;
2880         index -= line_def->length;
2881         while ((index >= 0) && line_def->next) {
2882                 line_def = line_def->next;
2883                 index -= line_def->length;
2884         }
2885         return line_def->net_length;
2886 }
2887
2888
2889 /*********************************************************************
2890  *
2891  *      EM_LINESCROLL
2892  *
2893  *      NOTE: dx is in average character widths, dy - in lines;
2894  *
2895  */
2896 static BOOL EDIT_EM_LineScroll(EDITSTATE *es, INT dx, INT dy)
2897 {
2898         if (!(es->style & ES_MULTILINE))
2899                 return FALSE;
2900
2901         dx *= es->char_width;
2902         return EDIT_EM_LineScroll_internal(es, dx, dy);
2903 }
2904
2905 /*********************************************************************
2906  *
2907  *      EDIT_EM_LineScroll_internal
2908  *
2909  *      Version of EDIT_EM_LineScroll for internal use.
2910  *      It doesn't refuse if ES_MULTILINE is set and assumes that
2911  *      dx is in pixels, dy - in lines.
2912  *
2913  */
2914 static BOOL EDIT_EM_LineScroll_internal(EDITSTATE *es, INT dx, INT dy)
2915 {
2916         INT nyoff;
2917         INT x_offset_in_pixels;
2918         INT lines_per_page = (es->format_rect.bottom - es->format_rect.top) /
2919                               es->line_height;
2920
2921         if (es->style & ES_MULTILINE)
2922         {
2923             x_offset_in_pixels = es->x_offset;
2924         }
2925         else
2926         {
2927             dy = 0;
2928             x_offset_in_pixels = (short)LOWORD(EDIT_EM_PosFromChar(es, es->x_offset, FALSE));
2929         }
2930
2931         if (-dx > x_offset_in_pixels)
2932                 dx = -x_offset_in_pixels;
2933         if (dx > es->text_width - x_offset_in_pixels)
2934                 dx = es->text_width - x_offset_in_pixels;
2935         nyoff = max(0, es->y_offset + dy);
2936         if (nyoff >= es->line_count - lines_per_page)
2937                 nyoff = max(0, es->line_count - lines_per_page);
2938         dy = (es->y_offset - nyoff) * es->line_height;
2939         if (dx || dy) {
2940                 RECT rc1;
2941                 RECT rc;
2942
2943                 es->y_offset = nyoff;
2944                 if(es->style & ES_MULTILINE)
2945                     es->x_offset += dx;
2946                 else
2947                     es->x_offset += dx / es->char_width;
2948
2949                 GetClientRect(es->hwndSelf, &rc1);
2950                 IntersectRect(&rc, &rc1, &es->format_rect);
2951                 ScrollWindowEx(es->hwndSelf, -dx, dy,
2952                                 NULL, &rc, NULL, NULL, SW_INVALIDATE);
2953                 /* force scroll info update */
2954                 EDIT_UpdateScrollInfo(es);
2955         }
2956         if (dx && !(es->flags & EF_HSCROLL_TRACK))
2957                 EDIT_NOTIFY_PARENT(es, EN_HSCROLL);
2958         if (dy && !(es->flags & EF_VSCROLL_TRACK))
2959                 EDIT_NOTIFY_PARENT(es, EN_VSCROLL);
2960         return TRUE;
2961 }
2962
2963
2964 /*********************************************************************
2965  *
2966  *      EM_POSFROMCHAR
2967  *
2968  */
2969 static LRESULT EDIT_EM_PosFromChar(EDITSTATE *es, INT index, BOOL after_wrap)
2970 {
2971         INT len = strlenW(es->text);
2972         INT l;
2973         INT li;
2974         INT x;
2975         INT y = 0;
2976         INT w;
2977         INT lw = 0;
2978         INT ll = 0;
2979         HDC dc;
2980         HFONT old_font = 0;
2981         SIZE size;
2982         LINEDEF *line_def;
2983
2984         index = min(index, len);
2985         dc = GetDC(es->hwndSelf);
2986         if (es->font)
2987                 old_font = SelectObject(dc, es->font);
2988         if (es->style & ES_MULTILINE) {
2989                 l = EDIT_EM_LineFromChar(es, index);
2990                 y = (l - es->y_offset) * es->line_height;
2991                 li = EDIT_EM_LineIndex(es, l);
2992                 if (after_wrap && (li == index) && l) {
2993                         INT l2 = l - 1;
2994                         line_def = es->first_line_def;
2995                         while (l2) {
2996                                 line_def = line_def->next;
2997                                 l2--;
2998                         }
2999                         if (line_def->ending == END_WRAP) {
3000                                 l--;
3001                                 y -= es->line_height;
3002                                 li = EDIT_EM_LineIndex(es, l);
3003                         }
3004                 }
3005
3006                 line_def = es->first_line_def;
3007                 while (line_def->index != li)
3008                         line_def = line_def->next;
3009
3010                 ll = line_def->net_length;
3011                 lw = line_def->width;
3012
3013                 w = es->format_rect.right - es->format_rect.left;
3014                 if (es->style & ES_RIGHT)
3015                 {
3016                         x = LOWORD(GetTabbedTextExtentW(dc, es->text + li + (index - li), ll - (index - li),
3017                                 es->tabs_count, es->tabs)) - es->x_offset;
3018                         x = w - x;
3019                 }
3020                 else if (es->style & ES_CENTER)
3021                 {
3022                         x = LOWORD(GetTabbedTextExtentW(dc, es->text + li, index - li,
3023                                 es->tabs_count, es->tabs)) - es->x_offset;
3024                         x += (w - lw) / 2;
3025                 }
3026                 else /* ES_LEFT */
3027                 {
3028                     x = LOWORD(GetTabbedTextExtentW(dc, es->text + li, index - li,
3029                                 es->tabs_count, es->tabs)) - es->x_offset;
3030                 }
3031         } else {
3032                 LPWSTR text = EDIT_GetPasswordPointer_SL(es);
3033                 if (index < es->x_offset) {
3034                         GetTextExtentPoint32W(dc, text + index,
3035                                         es->x_offset - index, &size);
3036                         x = -size.cx;
3037                 } else {
3038                         GetTextExtentPoint32W(dc, text + es->x_offset,
3039                                         index - es->x_offset, &size);
3040                          x = size.cx;
3041
3042                         if (!es->x_offset && (es->style & (ES_RIGHT | ES_CENTER)))
3043                         {
3044                                 w = es->format_rect.right - es->format_rect.left;
3045                                 if (w > es->text_width)
3046                                 {
3047                                         if (es->style & ES_RIGHT)
3048                                                 x += w - es->text_width;
3049                                         else if (es->style & ES_CENTER)
3050                                                 x += (w - es->text_width) / 2;
3051                                 }
3052                         }
3053                 }
3054                 y = 0;
3055                 if (es->style & ES_PASSWORD)
3056                         HeapFree(GetProcessHeap(), 0, text);
3057         }
3058         x += es->format_rect.left;
3059         y += es->format_rect.top;
3060         if (es->font)
3061                 SelectObject(dc, old_font);
3062         ReleaseDC(es->hwndSelf, dc);
3063         return MAKELONG((INT16)x, (INT16)y);
3064 }
3065
3066
3067 /*********************************************************************
3068  *
3069  *      EM_REPLACESEL
3070  *
3071  *      FIXME: handle ES_NUMBER and ES_OEMCONVERT here
3072  *
3073  */
3074 static void EDIT_EM_ReplaceSel(EDITSTATE *es, BOOL can_undo, LPCWSTR lpsz_replace, BOOL send_update, BOOL honor_limit)
3075 {
3076         UINT strl = strlenW(lpsz_replace);
3077         UINT tl = strlenW(es->text);
3078         UINT utl;
3079         UINT s;
3080         UINT e;
3081         UINT i;
3082         UINT size;
3083         LPWSTR p;
3084         HRGN hrgn = 0;
3085         LPWSTR buf = NULL;
3086         UINT bufl = 0;
3087
3088         TRACE("%s, can_undo %d, send_update %d\n",
3089             debugstr_w(lpsz_replace), can_undo, send_update);
3090
3091         s = es->selection_start;
3092         e = es->selection_end;
3093
3094         if ((s == e) && !strl)
3095                 return;
3096
3097         ORDER_UINT(s, e);
3098
3099         size = tl - (e - s) + strl;
3100         if (!size)
3101                 es->text_width = 0;
3102
3103         /* Issue the EN_MAXTEXT notification and continue with replacing text
3104          * such that buffer limit is honored. */
3105         if ((honor_limit) && (es->buffer_limit > 0) && (size > es->buffer_limit)) {
3106                 EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
3107                 strl = es->buffer_limit - (tl - (e-s));
3108         }
3109
3110         if (!EDIT_MakeFit(es, tl - (e - s) + strl))
3111                 return;
3112
3113         if (e != s) {
3114                 /* there is something to be deleted */
3115                 TRACE("deleting stuff.\n");
3116                 bufl = e - s;
3117                 buf = HeapAlloc(GetProcessHeap(), 0, (bufl + 1) * sizeof(WCHAR));
3118                 if (!buf) return;
3119                 memcpy(buf, es->text + s, bufl * sizeof(WCHAR));
3120                 buf[bufl] = 0; /* ensure 0 termination */
3121                 /* now delete */
3122                 strcpyW(es->text + s, es->text + e);
3123         }
3124         if (strl) {
3125                 /* there is an insertion */
3126                 tl = strlenW(es->text);
3127                 TRACE("inserting stuff (tl %d, strl %d, selstart %d ('%s'), text '%s')\n", tl, strl, s, debugstr_w(es->text + s), debugstr_w(es->text));
3128                 for (p = es->text + tl ; p >= es->text + s ; p--)
3129                         p[strl] = p[0];
3130                 for (i = 0 , p = es->text + s ; i < strl ; i++)
3131                         p[i] = lpsz_replace[i];
3132                 if(es->style & ES_UPPERCASE)
3133                         CharUpperBuffW(p, strl);
3134                 else if(es->style & ES_LOWERCASE)
3135                         CharLowerBuffW(p, strl);
3136         }
3137         if (es->style & ES_MULTILINE)
3138         {
3139                 INT st = min(es->selection_start, es->selection_end);
3140                 INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
3141
3142                 hrgn = CreateRectRgn(0, 0, 0, 0);
3143                 EDIT_BuildLineDefs_ML(es, st, st + strl,
3144                                 strl - abs(es->selection_end - es->selection_start), hrgn);
3145                 /* if text is too long undo all changes */
3146                 if (honor_limit && !(es->style & ES_AUTOVSCROLL) && (es->line_count > vlc)) {
3147                         if (strl)
3148                                 strcpyW(es->text + e, es->text + e + strl);
3149                         if (e != s)
3150                                 for (i = 0 , p = es->text ; i < e - s ; i++)
3151                                         p[i + s] = buf[i];
3152                         EDIT_BuildLineDefs_ML(es, s, e, 
3153                                 abs(es->selection_end - es->selection_start) - strl, hrgn);
3154                         strl = 0;
3155                         e = s;
3156                         hrgn = CreateRectRgn(0, 0, 0, 0);
3157                         EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
3158                 }
3159         }
3160         else {
3161                 INT fw = es->format_rect.right - es->format_rect.left;
3162                 EDIT_CalcLineWidth_SL(es);
3163                 /* remove chars that don't fit */
3164                 if (honor_limit && !(es->style & ES_AUTOHSCROLL) && (es->text_width > fw)) {
3165                         while ((es->text_width > fw) && s + strl >= s) {
3166                                 strcpyW(es->text + s + strl - 1, es->text + s + strl);
3167                                 strl--;
3168                                 EDIT_CalcLineWidth_SL(es);
3169                         }
3170                         EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
3171                 }
3172         }
3173         
3174         if (e != s) {
3175                 if (can_undo) {
3176                         utl = strlenW(es->undo_text);
3177                         if (!es->undo_insert_count && (*es->undo_text && (s == es->undo_position))) {
3178                                 /* undo-buffer is extended to the right */
3179                                 EDIT_MakeUndoFit(es, utl + e - s);
3180                                 memcpy(es->undo_text + utl, buf, (e - s)*sizeof(WCHAR));
3181                                 (es->undo_text + utl)[e - s] = 0; /* ensure 0 termination */
3182                         } else if (!es->undo_insert_count && (*es->undo_text && (e == es->undo_position))) {
3183                                 /* undo-buffer is extended to the left */
3184                                 EDIT_MakeUndoFit(es, utl + e - s);
3185                                 for (p = es->undo_text + utl ; p >= es->undo_text ; p--)
3186                                         p[e - s] = p[0];
3187                                 for (i = 0 , p = es->undo_text ; i < e - s ; i++)
3188                                         p[i] = buf[i];
3189                                 es->undo_position = s;
3190                         } else {
3191                                 /* new undo-buffer */
3192                                 EDIT_MakeUndoFit(es, e - s);
3193                                 memcpy(es->undo_text, buf, (e - s)*sizeof(WCHAR));
3194                                 es->undo_text[e - s] = 0; /* ensure 0 termination */
3195                                 es->undo_position = s;
3196                         }
3197                         /* any deletion makes the old insertion-undo invalid */
3198                         es->undo_insert_count = 0;
3199                 } else
3200                         EDIT_EM_EmptyUndoBuffer(es);
3201         }
3202         if (strl) {
3203                 if (can_undo) {
3204                         if ((s == es->undo_position) ||
3205                                 ((es->undo_insert_count) &&
3206                                 (s == es->undo_position + es->undo_insert_count)))
3207                                 /*
3208                                  * insertion is new and at delete position or
3209                                  * an extension to either left or right
3210                                  */
3211                                 es->undo_insert_count += strl;
3212                         else {
3213                                 /* new insertion undo */
3214                                 es->undo_position = s;
3215                                 es->undo_insert_count = strl;
3216                                 /* new insertion makes old delete-buffer invalid */
3217                                 *es->undo_text = '\0';
3218                         }
3219                 } else
3220                         EDIT_EM_EmptyUndoBuffer(es);
3221         }
3222
3223         if (bufl)
3224                 HeapFree(GetProcessHeap(), 0, buf);
3225  
3226         s += strl;
3227
3228         /* If text has been deleted and we're right or center aligned then scroll rightward */
3229         if (es->style & (ES_RIGHT | ES_CENTER))
3230         {
3231                 INT delta = strl - abs(es->selection_end - es->selection_start);
3232
3233                 if (delta < 0 && es->x_offset)
3234                 {
3235                         if (abs(delta) > es->x_offset)
3236                                 es->x_offset = 0;
3237                         else
3238                                 es->x_offset += delta;
3239                 }
3240         }
3241
3242         EDIT_EM_SetSel(es, s, s, FALSE);
3243         es->flags |= EF_MODIFIED;
3244         if (send_update) es->flags |= EF_UPDATE;
3245         if (hrgn)
3246         {
3247                 EDIT_UpdateTextRegion(es, hrgn, TRUE);
3248                 DeleteObject(hrgn);
3249         }
3250         else
3251             EDIT_UpdateText(es, NULL, TRUE);
3252
3253         EDIT_EM_ScrollCaret(es);
3254
3255         /* force scroll info update */
3256         EDIT_UpdateScrollInfo(es);
3257
3258
3259         if(send_update || (es->flags & EF_UPDATE))
3260         {
3261             es->flags &= ~EF_UPDATE;
3262             EDIT_NOTIFY_PARENT(es, EN_CHANGE);
3263         }
3264 }
3265
3266
3267 /*********************************************************************
3268  *
3269  *      EM_SCROLL
3270  *
3271  */
3272 static LRESULT EDIT_EM_Scroll(EDITSTATE *es, INT action)
3273 {
3274         INT dy;
3275
3276         if (!(es->style & ES_MULTILINE))
3277                 return (LRESULT)FALSE;
3278
3279         dy = 0;
3280
3281         switch (action) {
3282         case SB_LINEUP:
3283                 if (es->y_offset)
3284                         dy = -1;
3285                 break;
3286         case SB_LINEDOWN:
3287                 if (es->y_offset < es->line_count - 1)
3288                         dy = 1;
3289                 break;
3290         case SB_PAGEUP:
3291                 if (es->y_offset)
3292                         dy = -(es->format_rect.bottom - es->format_rect.top) / es->line_height;
3293                 break;
3294         case SB_PAGEDOWN:
3295                 if (es->y_offset < es->line_count - 1)
3296                         dy = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
3297                 break;
3298         default:
3299                 return (LRESULT)FALSE;
3300         }
3301         if (dy) {
3302             INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
3303             /* check if we are going to move too far */
3304             if(es->y_offset + dy > es->line_count - vlc)
3305                 dy = es->line_count - vlc - es->y_offset;
3306
3307             /* Notification is done in EDIT_EM_LineScroll */
3308             if(dy)
3309                 EDIT_EM_LineScroll(es, 0, dy);
3310         }
3311         return MAKELONG((INT16)dy, (BOOL16)TRUE);
3312 }
3313
3314
3315 /*********************************************************************
3316  *
3317  *      EM_SCROLLCARET
3318  *
3319  */
3320 static void EDIT_EM_ScrollCaret(EDITSTATE *es)
3321 {
3322         if (es->style & ES_MULTILINE) {
3323                 INT l;
3324                 INT li;
3325                 INT vlc;
3326                 INT ww;
3327                 INT cw = es->char_width;
3328                 INT x;
3329                 INT dy = 0;
3330                 INT dx = 0;
3331
3332                 l = EDIT_EM_LineFromChar(es, es->selection_end);
3333                 li = EDIT_EM_LineIndex(es, l);
3334                 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP));
3335                 vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
3336                 if (l >= es->y_offset + vlc)
3337                         dy = l - vlc + 1 - es->y_offset;
3338                 if (l < es->y_offset)
3339                         dy = l - es->y_offset;
3340                 ww = es->format_rect.right - es->format_rect.left;
3341                 if (x < es->format_rect.left)
3342                         dx = x - es->format_rect.left - ww / HSCROLL_FRACTION / cw * cw;
3343                 if (x > es->format_rect.right)
3344                         dx = x - es->format_rect.left - (HSCROLL_FRACTION - 1) * ww / HSCROLL_FRACTION / cw * cw;
3345                 if (dy || dx || (es->y_offset && (es->line_count - es->y_offset < vlc)))
3346                 {
3347                     /* check if we are going to move too far */
3348                     if(es->x_offset + dx + ww > es->text_width)
3349                         dx = es->text_width - ww - es->x_offset;
3350                     if(dx || dy || (es->y_offset && (es->line_count - es->y_offset < vlc)))
3351                         EDIT_EM_LineScroll_internal(es, dx, dy);
3352                 }
3353         } else {
3354                 INT x;
3355                 INT goal;
3356                 INT format_width;
3357
3358                 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
3359                 format_width = es->format_rect.right - es->format_rect.left;
3360                 if (x < es->format_rect.left) {
3361                         goal = es->format_rect.left + format_width / HSCROLL_FRACTION;
3362                         do {
3363                                 es->x_offset--;
3364                                 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
3365                         } while ((x < goal) && es->x_offset);
3366                         /* FIXME: use ScrollWindow() somehow to improve performance */
3367                         EDIT_UpdateText(es, NULL, TRUE);
3368                 } else if (x > es->format_rect.right) {
3369                         INT x_last;
3370                         INT len = strlenW(es->text);
3371                         goal = es->format_rect.right - format_width / HSCROLL_FRACTION;
3372                         do {
3373                                 es->x_offset++;
3374                                 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
3375                                 x_last = (short)LOWORD(EDIT_EM_PosFromChar(es, len, FALSE));
3376                         } while ((x > goal) && (x_last > es->format_rect.right));
3377                         /* FIXME: use ScrollWindow() somehow to improve performance */
3378                         EDIT_UpdateText(es, NULL, TRUE);
3379                 }
3380         }
3381
3382     if(es->flags & EF_FOCUSED)
3383         EDIT_SetCaretPos(es, es->selection_end, es->flags & EF_AFTER_WRAP);
3384 }
3385
3386
3387 /*********************************************************************
3388  *
3389  *      EM_SETHANDLE
3390  *
3391  *      FIXME:  ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
3392  *
3393  */
3394 static void EDIT_EM_SetHandle(EDITSTATE *es, HLOCAL hloc)
3395 {
3396         if (!(es->style & ES_MULTILINE))
3397                 return;
3398
3399         if (!hloc) {
3400                 WARN("called with NULL handle\n");
3401                 return;
3402         }
3403
3404         EDIT_UnlockBuffer(es, TRUE);
3405
3406         if(es->hloc16)
3407         {
3408             STACK16FRAME* stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
3409             HANDLE16 oldDS = stack16->ds;
3410         
3411             stack16->ds = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
3412             LocalFree16(es->hloc16);
3413             stack16->ds = oldDS;
3414             es->hloc16 = 0;
3415         }
3416
3417         if(es->is_unicode)
3418         {
3419             if(es->hloc32A)
3420             {
3421                 LocalFree(es->hloc32A);
3422                 es->hloc32A = NULL;
3423             }
3424             es->hloc32W = hloc;
3425         }
3426         else
3427         {
3428             INT countW, countA;
3429             HLOCAL hloc32W_new;
3430             WCHAR *textW;
3431             CHAR *textA;
3432
3433             countA = LocalSize(hloc);
3434             textA = LocalLock(hloc);
3435             countW = MultiByteToWideChar(CP_ACP, 0, textA, countA, NULL, 0);
3436             if(!(hloc32W_new = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, countW * sizeof(WCHAR))))
3437             {
3438                 ERR("Could not allocate new unicode buffer\n");
3439                 return;
3440             }
3441             textW = LocalLock(hloc32W_new);
3442             MultiByteToWideChar(CP_ACP, 0, textA, countA, textW, countW);
3443             LocalUnlock(hloc32W_new);
3444             LocalUnlock(hloc);
3445
3446             if(es->hloc32W)
3447                 LocalFree(es->hloc32W);
3448
3449             es->hloc32W = hloc32W_new;
3450             es->hloc32A = hloc;
3451         }
3452
3453         es->buffer_size = LocalSize(es->hloc32W)/sizeof(WCHAR) - 1;
3454
3455         EDIT_LockBuffer(es);
3456
3457         es->x_offset = es->y_offset = 0;
3458         es->selection_start = es->selection_end = 0;
3459         EDIT_EM_EmptyUndoBuffer(es);
3460         es->flags &= ~EF_MODIFIED;
3461         es->flags &= ~EF_UPDATE;
3462         EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
3463         EDIT_UpdateText(es, NULL, TRUE);
3464         EDIT_EM_ScrollCaret(es);
3465         /* force scroll info update */
3466         EDIT_UpdateScrollInfo(es);
3467 }
3468
3469
3470 /*********************************************************************
3471  *
3472  *      EM_SETHANDLE16
3473  *
3474  *      FIXME:  ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
3475  *
3476  */
3477 static void EDIT_EM_SetHandle16(EDITSTATE *es, HLOCAL16 hloc)
3478 {
3479         STACK16FRAME* stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
3480         HINSTANCE16 hInstance = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
3481         HANDLE16 oldDS = stack16->ds;
3482         INT countW, countA;
3483         HLOCAL hloc32W_new;
3484         WCHAR *textW;
3485         CHAR *textA;
3486
3487         if (!(es->style & ES_MULTILINE))
3488                 return;
3489
3490         if (!hloc) {
3491                 WARN("called with NULL handle\n");
3492                 return;
3493         }
3494
3495         EDIT_UnlockBuffer(es, TRUE);
3496
3497         if(es->hloc32A)
3498         {
3499             LocalFree(es->hloc32A);
3500             es->hloc32A = NULL;
3501         }
3502
3503         stack16->ds = hInstance;
3504         countA = LocalSize16(hloc);
3505         textA = MapSL(LocalLock16(hloc));
3506         countW = MultiByteToWideChar(CP_ACP, 0, textA, countA, NULL, 0);
3507         if(!(hloc32W_new = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, countW * sizeof(WCHAR))))
3508         {
3509             ERR("Could not allocate new unicode buffer\n");
3510             return;
3511         }
3512         textW = LocalLock(hloc32W_new);
3513         MultiByteToWideChar(CP_ACP, 0, textA, countA, textW, countW);
3514         LocalUnlock(hloc32W_new);
3515         LocalUnlock16(hloc);
3516         stack16->ds = oldDS;
3517
3518         if(es->hloc32W)
3519             LocalFree(es->hloc32W);
3520
3521         es->hloc32W = hloc32W_new;
3522         es->hloc16 = hloc;
3523
3524         es->buffer_size = LocalSize(es->hloc32W)/sizeof(WCHAR) - 1;
3525
3526         EDIT_LockBuffer(es);
3527
3528         es->x_offset = es->y_offset = 0;
3529         es->selection_start = es->selection_end = 0;
3530         EDIT_EM_EmptyUndoBuffer(es);
3531         es->flags &= ~EF_MODIFIED;
3532         es->flags &= ~EF_UPDATE;
3533         EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
3534         EDIT_UpdateText(es, NULL, TRUE);
3535         EDIT_EM_ScrollCaret(es);
3536         /* force scroll info update */
3537         EDIT_UpdateScrollInfo(es);
3538 }
3539
3540
3541 /*********************************************************************
3542  *
3543  *      EM_SETLIMITTEXT
3544  *
3545  *      FIXME: in WinNT maxsize is 0x7FFFFFFF / 0xFFFFFFFF
3546  *      However, the windows version is not complied to yet in all of edit.c
3547  *
3548  *  Additionally as the wrapper for RichEdit controls we need larger buffers
3549  *  at present -1 will represent nolimit
3550  */
3551 static void EDIT_EM_SetLimitText(EDITSTATE *es, INT limit)
3552 {
3553     if (limit == 0xFFFFFFFF)
3554         es->buffer_limit = -1;
3555     else if (es->style & ES_MULTILINE) {
3556                 if (limit)
3557                         es->buffer_limit = min(limit, BUFLIMIT_MULTI);
3558                 else
3559                         es->buffer_limit = BUFLIMIT_MULTI;
3560         } else {
3561                 if (limit)
3562                         es->buffer_limit = min(limit, BUFLIMIT_SINGLE);
3563                 else
3564                         es->buffer_limit = BUFLIMIT_SINGLE;
3565         }
3566 }
3567
3568
3569 /*********************************************************************
3570  *
3571  *      EM_SETMARGINS
3572  *
3573  * EC_USEFONTINFO is used as a left or right value i.e. lParam and not as an
3574  * action wParam despite what the docs say. EC_USEFONTINFO calculates the
3575  * margin according to the textmetrics of the current font.
3576  *
3577  * FIXME - With TrueType or vector fonts EC_USEFONTINFO currently sets one third
3578  * of the char's width as the margin, but this is not how Windows handles this.
3579  * For all other fonts Windows sets the margins to zero.
3580  *
3581  */
3582 static void EDIT_EM_SetMargins(EDITSTATE *es, INT action,
3583                                INT left, INT right, BOOL repaint)
3584 {
3585         TEXTMETRICW tm;
3586         INT default_left_margin  = 0; /* in pixels */
3587         INT default_right_margin = 0; /* in pixels */
3588
3589         /* Set the default margins depending on the font */
3590         if (es->font && (left == EC_USEFONTINFO || right == EC_USEFONTINFO)) {
3591             HDC dc = GetDC(es->hwndSelf);
3592             HFONT old_font = SelectObject(dc, es->font);
3593             GetTextMetricsW(dc, &tm);
3594             /* The default margins are only non zero for TrueType or Vector fonts */
3595             if (tm.tmPitchAndFamily & ( TMPF_VECTOR | TMPF_TRUETYPE )) {
3596                 /* This must be calculated more exactly! But how? */
3597                 default_left_margin = tm.tmAveCharWidth / 3;
3598                 default_right_margin = tm.tmAveCharWidth / 3;
3599             }
3600             SelectObject(dc, old_font);
3601             ReleaseDC(es->hwndSelf, dc);
3602         }
3603
3604         if (action & EC_LEFTMARGIN) {
3605                 es->format_rect.left -= es->left_margin;
3606                 if (left != EC_USEFONTINFO)
3607                         es->left_margin = left;
3608                 else
3609                         es->left_margin = default_left_margin;
3610                 es->format_rect.left += es->left_margin;
3611         }
3612
3613         if (action & EC_RIGHTMARGIN) {
3614                 es->format_rect.right += es->right_margin;
3615                 if (right != EC_USEFONTINFO)
3616                         es->right_margin = right;
3617                 else
3618                         es->right_margin = default_right_margin;
3619                 es->format_rect.right -= es->right_margin;
3620         }
3621         
3622         if (action & (EC_LEFTMARGIN | EC_RIGHTMARGIN)) {
3623                 EDIT_AdjustFormatRect(es);
3624                 if (repaint) EDIT_UpdateText(es, NULL, TRUE);
3625         }
3626         
3627         TRACE("left=%d, right=%d\n", es->left_margin, es->right_margin);
3628 }
3629
3630
3631 /*********************************************************************
3632  *
3633  *      EM_SETPASSWORDCHAR
3634  *
3635  */
3636 static void EDIT_EM_SetPasswordChar(EDITSTATE *es, WCHAR c)
3637 {
3638         LONG style;
3639
3640         if (es->style & ES_MULTILINE)
3641                 return;
3642
3643         if (es->password_char == c)
3644                 return;
3645
3646         style = GetWindowLongW( es->hwndSelf, GWL_STYLE );
3647         es->password_char = c;
3648         if (c) {
3649             SetWindowLongW( es->hwndSelf, GWL_STYLE, style | ES_PASSWORD );
3650             es->style |= ES_PASSWORD;
3651         } else {
3652             SetWindowLongW( es->hwndSelf, GWL_STYLE, style & ~ES_PASSWORD );
3653             es->style &= ~ES_PASSWORD;
3654         }
3655         EDIT_UpdateText(es, NULL, TRUE);
3656 }
3657
3658
3659 /*********************************************************************
3660  *
3661  *      EDIT_EM_SetSel
3662  *
3663  *      note:   unlike the specs say: the order of start and end
3664  *              _is_ preserved in Windows.  (i.e. start can be > end)
3665  *              In other words: this handler is OK
3666  *
3667  */
3668 static void EDIT_EM_SetSel(EDITSTATE *es, UINT start, UINT end, BOOL after_wrap)
3669 {
3670         UINT old_start = es->selection_start;
3671         UINT old_end = es->selection_end;
3672         UINT len = strlenW(es->text);
3673
3674         if (start == (UINT)-1) {
3675                 start = es->selection_end;
3676                 end = es->selection_end;
3677         } else {
3678                 start = min(start, len);
3679                 end = min(end, len);
3680         }
3681         es->selection_start = start;
3682         es->selection_end = end;
3683         if (after_wrap)
3684                 es->flags |= EF_AFTER_WRAP;
3685         else
3686                 es->flags &= ~EF_AFTER_WRAP;
3687         /* Compute the necessary invalidation region. */
3688         /* Note that we don't need to invalidate regions which have
3689          * "never" been selected, or those which are "still" selected.
3690          * In fact, every time we hit a selection boundary, we can
3691          * *toggle* whether we need to invalidate.  Thus we can optimize by
3692          * *sorting* the interval endpoints.  Let's assume that we sort them
3693          * in this order:
3694          *        start <= end <= old_start <= old_end
3695          * Knuth 5.3.1 (p 183) asssures us that this can be done optimally
3696          * in 5 comparisons; ie it's impossible to do better than the
3697          * following: */
3698         ORDER_UINT(end, old_end);
3699         ORDER_UINT(start, old_start);
3700         ORDER_UINT(old_start, old_end);
3701         ORDER_UINT(start, end);
3702         /* Note that at this point 'end' and 'old_start' are not in order, but
3703          * start is definitely the min. and old_end is definitely the max. */
3704         if (end != old_start)
3705         {
3706 /*
3707  * One can also do
3708  *          ORDER_UINT32(end, old_start);
3709  *          EDIT_InvalidateText(es, start, end);
3710  *          EDIT_InvalidateText(es, old_start, old_end);
3711  * in place of the following if statement.
3712  * (That would complete the optimal five-comparison four-element sort.)
3713  */
3714             if (old_start > end )
3715             {
3716                 EDIT_InvalidateText(es, start, end);
3717                 EDIT_InvalidateText(es, old_start, old_end);
3718             }
3719             else
3720             {
3721                 EDIT_InvalidateText(es, start, old_start);
3722                 EDIT_InvalidateText(es, end, old_end);
3723             }
3724         }
3725         else EDIT_InvalidateText(es, start, old_end);
3726 }
3727
3728
3729 /*********************************************************************
3730  *
3731  *      EM_SETTABSTOPS
3732  *
3733  */
3734 static BOOL EDIT_EM_SetTabStops(EDITSTATE *es, INT count, LPINT tabs)
3735 {
3736         if (!(es->style & ES_MULTILINE))
3737                 return FALSE;
3738         HeapFree(GetProcessHeap(), 0, es->tabs);
3739         es->tabs_count = count;
3740         if (!count)
3741                 es->tabs = NULL;
3742         else {
3743                 es->tabs = HeapAlloc(GetProcessHeap(), 0, count * sizeof(INT));
3744                 memcpy(es->tabs, tabs, count * sizeof(INT));
3745         }
3746         return TRUE;
3747 }
3748
3749
3750 /*********************************************************************
3751  *
3752  *      EM_SETTABSTOPS16
3753  *
3754  */
3755 static BOOL EDIT_EM_SetTabStops16(EDITSTATE *es, INT count, LPINT16 tabs)
3756 {
3757         if (!(es->style & ES_MULTILINE))
3758                 return FALSE;
3759         HeapFree(GetProcessHeap(), 0, es->tabs);
3760         es->tabs_count = count;
3761         if (!count)
3762                 es->tabs = NULL;
3763         else {
3764                 INT i;
3765                 es->tabs = HeapAlloc(GetProcessHeap(), 0, count * sizeof(INT));
3766                 for (i = 0 ; i < count ; i++)
3767                         es->tabs[i] = *tabs++;
3768         }
3769         return TRUE;
3770 }
3771
3772
3773 /*********************************************************************
3774  *
3775  *      EM_SETWORDBREAKPROC
3776  *
3777  */
3778 static void EDIT_EM_SetWordBreakProc(EDITSTATE *es, void *wbp)
3779 {
3780         if (es->word_break_proc == wbp)
3781                 return;
3782
3783         es->word_break_proc = wbp;
3784         es->word_break_proc16 = NULL;
3785
3786         if ((es->style & ES_MULTILINE) && !(es->style & ES_AUTOHSCROLL)) {
3787                 EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
3788                 EDIT_UpdateText(es, NULL, TRUE);
3789         }
3790 }
3791
3792
3793 /*********************************************************************
3794  *
3795  *      EM_SETWORDBREAKPROC16
3796  *
3797  */
3798 static void EDIT_EM_SetWordBreakProc16(EDITSTATE *es, EDITWORDBREAKPROC16 wbp)
3799 {
3800         if (es->word_break_proc16 == wbp)
3801                 return;
3802
3803         es->word_break_proc = NULL;
3804         es->word_break_proc16 = wbp;
3805         if ((es->style & ES_MULTILINE) && !(es->style & ES_AUTOHSCROLL)) {
3806                 EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
3807                 EDIT_UpdateText(es, NULL, TRUE);
3808         }
3809 }
3810
3811
3812 /*********************************************************************
3813  *
3814  *      EM_UNDO / WM_UNDO
3815  *
3816  */
3817 static BOOL EDIT_EM_Undo(EDITSTATE *es)
3818 {
3819         INT ulength;
3820         LPWSTR utext;
3821
3822         /* As per MSDN spec, for a single-line edit control,
3823            the return value is always TRUE */
3824         if( es->style & ES_READONLY )
3825             return !(es->style & ES_MULTILINE);
3826
3827         ulength = strlenW(es->undo_text);
3828
3829         utext = HeapAlloc(GetProcessHeap(), 0, (ulength + 1) * sizeof(WCHAR));
3830
3831         strcpyW(utext, es->undo_text);
3832
3833         TRACE("before UNDO:insertion length = %d, deletion buffer = %s\n",
3834                      es->undo_insert_count, debugstr_w(utext));
3835
3836         EDIT_EM_SetSel(es, es->undo_position, es->undo_position + es->undo_insert_count, FALSE);
3837         EDIT_EM_EmptyUndoBuffer(es);
3838         EDIT_EM_ReplaceSel(es, TRUE, utext, TRUE, TRUE);
3839         EDIT_EM_SetSel(es, es->undo_position, es->undo_position + es->undo_insert_count, FALSE);
3840         /* send the notification after the selection start and end are set */
3841         EDIT_NOTIFY_PARENT(es, EN_CHANGE);
3842         EDIT_EM_ScrollCaret(es);
3843         HeapFree(GetProcessHeap(), 0, utext);
3844
3845         TRACE("after UNDO:insertion length = %d, deletion buffer = %s\n",
3846                         es->undo_insert_count, debugstr_w(es->undo_text));
3847         return TRUE;
3848 }
3849
3850
3851 /*********************************************************************
3852  *
3853  *      WM_CHAR
3854  *
3855  */
3856 static void EDIT_WM_Char(EDITSTATE *es, WCHAR c)
3857 {
3858         BOOL control;
3859
3860         control = GetKeyState(VK_CONTROL) & 0x8000;
3861
3862         switch (c) {
3863         case '\r':
3864             /* If the edit doesn't want the return and it's not a multiline edit, do nothing */
3865             if(!(es->style & ES_MULTILINE) && !(es->style & ES_WANTRETURN))
3866                 break;
3867         case '\n':
3868                 if (es->style & ES_MULTILINE) {
3869                         if (es->style & ES_READONLY) {
3870                                 EDIT_MoveHome(es, FALSE);
3871                                 EDIT_MoveDown_ML(es, FALSE);
3872                         } else {
3873                                 static const WCHAR cr_lfW[] = {'\r','\n',0};
3874                                 EDIT_EM_ReplaceSel(es, TRUE, cr_lfW, TRUE, TRUE);
3875                         }
3876                 }
3877                 break;
3878         case '\t':
3879                 if ((es->style & ES_MULTILINE) && !(es->style & ES_READONLY))
3880                 {
3881                         static const WCHAR tabW[] = {'\t',0};
3882                         EDIT_EM_ReplaceSel(es, TRUE, tabW, TRUE, TRUE);
3883                 }
3884                 break;
3885         case VK_BACK:
3886                 if (!(es->style & ES_READONLY) && !control) {
3887                         if (es->selection_start != es->selection_end)
3888                                 EDIT_WM_Clear(es);
3889                         else {
3890                                 /* delete character left of caret */
3891                                 EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
3892                                 EDIT_MoveBackward(es, TRUE);
3893                                 EDIT_WM_Clear(es);
3894                         }
3895                 }
3896                 break;
3897         case 0x03: /* ^C */
3898                 SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
3899                 break;
3900         case 0x16: /* ^V */
3901                 if (!(es->style & ES_READONLY))
3902                     SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
3903                 break;
3904         case 0x18: /* ^X */
3905                 if (!(es->style & ES_READONLY))
3906                     SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
3907                 break;
3908
3909         default:
3910                 /*If Edit control style is ES_NUMBER allow users to key in only numeric values*/
3911                 if( (es->style & ES_NUMBER) && !( c >= '0' && c <= '9') )
3912                         break;
3913                         
3914                 if (!(es->style & ES_READONLY) && (c >= ' ') && (c != 127)) {
3915                         WCHAR str[2];
3916                         str[0] = c;
3917                         str[1] = '\0';
3918                         EDIT_EM_ReplaceSel(es, TRUE, str, TRUE, TRUE);
3919                 }
3920                 break;
3921         }
3922 }
3923
3924
3925 /*********************************************************************
3926  *
3927  *      WM_COMMAND
3928  *
3929  */
3930 static void EDIT_WM_Command(EDITSTATE *es, INT code, INT id, HWND control)
3931 {
3932         if (code || control)
3933                 return;
3934
3935         switch (id) {
3936                 case EM_UNDO:
3937                         EDIT_EM_Undo(es);
3938                         break;
3939                 case WM_CUT:
3940                         EDIT_WM_Cut(es);
3941                         break;
3942                 case WM_COPY:
3943                         EDIT_WM_Copy(es);
3944                         break;
3945                 case WM_PASTE:
3946                         EDIT_WM_Paste(es);
3947                         break;
3948                 case WM_CLEAR:
3949                         EDIT_WM_Clear(es);
3950                         break;
3951                 case EM_SETSEL:
3952                         EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
3953                         EDIT_EM_ScrollCaret(es);
3954                         break;
3955                 default:
3956                         ERR("unknown menu item, please report\n");
3957                         break;
3958         }
3959 }
3960
3961
3962 /*********************************************************************
3963  *
3964  *      WM_CONTEXTMENU
3965  *
3966  *      Note: the resource files resource/sysres_??.rc cannot define a
3967  *              single popup menu.  Hence we use a (dummy) menubar
3968  *              containing the single popup menu as its first item.
3969  *
3970  *      FIXME: the message identifiers have been chosen arbitrarily,
3971  *              hence we use MF_BYPOSITION.
3972  *              We might as well use the "real" values (anybody knows ?)
3973  *              The menu definition is in resources/sysres_??.rc.
3974  *              Once these are OK, we better use MF_BYCOMMAND here
3975  *              (as we do in EDIT_WM_Command()).
3976  *
3977  */
3978 static void EDIT_WM_ContextMenu(EDITSTATE *es, INT x, INT y)
3979 {
3980         HMENU menu = LoadMenuA(user32_module, "EDITMENU");
3981         HMENU popup = GetSubMenu(menu, 0);
3982         UINT start = es->selection_start;
3983         UINT end = es->selection_end;
3984
3985         ORDER_UINT(start, end);
3986
3987         /* undo */
3988         EnableMenuItem(popup, 0, MF_BYPOSITION | (EDIT_EM_CanUndo(es) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3989         /* cut */
3990         EnableMenuItem(popup, 2, MF_BYPOSITION | ((end - start) && !(es->style & ES_PASSWORD) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3991         /* copy */
3992         EnableMenuItem(popup, 3, MF_BYPOSITION | ((end - start) && !(es->style & ES_PASSWORD) ? MF_ENABLED : MF_GRAYED));
3993         /* paste */
3994         EnableMenuItem(popup, 4, MF_BYPOSITION | (IsClipboardFormatAvailable(CF_UNICODETEXT) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3995         /* delete */
3996         EnableMenuItem(popup, 5, MF_BYPOSITION | ((end - start) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3997         /* select all */
3998         EnableMenuItem(popup, 7, MF_BYPOSITION | (start || (end != strlenW(es->text)) ? MF_ENABLED : MF_GRAYED));
3999
4000         TrackPopupMenu(popup, TPM_LEFTALIGN | TPM_RIGHTBUTTON, x, y, 0, es->hwndSelf, NULL);
4001         DestroyMenu(menu);
4002 }
4003
4004
4005 /*********************************************************************
4006  *
4007  *      WM_COPY
4008  *
4009  */
4010 static void EDIT_WM_Copy(EDITSTATE *es)
4011 {
4012         INT s = min(es->selection_start, es->selection_end);
4013         INT e = max(es->selection_start, es->selection_end);
4014         HGLOBAL hdst;
4015         LPWSTR dst;
4016         DWORD len;
4017
4018         if (e == s) return;
4019
4020         len = e - s;
4021         hdst = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, (len + 1) * sizeof(WCHAR));
4022         dst = GlobalLock(hdst);
4023         memcpy(dst, es->text + s, len * sizeof(WCHAR));
4024         dst[len] = 0; /* ensure 0 termination */
4025         TRACE("%s\n", debugstr_w(dst));
4026         GlobalUnlock(hdst);
4027         OpenClipboard(es->hwndSelf);
4028         EmptyClipboard();
4029         SetClipboardData(CF_UNICODETEXT, hdst);
4030         CloseClipboard();
4031 }
4032
4033
4034 /*********************************************************************
4035  *
4036  *      WM_CREATE
4037  *
4038  */
4039 static LRESULT EDIT_WM_Create(EDITSTATE *es, LPCWSTR name)
4040 {
4041         RECT clientRect;
4042         
4043         TRACE("%s\n", debugstr_w(name));
4044        /*
4045         *       To initialize some final structure members, we call some helper
4046         *       functions.  However, since the EDITSTATE is not consistent (i.e.
4047         *       not fully initialized), we should be very careful which
4048         *       functions can be called, and in what order.
4049         */
4050         EDIT_WM_SetFont(es, 0, FALSE);
4051         EDIT_EM_EmptyUndoBuffer(es);
4052         
4053         /* We need to calculate the format rect
4054            (applications may send EM_SETMARGINS before the control gets visible) */
4055         GetClientRect(es->hwndSelf, &clientRect);
4056         EDIT_SetRectNP(es, &clientRect);
4057
4058        if (name && *name) {
4059            EDIT_EM_ReplaceSel(es, FALSE, name, FALSE, TRUE);
4060            /* if we insert text to the editline, the text scrolls out
4061             * of the window, as the caret is placed after the insert
4062             * pos normally; thus we reset es->selection... to 0 and
4063             * update caret
4064             */
4065            es->selection_start = es->selection_end = 0;
4066            /* Adobe Photoshop does NOT like this. and MSDN says that EN_CHANGE
4067             * Messages are only to be sent when the USER does something to
4068             * change the contents. So I am removing this EN_CHANGE
4069             *
4070             * EDIT_NOTIFY_PARENT(es, EN_CHANGE);
4071             */
4072            EDIT_EM_ScrollCaret(es);
4073        }
4074        /* force scroll info update */
4075        EDIT_UpdateScrollInfo(es);
4076        /* The rule seems to return 1 here for success */
4077        /* Power Builder masked edit controls will crash  */
4078        /* if not. */
4079        /* FIXME: is that in all cases so ? */
4080        return 1;
4081 }
4082
4083
4084 /*********************************************************************
4085  *
4086  *      WM_DESTROY
4087  *
4088  */
4089 static LRESULT EDIT_WM_Destroy(EDITSTATE *es)
4090 {
4091         LINEDEF *pc, *pp;
4092
4093         if (es->hloc32W) {
4094                 while (LocalUnlock(es->hloc32W)) ;
4095                 LocalFree(es->hloc32W);
4096         }
4097         if (es->hloc32A) {
4098                 while (LocalUnlock(es->hloc32A)) ;
4099                 LocalFree(es->hloc32A);
4100         }
4101         if (es->hloc16) {
4102                 STACK16FRAME* stack16 = MapSL((SEGPTR)NtCurrentTeb()->WOW32Reserved);
4103                 HANDLE16 oldDS = stack16->ds;
4104
4105                 stack16->ds = GetWindowLongPtrW( es->hwndSelf, GWLP_HINSTANCE );
4106                 while (LocalUnlock16(es->hloc16)) ;
4107                 LocalFree16(es->hloc16);
4108                 stack16->ds = oldDS;
4109         }
4110
4111         pc = es->first_line_def;
4112         while (pc)
4113         {
4114                 pp = pc->next;
4115                 HeapFree(GetProcessHeap(), 0, pc);
4116                 pc = pp;
4117         }
4118
4119         SetWindowLongPtrW( es->hwndSelf, 0, 0 );
4120         HeapFree(GetProcessHeap(), 0, es);
4121
4122         return 0;
4123 }
4124
4125
4126 /*********************************************************************
4127  *
4128  *      WM_ERASEBKGND
4129  *
4130  */
4131 static LRESULT EDIT_WM_EraseBkGnd(EDITSTATE *es, HDC dc)
4132 {
4133     /* we do the proper erase in EDIT_WM_Paint */
4134     return -1;
4135 }
4136
4137
4138 /*********************************************************************
4139  *
4140  *      WM_GETTEXT
4141  *
4142  */
4143 static INT EDIT_WM_GetText(EDITSTATE *es, INT count, LPWSTR dst, BOOL unicode)
4144 {
4145     if(!count) return 0;
4146
4147     if(unicode)
4148     {
4149         lstrcpynW(dst, es->text, count);
4150         return strlenW(dst);
4151     }
4152     else
4153     {
4154         LPSTR textA = (LPSTR)dst;
4155         if (!WideCharToMultiByte(CP_ACP, 0, es->text, -1, textA, count, NULL, NULL))
4156             textA[count - 1] = 0; /* ensure 0 termination */
4157         return strlen(textA);
4158     }
4159 }
4160
4161 /*********************************************************************
4162  *
4163  *      WM_HSCROLL
4164  *
4165  */
4166 static LRESULT EDIT_WM_HScroll(EDITSTATE *es, INT action, INT pos)
4167 {
4168         INT dx;
4169         INT fw;
4170
4171         if (!(es->style & ES_MULTILINE))
4172                 return 0;
4173
4174         if (!(es->style & ES_AUTOHSCROLL))
4175                 return 0;
4176
4177         dx = 0;
4178         fw = es->format_rect.right - es->format_rect.left;
4179         switch (action) {
4180         case SB_LINELEFT:
4181                 TRACE("SB_LINELEFT\n");
4182                 if (es->x_offset)
4183                         dx = -es->char_width;
4184                 break;
4185         case SB_LINERIGHT:
4186                 TRACE("SB_LINERIGHT\n");
4187                 if (es->x_offset < es->text_width)
4188                         dx = es->char_width;
4189                 break;
4190         case SB_PAGELEFT:
4191                 TRACE("SB_PAGELEFT\n");
4192                 if (es->x_offset)
4193                         dx = -fw / HSCROLL_FRACTION / es->char_width * es->char_width;
4194                 break;
4195         case SB_PAGERIGHT:
4196                 TRACE("SB_PAGERIGHT\n");
4197                 if (es->x_offset < es->text_width)
4198                         dx = fw / HSCROLL_FRACTION / es->char_width * es->char_width;
4199                 break;
4200         case SB_LEFT:
4201                 TRACE("SB_LEFT\n");
4202                 if (es->x_offset)
4203                         dx = -es->x_offset;
4204                 break;
4205         case SB_RIGHT:
4206                 TRACE("SB_RIGHT\n");
4207                 if (es->x_offset < es->text_width)
4208                         dx = es->text_width - es->x_offset;
4209                 break;
4210         case SB_THUMBTRACK:
4211                 TRACE("SB_THUMBTRACK %d\n", pos);
4212                 es->flags |= EF_HSCROLL_TRACK;
4213                 if(es->style & WS_HSCROLL)
4214                     dx = pos - es->x_offset;
4215                 else
4216                 {
4217                     INT fw, new_x;
4218                     /* Sanity check */
4219                     if(pos < 0 || pos > 100) return 0;
4220                     /* Assume default scroll range 0-100 */
4221                     fw = es->format_rect.right - es->format_rect.left;
4222                     new_x = pos * (es->text_width - fw) / 100;
4223                     dx = es->text_width ? (new_x - es->x_offset) : 0;
4224                 }
4225                 break;
4226         case SB_THUMBPOSITION:
4227                 TRACE("SB_THUMBPOSITION %d\n", pos);
4228                 es->flags &= ~EF_HSCROLL_TRACK;
4229                 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_HSCROLL)
4230                     dx = pos - es->x_offset;
4231                 else
4232                 {
4233                     INT fw, new_x;
4234                     /* Sanity check */
4235                     if(pos < 0 || pos > 100) return 0;
4236                     /* Assume default scroll range 0-100 */
4237                     fw = es->format_rect.right - es->format_rect.left;
4238                     new_x = pos * (es->text_width - fw) / 100;
4239                     dx = es->text_width ? (new_x - es->x_offset) : 0;
4240                 }
4241                 if (!dx) {
4242                         /* force scroll info update */
4243                         EDIT_UpdateScrollInfo(es);
4244                         EDIT_NOTIFY_PARENT(es, EN_HSCROLL);
4245                 }
4246                 break;
4247         case SB_ENDSCROLL:
4248                 TRACE("SB_ENDSCROLL\n");
4249                 break;
4250         /*
4251          *      FIXME : the next two are undocumented !
4252          *      Are we doing the right thing ?
4253          *      At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4254          *      although it's also a regular control message.
4255          */
4256         case EM_GETTHUMB: /* this one is used by NT notepad */
4257         case EM_GETTHUMB16:
4258         {
4259                 LRESULT ret;
4260                 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_HSCROLL)
4261                     ret = GetScrollPos(es->hwndSelf, SB_HORZ);
4262                 else
4263                 {
4264                     /* Assume default scroll range 0-100 */
4265                     INT fw = es->format_rect.right - es->format_rect.left;
4266                     ret = es->text_width ? es->x_offset * 100 / (es->text_width - fw) : 0;
4267                 }
4268                 TRACE("EM_GETTHUMB: returning %ld\n", ret);
4269                 return ret;
4270         }
4271         case EM_LINESCROLL16:
4272                 TRACE("EM_LINESCROLL16\n");
4273                 dx = pos;
4274                 break;
4275
4276         default:
4277                 ERR("undocumented WM_HSCROLL action %d (0x%04x), please report\n",
4278                     action, action);
4279                 return 0;
4280         }
4281         if (dx)
4282         {
4283             INT fw = es->format_rect.right - es->format_rect.left;
4284             /* check if we are going to move too far */
4285             if(es->x_offset + dx + fw > es->text_width)
4286                 dx = es->text_width - fw - es->x_offset;
4287             if(dx)
4288                 EDIT_EM_LineScroll_internal(es, dx, 0);
4289         }
4290         return 0;
4291 }
4292
4293
4294 /*********************************************************************
4295  *
4296  *      EDIT_CheckCombo
4297  *
4298  */
4299 static BOOL EDIT_CheckCombo(EDITSTATE *es, UINT msg, INT key)
4300 {
4301    HWND hLBox = es->hwndListBox;
4302    HWND hCombo;
4303    BOOL bDropped;
4304    int  nEUI;
4305
4306    if (!hLBox)
4307       return FALSE;
4308
4309    hCombo   = GetParent(es->hwndSelf);
4310    bDropped = TRUE;
4311    nEUI     = 0;
4312
4313    TRACE_(combo)("[%p]: handling msg %x (%x)\n", es->hwndSelf, msg, key);
4314
4315    if (key == VK_UP || key == VK_DOWN)
4316    {
4317       if (SendMessageW(hCombo, CB_GETEXTENDEDUI, 0, 0))
4318          nEUI = 1;
4319
4320       if (msg == WM_KEYDOWN || nEUI)
4321           bDropped = (BOOL)SendMessageW(hCombo, CB_GETDROPPEDSTATE, 0, 0);
4322    }
4323
4324    switch (msg)
4325    {
4326       case WM_KEYDOWN:
4327          if (!bDropped && nEUI && (key == VK_UP || key == VK_DOWN))
4328          {
4329             /* make sure ComboLBox pops up */
4330             SendMessageW(hCombo, CB_SETEXTENDEDUI, FALSE, 0);
4331             key = VK_F4;
4332             nEUI = 2;
4333          }
4334
4335          SendMessageW(hLBox, WM_KEYDOWN, (WPARAM)key, 0);
4336          break;
4337
4338       case WM_SYSKEYDOWN: /* Handle Alt+up/down arrows */
4339          if (nEUI)
4340             SendMessageW(hCombo, CB_SHOWDROPDOWN, bDropped ? FALSE : TRUE, 0);
4341          else
4342             SendMessageW(hLBox, WM_KEYDOWN, (WPARAM)VK_F4, 0);
4343          break;
4344    }
4345
4346    if(nEUI == 2)
4347       SendMessageW(hCombo, CB_SETEXTENDEDUI, TRUE, 0);
4348
4349    return TRUE;
4350 }
4351
4352
4353 /*********************************************************************
4354  *
4355  *      WM_KEYDOWN
4356  *
4357  *      Handling of special keys that don't produce a WM_CHAR
4358  *      (i.e. non-printable keys) & Backspace & Delete
4359  *
4360  */
4361 static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
4362 {
4363         BOOL shift;
4364         BOOL control;
4365
4366         if (GetKeyState(VK_MENU) & 0x8000)
4367                 return 0;
4368
4369         shift = GetKeyState(VK_SHIFT) & 0x8000;
4370         control = GetKeyState(VK_CONTROL) & 0x8000;
4371
4372         switch (key) {
4373         case VK_F4:
4374         case VK_UP:
4375                 if (EDIT_CheckCombo(es, WM_KEYDOWN, key) || key == VK_F4)
4376                         break;
4377
4378                 /* fall through */
4379         case VK_LEFT:
4380                 if ((es->style & ES_MULTILINE) && (key == VK_UP))
4381                         EDIT_MoveUp_ML(es, shift);
4382                 else
4383                         if (control)
4384                                 EDIT_MoveWordBackward(es, shift);
4385                         else
4386                                 EDIT_MoveBackward(es, shift);
4387                 break;
4388         case VK_DOWN:
4389                 if (EDIT_CheckCombo(es, WM_KEYDOWN, key))
4390                         break;
4391                 /* fall through */
4392         case VK_RIGHT:
4393                 if ((es->style & ES_MULTILINE) && (key == VK_DOWN))
4394                         EDIT_MoveDown_ML(es, shift);
4395                 else if (control)
4396                         EDIT_MoveWordForward(es, shift);
4397                 else
4398                         EDIT_MoveForward(es, shift);
4399                 break;
4400         case VK_HOME:
4401                 EDIT_MoveHome(es, shift);
4402                 break;
4403         case VK_END:
4404                 EDIT_MoveEnd(es, shift);
4405                 break;
4406         case VK_PRIOR:
4407                 if (es->style & ES_MULTILINE)
4408                         EDIT_MovePageUp_ML(es, shift);
4409                 else
4410                         EDIT_CheckCombo(es, WM_KEYDOWN, key);
4411                 break;
4412         case VK_NEXT:
4413                 if (es->style & ES_MULTILINE)
4414                         EDIT_MovePageDown_ML(es, shift);
4415                 else
4416                         EDIT_CheckCombo(es, WM_KEYDOWN, key);
4417                 break;
4418         case VK_DELETE:
4419                 if (!(es->style & ES_READONLY) && !(shift && control)) {
4420                         if (es->selection_start != es->selection_end) {
4421                                 if (shift)
4422                                         EDIT_WM_Cut(es);
4423                                 else
4424                                         EDIT_WM_Clear(es);
4425                         } else {
4426                                 if (shift) {
4427                                         /* delete character left of caret */
4428                                         EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
4429                                         EDIT_MoveBackward(es, TRUE);
4430                                         EDIT_WM_Clear(es);
4431                                 } else if (control) {
4432                                         /* delete to end of line */
4433                                         EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
4434                                         EDIT_MoveEnd(es, TRUE);
4435                                         EDIT_WM_Clear(es);
4436                                 } else {
4437                                         /* delete character right of caret */
4438                                         EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
4439                                         EDIT_MoveForward(es, TRUE);
4440                                         EDIT_WM_Clear(es);
4441                                 }
4442                         }
4443                 }
4444                 break;
4445         case VK_INSERT:
4446                 if (shift) {
4447                         if (!(es->style & ES_READONLY))
4448                                 EDIT_WM_Paste(es);
4449                 } else if (control)
4450                         EDIT_WM_Copy(es);
4451                 break;
4452         case VK_RETURN:
4453             /* If the edit doesn't want the return send a message to the default object */
4454             if(!(es->style & ES_WANTRETURN))
4455             {
4456                 HWND hwndParent = GetParent(es->hwndSelf);
4457                 DWORD dw = SendMessageW( hwndParent, DM_GETDEFID, 0, 0 );
4458                 if (HIWORD(dw) == DC_HASDEFID)
4459                 {
4460                     SendMessageW( hwndParent, WM_COMMAND,
4461                                   MAKEWPARAM( LOWORD(dw), BN_CLICKED ),
4462                               (LPARAM)GetDlgItem( hwndParent, LOWORD(dw) ) );
4463                 }
4464             }
4465             break;
4466         }
4467         return 0;
4468 }
4469
4470
4471 /*********************************************************************
4472  *
4473  *      WM_KILLFOCUS
4474  *
4475  */
4476 static LRESULT EDIT_WM_KillFocus(EDITSTATE *es)
4477 {
4478         es->flags &= ~EF_FOCUSED;
4479         DestroyCaret();
4480         if(!(es->style & ES_NOHIDESEL))
4481                 EDIT_InvalidateText(es, es->selection_start, es->selection_end);
4482         EDIT_NOTIFY_PARENT(es, EN_KILLFOCUS);
4483         return 0;
4484 }
4485
4486
4487 /*********************************************************************
4488  *
4489  *      WM_LBUTTONDBLCLK
4490  *
4491  *      The caret position has been set on the WM_LBUTTONDOWN message
4492  *
4493  */
4494 static LRESULT EDIT_WM_LButtonDblClk(EDITSTATE *es)
4495 {
4496         INT s;
4497         INT e = es->selection_end;
4498         INT l;
4499         INT li;
4500         INT ll;
4501
4502         if (!(es->flags & EF_FOCUSED))
4503                 return 0;
4504
4505         l = EDIT_EM_LineFromChar(es, e);
4506         li = EDIT_EM_LineIndex(es, l);
4507         ll = EDIT_EM_LineLength(es, e);
4508         s = li + EDIT_CallWordBreakProc(es, li, e - li, ll, WB_LEFT);
4509         e = li + EDIT_CallWordBreakProc(es, li, e - li, ll, WB_RIGHT);
4510         EDIT_EM_SetSel(es, s, e, FALSE);
4511         EDIT_EM_ScrollCaret(es);
4512         return 0;
4513 }
4514
4515
4516 /*********************************************************************
4517  *
4518  *      WM_LBUTTONDOWN
4519  *
4520  */
4521 static LRESULT EDIT_WM_LButtonDown(EDITSTATE *es, DWORD keys, INT x, INT y)
4522 {
4523         INT e;
4524         BOOL after_wrap;
4525
4526         SetFocus(es->hwndSelf);
4527         if (!(es->flags & EF_FOCUSED))
4528                 return 0;
4529
4530         es->bCaptureState = TRUE;
4531         SetCapture(es->hwndSelf);
4532         EDIT_ConfinePoint(es, &x, &y);
4533         e = EDIT_CharFromPos(es, x, y, &after_wrap);
4534         EDIT_EM_SetSel(es, (keys & MK_SHIFT) ? es->selection_start : e, e, after_wrap);
4535         EDIT_EM_ScrollCaret(es);
4536         es->region_posx = es->region_posy = 0;
4537         SetTimer(es->hwndSelf, 0, 100, NULL);
4538         return 0;
4539 }
4540
4541
4542 /*********************************************************************
4543  *
4544  *      WM_LBUTTONUP
4545  *
4546  */
4547 static LRESULT EDIT_WM_LButtonUp(EDITSTATE *es)
4548 {
4549         if (es->bCaptureState) {
4550                 KillTimer(es->hwndSelf, 0);
4551                 if (GetCapture() == es->hwndSelf) ReleaseCapture();
4552         }
4553         es->bCaptureState = FALSE;
4554         return 0;
4555 }
4556
4557
4558 /*********************************************************************
4559  *
4560  *      WM_MBUTTONDOWN
4561  *
4562  */
4563 static LRESULT EDIT_WM_MButtonDown(EDITSTATE *es)
4564 {
4565     SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
4566     return 0;
4567 }
4568
4569
4570 /*********************************************************************
4571  *
4572  *      WM_MOUSEMOVE
4573  *
4574  */
4575 static LRESULT EDIT_WM_MouseMove(EDITSTATE *es, INT x, INT y)
4576 {
4577         INT e;
4578         BOOL after_wrap;
4579         INT prex, prey;
4580
4581         /* If the mouse has been captured by process other than the edit control itself,
4582          * the windows edit controls will not select the strings with mouse move.
4583          */
4584         if (!es->bCaptureState || GetCapture() != es->hwndSelf)
4585                 return 0;
4586
4587         /*
4588          *      FIXME: gotta do some scrolling if outside client
4589          *              area.  Maybe reset the timer ?
4590          */
4591         prex = x; prey = y;
4592         EDIT_ConfinePoint(es, &x, &y);
4593         es->region_posx = (prex < x) ? -1 : ((prex > x) ? 1 : 0);
4594         es->region_posy = (prey < y) ? -1 : ((prey > y) ? 1 : 0);
4595         e = EDIT_CharFromPos(es, x, y, &after_wrap);
4596         EDIT_EM_SetSel(es, es->selection_start, e, after_wrap);
4597         EDIT_SetCaretPos(es,es->selection_end,es->flags & EF_AFTER_WRAP);
4598         return 0;
4599 }
4600
4601
4602 /*********************************************************************
4603  *
4604  *      WM_NCCREATE
4605  *
4606  * See also EDIT_WM_StyleChanged
4607  */
4608 static LRESULT EDIT_WM_NCCreate(HWND hwnd, LPCREATESTRUCTW lpcs, BOOL unicode)
4609 {
4610         EDITSTATE *es;
4611         UINT alloc_size;
4612
4613         TRACE("Creating %s edit control, style = %08lx\n",
4614                 unicode ? "Unicode" : "ANSI", lpcs->style);
4615
4616         if (!(es = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*es))))
4617                 return FALSE;
4618         SetWindowLongPtrW( hwnd, 0, (LONG_PTR)es );
4619
4620        /*
4621         *      Note: since the EDITSTATE has not been fully initialized yet,
4622         *            we can't use any API calls that may send
4623         *            WM_XXX messages before WM_NCCREATE is completed.
4624         */
4625
4626         es->is_unicode = unicode;
4627         es->style = lpcs->style;
4628
4629         es->bEnableState = !(es->style & WS_DISABLED);
4630
4631         es->hwndSelf = hwnd;
4632         /* Save parent, which will be notified by EN_* messages */
4633         es->hwndParent = lpcs->hwndParent;
4634
4635         if (es->style & ES_COMBO)
4636            es->hwndListBox = GetDlgItem(es->hwndParent, ID_CB_LISTBOX);
4637
4638         /* Number overrides lowercase overrides uppercase (at least it
4639          * does in Win95).  However I'll bet that ES_NUMBER would be
4640          * invalid under Win 3.1.
4641          */
4642         if (es->style & ES_NUMBER) {
4643                 ; /* do not override the ES_NUMBER */
4644         }  else if (es->style & ES_LOWERCASE) {
4645                 es->style &= ~ES_UPPERCASE;
4646         }
4647         if (es->style & ES_MULTILINE) {
4648                 es->buffer_limit = BUFLIMIT_MULTI;
4649                 if (es->style & WS_VSCROLL)
4650                         es->style |= ES_AUTOVSCROLL;
4651                 if (es->style & WS_HSCROLL)
4652                         es->style |= ES_AUTOHSCROLL;
4653                 es->style &= ~ES_PASSWORD;
4654                 if ((es->style & ES_CENTER) || (es->style & ES_RIGHT)) {
4655                         /* Confirmed - RIGHT overrides CENTER */
4656                         if (es->style & ES_RIGHT)
4657                                 es->style &= ~ES_CENTER;
4658                         es->style &= ~WS_HSCROLL;
4659                         es->style &= ~ES_AUTOHSCROLL;
4660                 }
4661         } else {
4662                 es->buffer_limit = BUFLIMIT_SINGLE;
4663                 if ((es->style & ES_RIGHT) && (es->style & ES_CENTER))
4664                         es->style &= ~ES_CENTER;
4665                 es->style &= ~WS_HSCROLL;
4666                 es->style &= ~WS_VSCROLL;
4667                 if (es->style & ES_PASSWORD)
4668                         es->password_char = '*';
4669         }
4670
4671         alloc_size = ROUND_TO_GROW((es->buffer_size + 1) * sizeof(WCHAR));
4672         if(!(es->hloc32W = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, alloc_size)))
4673             return FALSE;
4674         es->buffer_size = LocalSize(es->hloc32W)/sizeof(WCHAR) - 1;
4675
4676         if (!(es->undo_text = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (es->buffer_size + 1) * sizeof(WCHAR))))
4677                 return FALSE;
4678         es->undo_buffer_size = es->buffer_size;
4679
4680         if (es->style & ES_MULTILINE)
4681                 if (!(es->first_line_def = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(LINEDEF))))
4682                         return FALSE;
4683         es->line_count = 1;
4684
4685         /*
4686          * In Win95 look and feel, the WS_BORDER style is replaced by the
4687          * WS_EX_CLIENTEDGE style for the edit control. This gives the edit
4688          * control a nonclient area so we don't need to draw the border.
4689          * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
4690          * a nonclient area and we should handle painting the border ourselves.
4691          *
4692          * When making modifications please ensure that the code still works 
4693          * for edit controls created directly with style 0x50800000, exStyle 0
4694          * (which should have a single pixel border)
4695          */
4696         if (lpcs->dwExStyle & WS_EX_CLIENTEDGE)
4697                 es->style &= ~WS_BORDER;
4698         else if (es->style & WS_BORDER)
4699                 SetWindowLongW(hwnd, GWL_STYLE, es->style & ~WS_BORDER);
4700
4701         return TRUE;
4702 }
4703
4704 /*********************************************************************
4705  *
4706  *      WM_PAINT
4707  *
4708  */
4709 static void EDIT_WM_Paint(EDITSTATE *es, HDC hdc)
4710 {
4711         PAINTSTRUCT ps;
4712         INT i;
4713         HDC dc;
4714         HFONT old_font = 0;
4715         RECT rc;
4716         RECT rcClient;
4717         RECT rcLine;
4718         RECT rcRgn;
4719         HBRUSH brush;
4720         HBRUSH old_brush;
4721         INT bw, bh;
4722         BOOL rev = es->bEnableState &&
4723                                 ((es->flags & EF_FOCUSED) ||
4724                                         (es->style & ES_NOHIDESEL));
4725         dc = hdc ? hdc : BeginPaint(es->hwndSelf, &ps);
4726
4727         GetClientRect(es->hwndSelf, &rcClient);
4728
4729         /* get the background brush */
4730         if (!(brush = EDIT_NotifyCtlColor(es, dc)))
4731                 brush = (HBRUSH)GetStockObject(WHITE_BRUSH);
4732
4733         /* paint the border and the background */
4734         IntersectClipRect(dc, rcClient.left, rcClient.top, rcClient.right, rcClient.bottom);
4735         
4736         if(es->style & WS_BORDER) {
4737                 bw = GetSystemMetrics(SM_CXBORDER);
4738                 bh = GetSystemMetrics(SM_CYBORDER);
4739                 rc = rcClient;
4740                 if(es->style & ES_MULTILINE) {
4741                         if(es->style & WS_HSCROLL) rc.bottom+=bh;
4742                         if(es->style & WS_VSCROLL) rc.right+=bw;
4743                 }
4744                 
4745                 /* Draw the frame. Same code as in nonclient.c */
4746                 old_brush = SelectObject(dc, GetSysColorBrush(COLOR_WINDOWFRAME));
4747                 PatBlt(dc, rc.left, rc.top, rc.right - rc.left, bh, PATCOPY);
4748                 PatBlt(dc, rc.left, rc.top, bw, rc.bottom - rc.top, PATCOPY);
4749                 PatBlt(dc, rc.left, rc.bottom - 1, rc.right - rc.left, -bw, PATCOPY);
4750                 PatBlt(dc, rc.right - 1, rc.top, -bw, rc.bottom - rc.top, PATCOPY);
4751                 SelectObject(dc, old_brush);
4752                 
4753                 /* Keep the border clean */
4754                 IntersectClipRect(dc, rc.left+bw, rc.top+bh,
4755                     max(rc.right-bw, rc.left+bw), max(rc.bottom-bh, rc.top+bh));
4756         }
4757         
4758         GetClipBox(dc, &rc);
4759         FillRect(dc, &rc, brush);
4760
4761         IntersectClipRect(dc, es->format_rect.left,
4762                                 es->format_rect.top,
4763                                 es->format_rect.right,
4764                                 es->format_rect.bottom);
4765         if (es->style & ES_MULTILINE) {
4766                 rc = rcClient;
4767                 IntersectClipRect(dc, rc.left, rc.top, rc.right, rc.bottom);
4768         }
4769         if (es->font)
4770                 old_font = SelectObject(dc, es->font);
4771         EDIT_NotifyCtlColor(es, dc);
4772
4773         if (!es->bEnableState)
4774                 SetTextColor(dc, GetSysColor(COLOR_GRAYTEXT));
4775         GetClipBox(dc, &rcRgn);
4776         if (es->style & ES_MULTILINE) {
4777                 INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
4778                 for (i = es->y_offset ; i <= min(es->y_offset + vlc, es->y_offset + es->line_count - 1) ; i++) {
4779                         EDIT_GetLineRect(es, i, 0, -1, &rcLine);
4780                         if (IntersectRect(&rc, &rcRgn, &rcLine))
4781                                 EDIT_PaintLine(es, dc, i, rev);
4782                 }
4783         } else {
4784                 EDIT_GetLineRect(es, 0, 0, -1, &rcLine);
4785                 if (IntersectRect(&rc, &rcRgn, &rcLine))
4786                         EDIT_PaintLine(es, dc, 0, rev);
4787         }
4788         if (es->font)
4789                 SelectObject(dc, old_font);
4790
4791         if (!hdc)
4792             EndPaint(es->hwndSelf, &ps);
4793 }
4794
4795
4796 /*********************************************************************
4797  *
4798  *      WM_PASTE
4799  *
4800  */
4801 static void EDIT_WM_Paste(EDITSTATE *es)
4802 {
4803         HGLOBAL hsrc;
4804         LPWSTR src;
4805
4806         /* Protect read-only edit control from modification */
4807         if(es->style & ES_READONLY)
4808             return;
4809
4810         OpenClipboard(es->hwndSelf);
4811         if ((hsrc = GetClipboardData(CF_UNICODETEXT))) {
4812                 src = (LPWSTR)GlobalLock(hsrc);
4813                 EDIT_EM_ReplaceSel(es, TRUE, src, TRUE, TRUE);
4814                 GlobalUnlock(hsrc);
4815         }
4816         CloseClipboard();
4817 }
4818
4819
4820 /*********************************************************************
4821  *
4822  *      WM_SETFOCUS
4823  *
4824  */
4825 static void EDIT_WM_SetFocus(EDITSTATE *es)
4826 {
4827         es->flags |= EF_FOCUSED;
4828         CreateCaret(es->hwndSelf, 0, 2, es->line_height);
4829         EDIT_SetCaretPos(es, es->selection_end,
4830                          es->flags & EF_AFTER_WRAP);
4831         if(!(es->style & ES_NOHIDESEL))
4832                 EDIT_InvalidateText(es, es->selection_start, es->selection_end);
4833         ShowCaret(es->hwndSelf);
4834         EDIT_NOTIFY_PARENT(es, EN_SETFOCUS);
4835 }
4836
4837
4838 /*********************************************************************
4839  *
4840  *      WM_SETFONT
4841  *
4842  * With Win95 look the margins are set to default font value unless
4843  * the system font (font == 0) is being set, in which case they are left
4844  * unchanged.
4845  *
4846  */
4847 static void EDIT_WM_SetFont(EDITSTATE *es, HFONT font, BOOL redraw)
4848 {
4849         TEXTMETRICW tm;
4850         HDC dc;
4851         HFONT old_font = 0;
4852         RECT clientRect;
4853
4854         es->font = font;
4855         dc = GetDC(es->hwndSelf);
4856         if (font)
4857                 old_font = SelectObject(dc, font);
4858         GetTextMetricsW(dc, &tm);
4859         es->line_height = tm.tmHeight;
4860         es->char_width = tm.tmAveCharWidth;
4861         if (font)
4862                 SelectObject(dc, old_font);
4863         ReleaseDC(es->hwndSelf, dc);
4864         
4865         /* Reset the format rect and the margins */
4866         GetClientRect(es->hwndSelf, &clientRect);
4867         EDIT_SetRectNP(es, &clientRect);
4868         EDIT_EM_SetMargins(es, EC_LEFTMARGIN | EC_RIGHTMARGIN,
4869                            EC_USEFONTINFO, EC_USEFONTINFO, FALSE);
4870
4871         if (es->style & ES_MULTILINE)
4872                 EDIT_BuildLineDefs_ML(es, 0, strlenW(es->text), 0, NULL);
4873         else
4874             EDIT_CalcLineWidth_SL(es);
4875
4876         if (redraw)
4877                 EDIT_UpdateText(es, NULL, TRUE);
4878         if (es->flags & EF_FOCUSED) {
4879                 DestroyCaret();
4880                 CreateCaret(es->hwndSelf, 0, 2, es->line_height);
4881                 EDIT_SetCaretPos(es, es->selection_end,
4882                                  es->flags & EF_AFTER_WRAP);
4883                 ShowCaret(es->hwndSelf);
4884         }
4885 }
4886
4887
4888 /*********************************************************************
4889  *
4890  *      WM_SETTEXT
4891  *
4892  * NOTES
4893  *  For multiline controls (ES_MULTILINE), reception of WM_SETTEXT triggers:
4894  *  The modified flag is reset. No notifications are sent.
4895  *
4896  *  For single-line controls, reception of WM_SETTEXT triggers:
4897  *  The modified flag is reset. EN_UPDATE and EN_CHANGE notifications are sent.
4898  *
4899  */
4900 static void EDIT_WM_SetText(EDITSTATE *es, LPCWSTR text, BOOL unicode)
4901 {
4902     if (!unicode && text)
4903     {
4904         LPCSTR textA = (LPCSTR)text;
4905         INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
4906         LPWSTR textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR));
4907         if (textW)
4908             MultiByteToWideChar(CP_ACP, 0, textA, -1, textW, countW);
4909         text = textW;
4910     }
4911
4912     if (es->flags & EF_UPDATE)
4913         /* fixed this bug once; complain if we see it about to happen again. */
4914         ERR("SetSel may generate UPDATE message whose handler may reset "
4915             "selection.\n");
4916
4917     EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
4918     if (text) 
4919     {
4920         TRACE("%s\n", debugstr_w(text));
4921         EDIT_EM_ReplaceSel(es, FALSE, text, FALSE, FALSE);
4922         if(!unicode)
4923             HeapFree(GetProcessHeap(), 0, (LPWSTR)text);
4924     } 
4925     else 
4926     {
4927         static const WCHAR empty_stringW[] = {0};
4928         TRACE("<NULL>\n");
4929         EDIT_EM_ReplaceSel(es, FALSE, empty_stringW, FALSE, FALSE);
4930     }
4931     es->x_offset = 0;
4932     es->flags &= ~EF_MODIFIED;
4933     EDIT_EM_SetSel(es, 0, 0, FALSE);
4934
4935     /* Send the notification after the selection start and end have been set
4936      * edit control doesn't send notification on WM_SETTEXT
4937      * if it is multiline, or it is part of combobox
4938      */
4939     if( !((es->style & ES_MULTILINE) || es->hwndListBox))
4940     {
4941         EDIT_NOTIFY_PARENT(es, EN_UPDATE);
4942         EDIT_NOTIFY_PARENT(es, EN_CHANGE);
4943     }
4944     EDIT_EM_ScrollCaret(es);
4945     EDIT_UpdateScrollInfo(es);    
4946 }
4947
4948
4949 /*********************************************************************
4950  *
4951  *      WM_SIZE
4952  *
4953  */
4954 static void EDIT_WM_Size(EDITSTATE *es, UINT action, INT width, INT height)
4955 {
4956         if ((action == SIZE_MAXIMIZED) || (action == SIZE_RESTORED)) {
4957                 RECT rc;
4958                 TRACE("width = %d, height = %d\n", width, height);
4959                 SetRect(&rc, 0, 0, width, height);
4960                 EDIT_SetRectNP(es, &rc);
4961                 EDIT_UpdateText(es, NULL, TRUE);
4962         }
4963 }
4964
4965
4966 /*********************************************************************
4967  *
4968  *      WM_STYLECHANGED
4969  *
4970  * This message is sent by SetWindowLong on having changed either the Style
4971  * or the extended style.
4972  *
4973  * We ensure that the window's version of the styles and the EDITSTATE's agree.
4974  *
4975  * See also EDIT_WM_NCCreate
4976  *
4977  * It appears that the Windows version of the edit control allows the style
4978  * (as retrieved by GetWindowLong) to be any value and maintains an internal
4979  * style variable which will generally be different.  In this function we
4980  * update the internal style based on what changed in the externally visible
4981  * style.
4982  *
4983  * Much of this content as based upon the MSDN, especially:
4984  *  Platform SDK Documentation -> User Interface Services ->
4985  *      Windows User Interface -> Edit Controls -> Edit Control Reference ->
4986  *      Edit Control Styles
4987  */
4988 static LRESULT  EDIT_WM_StyleChanged ( EDITSTATE *es, WPARAM which, const STYLESTRUCT *style)
4989 {
4990         if (GWL_STYLE == which) {
4991                 DWORD style_change_mask;
4992                 DWORD new_style;
4993                 /* Only a subset of changes can be applied after the control
4994                  * has been created.
4995                  */
4996                 style_change_mask = ES_UPPERCASE | ES_LOWERCASE |
4997                                     ES_NUMBER;
4998                 if (es->style & ES_MULTILINE)
4999                         style_change_mask |= ES_WANTRETURN;
5000
5001                 new_style = style->styleNew & style_change_mask;
5002
5003                 /* Number overrides lowercase overrides uppercase (at least it
5004                  * does in Win95).  However I'll bet that ES_NUMBER would be
5005                  * invalid under Win 3.1.
5006                  */
5007                 if (new_style & ES_NUMBER) {
5008                         ; /* do not override the ES_NUMBER */
5009                 }  else if (new_style & ES_LOWERCASE) {
5010                         new_style &= ~ES_UPPERCASE;
5011                 }
5012
5013                 es->style = (es->style & ~style_change_mask) | new_style;
5014         } else if (GWL_EXSTYLE == which) {
5015                 ; /* FIXME - what is needed here */
5016         } else {
5017                 WARN ("Invalid style change %d\n",which);
5018         }
5019
5020         return 0;
5021 }
5022
5023 /*********************************************************************
5024  *
5025  *      WM_SYSKEYDOWN
5026  *
5027  */
5028 static LRESULT EDIT_WM_SysKeyDown(EDITSTATE *es, INT key, DWORD key_data)
5029 {
5030         if ((key == VK_BACK) && (key_data & 0x2000)) {
5031                 if (EDIT_EM_CanUndo(es))
5032                         EDIT_EM_Undo(es);
5033                 return 0;
5034         } else if (key == VK_UP || key == VK_DOWN) {
5035                 if (EDIT_CheckCombo(es, WM_SYSKEYDOWN, key))
5036                         return 0;
5037         }
5038         return DefWindowProcW(es->hwndSelf, WM_SYSKEYDOWN, (WPARAM)key, (LPARAM)key_data);
5039 }
5040
5041
5042 /*********************************************************************
5043  *
5044  *      WM_TIMER
5045  *
5046  */
5047 static void EDIT_WM_Timer(EDITSTATE *es)
5048 {
5049         if (es->region_posx < 0) {
5050                 EDIT_MoveBackward(es, TRUE);
5051         } else if (es->region_posx > 0) {
5052                 EDIT_MoveForward(es, TRUE);
5053         }
5054 /*
5055  *      FIXME: gotta do some vertical scrolling here, like
5056  *              EDIT_EM_LineScroll(hwnd, 0, 1);
5057  */
5058 }
5059
5060 /*********************************************************************
5061  *
5062  *      WM_VSCROLL
5063  *
5064  */
5065 static LRESULT EDIT_WM_VScroll(EDITSTATE *es, INT action, INT pos)
5066 {
5067         INT dy;
5068
5069         if (!(es->style & ES_MULTILINE))
5070                 return 0;
5071
5072         if (!(es->style & ES_AUTOVSCROLL))
5073                 return 0;
5074
5075         dy = 0;
5076         switch (action) {
5077         case SB_LINEUP:
5078         case SB_LINEDOWN:
5079         case SB_PAGEUP:
5080         case SB_PAGEDOWN:
5081                 TRACE("action %d (%s)\n", action, (action == SB_LINEUP ? "SB_LINEUP" :
5082                                                    (action == SB_LINEDOWN ? "SB_LINEDOWN" :
5083                                                     (action == SB_PAGEUP ? "SB_PAGEUP" :
5084                                                      "SB_PAGEDOWN"))));
5085                 EDIT_EM_Scroll(es, action);
5086                 return 0;
5087         case SB_TOP:
5088                 TRACE("SB_TOP\n");
5089                 dy = -es->y_offset;
5090                 break;
5091         case SB_BOTTOM:
5092                 TRACE("SB_BOTTOM\n");
5093                 dy = es->line_count - 1 - es->y_offset;
5094                 break;
5095         case SB_THUMBTRACK:
5096                 TRACE("SB_THUMBTRACK %d\n", pos);
5097                 es->flags |= EF_VSCROLL_TRACK;
5098                 if(es->style & WS_VSCROLL)
5099                     dy = pos - es->y_offset;
5100                 else
5101                 {
5102                     /* Assume default scroll range 0-100 */
5103                     INT vlc, new_y;
5104                     /* Sanity check */
5105                     if(pos < 0 || pos > 100) return 0;
5106                     vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
5107                     new_y = pos * (es->line_count - vlc) / 100;
5108                     dy = es->line_count ? (new_y - es->y_offset) : 0;
5109                     TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
5110                             es->line_count, es->y_offset, pos, dy);
5111                 }
5112                 break;
5113         case SB_THUMBPOSITION:
5114                 TRACE("SB_THUMBPOSITION %d\n", pos);
5115                 es->flags &= ~EF_VSCROLL_TRACK;
5116                 if(es->style & WS_VSCROLL)
5117                     dy = pos - es->y_offset;
5118                 else
5119                 {
5120                     /* Assume default scroll range 0-100 */
5121                     INT vlc, new_y;
5122                     /* Sanity check */
5123                     if(pos < 0 || pos > 100) return 0;
5124                     vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
5125                     new_y = pos * (es->line_count - vlc) / 100;
5126                     dy = es->line_count ? (new_y - es->y_offset) : 0;
5127                     TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
5128                             es->line_count, es->y_offset, pos, dy);
5129                 }
5130                 if (!dy)
5131                 {
5132                         /* force scroll info update */
5133                         EDIT_UpdateScrollInfo(es);
5134                         EDIT_NOTIFY_PARENT(es, EN_VSCROLL);
5135                 }
5136                 break;
5137         case SB_ENDSCROLL:
5138                 TRACE("SB_ENDSCROLL\n");
5139                 break;
5140         /*
5141          *      FIXME : the next two are undocumented !
5142          *      Are we doing the right thing ?
5143          *      At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
5144          *      although it's also a regular control message.
5145          */
5146         case EM_GETTHUMB: /* this one is used by NT notepad */
5147         case EM_GETTHUMB16:
5148         {
5149                 LRESULT ret;
5150                 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_VSCROLL)
5151                     ret = GetScrollPos(es->hwndSelf, SB_VERT);
5152                 else
5153                 {
5154                     /* Assume default scroll range 0-100 */
5155                     INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
5156                     ret = es->line_count ? es->y_offset * 100 / (es->line_count - vlc) : 0;
5157                 }
5158                 TRACE("EM_GETTHUMB: returning %ld\n", ret);
5159                 return ret;
5160         }
5161         case EM_LINESCROLL16:
5162                 TRACE("EM_LINESCROLL16 %d\n", pos);
5163                 dy = pos;
5164                 break;
5165
5166         default:
5167                 ERR("undocumented WM_VSCROLL action %d (0x%04x), please report\n",
5168                     action, action);
5169                 return 0;
5170         }
5171         if (dy)
5172                 EDIT_EM_LineScroll(es, 0, dy);
5173         return 0;
5174 }
5175
5176 /*********************************************************************
5177  *
5178  *      EDIT_UpdateText
5179  *
5180  */
5181 static void EDIT_UpdateTextRegion(EDITSTATE *es, HRGN hrgn, BOOL bErase)
5182 {
5183     if (es->flags & EF_UPDATE) {
5184         es->flags &= ~EF_UPDATE;
5185         EDIT_NOTIFY_PARENT(es, EN_UPDATE);
5186     }
5187     InvalidateRgn(es->hwndSelf, hrgn, bErase);
5188 }
5189
5190
5191 /*********************************************************************
5192  *
5193  *      EDIT_UpdateText
5194  *
5195  */
5196 static void EDIT_UpdateText(EDITSTATE *es, LPRECT rc, BOOL bErase)
5197 {
5198     if (es->flags & EF_UPDATE) {
5199         es->flags &= ~EF_UPDATE;
5200         EDIT_NOTIFY_PARENT(es, EN_UPDATE);
5201     }
5202     InvalidateRect(es->hwndSelf, rc, bErase);
5203 }