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
31 #include "user_private.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(edit
);
37 WINE_DECLARE_DEBUG_CHANNEL(combo
);
38 WINE_DECLARE_DEBUG_CHANNEL(relay
);
40 #define BUFLIMIT_INITIAL 30000 /* initial buffer size */
41 #define GROWLENGTH 32 /* buffers granularity in bytes: must be power of 2 */
42 #define ROUND_TO_GROW(size) (((size) + (GROWLENGTH - 1)) & ~(GROWLENGTH - 1))
43 #define HSCROLL_FRACTION 3 /* scroll window by 1/3 width */
46 * extra flags for EDITSTATE.flags field
48 #define EF_MODIFIED 0x0001 /* text has been modified */
49 #define EF_FOCUSED 0x0002 /* we have input focus */
50 #define EF_UPDATE 0x0004 /* notify parent of changed state */
51 #define EF_VSCROLL_TRACK 0x0008 /* don't SetScrollPos() since we are tracking the thumb */
52 #define EF_HSCROLL_TRACK 0x0010 /* don't SetScrollPos() since we are tracking the thumb */
53 #define EF_AFTER_WRAP 0x0080 /* the caret is displayed after the last character of a
54 wrapped line, instead of in front of the next character */
55 #define EF_USE_SOFTBRK 0x0100 /* Enable soft breaks in text. */
56 #define EF_DIALOGMODE 0x0200 /* Indicates that we are inside a dialog window */
60 END_0
= 0, /* line ends with terminating '\0' character */
61 END_WRAP
, /* line is wrapped */
62 END_HARD
, /* line ends with a hard return '\r\n' */
63 END_SOFT
, /* line ends with a soft return '\r\r\n' */
64 END_RICH
/* line ends with a single '\n' */
67 typedef struct tagLINEDEF
{
68 INT length
; /* bruto length of a line in bytes */
69 INT net_length
; /* netto length of a line in visible characters */
71 INT width
; /* width of the line in pixels */
72 INT index
; /* line index into the buffer */
73 SCRIPT_STRING_ANALYSIS ssa
; /* Uniscribe Data */
74 struct tagLINEDEF
*next
;
79 BOOL is_unicode
; /* how the control was created */
80 LPWSTR text
; /* the actual contents of the control */
81 UINT text_length
; /* cached length of text buffer (in WCHARs) - use get_text_length() to retrieve */
82 UINT buffer_size
; /* the size of the buffer in characters */
83 UINT buffer_limit
; /* the maximum size to which the buffer may grow in characters */
84 HFONT font
; /* NULL means standard system font */
85 INT x_offset
; /* scroll offset for multi lines this is in pixels
86 for single lines it's in characters */
87 INT line_height
; /* height of a screen line in pixels */
88 INT char_width
; /* average character width in pixels */
89 DWORD style
; /* sane version of wnd->dwStyle */
90 WORD flags
; /* flags that are not in es->style or wnd->flags (EF_XXX) */
91 INT undo_insert_count
; /* number of characters inserted in sequence */
92 UINT undo_position
; /* character index of the insertion and deletion */
93 LPWSTR undo_text
; /* deleted text */
94 UINT undo_buffer_size
; /* size of the deleted text buffer */
95 INT selection_start
; /* == selection_end if no selection */
96 INT selection_end
; /* == current caret position */
97 WCHAR password_char
; /* == 0 if no password char, and for multi line controls */
98 INT left_margin
; /* in pixels */
99 INT right_margin
; /* in pixels */
101 INT text_width
; /* width of the widest line in pixels for multi line controls
102 and just line width for single line controls */
103 INT region_posx
; /* Position of cursor relative to region: */
104 INT region_posy
; /* -1: to left, 0: within, 1: to right */
105 void *word_break_proc
; /* 32-bit word break proc: ANSI or Unicode */
106 INT line_count
; /* number of lines */
107 INT y_offset
; /* scroll offset in number of lines */
108 BOOL bCaptureState
; /* flag indicating whether mouse was captured */
109 BOOL bEnableState
; /* flag keeping the enable state */
110 HWND hwndSelf
; /* the our window handle */
111 HWND hwndParent
; /* Handle of parent for sending EN_* messages.
112 Even if parent will change, EN_* messages
113 should be sent to the first parent. */
114 HWND hwndListBox
; /* handle of ComboBox's listbox or NULL */
115 INT wheelDeltaRemainder
; /* scroll wheel delta left over after scrolling whole lines */
117 * only for multi line controls
119 INT lock_count
; /* amount of re-entries in the EditWndProc */
122 LINEDEF
*first_line_def
; /* linked list of (soft) linebreaks */
123 HLOCAL hloc32W
; /* our unicode local memory block */
124 HLOCAL hloc32A
; /* alias for ANSI control receiving EM_GETHANDLE
126 HLOCAL hlocapp
; /* The text buffer handle belongs to the app */
130 UINT composition_len
; /* length of composition, 0 == no composition */
131 int composition_start
; /* the character position for the composition */
132 UINT ime_status
; /* IME status flag */
136 SCRIPT_LOGATTR
*logAttr
;
137 SCRIPT_STRING_ANALYSIS ssa
; /* Uniscribe Data for single line controls */
141 #define SWAP_UINT32(x,y) do { UINT temp = (UINT)(x); (x) = (UINT)(y); (y) = temp; } while(0)
142 #define ORDER_UINT(x,y) do { if ((UINT)(y) < (UINT)(x)) SWAP_UINT32((x),(y)); } while(0)
144 static inline BOOL
notify_parent(const EDITSTATE
*es
, INT code
)
146 HWND hwnd
= es
->hwndSelf
;
147 TRACE("notification %d sent to %p.\n", code
, es
->hwndParent
);
148 SendMessageW(es
->hwndParent
, WM_COMMAND
, MAKEWPARAM(GetWindowLongPtrW(es
->hwndSelf
, GWLP_ID
), code
), (LPARAM
)es
->hwndSelf
);
149 return IsWindow(hwnd
);
152 static LRESULT
EDIT_EM_PosFromChar(EDITSTATE
*es
, INT index
, BOOL after_wrap
);
154 /*********************************************************************
159 static inline BOOL
EDIT_EM_CanUndo(const EDITSTATE
*es
)
161 return (es
->undo_insert_count
|| lstrlenW(es
->undo_text
));
165 /*********************************************************************
170 static inline void EDIT_EM_EmptyUndoBuffer(EDITSTATE
*es
)
172 es
->undo_insert_count
= 0;
173 *es
->undo_text
= '\0';
177 /**********************************************************************
180 * Returns the window version in case Wine emulates a later version
181 * of windows than the application expects.
183 * In a number of cases when windows runs an application that was
184 * designed for an earlier windows version, windows reverts
185 * to "old" behaviour of that earlier version.
187 * An example is a disabled edit control that needs to be painted.
188 * Old style behaviour is to send a WM_CTLCOLOREDIT message. This was
189 * changed in Win95, NT4.0 by a WM_CTLCOLORSTATIC message _only_ for
190 * applications with an expected version 0f 4.0 or higher.
193 static DWORD
get_app_version(void)
195 static DWORD version
;
198 DWORD dwEmulatedVersion
;
200 DWORD dwProcVersion
= GetProcessVersion(0);
202 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFOW
);
203 GetVersionExW( &info
);
204 dwEmulatedVersion
= MAKELONG( info
.dwMinorVersion
, info
.dwMajorVersion
);
205 /* FIXME: this may not be 100% correct; see discussion on the
206 * wine developer list in Nov 1999 */
207 version
= dwProcVersion
< dwEmulatedVersion
? dwProcVersion
: dwEmulatedVersion
;
212 static HBRUSH
EDIT_NotifyCtlColor(EDITSTATE
*es
, HDC hdc
)
217 if ( get_app_version() >= 0x40000 && (!es
->bEnableState
|| (es
->style
& ES_READONLY
)))
218 msg
= WM_CTLCOLORSTATIC
;
220 msg
= WM_CTLCOLOREDIT
;
222 /* why do we notify to es->hwndParent, and we send this one to GetParent()? */
223 hbrush
= (HBRUSH
)SendMessageW(GetParent(es
->hwndSelf
), msg
, (WPARAM
)hdc
, (LPARAM
)es
->hwndSelf
);
225 hbrush
= (HBRUSH
)DefWindowProcW(GetParent(es
->hwndSelf
), msg
, (WPARAM
)hdc
, (LPARAM
)es
->hwndSelf
);
230 static inline UINT
get_text_length(EDITSTATE
*es
)
232 if(es
->text_length
== (UINT
)-1)
233 es
->text_length
= lstrlenW(es
->text
);
234 return es
->text_length
;
238 /*********************************************************************
242 * Find the beginning of words.
243 * Note: unlike the specs for a WordBreakProc, this function can
244 * only be called without linebreaks between s[0] up to
245 * s[count - 1]. Remember it is only called
246 * internally, so we can decide this for ourselves.
247 * Additionally we will always be breaking the full string.
250 static INT
EDIT_WordBreakProc(EDITSTATE
*es
, LPWSTR s
, INT index
, INT count
, INT action
)
254 TRACE("s=%p, index=%d, count=%d, action=%d\n", s
, index
, count
, action
);
262 memset(&psa
,0,sizeof(SCRIPT_ANALYSIS
));
263 psa
.eScript
= SCRIPT_UNDEFINED
;
265 es
->logAttr
= HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_LOGATTR
) * get_text_length(es
));
266 ScriptBreak(es
->text
, get_text_length(es
), &psa
, es
->logAttr
);
273 while (index
&& !es
->logAttr
[index
].fSoftBreak
)
280 while (index
< count
&& s
[index
] && !es
->logAttr
[index
].fSoftBreak
)
285 ret
= es
->logAttr
[index
].fWhiteSpace
;
288 ERR("unknown action code, please report !\n");
295 /*********************************************************************
297 * EDIT_CallWordBreakProc
299 * Call appropriate WordBreakProc (internal or external).
301 * Note: The "start" argument should always be an index referring
302 * to es->text. The actual wordbreak proc might be
303 * 16 bit, so we can't always pass any 32 bit LPSTR.
304 * Hence we assume that es->text is the buffer that holds
305 * the string under examination (we can decide this for ourselves).
308 static INT
EDIT_CallWordBreakProc(EDITSTATE
*es
, INT start
, INT index
, INT count
, INT action
)
312 if (es
->word_break_proc
)
316 EDITWORDBREAKPROCW wbpW
= (EDITWORDBREAKPROCW
)es
->word_break_proc
;
318 TRACE_(relay
)("\1Call wordbreakW %p (str=%s,idx=%d,cnt=%d,act=%d)\n",
319 es
->word_break_proc
, debugstr_wn(es
->text
+ start
, count
), index
, count
, action
);
320 ret
= wbpW(es
->text
+ start
, index
, count
, action
);
321 TRACE_(relay
)("\1Ret wordbreakW %p retval=%d\n", es
->word_break_proc
, ret
);
325 EDITWORDBREAKPROCA wbpA
= (EDITWORDBREAKPROCA
)es
->word_break_proc
;
329 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, NULL
, 0, NULL
, NULL
);
330 textA
= HeapAlloc(GetProcessHeap(), 0, countA
);
331 WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, textA
, countA
, NULL
, NULL
);
332 TRACE_(relay
)("\1Call wordbreakA %p(str=%s,idx=%d,cnt=%d,act=%d)\n",
333 es
->word_break_proc
, debugstr_an(textA
, countA
), index
, countA
, action
);
334 ret
= wbpA(textA
, index
, countA
, action
);
335 HeapFree(GetProcessHeap(), 0, textA
);
336 TRACE_(relay
)("\1Ret wordbreakA %p retval=%d\n", es
->word_break_proc
, ret
);
340 ret
= EDIT_WordBreakProc(es
, es
->text
, index
+start
, count
+start
, action
) - start
;
345 static inline void EDIT_InvalidateUniscribeData_linedef(LINEDEF
*line_def
)
349 ScriptStringFree(&line_def
->ssa
);
350 line_def
->ssa
= NULL
;
354 static inline void EDIT_InvalidateUniscribeData(EDITSTATE
*es
)
356 LINEDEF
*line_def
= es
->first_line_def
;
359 EDIT_InvalidateUniscribeData_linedef(line_def
);
360 line_def
= line_def
->next
;
364 ScriptStringFree(&es
->ssa
);
369 static SCRIPT_STRING_ANALYSIS
EDIT_UpdateUniscribeData_linedef(EDITSTATE
*es
, HDC dc
, LINEDEF
*line_def
)
374 if (line_def
->net_length
&& !line_def
->ssa
)
376 int index
= line_def
->index
;
377 HFONT old_font
= NULL
;
379 SCRIPT_TABDEF tabdef
;
383 udc
= NtUserGetDC(es
->hwndSelf
);
385 old_font
= SelectObject(udc
, es
->font
);
387 tabdef
.cTabStops
= es
->tabs_count
;
388 tabdef
.iScale
= GdiGetCharDimensions(udc
, NULL
, NULL
);
389 tabdef
.pTabStops
= es
->tabs
;
390 tabdef
.iTabOrigin
= 0;
392 hr
= ScriptStringAnalyse(udc
, &es
->text
[index
], line_def
->net_length
,
393 (1.5*line_def
->net_length
+16), -1,
394 SSA_LINK
|SSA_FALLBACK
|SSA_GLYPHS
|SSA_TAB
, -1,
395 NULL
, NULL
, NULL
, &tabdef
, NULL
, &line_def
->ssa
);
398 WARN("ScriptStringAnalyse failed (%lx)\n",hr
);
399 line_def
->ssa
= NULL
;
403 SelectObject(udc
, old_font
);
405 NtUserReleaseDC( es
->hwndSelf
, udc
);
408 return line_def
->ssa
;
411 static SCRIPT_STRING_ANALYSIS
EDIT_UpdateUniscribeData(EDITSTATE
*es
, HDC dc
, INT line
)
415 if (!(es
->style
& ES_MULTILINE
))
419 INT length
= get_text_length(es
);
420 HFONT old_font
= NULL
;
424 udc
= NtUserGetDC(es
->hwndSelf
);
426 old_font
= SelectObject(udc
, es
->font
);
428 if (es
->style
& ES_PASSWORD
)
429 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
);
431 ScriptStringAnalyse(udc
, es
->text
, length
, (1.5*length
+16), -1, SSA_LINK
|SSA_FALLBACK
|SSA_GLYPHS
, -1, NULL
, NULL
, NULL
, NULL
, NULL
, &es
->ssa
);
434 SelectObject(udc
, old_font
);
436 NtUserReleaseDC( es
->hwndSelf
, udc
);
442 line_def
= es
->first_line_def
;
443 while (line_def
&& line
)
445 line_def
= line_def
->next
;
449 return EDIT_UpdateUniscribeData_linedef(es
,dc
,line_def
);
453 static inline INT
get_vertical_line_count(EDITSTATE
*es
)
455 INT vlc
= es
->line_height
? (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
: 0;
459 /*********************************************************************
461 * EDIT_BuildLineDefs_ML
463 * Build linked list of text lines.
464 * Lines can end with '\0' (last line), a character (if it is wrapped),
465 * a soft return '\r\r\n' or a hard return '\r\n'
468 static void EDIT_BuildLineDefs_ML(EDITSTATE
*es
, INT istart
, INT iend
, INT delta
, HRGN hrgn
)
470 LPWSTR current_position
, cp
;
472 LINEDEF
*current_line
;
473 LINEDEF
*previous_line
;
475 INT line_index
= 0, nstart_line
, nstart_index
;
476 INT line_count
= es
->line_count
;
481 if (istart
== iend
&& delta
== 0)
484 previous_line
= NULL
;
485 current_line
= es
->first_line_def
;
487 /* Find starting line. istart must lie inside an existing line or
488 * at the end of buffer */
490 if (istart
< current_line
->index
+ current_line
->length
||
491 current_line
->ending
== END_0
)
494 previous_line
= current_line
;
495 current_line
= current_line
->next
;
497 } while (current_line
);
499 if (!current_line
) /* Error occurred start is not inside previous buffer */
501 FIXME(" modification occurred outside buffer\n");
505 /* Remember start of modifications in order to calculate update region */
506 nstart_line
= line_index
;
507 nstart_index
= current_line
->index
;
509 /* We must start to reformat from the previous line since the modifications
510 * may have caused the line to wrap upwards. */
511 if (!(es
->style
& ES_AUTOHSCROLL
) && line_index
> 0)
514 current_line
= previous_line
;
516 start_line
= current_line
;
518 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
519 current_position
= es
->text
+ current_line
->index
;
520 vlc
= get_vertical_line_count(es
);
522 if (current_line
!= start_line
)
524 if (!current_line
|| current_line
->index
+ delta
> current_position
- es
->text
)
526 /* The buffer has been expanded, create a new line and
527 insert it into the link list */
528 LINEDEF
*new_line
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(LINEDEF
));
529 new_line
->next
= previous_line
->next
;
530 previous_line
->next
= new_line
;
531 current_line
= new_line
;
534 else if (current_line
->index
+ delta
< current_position
- es
->text
)
536 /* The previous line merged with this line so we delete this extra entry */
537 previous_line
->next
= current_line
->next
;
538 HeapFree(GetProcessHeap(), 0, current_line
);
539 current_line
= previous_line
->next
;
543 else /* current_line->index + delta == current_position */
545 if (current_position
- es
->text
> iend
)
546 break; /* We reached end of line modifications */
547 /* else recalculate this line */
551 current_line
->index
= current_position
- es
->text
;
552 orig_net_length
= current_line
->net_length
;
554 /* Find end of line */
555 cp
= current_position
;
557 if (*cp
== '\n') break;
558 if ((*cp
== '\r') && (*(cp
+ 1) == '\n'))
563 /* Mark type of line termination */
565 current_line
->ending
= END_0
;
566 current_line
->net_length
= lstrlenW(current_position
);
567 } else if ((cp
> current_position
) && (*(cp
- 1) == '\r')) {
568 current_line
->ending
= END_SOFT
;
569 current_line
->net_length
= cp
- current_position
- 1;
570 } else if (*cp
== '\n') {
571 current_line
->ending
= END_RICH
;
572 current_line
->net_length
= cp
- current_position
;
574 current_line
->ending
= END_HARD
;
575 current_line
->net_length
= cp
- current_position
;
578 if (current_line
->net_length
)
581 EDIT_InvalidateUniscribeData_linedef(current_line
);
582 EDIT_UpdateUniscribeData_linedef(es
, NULL
, current_line
);
583 if (current_line
->ssa
)
585 sz
= ScriptString_pSize(current_line
->ssa
);
586 /* Calculate line width */
587 current_line
->width
= sz
->cx
;
589 else current_line
->width
= es
->char_width
* current_line
->net_length
;
591 else current_line
->width
= 0;
593 /* FIXME: check here for lines that are too wide even in AUTOHSCROLL (> 32767 ???) */
595 /* Line breaks just look back from the end and find the next break and try that. */
597 if (!(es
->style
& ES_AUTOHSCROLL
)) {
598 if (current_line
->width
> fw
&& fw
> es
->char_width
) {
605 prev
= current_line
->net_length
- 1;
606 w
= current_line
->net_length
;
607 d
= (float)current_line
->width
/(float)fw
;
608 if (d
> 1.2f
) d
-= 0.2f
;
610 if (next
>= prev
) next
= prev
-1;
612 prev
= EDIT_CallWordBreakProc(es
, current_position
- es
->text
,
613 next
, current_line
->net_length
, WB_LEFT
);
614 current_line
->net_length
= prev
;
615 EDIT_InvalidateUniscribeData_linedef(current_line
);
616 EDIT_UpdateUniscribeData_linedef(es
, NULL
, current_line
);
617 if (current_line
->ssa
)
618 sz
= ScriptString_pSize(current_line
->ssa
);
621 current_line
->width
= sz
->cx
;
625 } while (prev
&& current_line
->width
> fw
);
626 current_line
->net_length
= w
;
628 if (prev
== 0) { /* Didn't find a line break so force a break */
632 EDIT_InvalidateUniscribeData_linedef(current_line
);
633 EDIT_UpdateUniscribeData_linedef(es
, NULL
, current_line
);
635 if (current_line
->ssa
)
637 count
= ScriptString_pcOutChars(current_line
->ssa
);
638 piDx
= HeapAlloc(GetProcessHeap(),0,sizeof(INT
) * (*count
));
639 ScriptStringGetLogicalWidths(current_line
->ssa
,piDx
);
641 prev
= current_line
->net_length
-1;
643 current_line
->width
-= piDx
[prev
];
645 } while ( prev
> 0 && current_line
->width
> fw
);
648 HeapFree(GetProcessHeap(),0,piDx
);
651 prev
= (fw
/ es
->char_width
);
654 /* If the first line we are calculating, wrapped before istart, we must
655 * adjust istart in order for this to be reflected in the update region. */
656 if (current_line
->index
== nstart_index
&& istart
> current_line
->index
+ prev
)
657 istart
= current_line
->index
+ prev
;
658 /* else if we are updating the previous line before the first line we
659 * are re-calculating and it expanded */
660 else if (current_line
== start_line
&&
661 current_line
->index
!= nstart_index
&& orig_net_length
< prev
)
663 /* Line expanded due to an upwards line wrap so we must partially include
664 * previous line in update region */
665 nstart_line
= line_index
;
666 nstart_index
= current_line
->index
;
667 istart
= current_line
->index
+ orig_net_length
;
670 current_line
->net_length
= prev
;
671 current_line
->ending
= END_WRAP
;
673 if (current_line
->net_length
> 0)
675 EDIT_UpdateUniscribeData_linedef(es
, NULL
, current_line
);
676 if (current_line
->ssa
)
678 sz
= ScriptString_pSize(current_line
->ssa
);
679 current_line
->width
= sz
->cx
;
682 current_line
->width
= 0;
684 else current_line
->width
= 0;
686 else if (current_line
== start_line
&&
687 current_line
->index
!= nstart_index
&&
688 orig_net_length
< current_line
->net_length
) {
689 /* The previous line expanded but it's still not as wide as the client rect */
690 /* The expansion is due to an upwards line wrap so we must partially include
691 it in the update region */
692 nstart_line
= line_index
;
693 nstart_index
= current_line
->index
;
694 istart
= current_line
->index
+ orig_net_length
;
699 /* Adjust length to include line termination */
700 switch (current_line
->ending
) {
702 current_line
->length
= current_line
->net_length
+ 3;
705 current_line
->length
= current_line
->net_length
+ 1;
708 current_line
->length
= current_line
->net_length
+ 2;
712 current_line
->length
= current_line
->net_length
;
715 es
->text_width
= max(es
->text_width
, current_line
->width
);
716 current_position
+= current_line
->length
;
717 previous_line
= current_line
;
719 /* Discard data for non-visible lines. It will be calculated as needed */
720 if ((line_index
< es
->y_offset
) || (line_index
> es
->y_offset
+ vlc
))
721 EDIT_InvalidateUniscribeData_linedef(current_line
);
723 current_line
= current_line
->next
;
725 } while (previous_line
->ending
!= END_0
);
727 /* Finish adjusting line indexes by delta or remove hanging lines */
728 if (previous_line
->ending
== END_0
)
730 LINEDEF
*pnext
= NULL
;
732 previous_line
->next
= NULL
;
735 pnext
= current_line
->next
;
736 EDIT_InvalidateUniscribeData_linedef(current_line
);
737 HeapFree(GetProcessHeap(), 0, current_line
);
738 current_line
= pnext
;
746 current_line
->index
+= delta
;
747 current_line
= current_line
->next
;
751 /* Calculate rest of modification rectangle */
756 * We calculate two rectangles. One for the first line which may have
757 * an indent with respect to the format rect. The other is a format-width
758 * rectangle that spans the rest of the lines that changed or moved.
760 rc
.top
= es
->format_rect
.top
+ nstart_line
* es
->line_height
-
761 (es
->y_offset
* es
->line_height
); /* Adjust for vertical scrollbar */
762 rc
.bottom
= rc
.top
+ es
->line_height
;
763 if ((es
->style
& ES_CENTER
) || (es
->style
& ES_RIGHT
))
764 rc
.left
= es
->format_rect
.left
;
766 rc
.left
= LOWORD(EDIT_EM_PosFromChar(es
, nstart_index
, FALSE
));
767 rc
.right
= es
->format_rect
.right
;
768 SetRectRgn(hrgn
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
771 rc
.left
= es
->format_rect
.left
;
772 rc
.right
= es
->format_rect
.right
;
774 * If lines were added or removed we must re-paint the remainder of the
775 * lines since the remaining lines were either shifted up or down.
777 if (line_count
< es
->line_count
) /* We added lines */
778 rc
.bottom
= es
->line_count
* es
->line_height
;
779 else if (line_count
> es
->line_count
) /* We removed lines */
780 rc
.bottom
= line_count
* es
->line_height
;
782 rc
.bottom
= line_index
* es
->line_height
;
783 rc
.bottom
+= es
->format_rect
.top
;
784 rc
.bottom
-= (es
->y_offset
* es
->line_height
); /* Adjust for vertical scrollbar */
785 tmphrgn
= CreateRectRgn(rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
786 CombineRgn(hrgn
, hrgn
, tmphrgn
, RGN_OR
);
787 DeleteObject(tmphrgn
);
791 /*********************************************************************
793 * EDIT_CalcLineWidth_SL
796 static void EDIT_CalcLineWidth_SL(EDITSTATE
*es
)
798 EDIT_UpdateUniscribeData(es
, NULL
, 0);
802 size
= ScriptString_pSize(es
->ssa
);
803 es
->text_width
= size
->cx
;
809 /*********************************************************************
813 * Beware: This is not the function called on EM_CHARFROMPOS
814 * The position _can_ be outside the formatting / client
816 * The return value is only the character index
819 static INT
EDIT_CharFromPos(EDITSTATE
*es
, INT x
, INT y
, LPBOOL after_wrap
)
823 if (es
->style
& ES_MULTILINE
) {
825 INT line
= (y
- es
->format_rect
.top
) / es
->line_height
+ es
->y_offset
;
827 LINEDEF
*line_def
= es
->first_line_def
;
828 EDIT_UpdateUniscribeData(es
, NULL
, line
);
829 while ((line
> 0) && line_def
->next
) {
830 line_index
+= line_def
->length
;
831 line_def
= line_def
->next
;
835 x
+= es
->x_offset
- es
->format_rect
.left
;
836 if (es
->style
& ES_RIGHT
)
837 x
-= (es
->format_rect
.right
- es
->format_rect
.left
) - line_def
->width
;
838 else if (es
->style
& ES_CENTER
)
839 x
-= ((es
->format_rect
.right
- es
->format_rect
.left
) - line_def
->width
) / 2;
840 if (x
>= line_def
->width
) {
842 *after_wrap
= (line_def
->ending
== END_WRAP
);
843 return line_index
+ line_def
->net_length
;
845 if (x
<= 0 || !line_def
->ssa
) {
851 ScriptStringXtoCP(line_def
->ssa
, x
, &index
, &trailing
);
852 if (trailing
) index
++;
855 *after_wrap
= ((index
== line_index
+ line_def
->net_length
) &&
856 (line_def
->ending
== END_WRAP
));
862 x
-= es
->format_rect
.left
;
868 INT indent
= (es
->format_rect
.right
- es
->format_rect
.left
) - es
->text_width
;
869 if (es
->style
& ES_RIGHT
)
871 else if (es
->style
& ES_CENTER
)
875 EDIT_UpdateUniscribeData(es
, NULL
, 0);
880 if (es
->x_offset
>= get_text_length(es
))
883 size
= ScriptString_pSize(es
->ssa
);
886 ScriptStringCPtoX(es
->ssa
, es
->x_offset
, FALSE
, &xoff
);
893 if (x
+ xoff
> 0 || !es
->ssa
)
895 ScriptStringXtoCP(es
->ssa
, x
+xoff
, &index
, &trailing
);
896 if (trailing
) index
++;
905 const SIZE
*size
= NULL
;
907 size
= ScriptString_pSize(es
->ssa
);
910 else if (x
> size
->cx
)
911 index
= get_text_length(es
);
914 ScriptStringXtoCP(es
->ssa
, x
+xoff
, &index
, &trailing
);
915 if (trailing
) index
++;
921 index
= es
->x_offset
;
928 /*********************************************************************
932 * adjusts the point to be within the formatting rectangle
933 * (so CharFromPos returns the nearest _visible_ character)
936 static void EDIT_ConfinePoint(const EDITSTATE
*es
, LPINT x
, LPINT y
)
938 *x
= min(max(*x
, es
->format_rect
.left
), es
->format_rect
.right
- 1);
939 *y
= min(max(*y
, es
->format_rect
.top
), es
->format_rect
.bottom
- 1);
943 /*********************************************************************
948 static INT
EDIT_EM_LineFromChar(EDITSTATE
*es
, INT index
)
953 if (!(es
->style
& ES_MULTILINE
))
955 if (index
> (INT
)get_text_length(es
))
956 return es
->line_count
- 1;
958 index
= min(es
->selection_start
, es
->selection_end
);
961 line_def
= es
->first_line_def
;
962 index
-= line_def
->length
;
963 while ((index
>= 0) && line_def
->next
) {
965 line_def
= line_def
->next
;
966 index
-= line_def
->length
;
972 /*********************************************************************
977 static INT
EDIT_EM_LineIndex(const EDITSTATE
*es
, INT line
)
980 const LINEDEF
*line_def
;
982 if (!(es
->style
& ES_MULTILINE
))
984 if (line
>= es
->line_count
)
988 line_def
= es
->first_line_def
;
990 INT index
= es
->selection_end
- line_def
->length
;
991 while ((index
>= 0) && line_def
->next
) {
992 line_index
+= line_def
->length
;
993 line_def
= line_def
->next
;
994 index
-= line_def
->length
;
998 line_index
+= line_def
->length
;
999 line_def
= line_def
->next
;
1007 /*********************************************************************
1012 static INT
EDIT_EM_LineLength(EDITSTATE
*es
, INT index
)
1016 if (!(es
->style
& ES_MULTILINE
))
1017 return get_text_length(es
);
1020 /* get the number of remaining non-selected chars of selected lines */
1021 INT32 l
; /* line number */
1022 INT32 li
; /* index of first char in line */
1024 l
= EDIT_EM_LineFromChar(es
, es
->selection_start
);
1025 /* # chars before start of selection area */
1026 count
= es
->selection_start
- EDIT_EM_LineIndex(es
, l
);
1027 l
= EDIT_EM_LineFromChar(es
, es
->selection_end
);
1028 /* # chars after end of selection */
1029 li
= EDIT_EM_LineIndex(es
, l
);
1030 count
+= li
+ EDIT_EM_LineLength(es
, li
) - es
->selection_end
;
1033 line_def
= es
->first_line_def
;
1034 index
-= line_def
->length
;
1035 while ((index
>= 0) && line_def
->next
) {
1036 line_def
= line_def
->next
;
1037 index
-= line_def
->length
;
1039 return line_def
->net_length
;
1043 /*********************************************************************
1048 static LRESULT
EDIT_EM_PosFromChar(EDITSTATE
*es
, INT index
, BOOL after_wrap
)
1050 INT len
= get_text_length(es
);
1059 index
= min(index
, len
);
1060 if (es
->style
& ES_MULTILINE
) {
1061 l
= EDIT_EM_LineFromChar(es
, index
);
1062 EDIT_UpdateUniscribeData(es
, NULL
, l
);
1064 y
= (l
- es
->y_offset
) * es
->line_height
;
1065 li
= EDIT_EM_LineIndex(es
, l
);
1066 if (after_wrap
&& (li
== index
) && l
) {
1068 line_def
= es
->first_line_def
;
1070 line_def
= line_def
->next
;
1073 if (line_def
->ending
== END_WRAP
) {
1075 y
-= es
->line_height
;
1076 li
= EDIT_EM_LineIndex(es
, l
);
1080 line_def
= es
->first_line_def
;
1081 while (line_def
->index
!= li
)
1082 line_def
= line_def
->next
;
1084 lw
= line_def
->width
;
1085 w
= es
->format_rect
.right
- es
->format_rect
.left
;
1087 ScriptStringCPtoX(line_def
->ssa
, (index
- 1) - li
, TRUE
, &x
);
1090 if (es
->style
& ES_RIGHT
)
1092 else if (es
->style
& ES_CENTER
)
1097 EDIT_UpdateUniscribeData(es
, NULL
, 0);
1102 if (es
->x_offset
>= get_text_length(es
))
1104 int leftover
= es
->x_offset
- get_text_length(es
);
1108 size
= ScriptString_pSize(es
->ssa
);
1113 xoff
+= es
->char_width
* leftover
;
1116 ScriptStringCPtoX(es
->ssa
, es
->x_offset
, FALSE
, &xoff
);
1123 if (index
>= get_text_length(es
))
1128 size
= ScriptString_pSize(es
->ssa
);
1135 ScriptStringCPtoX(es
->ssa
, index
, FALSE
, &xi
);
1141 if (index
>= es
->x_offset
) {
1142 if (!es
->x_offset
&& (es
->style
& (ES_RIGHT
| ES_CENTER
)))
1144 w
= es
->format_rect
.right
- es
->format_rect
.left
;
1145 if (w
> es
->text_width
)
1147 if (es
->style
& ES_RIGHT
)
1148 x
+= w
- es
->text_width
;
1149 else if (es
->style
& ES_CENTER
)
1150 x
+= (w
- es
->text_width
) / 2;
1156 x
+= es
->format_rect
.left
;
1157 y
+= es
->format_rect
.top
;
1158 return MAKELONG((INT16
)x
, (INT16
)y
);
1162 /*********************************************************************
1166 * Calculates the bounding rectangle for a line from a starting
1167 * column to an ending column.
1170 static void EDIT_GetLineRect(EDITSTATE
*es
, INT line
, INT scol
, INT ecol
, LPRECT rc
)
1172 SCRIPT_STRING_ANALYSIS ssa
;
1176 if (es
->style
& ES_MULTILINE
)
1178 const LINEDEF
*line_def
= NULL
;
1179 rc
->top
= es
->format_rect
.top
+ (line
- es
->y_offset
) * es
->line_height
;
1180 if (line
>= es
->line_count
)
1183 line_def
= es
->first_line_def
;
1185 INT index
= es
->selection_end
- line_def
->length
;
1186 while ((index
>= 0) && line_def
->next
) {
1187 line_index
+= line_def
->length
;
1188 line_def
= line_def
->next
;
1189 index
-= line_def
->length
;
1193 line_index
+= line_def
->length
;
1194 line_def
= line_def
->next
;
1198 ssa
= line_def
->ssa
;
1203 rc
->top
= es
->format_rect
.top
;
1207 rc
->bottom
= rc
->top
+ es
->line_height
;
1208 pt1
= (scol
== 0) ? es
->format_rect
.left
: (short)LOWORD(EDIT_EM_PosFromChar(es
, line_index
+ scol
, TRUE
));
1209 pt2
= (ecol
== -1) ? es
->format_rect
.right
: (short)LOWORD(EDIT_EM_PosFromChar(es
, line_index
+ ecol
, TRUE
));
1212 ScriptStringCPtoX(ssa
, scol
, FALSE
, &pt3
);
1213 pt3
+=es
->format_rect
.left
;
1216 rc
->right
= max(max(pt1
, pt2
),pt3
);
1217 rc
->left
= min(min(pt1
, pt2
),pt3
);
1221 static inline void text_buffer_changed(EDITSTATE
*es
)
1223 es
->text_length
= (UINT
)-1;
1225 HeapFree( GetProcessHeap(), 0, es
->logAttr
);
1227 EDIT_InvalidateUniscribeData(es
);
1230 /*********************************************************************
1234 static void EDIT_LockBuffer(EDITSTATE
*es
)
1238 if(!es
->hloc32W
) return;
1242 CHAR
*textA
= LocalLock(es
->hloc32A
);
1244 UINT countW_new
= MultiByteToWideChar(CP_ACP
, 0, textA
, -1, NULL
, 0);
1245 if(countW_new
> es
->buffer_size
+ 1)
1247 UINT alloc_size
= ROUND_TO_GROW(countW_new
* sizeof(WCHAR
));
1248 TRACE("Resizing 32-bit UNICODE buffer from %d+1 to %d WCHARs\n", es
->buffer_size
, countW_new
);
1249 hloc32W_new
= LocalReAlloc(es
->hloc32W
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
);
1252 es
->hloc32W
= hloc32W_new
;
1253 es
->buffer_size
= LocalSize(hloc32W_new
)/sizeof(WCHAR
) - 1;
1254 TRACE("Real new size %d+1 WCHARs\n", es
->buffer_size
);
1257 WARN("FAILED! Will synchronize partially\n");
1259 es
->text
= LocalLock(es
->hloc32W
);
1260 MultiByteToWideChar(CP_ACP
, 0, textA
, -1, es
->text
, es
->buffer_size
+ 1);
1261 LocalUnlock(es
->hloc32A
);
1263 else es
->text
= LocalLock(es
->hloc32W
);
1269 /*********************************************************************
1274 static void EDIT_UnlockBuffer(EDITSTATE
*es
, BOOL force
)
1276 /* Edit window might be already destroyed */
1277 if(!IsWindow(es
->hwndSelf
))
1279 WARN("edit hwnd %p already destroyed\n", es
->hwndSelf
);
1283 if (!es
->lock_count
) {
1284 ERR("lock_count == 0 ... please report\n");
1288 ERR("es->text == 0 ... please report\n");
1291 if (force
|| (es
->lock_count
== 1)) {
1294 UINT countW
= get_text_length(es
) + 1;
1298 UINT countA_new
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, countW
, NULL
, 0, NULL
, NULL
);
1299 TRACE("Synchronizing with 32-bit ANSI buffer\n");
1300 TRACE("%d WCHARs translated to %d bytes\n", countW
, countA_new
);
1301 countA
= LocalSize(es
->hloc32A
);
1302 if(countA_new
> countA
)
1305 UINT alloc_size
= ROUND_TO_GROW(countA_new
);
1306 TRACE("Resizing 32-bit ANSI buffer from %d to %d bytes\n", countA
, alloc_size
);
1307 hloc32A_new
= LocalReAlloc(es
->hloc32A
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
);
1310 es
->hloc32A
= hloc32A_new
;
1311 countA
= LocalSize(hloc32A_new
);
1312 TRACE("Real new size %d bytes\n", countA
);
1315 WARN("FAILED! Will synchronize partially\n");
1317 WideCharToMultiByte(CP_ACP
, 0, es
->text
, countW
,
1318 LocalLock(es
->hloc32A
), countA
, NULL
, NULL
);
1319 LocalUnlock(es
->hloc32A
);
1322 LocalUnlock(es
->hloc32W
);
1326 ERR("no buffer ... please report\n");
1334 /*********************************************************************
1338 * Try to fit size + 1 characters in the buffer.
1340 static BOOL
EDIT_MakeFit(EDITSTATE
*es
, UINT size
)
1344 if (size
<= es
->buffer_size
)
1347 TRACE("trying to ReAlloc to %d+1 characters\n", size
);
1349 /* Force edit to unlock its buffer. es->text now NULL */
1350 EDIT_UnlockBuffer(es
, TRUE
);
1353 UINT alloc_size
= ROUND_TO_GROW((size
+ 1) * sizeof(WCHAR
));
1354 if ((hNew32W
= LocalReAlloc(es
->hloc32W
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
))) {
1355 TRACE("Old 32 bit handle %p, new handle %p\n", es
->hloc32W
, hNew32W
);
1356 es
->hloc32W
= hNew32W
;
1357 es
->buffer_size
= LocalSize(hNew32W
)/sizeof(WCHAR
) - 1;
1361 EDIT_LockBuffer(es
);
1363 if (es
->buffer_size
< size
) {
1364 WARN("FAILED ! We now have %d+1\n", es
->buffer_size
);
1365 notify_parent(es
, EN_ERRSPACE
);
1368 TRACE("We now have %d+1\n", es
->buffer_size
);
1374 /*********************************************************************
1378 * Try to fit size + 1 bytes in the undo buffer.
1381 static BOOL
EDIT_MakeUndoFit(EDITSTATE
*es
, UINT size
)
1385 if (size
<= es
->undo_buffer_size
)
1388 TRACE("trying to ReAlloc to %d+1\n", size
);
1390 alloc_size
= ROUND_TO_GROW((size
+ 1) * sizeof(WCHAR
));
1391 if ((es
->undo_text
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, es
->undo_text
, alloc_size
))) {
1392 es
->undo_buffer_size
= alloc_size
/sizeof(WCHAR
) - 1;
1397 WARN("FAILED ! We now have %d+1\n", es
->undo_buffer_size
);
1403 /*********************************************************************
1405 * EDIT_UpdateTextRegion
1408 static void EDIT_UpdateTextRegion(EDITSTATE
*es
, HRGN hrgn
, BOOL bErase
)
1410 if (es
->flags
& EF_UPDATE
) {
1411 es
->flags
&= ~EF_UPDATE
;
1412 if (!notify_parent(es
, EN_UPDATE
)) return;
1414 NtUserInvalidateRgn(es
->hwndSelf
, hrgn
, bErase
);
1418 /*********************************************************************
1423 static void EDIT_UpdateText(EDITSTATE
*es
, const RECT
*rc
, BOOL bErase
)
1425 if (es
->flags
& EF_UPDATE
) {
1426 es
->flags
&= ~EF_UPDATE
;
1427 if (!notify_parent(es
, EN_UPDATE
)) return;
1429 NtUserInvalidateRect(es
->hwndSelf
, rc
, bErase
);
1432 /*********************************************************************
1434 * EDIT_SL_InvalidateText
1436 * Called from EDIT_InvalidateText().
1437 * Does the job for single-line controls only.
1440 static void EDIT_SL_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1445 EDIT_GetLineRect(es
, 0, start
, end
, &line_rect
);
1446 if (IntersectRect(&rc
, &line_rect
, &es
->format_rect
))
1447 EDIT_UpdateText(es
, &rc
, TRUE
);
1450 /*********************************************************************
1452 * EDIT_ML_InvalidateText
1454 * Called from EDIT_InvalidateText().
1455 * Does the job for multi-line controls only.
1458 static void EDIT_ML_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1460 INT vlc
= get_vertical_line_count(es
);
1461 INT sl
= EDIT_EM_LineFromChar(es
, start
);
1462 INT el
= EDIT_EM_LineFromChar(es
, end
);
1471 if ((el
< es
->y_offset
) || (sl
> es
->y_offset
+ vlc
))
1474 sc
= start
- EDIT_EM_LineIndex(es
, sl
);
1475 ec
= end
- EDIT_EM_LineIndex(es
, el
);
1476 if (sl
< es
->y_offset
) {
1480 if (el
> es
->y_offset
+ vlc
) {
1481 el
= es
->y_offset
+ vlc
;
1482 ec
= EDIT_EM_LineLength(es
, EDIT_EM_LineIndex(es
, el
));
1484 GetClientRect(es
->hwndSelf
, &rc1
);
1485 IntersectRect(&rcWnd
, &rc1
, &es
->format_rect
);
1487 EDIT_GetLineRect(es
, sl
, sc
, ec
, &rcLine
);
1488 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1489 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1491 EDIT_GetLineRect(es
, sl
, sc
,
1492 EDIT_EM_LineLength(es
,
1493 EDIT_EM_LineIndex(es
, sl
)),
1495 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1496 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1497 for (l
= sl
+ 1 ; l
< el
; l
++) {
1498 EDIT_GetLineRect(es
, l
, 0,
1499 EDIT_EM_LineLength(es
,
1500 EDIT_EM_LineIndex(es
, l
)),
1502 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1503 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1505 EDIT_GetLineRect(es
, el
, 0, ec
, &rcLine
);
1506 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1507 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1512 /*********************************************************************
1514 * EDIT_InvalidateText
1516 * Invalidate the text from offset start up to, but not including,
1517 * offset end. Useful for (re)painting the selection.
1518 * Regions outside the linewidth are not invalidated.
1519 * end == -1 means end == TextLength.
1520 * start and end need not be ordered.
1523 static void EDIT_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1529 end
= get_text_length(es
);
1537 if (es
->style
& ES_MULTILINE
)
1538 EDIT_ML_InvalidateText(es
, start
, end
);
1540 EDIT_SL_InvalidateText(es
, start
, end
);
1544 /*********************************************************************
1548 * note: unlike the specs say: the order of start and end
1549 * _is_ preserved in Windows. (i.e. start can be > end)
1550 * In other words: this handler is OK
1553 static void EDIT_EM_SetSel(EDITSTATE
*es
, UINT start
, UINT end
, BOOL after_wrap
)
1555 UINT old_start
= es
->selection_start
;
1556 UINT old_end
= es
->selection_end
;
1557 UINT len
= get_text_length(es
);
1559 if (start
== (UINT
)-1) {
1560 start
= es
->selection_end
;
1561 end
= es
->selection_end
;
1563 start
= min(start
, len
);
1564 end
= min(end
, len
);
1566 es
->selection_start
= start
;
1567 es
->selection_end
= end
;
1569 es
->flags
|= EF_AFTER_WRAP
;
1571 es
->flags
&= ~EF_AFTER_WRAP
;
1572 /* Compute the necessary invalidation region. */
1573 /* Note that we don't need to invalidate regions which have
1574 * "never" been selected, or those which are "still" selected.
1575 * In fact, every time we hit a selection boundary, we can
1576 * *toggle* whether we need to invalidate. Thus we can optimize by
1577 * *sorting* the interval endpoints. Let's assume that we sort them
1579 * start <= end <= old_start <= old_end
1580 * Knuth 5.3.1 (p 183) assures us that this can be done optimally
1581 * in 5 comparisons; i.e. it is impossible to do better than the
1583 ORDER_UINT(end
, old_end
);
1584 ORDER_UINT(start
, old_start
);
1585 ORDER_UINT(old_start
, old_end
);
1586 ORDER_UINT(start
, end
);
1587 /* Note that at this point 'end' and 'old_start' are not in order, but
1588 * start is definitely the min. and old_end is definitely the max. */
1589 if (end
!= old_start
)
1593 * ORDER_UINT32(end, old_start);
1594 * EDIT_InvalidateText(es, start, end);
1595 * EDIT_InvalidateText(es, old_start, old_end);
1596 * in place of the following if statement.
1597 * (That would complete the optimal five-comparison four-element sort.)
1599 if (old_start
> end
)
1601 EDIT_InvalidateText(es
, start
, end
);
1602 EDIT_InvalidateText(es
, old_start
, old_end
);
1606 EDIT_InvalidateText(es
, start
, old_start
);
1607 EDIT_InvalidateText(es
, end
, old_end
);
1610 else EDIT_InvalidateText(es
, start
, old_end
);
1614 /*********************************************************************
1616 * EDIT_UpdateScrollInfo
1619 static void EDIT_UpdateScrollInfo(EDITSTATE
*es
)
1621 if ((es
->style
& WS_VSCROLL
) && !(es
->flags
& EF_VSCROLL_TRACK
))
1624 si
.cbSize
= sizeof(SCROLLINFO
);
1625 si
.fMask
= SIF_PAGE
| SIF_POS
| SIF_RANGE
| SIF_DISABLENOSCROLL
;
1627 si
.nMax
= es
->line_count
- 1;
1628 si
.nPage
= es
->line_height
? (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
: 0;
1629 si
.nPos
= es
->y_offset
;
1630 TRACE("SB_VERT, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
1631 si
.nMin
, si
.nMax
, si
.nPage
, si
.nPos
);
1632 NtUserSetScrollInfo(es
->hwndSelf
, SB_VERT
, &si
, TRUE
);
1635 if ((es
->style
& WS_HSCROLL
) && !(es
->flags
& EF_HSCROLL_TRACK
))
1638 si
.cbSize
= sizeof(SCROLLINFO
);
1639 si
.fMask
= SIF_PAGE
| SIF_POS
| SIF_RANGE
| SIF_DISABLENOSCROLL
;
1641 si
.nMax
= es
->text_width
- 1;
1642 si
.nPage
= es
->format_rect
.right
- es
->format_rect
.left
;
1643 si
.nPos
= es
->x_offset
;
1644 TRACE("SB_HORZ, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
1645 si
.nMin
, si
.nMax
, si
.nPage
, si
.nPos
);
1646 NtUserSetScrollInfo(es
->hwndSelf
, SB_HORZ
, &si
, TRUE
);
1651 /*********************************************************************
1653 * EDIT_EM_LineScroll_internal
1655 * Version of EDIT_EM_LineScroll for internal use.
1656 * It doesn't refuse if ES_MULTILINE is set and assumes that
1657 * dx is in pixels, dy - in lines.
1660 static BOOL
EDIT_EM_LineScroll_internal(EDITSTATE
*es
, INT dx
, INT dy
)
1663 INT x_offset_in_pixels
;
1666 if (!es
->line_height
|| !es
->char_width
)
1669 lines_per_page
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
1671 if (es
->style
& ES_MULTILINE
)
1673 x_offset_in_pixels
= es
->x_offset
;
1678 x_offset_in_pixels
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->x_offset
, FALSE
));
1681 if (-dx
> x_offset_in_pixels
)
1682 dx
= -x_offset_in_pixels
;
1683 if (dx
> es
->text_width
- x_offset_in_pixels
)
1684 dx
= es
->text_width
- x_offset_in_pixels
;
1685 nyoff
= max(0, es
->y_offset
+ dy
);
1686 if (nyoff
>= es
->line_count
- lines_per_page
)
1687 nyoff
= max(0, es
->line_count
- lines_per_page
);
1688 dy
= (es
->y_offset
- nyoff
) * es
->line_height
;
1693 es
->y_offset
= nyoff
;
1694 if(es
->style
& ES_MULTILINE
)
1697 es
->x_offset
+= dx
/ es
->char_width
;
1699 GetClientRect(es
->hwndSelf
, &rc1
);
1700 IntersectRect(&rc
, &rc1
, &es
->format_rect
);
1701 NtUserScrollWindowEx(es
->hwndSelf
, -dx
, dy
,
1702 NULL
, &rc
, NULL
, NULL
, SW_INVALIDATE
);
1703 /* force scroll info update */
1704 EDIT_UpdateScrollInfo(es
);
1706 if (dx
&& !(es
->flags
& EF_HSCROLL_TRACK
))
1707 notify_parent(es
, EN_HSCROLL
);
1708 if (dy
&& !(es
->flags
& EF_VSCROLL_TRACK
))
1709 notify_parent(es
, EN_VSCROLL
);
1713 /*********************************************************************
1717 * NOTE: dx is in average character widths, dy - in lines;
1720 static BOOL
EDIT_EM_LineScroll(EDITSTATE
*es
, INT dx
, INT dy
)
1722 if (!(es
->style
& ES_MULTILINE
))
1725 dx
*= es
->char_width
;
1726 return EDIT_EM_LineScroll_internal(es
, dx
, dy
);
1730 /*********************************************************************
1735 static LRESULT
EDIT_EM_Scroll(EDITSTATE
*es
, INT action
)
1739 if (!(es
->style
& ES_MULTILINE
))
1740 return (LRESULT
)FALSE
;
1750 if (es
->y_offset
< es
->line_count
- 1)
1755 dy
= -(es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
1758 if (es
->y_offset
< es
->line_count
- 1)
1759 dy
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
1762 return (LRESULT
)FALSE
;
1765 INT vlc
= get_vertical_line_count(es
);
1766 /* check if we are going to move too far */
1767 if(es
->y_offset
+ dy
> es
->line_count
- vlc
)
1768 dy
= max(es
->line_count
- vlc
, 0) - es
->y_offset
;
1770 /* Notification is done in EDIT_EM_LineScroll */
1772 EDIT_EM_LineScroll(es
, 0, dy
);
1773 return MAKELONG(dy
, TRUE
);
1777 return (LRESULT
)FALSE
;
1781 /*********************************************************************
1786 static void EDIT_SetCaretPos(EDITSTATE
*es
, INT pos
,
1791 if (es
->flags
& EF_FOCUSED
)
1793 res
= EDIT_EM_PosFromChar(es
, pos
, after_wrap
);
1794 TRACE("%d - %dx%d\n", pos
, (short)LOWORD(res
), (short)HIWORD(res
));
1795 SetCaretPos((short)LOWORD(res
), (short)HIWORD(res
));
1800 /*********************************************************************
1805 static void EDIT_EM_ScrollCaret(EDITSTATE
*es
)
1807 if (es
->style
& ES_MULTILINE
) {
1811 INT cw
= es
->char_width
;
1816 l
= EDIT_EM_LineFromChar(es
, es
->selection_end
);
1817 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
));
1818 vlc
= get_vertical_line_count(es
);
1819 if (l
>= es
->y_offset
+ vlc
)
1820 dy
= l
- vlc
+ 1 - es
->y_offset
;
1821 if (l
< es
->y_offset
)
1822 dy
= l
- es
->y_offset
;
1823 ww
= es
->format_rect
.right
- es
->format_rect
.left
;
1824 if (x
< es
->format_rect
.left
)
1825 dx
= x
- es
->format_rect
.left
- ww
/ HSCROLL_FRACTION
/ cw
* cw
;
1826 if (x
> es
->format_rect
.right
)
1827 dx
= x
- es
->format_rect
.left
- (HSCROLL_FRACTION
- 1) * ww
/ HSCROLL_FRACTION
/ cw
* cw
;
1828 if (dy
|| dx
|| (es
->y_offset
&& (es
->line_count
- es
->y_offset
< vlc
)))
1830 /* check if we are going to move too far */
1831 if(es
->x_offset
+ dx
+ ww
> es
->text_width
)
1832 dx
= es
->text_width
- ww
- es
->x_offset
;
1833 if(dx
|| dy
|| (es
->y_offset
&& (es
->line_count
- es
->y_offset
< vlc
)))
1834 EDIT_EM_LineScroll_internal(es
, dx
, dy
);
1841 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
1842 format_width
= es
->format_rect
.right
- es
->format_rect
.left
;
1843 if (x
< es
->format_rect
.left
) {
1844 goal
= es
->format_rect
.left
+ format_width
/ HSCROLL_FRACTION
;
1847 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
1848 } while ((x
< goal
) && es
->x_offset
);
1849 /* FIXME: use ScrollWindow() somehow to improve performance */
1850 EDIT_UpdateText(es
, NULL
, TRUE
);
1851 } else if (x
> es
->format_rect
.right
) {
1853 INT len
= get_text_length(es
);
1854 goal
= es
->format_rect
.right
- format_width
/ HSCROLL_FRACTION
;
1857 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
1858 x_last
= (short)LOWORD(EDIT_EM_PosFromChar(es
, len
, FALSE
));
1859 } while ((x
> goal
) && (x_last
> es
->format_rect
.right
));
1860 /* FIXME: use ScrollWindow() somehow to improve performance */
1861 EDIT_UpdateText(es
, NULL
, TRUE
);
1865 EDIT_SetCaretPos(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
);
1869 /*********************************************************************
1874 static void EDIT_MoveBackward(EDITSTATE
*es
, BOOL extend
)
1876 INT e
= es
->selection_end
;
1880 if ((es
->style
& ES_MULTILINE
) && e
&&
1881 (es
->text
[e
- 1] == '\r') && (es
->text
[e
] == '\n')) {
1883 if (e
&& (es
->text
[e
- 1] == '\r'))
1887 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
1888 EDIT_EM_ScrollCaret(es
);
1892 /*********************************************************************
1896 * Only for multi line controls
1897 * Move the caret one line down, on a column with the nearest
1898 * x coordinate on the screen (might be a different column).
1901 static void EDIT_MoveDown_ML(EDITSTATE
*es
, BOOL extend
)
1903 INT s
= es
->selection_start
;
1904 INT e
= es
->selection_end
;
1905 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
1906 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
1907 INT x
= (short)LOWORD(pos
);
1908 INT y
= (short)HIWORD(pos
);
1910 e
= EDIT_CharFromPos(es
, x
, y
+ es
->line_height
, &after_wrap
);
1913 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
1914 EDIT_EM_ScrollCaret(es
);
1918 /*********************************************************************
1923 static void EDIT_MoveEnd(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
)
1925 BOOL after_wrap
= FALSE
;
1928 /* Pass a high value in x to make sure of receiving the end of the line */
1929 if (!ctrl
&& (es
->style
& ES_MULTILINE
))
1930 e
= EDIT_CharFromPos(es
, 0x3fffffff,
1931 HIWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
)), &after_wrap
);
1933 e
= get_text_length(es
);
1934 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, after_wrap
);
1935 EDIT_EM_ScrollCaret(es
);
1939 /*********************************************************************
1944 static void EDIT_MoveForward(EDITSTATE
*es
, BOOL extend
)
1946 INT e
= es
->selection_end
;
1950 if ((es
->style
& ES_MULTILINE
) && (es
->text
[e
- 1] == '\r')) {
1951 if (es
->text
[e
] == '\n')
1953 else if ((es
->text
[e
] == '\r') && (es
->text
[e
+ 1] == '\n'))
1957 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
1958 EDIT_EM_ScrollCaret(es
);
1962 /*********************************************************************
1966 * Home key: move to beginning of line.
1969 static void EDIT_MoveHome(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
)
1973 /* Pass the x_offset in x to make sure of receiving the first position of the line */
1974 if (!ctrl
&& (es
->style
& ES_MULTILINE
))
1975 e
= EDIT_CharFromPos(es
, -es
->x_offset
,
1976 HIWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
)), NULL
);
1979 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
1980 EDIT_EM_ScrollCaret(es
);
1984 /*********************************************************************
1986 * EDIT_MovePageDown_ML
1988 * Only for multi line controls
1989 * Move the caret one page down, on a column with the nearest
1990 * x coordinate on the screen (might be a different column).
1993 static void EDIT_MovePageDown_ML(EDITSTATE
*es
, BOOL extend
)
1995 INT s
= es
->selection_start
;
1996 INT e
= es
->selection_end
;
1997 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
1998 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
1999 INT x
= (short)LOWORD(pos
);
2000 INT y
= (short)HIWORD(pos
);
2002 e
= EDIT_CharFromPos(es
, x
,
2003 y
+ (es
->format_rect
.bottom
- es
->format_rect
.top
),
2007 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2008 EDIT_EM_ScrollCaret(es
);
2012 /*********************************************************************
2014 * EDIT_MovePageUp_ML
2016 * Only for multi line controls
2017 * Move the caret one page up, on a column with the nearest
2018 * x coordinate on the screen (might be a different column).
2021 static void EDIT_MovePageUp_ML(EDITSTATE
*es
, BOOL extend
)
2023 INT s
= es
->selection_start
;
2024 INT e
= es
->selection_end
;
2025 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2026 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2027 INT x
= (short)LOWORD(pos
);
2028 INT y
= (short)HIWORD(pos
);
2030 e
= EDIT_CharFromPos(es
, x
,
2031 y
- (es
->format_rect
.bottom
- es
->format_rect
.top
),
2035 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2036 EDIT_EM_ScrollCaret(es
);
2040 /*********************************************************************
2044 * Only for multi line controls
2045 * Move the caret one line up, on a column with the nearest
2046 * x coordinate on the screen (might be a different column).
2049 static void EDIT_MoveUp_ML(EDITSTATE
*es
, BOOL extend
)
2051 INT s
= es
->selection_start
;
2052 INT e
= es
->selection_end
;
2053 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2054 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2055 INT x
= (short)LOWORD(pos
);
2056 INT y
= (short)HIWORD(pos
);
2058 e
= EDIT_CharFromPos(es
, x
, y
- es
->line_height
, &after_wrap
);
2061 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2062 EDIT_EM_ScrollCaret(es
);
2066 /*********************************************************************
2068 * EDIT_MoveWordBackward
2071 static void EDIT_MoveWordBackward(EDITSTATE
*es
, BOOL extend
)
2073 INT s
= es
->selection_start
;
2074 INT e
= es
->selection_end
;
2079 l
= EDIT_EM_LineFromChar(es
, e
);
2080 ll
= EDIT_EM_LineLength(es
, e
);
2081 li
= EDIT_EM_LineIndex(es
, l
);
2084 li
= EDIT_EM_LineIndex(es
, l
- 1);
2085 e
= li
+ EDIT_EM_LineLength(es
, li
);
2088 e
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_LEFT
);
2092 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
2093 EDIT_EM_ScrollCaret(es
);
2097 /*********************************************************************
2099 * EDIT_MoveWordForward
2102 static void EDIT_MoveWordForward(EDITSTATE
*es
, BOOL extend
)
2104 INT s
= es
->selection_start
;
2105 INT e
= es
->selection_end
;
2110 l
= EDIT_EM_LineFromChar(es
, e
);
2111 ll
= EDIT_EM_LineLength(es
, e
);
2112 li
= EDIT_EM_LineIndex(es
, l
);
2114 if ((es
->style
& ES_MULTILINE
) && (l
!= es
->line_count
- 1))
2115 e
= EDIT_EM_LineIndex(es
, l
+ 1);
2117 e
= li
+ EDIT_CallWordBreakProc(es
,
2118 li
, e
- li
+ 1, ll
, WB_RIGHT
);
2122 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
2123 EDIT_EM_ScrollCaret(es
);
2127 /*********************************************************************
2132 static INT
EDIT_PaintText(EDITSTATE
*es
, HDC dc
, INT x
, INT y
, INT line
, INT col
, INT count
, BOOL rev
)
2136 LOGFONTW underline_font
;
2137 HFONT hUnderline
= 0;
2146 BkMode
= GetBkMode(dc
);
2147 BkColor
= GetBkColor(dc
);
2148 TextColor
= GetTextColor(dc
);
2150 if (es
->composition_len
== 0)
2152 SetBkColor(dc
, GetSysColor(COLOR_HIGHLIGHT
));
2153 SetTextColor(dc
, GetSysColor(COLOR_HIGHLIGHTTEXT
));
2154 SetBkMode( dc
, OPAQUE
);
2158 HFONT current
= GetCurrentObject(dc
,OBJ_FONT
);
2159 GetObjectW(current
,sizeof(LOGFONTW
),&underline_font
);
2160 underline_font
.lfUnderline
= TRUE
;
2161 hUnderline
= CreateFontIndirectW(&underline_font
);
2162 old_font
= SelectObject(dc
,hUnderline
);
2165 li
= EDIT_EM_LineIndex(es
, line
);
2166 if (es
->style
& ES_MULTILINE
) {
2167 ret
= (INT
)LOWORD(TabbedTextOutW(dc
, x
, y
, es
->text
+ li
+ col
, count
,
2168 es
->tabs_count
, es
->tabs
, es
->format_rect
.left
- es
->x_offset
));
2170 TextOutW(dc
, x
, y
, es
->text
+ li
+ col
, count
);
2171 GetTextExtentPoint32W(dc
, es
->text
+ li
+ col
, count
, &size
);
2175 if (es
->composition_len
== 0)
2177 SetBkColor(dc
, BkColor
);
2178 SetTextColor(dc
, TextColor
);
2179 SetBkMode( dc
, BkMode
);
2184 SelectObject(dc
,old_font
);
2186 DeleteObject(hUnderline
);
2193 /*********************************************************************
2198 static void EDIT_PaintLine(EDITSTATE
*es
, HDC dc
, INT line
, BOOL rev
)
2207 SCRIPT_STRING_ANALYSIS ssa
;
2209 if (es
->style
& ES_MULTILINE
) {
2210 INT vlc
= get_vertical_line_count(es
);
2212 if ((line
< es
->y_offset
) || (line
> es
->y_offset
+ vlc
) || (line
>= es
->line_count
))
2217 TRACE("line=%d\n", line
);
2219 ssa
= EDIT_UpdateUniscribeData(es
, dc
, line
);
2220 pos
= EDIT_EM_PosFromChar(es
, EDIT_EM_LineIndex(es
, line
), FALSE
);
2221 x
= (short)LOWORD(pos
);
2222 y
= (short)HIWORD(pos
);
2224 if (es
->style
& ES_MULTILINE
)
2226 int line_idx
= line
;
2228 if (es
->style
& ES_RIGHT
|| es
->style
& ES_CENTER
)
2230 LINEDEF
*line_def
= es
->first_line_def
;
2233 while (line_def
&& line_idx
)
2235 line_def
= line_def
->next
;
2238 w
= es
->format_rect
.right
- es
->format_rect
.left
;
2239 lw
= line_def
->width
;
2241 if (es
->style
& ES_RIGHT
)
2243 else if (es
->style
& ES_CENTER
)
2246 x
+= es
->format_rect
.left
;
2251 li
= EDIT_EM_LineIndex(es
, line
);
2252 ll
= EDIT_EM_LineLength(es
, li
);
2253 s
= min(es
->selection_start
, es
->selection_end
);
2254 e
= max(es
->selection_start
, es
->selection_end
);
2255 s
= min(li
+ ll
, max(li
, s
));
2256 e
= min(li
+ ll
, max(li
, e
));
2260 ScriptStringOut(ssa
, x
, y
, 0, &es
->format_rect
, s
- li
, e
- li
, FALSE
);
2261 else if (rev
&& (s
!= e
) &&
2262 ((es
->flags
& EF_FOCUSED
) || (es
->style
& ES_NOHIDESEL
))) {
2263 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, 0, s
- li
, FALSE
);
2264 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, s
- li
, e
- s
, TRUE
);
2265 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, e
- li
, li
+ ll
- e
, FALSE
);
2267 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, 0, ll
, FALSE
);
2271 /*********************************************************************
2273 * EDIT_AdjustFormatRect
2275 * Adjusts the format rectangle for the current font and the
2276 * current client rectangle.
2279 static void EDIT_AdjustFormatRect(EDITSTATE
*es
)
2283 es
->format_rect
.right
= max(es
->format_rect
.right
, es
->format_rect
.left
+ es
->char_width
);
2284 if (es
->style
& ES_MULTILINE
)
2286 INT fw
, vlc
, max_x_offset
, max_y_offset
;
2288 vlc
= get_vertical_line_count(es
);
2289 es
->format_rect
.bottom
= es
->format_rect
.top
+ vlc
* es
->line_height
;
2291 /* correct es->x_offset */
2292 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
2293 max_x_offset
= es
->text_width
- fw
;
2294 if(max_x_offset
< 0) max_x_offset
= 0;
2295 if(es
->x_offset
> max_x_offset
)
2296 es
->x_offset
= max_x_offset
;
2298 /* correct es->y_offset */
2299 max_y_offset
= es
->line_count
- vlc
;
2300 if(max_y_offset
< 0) max_y_offset
= 0;
2301 if(es
->y_offset
> max_y_offset
)
2302 es
->y_offset
= max_y_offset
;
2304 /* force scroll info update */
2305 EDIT_UpdateScrollInfo(es
);
2308 /* Windows doesn't care to fix text placement for SL controls */
2309 es
->format_rect
.bottom
= es
->format_rect
.top
+ es
->line_height
;
2311 /* Always stay within the client area */
2312 GetClientRect(es
->hwndSelf
, &ClientRect
);
2313 es
->format_rect
.bottom
= min(es
->format_rect
.bottom
, ClientRect
.bottom
);
2315 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_AUTOHSCROLL
))
2316 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
2318 EDIT_SetCaretPos(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
);
2322 /*********************************************************************
2326 * note: this is not (exactly) the handler called on EM_SETRECTNP
2327 * it is also used to set the rect of a single line control
2330 static void EDIT_SetRectNP(EDITSTATE
*es
, const RECT
*rc
)
2334 ExStyle
= GetWindowLongPtrW(es
->hwndSelf
, GWL_EXSTYLE
);
2336 CopyRect(&es
->format_rect
, rc
);
2338 if (ExStyle
& WS_EX_CLIENTEDGE
) {
2339 es
->format_rect
.left
++;
2340 es
->format_rect
.right
--;
2342 if (es
->format_rect
.bottom
- es
->format_rect
.top
2343 >= es
->line_height
+ 2)
2345 es
->format_rect
.top
++;
2346 es
->format_rect
.bottom
--;
2349 else if (es
->style
& WS_BORDER
) {
2350 bw
= GetSystemMetrics(SM_CXBORDER
) + 1;
2351 bh
= GetSystemMetrics(SM_CYBORDER
) + 1;
2352 InflateRect(&es
->format_rect
, -bw
, 0);
2353 if (es
->format_rect
.bottom
- es
->format_rect
.top
>= es
->line_height
+ 2 * bh
)
2354 InflateRect(&es
->format_rect
, 0, -bh
);
2357 es
->format_rect
.left
+= es
->left_margin
;
2358 es
->format_rect
.right
-= es
->right_margin
;
2359 EDIT_AdjustFormatRect(es
);
2363 /*********************************************************************
2367 * returns line number (not index) in high-order word of result.
2368 * NB : Q137805 is unclear about this. POINT * pointer in lParam apply
2369 * to Richedit, not to the edit control. Original documentation is valid.
2370 * FIXME: do the specs mean to return -1 if outside client area or
2371 * if outside formatting rectangle ???
2374 static LRESULT
EDIT_EM_CharFromPos(EDITSTATE
*es
, INT x
, INT y
)
2382 GetClientRect(es
->hwndSelf
, &rc
);
2383 if (!PtInRect(&rc
, pt
))
2386 index
= EDIT_CharFromPos(es
, x
, y
, NULL
);
2387 return MAKELONG(index
, EDIT_EM_LineFromChar(es
, index
));
2391 /*********************************************************************
2395 * Enable or disable soft breaks.
2397 * This means: insert or remove the soft linebreak character (\r\r\n).
2398 * Take care to check if the text still fits the buffer after insertion.
2399 * If not, notify with EN_ERRSPACE.
2402 static BOOL
EDIT_EM_FmtLines(EDITSTATE
*es
, BOOL add_eol
)
2404 es
->flags
&= ~EF_USE_SOFTBRK
;
2406 es
->flags
|= EF_USE_SOFTBRK
;
2407 FIXME("soft break enabled, not implemented\n");
2413 /*********************************************************************
2417 * Hopefully this won't fire back at us.
2418 * We always start with a fixed buffer in the local heap.
2419 * Despite of the documentation says that the local heap is used
2420 * only if DS_LOCALEDIT flag is set, NT and 2000 always allocate
2421 * buffer on the local heap.
2424 static HLOCAL
EDIT_EM_GetHandle(EDITSTATE
*es
)
2428 if (!(es
->style
& ES_MULTILINE
))
2432 hLocal
= es
->hloc32W
;
2438 UINT countA
, alloc_size
;
2439 TRACE("Allocating 32-bit ANSI alias buffer\n");
2440 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, NULL
, 0, NULL
, NULL
);
2441 alloc_size
= ROUND_TO_GROW(countA
);
2442 if(!(es
->hloc32A
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, alloc_size
)))
2444 ERR("Could not allocate %d bytes for 32-bit ANSI alias buffer\n", alloc_size
);
2447 textA
= LocalLock(es
->hloc32A
);
2448 WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, textA
, countA
, NULL
, NULL
);
2449 LocalUnlock(es
->hloc32A
);
2451 hLocal
= es
->hloc32A
;
2454 EDIT_UnlockBuffer(es
, TRUE
);
2456 /* The text buffer handle belongs to the app */
2457 es
->hlocapp
= hLocal
;
2459 TRACE("Returning %p, LocalSize() = %Id\n", hLocal
, LocalSize(hLocal
));
2464 /*********************************************************************
2469 static INT
EDIT_EM_GetLine(EDITSTATE
*es
, INT line
, LPWSTR dst
, BOOL unicode
)
2472 INT line_len
, dst_len
;
2475 if (es
->style
& ES_MULTILINE
) {
2476 if (line
>= es
->line_count
)
2480 i
= EDIT_EM_LineIndex(es
, line
);
2482 line_len
= EDIT_EM_LineLength(es
, i
);
2483 dst_len
= *(WORD
*)dst
;
2486 if(dst_len
<= line_len
)
2488 memcpy(dst
, src
, dst_len
* sizeof(WCHAR
));
2491 else /* Append 0 if enough space */
2493 memcpy(dst
, src
, line_len
* sizeof(WCHAR
));
2500 INT ret
= WideCharToMultiByte(CP_ACP
, 0, src
, line_len
, (LPSTR
)dst
, dst_len
, NULL
, NULL
);
2501 if(!ret
&& line_len
) /* Insufficient buffer size */
2503 if(ret
< dst_len
) /* Append 0 if enough space */
2504 ((LPSTR
)dst
)[ret
] = 0;
2510 /*********************************************************************
2515 static LRESULT
EDIT_EM_GetSel(const EDITSTATE
*es
, PUINT start
, PUINT end
)
2517 UINT s
= es
->selection_start
;
2518 UINT e
= es
->selection_end
;
2525 return MAKELONG(s
, e
);
2529 /*********************************************************************
2533 * FIXME: handle ES_NUMBER and ES_OEMCONVERT here
2536 static void EDIT_EM_ReplaceSel(EDITSTATE
*es
, BOOL can_undo
, const WCHAR
*lpsz_replace
, UINT strl
,
2537 BOOL send_update
, BOOL honor_limit
)
2539 UINT tl
= get_text_length(es
);
2550 TRACE("%s, can_undo %d, send_update %d\n",
2551 debugstr_wn(lpsz_replace
, strl
), can_undo
, send_update
);
2553 s
= es
->selection_start
;
2554 e
= es
->selection_end
;
2556 EDIT_InvalidateUniscribeData(es
);
2557 if ((s
== e
) && !strl
)
2562 size
= tl
- (e
- s
) + strl
;
2566 /* Issue the EN_MAXTEXT notification and continue with replacing text
2567 * so that buffer limit is honored. */
2568 if ((honor_limit
) && (size
> es
->buffer_limit
))
2570 if (!notify_parent(es
, EN_MAXTEXT
)) return;
2571 /* Buffer limit can be smaller than the actual length of text in combobox */
2572 if (es
->buffer_limit
< (tl
- (e
-s
)))
2575 strl
= min(strl
, es
->buffer_limit
- (tl
- (e
-s
)));
2578 if (!EDIT_MakeFit(es
, tl
- (e
- s
) + strl
))
2582 /* there is something to be deleted */
2583 TRACE("deleting stuff.\n");
2585 buf
= HeapAlloc(GetProcessHeap(), 0, (bufl
+ 1) * sizeof(WCHAR
));
2587 memcpy(buf
, es
->text
+ s
, bufl
* sizeof(WCHAR
));
2588 buf
[bufl
] = 0; /* ensure 0 termination */
2590 lstrcpyW(es
->text
+ s
, es
->text
+ e
);
2591 text_buffer_changed(es
);
2594 /* there is an insertion */
2595 tl
= get_text_length(es
);
2596 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
));
2597 for (p
= es
->text
+ tl
; p
>= es
->text
+ s
; p
--)
2599 for (i
= 0 , p
= es
->text
+ s
; i
< strl
; i
++)
2600 p
[i
] = lpsz_replace
[i
];
2601 if(es
->style
& ES_UPPERCASE
)
2602 CharUpperBuffW(p
, strl
);
2603 else if(es
->style
& ES_LOWERCASE
)
2604 CharLowerBuffW(p
, strl
);
2605 text_buffer_changed(es
);
2607 if (es
->style
& ES_MULTILINE
)
2609 INT st
= min(es
->selection_start
, es
->selection_end
);
2610 INT vlc
= get_vertical_line_count(es
);
2612 hrgn
= CreateRectRgn(0, 0, 0, 0);
2613 EDIT_BuildLineDefs_ML(es
, st
, st
+ strl
,
2614 strl
- abs(es
->selection_end
- es
->selection_start
), hrgn
);
2615 /* if text is too long undo all changes */
2616 if (honor_limit
&& !(es
->style
& ES_AUTOVSCROLL
) && (es
->line_count
> vlc
)) {
2618 lstrcpyW(es
->text
+ e
, es
->text
+ e
+ strl
);
2620 for (i
= 0 , p
= es
->text
; i
< e
- s
; i
++)
2622 text_buffer_changed(es
);
2623 EDIT_BuildLineDefs_ML(es
, s
, e
,
2624 abs(es
->selection_end
- es
->selection_start
) - strl
, hrgn
);
2627 SetRectRgn(hrgn
, 0, 0, 0, 0);
2628 if (!notify_parent(es
, EN_MAXTEXT
)) return;
2632 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
2633 EDIT_InvalidateUniscribeData(es
);
2634 EDIT_CalcLineWidth_SL(es
);
2635 /* remove chars that don't fit */
2636 if (honor_limit
&& !(es
->style
& ES_AUTOHSCROLL
) && (es
->text_width
> fw
)) {
2637 while ((es
->text_width
> fw
) && s
+ strl
>= s
) {
2638 lstrcpyW(es
->text
+ s
+ strl
- 1, es
->text
+ s
+ strl
);
2640 es
->text_length
= -1;
2641 EDIT_InvalidateUniscribeData(es
);
2642 EDIT_CalcLineWidth_SL(es
);
2644 text_buffer_changed(es
);
2645 if (!notify_parent(es
, EN_MAXTEXT
)) return;
2651 utl
= lstrlenW(es
->undo_text
);
2652 if (!es
->undo_insert_count
&& (*es
->undo_text
&& (s
== es
->undo_position
))) {
2653 /* undo-buffer is extended to the right */
2654 EDIT_MakeUndoFit(es
, utl
+ e
- s
);
2655 memcpy(es
->undo_text
+ utl
, buf
, (e
- s
)*sizeof(WCHAR
));
2656 (es
->undo_text
+ utl
)[e
- s
] = 0; /* ensure 0 termination */
2657 } else if (!es
->undo_insert_count
&& (*es
->undo_text
&& (e
== es
->undo_position
))) {
2658 /* undo-buffer is extended to the left */
2659 EDIT_MakeUndoFit(es
, utl
+ e
- s
);
2660 for (p
= es
->undo_text
+ utl
; p
>= es
->undo_text
; p
--)
2662 for (i
= 0 , p
= es
->undo_text
; i
< e
- s
; i
++)
2664 es
->undo_position
= s
;
2666 /* new undo-buffer */
2667 EDIT_MakeUndoFit(es
, e
- s
);
2668 memcpy(es
->undo_text
, buf
, (e
- s
)*sizeof(WCHAR
));
2669 es
->undo_text
[e
- s
] = 0; /* ensure 0 termination */
2670 es
->undo_position
= s
;
2672 /* any deletion makes the old insertion-undo invalid */
2673 es
->undo_insert_count
= 0;
2675 EDIT_EM_EmptyUndoBuffer(es
);
2679 if ((s
== es
->undo_position
) ||
2680 ((es
->undo_insert_count
) &&
2681 (s
== es
->undo_position
+ es
->undo_insert_count
)))
2683 * insertion is new and at delete position or
2684 * an extension to either left or right
2686 es
->undo_insert_count
+= strl
;
2688 /* new insertion undo */
2689 es
->undo_position
= s
;
2690 es
->undo_insert_count
= strl
;
2691 /* new insertion makes old delete-buffer invalid */
2692 *es
->undo_text
= '\0';
2695 EDIT_EM_EmptyUndoBuffer(es
);
2698 HeapFree(GetProcessHeap(), 0, buf
);
2702 /* If text has been deleted and we're right or center aligned then scroll rightward */
2703 if (es
->style
& (ES_RIGHT
| ES_CENTER
))
2705 INT delta
= strl
- abs(es
->selection_end
- es
->selection_start
);
2707 if (delta
< 0 && es
->x_offset
)
2709 if (abs(delta
) > es
->x_offset
)
2712 es
->x_offset
+= delta
;
2716 EDIT_EM_SetSel(es
, s
, s
, FALSE
);
2717 es
->flags
|= EF_MODIFIED
;
2718 if (send_update
) es
->flags
|= EF_UPDATE
;
2721 EDIT_UpdateTextRegion(es
, hrgn
, TRUE
);
2725 EDIT_UpdateText(es
, NULL
, TRUE
);
2727 EDIT_EM_ScrollCaret(es
);
2729 /* force scroll info update */
2730 EDIT_UpdateScrollInfo(es
);
2733 if(send_update
|| (es
->flags
& EF_UPDATE
))
2735 es
->flags
&= ~EF_UPDATE
;
2736 if (!notify_parent(es
, EN_CHANGE
)) return;
2738 EDIT_InvalidateUniscribeData(es
);
2742 /*********************************************************************
2746 * FIXME: ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
2749 static void EDIT_EM_SetHandle(EDITSTATE
*es
, HLOCAL hloc
)
2751 if (!(es
->style
& ES_MULTILINE
))
2755 WARN("called with NULL handle\n");
2759 EDIT_UnlockBuffer(es
, TRUE
);
2765 LocalFree(es
->hloc32A
);
2777 countA
= LocalSize(hloc
);
2778 textA
= LocalLock(hloc
);
2779 countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, NULL
, 0);
2780 if(!(hloc32W_new
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, countW
* sizeof(WCHAR
))))
2782 ERR("Could not allocate new unicode buffer\n");
2785 textW
= LocalLock(hloc32W_new
);
2786 MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, textW
, countW
);
2787 LocalUnlock(hloc32W_new
);
2791 LocalFree(es
->hloc32W
);
2793 es
->hloc32W
= hloc32W_new
;
2797 es
->buffer_size
= LocalSize(es
->hloc32W
)/sizeof(WCHAR
) - 1;
2799 /* The text buffer handle belongs to the control */
2802 EDIT_LockBuffer(es
);
2803 text_buffer_changed(es
);
2805 es
->x_offset
= es
->y_offset
= 0;
2806 es
->selection_start
= es
->selection_end
= 0;
2807 EDIT_EM_EmptyUndoBuffer(es
);
2808 es
->flags
&= ~EF_MODIFIED
;
2809 es
->flags
&= ~EF_UPDATE
;
2810 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
2811 EDIT_UpdateText(es
, NULL
, TRUE
);
2812 EDIT_EM_ScrollCaret(es
);
2813 /* force scroll info update */
2814 EDIT_UpdateScrollInfo(es
);
2818 /*********************************************************************
2822 * NOTE: this version currently implements WinNT limits
2825 static void EDIT_EM_SetLimitText(EDITSTATE
*es
, UINT limit
)
2827 if (!limit
) limit
= ~0u;
2828 if (!(es
->style
& ES_MULTILINE
)) limit
= min(limit
, 0x7ffffffe);
2829 es
->buffer_limit
= limit
;
2832 static BOOL
is_cjk_charset(HDC dc
)
2834 switch (GdiGetCodePage(dc
)) {
2835 case 932: case 936: case 949: case 950: case 1361:
2842 static BOOL
is_cjk_font(HDC dc
)
2844 const DWORD FS_DBCS_MASK
= FS_JISJAPAN
|FS_CHINESESIMP
|FS_WANSUNG
|FS_CHINESETRAD
|FS_JOHAB
;
2846 return (GetTextCharsetInfo(dc
, &fs
, 0) != DEFAULT_CHARSET
&&
2847 (fs
.fsCsb
[0] & FS_DBCS_MASK
));
2850 static int get_cjk_fontinfo_margin(int width
, int side_bearing
)
2853 if (side_bearing
< 0)
2854 margin
= min(-side_bearing
, width
/2);
2860 struct char_width_info
{
2861 INT min_lsb
, min_rsb
, unknown
;
2864 /* Undocumented gdi32 export */
2865 extern BOOL WINAPI
GetCharWidthInfo(HDC
, struct char_width_info
*);
2867 /*********************************************************************
2871 * EC_USEFONTINFO is used as a left or right value i.e. lParam and not as an
2872 * action wParam despite what the docs say. EC_USEFONTINFO calculates the
2873 * margin according to the textmetrics of the current font.
2875 * When EC_USEFONTINFO is used, the margins only change if the edit control is
2876 * equal to or larger than a certain size. The empty client rect is treated as
2879 static void EDIT_EM_SetMargins(EDITSTATE
*es
, INT action
,
2880 WORD left
, WORD right
, BOOL repaint
)
2883 INT default_left_margin
= 0; /* in pixels */
2884 INT default_right_margin
= 0; /* in pixels */
2886 /* Set the default margins depending on the font */
2887 if (es
->font
&& (left
== EC_USEFONTINFO
|| right
== EC_USEFONTINFO
)) {
2888 HDC dc
= NtUserGetDC(es
->hwndSelf
);
2889 HFONT old_font
= SelectObject(dc
, es
->font
);
2890 LONG width
= GdiGetCharDimensions(dc
, &tm
, NULL
), rc_width
;
2893 /* The default margins are only non zero for TrueType or Vector fonts */
2894 if (tm
.tmPitchAndFamily
& ( TMPF_VECTOR
| TMPF_TRUETYPE
)) {
2895 struct char_width_info width_info
;
2897 if ((is_cjk_charset(dc
) || is_cjk_font(dc
)) &&
2898 GetCharWidthInfo(dc
, &width_info
))
2900 default_left_margin
= get_cjk_fontinfo_margin(width
, width_info
.min_lsb
);
2901 default_right_margin
= get_cjk_fontinfo_margin(width
, width_info
.min_rsb
);
2905 default_left_margin
= width
/ 2;
2906 default_right_margin
= width
/ 2;
2909 GetClientRect(es
->hwndSelf
, &rc
);
2910 rc_width
= !IsRectEmpty(&rc
) ? rc
.right
- rc
.left
: 80;
2911 if (rc_width
< default_left_margin
+ default_right_margin
+ width
* 2) {
2912 default_left_margin
= es
->left_margin
;
2913 default_right_margin
= es
->right_margin
;
2916 SelectObject(dc
, old_font
);
2917 NtUserReleaseDC( es
->hwndSelf
, dc
);
2920 if (action
& EC_LEFTMARGIN
) {
2921 es
->format_rect
.left
-= es
->left_margin
;
2922 if (left
!= EC_USEFONTINFO
)
2923 es
->left_margin
= left
;
2925 es
->left_margin
= default_left_margin
;
2926 es
->format_rect
.left
+= es
->left_margin
;
2929 if (action
& EC_RIGHTMARGIN
) {
2930 es
->format_rect
.right
+= es
->right_margin
;
2931 if (right
!= EC_USEFONTINFO
)
2932 es
->right_margin
= right
;
2934 es
->right_margin
= default_right_margin
;
2935 es
->format_rect
.right
-= es
->right_margin
;
2938 if (action
& (EC_LEFTMARGIN
| EC_RIGHTMARGIN
)) {
2939 EDIT_AdjustFormatRect(es
);
2940 if (repaint
) EDIT_UpdateText(es
, NULL
, TRUE
);
2943 TRACE("left=%d, right=%d\n", es
->left_margin
, es
->right_margin
);
2947 /*********************************************************************
2949 * EM_SETPASSWORDCHAR
2952 static void EDIT_EM_SetPasswordChar(EDITSTATE
*es
, WCHAR c
)
2956 if (es
->style
& ES_MULTILINE
)
2959 if (es
->password_char
== c
)
2962 style
= GetWindowLongW( es
->hwndSelf
, GWL_STYLE
);
2963 es
->password_char
= c
;
2965 SetWindowLongW( es
->hwndSelf
, GWL_STYLE
, style
| ES_PASSWORD
);
2966 es
->style
|= ES_PASSWORD
;
2968 SetWindowLongW( es
->hwndSelf
, GWL_STYLE
, style
& ~ES_PASSWORD
);
2969 es
->style
&= ~ES_PASSWORD
;
2971 EDIT_InvalidateUniscribeData(es
);
2972 EDIT_UpdateText(es
, NULL
, TRUE
);
2976 /*********************************************************************
2981 static BOOL
EDIT_EM_SetTabStops(EDITSTATE
*es
, INT count
, const INT
*tabs
)
2983 if (!(es
->style
& ES_MULTILINE
))
2985 HeapFree(GetProcessHeap(), 0, es
->tabs
);
2986 es
->tabs_count
= count
;
2990 es
->tabs
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(INT
));
2991 memcpy(es
->tabs
, tabs
, count
* sizeof(INT
));
2993 EDIT_InvalidateUniscribeData(es
);
2998 /*********************************************************************
3000 * EM_SETWORDBREAKPROC
3003 static void EDIT_EM_SetWordBreakProc(EDITSTATE
*es
, void *wbp
)
3005 if (es
->word_break_proc
== wbp
)
3008 es
->word_break_proc
= wbp
;
3010 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_AUTOHSCROLL
)) {
3011 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3012 EDIT_UpdateText(es
, NULL
, TRUE
);
3017 /*********************************************************************
3022 static BOOL
EDIT_EM_Undo(EDITSTATE
*es
)
3027 /* As per MSDN spec, for a single-line edit control,
3028 the return value is always TRUE */
3029 if( es
->style
& ES_READONLY
)
3030 return !(es
->style
& ES_MULTILINE
);
3032 ulength
= lstrlenW(es
->undo_text
);
3034 utext
= HeapAlloc(GetProcessHeap(), 0, (ulength
+ 1) * sizeof(WCHAR
));
3036 lstrcpyW(utext
, es
->undo_text
);
3038 TRACE("before UNDO:insertion length = %d, deletion buffer = %s\n",
3039 es
->undo_insert_count
, debugstr_w(utext
));
3041 EDIT_EM_SetSel(es
, es
->undo_position
, es
->undo_position
+ es
->undo_insert_count
, FALSE
);
3042 EDIT_EM_EmptyUndoBuffer(es
);
3043 EDIT_EM_ReplaceSel(es
, TRUE
, utext
, ulength
, TRUE
, TRUE
);
3044 EDIT_EM_SetSel(es
, es
->undo_position
, es
->undo_position
+ es
->undo_insert_count
, FALSE
);
3045 /* send the notification after the selection start and end are set */
3046 if (!notify_parent(es
, EN_CHANGE
)) return TRUE
;
3047 EDIT_EM_ScrollCaret(es
);
3048 HeapFree(GetProcessHeap(), 0, utext
);
3050 TRACE("after UNDO:insertion length = %d, deletion buffer = %s\n",
3051 es
->undo_insert_count
, debugstr_w(es
->undo_text
));
3056 /* Helper function for WM_CHAR
3058 * According to an MSDN blog article titled "Just because you're a control
3059 * doesn't mean that you're necessarily inside a dialog box," multiline edit
3060 * controls without ES_WANTRETURN would attempt to detect whether it is inside
3061 * a dialog box or not.
3063 static inline BOOL
EDIT_IsInsideDialog(EDITSTATE
*es
)
3065 return (es
->flags
& EF_DIALOGMODE
);
3069 /*********************************************************************
3074 static void EDIT_WM_Paste(EDITSTATE
*es
)
3080 /* Protect read-only edit control from modification */
3081 if(es
->style
& ES_READONLY
)
3084 OpenClipboard(es
->hwndSelf
);
3085 if ((hsrc
= GetClipboardData(CF_UNICODETEXT
))) {
3086 src
= GlobalLock(hsrc
);
3087 len
= lstrlenW(src
);
3088 /* Protect single-line edit against pasting new line character */
3089 if (!(es
->style
& ES_MULTILINE
) && ((ptr
= wcschr(src
, '\n')))) {
3091 if (len
&& src
[len
- 1] == '\r')
3094 EDIT_EM_ReplaceSel(es
, TRUE
, src
, len
, TRUE
, TRUE
);
3097 else if (es
->style
& ES_PASSWORD
) {
3098 /* clear selected text in password edit box even with empty clipboard */
3099 EDIT_EM_ReplaceSel(es
, TRUE
, NULL
, 0, TRUE
, TRUE
);
3101 NtUserCloseClipboard();
3105 /*********************************************************************
3110 static void EDIT_WM_Copy(EDITSTATE
*es
)
3112 INT s
= min(es
->selection_start
, es
->selection_end
);
3113 INT e
= max(es
->selection_start
, es
->selection_end
);
3121 hdst
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_DDESHARE
, (len
+ 1) * sizeof(WCHAR
));
3122 dst
= GlobalLock(hdst
);
3123 memcpy(dst
, es
->text
+ s
, len
* sizeof(WCHAR
));
3124 dst
[len
] = 0; /* ensure 0 termination */
3125 TRACE("%s\n", debugstr_w(dst
));
3127 OpenClipboard(es
->hwndSelf
);
3128 NtUserEmptyClipboard();
3129 SetClipboardData(CF_UNICODETEXT
, hdst
);
3130 NtUserCloseClipboard();
3134 /*********************************************************************
3139 static inline void EDIT_WM_Clear(EDITSTATE
*es
)
3141 /* Protect read-only edit control from modification */
3142 if(es
->style
& ES_READONLY
)
3145 EDIT_EM_ReplaceSel(es
, TRUE
, NULL
, 0, TRUE
, TRUE
);
3149 /*********************************************************************
3154 static inline void EDIT_WM_Cut(EDITSTATE
*es
)
3161 /*********************************************************************
3166 static LRESULT
EDIT_WM_Char(EDITSTATE
*es
, WCHAR c
)
3170 control
= NtUserGetKeyState(VK_CONTROL
) & 0x8000;
3174 /* If it's not a multiline edit box, it would be ignored below.
3175 * For multiline edit without ES_WANTRETURN, we have to make a
3178 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_WANTRETURN
))
3179 if (EDIT_IsInsideDialog(es
))
3182 if (es
->style
& ES_MULTILINE
) {
3183 if (es
->style
& ES_READONLY
) {
3184 EDIT_MoveHome(es
, FALSE
, FALSE
);
3185 EDIT_MoveDown_ML(es
, FALSE
);
3187 EDIT_EM_ReplaceSel(es
, TRUE
, L
"\r\n", 2, TRUE
, TRUE
);
3192 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_READONLY
))
3194 if (EDIT_IsInsideDialog(es
))
3196 EDIT_EM_ReplaceSel(es
, TRUE
, L
"\t", 1, TRUE
, TRUE
);
3200 if (!(es
->style
& ES_READONLY
) && !control
) {
3201 if (es
->selection_start
!= es
->selection_end
)
3204 /* delete character left of caret */
3205 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
3206 EDIT_MoveBackward(es
, TRUE
);
3212 if (!(es
->style
& ES_PASSWORD
))
3213 SendMessageW(es
->hwndSelf
, WM_COPY
, 0, 0);
3216 if (!(es
->style
& ES_READONLY
))
3217 SendMessageW(es
->hwndSelf
, WM_PASTE
, 0, 0);
3220 if (!((es
->style
& ES_READONLY
) || (es
->style
& ES_PASSWORD
)))
3221 SendMessageW(es
->hwndSelf
, WM_CUT
, 0, 0);
3224 if (!(es
->style
& ES_READONLY
))
3225 SendMessageW(es
->hwndSelf
, WM_UNDO
, 0, 0);
3229 /*If Edit control style is ES_NUMBER allow users to key in only numeric values*/
3230 if( (es
->style
& ES_NUMBER
) && !( c
>= '0' && c
<= '9') )
3233 if (!(es
->style
& ES_READONLY
) && (c
>= ' ') && (c
!= 127))
3234 EDIT_EM_ReplaceSel(es
, TRUE
, &c
, 1, TRUE
, TRUE
);
3241 /*********************************************************************
3243 * EDIT_ContextMenuCommand
3246 static void EDIT_ContextMenuCommand(EDITSTATE
*es
, UINT id
)
3250 SendMessageW(es
->hwndSelf
, WM_UNDO
, 0, 0);
3253 SendMessageW(es
->hwndSelf
, WM_CUT
, 0, 0);
3256 SendMessageW(es
->hwndSelf
, WM_COPY
, 0, 0);
3259 SendMessageW(es
->hwndSelf
, WM_PASTE
, 0, 0);
3262 SendMessageW(es
->hwndSelf
, WM_CLEAR
, 0, 0);
3265 SendMessageW(es
->hwndSelf
, EM_SETSEL
, 0, -1);
3268 ERR("unknown menu item, please report\n");
3274 /*********************************************************************
3278 * Note: the resource files resource/sysres_??.rc cannot define a
3279 * single popup menu. Hence we use a (dummy) menubar
3280 * containing the single popup menu as its first item.
3282 * FIXME: the message identifiers have been chosen arbitrarily,
3283 * hence we use MF_BYPOSITION.
3284 * We might as well use the "real" values (anybody knows ?)
3285 * The menu definition is in resources/sysres_??.rc.
3286 * Once these are OK, we better use MF_BYCOMMAND here
3287 * (as we do in EDIT_WM_Command()).
3290 static void EDIT_WM_ContextMenu(EDITSTATE
*es
, INT x
, INT y
)
3292 HMENU menu
= LoadMenuA(user32_module
, "EDITMENU");
3293 HMENU popup
= GetSubMenu(menu
, 0);
3294 UINT start
= es
->selection_start
;
3295 UINT end
= es
->selection_end
;
3299 ORDER_UINT(start
, end
);
3302 enabled
= EDIT_EM_CanUndo(es
) && !(es
->style
& ES_READONLY
);
3303 NtUserEnableMenuItem( popup
, 0, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3305 enabled
= (end
- start
) && !(es
->style
& ES_PASSWORD
) && !(es
->style
& ES_READONLY
);
3306 NtUserEnableMenuItem( popup
, 2, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3308 enabled
= (end
- start
) && !(es
->style
& ES_PASSWORD
);
3309 NtUserEnableMenuItem( popup
, 3, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3311 enabled
= NtUserIsClipboardFormatAvailable(CF_UNICODETEXT
) && !(es
->style
& ES_READONLY
);
3312 NtUserEnableMenuItem( popup
, 4, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3314 enabled
= (end
- start
) && !(es
->style
& ES_READONLY
);
3315 NtUserEnableMenuItem( popup
, 5, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3317 enabled
= start
|| end
!= get_text_length(es
);
3318 NtUserEnableMenuItem( popup
, 7, MF_BYPOSITION
| (enabled
? MF_ENABLED
: MF_GRAYED
) );
3320 if (x
== -1 && y
== -1) /* passed via VK_APPS press/release */
3325 /* Windows places the menu at the edit's center in this case */
3326 GetClientRect( es
->hwndSelf
, &rc
);
3327 pt
.x
= rc
.right
/ 2;
3328 pt
.y
= rc
.bottom
/ 2;
3329 ClientToScreen( es
->hwndSelf
, &pt
);
3334 if (!(es
->flags
& EF_FOCUSED
))
3335 NtUserSetFocus(es
->hwndSelf
);
3337 cmd
= TrackPopupMenu(popup
, TPM_LEFTALIGN
| TPM_RIGHTBUTTON
| TPM_RETURNCMD
| TPM_NONOTIFY
,
3338 x
, y
, 0, es
->hwndSelf
, NULL
);
3341 EDIT_ContextMenuCommand(es
, cmd
);
3343 NtUserDestroyMenu(menu
);
3347 /*********************************************************************
3352 static INT
EDIT_WM_GetText(const EDITSTATE
*es
, INT count
, LPWSTR dst
, BOOL unicode
)
3354 if(!count
) return 0;
3358 lstrcpynW(dst
, es
->text
, count
);
3359 return lstrlenW(dst
);
3363 LPSTR textA
= (LPSTR
)dst
;
3364 if (!WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, textA
, count
, NULL
, NULL
))
3365 textA
[count
- 1] = 0; /* ensure 0 termination */
3366 return strlen(textA
);
3370 /*********************************************************************
3375 static BOOL
EDIT_CheckCombo(EDITSTATE
*es
, UINT msg
, INT key
)
3377 HWND hLBox
= es
->hwndListBox
;
3385 hCombo
= GetParent(es
->hwndSelf
);
3389 TRACE_(combo
)("[%p]: handling msg %x (%x)\n", es
->hwndSelf
, msg
, key
);
3391 if (key
== VK_UP
|| key
== VK_DOWN
)
3393 if (SendMessageW(hCombo
, CB_GETEXTENDEDUI
, 0, 0))
3396 if (msg
== WM_KEYDOWN
|| nEUI
)
3397 bDropped
= (BOOL
)SendMessageW(hCombo
, CB_GETDROPPEDSTATE
, 0, 0);
3403 if (!bDropped
&& nEUI
&& (key
== VK_UP
|| key
== VK_DOWN
))
3405 /* make sure ComboLBox pops up */
3406 SendMessageW(hCombo
, CB_SETEXTENDEDUI
, FALSE
, 0);
3411 SendMessageW(hLBox
, WM_KEYDOWN
, key
, 0);
3414 case WM_SYSKEYDOWN
: /* Handle Alt+up/down arrows */
3416 SendMessageW(hCombo
, CB_SHOWDROPDOWN
, !bDropped
, 0);
3418 SendMessageW(hLBox
, WM_KEYDOWN
, VK_F4
, 0);
3423 SendMessageW(hCombo
, CB_SETEXTENDEDUI
, TRUE
, 0);
3429 /*********************************************************************
3433 * Handling of special keys that don't produce a WM_CHAR
3434 * (i.e. non-printable keys) & Backspace & Delete
3437 static LRESULT
EDIT_WM_KeyDown(EDITSTATE
*es
, INT key
)
3442 if (NtUserGetKeyState(VK_MENU
) & 0x8000)
3445 shift
= NtUserGetKeyState(VK_SHIFT
) & 0x8000;
3446 control
= NtUserGetKeyState(VK_CONTROL
) & 0x8000;
3451 if (EDIT_CheckCombo(es
, WM_KEYDOWN
, key
) || key
== VK_F4
)
3456 if ((es
->style
& ES_MULTILINE
) && (key
== VK_UP
))
3457 EDIT_MoveUp_ML(es
, shift
);
3460 EDIT_MoveWordBackward(es
, shift
);
3462 EDIT_MoveBackward(es
, shift
);
3465 if (EDIT_CheckCombo(es
, WM_KEYDOWN
, key
))
3469 if ((es
->style
& ES_MULTILINE
) && (key
== VK_DOWN
))
3470 EDIT_MoveDown_ML(es
, shift
);
3472 EDIT_MoveWordForward(es
, shift
);
3474 EDIT_MoveForward(es
, shift
);
3477 EDIT_MoveHome(es
, shift
, control
);
3480 EDIT_MoveEnd(es
, shift
, control
);
3483 if (es
->style
& ES_MULTILINE
)
3484 EDIT_MovePageUp_ML(es
, shift
);
3486 EDIT_CheckCombo(es
, WM_KEYDOWN
, key
);
3489 if (es
->style
& ES_MULTILINE
)
3490 EDIT_MovePageDown_ML(es
, shift
);
3492 EDIT_CheckCombo(es
, WM_KEYDOWN
, key
);
3495 if (!(es
->style
& ES_READONLY
) && !(shift
&& control
)) {
3496 if (es
->selection_start
!= es
->selection_end
) {
3502 EDIT_EM_SetSel(es
, ~0u, 0, FALSE
);
3504 /* delete character left of caret */
3505 EDIT_MoveBackward(es
, TRUE
);
3507 /* delete to end of line */
3508 EDIT_MoveEnd(es
, TRUE
, FALSE
);
3510 /* delete character right of caret */
3511 EDIT_MoveForward(es
, TRUE
);
3518 if (!(es
->style
& ES_READONLY
))
3524 /* If the edit doesn't want the return send a message to the default object */
3525 if(!(es
->style
& ES_MULTILINE
) || !(es
->style
& ES_WANTRETURN
))
3529 if (!EDIT_IsInsideDialog(es
)) break;
3531 dw
= SendMessageW(es
->hwndParent
, DM_GETDEFID
, 0, 0);
3532 if (HIWORD(dw
) == DC_HASDEFID
)
3534 HWND hwDefCtrl
= GetDlgItem(es
->hwndParent
, LOWORD(dw
));
3537 SendMessageW(es
->hwndParent
, WM_NEXTDLGCTL
, (WPARAM
)hwDefCtrl
, TRUE
);
3538 PostMessageW(hwDefCtrl
, WM_KEYDOWN
, VK_RETURN
, 0);
3544 if ((es
->style
& ES_MULTILINE
) && EDIT_IsInsideDialog(es
))
3545 PostMessageW(es
->hwndParent
, WM_CLOSE
, 0, 0);
3548 if ((es
->style
& ES_MULTILINE
) && EDIT_IsInsideDialog(es
))
3549 SendMessageW(es
->hwndParent
, WM_NEXTDLGCTL
, shift
, 0);
3556 /*********************************************************************
3561 static LRESULT
EDIT_WM_KillFocus(EDITSTATE
*es
)
3563 es
->flags
&= ~EF_FOCUSED
;
3565 if(!(es
->style
& ES_NOHIDESEL
))
3566 EDIT_InvalidateText(es
, es
->selection_start
, es
->selection_end
);
3567 if (!notify_parent(es
, EN_KILLFOCUS
)) return 0;
3568 /* throw away left over scroll when we lose focus */
3569 es
->wheelDeltaRemainder
= 0;
3574 /*********************************************************************
3578 * The caret position has been set on the WM_LBUTTONDOWN message
3581 static LRESULT
EDIT_WM_LButtonDblClk(EDITSTATE
*es
)
3584 INT e
= es
->selection_end
;
3589 es
->bCaptureState
= TRUE
;
3590 NtUserSetCapture(es
->hwndSelf
);
3592 l
= EDIT_EM_LineFromChar(es
, e
);
3593 li
= EDIT_EM_LineIndex(es
, l
);
3594 ll
= EDIT_EM_LineLength(es
, e
);
3595 s
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_LEFT
);
3596 e
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_RIGHT
);
3597 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
3598 EDIT_EM_ScrollCaret(es
);
3599 es
->region_posx
= es
->region_posy
= 0;
3600 SetTimer(es
->hwndSelf
, 0, 100, NULL
);
3605 /*********************************************************************
3610 static LRESULT
EDIT_WM_LButtonDown(EDITSTATE
*es
, DWORD keys
, INT x
, INT y
)
3615 es
->bCaptureState
= TRUE
;
3616 NtUserSetCapture(es
->hwndSelf
);
3617 EDIT_ConfinePoint(es
, &x
, &y
);
3618 e
= EDIT_CharFromPos(es
, x
, y
, &after_wrap
);
3619 EDIT_EM_SetSel(es
, (keys
& MK_SHIFT
) ? es
->selection_start
: e
, e
, after_wrap
);
3620 EDIT_EM_ScrollCaret(es
);
3621 es
->region_posx
= es
->region_posy
= 0;
3622 SetTimer(es
->hwndSelf
, 0, 100, NULL
);
3624 if (!(es
->flags
& EF_FOCUSED
))
3625 NtUserSetFocus(es
->hwndSelf
);
3631 /*********************************************************************
3636 static LRESULT
EDIT_WM_LButtonUp(EDITSTATE
*es
)
3638 if (es
->bCaptureState
) {
3639 NtUserKillTimer(es
->hwndSelf
, 0);
3640 if (GetCapture() == es
->hwndSelf
) ReleaseCapture();
3642 es
->bCaptureState
= FALSE
;
3647 /*********************************************************************
3652 static LRESULT
EDIT_WM_MButtonDown(EDITSTATE
*es
)
3654 SendMessageW(es
->hwndSelf
, WM_PASTE
, 0, 0);
3659 /*********************************************************************
3664 static LRESULT
EDIT_WM_MouseMove(EDITSTATE
*es
, INT x
, INT y
)
3670 /* If the mouse has been captured by process other than the edit control itself,
3671 * the windows edit controls will not select the strings with mouse move.
3673 if (!es
->bCaptureState
|| GetCapture() != es
->hwndSelf
)
3677 * FIXME: gotta do some scrolling if outside client
3678 * area. Maybe reset the timer ?
3681 EDIT_ConfinePoint(es
, &x
, &y
);
3682 es
->region_posx
= (prex
< x
) ? -1 : ((prex
> x
) ? 1 : 0);
3683 es
->region_posy
= (prey
< y
) ? -1 : ((prey
> y
) ? 1 : 0);
3684 e
= EDIT_CharFromPos(es
, x
, y
, &after_wrap
);
3685 EDIT_EM_SetSel(es
, es
->selection_start
, e
, after_wrap
);
3686 EDIT_SetCaretPos(es
,es
->selection_end
,es
->flags
& EF_AFTER_WRAP
);
3691 /*********************************************************************
3696 static void EDIT_WM_Paint(EDITSTATE
*es
, HDC hdc
)
3709 BOOL rev
= es
->bEnableState
&&
3710 ((es
->flags
& EF_FOCUSED
) ||
3711 (es
->style
& ES_NOHIDESEL
));
3712 dc
= hdc
? hdc
: NtUserBeginPaint( es
->hwndSelf
, &ps
);
3714 /* The dc we use for calculating may not be the one we paint into.
3715 This is the safest action. */
3716 EDIT_InvalidateUniscribeData(es
);
3717 GetClientRect(es
->hwndSelf
, &rcClient
);
3719 /* get the background brush */
3720 brush
= EDIT_NotifyCtlColor(es
, dc
);
3722 /* paint the border and the background */
3723 IntersectClipRect(dc
, rcClient
.left
, rcClient
.top
, rcClient
.right
, rcClient
.bottom
);
3725 if(es
->style
& WS_BORDER
) {
3726 bw
= GetSystemMetrics(SM_CXBORDER
);
3727 bh
= GetSystemMetrics(SM_CYBORDER
);
3729 if(es
->style
& ES_MULTILINE
) {
3730 if(es
->style
& WS_HSCROLL
) rc
.bottom
+=bh
;
3731 if(es
->style
& WS_VSCROLL
) rc
.right
+=bw
;
3734 /* Draw the frame. Same code as in nonclient.c */
3735 old_brush
= SelectObject(dc
, GetSysColorBrush(COLOR_WINDOWFRAME
));
3736 PatBlt(dc
, rc
.left
, rc
.top
, rc
.right
- rc
.left
, bh
, PATCOPY
);
3737 PatBlt(dc
, rc
.left
, rc
.top
, bw
, rc
.bottom
- rc
.top
, PATCOPY
);
3738 PatBlt(dc
, rc
.left
, rc
.bottom
- 1, rc
.right
- rc
.left
, -bw
, PATCOPY
);
3739 PatBlt(dc
, rc
.right
- 1, rc
.top
, -bw
, rc
.bottom
- rc
.top
, PATCOPY
);
3740 SelectObject(dc
, old_brush
);
3742 /* Keep the border clean */
3743 IntersectClipRect(dc
, rc
.left
+bw
, rc
.top
+bh
,
3744 max(rc
.right
-bw
, rc
.left
+bw
), max(rc
.bottom
-bh
, rc
.top
+bh
));
3747 GetClipBox(dc
, &rc
);
3748 FillRect(dc
, &rc
, brush
);
3750 IntersectClipRect(dc
, es
->format_rect
.left
,
3751 es
->format_rect
.top
,
3752 es
->format_rect
.right
,
3753 es
->format_rect
.bottom
);
3754 if (es
->style
& ES_MULTILINE
) {
3756 IntersectClipRect(dc
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
3759 old_font
= SelectObject(dc
, es
->font
);
3761 if (!es
->bEnableState
)
3762 SetTextColor(dc
, GetSysColor(COLOR_GRAYTEXT
));
3763 GetClipBox(dc
, &rcRgn
);
3764 if (es
->style
& ES_MULTILINE
) {
3765 INT vlc
= get_vertical_line_count(es
);
3766 for (i
= es
->y_offset
; i
<= min(es
->y_offset
+ vlc
, es
->y_offset
+ es
->line_count
- 1) ; i
++) {
3767 EDIT_UpdateUniscribeData(es
, dc
, i
);
3768 EDIT_GetLineRect(es
, i
, 0, -1, &rcLine
);
3769 if (IntersectRect(&rc
, &rcRgn
, &rcLine
))
3770 EDIT_PaintLine(es
, dc
, i
, rev
);
3773 EDIT_UpdateUniscribeData(es
, dc
, 0);
3774 EDIT_GetLineRect(es
, 0, 0, -1, &rcLine
);
3775 if (IntersectRect(&rc
, &rcRgn
, &rcLine
))
3776 EDIT_PaintLine(es
, dc
, 0, rev
);
3779 SelectObject(dc
, old_font
);
3782 NtUserEndPaint( es
->hwndSelf
, &ps
);
3786 /*********************************************************************
3791 static void EDIT_WM_SetFocus(EDITSTATE
*es
)
3793 es
->flags
|= EF_FOCUSED
;
3795 if (!(es
->style
& ES_NOHIDESEL
))
3796 EDIT_InvalidateText(es
, es
->selection_start
, es
->selection_end
);
3798 /* single line edit updates itself */
3799 if (IsWindowVisible(es
->hwndSelf
) && !(es
->style
& ES_MULTILINE
))
3801 HDC hdc
= NtUserGetDC(es
->hwndSelf
);
3802 EDIT_WM_Paint(es
, hdc
);
3803 NtUserReleaseDC( es
->hwndSelf
, hdc
);
3806 NtUserCreateCaret( es
->hwndSelf
, 0, 1, es
->line_height
);
3807 EDIT_SetCaretPos(es
, es
->selection_end
,
3808 es
->flags
& EF_AFTER_WRAP
);
3809 NtUserShowCaret( es
->hwndSelf
);
3810 notify_parent(es
, EN_SETFOCUS
);
3813 static DWORD
get_font_margins(HDC hdc
, const TEXTMETRICW
*tm
, BOOL unicode
)
3819 if (!(tm
->tmPitchAndFamily
& (TMPF_VECTOR
| TMPF_TRUETYPE
)))
3820 return MAKELONG(EC_USEFONTINFO
, EC_USEFONTINFO
);
3823 if (!is_cjk_charset(hdc
) && !is_cjk_font(hdc
))
3824 return MAKELONG(EC_USEFONTINFO
, EC_USEFONTINFO
);
3825 if (!GetCharABCWidthsW(hdc
, 0, 255, abc
))
3828 else if (is_cjk_charset(hdc
)) {
3829 if (!GetCharABCWidthsA(hdc
, 0, 255, abc
))
3833 return MAKELONG(EC_USEFONTINFO
, EC_USEFONTINFO
);
3836 for (i
= 0; i
< ARRAY_SIZE(abc
); i
++) {
3837 if (-abc
[i
].abcA
> right
) right
= -abc
[i
].abcA
;
3838 if (-abc
[i
].abcC
> left
) left
= -abc
[i
].abcC
;
3840 return MAKELONG(left
, right
);
3843 /*********************************************************************
3847 * With Win95 look the margins are set to default font value unless
3848 * the system font (font == 0) is being set, in which case they are left
3852 static void EDIT_WM_SetFont(EDITSTATE
*es
, HFONT font
, BOOL redraw
)
3861 EDIT_InvalidateUniscribeData(es
);
3862 dc
= NtUserGetDC(es
->hwndSelf
);
3864 old_font
= SelectObject(dc
, font
);
3865 GetTextMetricsW(dc
, &tm
);
3866 es
->line_height
= tm
.tmHeight
;
3867 es
->char_width
= tm
.tmAveCharWidth
;
3868 margins
= get_font_margins(dc
, &tm
, es
->is_unicode
);
3870 SelectObject(dc
, old_font
);
3871 NtUserReleaseDC( es
->hwndSelf
, dc
);
3873 /* Reset the format rect and the margins */
3874 GetClientRect(es
->hwndSelf
, &clientRect
);
3875 EDIT_SetRectNP(es
, &clientRect
);
3877 EDIT_EM_SetMargins(es
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
,
3878 LOWORD(margins
), HIWORD(margins
), FALSE
);
3880 if (es
->style
& ES_MULTILINE
)
3881 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3883 EDIT_CalcLineWidth_SL(es
);
3886 EDIT_UpdateText(es
, NULL
, TRUE
);
3887 if (es
->flags
& EF_FOCUSED
) {
3889 NtUserCreateCaret( es
->hwndSelf
, 0, 1, es
->line_height
);
3890 EDIT_SetCaretPos(es
, es
->selection_end
,
3891 es
->flags
& EF_AFTER_WRAP
);
3892 NtUserShowCaret( es
->hwndSelf
);
3897 /*********************************************************************
3902 * For multiline controls (ES_MULTILINE), reception of WM_SETTEXT triggers:
3903 * The modified flag is reset. No notifications are sent.
3905 * For single-line controls, reception of WM_SETTEXT triggers:
3906 * The modified flag is reset. EN_UPDATE and EN_CHANGE notifications are sent.
3909 static void EDIT_WM_SetText(EDITSTATE
*es
, LPCWSTR text
, BOOL unicode
)
3911 LPWSTR textW
= NULL
;
3912 if (!unicode
&& text
)
3914 LPCSTR textA
= (LPCSTR
)text
;
3915 INT countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, -1, NULL
, 0);
3916 textW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
));
3918 MultiByteToWideChar(CP_ACP
, 0, textA
, -1, textW
, countW
);
3922 if (es
->flags
& EF_UPDATE
)
3923 /* fixed this bug once; complain if we see it about to happen again. */
3924 ERR("SetSel may generate UPDATE message whose handler may reset "
3927 EDIT_EM_SetSel(es
, 0, (UINT
)-1, FALSE
);
3930 TRACE("%s\n", debugstr_w(text
));
3931 EDIT_EM_ReplaceSel(es
, FALSE
, text
, lstrlenW(text
), FALSE
, FALSE
);
3933 HeapFree(GetProcessHeap(), 0, textW
);
3938 EDIT_EM_ReplaceSel(es
, FALSE
, NULL
, 0, FALSE
, FALSE
);
3941 es
->flags
&= ~EF_MODIFIED
;
3942 EDIT_EM_SetSel(es
, 0, 0, FALSE
);
3944 /* Send the notification after the selection start and end have been set
3945 * edit control doesn't send notification on WM_SETTEXT
3946 * if it is multiline, or it is part of combobox
3948 if( !((es
->style
& ES_MULTILINE
) || es
->hwndListBox
))
3950 if (!notify_parent(es
, EN_UPDATE
)) return;
3951 if (!notify_parent(es
, EN_CHANGE
)) return;
3953 EDIT_EM_ScrollCaret(es
);
3954 EDIT_UpdateScrollInfo(es
);
3955 EDIT_InvalidateUniscribeData(es
);
3959 /*********************************************************************
3964 static void EDIT_WM_Size(EDITSTATE
*es
, UINT action
)
3966 if ((action
== SIZE_MAXIMIZED
) || (action
== SIZE_RESTORED
)) {
3968 GetClientRect(es
->hwndSelf
, &rc
);
3969 EDIT_SetRectNP(es
, &rc
);
3970 EDIT_UpdateText(es
, NULL
, TRUE
);
3975 /*********************************************************************
3979 * This message is sent by SetWindowLong on having changed either the Style
3980 * or the extended style.
3982 * We ensure that the window's version of the styles and the EDITSTATE's agree.
3984 * See also EDIT_WM_NCCreate
3986 * It appears that the Windows version of the edit control allows the style
3987 * (as retrieved by GetWindowLong) to be any value and maintains an internal
3988 * style variable which will generally be different. In this function we
3989 * update the internal style based on what changed in the externally visible
3992 * Much of this content as based upon the MSDN, especially:
3993 * Platform SDK Documentation -> User Interface Services ->
3994 * Windows User Interface -> Edit Controls -> Edit Control Reference ->
3995 * Edit Control Styles
3997 static LRESULT
EDIT_WM_StyleChanged ( EDITSTATE
*es
, WPARAM which
, const STYLESTRUCT
*style
)
3999 if (GWL_STYLE
== which
) {
4000 DWORD style_change_mask
;
4002 /* Only a subset of changes can be applied after the control
4005 style_change_mask
= ES_UPPERCASE
| ES_LOWERCASE
|
4007 if (es
->style
& ES_MULTILINE
)
4008 style_change_mask
|= ES_WANTRETURN
;
4010 new_style
= style
->styleNew
& style_change_mask
;
4012 /* Number overrides lowercase overrides uppercase (at least it
4013 * does in Win95). However I'll bet that ES_NUMBER would be
4014 * invalid under Win 3.1.
4016 if (new_style
& ES_NUMBER
) {
4017 ; /* do not override the ES_NUMBER */
4018 } else if (new_style
& ES_LOWERCASE
) {
4019 new_style
&= ~ES_UPPERCASE
;
4022 es
->style
= (es
->style
& ~style_change_mask
) | new_style
;
4023 } else if (GWL_EXSTYLE
== which
) {
4024 ; /* FIXME - what is needed here */
4026 WARN ("Invalid style change %Id\n",which
);
4032 /*********************************************************************
4037 static LRESULT
EDIT_WM_SysKeyDown(EDITSTATE
*es
, INT key
, DWORD key_data
)
4039 if ((key
== VK_BACK
) && (key_data
& 0x2000)) {
4040 if (EDIT_EM_CanUndo(es
))
4043 } else if (key
== VK_UP
|| key
== VK_DOWN
) {
4044 if (EDIT_CheckCombo(es
, WM_SYSKEYDOWN
, key
))
4047 return DefWindowProcW(es
->hwndSelf
, WM_SYSKEYDOWN
, key
, key_data
);
4051 /*********************************************************************
4056 static void EDIT_WM_Timer(EDITSTATE
*es
)
4058 if (es
->region_posx
< 0) {
4059 EDIT_MoveBackward(es
, TRUE
);
4060 } else if (es
->region_posx
> 0) {
4061 EDIT_MoveForward(es
, TRUE
);
4064 * FIXME: gotta do some vertical scrolling here, like
4065 * EDIT_EM_LineScroll(hwnd, 0, 1);
4069 /*********************************************************************
4074 static LRESULT
EDIT_WM_HScroll(EDITSTATE
*es
, INT action
, INT pos
)
4079 if (!(es
->style
& ES_MULTILINE
))
4082 if (!(es
->style
& ES_AUTOHSCROLL
))
4086 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4089 TRACE("SB_LINELEFT\n");
4091 dx
= -es
->char_width
;
4094 TRACE("SB_LINERIGHT\n");
4095 if (es
->x_offset
< es
->text_width
)
4096 dx
= es
->char_width
;
4099 TRACE("SB_PAGELEFT\n");
4101 dx
= -fw
/ HSCROLL_FRACTION
/ es
->char_width
* es
->char_width
;
4104 TRACE("SB_PAGERIGHT\n");
4105 if (es
->x_offset
< es
->text_width
)
4106 dx
= fw
/ HSCROLL_FRACTION
/ es
->char_width
* es
->char_width
;
4114 TRACE("SB_RIGHT\n");
4115 if (es
->x_offset
< es
->text_width
)
4116 dx
= es
->text_width
- es
->x_offset
;
4119 TRACE("SB_THUMBTRACK %d\n", pos
);
4120 es
->flags
|= EF_HSCROLL_TRACK
;
4121 if(es
->style
& WS_HSCROLL
)
4122 dx
= pos
- es
->x_offset
;
4127 if(pos
< 0 || pos
> 100) return 0;
4128 /* Assume default scroll range 0-100 */
4129 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4130 new_x
= pos
* (es
->text_width
- fw
) / 100;
4131 dx
= es
->text_width
? (new_x
- es
->x_offset
) : 0;
4134 case SB_THUMBPOSITION
:
4135 TRACE("SB_THUMBPOSITION %d\n", pos
);
4136 es
->flags
&= ~EF_HSCROLL_TRACK
;
4137 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_HSCROLL
)
4138 dx
= pos
- es
->x_offset
;
4143 if(pos
< 0 || pos
> 100) return 0;
4144 /* Assume default scroll range 0-100 */
4145 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4146 new_x
= pos
* (es
->text_width
- fw
) / 100;
4147 dx
= es
->text_width
? (new_x
- es
->x_offset
) : 0;
4150 /* force scroll info update */
4151 EDIT_UpdateScrollInfo(es
);
4152 notify_parent(es
, EN_HSCROLL
);
4156 TRACE("SB_ENDSCROLL\n");
4159 * FIXME : the next two are undocumented !
4160 * Are we doing the right thing ?
4161 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4162 * although it's also a regular control message.
4164 case EM_GETTHUMB
: /* this one is used by NT notepad */
4167 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_HSCROLL
)
4168 ret
= GetScrollPos(es
->hwndSelf
, SB_HORZ
);
4171 /* Assume default scroll range 0-100 */
4172 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4173 ret
= es
->text_width
? es
->x_offset
* 100 / (es
->text_width
- fw
) : 0;
4175 TRACE("EM_GETTHUMB: returning %Id\n", ret
);
4179 TRACE("EM_LINESCROLL16\n");
4184 ERR("undocumented WM_HSCROLL action %d (0x%04x), please report\n",
4190 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4191 /* check if we are going to move too far */
4192 if(es
->x_offset
+ dx
+ fw
> es
->text_width
)
4193 dx
= es
->text_width
- fw
- es
->x_offset
;
4195 EDIT_EM_LineScroll_internal(es
, dx
, 0);
4201 /*********************************************************************
4206 static LRESULT
EDIT_WM_VScroll(EDITSTATE
*es
, INT action
, INT pos
)
4210 if (!(es
->style
& ES_MULTILINE
))
4213 if (!(es
->style
& ES_AUTOVSCROLL
))
4222 TRACE("action %d (%s)\n", action
, (action
== SB_LINEUP
? "SB_LINEUP" :
4223 (action
== SB_LINEDOWN
? "SB_LINEDOWN" :
4224 (action
== SB_PAGEUP
? "SB_PAGEUP" :
4226 EDIT_EM_Scroll(es
, action
);
4233 TRACE("SB_BOTTOM\n");
4234 dy
= es
->line_count
- 1 - es
->y_offset
;
4237 TRACE("SB_THUMBTRACK %d\n", pos
);
4238 es
->flags
|= EF_VSCROLL_TRACK
;
4239 if(es
->style
& WS_VSCROLL
)
4240 dy
= pos
- es
->y_offset
;
4243 /* Assume default scroll range 0-100 */
4246 if(pos
< 0 || pos
> 100) return 0;
4247 vlc
= get_vertical_line_count(es
);
4248 new_y
= pos
* (es
->line_count
- vlc
) / 100;
4249 dy
= es
->line_count
? (new_y
- es
->y_offset
) : 0;
4250 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
4251 es
->line_count
, es
->y_offset
, pos
, dy
);
4254 case SB_THUMBPOSITION
:
4255 TRACE("SB_THUMBPOSITION %d\n", pos
);
4256 es
->flags
&= ~EF_VSCROLL_TRACK
;
4257 if(es
->style
& WS_VSCROLL
)
4258 dy
= pos
- es
->y_offset
;
4261 /* Assume default scroll range 0-100 */
4264 if(pos
< 0 || pos
> 100) return 0;
4265 vlc
= get_vertical_line_count(es
);
4266 new_y
= pos
* (es
->line_count
- vlc
) / 100;
4267 dy
= es
->line_count
? (new_y
- es
->y_offset
) : 0;
4268 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
4269 es
->line_count
, es
->y_offset
, pos
, dy
);
4273 /* force scroll info update */
4274 EDIT_UpdateScrollInfo(es
);
4275 notify_parent(es
, EN_VSCROLL
);
4279 TRACE("SB_ENDSCROLL\n");
4282 * FIXME : the next two are undocumented !
4283 * Are we doing the right thing ?
4284 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4285 * although it's also a regular control message.
4287 case EM_GETTHUMB
: /* this one is used by NT notepad */
4290 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_VSCROLL
)
4291 ret
= GetScrollPos(es
->hwndSelf
, SB_VERT
);
4294 /* Assume default scroll range 0-100 */
4295 INT vlc
= get_vertical_line_count(es
);
4296 ret
= es
->line_count
? es
->y_offset
* 100 / (es
->line_count
- vlc
) : 0;
4298 TRACE("EM_GETTHUMB: returning %Id\n", ret
);
4302 TRACE("EM_LINESCROLL %d\n", pos
);
4307 ERR("undocumented WM_VSCROLL action %d (0x%04x), please report\n",
4312 EDIT_EM_LineScroll(es
, 0, dy
);
4316 /*********************************************************************
4320 * FIXME: is this right ? (or should it be only VSCROLL)
4321 * (and maybe only for edit controls that really have their
4322 * own scrollbars) (and maybe only for multiline controls ?)
4323 * All in all: very poorly documented
4326 static LRESULT
EDIT_EM_GetThumb(EDITSTATE
*es
)
4328 return MAKELONG(EDIT_WM_VScroll(es
, EM_GETTHUMB
, 0),
4329 EDIT_WM_HScroll(es
, EM_GETTHUMB
, 0));
4333 /********************************************************************
4335 * The Following code is to handle inline editing from IMEs
4338 static void EDIT_GetCompositionStr(HIMC hIMC
, LPARAM CompFlag
, EDITSTATE
*es
)
4342 LPSTR lpCompStrAttr
= NULL
;
4345 buflen
= ImmGetCompositionStringW(hIMC
, GCS_COMPSTR
, NULL
, 0);
4352 lpCompStr
= HeapAlloc(GetProcessHeap(),0,buflen
);
4355 ERR("Unable to allocate IME CompositionString\n");
4360 ImmGetCompositionStringW(hIMC
, GCS_COMPSTR
, lpCompStr
, buflen
);
4362 if (CompFlag
& GCS_COMPATTR
)
4365 * We do not use the attributes yet. it would tell us what characters
4366 * are in transition and which are converted or decided upon
4368 dwBufLenAttr
= ImmGetCompositionStringW(hIMC
, GCS_COMPATTR
, NULL
, 0);
4372 lpCompStrAttr
= HeapAlloc(GetProcessHeap(),0,dwBufLenAttr
+1);
4375 ERR("Unable to allocate IME Attribute String\n");
4376 HeapFree(GetProcessHeap(),0,lpCompStr
);
4379 ImmGetCompositionStringW(hIMC
,GCS_COMPATTR
, lpCompStrAttr
,
4381 lpCompStrAttr
[dwBufLenAttr
] = 0;
4385 /* check for change in composition start */
4386 if (es
->selection_end
< es
->composition_start
)
4387 es
->composition_start
= es
->selection_end
;
4389 /* replace existing selection string */
4390 es
->selection_start
= es
->composition_start
;
4392 if (es
->composition_len
> 0)
4393 es
->selection_end
= es
->composition_start
+ es
->composition_len
;
4395 es
->selection_end
= es
->selection_start
;
4397 EDIT_EM_ReplaceSel(es
, FALSE
, lpCompStr
, buflen
/ sizeof(WCHAR
), TRUE
, TRUE
);
4398 es
->composition_len
= abs(es
->composition_start
- es
->selection_end
);
4400 es
->selection_start
= es
->composition_start
;
4401 es
->selection_end
= es
->selection_start
+ es
->composition_len
;
4403 HeapFree(GetProcessHeap(),0,lpCompStrAttr
);
4404 HeapFree(GetProcessHeap(),0,lpCompStr
);
4407 static void EDIT_GetResultStr(HIMC hIMC
, EDITSTATE
*es
)
4412 buflen
= ImmGetCompositionStringW(hIMC
, GCS_RESULTSTR
, NULL
, 0);
4418 lpResultStr
= HeapAlloc(GetProcessHeap(),0, buflen
);
4421 ERR("Unable to alloc buffer for IME string\n");
4425 ImmGetCompositionStringW(hIMC
, GCS_RESULTSTR
, lpResultStr
, buflen
);
4427 /* check for change in composition start */
4428 if (es
->selection_end
< es
->composition_start
)
4429 es
->composition_start
= es
->selection_end
;
4431 es
->selection_start
= es
->composition_start
;
4432 es
->selection_end
= es
->composition_start
+ es
->composition_len
;
4433 EDIT_EM_ReplaceSel(es
, TRUE
, lpResultStr
, buflen
/ sizeof(WCHAR
), TRUE
, TRUE
);
4434 es
->composition_start
= es
->selection_end
;
4435 es
->composition_len
= 0;
4437 HeapFree(GetProcessHeap(),0,lpResultStr
);
4440 static void EDIT_ImeComposition(HWND hwnd
, LPARAM CompFlag
, EDITSTATE
*es
)
4445 if (es
->composition_len
== 0 && es
->selection_start
!= es
->selection_end
)
4447 EDIT_EM_ReplaceSel(es
, TRUE
, NULL
, 0, TRUE
, TRUE
);
4448 es
->composition_start
= es
->selection_end
;
4451 hIMC
= ImmGetContext(hwnd
);
4455 if (CompFlag
& GCS_RESULTSTR
)
4457 EDIT_GetResultStr(hIMC
, es
);
4462 if (CompFlag
& GCS_COMPSTR
)
4463 EDIT_GetCompositionStr(hIMC
, CompFlag
, es
);
4464 cursor
= ImmGetCompositionStringW(hIMC
, GCS_CURSORPOS
, 0, 0);
4466 ImmReleaseContext(hwnd
, hIMC
);
4467 EDIT_SetCaretPos(es
, es
->selection_start
+ cursor
, es
->flags
& EF_AFTER_WRAP
);
4471 /*********************************************************************
4475 * See also EDIT_WM_StyleChanged
4477 static LRESULT
EDIT_WM_NCCreate(HWND hwnd
, LPCREATESTRUCTW lpcs
, BOOL unicode
)
4482 TRACE("Creating %s edit control, style = %08lx\n",
4483 unicode
? "Unicode" : "ANSI", lpcs
->style
);
4485 if (!(es
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*es
))))
4487 SetWindowLongPtrW( hwnd
, 0, (LONG_PTR
)es
);
4490 * Note: since the EDITSTATE has not been fully initialized yet,
4491 * we can't use any API calls that may send
4492 * WM_XXX messages before WM_NCCREATE is completed.
4495 es
->is_unicode
= unicode
;
4496 es
->style
= lpcs
->style
;
4498 es
->bEnableState
= !(es
->style
& WS_DISABLED
);
4500 es
->hwndSelf
= hwnd
;
4501 /* Save parent, which will be notified by EN_* messages */
4502 es
->hwndParent
= lpcs
->hwndParent
;
4504 if (es
->style
& ES_COMBO
)
4505 es
->hwndListBox
= GetDlgItem(es
->hwndParent
, ID_CB_LISTBOX
);
4507 /* FIXME: should we handle changes to WS_EX_RIGHT style after creation? */
4508 if (lpcs
->dwExStyle
& WS_EX_RIGHT
) es
->style
|= ES_RIGHT
;
4510 /* Number overrides lowercase overrides uppercase (at least it
4511 * does in Win95). However I'll bet that ES_NUMBER would be
4512 * invalid under Win 3.1.
4514 if (es
->style
& ES_NUMBER
) {
4515 ; /* do not override the ES_NUMBER */
4516 } else if (es
->style
& ES_LOWERCASE
) {
4517 es
->style
&= ~ES_UPPERCASE
;
4519 if (es
->style
& ES_MULTILINE
) {
4520 es
->buffer_limit
= BUFLIMIT_INITIAL
;
4521 if (es
->style
& WS_VSCROLL
)
4522 es
->style
|= ES_AUTOVSCROLL
;
4523 if (es
->style
& WS_HSCROLL
)
4524 es
->style
|= ES_AUTOHSCROLL
;
4525 es
->style
&= ~ES_PASSWORD
;
4526 if ((es
->style
& ES_CENTER
) || (es
->style
& ES_RIGHT
)) {
4527 /* Confirmed - RIGHT overrides CENTER */
4528 if (es
->style
& ES_RIGHT
)
4529 es
->style
&= ~ES_CENTER
;
4530 es
->style
&= ~WS_HSCROLL
;
4531 es
->style
&= ~ES_AUTOHSCROLL
;
4534 es
->buffer_limit
= BUFLIMIT_INITIAL
;
4535 if ((es
->style
& ES_RIGHT
) && (es
->style
& ES_CENTER
))
4536 es
->style
&= ~ES_CENTER
;
4537 es
->style
&= ~WS_HSCROLL
;
4538 es
->style
&= ~WS_VSCROLL
;
4539 if (es
->style
& ES_PASSWORD
)
4540 es
->password_char
= '*';
4543 alloc_size
= ROUND_TO_GROW((es
->buffer_size
+ 1) * sizeof(WCHAR
));
4544 if(!(es
->hloc32W
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, alloc_size
)))
4546 es
->buffer_size
= LocalSize(es
->hloc32W
)/sizeof(WCHAR
) - 1;
4548 if (!(es
->undo_text
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (es
->buffer_size
+ 1) * sizeof(WCHAR
))))
4550 es
->undo_buffer_size
= es
->buffer_size
;
4552 if (es
->style
& ES_MULTILINE
)
4553 if (!(es
->first_line_def
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(LINEDEF
))))
4558 * In Win95 look and feel, the WS_BORDER style is replaced by the
4559 * WS_EX_CLIENTEDGE style for the edit control. This gives the edit
4560 * control a nonclient area so we don't need to draw the border.
4561 * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
4562 * a nonclient area and we should handle painting the border ourselves.
4564 * When making modifications please ensure that the code still works
4565 * for edit controls created directly with style 0x50800000, exStyle 0
4566 * (which should have a single pixel border)
4568 if (lpcs
->dwExStyle
& WS_EX_CLIENTEDGE
)
4569 es
->style
&= ~WS_BORDER
;
4570 else if (es
->style
& WS_BORDER
)
4571 SetWindowLongW(hwnd
, GWL_STYLE
, es
->style
& ~WS_BORDER
);
4576 SetWindowLongPtrW(es
->hwndSelf
, 0, 0);
4577 EDIT_InvalidateUniscribeData(es
);
4578 HeapFree(GetProcessHeap(), 0, es
->first_line_def
);
4579 HeapFree(GetProcessHeap(), 0, es
->undo_text
);
4580 if (es
->hloc32W
) LocalFree(es
->hloc32W
);
4581 HeapFree(GetProcessHeap(), 0, es
->logAttr
);
4582 HeapFree(GetProcessHeap(), 0, es
);
4587 /*********************************************************************
4592 static LRESULT
EDIT_WM_Create(EDITSTATE
*es
, LPCWSTR name
)
4596 TRACE("%s\n", debugstr_w(name
));
4598 * To initialize some final structure members, we call some helper
4599 * functions. However, since the EDITSTATE is not consistent (i.e.
4600 * not fully initialized), we should be very careful which
4601 * functions can be called, and in what order.
4603 EDIT_WM_SetFont(es
, 0, FALSE
);
4604 EDIT_EM_EmptyUndoBuffer(es
);
4606 /* We need to calculate the format rect
4607 (applications may send EM_SETMARGINS before the control gets visible) */
4608 GetClientRect(es
->hwndSelf
, &clientRect
);
4609 EDIT_SetRectNP(es
, &clientRect
);
4611 if (name
&& *name
) {
4612 EDIT_EM_ReplaceSel(es
, FALSE
, name
, lstrlenW(name
), FALSE
, FALSE
);
4613 /* if we insert text to the editline, the text scrolls out
4614 * of the window, as the caret is placed after the insert
4615 * pos normally; thus we reset es->selection... to 0 and
4618 es
->selection_start
= es
->selection_end
= 0;
4619 /* Adobe Photoshop does NOT like this. and MSDN says that EN_CHANGE
4620 * Messages are only to be sent when the USER does something to
4621 * change the contents. So I am removing this EN_CHANGE
4623 * EDIT_NOTIFY_PARENT(es, EN_CHANGE);
4625 EDIT_EM_ScrollCaret(es
);
4627 /* force scroll info update */
4628 EDIT_UpdateScrollInfo(es
);
4629 /* The rule seems to return 1 here for success */
4630 /* Power Builder masked edit controls will crash */
4632 /* FIXME: is that in all cases so ? */
4637 /*********************************************************************
4642 static LRESULT
EDIT_WM_NCDestroy(EDITSTATE
*es
)
4646 /* The app can own the text buffer handle */
4647 if (es
->hloc32W
&& (es
->hloc32W
!= es
->hlocapp
)) {
4648 LocalFree(es
->hloc32W
);
4650 if (es
->hloc32A
&& (es
->hloc32A
!= es
->hlocapp
)) {
4651 LocalFree(es
->hloc32A
);
4653 EDIT_InvalidateUniscribeData(es
);
4654 pc
= es
->first_line_def
;
4658 HeapFree(GetProcessHeap(), 0, pc
);
4662 SetWindowLongPtrW( es
->hwndSelf
, 0, 0 );
4663 HeapFree(GetProcessHeap(), 0, es
->undo_text
);
4664 HeapFree(GetProcessHeap(), 0, es
);
4670 static inline LRESULT
DefWindowProcT(HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
4673 return DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
4675 return DefWindowProcA(hwnd
, msg
, wParam
, lParam
);
4678 /*********************************************************************
4680 * EditWndProc_common
4682 * The messages are in the order of the actual integer values
4683 * (which can be found in include/windows.h)
4685 LRESULT
EditWndProc_common( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
4687 EDITSTATE
*es
= (EDITSTATE
*)GetWindowLongPtrW( hwnd
, 0 );
4690 TRACE("hwnd=%p msg=%x (%s) wparam=%Ix lparam=%Ix\n", hwnd
, msg
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
4692 if (!es
&& msg
!= WM_NCCREATE
)
4693 return DefWindowProcT(hwnd
, msg
, wParam
, lParam
, unicode
);
4695 if (es
&& (msg
!= WM_NCDESTROY
)) EDIT_LockBuffer(es
);
4699 result
= EDIT_EM_GetSel(es
, (PUINT
)wParam
, (PUINT
)lParam
);
4703 EDIT_EM_SetSel(es
, wParam
, lParam
, FALSE
);
4704 EDIT_EM_ScrollCaret(es
);
4710 *((LPRECT
)lParam
) = es
->format_rect
;
4714 if ((es
->style
& ES_MULTILINE
) && lParam
) {
4715 EDIT_SetRectNP(es
, (LPRECT
)lParam
);
4716 EDIT_UpdateText(es
, NULL
, TRUE
);
4721 if ((es
->style
& ES_MULTILINE
) && lParam
)
4722 EDIT_SetRectNP(es
, (LPRECT
)lParam
);
4726 result
= EDIT_EM_Scroll(es
, (INT
)wParam
);
4730 result
= (LRESULT
)EDIT_EM_LineScroll(es
, (INT
)wParam
, (INT
)lParam
);
4733 case EM_SCROLLCARET
:
4734 EDIT_EM_ScrollCaret(es
);
4739 result
= ((es
->flags
& EF_MODIFIED
) != 0);
4744 es
->flags
|= EF_MODIFIED
;
4746 es
->flags
&= ~(EF_MODIFIED
| EF_UPDATE
); /* reset pending updates */
4749 case EM_GETLINECOUNT
:
4750 result
= (es
->style
& ES_MULTILINE
) ? es
->line_count
: 1;
4754 result
= (LRESULT
)EDIT_EM_LineIndex(es
, (INT
)wParam
);
4758 EDIT_EM_SetHandle(es
, (HLOCAL
)wParam
);
4762 result
= (LRESULT
)EDIT_EM_GetHandle(es
);
4766 result
= EDIT_EM_GetThumb(es
);
4769 /* these messages missing from specs */
4774 FIXME("undocumented message 0x%x, please report\n", msg
);
4775 result
= DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
4779 result
= (LRESULT
)EDIT_EM_LineLength(es
, (INT
)wParam
);
4787 textW
= (LPWSTR
)lParam
;
4790 LPSTR textA
= (LPSTR
)lParam
;
4791 INT countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, -1, NULL
, 0);
4792 if (!(textW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
)))) break;
4793 MultiByteToWideChar(CP_ACP
, 0, textA
, -1, textW
, countW
);
4796 EDIT_EM_ReplaceSel(es
, (BOOL
)wParam
, textW
, lstrlenW(textW
), TRUE
, TRUE
);
4800 HeapFree(GetProcessHeap(), 0, textW
);
4805 result
= (LRESULT
)EDIT_EM_GetLine(es
, (INT
)wParam
, (LPWSTR
)lParam
, unicode
);
4808 case EM_SETLIMITTEXT
:
4809 EDIT_EM_SetLimitText(es
, wParam
);
4813 result
= (LRESULT
)EDIT_EM_CanUndo(es
);
4818 result
= (LRESULT
)EDIT_EM_Undo(es
);
4822 result
= (LRESULT
)EDIT_EM_FmtLines(es
, (BOOL
)wParam
);
4825 case EM_LINEFROMCHAR
:
4826 result
= (LRESULT
)EDIT_EM_LineFromChar(es
, (INT
)wParam
);
4829 case EM_SETTABSTOPS
:
4830 result
= (LRESULT
)EDIT_EM_SetTabStops(es
, (INT
)wParam
, (LPINT
)lParam
);
4833 case EM_SETPASSWORDCHAR
:
4838 charW
= (WCHAR
)wParam
;
4841 CHAR charA
= wParam
;
4842 MultiByteToWideChar(CP_ACP
, 0, &charA
, 1, &charW
, 1);
4845 EDIT_EM_SetPasswordChar(es
, charW
);
4849 case EM_EMPTYUNDOBUFFER
:
4850 EDIT_EM_EmptyUndoBuffer(es
);
4853 case EM_GETFIRSTVISIBLELINE
:
4854 result
= (es
->style
& ES_MULTILINE
) ? es
->y_offset
: es
->x_offset
;
4857 case EM_SETREADONLY
:
4859 DWORD old_style
= es
->style
;
4862 SetWindowLongW( hwnd
, GWL_STYLE
,
4863 GetWindowLongW( hwnd
, GWL_STYLE
) | ES_READONLY
);
4864 es
->style
|= ES_READONLY
;
4866 SetWindowLongW( hwnd
, GWL_STYLE
,
4867 GetWindowLongW( hwnd
, GWL_STYLE
) & ~ES_READONLY
);
4868 es
->style
&= ~ES_READONLY
;
4871 if (old_style
^ es
->style
)
4872 NtUserInvalidateRect(es
->hwndSelf
, NULL
, TRUE
);
4878 case EM_SETWORDBREAKPROC
:
4879 EDIT_EM_SetWordBreakProc(es
, (void *)lParam
);
4883 case EM_GETWORDBREAKPROC
:
4884 result
= (LRESULT
)es
->word_break_proc
;
4887 case EM_GETPASSWORDCHAR
:
4890 result
= es
->password_char
;
4893 WCHAR charW
= es
->password_char
;
4895 WideCharToMultiByte(CP_ACP
, 0, &charW
, 1, &charA
, 1, NULL
, NULL
);
4902 EDIT_EM_SetMargins(es
, (INT
)wParam
, LOWORD(lParam
), HIWORD(lParam
), TRUE
);
4906 result
= MAKELONG(es
->left_margin
, es
->right_margin
);
4909 case EM_GETLIMITTEXT
:
4910 result
= es
->buffer_limit
;
4913 case EM_POSFROMCHAR
:
4914 if ((INT
)wParam
>= get_text_length(es
)) result
= -1;
4915 else result
= EDIT_EM_PosFromChar(es
, (INT
)wParam
, FALSE
);
4918 case EM_CHARFROMPOS
:
4919 result
= EDIT_EM_CharFromPos(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
4922 case EM_SETIMESTATUS
:
4923 if (wParam
== EMSIS_COMPOSITIONSTRING
)
4924 es
->ime_status
= lParam
& 0xFFFF;
4929 case EM_GETIMESTATUS
:
4930 result
= wParam
== EMSIS_COMPOSITIONSTRING
? es
->ime_status
: 1;
4933 /* End of the EM_ messages which were in numerical order; what order
4934 * are these in? vaguely alphabetical?
4938 result
= EDIT_WM_NCCreate(hwnd
, (LPCREATESTRUCTW
)lParam
, unicode
);
4942 result
= EDIT_WM_NCDestroy(es
);
4947 result
= DLGC_HASSETSEL
| DLGC_WANTCHARS
| DLGC_WANTARROWS
;
4949 if (es
->style
& ES_MULTILINE
)
4950 result
|= DLGC_WANTALLKEYS
;
4954 es
->flags
|=EF_DIALOGMODE
;
4956 if (((LPMSG
)lParam
)->message
== WM_KEYDOWN
)
4958 int vk
= (int)((LPMSG
)lParam
)->wParam
;
4960 if (es
->hwndListBox
)
4962 if (vk
== VK_RETURN
|| vk
== VK_ESCAPE
)
4963 if (SendMessageW(GetParent(hwnd
), CB_GETDROPPEDSTATE
, 0, 0))
4964 result
|= DLGC_WANTMESSAGE
;
4978 CHAR charA
= wParam
;
4979 MultiByteToWideChar(CP_ACP
, 0, &charA
, 1, &charW
, 1);
4982 if (es
->hwndListBox
)
4984 if (charW
== VK_RETURN
|| charW
== VK_ESCAPE
)
4986 if (SendMessageW(GetParent(hwnd
), CB_GETDROPPEDSTATE
, 0, 0))
4987 SendMessageW(GetParent(hwnd
), WM_KEYDOWN
, charW
, 0);
4991 result
= EDIT_WM_Char(es
, charW
);
4998 if (wParam
== UNICODE_NOCHAR
) return TRUE
;
4999 if (wParam
<= 0x000fffff)
5001 if(wParam
> 0xffff) /* convert to surrogates */
5004 EDIT_WM_Char(es
, (wParam
>> 10) + 0xd800);
5005 EDIT_WM_Char(es
, (wParam
& 0x03ff) + 0xdc00);
5007 else EDIT_WM_Char(es
, wParam
);
5017 case WM_CONTEXTMENU
:
5018 EDIT_WM_ContextMenu(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
5027 result
= EDIT_WM_Create(es
, ((LPCREATESTRUCTW
)lParam
)->lpszName
);
5030 LPCSTR nameA
= ((LPCREATESTRUCTA
)lParam
)->lpszName
;
5031 LPWSTR nameW
= NULL
;
5034 INT countW
= MultiByteToWideChar(CP_ACP
, 0, nameA
, -1, NULL
, 0);
5035 if((nameW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
))))
5036 MultiByteToWideChar(CP_ACP
, 0, nameA
, -1, nameW
, countW
);
5038 result
= EDIT_WM_Create(es
, nameW
);
5039 HeapFree(GetProcessHeap(), 0, nameW
);
5048 es
->bEnableState
= (BOOL
) wParam
;
5049 EDIT_UpdateText(es
, NULL
, TRUE
);
5053 /* we do the proper erase in EDIT_WM_Paint */
5058 result
= (LRESULT
)es
->font
;
5062 result
= (LRESULT
)EDIT_WM_GetText(es
, (INT
)wParam
, (LPWSTR
)lParam
, unicode
);
5065 case WM_GETTEXTLENGTH
:
5066 if (unicode
) result
= get_text_length(es
);
5067 else result
= WideCharToMultiByte( CP_ACP
, 0, es
->text
, get_text_length(es
),
5068 NULL
, 0, NULL
, NULL
);
5072 result
= EDIT_WM_HScroll(es
, LOWORD(wParam
), (short)HIWORD(wParam
));
5076 result
= EDIT_WM_KeyDown(es
, (INT
)wParam
);
5080 result
= EDIT_WM_KillFocus(es
);
5083 case WM_LBUTTONDBLCLK
:
5084 result
= EDIT_WM_LButtonDblClk(es
);
5087 case WM_LBUTTONDOWN
:
5088 result
= EDIT_WM_LButtonDown(es
, wParam
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
5092 result
= EDIT_WM_LButtonUp(es
);
5095 case WM_MBUTTONDOWN
:
5096 result
= EDIT_WM_MButtonDown(es
);
5100 result
= EDIT_WM_MouseMove(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
5103 case WM_PRINTCLIENT
:
5105 EDIT_WM_Paint(es
, (HDC
)wParam
);
5113 EDIT_WM_SetFocus(es
);
5117 EDIT_WM_SetFont(es
, (HFONT
)wParam
, LOWORD(lParam
) != 0);
5121 /* FIXME: actually set an internal flag and behave accordingly */
5125 EDIT_WM_SetText(es
, (LPCWSTR
)lParam
, unicode
);
5130 EDIT_WM_Size(es
, (UINT
)wParam
);
5133 case WM_STYLECHANGED
:
5134 result
= EDIT_WM_StyleChanged(es
, wParam
, (const STYLESTRUCT
*)lParam
);
5137 case WM_STYLECHANGING
:
5138 result
= 0; /* See EDIT_WM_StyleChanged */
5142 result
= EDIT_WM_SysKeyDown(es
, (INT
)wParam
, (DWORD
)lParam
);
5150 result
= EDIT_WM_VScroll(es
, LOWORD(wParam
), (short)HIWORD(wParam
));
5156 INT pulScrollLines
= 3;
5157 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
,0, &pulScrollLines
, 0);
5159 if (wParam
& (MK_SHIFT
| MK_CONTROL
)) {
5160 result
= DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
5163 wheelDelta
= GET_WHEEL_DELTA_WPARAM(wParam
);
5164 /* if scrolling changes direction, ignore left overs */
5165 if ((wheelDelta
< 0 && es
->wheelDeltaRemainder
< 0) ||
5166 (wheelDelta
> 0 && es
->wheelDeltaRemainder
> 0))
5167 es
->wheelDeltaRemainder
+= wheelDelta
;
5169 es
->wheelDeltaRemainder
= wheelDelta
;
5170 if (es
->wheelDeltaRemainder
&& pulScrollLines
)
5173 pulScrollLines
= min(es
->line_count
, pulScrollLines
);
5174 cLineScroll
= pulScrollLines
* es
->wheelDeltaRemainder
/ WHEEL_DELTA
;
5175 es
->wheelDeltaRemainder
-= WHEEL_DELTA
* cLineScroll
/ pulScrollLines
;
5176 result
= EDIT_EM_LineScroll(es
, 0, -cLineScroll
);
5182 /* IME messages to make the edit control IME aware */
5183 case WM_IME_SETCONTEXT
:
5186 case WM_IME_STARTCOMPOSITION
:
5187 es
->composition_start
= es
->selection_end
;
5188 es
->composition_len
= 0;
5191 case WM_IME_COMPOSITION
:
5192 if (lParam
& GCS_RESULTSTR
&& !(es
->ime_status
& EIMES_GETCOMPSTRATONCE
))
5194 DefWindowProcT(hwnd
, msg
, wParam
, lParam
, unicode
);
5198 EDIT_ImeComposition(hwnd
, lParam
, es
);
5201 case WM_IME_ENDCOMPOSITION
:
5202 if (es
->composition_len
> 0)
5204 EDIT_EM_ReplaceSel(es
, TRUE
, NULL
, 0, TRUE
, TRUE
);
5205 es
->selection_end
= es
->selection_start
;
5206 es
->composition_len
= 0;
5210 case WM_IME_COMPOSITIONFULL
:
5216 case WM_IME_CONTROL
:
5219 case WM_IME_REQUEST
:
5222 case IMR_QUERYCHARPOSITION
:
5225 IMECHARPOSITION
*chpos
= (IMECHARPOSITION
*)lParam
;
5227 pos
= EDIT_EM_PosFromChar(es
, es
->selection_start
+ chpos
->dwCharPos
, FALSE
);
5228 chpos
->pt
.x
= LOWORD(pos
);
5229 chpos
->pt
.y
= HIWORD(pos
);
5230 chpos
->cLineHeight
= es
->line_height
;
5231 chpos
->rcDocument
= es
->format_rect
;
5232 MapWindowPoints(hwnd
, 0, &chpos
->pt
, 1);
5233 MapWindowPoints(hwnd
, 0, (POINT
*)&chpos
->rcDocument
, 2);
5241 result
= DefWindowProcT(hwnd
, msg
, wParam
, lParam
, unicode
);
5245 if (IsWindow(hwnd
) && es
&& msg
!= EM_GETHANDLE
)
5246 EDIT_UnlockBuffer(es
, FALSE
);
5248 TRACE("hwnd=%p msg=%x (%s) -- 0x%08Ix\n", hwnd
, msg
, SPY_GetMsgName(msg
, hwnd
), result
);