mpr: Implement WNetClearConnections().
[wine.git] / dlls / user32 / edit.c
blob48c65eaec36332b7b39d1be941a17f5b4b5d1622
1 /*
2 * Edit control
4 * Copyright David W. Metcalfe, 1994
5 * Copyright William Magro, 1995, 1996
6 * Copyright Frans van Dorsselaer, 1996, 1997
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * TODO:
24 * - EM_GETIMESTATUS, EM_SETIMESTATUS
25 * - EN_ALIGN_LTR_EC
26 * - EN_ALIGN_RTL_EC
27 * - ES_OEMCONVERT
31 #include "config.h"
33 #include <stdarg.h>
34 #include <string.h>
35 #include <stdlib.h>
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winnt.h"
40 #include "win.h"
41 #include "imm.h"
42 #include "usp10.h"
43 #include "wine/unicode.h"
44 #include "controls.h"
45 #include "user_private.h"
46 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(edit);
49 WINE_DECLARE_DEBUG_CHANNEL(combo);
50 WINE_DECLARE_DEBUG_CHANNEL(relay);
52 #define BUFLIMIT_INITIAL 30000 /* initial buffer size */
53 #define GROWLENGTH 32 /* buffers granularity in bytes: must be power of 2 */
54 #define ROUND_TO_GROW(size) (((size) + (GROWLENGTH - 1)) & ~(GROWLENGTH - 1))
55 #define HSCROLL_FRACTION 3 /* scroll window by 1/3 width */
58 * extra flags for EDITSTATE.flags field
60 #define EF_MODIFIED 0x0001 /* text has been modified */
61 #define EF_FOCUSED 0x0002 /* we have input focus */
62 #define EF_UPDATE 0x0004 /* notify parent of changed state */
63 #define EF_VSCROLL_TRACK 0x0008 /* don't SetScrollPos() since we are tracking the thumb */
64 #define EF_HSCROLL_TRACK 0x0010 /* don't SetScrollPos() since we are tracking the thumb */
65 #define EF_AFTER_WRAP 0x0080 /* the caret is displayed after the last character of a
66 wrapped line, instead of in front of the next character */
67 #define EF_USE_SOFTBRK 0x0100 /* Enable soft breaks in text. */
68 #define EF_DIALOGMODE 0x0200 /* Indicates that we are inside a dialog window */
70 typedef enum
72 END_0 = 0, /* line ends with terminating '\0' character */
73 END_WRAP, /* line is wrapped */
74 END_HARD, /* line ends with a hard return '\r\n' */
75 END_SOFT, /* line ends with a soft return '\r\r\n' */
76 END_RICH /* line ends with a single '\n' */
77 } LINE_END;
79 typedef struct tagLINEDEF {
80 INT length; /* bruto length of a line in bytes */
81 INT net_length; /* netto length of a line in visible characters */
82 LINE_END ending;
83 INT width; /* width of the line in pixels */
84 INT index; /* line index into the buffer */
85 SCRIPT_STRING_ANALYSIS ssa; /* Uniscribe Data */
86 struct tagLINEDEF *next;
87 } LINEDEF;
89 typedef struct
91 BOOL is_unicode; /* how the control was created */
92 LPWSTR text; /* the actual contents of the control */
93 UINT text_length; /* cached length of text buffer (in WCHARs) - use get_text_length() to retrieve */
94 UINT buffer_size; /* the size of the buffer in characters */
95 UINT buffer_limit; /* the maximum size to which the buffer may grow in characters */
96 HFONT font; /* NULL means standard system font */
97 INT x_offset; /* scroll offset for multi lines this is in pixels
98 for single lines it's in characters */
99 INT line_height; /* height of a screen line in pixels */
100 INT char_width; /* average character width in pixels */
101 DWORD style; /* sane version of wnd->dwStyle */
102 WORD flags; /* flags that are not in es->style or wnd->flags (EF_XXX) */
103 INT undo_insert_count; /* number of characters inserted in sequence */
104 UINT undo_position; /* character index of the insertion and deletion */
105 LPWSTR undo_text; /* deleted text */
106 UINT undo_buffer_size; /* size of the deleted text buffer */
107 INT selection_start; /* == selection_end if no selection */
108 INT selection_end; /* == current caret position */
109 WCHAR password_char; /* == 0 if no password char, and for multi line controls */
110 INT left_margin; /* in pixels */
111 INT right_margin; /* in pixels */
112 RECT format_rect;
113 INT text_width; /* width of the widest line in pixels for multi line controls
114 and just line width for single line controls */
115 INT region_posx; /* Position of cursor relative to region: */
116 INT region_posy; /* -1: to left, 0: within, 1: to right */
117 void *word_break_proc; /* 32-bit word break proc: ANSI or Unicode */
118 INT line_count; /* number of lines */
119 INT y_offset; /* scroll offset in number of lines */
120 BOOL bCaptureState; /* flag indicating whether mouse was captured */
121 BOOL bEnableState; /* flag keeping the enable state */
122 HWND hwndSelf; /* the our window handle */
123 HWND hwndParent; /* Handle of parent for sending EN_* messages.
124 Even if parent will change, EN_* messages
125 should be sent to the first parent. */
126 HWND hwndListBox; /* handle of ComboBox's listbox or NULL */
127 INT wheelDeltaRemainder; /* scroll wheel delta left over after scrolling whole lines */
129 * only for multi line controls
131 INT lock_count; /* amount of re-entries in the EditWndProc */
132 INT tabs_count;
133 LPINT tabs;
134 LINEDEF *first_line_def; /* linked list of (soft) linebreaks */
135 HLOCAL hloc32W; /* our unicode local memory block */
136 HLOCAL hloc32A; /* alias for ANSI control receiving EM_GETHANDLE
137 or EM_SETHANDLE */
138 HLOCAL hlocapp; /* The text buffer handle belongs to the app */
140 * IME Data
142 UINT composition_len; /* length of composition, 0 == no composition */
143 int composition_start; /* the character position for the composition */
145 * Uniscribe Data
147 SCRIPT_LOGATTR *logAttr;
148 SCRIPT_STRING_ANALYSIS ssa; /* Uniscribe Data for single line controls */
149 } EDITSTATE;
152 #define SWAP_UINT32(x,y) do { UINT temp = (UINT)(x); (x) = (UINT)(y); (y) = temp; } while(0)
153 #define ORDER_UINT(x,y) do { if ((UINT)(y) < (UINT)(x)) SWAP_UINT32((x),(y)); } while(0)
155 /* used for disabled or read-only edit control */
156 #define EDIT_NOTIFY_PARENT(es, wNotifyCode) \
157 do \
158 { /* Notify parent which has created this edit control */ \
159 TRACE("notification " #wNotifyCode " sent to hwnd=%p\n", es->hwndParent); \
160 SendMessageW(es->hwndParent, WM_COMMAND, \
161 MAKEWPARAM(GetWindowLongPtrW((es->hwndSelf),GWLP_ID), wNotifyCode), \
162 (LPARAM)(es->hwndSelf)); \
163 } while(0)
165 static LRESULT EDIT_EM_PosFromChar(EDITSTATE *es, INT index, BOOL after_wrap);
167 /*********************************************************************
169 * EM_CANUNDO
172 static inline BOOL EDIT_EM_CanUndo(const EDITSTATE *es)
174 return (es->undo_insert_count || strlenW(es->undo_text));
178 /*********************************************************************
180 * EM_EMPTYUNDOBUFFER
183 static inline void EDIT_EM_EmptyUndoBuffer(EDITSTATE *es)
185 es->undo_insert_count = 0;
186 *es->undo_text = '\0';
190 /**********************************************************************
191 * get_app_version
193 * Returns the window version in case Wine emulates a later version
194 * of windows than the application expects.
196 * In a number of cases when windows runs an application that was
197 * designed for an earlier windows version, windows reverts
198 * to "old" behaviour of that earlier version.
200 * An example is a disabled edit control that needs to be painted.
201 * Old style behaviour is to send a WM_CTLCOLOREDIT message. This was
202 * changed in Win95, NT4.0 by a WM_CTLCOLORSTATIC message _only_ for
203 * applications with an expected version 0f 4.0 or higher.
206 static DWORD get_app_version(void)
208 static DWORD version;
209 if (!version)
211 DWORD dwEmulatedVersion;
212 OSVERSIONINFOW info;
213 DWORD dwProcVersion = GetProcessVersion(0);
215 info.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
216 GetVersionExW( &info );
217 dwEmulatedVersion = MAKELONG( info.dwMinorVersion, info.dwMajorVersion );
218 /* FIXME: this may not be 100% correct; see discussion on the
219 * wine developer list in Nov 1999 */
220 version = dwProcVersion < dwEmulatedVersion ? dwProcVersion : dwEmulatedVersion;
222 return version;
225 static HBRUSH EDIT_NotifyCtlColor(EDITSTATE *es, HDC hdc)
227 HBRUSH hbrush;
228 UINT msg;
230 if ( get_app_version() >= 0x40000 && (!es->bEnableState || (es->style & ES_READONLY)))
231 msg = WM_CTLCOLORSTATIC;
232 else
233 msg = WM_CTLCOLOREDIT;
235 /* why do we notify to es->hwndParent, and we send this one to GetParent()? */
236 hbrush = (HBRUSH)SendMessageW(GetParent(es->hwndSelf), msg, (WPARAM)hdc, (LPARAM)es->hwndSelf);
237 if (!hbrush)
238 hbrush = (HBRUSH)DefWindowProcW(GetParent(es->hwndSelf), msg, (WPARAM)hdc, (LPARAM)es->hwndSelf);
239 return hbrush;
243 static inline UINT get_text_length(EDITSTATE *es)
245 if(es->text_length == (UINT)-1)
246 es->text_length = strlenW(es->text);
247 return es->text_length;
251 /*********************************************************************
253 * EDIT_WordBreakProc
255 * Find the beginning of words.
256 * Note: unlike the specs for a WordBreakProc, this function can
257 * only be called without linebreaks between s[0] up to
258 * s[count - 1]. Remember it is only called
259 * internally, so we can decide this for ourselves.
260 * Additionally we will always be breaking the full string.
263 static INT EDIT_WordBreakProc(EDITSTATE *es, LPWSTR s, INT index, INT count, INT action)
265 INT ret = 0;
267 TRACE("s=%p, index=%d, count=%d, action=%d\n", s, index, count, action);
269 if(!s) return 0;
271 if (!es->logAttr)
273 SCRIPT_ANALYSIS psa;
275 memset(&psa,0,sizeof(SCRIPT_ANALYSIS));
276 psa.eScript = SCRIPT_UNDEFINED;
278 es->logAttr = HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_LOGATTR) * get_text_length(es));
279 ScriptBreak(es->text, get_text_length(es), &psa, es->logAttr);
282 switch (action) {
283 case WB_LEFT:
284 if (index)
285 index--;
286 while (index && !es->logAttr[index].fSoftBreak)
287 index--;
288 ret = index;
289 break;
290 case WB_RIGHT:
291 if (!count)
292 break;
293 while (index < count && s[index] && !es->logAttr[index].fSoftBreak)
294 index++;
295 ret = index;
296 break;
297 case WB_ISDELIMITER:
298 ret = es->logAttr[index].fWhiteSpace;
299 break;
300 default:
301 ERR("unknown action code, please report !\n");
302 break;
304 return ret;
308 /*********************************************************************
310 * EDIT_CallWordBreakProc
312 * Call appropriate WordBreakProc (internal or external).
314 * Note: The "start" argument should always be an index referring
315 * to es->text. The actual wordbreak proc might be
316 * 16 bit, so we can't always pass any 32 bit LPSTR.
317 * Hence we assume that es->text is the buffer that holds
318 * the string under examination (we can decide this for ourselves).
321 static INT EDIT_CallWordBreakProc(EDITSTATE *es, INT start, INT index, INT count, INT action)
323 INT ret;
325 if (es->word_break_proc)
327 if(es->is_unicode)
329 EDITWORDBREAKPROCW wbpW = (EDITWORDBREAKPROCW)es->word_break_proc;
331 TRACE_(relay)("\1Call wordbreakW %p (str=%s,idx=%d,cnt=%d,act=%d)\n",
332 es->word_break_proc, debugstr_wn(es->text + start, count), index, count, action);
333 ret = wbpW(es->text + start, index, count, action);
334 TRACE_(relay)("\1Ret wordbreakW %p retval=%d\n", es->word_break_proc, ret );
336 else
338 EDITWORDBREAKPROCA wbpA = (EDITWORDBREAKPROCA)es->word_break_proc;
339 INT countA;
340 CHAR *textA;
342 countA = WideCharToMultiByte(CP_ACP, 0, es->text + start, count, NULL, 0, NULL, NULL);
343 textA = HeapAlloc(GetProcessHeap(), 0, countA);
344 WideCharToMultiByte(CP_ACP, 0, es->text + start, count, textA, countA, NULL, NULL);
345 TRACE_(relay)("\1Call wordbreakA %p(str=%s,idx=%d,cnt=%d,act=%d)\n",
346 es->word_break_proc, debugstr_an(textA, countA), index, countA, action);
347 ret = wbpA(textA, index, countA, action);
348 HeapFree(GetProcessHeap(), 0, textA);
349 TRACE_(relay)("\1Ret wordbreakA %p retval=%d\n", es->word_break_proc, ret );
352 else
353 ret = EDIT_WordBreakProc(es, es->text, index+start, count+start, action) - start;
355 return ret;
358 static inline void EDIT_InvalidateUniscribeData_linedef(LINEDEF *line_def)
360 if (line_def->ssa)
362 ScriptStringFree(&line_def->ssa);
363 line_def->ssa = NULL;
367 static inline void EDIT_InvalidateUniscribeData(EDITSTATE *es)
369 LINEDEF *line_def = es->first_line_def;
370 while (line_def)
372 EDIT_InvalidateUniscribeData_linedef(line_def);
373 line_def = line_def->next;
375 if (es->ssa)
377 ScriptStringFree(&es->ssa);
378 es->ssa = NULL;
382 static SCRIPT_STRING_ANALYSIS EDIT_UpdateUniscribeData_linedef(EDITSTATE *es, HDC dc, LINEDEF *line_def)
384 if (!line_def)
385 return NULL;
387 if (line_def->net_length && !line_def->ssa)
389 int index = line_def->index;
390 HFONT old_font = NULL;
391 HDC udc = dc;
392 SCRIPT_TABDEF tabdef;
393 HRESULT hr;
395 if (!udc)
396 udc = GetDC(es->hwndSelf);
397 if (es->font)
398 old_font = SelectObject(udc, es->font);
400 tabdef.cTabStops = es->tabs_count;
401 tabdef.iScale = GdiGetCharDimensions(udc, NULL, NULL);
402 tabdef.pTabStops = es->tabs;
403 tabdef.iTabOrigin = 0;
405 hr = ScriptStringAnalyse(udc, &es->text[index], line_def->net_length,
406 (1.5*line_def->net_length+16), -1,
407 SSA_LINK|SSA_FALLBACK|SSA_GLYPHS|SSA_TAB, -1,
408 NULL, NULL, NULL, &tabdef, NULL, &line_def->ssa);
409 if (FAILED(hr))
411 WARN("ScriptStringAnalyse failed (%x)\n",hr);
412 line_def->ssa = NULL;
415 if (es->font)
416 SelectObject(udc, old_font);
417 if (udc != dc)
418 ReleaseDC(es->hwndSelf, udc);
421 return line_def->ssa;
424 static SCRIPT_STRING_ANALYSIS EDIT_UpdateUniscribeData(EDITSTATE *es, HDC dc, INT line)
426 LINEDEF *line_def;
428 if (!(es->style & ES_MULTILINE))
430 if (!es->ssa)
432 INT length = get_text_length(es);
433 HFONT old_font = NULL;
434 HDC udc = dc;
436 if (!udc)
437 udc = GetDC(es->hwndSelf);
438 if (es->font)
439 old_font = SelectObject(udc, es->font);
441 if (es->style & ES_PASSWORD)
442 ScriptStringAnalyse(udc, &es->password_char, length, (1.5*length+16), -1, SSA_LINK|SSA_FALLBACK|SSA_GLYPHS|SSA_PASSWORD, -1, NULL, NULL, NULL, NULL, NULL, &es->ssa);
443 else
444 ScriptStringAnalyse(udc, es->text, length, (1.5*length+16), -1, SSA_LINK|SSA_FALLBACK|SSA_GLYPHS, -1, NULL, NULL, NULL, NULL, NULL, &es->ssa);
446 if (es->font)
447 SelectObject(udc, old_font);
448 if (udc != dc)
449 ReleaseDC(es->hwndSelf, udc);
451 return es->ssa;
453 else
455 line_def = es->first_line_def;
456 while (line_def && line)
458 line_def = line_def->next;
459 line--;
462 return EDIT_UpdateUniscribeData_linedef(es,dc,line_def);
466 static inline INT get_vertical_line_count(EDITSTATE *es)
468 INT vlc = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
469 return max(1,vlc);
472 /*********************************************************************
474 * EDIT_BuildLineDefs_ML
476 * Build linked list of text lines.
477 * Lines can end with '\0' (last line), a character (if it is wrapped),
478 * a soft return '\r\r\n' or a hard return '\r\n'
481 static void EDIT_BuildLineDefs_ML(EDITSTATE *es, INT istart, INT iend, INT delta, HRGN hrgn)
483 LPWSTR current_position, cp;
484 INT fw;
485 LINEDEF *current_line;
486 LINEDEF *previous_line;
487 LINEDEF *start_line;
488 INT line_index = 0, nstart_line, nstart_index;
489 INT line_count = es->line_count;
490 INT orig_net_length;
491 RECT rc;
492 INT vlc;
494 if (istart == iend && delta == 0)
495 return;
497 previous_line = NULL;
498 current_line = es->first_line_def;
500 /* Find starting line. istart must lie inside an existing line or
501 * at the end of buffer */
502 do {
503 if (istart < current_line->index + current_line->length ||
504 current_line->ending == END_0)
505 break;
507 previous_line = current_line;
508 current_line = current_line->next;
509 line_index++;
510 } while (current_line);
512 if (!current_line) /* Error occurred start is not inside previous buffer */
514 FIXME(" modification occurred outside buffer\n");
515 return;
518 /* Remember start of modifications in order to calculate update region */
519 nstart_line = line_index;
520 nstart_index = current_line->index;
522 /* We must start to reformat from the previous line since the modifications
523 * may have caused the line to wrap upwards. */
524 if (!(es->style & ES_AUTOHSCROLL) && line_index > 0)
526 line_index--;
527 current_line = previous_line;
529 start_line = current_line;
531 fw = es->format_rect.right - es->format_rect.left;
532 current_position = es->text + current_line->index;
533 vlc = get_vertical_line_count(es);
534 do {
535 if (current_line != start_line)
537 if (!current_line || current_line->index + delta > current_position - es->text)
539 /* The buffer has been expanded, create a new line and
540 insert it into the link list */
541 LINEDEF *new_line = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(LINEDEF));
542 new_line->next = previous_line->next;
543 previous_line->next = new_line;
544 current_line = new_line;
545 es->line_count++;
547 else if (current_line->index + delta < current_position - es->text)
549 /* The previous line merged with this line so we delete this extra entry */
550 previous_line->next = current_line->next;
551 HeapFree(GetProcessHeap(), 0, current_line);
552 current_line = previous_line->next;
553 es->line_count--;
554 continue;
556 else /* current_line->index + delta == current_position */
558 if (current_position - es->text > iend)
559 break; /* We reached end of line modifications */
560 /* else recalculate this line */
564 current_line->index = current_position - es->text;
565 orig_net_length = current_line->net_length;
567 /* Find end of line */
568 cp = current_position;
569 while (*cp) {
570 if (*cp == '\n') break;
571 if ((*cp == '\r') && (*(cp + 1) == '\n'))
572 break;
573 cp++;
576 /* Mark type of line termination */
577 if (!(*cp)) {
578 current_line->ending = END_0;
579 current_line->net_length = strlenW(current_position);
580 } else if ((cp > current_position) && (*(cp - 1) == '\r')) {
581 current_line->ending = END_SOFT;
582 current_line->net_length = cp - current_position - 1;
583 } else if (*cp == '\n') {
584 current_line->ending = END_RICH;
585 current_line->net_length = cp - current_position;
586 } else {
587 current_line->ending = END_HARD;
588 current_line->net_length = cp - current_position;
591 if (current_line->net_length)
593 const SIZE *sz;
594 EDIT_InvalidateUniscribeData_linedef(current_line);
595 EDIT_UpdateUniscribeData_linedef(es, NULL, current_line);
596 if (current_line->ssa)
598 sz = ScriptString_pSize(current_line->ssa);
599 /* Calculate line width */
600 current_line->width = sz->cx;
602 else current_line->width = es->char_width * current_line->net_length;
604 else current_line->width = 0;
606 /* FIXME: check here for lines that are too wide even in AUTOHSCROLL (> 32767 ???) */
608 /* Line breaks just look back from the end and find the next break and try that. */
610 if (!(es->style & ES_AUTOHSCROLL)) {
611 if (current_line->width > fw && fw > es->char_width) {
613 INT prev, next;
614 int w;
615 const SIZE *sz;
616 float d;
618 prev = current_line->net_length - 1;
619 w = current_line->net_length;
620 d = (float)current_line->width/(float)fw;
621 if (d > 1.2f) d -= 0.2f;
622 next = prev/d;
623 if (next >= prev) next = prev-1;
624 do {
625 prev = EDIT_CallWordBreakProc(es, current_position - es->text,
626 next, current_line->net_length, WB_LEFT);
627 current_line->net_length = prev;
628 EDIT_InvalidateUniscribeData_linedef(current_line);
629 EDIT_UpdateUniscribeData_linedef(es, NULL, current_line);
630 if (current_line->ssa)
631 sz = ScriptString_pSize(current_line->ssa);
632 else sz = 0;
633 if (sz)
634 current_line->width = sz->cx;
635 else
636 prev = 0;
637 next = prev - 1;
638 } while (prev && current_line->width > fw);
639 current_line->net_length = w;
641 if (prev == 0) { /* Didn't find a line break so force a break */
642 INT *piDx;
643 const INT *count;
645 EDIT_InvalidateUniscribeData_linedef(current_line);
646 EDIT_UpdateUniscribeData_linedef(es, NULL, current_line);
648 if (current_line->ssa)
650 count = ScriptString_pcOutChars(current_line->ssa);
651 piDx = HeapAlloc(GetProcessHeap(),0,sizeof(INT) * (*count));
652 ScriptStringGetLogicalWidths(current_line->ssa,piDx);
654 prev = current_line->net_length-1;
655 do {
656 current_line->width -= piDx[prev];
657 prev--;
658 } while ( prev > 0 && current_line->width > fw);
659 if (prev<=0)
660 prev = 1;
661 HeapFree(GetProcessHeap(),0,piDx);
663 else
664 prev = (fw / es->char_width);
667 /* If the first line we are calculating, wrapped before istart, we must
668 * adjust istart in order for this to be reflected in the update region. */
669 if (current_line->index == nstart_index && istart > current_line->index + prev)
670 istart = current_line->index + prev;
671 /* else if we are updating the previous line before the first line we
672 * are re-calculating and it expanded */
673 else if (current_line == start_line &&
674 current_line->index != nstart_index && orig_net_length < prev)
676 /* Line expanded due to an upwards line wrap so we must partially include
677 * previous line in update region */
678 nstart_line = line_index;
679 nstart_index = current_line->index;
680 istart = current_line->index + orig_net_length;
683 current_line->net_length = prev;
684 current_line->ending = END_WRAP;
686 if (current_line->net_length > 0)
688 EDIT_UpdateUniscribeData_linedef(es, NULL, current_line);
689 if (current_line->ssa)
691 sz = ScriptString_pSize(current_line->ssa);
692 current_line->width = sz->cx;
694 else
695 current_line->width = 0;
697 else current_line->width = 0;
699 else if (current_line == start_line &&
700 current_line->index != nstart_index &&
701 orig_net_length < current_line->net_length) {
702 /* The previous line expanded but it's still not as wide as the client rect */
703 /* The expansion is due to an upwards line wrap so we must partially include
704 it in the update region */
705 nstart_line = line_index;
706 nstart_index = current_line->index;
707 istart = current_line->index + orig_net_length;
712 /* Adjust length to include line termination */
713 switch (current_line->ending) {
714 case END_SOFT:
715 current_line->length = current_line->net_length + 3;
716 break;
717 case END_RICH:
718 current_line->length = current_line->net_length + 1;
719 break;
720 case END_HARD:
721 current_line->length = current_line->net_length + 2;
722 break;
723 case END_WRAP:
724 case END_0:
725 current_line->length = current_line->net_length;
726 break;
728 es->text_width = max(es->text_width, current_line->width);
729 current_position += current_line->length;
730 previous_line = current_line;
732 /* Discard data for non-visible lines. It will be calculated as needed */
733 if ((line_index < es->y_offset) || (line_index > es->y_offset + vlc))
734 EDIT_InvalidateUniscribeData_linedef(current_line);
736 current_line = current_line->next;
737 line_index++;
738 } while (previous_line->ending != END_0);
740 /* Finish adjusting line indexes by delta or remove hanging lines */
741 if (previous_line->ending == END_0)
743 LINEDEF *pnext = NULL;
745 previous_line->next = NULL;
746 while (current_line)
748 pnext = current_line->next;
749 EDIT_InvalidateUniscribeData_linedef(current_line);
750 HeapFree(GetProcessHeap(), 0, current_line);
751 current_line = pnext;
752 es->line_count--;
755 else if (delta != 0)
757 while (current_line)
759 current_line->index += delta;
760 current_line = current_line->next;
764 /* Calculate rest of modification rectangle */
765 if (hrgn)
767 HRGN tmphrgn;
769 * We calculate two rectangles. One for the first line which may have
770 * an indent with respect to the format rect. The other is a format-width
771 * rectangle that spans the rest of the lines that changed or moved.
773 rc.top = es->format_rect.top + nstart_line * es->line_height -
774 (es->y_offset * es->line_height); /* Adjust for vertical scrollbar */
775 rc.bottom = rc.top + es->line_height;
776 if ((es->style & ES_CENTER) || (es->style & ES_RIGHT))
777 rc.left = es->format_rect.left;
778 else
779 rc.left = LOWORD(EDIT_EM_PosFromChar(es, nstart_index, FALSE));
780 rc.right = es->format_rect.right;
781 SetRectRgn(hrgn, rc.left, rc.top, rc.right, rc.bottom);
783 rc.top = rc.bottom;
784 rc.left = es->format_rect.left;
785 rc.right = es->format_rect.right;
787 * If lines were added or removed we must re-paint the remainder of the
788 * lines since the remaining lines were either shifted up or down.
790 if (line_count < es->line_count) /* We added lines */
791 rc.bottom = es->line_count * es->line_height;
792 else if (line_count > es->line_count) /* We removed lines */
793 rc.bottom = line_count * es->line_height;
794 else
795 rc.bottom = line_index * es->line_height;
796 rc.bottom += es->format_rect.top;
797 rc.bottom -= (es->y_offset * es->line_height); /* Adjust for vertical scrollbar */
798 tmphrgn = CreateRectRgn(rc.left, rc.top, rc.right, rc.bottom);
799 CombineRgn(hrgn, hrgn, tmphrgn, RGN_OR);
800 DeleteObject(tmphrgn);
804 /*********************************************************************
806 * EDIT_CalcLineWidth_SL
809 static void EDIT_CalcLineWidth_SL(EDITSTATE *es)
811 EDIT_UpdateUniscribeData(es, NULL, 0);
812 if (es->ssa)
814 const SIZE *size;
815 size = ScriptString_pSize(es->ssa);
816 es->text_width = size->cx;
818 else
819 es->text_width = 0;
822 /*********************************************************************
824 * EDIT_CharFromPos
826 * Beware: This is not the function called on EM_CHARFROMPOS
827 * The position _can_ be outside the formatting / client
828 * rectangle
829 * The return value is only the character index
832 static INT EDIT_CharFromPos(EDITSTATE *es, INT x, INT y, LPBOOL after_wrap)
834 INT index;
836 if (es->style & ES_MULTILINE) {
837 int trailing;
838 INT line = (y - es->format_rect.top) / es->line_height + es->y_offset;
839 INT line_index = 0;
840 LINEDEF *line_def = es->first_line_def;
841 EDIT_UpdateUniscribeData(es, NULL, line);
842 while ((line > 0) && line_def->next) {
843 line_index += line_def->length;
844 line_def = line_def->next;
845 line--;
848 x += es->x_offset - es->format_rect.left;
849 if (es->style & ES_RIGHT)
850 x -= (es->format_rect.right - es->format_rect.left) - line_def->width;
851 else if (es->style & ES_CENTER)
852 x -= ((es->format_rect.right - es->format_rect.left) - line_def->width) / 2;
853 if (x >= line_def->width) {
854 if (after_wrap)
855 *after_wrap = (line_def->ending == END_WRAP);
856 return line_index + line_def->net_length;
858 if (x <= 0 || !line_def->ssa) {
859 if (after_wrap)
860 *after_wrap = FALSE;
861 return line_index;
864 ScriptStringXtoCP(line_def->ssa, x , &index, &trailing);
865 if (trailing) index++;
866 index += line_index;
867 if (after_wrap)
868 *after_wrap = ((index == line_index + line_def->net_length) &&
869 (line_def->ending == END_WRAP));
870 } else {
871 INT xoff = 0;
872 INT trailing;
873 if (after_wrap)
874 *after_wrap = FALSE;
875 x -= es->format_rect.left;
876 if (!x)
877 return es->x_offset;
879 if (!es->x_offset)
881 INT indent = (es->format_rect.right - es->format_rect.left) - es->text_width;
882 if (es->style & ES_RIGHT)
883 x -= indent;
884 else if (es->style & ES_CENTER)
885 x -= indent / 2;
888 EDIT_UpdateUniscribeData(es, NULL, 0);
889 if (es->x_offset)
891 if (es->ssa)
893 if (es->x_offset>= get_text_length(es))
895 const SIZE *size;
896 size = ScriptString_pSize(es->ssa);
897 xoff = size->cx;
899 ScriptStringCPtoX(es->ssa, es->x_offset, FALSE, &xoff);
901 else
902 xoff = 0;
904 if (x < 0)
906 if (x + xoff > 0 || !es->ssa)
908 ScriptStringXtoCP(es->ssa, x+xoff, &index, &trailing);
909 if (trailing) index++;
911 else
912 index = 0;
914 else
916 if (x)
918 const SIZE *size = NULL;
919 if (es->ssa)
920 size = ScriptString_pSize(es->ssa);
921 if (!size)
922 index = 0;
923 else if (x > size->cx)
924 index = get_text_length(es);
925 else if (es->ssa)
927 ScriptStringXtoCP(es->ssa, x+xoff, &index, &trailing);
928 if (trailing) index++;
930 else
931 index = 0;
933 else
934 index = es->x_offset;
937 return index;
941 /*********************************************************************
943 * EDIT_ConfinePoint
945 * adjusts the point to be within the formatting rectangle
946 * (so CharFromPos returns the nearest _visible_ character)
949 static void EDIT_ConfinePoint(const EDITSTATE *es, LPINT x, LPINT y)
951 *x = min(max(*x, es->format_rect.left), es->format_rect.right - 1);
952 *y = min(max(*y, es->format_rect.top), es->format_rect.bottom - 1);
956 /*********************************************************************
958 * EM_LINEFROMCHAR
961 static INT EDIT_EM_LineFromChar(EDITSTATE *es, INT index)
963 INT line;
964 LINEDEF *line_def;
966 if (!(es->style & ES_MULTILINE))
967 return 0;
968 if (index > (INT)get_text_length(es))
969 return es->line_count - 1;
970 if (index == -1)
971 index = min(es->selection_start, es->selection_end);
973 line = 0;
974 line_def = es->first_line_def;
975 index -= line_def->length;
976 while ((index >= 0) && line_def->next) {
977 line++;
978 line_def = line_def->next;
979 index -= line_def->length;
981 return line;
985 /*********************************************************************
987 * EM_LINEINDEX
990 static INT EDIT_EM_LineIndex(const EDITSTATE *es, INT line)
992 INT line_index;
993 const LINEDEF *line_def;
995 if (!(es->style & ES_MULTILINE))
996 return 0;
997 if (line >= es->line_count)
998 return -1;
1000 line_index = 0;
1001 line_def = es->first_line_def;
1002 if (line == -1) {
1003 INT index = es->selection_end - line_def->length;
1004 while ((index >= 0) && line_def->next) {
1005 line_index += line_def->length;
1006 line_def = line_def->next;
1007 index -= line_def->length;
1009 } else {
1010 while (line > 0) {
1011 line_index += line_def->length;
1012 line_def = line_def->next;
1013 line--;
1016 return line_index;
1020 /*********************************************************************
1022 * EM_LINELENGTH
1025 static INT EDIT_EM_LineLength(EDITSTATE *es, INT index)
1027 LINEDEF *line_def;
1029 if (!(es->style & ES_MULTILINE))
1030 return get_text_length(es);
1032 if (index == -1) {
1033 /* get the number of remaining non-selected chars of selected lines */
1034 INT32 l; /* line number */
1035 INT32 li; /* index of first char in line */
1036 INT32 count;
1037 l = EDIT_EM_LineFromChar(es, es->selection_start);
1038 /* # chars before start of selection area */
1039 count = es->selection_start - EDIT_EM_LineIndex(es, l);
1040 l = EDIT_EM_LineFromChar(es, es->selection_end);
1041 /* # chars after end of selection */
1042 li = EDIT_EM_LineIndex(es, l);
1043 count += li + EDIT_EM_LineLength(es, li) - es->selection_end;
1044 return count;
1046 line_def = es->first_line_def;
1047 index -= line_def->length;
1048 while ((index >= 0) && line_def->next) {
1049 line_def = line_def->next;
1050 index -= line_def->length;
1052 return line_def->net_length;
1056 /*********************************************************************
1058 * EM_POSFROMCHAR
1061 static LRESULT EDIT_EM_PosFromChar(EDITSTATE *es, INT index, BOOL after_wrap)
1063 INT len = get_text_length(es);
1064 INT l;
1065 INT li;
1066 INT x = 0;
1067 INT y = 0;
1068 INT w;
1069 INT lw;
1070 LINEDEF *line_def;
1072 index = min(index, len);
1073 if (es->style & ES_MULTILINE) {
1074 l = EDIT_EM_LineFromChar(es, index);
1075 EDIT_UpdateUniscribeData(es, NULL, l);
1077 y = (l - es->y_offset) * es->line_height;
1078 li = EDIT_EM_LineIndex(es, l);
1079 if (after_wrap && (li == index) && l) {
1080 INT l2 = l - 1;
1081 line_def = es->first_line_def;
1082 while (l2) {
1083 line_def = line_def->next;
1084 l2--;
1086 if (line_def->ending == END_WRAP) {
1087 l--;
1088 y -= es->line_height;
1089 li = EDIT_EM_LineIndex(es, l);
1093 line_def = es->first_line_def;
1094 while (line_def->index != li)
1095 line_def = line_def->next;
1097 lw = line_def->width;
1098 w = es->format_rect.right - es->format_rect.left;
1099 if (line_def->ssa)
1101 ScriptStringCPtoX(line_def->ssa, (index - 1) - li, TRUE, &x);
1102 x -= es->x_offset;
1104 else
1105 x = es->x_offset;
1107 if (es->style & ES_RIGHT)
1108 x = w - (lw - x);
1109 else if (es->style & ES_CENTER)
1110 x += (w - lw) / 2;
1111 } else {
1112 INT xoff = 0;
1113 INT xi = 0;
1114 EDIT_UpdateUniscribeData(es, NULL, 0);
1115 if (es->x_offset)
1117 if (es->ssa)
1119 if (es->x_offset >= get_text_length(es))
1121 int leftover = es->x_offset - get_text_length(es);
1122 if (es->ssa)
1124 const SIZE *size;
1125 size = ScriptString_pSize(es->ssa);
1126 xoff = size->cx;
1128 else
1129 xoff = 0;
1130 xoff += es->char_width * leftover;
1132 else
1133 ScriptStringCPtoX(es->ssa, es->x_offset, FALSE, &xoff);
1135 else
1136 xoff = 0;
1138 if (index)
1140 if (index >= get_text_length(es))
1142 if (es->ssa)
1144 const SIZE *size;
1145 size = ScriptString_pSize(es->ssa);
1146 xi = size->cx;
1148 else
1149 xi = 0;
1151 else if (es->ssa)
1152 ScriptStringCPtoX(es->ssa, index, FALSE, &xi);
1153 else
1154 xi = 0;
1156 x = xi - xoff;
1158 if (index >= es->x_offset) {
1159 if (!es->x_offset && (es->style & (ES_RIGHT | ES_CENTER)))
1161 w = es->format_rect.right - es->format_rect.left;
1162 if (w > es->text_width)
1164 if (es->style & ES_RIGHT)
1165 x += w - es->text_width;
1166 else if (es->style & ES_CENTER)
1167 x += (w - es->text_width) / 2;
1171 y = 0;
1173 x += es->format_rect.left;
1174 y += es->format_rect.top;
1175 return MAKELONG((INT16)x, (INT16)y);
1179 /*********************************************************************
1181 * EDIT_GetLineRect
1183 * Calculates the bounding rectangle for a line from a starting
1184 * column to an ending column.
1187 static void EDIT_GetLineRect(EDITSTATE *es, INT line, INT scol, INT ecol, LPRECT rc)
1189 SCRIPT_STRING_ANALYSIS ssa;
1190 INT line_index = 0;
1191 INT pt1, pt2, pt3;
1193 if (es->style & ES_MULTILINE)
1195 const LINEDEF *line_def = NULL;
1196 rc->top = es->format_rect.top + (line - es->y_offset) * es->line_height;
1197 if (line >= es->line_count)
1198 return;
1200 line_def = es->first_line_def;
1201 if (line == -1) {
1202 INT index = es->selection_end - line_def->length;
1203 while ((index >= 0) && line_def->next) {
1204 line_index += line_def->length;
1205 line_def = line_def->next;
1206 index -= line_def->length;
1208 } else {
1209 while (line > 0) {
1210 line_index += line_def->length;
1211 line_def = line_def->next;
1212 line--;
1215 ssa = line_def->ssa;
1217 else
1219 line_index = 0;
1220 rc->top = es->format_rect.top;
1221 ssa = es->ssa;
1224 rc->bottom = rc->top + es->line_height;
1225 pt1 = (scol == 0) ? es->format_rect.left : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + scol, TRUE));
1226 pt2 = (ecol == -1) ? es->format_rect.right : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + ecol, TRUE));
1227 if (ssa)
1229 ScriptStringCPtoX(ssa, scol, FALSE, &pt3);
1230 pt3+=es->format_rect.left;
1232 else pt3 = pt1;
1233 rc->right = max(max(pt1 , pt2),pt3);
1234 rc->left = min(min(pt1, pt2),pt3);
1238 static inline void text_buffer_changed(EDITSTATE *es)
1240 es->text_length = (UINT)-1;
1242 HeapFree( GetProcessHeap(), 0, es->logAttr );
1243 es->logAttr = NULL;
1244 EDIT_InvalidateUniscribeData(es);
1247 /*********************************************************************
1248 * EDIT_LockBuffer
1251 static void EDIT_LockBuffer(EDITSTATE *es)
1253 if (!es->text) {
1255 if(!es->hloc32W) return;
1257 if(es->hloc32A)
1259 CHAR *textA = LocalLock(es->hloc32A);
1260 HLOCAL hloc32W_new;
1261 UINT countW_new = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
1262 if(countW_new > es->buffer_size + 1)
1264 UINT alloc_size = ROUND_TO_GROW(countW_new * sizeof(WCHAR));
1265 TRACE("Resizing 32-bit UNICODE buffer from %d+1 to %d WCHARs\n", es->buffer_size, countW_new);
1266 hloc32W_new = LocalReAlloc(es->hloc32W, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT);
1267 if(hloc32W_new)
1269 es->hloc32W = hloc32W_new;
1270 es->buffer_size = LocalSize(hloc32W_new)/sizeof(WCHAR) - 1;
1271 TRACE("Real new size %d+1 WCHARs\n", es->buffer_size);
1273 else
1274 WARN("FAILED! Will synchronize partially\n");
1276 es->text = LocalLock(es->hloc32W);
1277 MultiByteToWideChar(CP_ACP, 0, textA, -1, es->text, es->buffer_size + 1);
1278 LocalUnlock(es->hloc32A);
1280 else es->text = LocalLock(es->hloc32W);
1282 es->lock_count++;
1286 /*********************************************************************
1288 * EDIT_UnlockBuffer
1291 static void EDIT_UnlockBuffer(EDITSTATE *es, BOOL force)
1293 /* Edit window might be already destroyed */
1294 if(!IsWindow(es->hwndSelf))
1296 WARN("edit hwnd %p already destroyed\n", es->hwndSelf);
1297 return;
1300 if (!es->lock_count) {
1301 ERR("lock_count == 0 ... please report\n");
1302 return;
1304 if (!es->text) {
1305 ERR("es->text == 0 ... please report\n");
1306 return;
1308 if (force || (es->lock_count == 1)) {
1309 if (es->hloc32W) {
1310 UINT countA = 0;
1311 UINT countW = get_text_length(es) + 1;
1313 if(es->hloc32A)
1315 UINT countA_new = WideCharToMultiByte(CP_ACP, 0, es->text, countW, NULL, 0, NULL, NULL);
1316 TRACE("Synchronizing with 32-bit ANSI buffer\n");
1317 TRACE("%d WCHARs translated to %d bytes\n", countW, countA_new);
1318 countA = LocalSize(es->hloc32A);
1319 if(countA_new > countA)
1321 HLOCAL hloc32A_new;
1322 UINT alloc_size = ROUND_TO_GROW(countA_new);
1323 TRACE("Resizing 32-bit ANSI buffer from %d to %d bytes\n", countA, alloc_size);
1324 hloc32A_new = LocalReAlloc(es->hloc32A, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT);
1325 if(hloc32A_new)
1327 es->hloc32A = hloc32A_new;
1328 countA = LocalSize(hloc32A_new);
1329 TRACE("Real new size %d bytes\n", countA);
1331 else
1332 WARN("FAILED! Will synchronize partially\n");
1334 WideCharToMultiByte(CP_ACP, 0, es->text, countW,
1335 LocalLock(es->hloc32A), countA, NULL, NULL);
1336 LocalUnlock(es->hloc32A);
1339 LocalUnlock(es->hloc32W);
1340 es->text = NULL;
1342 else {
1343 ERR("no buffer ... please report\n");
1344 return;
1347 es->lock_count--;
1351 /*********************************************************************
1353 * EDIT_MakeFit
1355 * Try to fit size + 1 characters in the buffer.
1357 static BOOL EDIT_MakeFit(EDITSTATE *es, UINT size)
1359 HLOCAL hNew32W;
1361 if (size <= es->buffer_size)
1362 return TRUE;
1364 TRACE("trying to ReAlloc to %d+1 characters\n", size);
1366 /* Force edit to unlock its buffer. es->text now NULL */
1367 EDIT_UnlockBuffer(es, TRUE);
1369 if (es->hloc32W) {
1370 UINT alloc_size = ROUND_TO_GROW((size + 1) * sizeof(WCHAR));
1371 if ((hNew32W = LocalReAlloc(es->hloc32W, alloc_size, LMEM_MOVEABLE | LMEM_ZEROINIT))) {
1372 TRACE("Old 32 bit handle %p, new handle %p\n", es->hloc32W, hNew32W);
1373 es->hloc32W = hNew32W;
1374 es->buffer_size = LocalSize(hNew32W)/sizeof(WCHAR) - 1;
1378 EDIT_LockBuffer(es);
1380 if (es->buffer_size < size) {
1381 WARN("FAILED ! We now have %d+1\n", es->buffer_size);
1382 EDIT_NOTIFY_PARENT(es, EN_ERRSPACE);
1383 return FALSE;
1384 } else {
1385 TRACE("We now have %d+1\n", es->buffer_size);
1386 return TRUE;
1391 /*********************************************************************
1393 * EDIT_MakeUndoFit
1395 * Try to fit size + 1 bytes in the undo buffer.
1398 static BOOL EDIT_MakeUndoFit(EDITSTATE *es, UINT size)
1400 UINT alloc_size;
1402 if (size <= es->undo_buffer_size)
1403 return TRUE;
1405 TRACE("trying to ReAlloc to %d+1\n", size);
1407 alloc_size = ROUND_TO_GROW((size + 1) * sizeof(WCHAR));
1408 if ((es->undo_text = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, es->undo_text, alloc_size))) {
1409 es->undo_buffer_size = alloc_size/sizeof(WCHAR) - 1;
1410 return TRUE;
1412 else
1414 WARN("FAILED ! We now have %d+1\n", es->undo_buffer_size);
1415 return FALSE;
1420 /*********************************************************************
1422 * EDIT_UpdateTextRegion
1425 static void EDIT_UpdateTextRegion(EDITSTATE *es, HRGN hrgn, BOOL bErase)
1427 if (es->flags & EF_UPDATE) {
1428 es->flags &= ~EF_UPDATE;
1429 EDIT_NOTIFY_PARENT(es, EN_UPDATE);
1431 InvalidateRgn(es->hwndSelf, hrgn, bErase);
1435 /*********************************************************************
1437 * EDIT_UpdateText
1440 static void EDIT_UpdateText(EDITSTATE *es, const RECT *rc, BOOL bErase)
1442 if (es->flags & EF_UPDATE) {
1443 es->flags &= ~EF_UPDATE;
1444 EDIT_NOTIFY_PARENT(es, EN_UPDATE);
1446 InvalidateRect(es->hwndSelf, rc, bErase);
1449 /*********************************************************************
1451 * EDIT_SL_InvalidateText
1453 * Called from EDIT_InvalidateText().
1454 * Does the job for single-line controls only.
1457 static void EDIT_SL_InvalidateText(EDITSTATE *es, INT start, INT end)
1459 RECT line_rect;
1460 RECT rc;
1462 EDIT_GetLineRect(es, 0, start, end, &line_rect);
1463 if (IntersectRect(&rc, &line_rect, &es->format_rect))
1464 EDIT_UpdateText(es, &rc, TRUE);
1467 /*********************************************************************
1469 * EDIT_ML_InvalidateText
1471 * Called from EDIT_InvalidateText().
1472 * Does the job for multi-line controls only.
1475 static void EDIT_ML_InvalidateText(EDITSTATE *es, INT start, INT end)
1477 INT vlc = get_vertical_line_count(es);
1478 INT sl = EDIT_EM_LineFromChar(es, start);
1479 INT el = EDIT_EM_LineFromChar(es, end);
1480 INT sc;
1481 INT ec;
1482 RECT rc1;
1483 RECT rcWnd;
1484 RECT rcLine;
1485 RECT rcUpdate;
1486 INT l;
1488 if ((el < es->y_offset) || (sl > es->y_offset + vlc))
1489 return;
1491 sc = start - EDIT_EM_LineIndex(es, sl);
1492 ec = end - EDIT_EM_LineIndex(es, el);
1493 if (sl < es->y_offset) {
1494 sl = es->y_offset;
1495 sc = 0;
1497 if (el > es->y_offset + vlc) {
1498 el = es->y_offset + vlc;
1499 ec = EDIT_EM_LineLength(es, EDIT_EM_LineIndex(es, el));
1501 GetClientRect(es->hwndSelf, &rc1);
1502 IntersectRect(&rcWnd, &rc1, &es->format_rect);
1503 if (sl == el) {
1504 EDIT_GetLineRect(es, sl, sc, ec, &rcLine);
1505 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1506 EDIT_UpdateText(es, &rcUpdate, TRUE);
1507 } else {
1508 EDIT_GetLineRect(es, sl, sc,
1509 EDIT_EM_LineLength(es,
1510 EDIT_EM_LineIndex(es, sl)),
1511 &rcLine);
1512 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1513 EDIT_UpdateText(es, &rcUpdate, TRUE);
1514 for (l = sl + 1 ; l < el ; l++) {
1515 EDIT_GetLineRect(es, l, 0,
1516 EDIT_EM_LineLength(es,
1517 EDIT_EM_LineIndex(es, l)),
1518 &rcLine);
1519 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1520 EDIT_UpdateText(es, &rcUpdate, TRUE);
1522 EDIT_GetLineRect(es, el, 0, ec, &rcLine);
1523 if (IntersectRect(&rcUpdate, &rcWnd, &rcLine))
1524 EDIT_UpdateText(es, &rcUpdate, TRUE);
1529 /*********************************************************************
1531 * EDIT_InvalidateText
1533 * Invalidate the text from offset start up to, but not including,
1534 * offset end. Useful for (re)painting the selection.
1535 * Regions outside the linewidth are not invalidated.
1536 * end == -1 means end == TextLength.
1537 * start and end need not be ordered.
1540 static void EDIT_InvalidateText(EDITSTATE *es, INT start, INT end)
1542 if (end == start)
1543 return;
1545 if (end == -1)
1546 end = get_text_length(es);
1548 if (end < start) {
1549 INT tmp = start;
1550 start = end;
1551 end = tmp;
1554 if (es->style & ES_MULTILINE)
1555 EDIT_ML_InvalidateText(es, start, end);
1556 else
1557 EDIT_SL_InvalidateText(es, start, end);
1561 /*********************************************************************
1563 * EDIT_EM_SetSel
1565 * note: unlike the specs say: the order of start and end
1566 * _is_ preserved in Windows. (i.e. start can be > end)
1567 * In other words: this handler is OK
1570 static void EDIT_EM_SetSel(EDITSTATE *es, UINT start, UINT end, BOOL after_wrap)
1572 UINT old_start = es->selection_start;
1573 UINT old_end = es->selection_end;
1574 UINT len = get_text_length(es);
1576 if (start == (UINT)-1) {
1577 start = es->selection_end;
1578 end = es->selection_end;
1579 } else {
1580 start = min(start, len);
1581 end = min(end, len);
1583 es->selection_start = start;
1584 es->selection_end = end;
1585 if (after_wrap)
1586 es->flags |= EF_AFTER_WRAP;
1587 else
1588 es->flags &= ~EF_AFTER_WRAP;
1589 /* Compute the necessary invalidation region. */
1590 /* Note that we don't need to invalidate regions which have
1591 * "never" been selected, or those which are "still" selected.
1592 * In fact, every time we hit a selection boundary, we can
1593 * *toggle* whether we need to invalidate. Thus we can optimize by
1594 * *sorting* the interval endpoints. Let's assume that we sort them
1595 * in this order:
1596 * start <= end <= old_start <= old_end
1597 * Knuth 5.3.1 (p 183) assures us that this can be done optimally
1598 * in 5 comparisons; i.e. it is impossible to do better than the
1599 * following: */
1600 ORDER_UINT(end, old_end);
1601 ORDER_UINT(start, old_start);
1602 ORDER_UINT(old_start, old_end);
1603 ORDER_UINT(start, end);
1604 /* Note that at this point 'end' and 'old_start' are not in order, but
1605 * start is definitely the min. and old_end is definitely the max. */
1606 if (end != old_start)
1609 * One can also do
1610 * ORDER_UINT32(end, old_start);
1611 * EDIT_InvalidateText(es, start, end);
1612 * EDIT_InvalidateText(es, old_start, old_end);
1613 * in place of the following if statement.
1614 * (That would complete the optimal five-comparison four-element sort.)
1616 if (old_start > end )
1618 EDIT_InvalidateText(es, start, end);
1619 EDIT_InvalidateText(es, old_start, old_end);
1621 else
1623 EDIT_InvalidateText(es, start, old_start);
1624 EDIT_InvalidateText(es, end, old_end);
1627 else EDIT_InvalidateText(es, start, old_end);
1631 /*********************************************************************
1633 * EDIT_UpdateScrollInfo
1636 static void EDIT_UpdateScrollInfo(EDITSTATE *es)
1638 if ((es->style & WS_VSCROLL) && !(es->flags & EF_VSCROLL_TRACK))
1640 SCROLLINFO si;
1641 si.cbSize = sizeof(SCROLLINFO);
1642 si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_DISABLENOSCROLL;
1643 si.nMin = 0;
1644 si.nMax = es->line_count - 1;
1645 si.nPage = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
1646 si.nPos = es->y_offset;
1647 TRACE("SB_VERT, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
1648 si.nMin, si.nMax, si.nPage, si.nPos);
1649 SetScrollInfo(es->hwndSelf, SB_VERT, &si, TRUE);
1652 if ((es->style & WS_HSCROLL) && !(es->flags & EF_HSCROLL_TRACK))
1654 SCROLLINFO si;
1655 si.cbSize = sizeof(SCROLLINFO);
1656 si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_DISABLENOSCROLL;
1657 si.nMin = 0;
1658 si.nMax = es->text_width - 1;
1659 si.nPage = es->format_rect.right - es->format_rect.left;
1660 si.nPos = es->x_offset;
1661 TRACE("SB_HORZ, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
1662 si.nMin, si.nMax, si.nPage, si.nPos);
1663 SetScrollInfo(es->hwndSelf, SB_HORZ, &si, TRUE);
1668 /*********************************************************************
1670 * EDIT_EM_LineScroll_internal
1672 * Version of EDIT_EM_LineScroll for internal use.
1673 * It doesn't refuse if ES_MULTILINE is set and assumes that
1674 * dx is in pixels, dy - in lines.
1677 static BOOL EDIT_EM_LineScroll_internal(EDITSTATE *es, INT dx, INT dy)
1679 INT nyoff;
1680 INT x_offset_in_pixels;
1681 INT lines_per_page = (es->format_rect.bottom - es->format_rect.top) /
1682 es->line_height;
1684 if (es->style & ES_MULTILINE)
1686 x_offset_in_pixels = es->x_offset;
1688 else
1690 dy = 0;
1691 x_offset_in_pixels = (short)LOWORD(EDIT_EM_PosFromChar(es, es->x_offset, FALSE));
1694 if (-dx > x_offset_in_pixels)
1695 dx = -x_offset_in_pixels;
1696 if (dx > es->text_width - x_offset_in_pixels)
1697 dx = es->text_width - x_offset_in_pixels;
1698 nyoff = max(0, es->y_offset + dy);
1699 if (nyoff >= es->line_count - lines_per_page)
1700 nyoff = max(0, es->line_count - lines_per_page);
1701 dy = (es->y_offset - nyoff) * es->line_height;
1702 if (dx || dy) {
1703 RECT rc1;
1704 RECT rc;
1706 es->y_offset = nyoff;
1707 if(es->style & ES_MULTILINE)
1708 es->x_offset += dx;
1709 else
1710 es->x_offset += dx / es->char_width;
1712 GetClientRect(es->hwndSelf, &rc1);
1713 IntersectRect(&rc, &rc1, &es->format_rect);
1714 ScrollWindowEx(es->hwndSelf, -dx, dy,
1715 NULL, &rc, NULL, NULL, SW_INVALIDATE);
1716 /* force scroll info update */
1717 EDIT_UpdateScrollInfo(es);
1719 if (dx && !(es->flags & EF_HSCROLL_TRACK))
1720 EDIT_NOTIFY_PARENT(es, EN_HSCROLL);
1721 if (dy && !(es->flags & EF_VSCROLL_TRACK))
1722 EDIT_NOTIFY_PARENT(es, EN_VSCROLL);
1723 return TRUE;
1726 /*********************************************************************
1728 * EM_LINESCROLL
1730 * NOTE: dx is in average character widths, dy - in lines;
1733 static BOOL EDIT_EM_LineScroll(EDITSTATE *es, INT dx, INT dy)
1735 if (!(es->style & ES_MULTILINE))
1736 return FALSE;
1738 dx *= es->char_width;
1739 return EDIT_EM_LineScroll_internal(es, dx, dy);
1743 /*********************************************************************
1745 * EM_SCROLL
1748 static LRESULT EDIT_EM_Scroll(EDITSTATE *es, INT action)
1750 INT dy;
1752 if (!(es->style & ES_MULTILINE))
1753 return (LRESULT)FALSE;
1755 dy = 0;
1757 switch (action) {
1758 case SB_LINEUP:
1759 if (es->y_offset)
1760 dy = -1;
1761 break;
1762 case SB_LINEDOWN:
1763 if (es->y_offset < es->line_count - 1)
1764 dy = 1;
1765 break;
1766 case SB_PAGEUP:
1767 if (es->y_offset)
1768 dy = -(es->format_rect.bottom - es->format_rect.top) / es->line_height;
1769 break;
1770 case SB_PAGEDOWN:
1771 if (es->y_offset < es->line_count - 1)
1772 dy = (es->format_rect.bottom - es->format_rect.top) / es->line_height;
1773 break;
1774 default:
1775 return (LRESULT)FALSE;
1777 if (dy) {
1778 INT vlc = get_vertical_line_count(es);
1779 /* check if we are going to move too far */
1780 if(es->y_offset + dy > es->line_count - vlc)
1781 dy = max(es->line_count - vlc, 0) - es->y_offset;
1783 /* Notification is done in EDIT_EM_LineScroll */
1784 if(dy) {
1785 EDIT_EM_LineScroll(es, 0, dy);
1786 return MAKELONG(dy, TRUE);
1790 return (LRESULT)FALSE;
1794 /*********************************************************************
1796 * EDIT_SetCaretPos
1799 static void EDIT_SetCaretPos(EDITSTATE *es, INT pos,
1800 BOOL after_wrap)
1802 LRESULT res = EDIT_EM_PosFromChar(es, pos, after_wrap);
1803 TRACE("%d - %dx%d\n", pos, (short)LOWORD(res), (short)HIWORD(res));
1804 SetCaretPos((short)LOWORD(res), (short)HIWORD(res));
1808 /*********************************************************************
1810 * EM_SCROLLCARET
1813 static void EDIT_EM_ScrollCaret(EDITSTATE *es)
1815 if (es->style & ES_MULTILINE) {
1816 INT l;
1817 INT vlc;
1818 INT ww;
1819 INT cw = es->char_width;
1820 INT x;
1821 INT dy = 0;
1822 INT dx = 0;
1824 l = EDIT_EM_LineFromChar(es, es->selection_end);
1825 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP));
1826 vlc = get_vertical_line_count(es);
1827 if (l >= es->y_offset + vlc)
1828 dy = l - vlc + 1 - es->y_offset;
1829 if (l < es->y_offset)
1830 dy = l - es->y_offset;
1831 ww = es->format_rect.right - es->format_rect.left;
1832 if (x < es->format_rect.left)
1833 dx = x - es->format_rect.left - ww / HSCROLL_FRACTION / cw * cw;
1834 if (x > es->format_rect.right)
1835 dx = x - es->format_rect.left - (HSCROLL_FRACTION - 1) * ww / HSCROLL_FRACTION / cw * cw;
1836 if (dy || dx || (es->y_offset && (es->line_count - es->y_offset < vlc)))
1838 /* check if we are going to move too far */
1839 if(es->x_offset + dx + ww > es->text_width)
1840 dx = es->text_width - ww - es->x_offset;
1841 if(dx || dy || (es->y_offset && (es->line_count - es->y_offset < vlc)))
1842 EDIT_EM_LineScroll_internal(es, dx, dy);
1844 } else {
1845 INT x;
1846 INT goal;
1847 INT format_width;
1849 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
1850 format_width = es->format_rect.right - es->format_rect.left;
1851 if (x < es->format_rect.left) {
1852 goal = es->format_rect.left + format_width / HSCROLL_FRACTION;
1853 do {
1854 es->x_offset--;
1855 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
1856 } while ((x < goal) && es->x_offset);
1857 /* FIXME: use ScrollWindow() somehow to improve performance */
1858 EDIT_UpdateText(es, NULL, TRUE);
1859 } else if (x > es->format_rect.right) {
1860 INT x_last;
1861 INT len = get_text_length(es);
1862 goal = es->format_rect.right - format_width / HSCROLL_FRACTION;
1863 do {
1864 es->x_offset++;
1865 x = (short)LOWORD(EDIT_EM_PosFromChar(es, es->selection_end, FALSE));
1866 x_last = (short)LOWORD(EDIT_EM_PosFromChar(es, len, FALSE));
1867 } while ((x > goal) && (x_last > es->format_rect.right));
1868 /* FIXME: use ScrollWindow() somehow to improve performance */
1869 EDIT_UpdateText(es, NULL, TRUE);
1873 if(es->flags & EF_FOCUSED)
1874 EDIT_SetCaretPos(es, es->selection_end, es->flags & EF_AFTER_WRAP);
1878 /*********************************************************************
1880 * EDIT_MoveBackward
1883 static void EDIT_MoveBackward(EDITSTATE *es, BOOL extend)
1885 INT e = es->selection_end;
1887 if (e) {
1888 e--;
1889 if ((es->style & ES_MULTILINE) && e &&
1890 (es->text[e - 1] == '\r') && (es->text[e] == '\n')) {
1891 e--;
1892 if (e && (es->text[e - 1] == '\r'))
1893 e--;
1896 EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1897 EDIT_EM_ScrollCaret(es);
1901 /*********************************************************************
1903 * EDIT_MoveDown_ML
1905 * Only for multi line controls
1906 * Move the caret one line down, on a column with the nearest
1907 * x coordinate on the screen (might be a different column).
1910 static void EDIT_MoveDown_ML(EDITSTATE *es, BOOL extend)
1912 INT s = es->selection_start;
1913 INT e = es->selection_end;
1914 BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
1915 LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
1916 INT x = (short)LOWORD(pos);
1917 INT y = (short)HIWORD(pos);
1919 e = EDIT_CharFromPos(es, x, y + es->line_height, &after_wrap);
1920 if (!extend)
1921 s = e;
1922 EDIT_EM_SetSel(es, s, e, after_wrap);
1923 EDIT_EM_ScrollCaret(es);
1927 /*********************************************************************
1929 * EDIT_MoveEnd
1932 static void EDIT_MoveEnd(EDITSTATE *es, BOOL extend, BOOL ctrl)
1934 BOOL after_wrap = FALSE;
1935 INT e;
1937 /* Pass a high value in x to make sure of receiving the end of the line */
1938 if (!ctrl && (es->style & ES_MULTILINE))
1939 e = EDIT_CharFromPos(es, 0x3fffffff,
1940 HIWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP)), &after_wrap);
1941 else
1942 e = get_text_length(es);
1943 EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, after_wrap);
1944 EDIT_EM_ScrollCaret(es);
1948 /*********************************************************************
1950 * EDIT_MoveForward
1953 static void EDIT_MoveForward(EDITSTATE *es, BOOL extend)
1955 INT e = es->selection_end;
1957 if (es->text[e]) {
1958 e++;
1959 if ((es->style & ES_MULTILINE) && (es->text[e - 1] == '\r')) {
1960 if (es->text[e] == '\n')
1961 e++;
1962 else if ((es->text[e] == '\r') && (es->text[e + 1] == '\n'))
1963 e += 2;
1966 EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1967 EDIT_EM_ScrollCaret(es);
1971 /*********************************************************************
1973 * EDIT_MoveHome
1975 * Home key: move to beginning of line.
1978 static void EDIT_MoveHome(EDITSTATE *es, BOOL extend, BOOL ctrl)
1980 INT e;
1982 /* Pass the x_offset in x to make sure of receiving the first position of the line */
1983 if (!ctrl && (es->style & ES_MULTILINE))
1984 e = EDIT_CharFromPos(es, -es->x_offset,
1985 HIWORD(EDIT_EM_PosFromChar(es, es->selection_end, es->flags & EF_AFTER_WRAP)), NULL);
1986 else
1987 e = 0;
1988 EDIT_EM_SetSel(es, extend ? es->selection_start : e, e, FALSE);
1989 EDIT_EM_ScrollCaret(es);
1993 /*********************************************************************
1995 * EDIT_MovePageDown_ML
1997 * Only for multi line controls
1998 * Move the caret one page down, on a column with the nearest
1999 * x coordinate on the screen (might be a different column).
2002 static void EDIT_MovePageDown_ML(EDITSTATE *es, BOOL extend)
2004 INT s = es->selection_start;
2005 INT e = es->selection_end;
2006 BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2007 LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2008 INT x = (short)LOWORD(pos);
2009 INT y = (short)HIWORD(pos);
2011 e = EDIT_CharFromPos(es, x,
2012 y + (es->format_rect.bottom - es->format_rect.top),
2013 &after_wrap);
2014 if (!extend)
2015 s = e;
2016 EDIT_EM_SetSel(es, s, e, after_wrap);
2017 EDIT_EM_ScrollCaret(es);
2021 /*********************************************************************
2023 * EDIT_MovePageUp_ML
2025 * Only for multi line controls
2026 * Move the caret one page up, on a column with the nearest
2027 * x coordinate on the screen (might be a different column).
2030 static void EDIT_MovePageUp_ML(EDITSTATE *es, BOOL extend)
2032 INT s = es->selection_start;
2033 INT e = es->selection_end;
2034 BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2035 LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2036 INT x = (short)LOWORD(pos);
2037 INT y = (short)HIWORD(pos);
2039 e = EDIT_CharFromPos(es, x,
2040 y - (es->format_rect.bottom - es->format_rect.top),
2041 &after_wrap);
2042 if (!extend)
2043 s = e;
2044 EDIT_EM_SetSel(es, s, e, after_wrap);
2045 EDIT_EM_ScrollCaret(es);
2049 /*********************************************************************
2051 * EDIT_MoveUp_ML
2053 * Only for multi line controls
2054 * Move the caret one line up, on a column with the nearest
2055 * x coordinate on the screen (might be a different column).
2058 static void EDIT_MoveUp_ML(EDITSTATE *es, BOOL extend)
2060 INT s = es->selection_start;
2061 INT e = es->selection_end;
2062 BOOL after_wrap = (es->flags & EF_AFTER_WRAP);
2063 LRESULT pos = EDIT_EM_PosFromChar(es, e, after_wrap);
2064 INT x = (short)LOWORD(pos);
2065 INT y = (short)HIWORD(pos);
2067 e = EDIT_CharFromPos(es, x, y - es->line_height, &after_wrap);
2068 if (!extend)
2069 s = e;
2070 EDIT_EM_SetSel(es, s, e, after_wrap);
2071 EDIT_EM_ScrollCaret(es);
2075 /*********************************************************************
2077 * EDIT_MoveWordBackward
2080 static void EDIT_MoveWordBackward(EDITSTATE *es, BOOL extend)
2082 INT s = es->selection_start;
2083 INT e = es->selection_end;
2084 INT l;
2085 INT ll;
2086 INT li;
2088 l = EDIT_EM_LineFromChar(es, e);
2089 ll = EDIT_EM_LineLength(es, e);
2090 li = EDIT_EM_LineIndex(es, l);
2091 if (e - li == 0) {
2092 if (l) {
2093 li = EDIT_EM_LineIndex(es, l - 1);
2094 e = li + EDIT_EM_LineLength(es, li);
2096 } else {
2097 e = li + EDIT_CallWordBreakProc(es, li, e - li, ll, WB_LEFT);
2099 if (!extend)
2100 s = e;
2101 EDIT_EM_SetSel(es, s, e, FALSE);
2102 EDIT_EM_ScrollCaret(es);
2106 /*********************************************************************
2108 * EDIT_MoveWordForward
2111 static void EDIT_MoveWordForward(EDITSTATE *es, BOOL extend)
2113 INT s = es->selection_start;
2114 INT e = es->selection_end;
2115 INT l;
2116 INT ll;
2117 INT li;
2119 l = EDIT_EM_LineFromChar(es, e);
2120 ll = EDIT_EM_LineLength(es, e);
2121 li = EDIT_EM_LineIndex(es, l);
2122 if (e - li == ll) {
2123 if ((es->style & ES_MULTILINE) && (l != es->line_count - 1))
2124 e = EDIT_EM_LineIndex(es, l + 1);
2125 } else {
2126 e = li + EDIT_CallWordBreakProc(es,
2127 li, e - li + 1, ll, WB_RIGHT);
2129 if (!extend)
2130 s = e;
2131 EDIT_EM_SetSel(es, s, e, FALSE);
2132 EDIT_EM_ScrollCaret(es);
2136 /*********************************************************************
2138 * EDIT_PaintText
2141 static INT EDIT_PaintText(EDITSTATE *es, HDC dc, INT x, INT y, INT line, INT col, INT count, BOOL rev)
2143 COLORREF BkColor;
2144 COLORREF TextColor;
2145 LOGFONTW underline_font;
2146 HFONT hUnderline = 0;
2147 HFONT old_font = 0;
2148 INT ret;
2149 INT li;
2150 INT BkMode;
2151 SIZE size;
2153 if (!count)
2154 return 0;
2155 BkMode = GetBkMode(dc);
2156 BkColor = GetBkColor(dc);
2157 TextColor = GetTextColor(dc);
2158 if (rev) {
2159 if (es->composition_len == 0)
2161 SetBkColor(dc, GetSysColor(COLOR_HIGHLIGHT));
2162 SetTextColor(dc, GetSysColor(COLOR_HIGHLIGHTTEXT));
2163 SetBkMode( dc, OPAQUE);
2165 else
2167 HFONT current = GetCurrentObject(dc,OBJ_FONT);
2168 GetObjectW(current,sizeof(LOGFONTW),&underline_font);
2169 underline_font.lfUnderline = TRUE;
2170 hUnderline = CreateFontIndirectW(&underline_font);
2171 old_font = SelectObject(dc,hUnderline);
2174 li = EDIT_EM_LineIndex(es, line);
2175 if (es->style & ES_MULTILINE) {
2176 ret = (INT)LOWORD(TabbedTextOutW(dc, x, y, es->text + li + col, count,
2177 es->tabs_count, es->tabs, es->format_rect.left - es->x_offset));
2178 } else {
2179 TextOutW(dc, x, y, es->text + li + col, count);
2180 GetTextExtentPoint32W(dc, es->text + li + col, count, &size);
2181 ret = size.cx;
2183 if (rev) {
2184 if (es->composition_len == 0)
2186 SetBkColor(dc, BkColor);
2187 SetTextColor(dc, TextColor);
2188 SetBkMode( dc, BkMode);
2190 else
2192 if (old_font)
2193 SelectObject(dc,old_font);
2194 if (hUnderline)
2195 DeleteObject(hUnderline);
2198 return ret;
2202 /*********************************************************************
2204 * EDIT_PaintLine
2207 static void EDIT_PaintLine(EDITSTATE *es, HDC dc, INT line, BOOL rev)
2209 INT s = 0;
2210 INT e = 0;
2211 INT li = 0;
2212 INT ll = 0;
2213 INT x;
2214 INT y;
2215 LRESULT pos;
2216 SCRIPT_STRING_ANALYSIS ssa;
2218 if (es->style & ES_MULTILINE) {
2219 INT vlc = get_vertical_line_count(es);
2221 if ((line < es->y_offset) || (line > es->y_offset + vlc) || (line >= es->line_count))
2222 return;
2223 } else if (line)
2224 return;
2226 TRACE("line=%d\n", line);
2228 ssa = EDIT_UpdateUniscribeData(es, dc, line);
2229 pos = EDIT_EM_PosFromChar(es, EDIT_EM_LineIndex(es, line), FALSE);
2230 x = (short)LOWORD(pos);
2231 y = (short)HIWORD(pos);
2233 if (es->style & ES_MULTILINE)
2235 int line_idx = line;
2236 x = -es->x_offset;
2237 if (es->style & ES_RIGHT || es->style & ES_CENTER)
2239 LINEDEF *line_def = es->first_line_def;
2240 int w, lw;
2242 while (line_def && line_idx)
2244 line_def = line_def->next;
2245 line_idx--;
2247 w = es->format_rect.right - es->format_rect.left;
2248 lw = line_def->width;
2250 if (es->style & ES_RIGHT)
2251 x = w - (lw - x);
2252 else if (es->style & ES_CENTER)
2253 x += (w - lw) / 2;
2255 x += es->format_rect.left;
2258 if (rev)
2260 li = EDIT_EM_LineIndex(es, line);
2261 ll = EDIT_EM_LineLength(es, li);
2262 s = min(es->selection_start, es->selection_end);
2263 e = max(es->selection_start, es->selection_end);
2264 s = min(li + ll, max(li, s));
2265 e = min(li + ll, max(li, e));
2268 if (ssa)
2269 ScriptStringOut(ssa, x, y, 0, &es->format_rect, s - li, e - li, FALSE);
2270 else if (rev && (s != e) &&
2271 ((es->flags & EF_FOCUSED) || (es->style & ES_NOHIDESEL))) {
2272 x += EDIT_PaintText(es, dc, x, y, line, 0, s - li, FALSE);
2273 x += EDIT_PaintText(es, dc, x, y, line, s - li, e - s, TRUE);
2274 x += EDIT_PaintText(es, dc, x, y, line, e - li, li + ll - e, FALSE);
2275 } else
2276 x += EDIT_PaintText(es, dc, x, y, line, 0, ll, FALSE);
2280 /*********************************************************************
2282 * EDIT_AdjustFormatRect
2284 * Adjusts the format rectangle for the current font and the
2285 * current client rectangle.
2288 static void EDIT_AdjustFormatRect(EDITSTATE *es)
2290 RECT ClientRect;
2292 es->format_rect.right = max(es->format_rect.right, es->format_rect.left + es->char_width);
2293 if (es->style & ES_MULTILINE)
2295 INT fw, vlc, max_x_offset, max_y_offset;
2297 vlc = get_vertical_line_count(es);
2298 es->format_rect.bottom = es->format_rect.top + vlc * es->line_height;
2300 /* correct es->x_offset */
2301 fw = es->format_rect.right - es->format_rect.left;
2302 max_x_offset = es->text_width - fw;
2303 if(max_x_offset < 0) max_x_offset = 0;
2304 if(es->x_offset > max_x_offset)
2305 es->x_offset = max_x_offset;
2307 /* correct es->y_offset */
2308 max_y_offset = es->line_count - vlc;
2309 if(max_y_offset < 0) max_y_offset = 0;
2310 if(es->y_offset > max_y_offset)
2311 es->y_offset = max_y_offset;
2313 /* force scroll info update */
2314 EDIT_UpdateScrollInfo(es);
2316 else
2317 /* Windows doesn't care to fix text placement for SL controls */
2318 es->format_rect.bottom = es->format_rect.top + es->line_height;
2320 /* Always stay within the client area */
2321 GetClientRect(es->hwndSelf, &ClientRect);
2322 es->format_rect.bottom = min(es->format_rect.bottom, ClientRect.bottom);
2324 if ((es->style & ES_MULTILINE) && !(es->style & ES_AUTOHSCROLL))
2325 EDIT_BuildLineDefs_ML(es, 0, get_text_length(es), 0, NULL);
2327 EDIT_SetCaretPos(es, es->selection_end, es->flags & EF_AFTER_WRAP);
2331 /*********************************************************************
2333 * EDIT_SetRectNP
2335 * note: this is not (exactly) the handler called on EM_SETRECTNP
2336 * it is also used to set the rect of a single line control
2339 static void EDIT_SetRectNP(EDITSTATE *es, const RECT *rc)
2341 LONG_PTR ExStyle;
2342 INT bw, bh;
2343 ExStyle = GetWindowLongPtrW(es->hwndSelf, GWL_EXSTYLE);
2345 CopyRect(&es->format_rect, rc);
2347 if (ExStyle & WS_EX_CLIENTEDGE) {
2348 es->format_rect.left++;
2349 es->format_rect.right--;
2351 if (es->format_rect.bottom - es->format_rect.top
2352 >= es->line_height + 2)
2354 es->format_rect.top++;
2355 es->format_rect.bottom--;
2358 else if (es->style & WS_BORDER) {
2359 bw = GetSystemMetrics(SM_CXBORDER) + 1;
2360 bh = GetSystemMetrics(SM_CYBORDER) + 1;
2361 InflateRect(&es->format_rect, -bw, 0);
2362 if (es->format_rect.bottom - es->format_rect.top >= es->line_height + 2 * bh)
2363 InflateRect(&es->format_rect, 0, -bh);
2366 es->format_rect.left += es->left_margin;
2367 es->format_rect.right -= es->right_margin;
2368 EDIT_AdjustFormatRect(es);
2372 /*********************************************************************
2374 * EM_CHARFROMPOS
2376 * returns line number (not index) in high-order word of result.
2377 * NB : Q137805 is unclear about this. POINT * pointer in lParam apply
2378 * to Richedit, not to the edit control. Original documentation is valid.
2379 * FIXME: do the specs mean to return -1 if outside client area or
2380 * if outside formatting rectangle ???
2383 static LRESULT EDIT_EM_CharFromPos(EDITSTATE *es, INT x, INT y)
2385 POINT pt;
2386 RECT rc;
2387 INT index;
2389 pt.x = x;
2390 pt.y = y;
2391 GetClientRect(es->hwndSelf, &rc);
2392 if (!PtInRect(&rc, pt))
2393 return -1;
2395 index = EDIT_CharFromPos(es, x, y, NULL);
2396 return MAKELONG(index, EDIT_EM_LineFromChar(es, index));
2400 /*********************************************************************
2402 * EM_FMTLINES
2404 * Enable or disable soft breaks.
2406 * This means: insert or remove the soft linebreak character (\r\r\n).
2407 * Take care to check if the text still fits the buffer after insertion.
2408 * If not, notify with EN_ERRSPACE.
2411 static BOOL EDIT_EM_FmtLines(EDITSTATE *es, BOOL add_eol)
2413 es->flags &= ~EF_USE_SOFTBRK;
2414 if (add_eol) {
2415 es->flags |= EF_USE_SOFTBRK;
2416 FIXME("soft break enabled, not implemented\n");
2418 return add_eol;
2422 /*********************************************************************
2424 * EM_GETHANDLE
2426 * Hopefully this won't fire back at us.
2427 * We always start with a fixed buffer in the local heap.
2428 * Despite of the documentation says that the local heap is used
2429 * only if DS_LOCALEDIT flag is set, NT and 2000 always allocate
2430 * buffer on the local heap.
2433 static HLOCAL EDIT_EM_GetHandle(EDITSTATE *es)
2435 HLOCAL hLocal;
2437 if (!(es->style & ES_MULTILINE))
2438 return 0;
2440 if(es->is_unicode)
2441 hLocal = es->hloc32W;
2442 else
2444 if(!es->hloc32A)
2446 CHAR *textA;
2447 UINT countA, alloc_size;
2448 TRACE("Allocating 32-bit ANSI alias buffer\n");
2449 countA = WideCharToMultiByte(CP_ACP, 0, es->text, -1, NULL, 0, NULL, NULL);
2450 alloc_size = ROUND_TO_GROW(countA);
2451 if(!(es->hloc32A = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, alloc_size)))
2453 ERR("Could not allocate %d bytes for 32-bit ANSI alias buffer\n", alloc_size);
2454 return 0;
2456 textA = LocalLock(es->hloc32A);
2457 WideCharToMultiByte(CP_ACP, 0, es->text, -1, textA, countA, NULL, NULL);
2458 LocalUnlock(es->hloc32A);
2460 hLocal = es->hloc32A;
2463 EDIT_UnlockBuffer(es, TRUE);
2465 /* The text buffer handle belongs to the app */
2466 es->hlocapp = hLocal;
2468 TRACE("Returning %p, LocalSize() = %ld\n", hLocal, LocalSize(hLocal));
2469 return hLocal;
2473 /*********************************************************************
2475 * EM_GETLINE
2478 static INT EDIT_EM_GetLine(EDITSTATE *es, INT line, LPWSTR dst, BOOL unicode)
2480 LPWSTR src;
2481 INT line_len, dst_len;
2482 INT i;
2484 if (es->style & ES_MULTILINE) {
2485 if (line >= es->line_count)
2486 return 0;
2487 } else
2488 line = 0;
2489 i = EDIT_EM_LineIndex(es, line);
2490 src = es->text + i;
2491 line_len = EDIT_EM_LineLength(es, i);
2492 dst_len = *(WORD *)dst;
2493 if(unicode)
2495 if(dst_len <= line_len)
2497 memcpy(dst, src, dst_len * sizeof(WCHAR));
2498 return dst_len;
2500 else /* Append 0 if enough space */
2502 memcpy(dst, src, line_len * sizeof(WCHAR));
2503 dst[line_len] = 0;
2504 return line_len;
2507 else
2509 INT ret = WideCharToMultiByte(CP_ACP, 0, src, line_len, (LPSTR)dst, dst_len, NULL, NULL);
2510 if(!ret && line_len) /* Insufficient buffer size */
2511 return dst_len;
2512 if(ret < dst_len) /* Append 0 if enough space */
2513 ((LPSTR)dst)[ret] = 0;
2514 return ret;
2519 /*********************************************************************
2521 * EM_GETSEL
2524 static LRESULT EDIT_EM_GetSel(const EDITSTATE *es, PUINT start, PUINT end)
2526 UINT s = es->selection_start;
2527 UINT e = es->selection_end;
2529 ORDER_UINT(s, e);
2530 if (start)
2531 *start = s;
2532 if (end)
2533 *end = e;
2534 return MAKELONG(s, e);
2538 /*********************************************************************
2540 * EM_REPLACESEL
2542 * FIXME: handle ES_NUMBER and ES_OEMCONVERT here
2545 static void EDIT_EM_ReplaceSel(EDITSTATE *es, BOOL can_undo, const WCHAR *lpsz_replace, UINT strl,
2546 BOOL send_update, BOOL honor_limit)
2548 UINT tl = get_text_length(es);
2549 UINT utl;
2550 UINT s;
2551 UINT e;
2552 UINT i;
2553 UINT size;
2554 LPWSTR p;
2555 HRGN hrgn = 0;
2556 LPWSTR buf = NULL;
2557 UINT bufl;
2559 TRACE("%s, can_undo %d, send_update %d\n",
2560 debugstr_wn(lpsz_replace, strl), can_undo, send_update);
2562 s = es->selection_start;
2563 e = es->selection_end;
2565 EDIT_InvalidateUniscribeData(es);
2566 if ((s == e) && !strl)
2567 return;
2569 ORDER_UINT(s, e);
2571 size = tl - (e - s) + strl;
2572 if (!size)
2573 es->text_width = 0;
2575 /* Issue the EN_MAXTEXT notification and continue with replacing text
2576 * so that buffer limit is honored. */
2577 if ((honor_limit) && (size > es->buffer_limit)) {
2578 EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
2579 /* Buffer limit can be smaller than the actual length of text in combobox */
2580 if (es->buffer_limit < (tl - (e-s)))
2581 strl = 0;
2582 else
2583 strl = min(strl, es->buffer_limit - (tl - (e-s)));
2586 if (!EDIT_MakeFit(es, tl - (e - s) + strl))
2587 return;
2589 if (e != s) {
2590 /* there is something to be deleted */
2591 TRACE("deleting stuff.\n");
2592 bufl = e - s;
2593 buf = HeapAlloc(GetProcessHeap(), 0, (bufl + 1) * sizeof(WCHAR));
2594 if (!buf) return;
2595 memcpy(buf, es->text + s, bufl * sizeof(WCHAR));
2596 buf[bufl] = 0; /* ensure 0 termination */
2597 /* now delete */
2598 strcpyW(es->text + s, es->text + e);
2599 text_buffer_changed(es);
2601 if (strl) {
2602 /* there is an insertion */
2603 tl = get_text_length(es);
2604 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));
2605 for (p = es->text + tl ; p >= es->text + s ; p--)
2606 p[strl] = p[0];
2607 for (i = 0 , p = es->text + s ; i < strl ; i++)
2608 p[i] = lpsz_replace[i];
2609 if(es->style & ES_UPPERCASE)
2610 CharUpperBuffW(p, strl);
2611 else if(es->style & ES_LOWERCASE)
2612 CharLowerBuffW(p, strl);
2613 text_buffer_changed(es);
2615 if (es->style & ES_MULTILINE)
2617 INT st = min(es->selection_start, es->selection_end);
2618 INT vlc = get_vertical_line_count(es);
2620 hrgn = CreateRectRgn(0, 0, 0, 0);
2621 EDIT_BuildLineDefs_ML(es, st, st + strl,
2622 strl - abs(es->selection_end - es->selection_start), hrgn);
2623 /* if text is too long undo all changes */
2624 if (honor_limit && !(es->style & ES_AUTOVSCROLL) && (es->line_count > vlc)) {
2625 if (strl)
2626 strcpyW(es->text + e, es->text + e + strl);
2627 if (e != s)
2628 for (i = 0 , p = es->text ; i < e - s ; i++)
2629 p[i + s] = buf[i];
2630 text_buffer_changed(es);
2631 EDIT_BuildLineDefs_ML(es, s, e,
2632 abs(es->selection_end - es->selection_start) - strl, hrgn);
2633 strl = 0;
2634 e = s;
2635 hrgn = CreateRectRgn(0, 0, 0, 0);
2636 EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
2639 else {
2640 INT fw = es->format_rect.right - es->format_rect.left;
2641 EDIT_InvalidateUniscribeData(es);
2642 EDIT_CalcLineWidth_SL(es);
2643 /* remove chars that don't fit */
2644 if (honor_limit && !(es->style & ES_AUTOHSCROLL) && (es->text_width > fw)) {
2645 while ((es->text_width > fw) && s + strl >= s) {
2646 strcpyW(es->text + s + strl - 1, es->text + s + strl);
2647 strl--;
2648 es->text_length = -1;
2649 EDIT_InvalidateUniscribeData(es);
2650 EDIT_CalcLineWidth_SL(es);
2652 text_buffer_changed(es);
2653 EDIT_NOTIFY_PARENT(es, EN_MAXTEXT);
2657 if (e != s) {
2658 if (can_undo) {
2659 utl = strlenW(es->undo_text);
2660 if (!es->undo_insert_count && (*es->undo_text && (s == es->undo_position))) {
2661 /* undo-buffer is extended to the right */
2662 EDIT_MakeUndoFit(es, utl + e - s);
2663 memcpy(es->undo_text + utl, buf, (e - s)*sizeof(WCHAR));
2664 (es->undo_text + utl)[e - s] = 0; /* ensure 0 termination */
2665 } else if (!es->undo_insert_count && (*es->undo_text && (e == es->undo_position))) {
2666 /* undo-buffer is extended to the left */
2667 EDIT_MakeUndoFit(es, utl + e - s);
2668 for (p = es->undo_text + utl ; p >= es->undo_text ; p--)
2669 p[e - s] = p[0];
2670 for (i = 0 , p = es->undo_text ; i < e - s ; i++)
2671 p[i] = buf[i];
2672 es->undo_position = s;
2673 } else {
2674 /* new undo-buffer */
2675 EDIT_MakeUndoFit(es, e - s);
2676 memcpy(es->undo_text, buf, (e - s)*sizeof(WCHAR));
2677 es->undo_text[e - s] = 0; /* ensure 0 termination */
2678 es->undo_position = s;
2680 /* any deletion makes the old insertion-undo invalid */
2681 es->undo_insert_count = 0;
2682 } else
2683 EDIT_EM_EmptyUndoBuffer(es);
2685 if (strl) {
2686 if (can_undo) {
2687 if ((s == es->undo_position) ||
2688 ((es->undo_insert_count) &&
2689 (s == es->undo_position + es->undo_insert_count)))
2691 * insertion is new and at delete position or
2692 * an extension to either left or right
2694 es->undo_insert_count += strl;
2695 else {
2696 /* new insertion undo */
2697 es->undo_position = s;
2698 es->undo_insert_count = strl;
2699 /* new insertion makes old delete-buffer invalid */
2700 *es->undo_text = '\0';
2702 } else
2703 EDIT_EM_EmptyUndoBuffer(es);
2706 HeapFree(GetProcessHeap(), 0, buf);
2708 s += strl;
2710 /* If text has been deleted and we're right or center aligned then scroll rightward */
2711 if (es->style & (ES_RIGHT | ES_CENTER))
2713 INT delta = strl - abs(es->selection_end - es->selection_start);
2715 if (delta < 0 && es->x_offset)
2717 if (abs(delta) > es->x_offset)
2718 es->x_offset = 0;
2719 else
2720 es->x_offset += delta;
2724 EDIT_EM_SetSel(es, s, s, FALSE);
2725 es->flags |= EF_MODIFIED;
2726 if (send_update) es->flags |= EF_UPDATE;
2727 if (hrgn)
2729 EDIT_UpdateTextRegion(es, hrgn, TRUE);
2730 DeleteObject(hrgn);
2732 else
2733 EDIT_UpdateText(es, NULL, TRUE);
2735 EDIT_EM_ScrollCaret(es);
2737 /* force scroll info update */
2738 EDIT_UpdateScrollInfo(es);
2741 if(send_update || (es->flags & EF_UPDATE))
2743 es->flags &= ~EF_UPDATE;
2744 EDIT_NOTIFY_PARENT(es, EN_CHANGE);
2746 EDIT_InvalidateUniscribeData(es);
2750 /*********************************************************************
2752 * EM_SETHANDLE
2754 * FIXME: ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
2757 static void EDIT_EM_SetHandle(EDITSTATE *es, HLOCAL hloc)
2759 if (!(es->style & ES_MULTILINE))
2760 return;
2762 if (!hloc) {
2763 WARN("called with NULL handle\n");
2764 return;
2767 EDIT_UnlockBuffer(es, TRUE);
2769 if(es->is_unicode)
2771 if(es->hloc32A)
2773 LocalFree(es->hloc32A);
2774 es->hloc32A = NULL;
2776 es->hloc32W = hloc;
2778 else
2780 INT countW, countA;
2781 HLOCAL hloc32W_new;
2782 WCHAR *textW;
2783 CHAR *textA;
2785 countA = LocalSize(hloc);
2786 textA = LocalLock(hloc);
2787 countW = MultiByteToWideChar(CP_ACP, 0, textA, countA, NULL, 0);
2788 if(!(hloc32W_new = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, countW * sizeof(WCHAR))))
2790 ERR("Could not allocate new unicode buffer\n");
2791 return;
2793 textW = LocalLock(hloc32W_new);
2794 MultiByteToWideChar(CP_ACP, 0, textA, countA, textW, countW);
2795 LocalUnlock(hloc32W_new);
2796 LocalUnlock(hloc);
2798 if(es->hloc32W)
2799 LocalFree(es->hloc32W);
2801 es->hloc32W = hloc32W_new;
2802 es->hloc32A = hloc;
2805 es->buffer_size = LocalSize(es->hloc32W)/sizeof(WCHAR) - 1;
2807 /* The text buffer handle belongs to the control */
2808 es->hlocapp = NULL;
2810 EDIT_LockBuffer(es);
2811 text_buffer_changed(es);
2813 es->x_offset = es->y_offset = 0;
2814 es->selection_start = es->selection_end = 0;
2815 EDIT_EM_EmptyUndoBuffer(es);
2816 es->flags &= ~EF_MODIFIED;
2817 es->flags &= ~EF_UPDATE;
2818 EDIT_BuildLineDefs_ML(es, 0, get_text_length(es), 0, NULL);
2819 EDIT_UpdateText(es, NULL, TRUE);
2820 EDIT_EM_ScrollCaret(es);
2821 /* force scroll info update */
2822 EDIT_UpdateScrollInfo(es);
2826 /*********************************************************************
2828 * EM_SETLIMITTEXT
2830 * NOTE: this version currently implements WinNT limits
2833 static void EDIT_EM_SetLimitText(EDITSTATE *es, UINT limit)
2835 if (!limit) limit = ~0u;
2836 if (!(es->style & ES_MULTILINE)) limit = min(limit, 0x7ffffffe);
2837 es->buffer_limit = limit;
2841 /*********************************************************************
2843 * EM_SETMARGINS
2845 * EC_USEFONTINFO is used as a left or right value i.e. lParam and not as an
2846 * action wParam despite what the docs say. EC_USEFONTINFO calculates the
2847 * margin according to the textmetrics of the current font.
2849 * When EC_USEFONTINFO is used in the non_cjk case the margins only
2850 * change if the edit control is equal to or larger than a certain
2851 * size. Though there is an exception for the empty client rect case
2852 * with small font sizes.
2854 static BOOL is_cjk(UINT charset)
2856 switch(charset)
2858 case SHIFTJIS_CHARSET:
2859 case HANGUL_CHARSET:
2860 case GB2312_CHARSET:
2861 case CHINESEBIG5_CHARSET:
2862 return TRUE;
2864 /* HANGUL_CHARSET is strange, though treated as CJK by Win 8, it is
2865 * not by other versions including Win 10. */
2866 return FALSE;
2869 static void EDIT_EM_SetMargins(EDITSTATE *es, INT action,
2870 WORD left, WORD right, BOOL repaint)
2872 TEXTMETRICW tm;
2873 INT default_left_margin = 0; /* in pixels */
2874 INT default_right_margin = 0; /* in pixels */
2876 /* Set the default margins depending on the font */
2877 if (es->font && (left == EC_USEFONTINFO || right == EC_USEFONTINFO)) {
2878 HDC dc = GetDC(es->hwndSelf);
2879 HFONT old_font = SelectObject(dc, es->font);
2880 LONG width = GdiGetCharDimensions(dc, &tm, NULL);
2881 RECT rc;
2883 /* The default margins are only non zero for TrueType or Vector fonts */
2884 if (tm.tmPitchAndFamily & ( TMPF_VECTOR | TMPF_TRUETYPE )) {
2885 if (!is_cjk(tm.tmCharSet)) {
2886 default_left_margin = width / 2;
2887 default_right_margin = width / 2;
2889 GetClientRect(es->hwndSelf, &rc);
2890 if (rc.right - rc.left < (width / 2 + width) * 2 &&
2891 (width >= 28 || !IsRectEmpty(&rc)) ) {
2892 default_left_margin = es->left_margin;
2893 default_right_margin = es->right_margin;
2895 } else {
2896 /* FIXME: figure out the CJK values. They are not affected by the client rect. */
2897 default_left_margin = width / 2;
2898 default_right_margin = width / 2;
2901 SelectObject(dc, old_font);
2902 ReleaseDC(es->hwndSelf, dc);
2905 if (action & EC_LEFTMARGIN) {
2906 es->format_rect.left -= es->left_margin;
2907 if (left != EC_USEFONTINFO)
2908 es->left_margin = left;
2909 else
2910 es->left_margin = default_left_margin;
2911 es->format_rect.left += es->left_margin;
2914 if (action & EC_RIGHTMARGIN) {
2915 es->format_rect.right += es->right_margin;
2916 if (right != EC_USEFONTINFO)
2917 es->right_margin = right;
2918 else
2919 es->right_margin = default_right_margin;
2920 es->format_rect.right -= es->right_margin;
2923 if (action & (EC_LEFTMARGIN | EC_RIGHTMARGIN)) {
2924 EDIT_AdjustFormatRect(es);
2925 if (repaint) EDIT_UpdateText(es, NULL, TRUE);
2928 TRACE("left=%d, right=%d\n", es->left_margin, es->right_margin);
2932 /*********************************************************************
2934 * EM_SETPASSWORDCHAR
2937 static void EDIT_EM_SetPasswordChar(EDITSTATE *es, WCHAR c)
2939 LONG style;
2941 if (es->style & ES_MULTILINE)
2942 return;
2944 if (es->password_char == c)
2945 return;
2947 style = GetWindowLongW( es->hwndSelf, GWL_STYLE );
2948 es->password_char = c;
2949 if (c) {
2950 SetWindowLongW( es->hwndSelf, GWL_STYLE, style | ES_PASSWORD );
2951 es->style |= ES_PASSWORD;
2952 } else {
2953 SetWindowLongW( es->hwndSelf, GWL_STYLE, style & ~ES_PASSWORD );
2954 es->style &= ~ES_PASSWORD;
2956 EDIT_InvalidateUniscribeData(es);
2957 EDIT_UpdateText(es, NULL, TRUE);
2961 /*********************************************************************
2963 * EM_SETTABSTOPS
2966 static BOOL EDIT_EM_SetTabStops(EDITSTATE *es, INT count, const INT *tabs)
2968 if (!(es->style & ES_MULTILINE))
2969 return FALSE;
2970 HeapFree(GetProcessHeap(), 0, es->tabs);
2971 es->tabs_count = count;
2972 if (!count)
2973 es->tabs = NULL;
2974 else {
2975 es->tabs = HeapAlloc(GetProcessHeap(), 0, count * sizeof(INT));
2976 memcpy(es->tabs, tabs, count * sizeof(INT));
2978 EDIT_InvalidateUniscribeData(es);
2979 return TRUE;
2983 /*********************************************************************
2985 * EM_SETWORDBREAKPROC
2988 static void EDIT_EM_SetWordBreakProc(EDITSTATE *es, void *wbp)
2990 if (es->word_break_proc == wbp)
2991 return;
2993 es->word_break_proc = wbp;
2995 if ((es->style & ES_MULTILINE) && !(es->style & ES_AUTOHSCROLL)) {
2996 EDIT_BuildLineDefs_ML(es, 0, get_text_length(es), 0, NULL);
2997 EDIT_UpdateText(es, NULL, TRUE);
3002 /*********************************************************************
3004 * EM_UNDO / WM_UNDO
3007 static BOOL EDIT_EM_Undo(EDITSTATE *es)
3009 INT ulength;
3010 LPWSTR utext;
3012 /* As per MSDN spec, for a single-line edit control,
3013 the return value is always TRUE */
3014 if( es->style & ES_READONLY )
3015 return !(es->style & ES_MULTILINE);
3017 ulength = strlenW(es->undo_text);
3019 utext = HeapAlloc(GetProcessHeap(), 0, (ulength + 1) * sizeof(WCHAR));
3021 strcpyW(utext, es->undo_text);
3023 TRACE("before UNDO:insertion length = %d, deletion buffer = %s\n",
3024 es->undo_insert_count, debugstr_w(utext));
3026 EDIT_EM_SetSel(es, es->undo_position, es->undo_position + es->undo_insert_count, FALSE);
3027 EDIT_EM_EmptyUndoBuffer(es);
3028 EDIT_EM_ReplaceSel(es, TRUE, utext, ulength, TRUE, TRUE);
3029 EDIT_EM_SetSel(es, es->undo_position, es->undo_position + es->undo_insert_count, FALSE);
3030 /* send the notification after the selection start and end are set */
3031 EDIT_NOTIFY_PARENT(es, EN_CHANGE);
3032 EDIT_EM_ScrollCaret(es);
3033 HeapFree(GetProcessHeap(), 0, utext);
3035 TRACE("after UNDO:insertion length = %d, deletion buffer = %s\n",
3036 es->undo_insert_count, debugstr_w(es->undo_text));
3037 return TRUE;
3041 /* Helper function for WM_CHAR
3043 * According to an MSDN blog article titled "Just because you're a control
3044 * doesn't mean that you're necessarily inside a dialog box," multiline edit
3045 * controls without ES_WANTRETURN would attempt to detect whether it is inside
3046 * a dialog box or not.
3048 static inline BOOL EDIT_IsInsideDialog(EDITSTATE *es)
3050 return (es->flags & EF_DIALOGMODE);
3054 /*********************************************************************
3056 * WM_PASTE
3059 static void EDIT_WM_Paste(EDITSTATE *es)
3061 HGLOBAL hsrc;
3062 LPWSTR src, ptr;
3063 int len;
3065 /* Protect read-only edit control from modification */
3066 if(es->style & ES_READONLY)
3067 return;
3069 OpenClipboard(es->hwndSelf);
3070 if ((hsrc = GetClipboardData(CF_UNICODETEXT))) {
3071 src = GlobalLock(hsrc);
3072 len = strlenW(src);
3073 /* Protect single-line edit against pasting new line character */
3074 if (!(es->style & ES_MULTILINE) && ((ptr = strchrW(src, '\n')))) {
3075 len = ptr - src;
3076 if (len && src[len - 1] == '\r')
3077 --len;
3079 EDIT_EM_ReplaceSel(es, TRUE, src, len, TRUE, TRUE);
3080 GlobalUnlock(hsrc);
3082 else if (es->style & ES_PASSWORD) {
3083 /* clear selected text in password edit box even with empty clipboard */
3084 EDIT_EM_ReplaceSel(es, TRUE, NULL, 0, TRUE, TRUE);
3086 CloseClipboard();
3090 /*********************************************************************
3092 * WM_COPY
3095 static void EDIT_WM_Copy(EDITSTATE *es)
3097 INT s = min(es->selection_start, es->selection_end);
3098 INT e = max(es->selection_start, es->selection_end);
3099 HGLOBAL hdst;
3100 LPWSTR dst;
3101 DWORD len;
3103 if (e == s) return;
3105 len = e - s;
3106 hdst = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, (len + 1) * sizeof(WCHAR));
3107 dst = GlobalLock(hdst);
3108 memcpy(dst, es->text + s, len * sizeof(WCHAR));
3109 dst[len] = 0; /* ensure 0 termination */
3110 TRACE("%s\n", debugstr_w(dst));
3111 GlobalUnlock(hdst);
3112 OpenClipboard(es->hwndSelf);
3113 EmptyClipboard();
3114 SetClipboardData(CF_UNICODETEXT, hdst);
3115 CloseClipboard();
3119 /*********************************************************************
3121 * WM_CLEAR
3124 static inline void EDIT_WM_Clear(EDITSTATE *es)
3126 /* Protect read-only edit control from modification */
3127 if(es->style & ES_READONLY)
3128 return;
3130 EDIT_EM_ReplaceSel(es, TRUE, NULL, 0, TRUE, TRUE);
3134 /*********************************************************************
3136 * WM_CUT
3139 static inline void EDIT_WM_Cut(EDITSTATE *es)
3141 EDIT_WM_Copy(es);
3142 EDIT_WM_Clear(es);
3146 /*********************************************************************
3148 * WM_CHAR
3151 static LRESULT EDIT_WM_Char(EDITSTATE *es, WCHAR c)
3153 BOOL control;
3155 control = GetKeyState(VK_CONTROL) & 0x8000;
3157 switch (c) {
3158 case '\r':
3159 /* If it's not a multiline edit box, it would be ignored below.
3160 * For multiline edit without ES_WANTRETURN, we have to make a
3161 * special case.
3163 if ((es->style & ES_MULTILINE) && !(es->style & ES_WANTRETURN))
3164 if (EDIT_IsInsideDialog(es))
3165 break;
3166 case '\n':
3167 if (es->style & ES_MULTILINE) {
3168 if (es->style & ES_READONLY) {
3169 EDIT_MoveHome(es, FALSE, FALSE);
3170 EDIT_MoveDown_ML(es, FALSE);
3171 } else {
3172 static const WCHAR cr_lfW[] = {'\r','\n'};
3173 EDIT_EM_ReplaceSel(es, TRUE, cr_lfW, 2, TRUE, TRUE);
3176 break;
3177 case '\t':
3178 if ((es->style & ES_MULTILINE) && !(es->style & ES_READONLY))
3180 static const WCHAR tabW[] = {'\t'};
3181 if (EDIT_IsInsideDialog(es))
3182 break;
3183 EDIT_EM_ReplaceSel(es, TRUE, tabW, 1, TRUE, TRUE);
3185 break;
3186 case VK_BACK:
3187 if (!(es->style & ES_READONLY) && !control) {
3188 if (es->selection_start != es->selection_end)
3189 EDIT_WM_Clear(es);
3190 else {
3191 /* delete character left of caret */
3192 EDIT_EM_SetSel(es, (UINT)-1, 0, FALSE);
3193 EDIT_MoveBackward(es, TRUE);
3194 EDIT_WM_Clear(es);
3197 break;
3198 case 0x03: /* ^C */
3199 if (!(es->style & ES_PASSWORD))
3200 SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
3201 break;
3202 case 0x16: /* ^V */
3203 if (!(es->style & ES_READONLY))
3204 SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
3205 break;
3206 case 0x18: /* ^X */
3207 if (!((es->style & ES_READONLY) || (es->style & ES_PASSWORD)))
3208 SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
3209 break;
3210 case 0x1A: /* ^Z */
3211 if (!(es->style & ES_READONLY))
3212 SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
3213 break;
3215 default:
3216 /*If Edit control style is ES_NUMBER allow users to key in only numeric values*/
3217 if( (es->style & ES_NUMBER) && !( c >= '0' && c <= '9') )
3218 break;
3220 if (!(es->style & ES_READONLY) && (c >= ' ') && (c != 127))
3221 EDIT_EM_ReplaceSel(es, TRUE, &c, 1, TRUE, TRUE);
3222 break;
3224 return 1;
3228 /*********************************************************************
3230 * EDIT_ContextMenuCommand
3233 static void EDIT_ContextMenuCommand(EDITSTATE *es, UINT id)
3235 switch (id) {
3236 case EM_UNDO:
3237 SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
3238 break;
3239 case WM_CUT:
3240 SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
3241 break;
3242 case WM_COPY:
3243 SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
3244 break;
3245 case WM_PASTE:
3246 SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
3247 break;
3248 case WM_CLEAR:
3249 SendMessageW(es->hwndSelf, WM_CLEAR, 0, 0);
3250 break;
3251 case EM_SETSEL:
3252 SendMessageW(es->hwndSelf, EM_SETSEL, 0, -1);
3253 break;
3254 default:
3255 ERR("unknown menu item, please report\n");
3256 break;
3261 /*********************************************************************
3263 * WM_CONTEXTMENU
3265 * Note: the resource files resource/sysres_??.rc cannot define a
3266 * single popup menu. Hence we use a (dummy) menubar
3267 * containing the single popup menu as its first item.
3269 * FIXME: the message identifiers have been chosen arbitrarily,
3270 * hence we use MF_BYPOSITION.
3271 * We might as well use the "real" values (anybody knows ?)
3272 * The menu definition is in resources/sysres_??.rc.
3273 * Once these are OK, we better use MF_BYCOMMAND here
3274 * (as we do in EDIT_WM_Command()).
3277 static void EDIT_WM_ContextMenu(EDITSTATE *es, INT x, INT y)
3279 HMENU menu = LoadMenuA(user32_module, "EDITMENU");
3280 HMENU popup = GetSubMenu(menu, 0);
3281 UINT start = es->selection_start;
3282 UINT end = es->selection_end;
3283 UINT cmd;
3285 ORDER_UINT(start, end);
3287 /* undo */
3288 EnableMenuItem(popup, 0, MF_BYPOSITION | (EDIT_EM_CanUndo(es) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3289 /* cut */
3290 EnableMenuItem(popup, 2, MF_BYPOSITION | ((end - start) && !(es->style & ES_PASSWORD) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3291 /* copy */
3292 EnableMenuItem(popup, 3, MF_BYPOSITION | ((end - start) && !(es->style & ES_PASSWORD) ? MF_ENABLED : MF_GRAYED));
3293 /* paste */
3294 EnableMenuItem(popup, 4, MF_BYPOSITION | (IsClipboardFormatAvailable(CF_UNICODETEXT) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3295 /* delete */
3296 EnableMenuItem(popup, 5, MF_BYPOSITION | ((end - start) && !(es->style & ES_READONLY) ? MF_ENABLED : MF_GRAYED));
3297 /* select all */
3298 EnableMenuItem(popup, 7, MF_BYPOSITION | (start || (end != get_text_length(es)) ? MF_ENABLED : MF_GRAYED));
3300 if (x == -1 && y == -1) /* passed via VK_APPS press/release */
3302 RECT rc;
3303 /* Windows places the menu at the edit's center in this case */
3304 WIN_GetRectangles( es->hwndSelf, COORDS_SCREEN, NULL, &rc );
3305 x = rc.left + (rc.right - rc.left) / 2;
3306 y = rc.top + (rc.bottom - rc.top) / 2;
3309 if (!(es->flags & EF_FOCUSED))
3310 SetFocus(es->hwndSelf);
3312 cmd = TrackPopupMenu(popup, TPM_LEFTALIGN | TPM_RIGHTBUTTON | TPM_RETURNCMD | TPM_NONOTIFY,
3313 x, y, 0, es->hwndSelf, NULL);
3315 if (cmd)
3316 EDIT_ContextMenuCommand(es, cmd);
3318 DestroyMenu(menu);
3322 /*********************************************************************
3324 * WM_GETTEXT
3327 static INT EDIT_WM_GetText(const EDITSTATE *es, INT count, LPWSTR dst, BOOL unicode)
3329 if(!count) return 0;
3331 if(unicode)
3333 lstrcpynW(dst, es->text, count);
3334 return strlenW(dst);
3336 else
3338 LPSTR textA = (LPSTR)dst;
3339 if (!WideCharToMultiByte(CP_ACP, 0, es->text, -1, textA, count, NULL, NULL))
3340 textA[count - 1] = 0; /* ensure 0 termination */
3341 return strlen(textA);
3345 /*********************************************************************
3347 * EDIT_CheckCombo
3350 static BOOL EDIT_CheckCombo(EDITSTATE *es, UINT msg, INT key)
3352 HWND hLBox = es->hwndListBox;
3353 HWND hCombo;
3354 BOOL bDropped;
3355 int nEUI;
3357 if (!hLBox)
3358 return FALSE;
3360 hCombo = GetParent(es->hwndSelf);
3361 bDropped = TRUE;
3362 nEUI = 0;
3364 TRACE_(combo)("[%p]: handling msg %x (%x)\n", es->hwndSelf, msg, key);
3366 if (key == VK_UP || key == VK_DOWN)
3368 if (SendMessageW(hCombo, CB_GETEXTENDEDUI, 0, 0))
3369 nEUI = 1;
3371 if (msg == WM_KEYDOWN || nEUI)
3372 bDropped = (BOOL)SendMessageW(hCombo, CB_GETDROPPEDSTATE, 0, 0);
3375 switch (msg)
3377 case WM_KEYDOWN:
3378 if (!bDropped && nEUI && (key == VK_UP || key == VK_DOWN))
3380 /* make sure ComboLBox pops up */
3381 SendMessageW(hCombo, CB_SETEXTENDEDUI, FALSE, 0);
3382 key = VK_F4;
3383 nEUI = 2;
3386 SendMessageW(hLBox, WM_KEYDOWN, key, 0);
3387 break;
3389 case WM_SYSKEYDOWN: /* Handle Alt+up/down arrows */
3390 if (nEUI)
3391 SendMessageW(hCombo, CB_SHOWDROPDOWN, !bDropped, 0);
3392 else
3393 SendMessageW(hLBox, WM_KEYDOWN, VK_F4, 0);
3394 break;
3397 if(nEUI == 2)
3398 SendMessageW(hCombo, CB_SETEXTENDEDUI, TRUE, 0);
3400 return TRUE;
3404 /*********************************************************************
3406 * WM_KEYDOWN
3408 * Handling of special keys that don't produce a WM_CHAR
3409 * (i.e. non-printable keys) & Backspace & Delete
3412 static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
3414 BOOL shift;
3415 BOOL control;
3417 if (GetKeyState(VK_MENU) & 0x8000)
3418 return 0;
3420 shift = GetKeyState(VK_SHIFT) & 0x8000;
3421 control = GetKeyState(VK_CONTROL) & 0x8000;
3423 switch (key) {
3424 case VK_F4:
3425 case VK_UP:
3426 if (EDIT_CheckCombo(es, WM_KEYDOWN, key) || key == VK_F4)
3427 break;
3429 /* fall through */
3430 case VK_LEFT:
3431 if ((es->style & ES_MULTILINE) && (key == VK_UP))
3432 EDIT_MoveUp_ML(es, shift);
3433 else
3434 if (control)
3435 EDIT_MoveWordBackward(es, shift);
3436 else
3437 EDIT_MoveBackward(es, shift);
3438 break;
3439 case VK_DOWN:
3440 if (EDIT_CheckCombo(es, WM_KEYDOWN, key))
3441 break;
3442 /* fall through */
3443 case VK_RIGHT:
3444 if ((es->style & ES_MULTILINE) && (key == VK_DOWN))
3445 EDIT_MoveDown_ML(es, shift);
3446 else if (control)
3447 EDIT_MoveWordForward(es, shift);
3448 else
3449 EDIT_MoveForward(es, shift);
3450 break;
3451 case VK_HOME:
3452 EDIT_MoveHome(es, shift, control);
3453 break;
3454 case VK_END:
3455 EDIT_MoveEnd(es, shift, control);
3456 break;
3457 case VK_PRIOR:
3458 if (es->style & ES_MULTILINE)
3459 EDIT_MovePageUp_ML(es, shift);
3460 else
3461 EDIT_CheckCombo(es, WM_KEYDOWN, key);
3462 break;
3463 case VK_NEXT:
3464 if (es->style & ES_MULTILINE)
3465 EDIT_MovePageDown_ML(es, shift);
3466 else
3467 EDIT_CheckCombo(es, WM_KEYDOWN, key);
3468 break;
3469 case VK_DELETE:
3470 if (!(es->style & ES_READONLY) && !(shift && control)) {
3471 if (es->selection_start != es->selection_end) {
3472 if (shift)
3473 EDIT_WM_Cut(es);
3474 else
3475 EDIT_WM_Clear(es);
3476 } else {
3477 EDIT_EM_SetSel(es, ~0u, 0, FALSE);
3478 if (shift)
3479 /* delete character left of caret */
3480 EDIT_MoveBackward(es, TRUE);
3481 else if (control)
3482 /* delete to end of line */
3483 EDIT_MoveEnd(es, TRUE, FALSE);
3484 else
3485 /* delete character right of caret */
3486 EDIT_MoveForward(es, TRUE);
3487 EDIT_WM_Clear(es);
3490 break;
3491 case VK_INSERT:
3492 if (shift) {
3493 if (!(es->style & ES_READONLY))
3494 EDIT_WM_Paste(es);
3495 } else if (control)
3496 EDIT_WM_Copy(es);
3497 break;
3498 case VK_RETURN:
3499 /* If the edit doesn't want the return send a message to the default object */
3500 if(!(es->style & ES_MULTILINE) || !(es->style & ES_WANTRETURN))
3502 DWORD dw;
3504 if (!EDIT_IsInsideDialog(es)) break;
3505 if (control) break;
3506 dw = SendMessageW(es->hwndParent, DM_GETDEFID, 0, 0);
3507 if (HIWORD(dw) == DC_HASDEFID)
3509 HWND hwDefCtrl = GetDlgItem(es->hwndParent, LOWORD(dw));
3510 if (hwDefCtrl)
3512 SendMessageW(es->hwndParent, WM_NEXTDLGCTL, (WPARAM)hwDefCtrl, TRUE);
3513 PostMessageW(hwDefCtrl, WM_KEYDOWN, VK_RETURN, 0);
3517 break;
3518 case VK_ESCAPE:
3519 if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es))
3520 PostMessageW(es->hwndParent, WM_CLOSE, 0, 0);
3521 break;
3522 case VK_TAB:
3523 if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es))
3524 SendMessageW(es->hwndParent, WM_NEXTDLGCTL, shift, 0);
3525 break;
3527 return TRUE;
3531 /*********************************************************************
3533 * WM_KILLFOCUS
3536 static LRESULT EDIT_WM_KillFocus(EDITSTATE *es)
3538 es->flags &= ~EF_FOCUSED;
3539 DestroyCaret();
3540 if(!(es->style & ES_NOHIDESEL))
3541 EDIT_InvalidateText(es, es->selection_start, es->selection_end);
3542 EDIT_NOTIFY_PARENT(es, EN_KILLFOCUS);
3543 /* throw away left over scroll when we lose focus */
3544 es->wheelDeltaRemainder = 0;
3545 return 0;
3549 /*********************************************************************
3551 * WM_LBUTTONDBLCLK
3553 * The caret position has been set on the WM_LBUTTONDOWN message
3556 static LRESULT EDIT_WM_LButtonDblClk(EDITSTATE *es)
3558 INT s;
3559 INT e = es->selection_end;
3560 INT l;
3561 INT li;
3562 INT ll;
3564 es->bCaptureState = TRUE;
3565 SetCapture(es->hwndSelf);
3567 l = EDIT_EM_LineFromChar(es, e);
3568 li = EDIT_EM_LineIndex(es, l);
3569 ll = EDIT_EM_LineLength(es, e);
3570 s = li + EDIT_CallWordBreakProc(es, li, e - li, ll, WB_LEFT);
3571 e = li + EDIT_CallWordBreakProc(es, li, e - li, ll, WB_RIGHT);
3572 EDIT_EM_SetSel(es, s, e, FALSE);
3573 EDIT_EM_ScrollCaret(es);
3574 es->region_posx = es->region_posy = 0;
3575 SetTimer(es->hwndSelf, 0, 100, NULL);
3576 return 0;
3580 /*********************************************************************
3582 * WM_LBUTTONDOWN
3585 static LRESULT EDIT_WM_LButtonDown(EDITSTATE *es, DWORD keys, INT x, INT y)
3587 INT e;
3588 BOOL after_wrap;
3590 es->bCaptureState = TRUE;
3591 SetCapture(es->hwndSelf);
3592 EDIT_ConfinePoint(es, &x, &y);
3593 e = EDIT_CharFromPos(es, x, y, &after_wrap);
3594 EDIT_EM_SetSel(es, (keys & MK_SHIFT) ? es->selection_start : e, e, after_wrap);
3595 EDIT_EM_ScrollCaret(es);
3596 es->region_posx = es->region_posy = 0;
3597 SetTimer(es->hwndSelf, 0, 100, NULL);
3599 if (!(es->flags & EF_FOCUSED))
3600 SetFocus(es->hwndSelf);
3602 return 0;
3606 /*********************************************************************
3608 * WM_LBUTTONUP
3611 static LRESULT EDIT_WM_LButtonUp(EDITSTATE *es)
3613 if (es->bCaptureState) {
3614 KillTimer(es->hwndSelf, 0);
3615 if (GetCapture() == es->hwndSelf) ReleaseCapture();
3617 es->bCaptureState = FALSE;
3618 return 0;
3622 /*********************************************************************
3624 * WM_MBUTTONDOWN
3627 static LRESULT EDIT_WM_MButtonDown(EDITSTATE *es)
3629 SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
3630 return 0;
3634 /*********************************************************************
3636 * WM_MOUSEMOVE
3639 static LRESULT EDIT_WM_MouseMove(EDITSTATE *es, INT x, INT y)
3641 INT e;
3642 BOOL after_wrap;
3643 INT prex, prey;
3645 /* If the mouse has been captured by process other than the edit control itself,
3646 * the windows edit controls will not select the strings with mouse move.
3648 if (!es->bCaptureState || GetCapture() != es->hwndSelf)
3649 return 0;
3652 * FIXME: gotta do some scrolling if outside client
3653 * area. Maybe reset the timer ?
3655 prex = x; prey = y;
3656 EDIT_ConfinePoint(es, &x, &y);
3657 es->region_posx = (prex < x) ? -1 : ((prex > x) ? 1 : 0);
3658 es->region_posy = (prey < y) ? -1 : ((prey > y) ? 1 : 0);
3659 e = EDIT_CharFromPos(es, x, y, &after_wrap);
3660 EDIT_EM_SetSel(es, es->selection_start, e, after_wrap);
3661 EDIT_SetCaretPos(es,es->selection_end,es->flags & EF_AFTER_WRAP);
3662 return 0;
3666 /*********************************************************************
3668 * WM_PAINT
3671 static void EDIT_WM_Paint(EDITSTATE *es, HDC hdc)
3673 PAINTSTRUCT ps;
3674 INT i;
3675 HDC dc;
3676 HFONT old_font = 0;
3677 RECT rc;
3678 RECT rcClient;
3679 RECT rcLine;
3680 RECT rcRgn;
3681 HBRUSH brush;
3682 HBRUSH old_brush;
3683 INT bw, bh;
3684 BOOL rev = es->bEnableState &&
3685 ((es->flags & EF_FOCUSED) ||
3686 (es->style & ES_NOHIDESEL));
3687 dc = hdc ? hdc : BeginPaint(es->hwndSelf, &ps);
3689 /* The dc we use for calculating may not be the one we paint into.
3690 This is the safest action. */
3691 EDIT_InvalidateUniscribeData(es);
3692 GetClientRect(es->hwndSelf, &rcClient);
3694 /* get the background brush */
3695 brush = EDIT_NotifyCtlColor(es, dc);
3697 /* paint the border and the background */
3698 IntersectClipRect(dc, rcClient.left, rcClient.top, rcClient.right, rcClient.bottom);
3700 if(es->style & WS_BORDER) {
3701 bw = GetSystemMetrics(SM_CXBORDER);
3702 bh = GetSystemMetrics(SM_CYBORDER);
3703 rc = rcClient;
3704 if(es->style & ES_MULTILINE) {
3705 if(es->style & WS_HSCROLL) rc.bottom+=bh;
3706 if(es->style & WS_VSCROLL) rc.right+=bw;
3709 /* Draw the frame. Same code as in nonclient.c */
3710 old_brush = SelectObject(dc, GetSysColorBrush(COLOR_WINDOWFRAME));
3711 PatBlt(dc, rc.left, rc.top, rc.right - rc.left, bh, PATCOPY);
3712 PatBlt(dc, rc.left, rc.top, bw, rc.bottom - rc.top, PATCOPY);
3713 PatBlt(dc, rc.left, rc.bottom - 1, rc.right - rc.left, -bw, PATCOPY);
3714 PatBlt(dc, rc.right - 1, rc.top, -bw, rc.bottom - rc.top, PATCOPY);
3715 SelectObject(dc, old_brush);
3717 /* Keep the border clean */
3718 IntersectClipRect(dc, rc.left+bw, rc.top+bh,
3719 max(rc.right-bw, rc.left+bw), max(rc.bottom-bh, rc.top+bh));
3722 GetClipBox(dc, &rc);
3723 FillRect(dc, &rc, brush);
3725 IntersectClipRect(dc, es->format_rect.left,
3726 es->format_rect.top,
3727 es->format_rect.right,
3728 es->format_rect.bottom);
3729 if (es->style & ES_MULTILINE) {
3730 rc = rcClient;
3731 IntersectClipRect(dc, rc.left, rc.top, rc.right, rc.bottom);
3733 if (es->font)
3734 old_font = SelectObject(dc, es->font);
3736 if (!es->bEnableState)
3737 SetTextColor(dc, GetSysColor(COLOR_GRAYTEXT));
3738 GetClipBox(dc, &rcRgn);
3739 if (es->style & ES_MULTILINE) {
3740 INT vlc = get_vertical_line_count(es);
3741 for (i = es->y_offset ; i <= min(es->y_offset + vlc, es->y_offset + es->line_count - 1) ; i++) {
3742 EDIT_UpdateUniscribeData(es, dc, i);
3743 EDIT_GetLineRect(es, i, 0, -1, &rcLine);
3744 if (IntersectRect(&rc, &rcRgn, &rcLine))
3745 EDIT_PaintLine(es, dc, i, rev);
3747 } else {
3748 EDIT_UpdateUniscribeData(es, dc, 0);
3749 EDIT_GetLineRect(es, 0, 0, -1, &rcLine);
3750 if (IntersectRect(&rc, &rcRgn, &rcLine))
3751 EDIT_PaintLine(es, dc, 0, rev);
3753 if (es->font)
3754 SelectObject(dc, old_font);
3756 if (!hdc)
3757 EndPaint(es->hwndSelf, &ps);
3761 /*********************************************************************
3763 * WM_SETFOCUS
3766 static void EDIT_WM_SetFocus(EDITSTATE *es)
3768 es->flags |= EF_FOCUSED;
3770 if (!(es->style & ES_NOHIDESEL))
3771 EDIT_InvalidateText(es, es->selection_start, es->selection_end);
3773 /* single line edit updates itself */
3774 if (IsWindowVisible(es->hwndSelf) && !(es->style & ES_MULTILINE))
3776 HDC hdc = GetDC(es->hwndSelf);
3777 EDIT_WM_Paint(es, hdc);
3778 ReleaseDC(es->hwndSelf, hdc);
3781 CreateCaret(es->hwndSelf, 0, 1, es->line_height);
3782 EDIT_SetCaretPos(es, es->selection_end,
3783 es->flags & EF_AFTER_WRAP);
3784 ShowCaret(es->hwndSelf);
3785 EDIT_NOTIFY_PARENT(es, EN_SETFOCUS);
3789 /*********************************************************************
3791 * WM_SETFONT
3793 * With Win95 look the margins are set to default font value unless
3794 * the system font (font == 0) is being set, in which case they are left
3795 * unchanged.
3798 static void EDIT_WM_SetFont(EDITSTATE *es, HFONT font, BOOL redraw)
3800 TEXTMETRICW tm;
3801 HDC dc;
3802 HFONT old_font = 0;
3803 RECT clientRect;
3805 es->font = font;
3806 EDIT_InvalidateUniscribeData(es);
3807 dc = GetDC(es->hwndSelf);
3808 if (font)
3809 old_font = SelectObject(dc, font);
3810 GetTextMetricsW(dc, &tm);
3811 es->line_height = tm.tmHeight;
3812 es->char_width = tm.tmAveCharWidth;
3813 if (font)
3814 SelectObject(dc, old_font);
3815 ReleaseDC(es->hwndSelf, dc);
3817 /* Reset the format rect and the margins */
3818 GetClientRect(es->hwndSelf, &clientRect);
3819 EDIT_SetRectNP(es, &clientRect);
3820 EDIT_EM_SetMargins(es, EC_LEFTMARGIN | EC_RIGHTMARGIN,
3821 EC_USEFONTINFO, EC_USEFONTINFO, FALSE);
3823 if (es->style & ES_MULTILINE)
3824 EDIT_BuildLineDefs_ML(es, 0, get_text_length(es), 0, NULL);
3825 else
3826 EDIT_CalcLineWidth_SL(es);
3828 if (redraw)
3829 EDIT_UpdateText(es, NULL, TRUE);
3830 if (es->flags & EF_FOCUSED) {
3831 DestroyCaret();
3832 CreateCaret(es->hwndSelf, 0, 1, es->line_height);
3833 EDIT_SetCaretPos(es, es->selection_end,
3834 es->flags & EF_AFTER_WRAP);
3835 ShowCaret(es->hwndSelf);
3840 /*********************************************************************
3842 * WM_SETTEXT
3844 * NOTES
3845 * For multiline controls (ES_MULTILINE), reception of WM_SETTEXT triggers:
3846 * The modified flag is reset. No notifications are sent.
3848 * For single-line controls, reception of WM_SETTEXT triggers:
3849 * The modified flag is reset. EN_UPDATE and EN_CHANGE notifications are sent.
3852 static void EDIT_WM_SetText(EDITSTATE *es, LPCWSTR text, BOOL unicode)
3854 LPWSTR textW = NULL;
3855 if (!unicode && text)
3857 LPCSTR textA = (LPCSTR)text;
3858 INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
3859 textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR));
3860 if (textW)
3861 MultiByteToWideChar(CP_ACP, 0, textA, -1, textW, countW);
3862 text = textW;
3865 if (es->flags & EF_UPDATE)
3866 /* fixed this bug once; complain if we see it about to happen again. */
3867 ERR("SetSel may generate UPDATE message whose handler may reset "
3868 "selection.\n");
3870 EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
3871 if (text)
3873 TRACE("%s\n", debugstr_w(text));
3874 EDIT_EM_ReplaceSel(es, FALSE, text, strlenW(text), FALSE, FALSE);
3875 if(!unicode)
3876 HeapFree(GetProcessHeap(), 0, textW);
3878 else
3880 TRACE("<NULL>\n");
3881 EDIT_EM_ReplaceSel(es, FALSE, NULL, 0, FALSE, FALSE);
3883 es->x_offset = 0;
3884 es->flags &= ~EF_MODIFIED;
3885 EDIT_EM_SetSel(es, 0, 0, FALSE);
3887 /* Send the notification after the selection start and end have been set
3888 * edit control doesn't send notification on WM_SETTEXT
3889 * if it is multiline, or it is part of combobox
3891 if( !((es->style & ES_MULTILINE) || es->hwndListBox))
3893 EDIT_NOTIFY_PARENT(es, EN_UPDATE);
3894 EDIT_NOTIFY_PARENT(es, EN_CHANGE);
3896 EDIT_EM_ScrollCaret(es);
3897 EDIT_UpdateScrollInfo(es);
3898 EDIT_InvalidateUniscribeData(es);
3902 /*********************************************************************
3904 * WM_SIZE
3907 static void EDIT_WM_Size(EDITSTATE *es, UINT action)
3909 if ((action == SIZE_MAXIMIZED) || (action == SIZE_RESTORED)) {
3910 RECT rc;
3911 GetClientRect(es->hwndSelf, &rc);
3912 EDIT_SetRectNP(es, &rc);
3913 EDIT_UpdateText(es, NULL, TRUE);
3918 /*********************************************************************
3920 * WM_STYLECHANGED
3922 * This message is sent by SetWindowLong on having changed either the Style
3923 * or the extended style.
3925 * We ensure that the window's version of the styles and the EDITSTATE's agree.
3927 * See also EDIT_WM_NCCreate
3929 * It appears that the Windows version of the edit control allows the style
3930 * (as retrieved by GetWindowLong) to be any value and maintains an internal
3931 * style variable which will generally be different. In this function we
3932 * update the internal style based on what changed in the externally visible
3933 * style.
3935 * Much of this content as based upon the MSDN, especially:
3936 * Platform SDK Documentation -> User Interface Services ->
3937 * Windows User Interface -> Edit Controls -> Edit Control Reference ->
3938 * Edit Control Styles
3940 static LRESULT EDIT_WM_StyleChanged ( EDITSTATE *es, WPARAM which, const STYLESTRUCT *style)
3942 if (GWL_STYLE == which) {
3943 DWORD style_change_mask;
3944 DWORD new_style;
3945 /* Only a subset of changes can be applied after the control
3946 * has been created.
3948 style_change_mask = ES_UPPERCASE | ES_LOWERCASE |
3949 ES_NUMBER;
3950 if (es->style & ES_MULTILINE)
3951 style_change_mask |= ES_WANTRETURN;
3953 new_style = style->styleNew & style_change_mask;
3955 /* Number overrides lowercase overrides uppercase (at least it
3956 * does in Win95). However I'll bet that ES_NUMBER would be
3957 * invalid under Win 3.1.
3959 if (new_style & ES_NUMBER) {
3960 ; /* do not override the ES_NUMBER */
3961 } else if (new_style & ES_LOWERCASE) {
3962 new_style &= ~ES_UPPERCASE;
3965 es->style = (es->style & ~style_change_mask) | new_style;
3966 } else if (GWL_EXSTYLE == which) {
3967 ; /* FIXME - what is needed here */
3968 } else {
3969 WARN ("Invalid style change %ld\n",which);
3972 return 0;
3975 /*********************************************************************
3977 * WM_SYSKEYDOWN
3980 static LRESULT EDIT_WM_SysKeyDown(EDITSTATE *es, INT key, DWORD key_data)
3982 if ((key == VK_BACK) && (key_data & 0x2000)) {
3983 if (EDIT_EM_CanUndo(es))
3984 EDIT_EM_Undo(es);
3985 return 0;
3986 } else if (key == VK_UP || key == VK_DOWN) {
3987 if (EDIT_CheckCombo(es, WM_SYSKEYDOWN, key))
3988 return 0;
3990 return DefWindowProcW(es->hwndSelf, WM_SYSKEYDOWN, key, key_data);
3994 /*********************************************************************
3996 * WM_TIMER
3999 static void EDIT_WM_Timer(EDITSTATE *es)
4001 if (es->region_posx < 0) {
4002 EDIT_MoveBackward(es, TRUE);
4003 } else if (es->region_posx > 0) {
4004 EDIT_MoveForward(es, TRUE);
4007 * FIXME: gotta do some vertical scrolling here, like
4008 * EDIT_EM_LineScroll(hwnd, 0, 1);
4012 /*********************************************************************
4014 * WM_HSCROLL
4017 static LRESULT EDIT_WM_HScroll(EDITSTATE *es, INT action, INT pos)
4019 INT dx;
4020 INT fw;
4022 if (!(es->style & ES_MULTILINE))
4023 return 0;
4025 if (!(es->style & ES_AUTOHSCROLL))
4026 return 0;
4028 dx = 0;
4029 fw = es->format_rect.right - es->format_rect.left;
4030 switch (action) {
4031 case SB_LINELEFT:
4032 TRACE("SB_LINELEFT\n");
4033 if (es->x_offset)
4034 dx = -es->char_width;
4035 break;
4036 case SB_LINERIGHT:
4037 TRACE("SB_LINERIGHT\n");
4038 if (es->x_offset < es->text_width)
4039 dx = es->char_width;
4040 break;
4041 case SB_PAGELEFT:
4042 TRACE("SB_PAGELEFT\n");
4043 if (es->x_offset)
4044 dx = -fw / HSCROLL_FRACTION / es->char_width * es->char_width;
4045 break;
4046 case SB_PAGERIGHT:
4047 TRACE("SB_PAGERIGHT\n");
4048 if (es->x_offset < es->text_width)
4049 dx = fw / HSCROLL_FRACTION / es->char_width * es->char_width;
4050 break;
4051 case SB_LEFT:
4052 TRACE("SB_LEFT\n");
4053 if (es->x_offset)
4054 dx = -es->x_offset;
4055 break;
4056 case SB_RIGHT:
4057 TRACE("SB_RIGHT\n");
4058 if (es->x_offset < es->text_width)
4059 dx = es->text_width - es->x_offset;
4060 break;
4061 case SB_THUMBTRACK:
4062 TRACE("SB_THUMBTRACK %d\n", pos);
4063 es->flags |= EF_HSCROLL_TRACK;
4064 if(es->style & WS_HSCROLL)
4065 dx = pos - es->x_offset;
4066 else
4068 INT fw, new_x;
4069 /* Sanity check */
4070 if(pos < 0 || pos > 100) return 0;
4071 /* Assume default scroll range 0-100 */
4072 fw = es->format_rect.right - es->format_rect.left;
4073 new_x = pos * (es->text_width - fw) / 100;
4074 dx = es->text_width ? (new_x - es->x_offset) : 0;
4076 break;
4077 case SB_THUMBPOSITION:
4078 TRACE("SB_THUMBPOSITION %d\n", pos);
4079 es->flags &= ~EF_HSCROLL_TRACK;
4080 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_HSCROLL)
4081 dx = pos - es->x_offset;
4082 else
4084 INT fw, new_x;
4085 /* Sanity check */
4086 if(pos < 0 || pos > 100) return 0;
4087 /* Assume default scroll range 0-100 */
4088 fw = es->format_rect.right - es->format_rect.left;
4089 new_x = pos * (es->text_width - fw) / 100;
4090 dx = es->text_width ? (new_x - es->x_offset) : 0;
4092 if (!dx) {
4093 /* force scroll info update */
4094 EDIT_UpdateScrollInfo(es);
4095 EDIT_NOTIFY_PARENT(es, EN_HSCROLL);
4097 break;
4098 case SB_ENDSCROLL:
4099 TRACE("SB_ENDSCROLL\n");
4100 break;
4102 * FIXME : the next two are undocumented !
4103 * Are we doing the right thing ?
4104 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4105 * although it's also a regular control message.
4107 case EM_GETTHUMB: /* this one is used by NT notepad */
4109 LRESULT ret;
4110 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_HSCROLL)
4111 ret = GetScrollPos(es->hwndSelf, SB_HORZ);
4112 else
4114 /* Assume default scroll range 0-100 */
4115 INT fw = es->format_rect.right - es->format_rect.left;
4116 ret = es->text_width ? es->x_offset * 100 / (es->text_width - fw) : 0;
4118 TRACE("EM_GETTHUMB: returning %ld\n", ret);
4119 return ret;
4121 case EM_LINESCROLL:
4122 TRACE("EM_LINESCROLL16\n");
4123 dx = pos;
4124 break;
4126 default:
4127 ERR("undocumented WM_HSCROLL action %d (0x%04x), please report\n",
4128 action, action);
4129 return 0;
4131 if (dx)
4133 INT fw = es->format_rect.right - es->format_rect.left;
4134 /* check if we are going to move too far */
4135 if(es->x_offset + dx + fw > es->text_width)
4136 dx = es->text_width - fw - es->x_offset;
4137 if(dx)
4138 EDIT_EM_LineScroll_internal(es, dx, 0);
4140 return 0;
4144 /*********************************************************************
4146 * WM_VSCROLL
4149 static LRESULT EDIT_WM_VScroll(EDITSTATE *es, INT action, INT pos)
4151 INT dy;
4153 if (!(es->style & ES_MULTILINE))
4154 return 0;
4156 if (!(es->style & ES_AUTOVSCROLL))
4157 return 0;
4159 dy = 0;
4160 switch (action) {
4161 case SB_LINEUP:
4162 case SB_LINEDOWN:
4163 case SB_PAGEUP:
4164 case SB_PAGEDOWN:
4165 TRACE("action %d (%s)\n", action, (action == SB_LINEUP ? "SB_LINEUP" :
4166 (action == SB_LINEDOWN ? "SB_LINEDOWN" :
4167 (action == SB_PAGEUP ? "SB_PAGEUP" :
4168 "SB_PAGEDOWN"))));
4169 EDIT_EM_Scroll(es, action);
4170 return 0;
4171 case SB_TOP:
4172 TRACE("SB_TOP\n");
4173 dy = -es->y_offset;
4174 break;
4175 case SB_BOTTOM:
4176 TRACE("SB_BOTTOM\n");
4177 dy = es->line_count - 1 - es->y_offset;
4178 break;
4179 case SB_THUMBTRACK:
4180 TRACE("SB_THUMBTRACK %d\n", pos);
4181 es->flags |= EF_VSCROLL_TRACK;
4182 if(es->style & WS_VSCROLL)
4183 dy = pos - es->y_offset;
4184 else
4186 /* Assume default scroll range 0-100 */
4187 INT vlc, new_y;
4188 /* Sanity check */
4189 if(pos < 0 || pos > 100) return 0;
4190 vlc = get_vertical_line_count(es);
4191 new_y = pos * (es->line_count - vlc) / 100;
4192 dy = es->line_count ? (new_y - es->y_offset) : 0;
4193 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
4194 es->line_count, es->y_offset, pos, dy);
4196 break;
4197 case SB_THUMBPOSITION:
4198 TRACE("SB_THUMBPOSITION %d\n", pos);
4199 es->flags &= ~EF_VSCROLL_TRACK;
4200 if(es->style & WS_VSCROLL)
4201 dy = pos - es->y_offset;
4202 else
4204 /* Assume default scroll range 0-100 */
4205 INT vlc, new_y;
4206 /* Sanity check */
4207 if(pos < 0 || pos > 100) return 0;
4208 vlc = get_vertical_line_count(es);
4209 new_y = pos * (es->line_count - vlc) / 100;
4210 dy = es->line_count ? (new_y - es->y_offset) : 0;
4211 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
4212 es->line_count, es->y_offset, pos, dy);
4214 if (!dy)
4216 /* force scroll info update */
4217 EDIT_UpdateScrollInfo(es);
4218 EDIT_NOTIFY_PARENT(es, EN_VSCROLL);
4220 break;
4221 case SB_ENDSCROLL:
4222 TRACE("SB_ENDSCROLL\n");
4223 break;
4225 * FIXME : the next two are undocumented !
4226 * Are we doing the right thing ?
4227 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4228 * although it's also a regular control message.
4230 case EM_GETTHUMB: /* this one is used by NT notepad */
4232 LRESULT ret;
4233 if(GetWindowLongW( es->hwndSelf, GWL_STYLE ) & WS_VSCROLL)
4234 ret = GetScrollPos(es->hwndSelf, SB_VERT);
4235 else
4237 /* Assume default scroll range 0-100 */
4238 INT vlc = get_vertical_line_count(es);
4239 ret = es->line_count ? es->y_offset * 100 / (es->line_count - vlc) : 0;
4241 TRACE("EM_GETTHUMB: returning %ld\n", ret);
4242 return ret;
4244 case EM_LINESCROLL:
4245 TRACE("EM_LINESCROLL %d\n", pos);
4246 dy = pos;
4247 break;
4249 default:
4250 ERR("undocumented WM_VSCROLL action %d (0x%04x), please report\n",
4251 action, action);
4252 return 0;
4254 if (dy)
4255 EDIT_EM_LineScroll(es, 0, dy);
4256 return 0;
4259 /*********************************************************************
4261 * EM_GETTHUMB
4263 * FIXME: is this right ? (or should it be only VSCROLL)
4264 * (and maybe only for edit controls that really have their
4265 * own scrollbars) (and maybe only for multiline controls ?)
4266 * All in all: very poorly documented
4269 static LRESULT EDIT_EM_GetThumb(EDITSTATE *es)
4271 return MAKELONG(EDIT_WM_VScroll(es, EM_GETTHUMB, 0),
4272 EDIT_WM_HScroll(es, EM_GETTHUMB, 0));
4276 /********************************************************************
4278 * The Following code is to handle inline editing from IMEs
4281 static void EDIT_GetCompositionStr(HIMC hIMC, LPARAM CompFlag, EDITSTATE *es)
4283 LONG buflen;
4284 LPWSTR lpCompStr;
4285 LPSTR lpCompStrAttr = NULL;
4286 DWORD dwBufLenAttr;
4288 buflen = ImmGetCompositionStringW(hIMC, GCS_COMPSTR, NULL, 0);
4290 if (buflen < 0)
4292 return;
4295 lpCompStr = HeapAlloc(GetProcessHeap(),0,buflen);
4296 if (!lpCompStr)
4298 ERR("Unable to allocate IME CompositionString\n");
4299 return;
4302 if (buflen)
4303 ImmGetCompositionStringW(hIMC, GCS_COMPSTR, lpCompStr, buflen);
4305 if (CompFlag & GCS_COMPATTR)
4308 * We do not use the attributes yet. it would tell us what characters
4309 * are in transition and which are converted or decided upon
4311 dwBufLenAttr = ImmGetCompositionStringW(hIMC, GCS_COMPATTR, NULL, 0);
4312 if (dwBufLenAttr)
4314 dwBufLenAttr ++;
4315 lpCompStrAttr = HeapAlloc(GetProcessHeap(),0,dwBufLenAttr+1);
4316 if (!lpCompStrAttr)
4318 ERR("Unable to allocate IME Attribute String\n");
4319 HeapFree(GetProcessHeap(),0,lpCompStr);
4320 return;
4322 ImmGetCompositionStringW(hIMC,GCS_COMPATTR, lpCompStrAttr,
4323 dwBufLenAttr);
4324 lpCompStrAttr[dwBufLenAttr] = 0;
4328 /* check for change in composition start */
4329 if (es->selection_end < es->composition_start)
4330 es->composition_start = es->selection_end;
4332 /* replace existing selection string */
4333 es->selection_start = es->composition_start;
4335 if (es->composition_len > 0)
4336 es->selection_end = es->composition_start + es->composition_len;
4337 else
4338 es->selection_end = es->selection_start;
4340 EDIT_EM_ReplaceSel(es, FALSE, lpCompStr, buflen / sizeof(WCHAR), TRUE, TRUE);
4341 es->composition_len = abs(es->composition_start - es->selection_end);
4343 es->selection_start = es->composition_start;
4344 es->selection_end = es->selection_start + es->composition_len;
4346 HeapFree(GetProcessHeap(),0,lpCompStrAttr);
4347 HeapFree(GetProcessHeap(),0,lpCompStr);
4350 static void EDIT_GetResultStr(HIMC hIMC, EDITSTATE *es)
4352 LONG buflen;
4353 LPWSTR lpResultStr;
4355 buflen = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
4356 if (buflen <= 0)
4358 return;
4361 lpResultStr = HeapAlloc(GetProcessHeap(),0, buflen);
4362 if (!lpResultStr)
4364 ERR("Unable to alloc buffer for IME string\n");
4365 return;
4368 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, lpResultStr, buflen);
4370 /* check for change in composition start */
4371 if (es->selection_end < es->composition_start)
4372 es->composition_start = es->selection_end;
4374 es->selection_start = es->composition_start;
4375 es->selection_end = es->composition_start + es->composition_len;
4376 EDIT_EM_ReplaceSel(es, TRUE, lpResultStr, buflen / sizeof(WCHAR), TRUE, TRUE);
4377 es->composition_start = es->selection_end;
4378 es->composition_len = 0;
4380 HeapFree(GetProcessHeap(),0,lpResultStr);
4383 static void EDIT_ImeComposition(HWND hwnd, LPARAM CompFlag, EDITSTATE *es)
4385 HIMC hIMC;
4386 int cursor;
4388 if (es->composition_len == 0 && es->selection_start != es->selection_end)
4390 EDIT_EM_ReplaceSel(es, TRUE, NULL, 0, TRUE, TRUE);
4391 es->composition_start = es->selection_end;
4394 hIMC = ImmGetContext(hwnd);
4395 if (!hIMC)
4396 return;
4398 if (CompFlag & GCS_RESULTSTR)
4400 EDIT_GetResultStr(hIMC, es);
4401 cursor = 0;
4403 else
4405 if (CompFlag & GCS_COMPSTR)
4406 EDIT_GetCompositionStr(hIMC, CompFlag, es);
4407 cursor = ImmGetCompositionStringW(hIMC, GCS_CURSORPOS, 0, 0);
4409 ImmReleaseContext(hwnd, hIMC);
4410 EDIT_SetCaretPos(es, es->selection_start + cursor, es->flags & EF_AFTER_WRAP);
4414 /*********************************************************************
4416 * WM_NCCREATE
4418 * See also EDIT_WM_StyleChanged
4420 static LRESULT EDIT_WM_NCCreate(HWND hwnd, LPCREATESTRUCTW lpcs, BOOL unicode)
4422 EDITSTATE *es;
4423 UINT alloc_size;
4425 TRACE("Creating %s edit control, style = %08x\n",
4426 unicode ? "Unicode" : "ANSI", lpcs->style);
4428 if (!(es = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*es))))
4429 return FALSE;
4430 SetWindowLongPtrW( hwnd, 0, (LONG_PTR)es );
4433 * Note: since the EDITSTATE has not been fully initialized yet,
4434 * we can't use any API calls that may send
4435 * WM_XXX messages before WM_NCCREATE is completed.
4438 es->is_unicode = unicode;
4439 es->style = lpcs->style;
4441 es->bEnableState = !(es->style & WS_DISABLED);
4443 es->hwndSelf = hwnd;
4444 /* Save parent, which will be notified by EN_* messages */
4445 es->hwndParent = lpcs->hwndParent;
4447 if (es->style & ES_COMBO)
4448 es->hwndListBox = GetDlgItem(es->hwndParent, ID_CB_LISTBOX);
4450 /* FIXME: should we handle changes to WS_EX_RIGHT style after creation? */
4451 if (lpcs->dwExStyle & WS_EX_RIGHT) es->style |= ES_RIGHT;
4453 /* Number overrides lowercase overrides uppercase (at least it
4454 * does in Win95). However I'll bet that ES_NUMBER would be
4455 * invalid under Win 3.1.
4457 if (es->style & ES_NUMBER) {
4458 ; /* do not override the ES_NUMBER */
4459 } else if (es->style & ES_LOWERCASE) {
4460 es->style &= ~ES_UPPERCASE;
4462 if (es->style & ES_MULTILINE) {
4463 es->buffer_limit = BUFLIMIT_INITIAL;
4464 if (es->style & WS_VSCROLL)
4465 es->style |= ES_AUTOVSCROLL;
4466 if (es->style & WS_HSCROLL)
4467 es->style |= ES_AUTOHSCROLL;
4468 es->style &= ~ES_PASSWORD;
4469 if ((es->style & ES_CENTER) || (es->style & ES_RIGHT)) {
4470 /* Confirmed - RIGHT overrides CENTER */
4471 if (es->style & ES_RIGHT)
4472 es->style &= ~ES_CENTER;
4473 es->style &= ~WS_HSCROLL;
4474 es->style &= ~ES_AUTOHSCROLL;
4476 } else {
4477 es->buffer_limit = BUFLIMIT_INITIAL;
4478 if ((es->style & ES_RIGHT) && (es->style & ES_CENTER))
4479 es->style &= ~ES_CENTER;
4480 es->style &= ~WS_HSCROLL;
4481 es->style &= ~WS_VSCROLL;
4482 if (es->style & ES_PASSWORD)
4483 es->password_char = '*';
4486 alloc_size = ROUND_TO_GROW((es->buffer_size + 1) * sizeof(WCHAR));
4487 if(!(es->hloc32W = LocalAlloc(LMEM_MOVEABLE | LMEM_ZEROINIT, alloc_size)))
4488 goto cleanup;
4489 es->buffer_size = LocalSize(es->hloc32W)/sizeof(WCHAR) - 1;
4491 if (!(es->undo_text = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (es->buffer_size + 1) * sizeof(WCHAR))))
4492 goto cleanup;
4493 es->undo_buffer_size = es->buffer_size;
4495 if (es->style & ES_MULTILINE)
4496 if (!(es->first_line_def = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(LINEDEF))))
4497 goto cleanup;
4498 es->line_count = 1;
4501 * In Win95 look and feel, the WS_BORDER style is replaced by the
4502 * WS_EX_CLIENTEDGE style for the edit control. This gives the edit
4503 * control a nonclient area so we don't need to draw the border.
4504 * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
4505 * a nonclient area and we should handle painting the border ourselves.
4507 * When making modifications please ensure that the code still works
4508 * for edit controls created directly with style 0x50800000, exStyle 0
4509 * (which should have a single pixel border)
4511 if (lpcs->dwExStyle & WS_EX_CLIENTEDGE)
4512 es->style &= ~WS_BORDER;
4513 else if (es->style & WS_BORDER)
4514 SetWindowLongW(hwnd, GWL_STYLE, es->style & ~WS_BORDER);
4516 return TRUE;
4518 cleanup:
4519 SetWindowLongPtrW(es->hwndSelf, 0, 0);
4520 EDIT_InvalidateUniscribeData(es);
4521 HeapFree(GetProcessHeap(), 0, es->first_line_def);
4522 HeapFree(GetProcessHeap(), 0, es->undo_text);
4523 if (es->hloc32W) LocalFree(es->hloc32W);
4524 HeapFree(GetProcessHeap(), 0, es->logAttr);
4525 HeapFree(GetProcessHeap(), 0, es);
4526 return FALSE;
4530 /*********************************************************************
4532 * WM_CREATE
4535 static LRESULT EDIT_WM_Create(EDITSTATE *es, LPCWSTR name)
4537 RECT clientRect;
4539 TRACE("%s\n", debugstr_w(name));
4541 * To initialize some final structure members, we call some helper
4542 * functions. However, since the EDITSTATE is not consistent (i.e.
4543 * not fully initialized), we should be very careful which
4544 * functions can be called, and in what order.
4546 EDIT_WM_SetFont(es, 0, FALSE);
4547 EDIT_EM_EmptyUndoBuffer(es);
4549 /* We need to calculate the format rect
4550 (applications may send EM_SETMARGINS before the control gets visible) */
4551 GetClientRect(es->hwndSelf, &clientRect);
4552 EDIT_SetRectNP(es, &clientRect);
4554 if (name && *name) {
4555 EDIT_EM_ReplaceSel(es, FALSE, name, strlenW(name), FALSE, FALSE);
4556 /* if we insert text to the editline, the text scrolls out
4557 * of the window, as the caret is placed after the insert
4558 * pos normally; thus we reset es->selection... to 0 and
4559 * update caret
4561 es->selection_start = es->selection_end = 0;
4562 /* Adobe Photoshop does NOT like this. and MSDN says that EN_CHANGE
4563 * Messages are only to be sent when the USER does something to
4564 * change the contents. So I am removing this EN_CHANGE
4566 * EDIT_NOTIFY_PARENT(es, EN_CHANGE);
4568 EDIT_EM_ScrollCaret(es);
4570 /* force scroll info update */
4571 EDIT_UpdateScrollInfo(es);
4572 /* The rule seems to return 1 here for success */
4573 /* Power Builder masked edit controls will crash */
4574 /* if not. */
4575 /* FIXME: is that in all cases so ? */
4576 return 1;
4580 /*********************************************************************
4582 * WM_NCDESTROY
4585 static LRESULT EDIT_WM_NCDestroy(EDITSTATE *es)
4587 LINEDEF *pc, *pp;
4589 /* The app can own the text buffer handle */
4590 if (es->hloc32W && (es->hloc32W != es->hlocapp)) {
4591 LocalFree(es->hloc32W);
4593 if (es->hloc32A && (es->hloc32A != es->hlocapp)) {
4594 LocalFree(es->hloc32A);
4596 EDIT_InvalidateUniscribeData(es);
4597 pc = es->first_line_def;
4598 while (pc)
4600 pp = pc->next;
4601 HeapFree(GetProcessHeap(), 0, pc);
4602 pc = pp;
4605 SetWindowLongPtrW( es->hwndSelf, 0, 0 );
4606 HeapFree(GetProcessHeap(), 0, es->undo_text);
4607 HeapFree(GetProcessHeap(), 0, es);
4609 return 0;
4613 static inline LRESULT DefWindowProcT(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode)
4615 if(unicode)
4616 return DefWindowProcW(hwnd, msg, wParam, lParam);
4617 else
4618 return DefWindowProcA(hwnd, msg, wParam, lParam);
4621 /*********************************************************************
4623 * EditWndProc_common
4625 * The messages are in the order of the actual integer values
4626 * (which can be found in include/windows.h)
4628 LRESULT EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode )
4630 EDITSTATE *es = (EDITSTATE *)GetWindowLongPtrW( hwnd, 0 );
4631 LRESULT result = 0;
4633 TRACE("hwnd=%p msg=%x (%s) wparam=%lx lparam=%lx\n", hwnd, msg, SPY_GetMsgName(msg, hwnd), wParam, lParam);
4635 if (!es && msg != WM_NCCREATE)
4636 return DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
4638 if (es && (msg != WM_NCDESTROY)) EDIT_LockBuffer(es);
4640 switch (msg) {
4641 case EM_GETSEL:
4642 result = EDIT_EM_GetSel(es, (PUINT)wParam, (PUINT)lParam);
4643 break;
4645 case EM_SETSEL:
4646 EDIT_EM_SetSel(es, wParam, lParam, FALSE);
4647 EDIT_EM_ScrollCaret(es);
4648 result = 1;
4649 break;
4651 case EM_GETRECT:
4652 if (lParam)
4653 *((LPRECT)lParam) = es->format_rect;
4654 break;
4656 case EM_SETRECT:
4657 if ((es->style & ES_MULTILINE) && lParam) {
4658 EDIT_SetRectNP(es, (LPRECT)lParam);
4659 EDIT_UpdateText(es, NULL, TRUE);
4661 break;
4663 case EM_SETRECTNP:
4664 if ((es->style & ES_MULTILINE) && lParam)
4665 EDIT_SetRectNP(es, (LPRECT)lParam);
4666 break;
4668 case EM_SCROLL:
4669 result = EDIT_EM_Scroll(es, (INT)wParam);
4670 break;
4672 case EM_LINESCROLL:
4673 result = (LRESULT)EDIT_EM_LineScroll(es, (INT)wParam, (INT)lParam);
4674 break;
4676 case EM_SCROLLCARET:
4677 EDIT_EM_ScrollCaret(es);
4678 result = 1;
4679 break;
4681 case EM_GETMODIFY:
4682 result = ((es->flags & EF_MODIFIED) != 0);
4683 break;
4685 case EM_SETMODIFY:
4686 if (wParam)
4687 es->flags |= EF_MODIFIED;
4688 else
4689 es->flags &= ~(EF_MODIFIED | EF_UPDATE); /* reset pending updates */
4690 break;
4692 case EM_GETLINECOUNT:
4693 result = (es->style & ES_MULTILINE) ? es->line_count : 1;
4694 break;
4696 case EM_LINEINDEX:
4697 result = (LRESULT)EDIT_EM_LineIndex(es, (INT)wParam);
4698 break;
4700 case EM_SETHANDLE:
4701 EDIT_EM_SetHandle(es, (HLOCAL)wParam);
4702 break;
4704 case EM_GETHANDLE:
4705 result = (LRESULT)EDIT_EM_GetHandle(es);
4706 break;
4708 case EM_GETTHUMB:
4709 result = EDIT_EM_GetThumb(es);
4710 break;
4712 /* these messages missing from specs */
4713 case 0x00bf:
4714 case 0x00c0:
4715 case 0x00c3:
4716 case 0x00ca:
4717 FIXME("undocumented message 0x%x, please report\n", msg);
4718 result = DefWindowProcW(hwnd, msg, wParam, lParam);
4719 break;
4721 case EM_LINELENGTH:
4722 result = (LRESULT)EDIT_EM_LineLength(es, (INT)wParam);
4723 break;
4725 case EM_REPLACESEL:
4727 LPWSTR textW;
4729 if(unicode)
4730 textW = (LPWSTR)lParam;
4731 else
4733 LPSTR textA = (LPSTR)lParam;
4734 INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
4735 if (!(textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR)))) break;
4736 MultiByteToWideChar(CP_ACP, 0, textA, -1, textW, countW);
4739 EDIT_EM_ReplaceSel(es, (BOOL)wParam, textW, strlenW(textW), TRUE, TRUE);
4740 result = 1;
4742 if(!unicode)
4743 HeapFree(GetProcessHeap(), 0, textW);
4744 break;
4747 case EM_GETLINE:
4748 result = (LRESULT)EDIT_EM_GetLine(es, (INT)wParam, (LPWSTR)lParam, unicode);
4749 break;
4751 case EM_SETLIMITTEXT:
4752 EDIT_EM_SetLimitText(es, wParam);
4753 break;
4755 case EM_CANUNDO:
4756 result = (LRESULT)EDIT_EM_CanUndo(es);
4757 break;
4759 case EM_UNDO:
4760 case WM_UNDO:
4761 result = (LRESULT)EDIT_EM_Undo(es);
4762 break;
4764 case EM_FMTLINES:
4765 result = (LRESULT)EDIT_EM_FmtLines(es, (BOOL)wParam);
4766 break;
4768 case EM_LINEFROMCHAR:
4769 result = (LRESULT)EDIT_EM_LineFromChar(es, (INT)wParam);
4770 break;
4772 case EM_SETTABSTOPS:
4773 result = (LRESULT)EDIT_EM_SetTabStops(es, (INT)wParam, (LPINT)lParam);
4774 break;
4776 case EM_SETPASSWORDCHAR:
4778 WCHAR charW = 0;
4780 if(unicode)
4781 charW = (WCHAR)wParam;
4782 else
4784 CHAR charA = wParam;
4785 MultiByteToWideChar(CP_ACP, 0, &charA, 1, &charW, 1);
4788 EDIT_EM_SetPasswordChar(es, charW);
4789 break;
4792 case EM_EMPTYUNDOBUFFER:
4793 EDIT_EM_EmptyUndoBuffer(es);
4794 break;
4796 case EM_GETFIRSTVISIBLELINE:
4797 result = (es->style & ES_MULTILINE) ? es->y_offset : es->x_offset;
4798 break;
4800 case EM_SETREADONLY:
4802 DWORD old_style = es->style;
4804 if (wParam) {
4805 SetWindowLongW( hwnd, GWL_STYLE,
4806 GetWindowLongW( hwnd, GWL_STYLE ) | ES_READONLY );
4807 es->style |= ES_READONLY;
4808 } else {
4809 SetWindowLongW( hwnd, GWL_STYLE,
4810 GetWindowLongW( hwnd, GWL_STYLE ) & ~ES_READONLY );
4811 es->style &= ~ES_READONLY;
4814 if (old_style ^ es->style)
4815 InvalidateRect(es->hwndSelf, NULL, TRUE);
4817 result = 1;
4818 break;
4821 case EM_SETWORDBREAKPROC:
4822 EDIT_EM_SetWordBreakProc(es, (void *)lParam);
4823 result = 1;
4824 break;
4826 case EM_GETWORDBREAKPROC:
4827 result = (LRESULT)es->word_break_proc;
4828 break;
4830 case EM_GETPASSWORDCHAR:
4832 if(unicode)
4833 result = es->password_char;
4834 else
4836 WCHAR charW = es->password_char;
4837 CHAR charA = 0;
4838 WideCharToMultiByte(CP_ACP, 0, &charW, 1, &charA, 1, NULL, NULL);
4839 result = charA;
4841 break;
4844 case EM_SETMARGINS:
4845 EDIT_EM_SetMargins(es, (INT)wParam, LOWORD(lParam), HIWORD(lParam), TRUE);
4846 break;
4848 case EM_GETMARGINS:
4849 result = MAKELONG(es->left_margin, es->right_margin);
4850 break;
4852 case EM_GETLIMITTEXT:
4853 result = es->buffer_limit;
4854 break;
4856 case EM_POSFROMCHAR:
4857 if ((INT)wParam >= get_text_length(es)) result = -1;
4858 else result = EDIT_EM_PosFromChar(es, (INT)wParam, FALSE);
4859 break;
4861 case EM_CHARFROMPOS:
4862 result = EDIT_EM_CharFromPos(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
4863 break;
4865 /* End of the EM_ messages which were in numerical order; what order
4866 * are these in? vaguely alphabetical?
4869 case WM_NCCREATE:
4870 result = EDIT_WM_NCCreate(hwnd, (LPCREATESTRUCTW)lParam, unicode);
4871 break;
4873 case WM_NCDESTROY:
4874 result = EDIT_WM_NCDestroy(es);
4875 es = NULL;
4876 break;
4878 case WM_GETDLGCODE:
4879 result = DLGC_HASSETSEL | DLGC_WANTCHARS | DLGC_WANTARROWS;
4881 if (es->style & ES_MULTILINE)
4882 result |= DLGC_WANTALLKEYS;
4884 if (lParam)
4886 es->flags|=EF_DIALOGMODE;
4888 if (((LPMSG)lParam)->message == WM_KEYDOWN)
4890 int vk = (int)((LPMSG)lParam)->wParam;
4892 if (es->hwndListBox)
4894 if (vk == VK_RETURN || vk == VK_ESCAPE)
4895 if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
4896 result |= DLGC_WANTMESSAGE;
4900 break;
4902 case WM_IME_CHAR:
4903 if (!unicode)
4905 WCHAR charW;
4906 CHAR strng[2];
4908 strng[0] = wParam >> 8;
4909 strng[1] = wParam & 0xff;
4910 if (strng[0]) MultiByteToWideChar(CP_ACP, 0, strng, 2, &charW, 1);
4911 else MultiByteToWideChar(CP_ACP, 0, &strng[1], 1, &charW, 1);
4912 result = EDIT_WM_Char(es, charW);
4913 break;
4915 /* fall through */
4916 case WM_CHAR:
4918 WCHAR charW;
4920 if(unicode)
4921 charW = wParam;
4922 else
4924 CHAR charA = wParam;
4925 MultiByteToWideChar(CP_ACP, 0, &charA, 1, &charW, 1);
4928 if (es->hwndListBox)
4930 if (charW == VK_RETURN || charW == VK_ESCAPE)
4932 if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
4933 SendMessageW(GetParent(hwnd), WM_KEYDOWN, charW, 0);
4934 break;
4937 result = EDIT_WM_Char(es, charW);
4938 break;
4941 case WM_UNICHAR:
4942 if (unicode)
4944 if (wParam == UNICODE_NOCHAR) return TRUE;
4945 if (wParam <= 0x000fffff)
4947 if(wParam > 0xffff) /* convert to surrogates */
4949 wParam -= 0x10000;
4950 EDIT_WM_Char(es, (wParam >> 10) + 0xd800);
4951 EDIT_WM_Char(es, (wParam & 0x03ff) + 0xdc00);
4953 else EDIT_WM_Char(es, wParam);
4955 return 0;
4957 break;
4959 case WM_CLEAR:
4960 EDIT_WM_Clear(es);
4961 break;
4963 case WM_CONTEXTMENU:
4964 EDIT_WM_ContextMenu(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
4965 break;
4967 case WM_COPY:
4968 EDIT_WM_Copy(es);
4969 break;
4971 case WM_CREATE:
4972 if(unicode)
4973 result = EDIT_WM_Create(es, ((LPCREATESTRUCTW)lParam)->lpszName);
4974 else
4976 LPCSTR nameA = ((LPCREATESTRUCTA)lParam)->lpszName;
4977 LPWSTR nameW = NULL;
4978 if(nameA)
4980 INT countW = MultiByteToWideChar(CP_ACP, 0, nameA, -1, NULL, 0);
4981 if((nameW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
4982 MultiByteToWideChar(CP_ACP, 0, nameA, -1, nameW, countW);
4984 result = EDIT_WM_Create(es, nameW);
4985 HeapFree(GetProcessHeap(), 0, nameW);
4987 break;
4989 case WM_CUT:
4990 EDIT_WM_Cut(es);
4991 break;
4993 case WM_ENABLE:
4994 es->bEnableState = (BOOL) wParam;
4995 EDIT_UpdateText(es, NULL, TRUE);
4996 break;
4998 case WM_ERASEBKGND:
4999 /* we do the proper erase in EDIT_WM_Paint */
5000 result = 1;
5001 break;
5003 case WM_GETFONT:
5004 result = (LRESULT)es->font;
5005 break;
5007 case WM_GETTEXT:
5008 result = (LRESULT)EDIT_WM_GetText(es, (INT)wParam, (LPWSTR)lParam, unicode);
5009 break;
5011 case WM_GETTEXTLENGTH:
5012 if (unicode) result = get_text_length(es);
5013 else result = WideCharToMultiByte( CP_ACP, 0, es->text, get_text_length(es),
5014 NULL, 0, NULL, NULL );
5015 break;
5017 case WM_HSCROLL:
5018 result = EDIT_WM_HScroll(es, LOWORD(wParam), (short)HIWORD(wParam));
5019 break;
5021 case WM_KEYDOWN:
5022 result = EDIT_WM_KeyDown(es, (INT)wParam);
5023 break;
5025 case WM_KILLFOCUS:
5026 result = EDIT_WM_KillFocus(es);
5027 break;
5029 case WM_LBUTTONDBLCLK:
5030 result = EDIT_WM_LButtonDblClk(es);
5031 break;
5033 case WM_LBUTTONDOWN:
5034 result = EDIT_WM_LButtonDown(es, wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
5035 break;
5037 case WM_LBUTTONUP:
5038 result = EDIT_WM_LButtonUp(es);
5039 break;
5041 case WM_MBUTTONDOWN:
5042 result = EDIT_WM_MButtonDown(es);
5043 break;
5045 case WM_MOUSEMOVE:
5046 result = EDIT_WM_MouseMove(es, (short)LOWORD(lParam), (short)HIWORD(lParam));
5047 break;
5049 case WM_PRINTCLIENT:
5050 case WM_PAINT:
5051 EDIT_WM_Paint(es, (HDC)wParam);
5052 break;
5054 case WM_PASTE:
5055 EDIT_WM_Paste(es);
5056 break;
5058 case WM_SETFOCUS:
5059 EDIT_WM_SetFocus(es);
5060 break;
5062 case WM_SETFONT:
5063 EDIT_WM_SetFont(es, (HFONT)wParam, LOWORD(lParam) != 0);
5064 break;
5066 case WM_SETREDRAW:
5067 /* FIXME: actually set an internal flag and behave accordingly */
5068 break;
5070 case WM_SETTEXT:
5071 EDIT_WM_SetText(es, (LPCWSTR)lParam, unicode);
5072 result = TRUE;
5073 break;
5075 case WM_SIZE:
5076 EDIT_WM_Size(es, (UINT)wParam);
5077 break;
5079 case WM_STYLECHANGED:
5080 result = EDIT_WM_StyleChanged(es, wParam, (const STYLESTRUCT *)lParam);
5081 break;
5083 case WM_STYLECHANGING:
5084 result = 0; /* See EDIT_WM_StyleChanged */
5085 break;
5087 case WM_SYSKEYDOWN:
5088 result = EDIT_WM_SysKeyDown(es, (INT)wParam, (DWORD)lParam);
5089 break;
5091 case WM_TIMER:
5092 EDIT_WM_Timer(es);
5093 break;
5095 case WM_VSCROLL:
5096 result = EDIT_WM_VScroll(es, LOWORD(wParam), (short)HIWORD(wParam));
5097 break;
5099 case WM_MOUSEWHEEL:
5101 int wheelDelta;
5102 UINT pulScrollLines = 3;
5103 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
5105 if (wParam & (MK_SHIFT | MK_CONTROL)) {
5106 result = DefWindowProcW(hwnd, msg, wParam, lParam);
5107 break;
5109 wheelDelta = GET_WHEEL_DELTA_WPARAM(wParam);
5110 /* if scrolling changes direction, ignore left overs */
5111 if ((wheelDelta < 0 && es->wheelDeltaRemainder < 0) ||
5112 (wheelDelta > 0 && es->wheelDeltaRemainder > 0))
5113 es->wheelDeltaRemainder += wheelDelta;
5114 else
5115 es->wheelDeltaRemainder = wheelDelta;
5116 if (es->wheelDeltaRemainder && pulScrollLines)
5118 int cLineScroll;
5119 pulScrollLines = (int) min((UINT) es->line_count, pulScrollLines);
5120 cLineScroll = pulScrollLines * (float)es->wheelDeltaRemainder / WHEEL_DELTA;
5121 es->wheelDeltaRemainder -= WHEEL_DELTA * cLineScroll / (int)pulScrollLines;
5122 result = EDIT_EM_LineScroll(es, 0, -cLineScroll);
5125 break;
5128 /* IME messages to make the edit control IME aware */
5129 case WM_IME_SETCONTEXT:
5130 break;
5132 case WM_IME_STARTCOMPOSITION:
5133 es->composition_start = es->selection_end;
5134 es->composition_len = 0;
5135 break;
5137 case WM_IME_COMPOSITION:
5138 EDIT_ImeComposition(hwnd, lParam, es);
5139 break;
5141 case WM_IME_ENDCOMPOSITION:
5142 if (es->composition_len > 0)
5144 EDIT_EM_ReplaceSel(es, TRUE, NULL, 0, TRUE, TRUE);
5145 es->selection_end = es->selection_start;
5146 es->composition_len= 0;
5148 break;
5150 case WM_IME_COMPOSITIONFULL:
5151 break;
5153 case WM_IME_SELECT:
5154 break;
5156 case WM_IME_CONTROL:
5157 break;
5159 case WM_IME_REQUEST:
5160 switch (wParam)
5162 case IMR_QUERYCHARPOSITION:
5164 LRESULT pos;
5165 IMECHARPOSITION *chpos = (IMECHARPOSITION *)lParam;
5167 pos = EDIT_EM_PosFromChar(es, es->selection_start + chpos->dwCharPos, FALSE);
5168 chpos->pt.x = LOWORD(pos);
5169 chpos->pt.y = HIWORD(pos);
5170 chpos->cLineHeight = es->line_height;
5171 chpos->rcDocument = es->format_rect;
5172 MapWindowPoints(hwnd, 0, &chpos->pt, 1);
5173 MapWindowPoints(hwnd, 0, (POINT*)&chpos->rcDocument, 2);
5174 result = 1;
5175 break;
5178 break;
5180 default:
5181 result = DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
5182 break;
5185 if (IsWindow(hwnd) && es && msg != EM_GETHANDLE)
5186 EDIT_UnlockBuffer(es, FALSE);
5188 TRACE("hwnd=%p msg=%x (%s) -- 0x%08lx\n", hwnd, msg, SPY_GetMsgName(msg, hwnd), result);
5190 return result;
5194 /*********************************************************************
5195 * edit class descriptor
5197 static const WCHAR editW[] = {'E','d','i','t',0};
5198 const struct builtin_class_descr EDIT_builtin_class =
5200 editW, /* name */
5201 CS_DBLCLKS | CS_PARENTDC, /* style */
5202 WINPROC_EDIT, /* proc */
5203 #ifdef __i386__
5204 sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
5205 #else
5206 sizeof(EDITSTATE *), /* extra */
5207 #endif
5208 IDC_IBEAM, /* cursor */
5209 0 /* brush */