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
25 * This code was audited for completeness against the documented features
26 * of Comctl32.dll version 6.0 on Oct. 8, 2004, by Dimitrie O. Paun.
28 * Unless otherwise noted, we believe this code to be complete, as per
29 * the specification mentioned above.
30 * If you discover missing features, or bugs, please note them below.
33 * - EDITBALLOONTIP structure
34 * - EM_GETCUEBANNER/Edit_GetCueBannerText
35 * - EM_HIDEBALLOONTIP/Edit_HideBalloonTip
36 * - EM_SETCUEBANNER/Edit_SetCueBannerText
37 * - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip
38 * - EM_GETIMESTATUS, EM_SETIMESTATUS
57 #include "wine/winbase16.h"
58 #include "wine/winuser16.h"
59 #include "wine/unicode.h"
61 #include "user_private.h"
62 #include "wine/debug.h"
64 WINE_DEFAULT_DEBUG_CHANNEL(edit
);
65 WINE_DECLARE_DEBUG_CHANNEL(combo
);
66 WINE_DECLARE_DEBUG_CHANNEL(relay
);
68 #define BUFLIMIT_INITIAL 30000 /* initial buffer size */
69 #define GROWLENGTH 32 /* buffers granularity in bytes: must be power of 2 */
70 #define ROUND_TO_GROW(size) (((size) + (GROWLENGTH - 1)) & ~(GROWLENGTH - 1))
71 #define HSCROLL_FRACTION 3 /* scroll window by 1/3 width */
74 * extra flags for EDITSTATE.flags field
76 #define EF_MODIFIED 0x0001 /* text has been modified */
77 #define EF_FOCUSED 0x0002 /* we have input focus */
78 #define EF_UPDATE 0x0004 /* notify parent of changed state */
79 #define EF_VSCROLL_TRACK 0x0008 /* don't SetScrollPos() since we are tracking the thumb */
80 #define EF_HSCROLL_TRACK 0x0010 /* don't SetScrollPos() since we are tracking the thumb */
81 #define EF_AFTER_WRAP 0x0080 /* the caret is displayed after the last character of a
82 wrapped line, instead of in front of the next character */
83 #define EF_USE_SOFTBRK 0x0100 /* Enable soft breaks in text. */
84 #define EF_APP_HAS_HANDLE 0x0200 /* Set when an app sends EM_[G|S]ETHANDLE. We are in sole control of
85 the text buffer if this is clear. */
88 END_0
= 0, /* line ends with terminating '\0' character */
89 END_WRAP
, /* line is wrapped */
90 END_HARD
, /* line ends with a hard return '\r\n' */
91 END_SOFT
, /* line ends with a soft return '\r\r\n' */
92 END_RICH
/* line ends with a single '\n' */
95 typedef struct tagLINEDEF
{
96 INT length
; /* bruto length of a line in bytes */
97 INT net_length
; /* netto length of a line in visible characters */
99 INT width
; /* width of the line in pixels */
100 INT index
; /* line index into the buffer */
101 struct tagLINEDEF
*next
;
106 BOOL is_unicode
; /* how the control was created */
107 LPWSTR text
; /* the actual contents of the control */
108 UINT text_length
; /* cached length of text buffer (in WCHARs) - use get_text_length() to retrieve */
109 UINT buffer_size
; /* the size of the buffer in characters */
110 UINT buffer_limit
; /* the maximum size to which the buffer may grow in characters */
111 HFONT font
; /* NULL means standard system font */
112 INT x_offset
; /* scroll offset for multi lines this is in pixels
113 for single lines it's in characters */
114 INT line_height
; /* height of a screen line in pixels */
115 INT char_width
; /* average character width in pixels */
116 DWORD style
; /* sane version of wnd->dwStyle */
117 WORD flags
; /* flags that are not in es->style or wnd->flags (EF_XXX) */
118 INT undo_insert_count
; /* number of characters inserted in sequence */
119 UINT undo_position
; /* character index of the insertion and deletion */
120 LPWSTR undo_text
; /* deleted text */
121 UINT undo_buffer_size
; /* size of the deleted text buffer */
122 INT selection_start
; /* == selection_end if no selection */
123 INT selection_end
; /* == current caret position */
124 WCHAR password_char
; /* == 0 if no password char, and for multi line controls */
125 INT left_margin
; /* in pixels */
126 INT right_margin
; /* in pixels */
128 INT text_width
; /* width of the widest line in pixels for multi line controls
129 and just line width for single line controls */
130 INT region_posx
; /* Position of cursor relative to region: */
131 INT region_posy
; /* -1: to left, 0: within, 1: to right */
132 EDITWORDBREAKPROC16 word_break_proc16
;
133 void *word_break_proc
; /* 32-bit word break proc: ANSI or Unicode */
134 INT line_count
; /* number of lines */
135 INT y_offset
; /* scroll offset in number of lines */
136 BOOL bCaptureState
; /* flag indicating whether mouse was captured */
137 BOOL bEnableState
; /* flag keeping the enable state */
138 HWND hwndSelf
; /* the our window handle */
139 HWND hwndParent
; /* Handle of parent for sending EN_* messages.
140 Even if parent will change, EN_* messages
141 should be sent to the first parent. */
142 HWND hwndListBox
; /* handle of ComboBox's listbox or NULL */
144 * only for multi line controls
146 INT lock_count
; /* amount of re-entries in the EditWndProc */
149 LINEDEF
*first_line_def
; /* linked list of (soft) linebreaks */
150 HLOCAL hloc32W
; /* our unicode local memory block */
151 HLOCAL16 hloc16
; /* alias for 16-bit control receiving EM_GETHANDLE16
153 HLOCAL hloc32A
; /* alias for ANSI control receiving EM_GETHANDLE
158 UINT composition_len
; /* length of composition, 0 == no composition */
159 int composition_start
; /* the character position for the composition */
163 #define SWAP_UINT32(x,y) do { UINT temp = (UINT)(x); (x) = (UINT)(y); (y) = temp; } while(0)
164 #define ORDER_UINT(x,y) do { if ((UINT)(y) < (UINT)(x)) SWAP_UINT32((x),(y)); } while(0)
166 /* used for disabled or read-only edit control */
167 #define EDIT_NOTIFY_PARENT(es, wNotifyCode) \
169 { /* Notify parent which has created this edit control */ \
170 TRACE("notification " #wNotifyCode " sent to hwnd=%p\n", es->hwndParent); \
171 SendMessageW(es->hwndParent, WM_COMMAND, \
172 MAKEWPARAM(GetWindowLongPtrW((es->hwndSelf),GWLP_ID), wNotifyCode), \
173 (LPARAM)(es->hwndSelf)); \
176 /*********************************************************************
183 * These functions have trivial implementations
184 * We still like to call them internally
185 * "static inline" makes them more like macro's
187 static inline BOOL
EDIT_EM_CanUndo(const EDITSTATE
*es
);
188 static inline void EDIT_EM_EmptyUndoBuffer(EDITSTATE
*es
);
189 static inline void EDIT_WM_Clear(EDITSTATE
*es
);
190 static inline void EDIT_WM_Cut(EDITSTATE
*es
);
193 * Helper functions only valid for one type of control
195 static void EDIT_BuildLineDefs_ML(EDITSTATE
*es
, INT iStart
, INT iEnd
, INT delta
, HRGN hrgn
);
196 static void EDIT_CalcLineWidth_SL(EDITSTATE
*es
);
197 static LPWSTR
EDIT_GetPasswordPointer_SL(EDITSTATE
*es
);
198 static void EDIT_MoveDown_ML(EDITSTATE
*es
, BOOL extend
);
199 static void EDIT_MovePageDown_ML(EDITSTATE
*es
, BOOL extend
);
200 static void EDIT_MovePageUp_ML(EDITSTATE
*es
, BOOL extend
);
201 static void EDIT_MoveUp_ML(EDITSTATE
*es
, BOOL extend
);
203 * Helper functions valid for both single line _and_ multi line controls
205 static INT
EDIT_CallWordBreakProc(EDITSTATE
*es
, INT start
, INT index
, INT count
, INT action
);
206 static INT
EDIT_CharFromPos(EDITSTATE
*es
, INT x
, INT y
, LPBOOL after_wrap
);
207 static void EDIT_ConfinePoint(const EDITSTATE
*es
, LPINT x
, LPINT y
);
208 static void EDIT_GetLineRect(EDITSTATE
*es
, INT line
, INT scol
, INT ecol
, LPRECT rc
);
209 static void EDIT_InvalidateText(EDITSTATE
*es
, INT start
, INT end
);
210 static void EDIT_LockBuffer(EDITSTATE
*es
);
211 static BOOL
EDIT_MakeFit(EDITSTATE
*es
, UINT size
);
212 static BOOL
EDIT_MakeUndoFit(EDITSTATE
*es
, UINT size
);
213 static void EDIT_MoveBackward(EDITSTATE
*es
, BOOL extend
);
214 static void EDIT_MoveEnd(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
);
215 static void EDIT_MoveForward(EDITSTATE
*es
, BOOL extend
);
216 static void EDIT_MoveHome(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
);
217 static void EDIT_MoveWordBackward(EDITSTATE
*es
, BOOL extend
);
218 static void EDIT_MoveWordForward(EDITSTATE
*es
, BOOL extend
);
219 static void EDIT_PaintLine(EDITSTATE
*es
, HDC hdc
, INT line
, BOOL rev
);
220 static INT
EDIT_PaintText(EDITSTATE
*es
, HDC hdc
, INT x
, INT y
, INT line
, INT col
, INT count
, BOOL rev
);
221 static void EDIT_SetCaretPos(EDITSTATE
*es
, INT pos
, BOOL after_wrap
);
222 static void EDIT_AdjustFormatRect(EDITSTATE
*es
);
223 static void EDIT_SetRectNP(EDITSTATE
*es
, const RECT
*lprc
);
224 static void EDIT_UnlockBuffer(EDITSTATE
*es
, BOOL force
);
225 static void EDIT_UpdateScrollInfo(EDITSTATE
*es
);
226 static INT CALLBACK
EDIT_WordBreakProc(LPWSTR s
, INT index
, INT count
, INT action
);
228 * EM_XXX message handlers
230 static LRESULT
EDIT_EM_CharFromPos(EDITSTATE
*es
, INT x
, INT y
);
231 static BOOL
EDIT_EM_FmtLines(EDITSTATE
*es
, BOOL add_eol
);
232 static HLOCAL
EDIT_EM_GetHandle(EDITSTATE
*es
);
233 static HLOCAL16
EDIT_EM_GetHandle16(EDITSTATE
*es
);
234 static INT
EDIT_EM_GetLine(EDITSTATE
*es
, INT line
, LPWSTR dst
, BOOL unicode
);
235 static LRESULT
EDIT_EM_GetSel(const EDITSTATE
*es
, PUINT start
, PUINT end
);
236 static LRESULT
EDIT_EM_GetThumb(EDITSTATE
*es
);
237 static INT
EDIT_EM_LineFromChar(EDITSTATE
*es
, INT index
);
238 static INT
EDIT_EM_LineIndex(const EDITSTATE
*es
, INT line
);
239 static INT
EDIT_EM_LineLength(EDITSTATE
*es
, INT index
);
240 static BOOL
EDIT_EM_LineScroll(EDITSTATE
*es
, INT dx
, INT dy
);
241 static BOOL
EDIT_EM_LineScroll_internal(EDITSTATE
*es
, INT dx
, INT dy
);
242 static LRESULT
EDIT_EM_PosFromChar(EDITSTATE
*es
, INT index
, BOOL after_wrap
);
243 static void EDIT_EM_ReplaceSel(EDITSTATE
*es
, BOOL can_undo
, LPCWSTR lpsz_replace
, BOOL send_update
, BOOL honor_limit
);
244 static LRESULT
EDIT_EM_Scroll(EDITSTATE
*es
, INT action
);
245 static void EDIT_EM_ScrollCaret(EDITSTATE
*es
);
246 static void EDIT_EM_SetHandle(EDITSTATE
*es
, HLOCAL hloc
);
247 static void EDIT_EM_SetHandle16(EDITSTATE
*es
, HLOCAL16 hloc
);
248 static void EDIT_EM_SetLimitText(EDITSTATE
*es
, UINT limit
);
249 static void EDIT_EM_SetMargins(EDITSTATE
*es
, INT action
, WORD left
, WORD right
, BOOL repaint
);
250 static void EDIT_EM_SetPasswordChar(EDITSTATE
*es
, WCHAR c
);
251 static void EDIT_EM_SetSel(EDITSTATE
*es
, UINT start
, UINT end
, BOOL after_wrap
);
252 static BOOL
EDIT_EM_SetTabStops(EDITSTATE
*es
, INT count
, const INT
*tabs
);
253 static BOOL
EDIT_EM_SetTabStops16(EDITSTATE
*es
, INT count
, const INT16
*tabs
);
254 static void EDIT_EM_SetWordBreakProc(EDITSTATE
*es
, void *wbp
);
255 static void EDIT_EM_SetWordBreakProc16(EDITSTATE
*es
, EDITWORDBREAKPROC16 wbp
);
256 static BOOL
EDIT_EM_Undo(EDITSTATE
*es
);
258 * WM_XXX message handlers
260 static LRESULT
EDIT_WM_Char(EDITSTATE
*es
, WCHAR c
);
261 static void EDIT_WM_Command(EDITSTATE
*es
, INT code
, INT id
, HWND conrtol
);
262 static void EDIT_WM_ContextMenu(EDITSTATE
*es
, INT x
, INT y
);
263 static void EDIT_WM_Copy(EDITSTATE
*es
);
264 static LRESULT
EDIT_WM_Create(EDITSTATE
*es
, LPCWSTR name
);
265 static LRESULT
EDIT_WM_Destroy(EDITSTATE
*es
);
266 static INT
EDIT_WM_GetText(const EDITSTATE
*es
, INT count
, LPWSTR dst
, BOOL unicode
);
267 static LRESULT
EDIT_WM_HScroll(EDITSTATE
*es
, INT action
, INT pos
);
268 static LRESULT
EDIT_WM_KeyDown(EDITSTATE
*es
, INT key
);
269 static LRESULT
EDIT_WM_KillFocus(EDITSTATE
*es
);
270 static LRESULT
EDIT_WM_LButtonDblClk(EDITSTATE
*es
);
271 static LRESULT
EDIT_WM_LButtonDown(EDITSTATE
*es
, DWORD keys
, INT x
, INT y
);
272 static LRESULT
EDIT_WM_LButtonUp(EDITSTATE
*es
);
273 static LRESULT
EDIT_WM_MButtonDown(EDITSTATE
*es
);
274 static LRESULT
EDIT_WM_MouseMove(EDITSTATE
*es
, INT x
, INT y
);
275 static LRESULT
EDIT_WM_NCCreate(HWND hwnd
, LPCREATESTRUCTW lpcs
, BOOL unicode
);
276 static void EDIT_WM_Paint(EDITSTATE
*es
, HDC hdc
);
277 static void EDIT_WM_Paste(EDITSTATE
*es
);
278 static void EDIT_WM_SetFocus(EDITSTATE
*es
);
279 static void EDIT_WM_SetFont(EDITSTATE
*es
, HFONT font
, BOOL redraw
);
280 static void EDIT_WM_SetText(EDITSTATE
*es
, LPCWSTR text
, BOOL unicode
);
281 static void EDIT_WM_Size(EDITSTATE
*es
, UINT action
, INT width
, INT height
);
282 static LRESULT
EDIT_WM_StyleChanged(EDITSTATE
*es
, WPARAM which
, const STYLESTRUCT
*style
);
283 static LRESULT
EDIT_WM_SysKeyDown(EDITSTATE
*es
, INT key
, DWORD key_data
);
284 static void EDIT_WM_Timer(EDITSTATE
*es
);
285 static LRESULT
EDIT_WM_VScroll(EDITSTATE
*es
, INT action
, INT pos
);
286 static void EDIT_UpdateText(EDITSTATE
*es
, const RECT
*rc
, BOOL bErase
);
287 static void EDIT_UpdateTextRegion(EDITSTATE
*es
, HRGN hrgn
, BOOL bErase
);
288 static void EDIT_ImeComposition(HWND hwnd
, LPARAM CompFlag
, EDITSTATE
*es
);
290 LRESULT WINAPI
EditWndProcA(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
291 LRESULT WINAPI
EditWndProcW(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
293 /*********************************************************************
294 * edit class descriptor
296 static const WCHAR editW
[] = {'E','d','i','t',0};
297 const struct builtin_class_descr EDIT_builtin_class
=
300 CS_DBLCLKS
| CS_PARENTDC
, /* style */
301 EditWndProcA
, /* procA */
302 EditWndProcW
, /* procW */
303 sizeof(EDITSTATE
*), /* extra */
304 IDC_IBEAM
, /* cursor */
309 /*********************************************************************
314 static inline BOOL
EDIT_EM_CanUndo(const EDITSTATE
*es
)
316 return (es
->undo_insert_count
|| strlenW(es
->undo_text
));
320 /*********************************************************************
325 static inline void EDIT_EM_EmptyUndoBuffer(EDITSTATE
*es
)
327 es
->undo_insert_count
= 0;
328 *es
->undo_text
= '\0';
332 /*********************************************************************
337 static inline void EDIT_WM_Clear(EDITSTATE
*es
)
339 static const WCHAR empty_stringW
[] = {0};
341 /* Protect read-only edit control from modification */
342 if(es
->style
& ES_READONLY
)
345 EDIT_EM_ReplaceSel(es
, TRUE
, empty_stringW
, TRUE
, TRUE
);
349 /*********************************************************************
354 static inline void EDIT_WM_Cut(EDITSTATE
*es
)
361 /**********************************************************************
364 * Returns the window version in case Wine emulates a later version
365 * of windows than the application expects.
367 * In a number of cases when windows runs an application that was
368 * designed for an earlier windows version, windows reverts
369 * to "old" behaviour of that earlier version.
371 * An example is a disabled edit control that needs to be painted.
372 * Old style behaviour is to send a WM_CTLCOLOREDIT message. This was
373 * changed in Win95, NT4.0 by a WM_CTLCOLORSTATIC message _only_ for
374 * applications with an expected version 0f 4.0 or higher.
377 static DWORD
get_app_version(void)
379 static DWORD version
;
382 DWORD dwEmulatedVersion
;
384 DWORD dwProcVersion
= GetProcessVersion(0);
386 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFOW
);
387 GetVersionExW( &info
);
388 dwEmulatedVersion
= MAKELONG( info
.dwMinorVersion
, info
.dwMajorVersion
);
389 /* FIXME: this may not be 100% correct; see discussion on the
390 * wine developer list in Nov 1999 */
391 version
= dwProcVersion
< dwEmulatedVersion
? dwProcVersion
: dwEmulatedVersion
;
396 static inline UINT
get_text_length(EDITSTATE
*es
)
398 if(es
->text_length
== (UINT
)-1)
399 es
->text_length
= strlenW(es
->text
);
400 return es
->text_length
;
403 static inline void text_buffer_changed(EDITSTATE
*es
)
405 es
->text_length
= (UINT
)-1;
408 static HBRUSH
EDIT_NotifyCtlColor(EDITSTATE
*es
, HDC hdc
)
413 if ( get_app_version() >= 0x40000 && (!es
->bEnableState
|| (es
->style
& ES_READONLY
)))
414 msg
= WM_CTLCOLORSTATIC
;
416 msg
= WM_CTLCOLOREDIT
;
418 /* why do we notify to es->hwndParent, and we send this one to GetParent()? */
419 hbrush
= (HBRUSH
)SendMessageW(GetParent(es
->hwndSelf
), msg
, (WPARAM
)hdc
, (LPARAM
)es
->hwndSelf
);
421 hbrush
= (HBRUSH
)DefWindowProcW(GetParent(es
->hwndSelf
), msg
, (WPARAM
)hdc
, (LPARAM
)es
->hwndSelf
);
425 static inline LRESULT
DefWindowProcT(HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
428 return DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
430 return DefWindowProcA(hwnd
, msg
, wParam
, lParam
);
433 /*********************************************************************
437 * The messages are in the order of the actual integer values
438 * (which can be found in include/windows.h)
439 * Wherever possible the 16 bit versions are converted to
440 * the 32 bit ones, so that we can 'fall through' to the
441 * helper functions. These are mostly 32 bit (with a few
442 * exceptions, clearly indicated by a '16' extension to their
446 static LRESULT WINAPI
EditWndProc_common( HWND hwnd
, UINT msg
,
447 WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
449 EDITSTATE
*es
= (EDITSTATE
*)GetWindowLongPtrW( hwnd
, 0 );
452 TRACE("hwnd=%p msg=%x (%s) wparam=%lx lparam=%lx\n", hwnd
, msg
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
454 if (!es
&& msg
!= WM_NCCREATE
)
455 return DefWindowProcT(hwnd
, msg
, wParam
, lParam
, unicode
);
457 if (es
&& (msg
!= WM_DESTROY
)) EDIT_LockBuffer(es
);
465 result
= EDIT_EM_GetSel(es
, (PUINT
)wParam
, (PUINT
)lParam
);
469 if ((short)LOWORD(lParam
) == -1)
470 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
472 EDIT_EM_SetSel(es
, LOWORD(lParam
), HIWORD(lParam
), FALSE
);
474 EDIT_EM_ScrollCaret(es
);
478 EDIT_EM_SetSel(es
, wParam
, lParam
, FALSE
);
479 EDIT_EM_ScrollCaret(es
);
486 RECT16
*r16
= MapSL(lParam
);
487 r16
->left
= es
->format_rect
.left
;
488 r16
->top
= es
->format_rect
.top
;
489 r16
->right
= es
->format_rect
.right
;
490 r16
->bottom
= es
->format_rect
.bottom
;
495 CopyRect((LPRECT
)lParam
, &es
->format_rect
);
499 if ((es
->style
& ES_MULTILINE
) && lParam
) {
501 RECT16
*r16
= MapSL(lParam
);
504 rc
.right
= r16
->right
;
505 rc
.bottom
= r16
->bottom
;
506 EDIT_SetRectNP(es
, &rc
);
507 EDIT_UpdateText(es
, NULL
, TRUE
);
511 if ((es
->style
& ES_MULTILINE
) && lParam
) {
512 EDIT_SetRectNP(es
, (LPRECT
)lParam
);
513 EDIT_UpdateText(es
, NULL
, TRUE
);
518 if ((es
->style
& ES_MULTILINE
) && lParam
) {
520 RECT16
*r16
= MapSL(lParam
);
523 rc
.right
= r16
->right
;
524 rc
.bottom
= r16
->bottom
;
525 EDIT_SetRectNP(es
, &rc
);
529 if ((es
->style
& ES_MULTILINE
) && lParam
)
530 EDIT_SetRectNP(es
, (LPRECT
)lParam
);
535 result
= EDIT_EM_Scroll(es
, (INT
)wParam
);
538 case EM_LINESCROLL16
:
539 wParam
= (WPARAM
)(INT
)(SHORT
)HIWORD(lParam
);
540 lParam
= (LPARAM
)(INT
)(SHORT
)LOWORD(lParam
);
543 result
= (LRESULT
)EDIT_EM_LineScroll(es
, (INT
)wParam
, (INT
)lParam
);
546 case EM_SCROLLCARET16
:
548 EDIT_EM_ScrollCaret(es
);
554 result
= ((es
->flags
& EF_MODIFIED
) != 0);
560 es
->flags
|= EF_MODIFIED
;
562 es
->flags
&= ~(EF_MODIFIED
| EF_UPDATE
); /* reset pending updates */
565 case EM_GETLINECOUNT16
:
566 case EM_GETLINECOUNT
:
567 result
= (es
->style
& ES_MULTILINE
) ? es
->line_count
: 1;
571 if ((INT16
)wParam
== -1)
575 result
= (LRESULT
)EDIT_EM_LineIndex(es
, (INT
)wParam
);
579 EDIT_EM_SetHandle16(es
, (HLOCAL16
)wParam
);
582 EDIT_EM_SetHandle(es
, (HLOCAL
)wParam
);
586 result
= (LRESULT
)EDIT_EM_GetHandle16(es
);
589 result
= (LRESULT
)EDIT_EM_GetHandle(es
);
594 result
= EDIT_EM_GetThumb(es
);
597 /* these messages missing from specs */
606 FIXME("undocumented message 0x%x, please report\n", msg
);
607 result
= DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
610 case EM_LINELENGTH16
:
612 result
= (LRESULT
)EDIT_EM_LineLength(es
, (INT
)wParam
);
615 case EM_REPLACESEL16
:
616 lParam
= (LPARAM
)MapSL(lParam
);
617 unicode
= FALSE
; /* 16-bit message is always ascii */
624 textW
= (LPWSTR
)lParam
;
627 LPSTR textA
= (LPSTR
)lParam
;
628 INT countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, -1, NULL
, 0);
629 if((textW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
))))
630 MultiByteToWideChar(CP_ACP
, 0, textA
, -1, textW
, countW
);
633 EDIT_EM_ReplaceSel(es
, (BOOL
)wParam
, textW
, TRUE
, TRUE
);
637 HeapFree(GetProcessHeap(), 0, textW
);
642 lParam
= (LPARAM
)MapSL(lParam
);
643 unicode
= FALSE
; /* 16-bit message is always ascii */
646 result
= (LRESULT
)EDIT_EM_GetLine(es
, (INT
)wParam
, (LPWSTR
)lParam
, unicode
);
650 case EM_SETLIMITTEXT
:
651 EDIT_EM_SetLimitText(es
, wParam
);
656 result
= (LRESULT
)EDIT_EM_CanUndo(es
);
662 result
= (LRESULT
)EDIT_EM_Undo(es
);
667 result
= (LRESULT
)EDIT_EM_FmtLines(es
, (BOOL
)wParam
);
670 case EM_LINEFROMCHAR16
:
671 case EM_LINEFROMCHAR
:
672 result
= (LRESULT
)EDIT_EM_LineFromChar(es
, (INT
)wParam
);
675 case EM_SETTABSTOPS16
:
676 result
= (LRESULT
)EDIT_EM_SetTabStops16(es
, (INT
)wParam
, MapSL(lParam
));
679 result
= (LRESULT
)EDIT_EM_SetTabStops(es
, (INT
)wParam
, (LPINT
)lParam
);
682 case EM_SETPASSWORDCHAR16
:
683 unicode
= FALSE
; /* 16-bit message is always ascii */
685 case EM_SETPASSWORDCHAR
:
690 charW
= (WCHAR
)wParam
;
694 MultiByteToWideChar(CP_ACP
, 0, &charA
, 1, &charW
, 1);
697 EDIT_EM_SetPasswordChar(es
, charW
);
701 case EM_EMPTYUNDOBUFFER16
:
702 case EM_EMPTYUNDOBUFFER
:
703 EDIT_EM_EmptyUndoBuffer(es
);
706 case EM_GETFIRSTVISIBLELINE16
:
707 result
= es
->y_offset
;
709 case EM_GETFIRSTVISIBLELINE
:
710 result
= (es
->style
& ES_MULTILINE
) ? es
->y_offset
: es
->x_offset
;
713 case EM_SETREADONLY16
:
716 SetWindowLongW( hwnd
, GWL_STYLE
,
717 GetWindowLongW( hwnd
, GWL_STYLE
) | ES_READONLY
);
718 es
->style
|= ES_READONLY
;
720 SetWindowLongW( hwnd
, GWL_STYLE
,
721 GetWindowLongW( hwnd
, GWL_STYLE
) & ~ES_READONLY
);
722 es
->style
&= ~ES_READONLY
;
727 case EM_SETWORDBREAKPROC16
:
728 EDIT_EM_SetWordBreakProc16(es
, (EDITWORDBREAKPROC16
)lParam
);
730 case EM_SETWORDBREAKPROC
:
731 EDIT_EM_SetWordBreakProc(es
, (void *)lParam
);
734 case EM_GETWORDBREAKPROC16
:
735 result
= (LRESULT
)es
->word_break_proc16
;
737 case EM_GETWORDBREAKPROC
:
738 result
= (LRESULT
)es
->word_break_proc
;
741 case EM_GETPASSWORDCHAR16
:
742 unicode
= FALSE
; /* 16-bit message is always ascii */
744 case EM_GETPASSWORDCHAR
:
747 result
= es
->password_char
;
750 WCHAR charW
= es
->password_char
;
752 WideCharToMultiByte(CP_ACP
, 0, &charW
, 1, &charA
, 1, NULL
, NULL
);
758 /* The following EM_xxx are new to win95 and don't exist for 16 bit */
761 EDIT_EM_SetMargins(es
, (INT
)wParam
, LOWORD(lParam
), HIWORD(lParam
), TRUE
);
765 result
= MAKELONG(es
->left_margin
, es
->right_margin
);
768 case EM_GETLIMITTEXT
:
769 result
= es
->buffer_limit
;
773 if ((INT
)wParam
>= get_text_length(es
)) result
= -1;
774 else result
= EDIT_EM_PosFromChar(es
, (INT
)wParam
, FALSE
);
778 result
= EDIT_EM_CharFromPos(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
781 /* End of the EM_ messages which were in numerical order; what order
782 * are these in? vaguely alphabetical?
786 result
= EDIT_WM_NCCreate(hwnd
, (LPCREATESTRUCTW
)lParam
, unicode
);
790 result
= EDIT_WM_Destroy(es
);
795 result
= DLGC_HASSETSEL
| DLGC_WANTCHARS
| DLGC_WANTARROWS
;
797 if (es
->style
& ES_MULTILINE
)
798 result
|= DLGC_WANTALLKEYS
;
800 if (lParam
&& (((LPMSG
)lParam
)->message
== WM_KEYDOWN
))
802 int vk
= (int)((LPMSG
)lParam
)->wParam
;
806 if (vk
== VK_RETURN
|| vk
== VK_ESCAPE
)
807 if (SendMessageW(GetParent(hwnd
), CB_GETDROPPEDSTATE
, 0, 0))
808 result
|= DLGC_WANTMESSAGE
;
815 SendMessageW(GetParent(hwnd
), WM_CLOSE
, 0, 0);
830 strng
[0] = wParam
>> 8;
831 strng
[1] = wParam
& 0xff;
832 if (strng
[0]) MultiByteToWideChar(CP_ACP
, 0, strng
, 2, &charW
, 1);
833 else MultiByteToWideChar(CP_ACP
, 0, &strng
[1], 1, &charW
, 1);
834 result
= EDIT_WM_Char(es
, charW
);
847 MultiByteToWideChar(CP_ACP
, 0, &charA
, 1, &charW
, 1);
852 if (charW
== VK_RETURN
|| charW
== VK_ESCAPE
)
854 if (SendMessageW(GetParent(hwnd
), CB_GETDROPPEDSTATE
, 0, 0))
855 SendMessageW(GetParent(hwnd
), WM_KEYDOWN
, charW
, 0);
859 result
= EDIT_WM_Char(es
, charW
);
866 if (wParam
== UNICODE_NOCHAR
) return TRUE
;
867 if (wParam
<= 0x000fffff)
869 if(wParam
> 0xffff) /* convert to surrogates */
872 EDIT_WM_Char(es
, (wParam
>> 10) + 0xd800);
873 EDIT_WM_Char(es
, (wParam
& 0x03ff) + 0xdc00);
875 else EDIT_WM_Char(es
, wParam
);
886 EDIT_WM_Command(es
, HIWORD(wParam
), LOWORD(wParam
), (HWND
)lParam
);
890 EDIT_WM_ContextMenu(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
899 result
= EDIT_WM_Create(es
, ((LPCREATESTRUCTW
)lParam
)->lpszName
);
902 LPCSTR nameA
= ((LPCREATESTRUCTA
)lParam
)->lpszName
;
906 INT countW
= MultiByteToWideChar(CP_ACP
, 0, nameA
, -1, NULL
, 0);
907 if((nameW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
))))
908 MultiByteToWideChar(CP_ACP
, 0, nameA
, -1, nameW
, countW
);
910 result
= EDIT_WM_Create(es
, nameW
);
911 HeapFree(GetProcessHeap(), 0, nameW
);
920 es
->bEnableState
= (BOOL
) wParam
;
921 EDIT_UpdateText(es
, NULL
, TRUE
);
925 /* we do the proper erase in EDIT_WM_Paint */
930 result
= (LRESULT
)es
->font
;
934 result
= (LRESULT
)EDIT_WM_GetText(es
, (INT
)wParam
, (LPWSTR
)lParam
, unicode
);
937 case WM_GETTEXTLENGTH
:
938 if (unicode
) result
= get_text_length(es
);
939 else result
= WideCharToMultiByte( CP_ACP
, 0, es
->text
, get_text_length(es
),
940 NULL
, 0, NULL
, NULL
);
944 result
= EDIT_WM_HScroll(es
, LOWORD(wParam
), (short)HIWORD(wParam
));
948 result
= EDIT_WM_KeyDown(es
, (INT
)wParam
);
952 result
= EDIT_WM_KillFocus(es
);
955 case WM_LBUTTONDBLCLK
:
956 result
= EDIT_WM_LButtonDblClk(es
);
960 result
= EDIT_WM_LButtonDown(es
, wParam
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
964 result
= EDIT_WM_LButtonUp(es
);
968 result
= EDIT_WM_MButtonDown(es
);
972 result
= EDIT_WM_MouseMove(es
, (short)LOWORD(lParam
), (short)HIWORD(lParam
));
977 EDIT_WM_Paint(es
, (HDC
)wParam
);
985 EDIT_WM_SetFocus(es
);
989 EDIT_WM_SetFont(es
, (HFONT
)wParam
, LOWORD(lParam
) != 0);
993 /* FIXME: actually set an internal flag and behave accordingly */
997 EDIT_WM_SetText(es
, (LPCWSTR
)lParam
, unicode
);
1002 EDIT_WM_Size(es
, (UINT
)wParam
, LOWORD(lParam
), HIWORD(lParam
));
1005 case WM_STYLECHANGED
:
1006 result
= EDIT_WM_StyleChanged(es
, wParam
, (const STYLESTRUCT
*)lParam
);
1009 case WM_STYLECHANGING
:
1010 result
= 0; /* See EDIT_WM_StyleChanged */
1014 result
= EDIT_WM_SysKeyDown(es
, (INT
)wParam
, (DWORD
)lParam
);
1022 result
= EDIT_WM_VScroll(es
, LOWORD(wParam
), (short)HIWORD(wParam
));
1027 int gcWheelDelta
= 0;
1028 UINT pulScrollLines
= 3;
1029 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
,0, &pulScrollLines
, 0);
1031 if (wParam
& (MK_SHIFT
| MK_CONTROL
)) {
1032 result
= DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
1035 gcWheelDelta
-= GET_WHEEL_DELTA_WPARAM(wParam
);
1036 if (abs(gcWheelDelta
) >= WHEEL_DELTA
&& pulScrollLines
)
1038 int cLineScroll
= (int) min((UINT
) es
->line_count
, pulScrollLines
);
1039 cLineScroll
*= (gcWheelDelta
/ WHEEL_DELTA
);
1040 result
= EDIT_EM_LineScroll(es
, 0, cLineScroll
);
1046 /* IME messages to make the edit control IME aware */
1047 case WM_IME_SETCONTEXT
:
1050 case WM_IME_STARTCOMPOSITION
:
1051 es
->composition_start
= es
->selection_end
;
1052 es
->composition_len
= 0;
1055 case WM_IME_COMPOSITION
:
1056 EDIT_ImeComposition(hwnd
, lParam
, es
);
1059 case WM_IME_ENDCOMPOSITION
:
1060 if (es
->composition_len
> 0)
1062 static const WCHAR empty_stringW
[] = {0};
1063 EDIT_EM_ReplaceSel(es
, TRUE
, empty_stringW
, TRUE
, TRUE
);
1064 es
->selection_end
= es
->selection_start
;
1065 es
->composition_len
= 0;
1069 case WM_IME_COMPOSITIONFULL
:
1075 case WM_IME_CONTROL
:
1079 result
= DefWindowProcT(hwnd
, msg
, wParam
, lParam
, unicode
);
1083 if (es
) EDIT_UnlockBuffer(es
, FALSE
);
1085 TRACE("hwnd=%p msg=%x (%s) -- 0x%08lx\n", hwnd
, msg
, SPY_GetMsgName(msg
, hwnd
), result
);
1090 /*********************************************************************
1092 * EditWndProcW (USER32.@)
1094 LRESULT WINAPI
EditWndProcW(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1096 return EditWndProc_common(hWnd
, uMsg
, wParam
, lParam
, TRUE
);
1099 /*********************************************************************
1101 * EditWndProc (USER32.@)
1103 LRESULT WINAPI
EditWndProcA(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1105 return EditWndProc_common(hWnd
, uMsg
, wParam
, lParam
, FALSE
);
1108 /*********************************************************************
1110 * EDIT_BuildLineDefs_ML
1112 * Build linked list of text lines.
1113 * Lines can end with '\0' (last line), a character (if it is wrapped),
1114 * a soft return '\r\r\n' or a hard return '\r\n'
1117 static void EDIT_BuildLineDefs_ML(EDITSTATE
*es
, INT istart
, INT iend
, INT delta
, HRGN hrgn
)
1121 LPWSTR current_position
, cp
;
1123 LINEDEF
*current_line
;
1124 LINEDEF
*previous_line
;
1125 LINEDEF
*start_line
;
1126 INT line_index
= 0, nstart_line
= 0, nstart_index
= 0;
1127 INT line_count
= es
->line_count
;
1128 INT orig_net_length
;
1131 if (istart
== iend
&& delta
== 0)
1134 dc
= GetDC(es
->hwndSelf
);
1136 old_font
= SelectObject(dc
, es
->font
);
1138 previous_line
= NULL
;
1139 current_line
= es
->first_line_def
;
1141 /* Find starting line. istart must lie inside an existing line or
1142 * at the end of buffer */
1144 if (istart
< current_line
->index
+ current_line
->length
||
1145 current_line
->ending
== END_0
)
1148 previous_line
= current_line
;
1149 current_line
= current_line
->next
;
1151 } while (current_line
);
1153 if (!current_line
) /* Error occurred start is not inside previous buffer */
1155 FIXME(" modification occurred outside buffer\n");
1156 ReleaseDC(es
->hwndSelf
, dc
);
1160 /* Remember start of modifications in order to calculate update region */
1161 nstart_line
= line_index
;
1162 nstart_index
= current_line
->index
;
1164 /* We must start to reformat from the previous line since the modifications
1165 * may have caused the line to wrap upwards. */
1166 if (!(es
->style
& ES_AUTOHSCROLL
) && line_index
> 0)
1169 current_line
= previous_line
;
1171 start_line
= current_line
;
1173 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
1174 current_position
= es
->text
+ current_line
->index
;
1176 if (current_line
!= start_line
)
1178 if (!current_line
|| current_line
->index
+ delta
> current_position
- es
->text
)
1180 /* The buffer has been expanded, create a new line and
1181 insert it into the link list */
1182 LINEDEF
*new_line
= HeapAlloc(GetProcessHeap(), 0, sizeof(LINEDEF
));
1183 new_line
->next
= previous_line
->next
;
1184 previous_line
->next
= new_line
;
1185 current_line
= new_line
;
1188 else if (current_line
->index
+ delta
< current_position
- es
->text
)
1190 /* The previous line merged with this line so we delete this extra entry */
1191 previous_line
->next
= current_line
->next
;
1192 HeapFree(GetProcessHeap(), 0, current_line
);
1193 current_line
= previous_line
->next
;
1197 else /* current_line->index + delta == current_position */
1199 if (current_position
- es
->text
> iend
)
1200 break; /* We reached end of line modifications */
1201 /* else recalculate this line */
1205 current_line
->index
= current_position
- es
->text
;
1206 orig_net_length
= current_line
->net_length
;
1208 /* Find end of line */
1209 cp
= current_position
;
1211 if (*cp
== '\n') break;
1212 if ((*cp
== '\r') && (*(cp
+ 1) == '\n'))
1217 /* Mark type of line termination */
1219 current_line
->ending
= END_0
;
1220 current_line
->net_length
= strlenW(current_position
);
1221 } else if ((cp
> current_position
) && (*(cp
- 1) == '\r')) {
1222 current_line
->ending
= END_SOFT
;
1223 current_line
->net_length
= cp
- current_position
- 1;
1224 } else if (*cp
== '\n') {
1225 current_line
->ending
= END_RICH
;
1226 current_line
->net_length
= cp
- current_position
;
1228 current_line
->ending
= END_HARD
;
1229 current_line
->net_length
= cp
- current_position
;
1232 /* Calculate line width */
1233 current_line
->width
= (INT
)LOWORD(GetTabbedTextExtentW(dc
,
1234 current_position
, current_line
->net_length
,
1235 es
->tabs_count
, es
->tabs
));
1237 /* FIXME: check here for lines that are too wide even in AUTOHSCROLL (> 32767 ???) */
1238 if (!(es
->style
& ES_AUTOHSCROLL
)) {
1239 if (current_line
->width
> fw
) {
1244 next
= EDIT_CallWordBreakProc(es
, current_position
- es
->text
,
1245 prev
+ 1, current_line
->net_length
, WB_RIGHT
);
1246 current_line
->width
= (INT
)LOWORD(GetTabbedTextExtentW(dc
,
1247 current_position
, next
, es
->tabs_count
, es
->tabs
));
1248 } while (current_line
->width
<= fw
);
1249 if (!prev
) { /* Didn't find a line break so force a break */
1254 current_line
->width
= (INT
)LOWORD(GetTabbedTextExtentW(dc
,
1255 current_position
, next
, es
->tabs_count
, es
->tabs
));
1256 } while (current_line
->width
<= fw
);
1261 /* If the first line we are calculating, wrapped before istart, we must
1262 * adjust istart in order for this to be reflected in the update region. */
1263 if (current_line
->index
== nstart_index
&& istart
> current_line
->index
+ prev
)
1264 istart
= current_line
->index
+ prev
;
1265 /* else if we are updating the previous line before the first line we
1266 * are re-calculating and it expanded */
1267 else if (current_line
== start_line
&&
1268 current_line
->index
!= nstart_index
&& orig_net_length
< prev
)
1270 /* Line expanded due to an upwards line wrap so we must partially include
1271 * previous line in update region */
1272 nstart_line
= line_index
;
1273 nstart_index
= current_line
->index
;
1274 istart
= current_line
->index
+ orig_net_length
;
1277 current_line
->net_length
= prev
;
1278 current_line
->ending
= END_WRAP
;
1279 current_line
->width
= (INT
)LOWORD(GetTabbedTextExtentW(dc
, current_position
,
1280 current_line
->net_length
, es
->tabs_count
, es
->tabs
));
1282 else if (current_line
== start_line
&&
1283 current_line
->index
!= nstart_index
&&
1284 orig_net_length
< current_line
->net_length
) {
1285 /* The previous line expanded but it's still not as wide as the client rect */
1286 /* The expansion is due to an upwards line wrap so we must partially include
1287 it in the update region */
1288 nstart_line
= line_index
;
1289 nstart_index
= current_line
->index
;
1290 istart
= current_line
->index
+ orig_net_length
;
1295 /* Adjust length to include line termination */
1296 switch (current_line
->ending
) {
1298 current_line
->length
= current_line
->net_length
+ 3;
1301 current_line
->length
= current_line
->net_length
+ 1;
1304 current_line
->length
= current_line
->net_length
+ 2;
1308 current_line
->length
= current_line
->net_length
;
1311 es
->text_width
= max(es
->text_width
, current_line
->width
);
1312 current_position
+= current_line
->length
;
1313 previous_line
= current_line
;
1314 current_line
= current_line
->next
;
1316 } while (previous_line
->ending
!= END_0
);
1318 /* Finish adjusting line indexes by delta or remove hanging lines */
1319 if (previous_line
->ending
== END_0
)
1321 LINEDEF
*pnext
= NULL
;
1323 previous_line
->next
= NULL
;
1324 while (current_line
)
1326 pnext
= current_line
->next
;
1327 HeapFree(GetProcessHeap(), 0, current_line
);
1328 current_line
= pnext
;
1332 else if (delta
!= 0)
1334 while (current_line
)
1336 current_line
->index
+= delta
;
1337 current_line
= current_line
->next
;
1341 /* Calculate rest of modification rectangle */
1346 * We calculate two rectangles. One for the first line which may have
1347 * an indent with respect to the format rect. The other is a format-width
1348 * rectangle that spans the rest of the lines that changed or moved.
1350 rc
.top
= es
->format_rect
.top
+ nstart_line
* es
->line_height
-
1351 (es
->y_offset
* es
->line_height
); /* Adjust for vertical scrollbar */
1352 rc
.bottom
= rc
.top
+ es
->line_height
;
1353 if ((es
->style
& ES_CENTER
) || (es
->style
& ES_RIGHT
))
1354 rc
.left
= es
->format_rect
.left
;
1356 rc
.left
= es
->format_rect
.left
+ (INT
)LOWORD(GetTabbedTextExtentW(dc
,
1357 es
->text
+ nstart_index
, istart
- nstart_index
,
1358 es
->tabs_count
, es
->tabs
)) - es
->x_offset
; /* Adjust for horz scroll */
1359 rc
.right
= es
->format_rect
.right
;
1360 SetRectRgn(hrgn
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
1363 rc
.left
= es
->format_rect
.left
;
1364 rc
.right
= es
->format_rect
.right
;
1366 * If lines were added or removed we must re-paint the remainder of the
1367 * lines since the remaining lines were either shifted up or down.
1369 if (line_count
< es
->line_count
) /* We added lines */
1370 rc
.bottom
= es
->line_count
* es
->line_height
;
1371 else if (line_count
> es
->line_count
) /* We removed lines */
1372 rc
.bottom
= line_count
* es
->line_height
;
1374 rc
.bottom
= line_index
* es
->line_height
;
1375 rc
.bottom
+= es
->format_rect
.top
;
1376 rc
.bottom
-= (es
->y_offset
* es
->line_height
); /* Adjust for vertical scrollbar */
1377 tmphrgn
= CreateRectRgn(rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
1378 CombineRgn(hrgn
, hrgn
, tmphrgn
, RGN_OR
);
1379 DeleteObject(tmphrgn
);
1383 SelectObject(dc
, old_font
);
1385 ReleaseDC(es
->hwndSelf
, dc
);
1388 /*********************************************************************
1390 * EDIT_CalcLineWidth_SL
1393 static void EDIT_CalcLineWidth_SL(EDITSTATE
*es
)
1400 text
= EDIT_GetPasswordPointer_SL(es
);
1402 dc
= GetDC(es
->hwndSelf
);
1404 old_font
= SelectObject(dc
, es
->font
);
1406 GetTextExtentPoint32W(dc
, text
, strlenW(text
), &size
);
1409 SelectObject(dc
, old_font
);
1410 ReleaseDC(es
->hwndSelf
, dc
);
1412 if (es
->style
& ES_PASSWORD
)
1413 HeapFree(GetProcessHeap(), 0, text
);
1415 es
->text_width
= size
.cx
;
1418 /*********************************************************************
1420 * EDIT_CallWordBreakProc
1422 * Call appropriate WordBreakProc (internal or external).
1424 * Note: The "start" argument should always be an index referring
1425 * to es->text. The actual wordbreak proc might be
1426 * 16 bit, so we can't always pass any 32 bit LPSTR.
1427 * Hence we assume that es->text is the buffer that holds
1428 * the string under examination (we can decide this for ourselves).
1431 static INT
EDIT_CallWordBreakProc(EDITSTATE
*es
, INT start
, INT index
, INT count
, INT action
)
1435 if (es
->word_break_proc16
) {
1442 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, NULL
, 0, NULL
, NULL
);
1443 hglob16
= GlobalAlloc16(GMEM_MOVEABLE
| GMEM_ZEROINIT
, countA
);
1444 segptr
= WOWGlobalLock16(hglob16
);
1445 WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, MapSL(segptr
), countA
, NULL
, NULL
);
1446 args
[4] = SELECTOROF(segptr
);
1447 args
[3] = OFFSETOF(segptr
);
1451 WOWCallback16Ex((DWORD
)es
->word_break_proc16
, WCB16_PASCAL
, sizeof(args
), args
, &result
);
1452 ret
= LOWORD(result
);
1453 GlobalUnlock16(hglob16
);
1454 GlobalFree16(hglob16
);
1456 else if (es
->word_break_proc
)
1460 EDITWORDBREAKPROCW wbpW
= (EDITWORDBREAKPROCW
)es
->word_break_proc
;
1462 TRACE_(relay
)("(UNICODE wordbrk=%p,str=%s,idx=%d,cnt=%d,act=%d)\n",
1463 es
->word_break_proc
, debugstr_wn(es
->text
+ start
, count
), index
, count
, action
);
1464 ret
= wbpW(es
->text
+ start
, index
, count
, action
);
1468 EDITWORDBREAKPROCA wbpA
= (EDITWORDBREAKPROCA
)es
->word_break_proc
;
1472 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, NULL
, 0, NULL
, NULL
);
1473 textA
= HeapAlloc(GetProcessHeap(), 0, countA
);
1474 WideCharToMultiByte(CP_ACP
, 0, es
->text
+ start
, count
, textA
, countA
, NULL
, NULL
);
1475 TRACE_(relay
)("(ANSI wordbrk=%p,str=%s,idx=%d,cnt=%d,act=%d)\n",
1476 es
->word_break_proc
, debugstr_an(textA
, countA
), index
, countA
, action
);
1477 ret
= wbpA(textA
, index
, countA
, action
);
1478 HeapFree(GetProcessHeap(), 0, textA
);
1482 ret
= EDIT_WordBreakProc(es
->text
+ start
, index
, count
, action
);
1488 /*********************************************************************
1492 * Beware: This is not the function called on EM_CHARFROMPOS
1493 * The position _can_ be outside the formatting / client
1495 * The return value is only the character index
1498 static INT
EDIT_CharFromPos(EDITSTATE
*es
, INT x
, INT y
, LPBOOL after_wrap
)
1503 INT x_high
= 0, x_low
= 0;
1505 if (es
->style
& ES_MULTILINE
) {
1506 INT line
= (y
- es
->format_rect
.top
) / es
->line_height
+ es
->y_offset
;
1508 LINEDEF
*line_def
= es
->first_line_def
;
1510 while ((line
> 0) && line_def
->next
) {
1511 line_index
+= line_def
->length
;
1512 line_def
= line_def
->next
;
1515 x
+= es
->x_offset
- es
->format_rect
.left
;
1516 if (es
->style
& ES_RIGHT
)
1517 x
-= (es
->format_rect
.right
- es
->format_rect
.left
) - line_def
->width
;
1518 else if (es
->style
& ES_CENTER
)
1519 x
-= ((es
->format_rect
.right
- es
->format_rect
.left
) - line_def
->width
) / 2;
1520 if (x
>= line_def
->width
) {
1522 *after_wrap
= (line_def
->ending
== END_WRAP
);
1523 return line_index
+ line_def
->net_length
;
1527 *after_wrap
= FALSE
;
1530 dc
= GetDC(es
->hwndSelf
);
1532 old_font
= SelectObject(dc
, es
->font
);
1534 high
= line_index
+ line_def
->net_length
+ 1;
1535 while (low
< high
- 1)
1537 INT mid
= (low
+ high
) / 2;
1538 INT x_now
= LOWORD(GetTabbedTextExtentW(dc
, es
->text
+ line_index
, mid
- line_index
, es
->tabs_count
, es
->tabs
));
1547 if (abs(x_high
- x
) + 1 <= abs(x_low
- x
))
1553 *after_wrap
= ((index
== line_index
+ line_def
->net_length
) &&
1554 (line_def
->ending
== END_WRAP
));
1559 *after_wrap
= FALSE
;
1560 x
-= es
->format_rect
.left
;
1562 return es
->x_offset
;
1566 INT indent
= (es
->format_rect
.right
- es
->format_rect
.left
) - es
->text_width
;
1567 if (es
->style
& ES_RIGHT
)
1569 else if (es
->style
& ES_CENTER
)
1573 text
= EDIT_GetPasswordPointer_SL(es
);
1574 dc
= GetDC(es
->hwndSelf
);
1576 old_font
= SelectObject(dc
, es
->font
);
1580 INT high
= es
->x_offset
;
1581 while (low
< high
- 1)
1583 INT mid
= (low
+ high
) / 2;
1584 GetTextExtentPoint32W( dc
, text
+ mid
,
1585 es
->x_offset
- mid
, &size
);
1594 if (abs(x_high
+ x
) <= abs(x_low
+ x
) + 1)
1601 INT low
= es
->x_offset
;
1602 INT high
= get_text_length(es
) + 1;
1603 while (low
< high
- 1)
1605 INT mid
= (low
+ high
) / 2;
1606 GetTextExtentPoint32W( dc
, text
+ es
->x_offset
,
1607 mid
- es
->x_offset
, &size
);
1616 if (abs(x_high
- x
) <= abs(x_low
- x
) + 1)
1621 if (es
->style
& ES_PASSWORD
)
1622 HeapFree(GetProcessHeap(), 0, text
);
1625 SelectObject(dc
, old_font
);
1626 ReleaseDC(es
->hwndSelf
, dc
);
1631 /*********************************************************************
1635 * adjusts the point to be within the formatting rectangle
1636 * (so CharFromPos returns the nearest _visible_ character)
1639 static void EDIT_ConfinePoint(const EDITSTATE
*es
, LPINT x
, LPINT y
)
1641 *x
= min(max(*x
, es
->format_rect
.left
), es
->format_rect
.right
- 1);
1642 *y
= min(max(*y
, es
->format_rect
.top
), es
->format_rect
.bottom
- 1);
1646 /*********************************************************************
1650 * Calculates the bounding rectangle for a line from a starting
1651 * column to an ending column.
1654 static void EDIT_GetLineRect(EDITSTATE
*es
, INT line
, INT scol
, INT ecol
, LPRECT rc
)
1656 INT line_index
= EDIT_EM_LineIndex(es
, line
);
1658 if (es
->style
& ES_MULTILINE
)
1659 rc
->top
= es
->format_rect
.top
+ (line
- es
->y_offset
) * es
->line_height
;
1661 rc
->top
= es
->format_rect
.top
;
1662 rc
->bottom
= rc
->top
+ es
->line_height
;
1663 rc
->left
= (scol
== 0) ? es
->format_rect
.left
: (short)LOWORD(EDIT_EM_PosFromChar(es
, line_index
+ scol
, TRUE
));
1664 rc
->right
= (ecol
== -1) ? es
->format_rect
.right
: (short)LOWORD(EDIT_EM_PosFromChar(es
, line_index
+ ecol
, TRUE
));
1668 /*********************************************************************
1670 * EDIT_GetPasswordPointer_SL
1672 * note: caller should free the (optionally) allocated buffer
1675 static LPWSTR
EDIT_GetPasswordPointer_SL(EDITSTATE
*es
)
1677 if (es
->style
& ES_PASSWORD
) {
1678 INT len
= get_text_length(es
);
1679 LPWSTR text
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
));
1681 while(len
) text
[--len
] = es
->password_char
;
1688 /*********************************************************************
1692 * This acts as a LocalLock16(), but it locks only once. This way
1693 * you can call it whenever you like, without unlocking.
1695 * Initially the edit control allocates a HLOCAL32 buffer
1696 * (32 bit linear memory handler). However, 16 bit application
1697 * might send an EM_GETHANDLE message and expect a HLOCAL16 (16 bit SEG:OFF
1698 * handler). From that moment on we have to keep using this 16 bit memory
1699 * handler, because it is supposed to be valid at all times after EM_GETHANDLE.
1700 * What we do is create a HLOCAL16 buffer, copy the text, and do pointer
1704 static void EDIT_LockBuffer(EDITSTATE
*es
)
1706 STACK16FRAME
* stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
1707 HINSTANCE16 hInstance
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
1712 BOOL _16bit
= FALSE
;
1718 TRACE("Synchronizing with 32-bit ANSI buffer\n");
1719 textA
= LocalLock(es
->hloc32A
);
1720 countA
= strlen(textA
) + 1;
1724 HANDLE16 oldDS
= stack16
->ds
;
1725 TRACE("Synchronizing with 16-bit ANSI buffer\n");
1726 stack16
->ds
= hInstance
;
1727 textA
= MapSL(LocalLock16(es
->hloc16
));
1728 stack16
->ds
= oldDS
;
1729 countA
= strlen(textA
) + 1;
1734 ERR("no buffer ... please report\n");
1741 UINT countW_new
= MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, NULL
, 0);
1742 TRACE("%d bytes translated to %d WCHARs\n", countA
, countW_new
);
1743 if(countW_new
> es
->buffer_size
+ 1)
1745 UINT alloc_size
= ROUND_TO_GROW(countW_new
* sizeof(WCHAR
));
1746 TRACE("Resizing 32-bit UNICODE buffer from %d+1 to %d WCHARs\n", es
->buffer_size
, countW_new
);
1747 hloc32W_new
= LocalReAlloc(es
->hloc32W
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
);
1750 es
->hloc32W
= hloc32W_new
;
1751 es
->buffer_size
= LocalSize(hloc32W_new
)/sizeof(WCHAR
) - 1;
1752 TRACE("Real new size %d+1 WCHARs\n", es
->buffer_size
);
1755 WARN("FAILED! Will synchronize partially\n");
1759 /*TRACE("Locking 32-bit UNICODE buffer\n");*/
1760 es
->text
= LocalLock(es
->hloc32W
);
1764 MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, es
->text
, es
->buffer_size
+ 1);
1767 HANDLE16 oldDS
= stack16
->ds
;
1768 stack16
->ds
= hInstance
;
1769 LocalUnlock16(es
->hloc16
);
1770 stack16
->ds
= oldDS
;
1773 LocalUnlock(es
->hloc32A
);
1776 if(es
->flags
& EF_APP_HAS_HANDLE
) text_buffer_changed(es
);
1781 /*********************************************************************
1783 * EDIT_SL_InvalidateText
1785 * Called from EDIT_InvalidateText().
1786 * Does the job for single-line controls only.
1789 static void EDIT_SL_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1794 EDIT_GetLineRect(es
, 0, start
, end
, &line_rect
);
1795 if (IntersectRect(&rc
, &line_rect
, &es
->format_rect
))
1796 EDIT_UpdateText(es
, &rc
, TRUE
);
1800 /*********************************************************************
1802 * EDIT_ML_InvalidateText
1804 * Called from EDIT_InvalidateText().
1805 * Does the job for multi-line controls only.
1808 static void EDIT_ML_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1810 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
1811 INT sl
= EDIT_EM_LineFromChar(es
, start
);
1812 INT el
= EDIT_EM_LineFromChar(es
, end
);
1821 if ((el
< es
->y_offset
) || (sl
> es
->y_offset
+ vlc
))
1824 sc
= start
- EDIT_EM_LineIndex(es
, sl
);
1825 ec
= end
- EDIT_EM_LineIndex(es
, el
);
1826 if (sl
< es
->y_offset
) {
1830 if (el
> es
->y_offset
+ vlc
) {
1831 el
= es
->y_offset
+ vlc
;
1832 ec
= EDIT_EM_LineLength(es
, EDIT_EM_LineIndex(es
, el
));
1834 GetClientRect(es
->hwndSelf
, &rc1
);
1835 IntersectRect(&rcWnd
, &rc1
, &es
->format_rect
);
1837 EDIT_GetLineRect(es
, sl
, sc
, ec
, &rcLine
);
1838 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1839 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1841 EDIT_GetLineRect(es
, sl
, sc
,
1842 EDIT_EM_LineLength(es
,
1843 EDIT_EM_LineIndex(es
, sl
)),
1845 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1846 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1847 for (l
= sl
+ 1 ; l
< el
; l
++) {
1848 EDIT_GetLineRect(es
, l
, 0,
1849 EDIT_EM_LineLength(es
,
1850 EDIT_EM_LineIndex(es
, l
)),
1852 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1853 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1855 EDIT_GetLineRect(es
, el
, 0, ec
, &rcLine
);
1856 if (IntersectRect(&rcUpdate
, &rcWnd
, &rcLine
))
1857 EDIT_UpdateText(es
, &rcUpdate
, TRUE
);
1862 /*********************************************************************
1864 * EDIT_InvalidateText
1866 * Invalidate the text from offset start up to, but not including,
1867 * offset end. Useful for (re)painting the selection.
1868 * Regions outside the linewidth are not invalidated.
1869 * end == -1 means end == TextLength.
1870 * start and end need not be ordered.
1873 static void EDIT_InvalidateText(EDITSTATE
*es
, INT start
, INT end
)
1879 end
= get_text_length(es
);
1887 if (es
->style
& ES_MULTILINE
)
1888 EDIT_ML_InvalidateText(es
, start
, end
);
1890 EDIT_SL_InvalidateText(es
, start
, end
);
1894 /*********************************************************************
1898 * Try to fit size + 1 characters in the buffer.
1900 static BOOL
EDIT_MakeFit(EDITSTATE
*es
, UINT size
)
1904 if (size
<= es
->buffer_size
)
1907 TRACE("trying to ReAlloc to %d+1 characters\n", size
);
1909 /* Force edit to unlock it's buffer. es->text now NULL */
1910 EDIT_UnlockBuffer(es
, TRUE
);
1913 UINT alloc_size
= ROUND_TO_GROW((size
+ 1) * sizeof(WCHAR
));
1914 if ((hNew32W
= LocalReAlloc(es
->hloc32W
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
))) {
1915 TRACE("Old 32 bit handle %p, new handle %p\n", es
->hloc32W
, hNew32W
);
1916 es
->hloc32W
= hNew32W
;
1917 es
->buffer_size
= LocalSize(hNew32W
)/sizeof(WCHAR
) - 1;
1921 EDIT_LockBuffer(es
);
1923 if (es
->buffer_size
< size
) {
1924 WARN("FAILED ! We now have %d+1\n", es
->buffer_size
);
1925 EDIT_NOTIFY_PARENT(es
, EN_ERRSPACE
);
1928 TRACE("We now have %d+1\n", es
->buffer_size
);
1934 /*********************************************************************
1938 * Try to fit size + 1 bytes in the undo buffer.
1941 static BOOL
EDIT_MakeUndoFit(EDITSTATE
*es
, UINT size
)
1945 if (size
<= es
->undo_buffer_size
)
1948 TRACE("trying to ReAlloc to %d+1\n", size
);
1950 alloc_size
= ROUND_TO_GROW((size
+ 1) * sizeof(WCHAR
));
1951 if ((es
->undo_text
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, es
->undo_text
, alloc_size
))) {
1952 es
->undo_buffer_size
= alloc_size
/sizeof(WCHAR
) - 1;
1957 WARN("FAILED ! We now have %d+1\n", es
->undo_buffer_size
);
1963 /*********************************************************************
1968 static void EDIT_MoveBackward(EDITSTATE
*es
, BOOL extend
)
1970 INT e
= es
->selection_end
;
1974 if ((es
->style
& ES_MULTILINE
) && e
&&
1975 (es
->text
[e
- 1] == '\r') && (es
->text
[e
] == '\n')) {
1977 if (e
&& (es
->text
[e
- 1] == '\r'))
1981 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
1982 EDIT_EM_ScrollCaret(es
);
1986 /*********************************************************************
1990 * Only for multi line controls
1991 * Move the caret one line down, on a column with the nearest
1992 * x coordinate on the screen (might be a different column).
1995 static void EDIT_MoveDown_ML(EDITSTATE
*es
, BOOL extend
)
1997 INT s
= es
->selection_start
;
1998 INT e
= es
->selection_end
;
1999 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2000 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2001 INT x
= (short)LOWORD(pos
);
2002 INT y
= (short)HIWORD(pos
);
2004 e
= EDIT_CharFromPos(es
, x
, y
+ es
->line_height
, &after_wrap
);
2007 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2008 EDIT_EM_ScrollCaret(es
);
2012 /*********************************************************************
2017 static void EDIT_MoveEnd(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
)
2019 BOOL after_wrap
= FALSE
;
2022 /* Pass a high value in x to make sure of receiving the end of the line */
2023 if (!ctrl
&& (es
->style
& ES_MULTILINE
))
2024 e
= EDIT_CharFromPos(es
, 0x3fffffff,
2025 HIWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
)), &after_wrap
);
2027 e
= get_text_length(es
);
2028 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, after_wrap
);
2029 EDIT_EM_ScrollCaret(es
);
2033 /*********************************************************************
2038 static void EDIT_MoveForward(EDITSTATE
*es
, BOOL extend
)
2040 INT e
= es
->selection_end
;
2044 if ((es
->style
& ES_MULTILINE
) && (es
->text
[e
- 1] == '\r')) {
2045 if (es
->text
[e
] == '\n')
2047 else if ((es
->text
[e
] == '\r') && (es
->text
[e
+ 1] == '\n'))
2051 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
2052 EDIT_EM_ScrollCaret(es
);
2056 /*********************************************************************
2060 * Home key: move to beginning of line.
2063 static void EDIT_MoveHome(EDITSTATE
*es
, BOOL extend
, BOOL ctrl
)
2067 /* Pass the x_offset in x to make sure of receiving the first position of the line */
2068 if (!ctrl
&& (es
->style
& ES_MULTILINE
))
2069 e
= EDIT_CharFromPos(es
, -es
->x_offset
,
2070 HIWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
)), NULL
);
2073 EDIT_EM_SetSel(es
, extend
? es
->selection_start
: e
, e
, FALSE
);
2074 EDIT_EM_ScrollCaret(es
);
2078 /*********************************************************************
2080 * EDIT_MovePageDown_ML
2082 * Only for multi line controls
2083 * Move the caret one page down, on a column with the nearest
2084 * x coordinate on the screen (might be a different column).
2087 static void EDIT_MovePageDown_ML(EDITSTATE
*es
, BOOL extend
)
2089 INT s
= es
->selection_start
;
2090 INT e
= es
->selection_end
;
2091 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2092 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2093 INT x
= (short)LOWORD(pos
);
2094 INT y
= (short)HIWORD(pos
);
2096 e
= EDIT_CharFromPos(es
, x
,
2097 y
+ (es
->format_rect
.bottom
- es
->format_rect
.top
),
2101 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2102 EDIT_EM_ScrollCaret(es
);
2106 /*********************************************************************
2108 * EDIT_MovePageUp_ML
2110 * Only for multi line controls
2111 * Move the caret one page up, on a column with the nearest
2112 * x coordinate on the screen (might be a different column).
2115 static void EDIT_MovePageUp_ML(EDITSTATE
*es
, BOOL extend
)
2117 INT s
= es
->selection_start
;
2118 INT e
= es
->selection_end
;
2119 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2120 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2121 INT x
= (short)LOWORD(pos
);
2122 INT y
= (short)HIWORD(pos
);
2124 e
= EDIT_CharFromPos(es
, x
,
2125 y
- (es
->format_rect
.bottom
- es
->format_rect
.top
),
2129 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2130 EDIT_EM_ScrollCaret(es
);
2134 /*********************************************************************
2138 * Only for multi line controls
2139 * Move the caret one line up, on a column with the nearest
2140 * x coordinate on the screen (might be a different column).
2143 static void EDIT_MoveUp_ML(EDITSTATE
*es
, BOOL extend
)
2145 INT s
= es
->selection_start
;
2146 INT e
= es
->selection_end
;
2147 BOOL after_wrap
= (es
->flags
& EF_AFTER_WRAP
);
2148 LRESULT pos
= EDIT_EM_PosFromChar(es
, e
, after_wrap
);
2149 INT x
= (short)LOWORD(pos
);
2150 INT y
= (short)HIWORD(pos
);
2152 e
= EDIT_CharFromPos(es
, x
, y
- es
->line_height
, &after_wrap
);
2155 EDIT_EM_SetSel(es
, s
, e
, after_wrap
);
2156 EDIT_EM_ScrollCaret(es
);
2160 /*********************************************************************
2162 * EDIT_MoveWordBackward
2165 static void EDIT_MoveWordBackward(EDITSTATE
*es
, BOOL extend
)
2167 INT s
= es
->selection_start
;
2168 INT e
= es
->selection_end
;
2173 l
= EDIT_EM_LineFromChar(es
, e
);
2174 ll
= EDIT_EM_LineLength(es
, e
);
2175 li
= EDIT_EM_LineIndex(es
, l
);
2178 li
= EDIT_EM_LineIndex(es
, l
- 1);
2179 e
= li
+ EDIT_EM_LineLength(es
, li
);
2182 e
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_LEFT
);
2186 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
2187 EDIT_EM_ScrollCaret(es
);
2191 /*********************************************************************
2193 * EDIT_MoveWordForward
2196 static void EDIT_MoveWordForward(EDITSTATE
*es
, BOOL extend
)
2198 INT s
= es
->selection_start
;
2199 INT e
= es
->selection_end
;
2204 l
= EDIT_EM_LineFromChar(es
, e
);
2205 ll
= EDIT_EM_LineLength(es
, e
);
2206 li
= EDIT_EM_LineIndex(es
, l
);
2208 if ((es
->style
& ES_MULTILINE
) && (l
!= es
->line_count
- 1))
2209 e
= EDIT_EM_LineIndex(es
, l
+ 1);
2211 e
= li
+ EDIT_CallWordBreakProc(es
,
2212 li
, e
- li
+ 1, ll
, WB_RIGHT
);
2216 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
2217 EDIT_EM_ScrollCaret(es
);
2221 /*********************************************************************
2226 static void EDIT_PaintLine(EDITSTATE
*es
, HDC dc
, INT line
, BOOL rev
)
2228 INT s
= es
->selection_start
;
2229 INT e
= es
->selection_end
;
2236 if (es
->style
& ES_MULTILINE
) {
2237 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
2238 if ((line
< es
->y_offset
) || (line
> es
->y_offset
+ vlc
) || (line
>= es
->line_count
))
2243 TRACE("line=%d\n", line
);
2245 pos
= EDIT_EM_PosFromChar(es
, EDIT_EM_LineIndex(es
, line
), FALSE
);
2246 x
= (short)LOWORD(pos
);
2247 y
= (short)HIWORD(pos
);
2248 li
= EDIT_EM_LineIndex(es
, line
);
2249 ll
= EDIT_EM_LineLength(es
, li
);
2250 s
= min(es
->selection_start
, es
->selection_end
);
2251 e
= max(es
->selection_start
, es
->selection_end
);
2252 s
= min(li
+ ll
, max(li
, s
));
2253 e
= min(li
+ ll
, max(li
, e
));
2254 if (rev
&& (s
!= e
) &&
2255 ((es
->flags
& EF_FOCUSED
) || (es
->style
& ES_NOHIDESEL
))) {
2256 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, 0, s
- li
, FALSE
);
2257 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, s
- li
, e
- s
, TRUE
);
2258 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, e
- li
, li
+ ll
- e
, FALSE
);
2260 x
+= EDIT_PaintText(es
, dc
, x
, y
, line
, 0, ll
, FALSE
);
2264 /*********************************************************************
2269 static INT
EDIT_PaintText(EDITSTATE
*es
, HDC dc
, INT x
, INT y
, INT line
, INT col
, INT count
, BOOL rev
)
2273 LOGFONTW underline_font
;
2274 HFONT hUnderline
= 0;
2283 BkMode
= GetBkMode(dc
);
2284 BkColor
= GetBkColor(dc
);
2285 TextColor
= GetTextColor(dc
);
2287 if (es
->composition_len
== 0)
2289 SetBkColor(dc
, GetSysColor(COLOR_HIGHLIGHT
));
2290 SetTextColor(dc
, GetSysColor(COLOR_HIGHLIGHTTEXT
));
2291 SetBkMode( dc
, OPAQUE
);
2295 HFONT current
= GetCurrentObject(dc
,OBJ_FONT
);
2296 GetObjectW(current
,sizeof(LOGFONTW
),&underline_font
);
2297 underline_font
.lfUnderline
= TRUE
;
2298 hUnderline
= CreateFontIndirectW(&underline_font
);
2299 old_font
= SelectObject(dc
,hUnderline
);
2302 li
= EDIT_EM_LineIndex(es
, line
);
2303 if (es
->style
& ES_MULTILINE
) {
2304 ret
= (INT
)LOWORD(TabbedTextOutW(dc
, x
, y
, es
->text
+ li
+ col
, count
,
2305 es
->tabs_count
, es
->tabs
, es
->format_rect
.left
- es
->x_offset
));
2307 LPWSTR text
= EDIT_GetPasswordPointer_SL(es
);
2308 TextOutW(dc
, x
, y
, text
+ li
+ col
, count
);
2309 GetTextExtentPoint32W(dc
, text
+ li
+ col
, count
, &size
);
2311 if (es
->style
& ES_PASSWORD
)
2312 HeapFree(GetProcessHeap(), 0, text
);
2315 if (es
->composition_len
== 0)
2317 SetBkColor(dc
, BkColor
);
2318 SetTextColor(dc
, TextColor
);
2319 SetBkMode( dc
, BkMode
);
2324 SelectObject(dc
,old_font
);
2326 DeleteObject(hUnderline
);
2333 /*********************************************************************
2338 static void EDIT_SetCaretPos(EDITSTATE
*es
, INT pos
,
2341 LRESULT res
= EDIT_EM_PosFromChar(es
, pos
, after_wrap
);
2342 TRACE("%d - %dx%d\n", pos
, (short)LOWORD(res
), (short)HIWORD(res
));
2343 SetCaretPos((short)LOWORD(res
), (short)HIWORD(res
));
2347 /*********************************************************************
2349 * EDIT_AdjustFormatRect
2351 * Adjusts the format rectangle for the current font and the
2352 * current client rectangle.
2355 static void EDIT_AdjustFormatRect(EDITSTATE
*es
)
2359 es
->format_rect
.right
= max(es
->format_rect
.right
, es
->format_rect
.left
+ es
->char_width
);
2360 if (es
->style
& ES_MULTILINE
)
2362 INT fw
, vlc
, max_x_offset
, max_y_offset
;
2364 vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
2365 es
->format_rect
.bottom
= es
->format_rect
.top
+ max(1, vlc
) * es
->line_height
;
2367 /* correct es->x_offset */
2368 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
2369 max_x_offset
= es
->text_width
- fw
;
2370 if(max_x_offset
< 0) max_x_offset
= 0;
2371 if(es
->x_offset
> max_x_offset
)
2372 es
->x_offset
= max_x_offset
;
2374 /* correct es->y_offset */
2375 max_y_offset
= es
->line_count
- vlc
;
2376 if(max_y_offset
< 0) max_y_offset
= 0;
2377 if(es
->y_offset
> max_y_offset
)
2378 es
->y_offset
= max_y_offset
;
2380 /* force scroll info update */
2381 EDIT_UpdateScrollInfo(es
);
2384 /* Windows doesn't care to fix text placement for SL controls */
2385 es
->format_rect
.bottom
= es
->format_rect
.top
+ es
->line_height
;
2387 /* Always stay within the client area */
2388 GetClientRect(es
->hwndSelf
, &ClientRect
);
2389 es
->format_rect
.bottom
= min(es
->format_rect
.bottom
, ClientRect
.bottom
);
2391 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_AUTOHSCROLL
))
2392 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
2394 EDIT_SetCaretPos(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
);
2398 /*********************************************************************
2402 * note: this is not (exactly) the handler called on EM_SETRECTNP
2403 * it is also used to set the rect of a single line control
2406 static void EDIT_SetRectNP(EDITSTATE
*es
, const RECT
*rc
)
2410 ExStyle
= GetWindowLongPtrW(es
->hwndSelf
, GWL_EXSTYLE
);
2412 CopyRect(&es
->format_rect
, rc
);
2414 if (ExStyle
& WS_EX_CLIENTEDGE
) {
2415 es
->format_rect
.left
++;
2416 es
->format_rect
.right
--;
2418 if (es
->format_rect
.bottom
- es
->format_rect
.top
2419 >= es
->line_height
+ 2)
2421 es
->format_rect
.top
++;
2422 es
->format_rect
.bottom
--;
2425 else if (es
->style
& WS_BORDER
) {
2426 bw
= GetSystemMetrics(SM_CXBORDER
) + 1;
2427 bh
= GetSystemMetrics(SM_CYBORDER
) + 1;
2428 es
->format_rect
.left
+= bw
;
2429 es
->format_rect
.right
-= bw
;
2430 if (es
->format_rect
.bottom
- es
->format_rect
.top
2431 >= es
->line_height
+ 2 * bh
)
2433 es
->format_rect
.top
+= bh
;
2434 es
->format_rect
.bottom
-= bh
;
2438 es
->format_rect
.left
+= es
->left_margin
;
2439 es
->format_rect
.right
-= es
->right_margin
;
2440 EDIT_AdjustFormatRect(es
);
2444 /*********************************************************************
2449 static void EDIT_UnlockBuffer(EDITSTATE
*es
, BOOL force
)
2452 /* Edit window might be already destroyed */
2453 if(!IsWindow(es
->hwndSelf
))
2455 WARN("edit hwnd %p already destroyed\n", es
->hwndSelf
);
2459 if (!es
->lock_count
) {
2460 ERR("lock_count == 0 ... please report\n");
2464 ERR("es->text == 0 ... please report\n");
2468 if (force
|| (es
->lock_count
== 1)) {
2472 UINT countW
= get_text_length(es
) + 1;
2473 STACK16FRAME
* stack16
= NULL
;
2478 UINT countA_new
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, countW
, NULL
, 0, NULL
, NULL
);
2479 TRACE("Synchronizing with 32-bit ANSI buffer\n");
2480 TRACE("%d WCHARs translated to %d bytes\n", countW
, countA_new
);
2481 countA
= LocalSize(es
->hloc32A
);
2482 if(countA_new
> countA
)
2485 UINT alloc_size
= ROUND_TO_GROW(countA_new
);
2486 TRACE("Resizing 32-bit ANSI buffer from %d to %d bytes\n", countA
, alloc_size
);
2487 hloc32A_new
= LocalReAlloc(es
->hloc32A
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
);
2490 es
->hloc32A
= hloc32A_new
;
2491 countA
= LocalSize(hloc32A_new
);
2492 TRACE("Real new size %d bytes\n", countA
);
2495 WARN("FAILED! Will synchronize partially\n");
2497 textA
= LocalLock(es
->hloc32A
);
2501 UINT countA_new
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, countW
, NULL
, 0, NULL
, NULL
);
2503 TRACE("Synchronizing with 16-bit ANSI buffer\n");
2504 TRACE("%d WCHARs translated to %d bytes\n", countW
, countA_new
);
2506 stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
2507 oldDS
= stack16
->ds
;
2508 stack16
->ds
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
2510 countA
= LocalSize16(es
->hloc16
);
2511 if(countA_new
> countA
)
2513 HLOCAL16 hloc16_new
;
2514 UINT alloc_size
= ROUND_TO_GROW(countA_new
);
2515 TRACE("Resizing 16-bit ANSI buffer from %d to %d bytes\n", countA
, alloc_size
);
2516 hloc16_new
= LocalReAlloc16(es
->hloc16
, alloc_size
, LMEM_MOVEABLE
| LMEM_ZEROINIT
);
2519 es
->hloc16
= hloc16_new
;
2520 countA
= LocalSize16(hloc16_new
);
2521 TRACE("Real new size %d bytes\n", countA
);
2524 WARN("FAILED! Will synchronize partially\n");
2526 textA
= MapSL(LocalLock16(es
->hloc16
));
2531 WideCharToMultiByte(CP_ACP
, 0, es
->text
, countW
, textA
, countA
, NULL
, NULL
);
2533 LocalUnlock16(es
->hloc16
);
2535 LocalUnlock(es
->hloc32A
);
2538 if (stack16
) stack16
->ds
= oldDS
;
2539 LocalUnlock(es
->hloc32W
);
2543 ERR("no buffer ... please report\n");
2551 /*********************************************************************
2553 * EDIT_UpdateScrollInfo
2556 static void EDIT_UpdateScrollInfo(EDITSTATE
*es
)
2558 if ((es
->style
& WS_VSCROLL
) && !(es
->flags
& EF_VSCROLL_TRACK
))
2561 si
.cbSize
= sizeof(SCROLLINFO
);
2562 si
.fMask
= SIF_PAGE
| SIF_POS
| SIF_RANGE
| SIF_DISABLENOSCROLL
;
2564 si
.nMax
= es
->line_count
- 1;
2565 si
.nPage
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
2566 si
.nPos
= es
->y_offset
;
2567 TRACE("SB_VERT, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
2568 si
.nMin
, si
.nMax
, si
.nPage
, si
.nPos
);
2569 SetScrollInfo(es
->hwndSelf
, SB_VERT
, &si
, TRUE
);
2572 if ((es
->style
& WS_HSCROLL
) && !(es
->flags
& EF_HSCROLL_TRACK
))
2575 si
.cbSize
= sizeof(SCROLLINFO
);
2576 si
.fMask
= SIF_PAGE
| SIF_POS
| SIF_RANGE
| SIF_DISABLENOSCROLL
;
2578 si
.nMax
= es
->text_width
- 1;
2579 si
.nPage
= es
->format_rect
.right
- es
->format_rect
.left
;
2580 si
.nPos
= es
->x_offset
;
2581 TRACE("SB_HORZ, nMin=%d, nMax=%d, nPage=%d, nPos=%d\n",
2582 si
.nMin
, si
.nMax
, si
.nPage
, si
.nPos
);
2583 SetScrollInfo(es
->hwndSelf
, SB_HORZ
, &si
, TRUE
);
2587 /*********************************************************************
2589 * EDIT_WordBreakProc
2591 * Find the beginning of words.
2592 * Note: unlike the specs for a WordBreakProc, this function only
2593 * allows to be called without linebreaks between s[0] up to
2594 * s[count - 1]. Remember it is only called
2595 * internally, so we can decide this for ourselves.
2598 static INT CALLBACK
EDIT_WordBreakProc(LPWSTR s
, INT index
, INT count
, INT action
)
2602 TRACE("s=%p, index=%d, count=%d, action=%d\n", s
, index
, count
, action
);
2612 if (s
[index
] == ' ') {
2613 while (index
&& (s
[index
] == ' '))
2616 while (index
&& (s
[index
] != ' '))
2618 if (s
[index
] == ' ')
2622 while (index
&& (s
[index
] != ' '))
2624 if (s
[index
] == ' ')
2634 if (s
[index
] == ' ')
2635 while ((index
< count
) && (s
[index
] == ' ')) index
++;
2637 while (s
[index
] && (s
[index
] != ' ') && (index
< count
))
2639 while ((s
[index
] == ' ') && (index
< count
)) index
++;
2643 case WB_ISDELIMITER
:
2644 ret
= (s
[index
] == ' ');
2647 ERR("unknown action code, please report !\n");
2654 /*********************************************************************
2658 * returns line number (not index) in high-order word of result.
2659 * NB : Q137805 is unclear about this. POINT * pointer in lParam apply
2660 * to Richedit, not to the edit control. Original documentation is valid.
2661 * FIXME: do the specs mean to return -1 if outside client area or
2662 * if outside formatting rectangle ???
2665 static LRESULT
EDIT_EM_CharFromPos(EDITSTATE
*es
, INT x
, INT y
)
2673 GetClientRect(es
->hwndSelf
, &rc
);
2674 if (!PtInRect(&rc
, pt
))
2677 index
= EDIT_CharFromPos(es
, x
, y
, NULL
);
2678 return MAKELONG(index
, EDIT_EM_LineFromChar(es
, index
));
2682 /*********************************************************************
2686 * Enable or disable soft breaks.
2688 * This means: insert or remove the soft linebreak character (\r\r\n).
2689 * Take care to check if the text still fits the buffer after insertion.
2690 * If not, notify with EN_ERRSPACE.
2693 static BOOL
EDIT_EM_FmtLines(EDITSTATE
*es
, BOOL add_eol
)
2695 es
->flags
&= ~EF_USE_SOFTBRK
;
2697 es
->flags
|= EF_USE_SOFTBRK
;
2698 FIXME("soft break enabled, not implemented\n");
2704 /*********************************************************************
2708 * Hopefully this won't fire back at us.
2709 * We always start with a fixed buffer in the local heap.
2710 * Despite of the documentation says that the local heap is used
2711 * only if DS_LOCALEDIT flag is set, NT and 2000 always allocate
2712 * buffer on the local heap.
2715 static HLOCAL
EDIT_EM_GetHandle(EDITSTATE
*es
)
2719 if (!(es
->style
& ES_MULTILINE
))
2723 hLocal
= es
->hloc32W
;
2729 UINT countA
, alloc_size
;
2730 TRACE("Allocating 32-bit ANSI alias buffer\n");
2731 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, NULL
, 0, NULL
, NULL
);
2732 alloc_size
= ROUND_TO_GROW(countA
);
2733 if(!(es
->hloc32A
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, alloc_size
)))
2735 ERR("Could not allocate %d bytes for 32-bit ANSI alias buffer\n", alloc_size
);
2738 textA
= LocalLock(es
->hloc32A
);
2739 WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, textA
, countA
, NULL
, NULL
);
2740 LocalUnlock(es
->hloc32A
);
2742 hLocal
= es
->hloc32A
;
2745 es
->flags
|= EF_APP_HAS_HANDLE
;
2746 TRACE("Returning %p, LocalSize() = %ld\n", hLocal
, LocalSize(hLocal
));
2751 /*********************************************************************
2755 * Hopefully this won't fire back at us.
2756 * We always start with a buffer in 32 bit linear memory.
2757 * However, with this message a 16 bit application requests
2758 * a handle of 16 bit local heap memory, where it expects to find
2760 * It's a pitty that from this moment on we have to use this
2761 * local heap, because applications may rely on the handle
2764 * In this function we'll try to switch to local heap.
2766 static HLOCAL16
EDIT_EM_GetHandle16(EDITSTATE
*es
)
2769 UINT countA
, alloc_size
;
2770 STACK16FRAME
* stack16
;
2773 if (!(es
->style
& ES_MULTILINE
))
2779 stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
2780 oldDS
= stack16
->ds
;
2781 stack16
->ds
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
2783 if (!LocalHeapSize16()) {
2785 if (!LocalInit16(stack16
->ds
, 0, GlobalSize16(stack16
->ds
))) {
2786 ERR("could not initialize local heap\n");
2789 TRACE("local heap initialized\n");
2792 countA
= WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, NULL
, 0, NULL
, NULL
);
2793 alloc_size
= ROUND_TO_GROW(countA
);
2795 TRACE("Allocating 16-bit ANSI alias buffer\n");
2796 if (!(es
->hloc16
= LocalAlloc16(LMEM_MOVEABLE
| LMEM_ZEROINIT
, alloc_size
))) {
2797 ERR("could not allocate new 16 bit buffer\n");
2801 if (!(textA
= MapSL(LocalLock16( es
->hloc16
)))) {
2802 ERR("could not lock new 16 bit buffer\n");
2803 LocalFree16(es
->hloc16
);
2808 WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, textA
, countA
, NULL
, NULL
);
2809 LocalUnlock16(es
->hloc16
);
2810 es
->flags
|= EF_APP_HAS_HANDLE
;
2812 TRACE("Returning %04X, LocalSize() = %d\n", es
->hloc16
, LocalSize16(es
->hloc16
));
2815 stack16
->ds
= oldDS
;
2820 /*********************************************************************
2825 static INT
EDIT_EM_GetLine(EDITSTATE
*es
, INT line
, LPWSTR dst
, BOOL unicode
)
2828 INT line_len
, dst_len
;
2831 if (es
->style
& ES_MULTILINE
) {
2832 if (line
>= es
->line_count
)
2836 i
= EDIT_EM_LineIndex(es
, line
);
2838 line_len
= EDIT_EM_LineLength(es
, i
);
2839 dst_len
= *(WORD
*)dst
;
2842 if(dst_len
<= line_len
)
2844 memcpy(dst
, src
, dst_len
* sizeof(WCHAR
));
2847 else /* Append 0 if enough space */
2849 memcpy(dst
, src
, line_len
* sizeof(WCHAR
));
2856 INT ret
= WideCharToMultiByte(CP_ACP
, 0, src
, line_len
, (LPSTR
)dst
, dst_len
, NULL
, NULL
);
2857 if(!ret
&& line_len
) /* Insufficient buffer size */
2859 if(ret
< dst_len
) /* Append 0 if enough space */
2860 ((LPSTR
)dst
)[ret
] = 0;
2866 /*********************************************************************
2871 static LRESULT
EDIT_EM_GetSel(const EDITSTATE
*es
, PUINT start
, PUINT end
)
2873 UINT s
= es
->selection_start
;
2874 UINT e
= es
->selection_end
;
2881 return MAKELONG(s
, e
);
2885 /*********************************************************************
2889 * FIXME: is this right ? (or should it be only VSCROLL)
2890 * (and maybe only for edit controls that really have their
2891 * own scrollbars) (and maybe only for multiline controls ?)
2892 * All in all: very poorly documented
2895 static LRESULT
EDIT_EM_GetThumb(EDITSTATE
*es
)
2897 return MAKELONG(EDIT_WM_VScroll(es
, EM_GETTHUMB16
, 0),
2898 EDIT_WM_HScroll(es
, EM_GETTHUMB16
, 0));
2902 /*********************************************************************
2907 static INT
EDIT_EM_LineFromChar(EDITSTATE
*es
, INT index
)
2912 if (!(es
->style
& ES_MULTILINE
))
2914 if (index
> (INT
)get_text_length(es
))
2915 return es
->line_count
- 1;
2917 index
= min(es
->selection_start
, es
->selection_end
);
2920 line_def
= es
->first_line_def
;
2921 index
-= line_def
->length
;
2922 while ((index
>= 0) && line_def
->next
) {
2924 line_def
= line_def
->next
;
2925 index
-= line_def
->length
;
2931 /*********************************************************************
2936 static INT
EDIT_EM_LineIndex(const EDITSTATE
*es
, INT line
)
2939 const LINEDEF
*line_def
;
2941 if (!(es
->style
& ES_MULTILINE
))
2943 if (line
>= es
->line_count
)
2947 line_def
= es
->first_line_def
;
2949 INT index
= es
->selection_end
- line_def
->length
;
2950 while ((index
>= 0) && line_def
->next
) {
2951 line_index
+= line_def
->length
;
2952 line_def
= line_def
->next
;
2953 index
-= line_def
->length
;
2957 line_index
+= line_def
->length
;
2958 line_def
= line_def
->next
;
2966 /*********************************************************************
2971 static INT
EDIT_EM_LineLength(EDITSTATE
*es
, INT index
)
2975 if (!(es
->style
& ES_MULTILINE
))
2976 return get_text_length(es
);
2979 /* get the number of remaining non-selected chars of selected lines */
2980 INT32 l
; /* line number */
2981 INT32 li
; /* index of first char in line */
2983 l
= EDIT_EM_LineFromChar(es
, es
->selection_start
);
2984 /* # chars before start of selection area */
2985 count
= es
->selection_start
- EDIT_EM_LineIndex(es
, l
);
2986 l
= EDIT_EM_LineFromChar(es
, es
->selection_end
);
2987 /* # chars after end of selection */
2988 li
= EDIT_EM_LineIndex(es
, l
);
2989 count
+= li
+ EDIT_EM_LineLength(es
, li
) - es
->selection_end
;
2992 line_def
= es
->first_line_def
;
2993 index
-= line_def
->length
;
2994 while ((index
>= 0) && line_def
->next
) {
2995 line_def
= line_def
->next
;
2996 index
-= line_def
->length
;
2998 return line_def
->net_length
;
3002 /*********************************************************************
3006 * NOTE: dx is in average character widths, dy - in lines;
3009 static BOOL
EDIT_EM_LineScroll(EDITSTATE
*es
, INT dx
, INT dy
)
3011 if (!(es
->style
& ES_MULTILINE
))
3014 dx
*= es
->char_width
;
3015 return EDIT_EM_LineScroll_internal(es
, dx
, dy
);
3018 /*********************************************************************
3020 * EDIT_EM_LineScroll_internal
3022 * Version of EDIT_EM_LineScroll for internal use.
3023 * It doesn't refuse if ES_MULTILINE is set and assumes that
3024 * dx is in pixels, dy - in lines.
3027 static BOOL
EDIT_EM_LineScroll_internal(EDITSTATE
*es
, INT dx
, INT dy
)
3030 INT x_offset_in_pixels
;
3031 INT lines_per_page
= (es
->format_rect
.bottom
- es
->format_rect
.top
) /
3034 if (es
->style
& ES_MULTILINE
)
3036 x_offset_in_pixels
= es
->x_offset
;
3041 x_offset_in_pixels
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->x_offset
, FALSE
));
3044 if (-dx
> x_offset_in_pixels
)
3045 dx
= -x_offset_in_pixels
;
3046 if (dx
> es
->text_width
- x_offset_in_pixels
)
3047 dx
= es
->text_width
- x_offset_in_pixels
;
3048 nyoff
= max(0, es
->y_offset
+ dy
);
3049 if (nyoff
>= es
->line_count
- lines_per_page
)
3050 nyoff
= max(0, es
->line_count
- lines_per_page
);
3051 dy
= (es
->y_offset
- nyoff
) * es
->line_height
;
3056 es
->y_offset
= nyoff
;
3057 if(es
->style
& ES_MULTILINE
)
3060 es
->x_offset
+= dx
/ es
->char_width
;
3062 GetClientRect(es
->hwndSelf
, &rc1
);
3063 IntersectRect(&rc
, &rc1
, &es
->format_rect
);
3064 ScrollWindowEx(es
->hwndSelf
, -dx
, dy
,
3065 NULL
, &rc
, NULL
, NULL
, SW_INVALIDATE
);
3066 /* force scroll info update */
3067 EDIT_UpdateScrollInfo(es
);
3069 if (dx
&& !(es
->flags
& EF_HSCROLL_TRACK
))
3070 EDIT_NOTIFY_PARENT(es
, EN_HSCROLL
);
3071 if (dy
&& !(es
->flags
& EF_VSCROLL_TRACK
))
3072 EDIT_NOTIFY_PARENT(es
, EN_VSCROLL
);
3077 /*********************************************************************
3082 static LRESULT
EDIT_EM_PosFromChar(EDITSTATE
*es
, INT index
, BOOL after_wrap
)
3084 INT len
= get_text_length(es
);
3097 index
= min(index
, len
);
3098 dc
= GetDC(es
->hwndSelf
);
3100 old_font
= SelectObject(dc
, es
->font
);
3101 if (es
->style
& ES_MULTILINE
) {
3102 l
= EDIT_EM_LineFromChar(es
, index
);
3103 y
= (l
- es
->y_offset
) * es
->line_height
;
3104 li
= EDIT_EM_LineIndex(es
, l
);
3105 if (after_wrap
&& (li
== index
) && l
) {
3107 line_def
= es
->first_line_def
;
3109 line_def
= line_def
->next
;
3112 if (line_def
->ending
== END_WRAP
) {
3114 y
-= es
->line_height
;
3115 li
= EDIT_EM_LineIndex(es
, l
);
3119 line_def
= es
->first_line_def
;
3120 while (line_def
->index
!= li
)
3121 line_def
= line_def
->next
;
3123 ll
= line_def
->net_length
;
3124 lw
= line_def
->width
;
3126 w
= es
->format_rect
.right
- es
->format_rect
.left
;
3127 if (es
->style
& ES_RIGHT
)
3129 x
= LOWORD(GetTabbedTextExtentW(dc
, es
->text
+ li
+ (index
- li
), ll
- (index
- li
),
3130 es
->tabs_count
, es
->tabs
)) - es
->x_offset
;
3133 else if (es
->style
& ES_CENTER
)
3135 x
= LOWORD(GetTabbedTextExtentW(dc
, es
->text
+ li
, index
- li
,
3136 es
->tabs_count
, es
->tabs
)) - es
->x_offset
;
3141 x
= LOWORD(GetTabbedTextExtentW(dc
, es
->text
+ li
, index
- li
,
3142 es
->tabs_count
, es
->tabs
)) - es
->x_offset
;
3145 LPWSTR text
= EDIT_GetPasswordPointer_SL(es
);
3146 if (index
< es
->x_offset
) {
3147 GetTextExtentPoint32W(dc
, text
+ index
,
3148 es
->x_offset
- index
, &size
);
3151 GetTextExtentPoint32W(dc
, text
+ es
->x_offset
,
3152 index
- es
->x_offset
, &size
);
3155 if (!es
->x_offset
&& (es
->style
& (ES_RIGHT
| ES_CENTER
)))
3157 w
= es
->format_rect
.right
- es
->format_rect
.left
;
3158 if (w
> es
->text_width
)
3160 if (es
->style
& ES_RIGHT
)
3161 x
+= w
- es
->text_width
;
3162 else if (es
->style
& ES_CENTER
)
3163 x
+= (w
- es
->text_width
) / 2;
3168 if (es
->style
& ES_PASSWORD
)
3169 HeapFree(GetProcessHeap(), 0, text
);
3171 x
+= es
->format_rect
.left
;
3172 y
+= es
->format_rect
.top
;
3174 SelectObject(dc
, old_font
);
3175 ReleaseDC(es
->hwndSelf
, dc
);
3176 return MAKELONG((INT16
)x
, (INT16
)y
);
3180 /*********************************************************************
3184 * FIXME: handle ES_NUMBER and ES_OEMCONVERT here
3187 static void EDIT_EM_ReplaceSel(EDITSTATE
*es
, BOOL can_undo
, LPCWSTR lpsz_replace
, BOOL send_update
, BOOL honor_limit
)
3189 UINT strl
= strlenW(lpsz_replace
);
3190 UINT tl
= get_text_length(es
);
3201 TRACE("%s, can_undo %d, send_update %d\n",
3202 debugstr_w(lpsz_replace
), can_undo
, send_update
);
3204 s
= es
->selection_start
;
3205 e
= es
->selection_end
;
3207 if ((s
== e
) && !strl
)
3212 size
= tl
- (e
- s
) + strl
;
3216 /* Issue the EN_MAXTEXT notification and continue with replacing text
3217 * such that buffer limit is honored. */
3218 if ((honor_limit
) && (size
> es
->buffer_limit
)) {
3219 EDIT_NOTIFY_PARENT(es
, EN_MAXTEXT
);
3220 /* Buffer limit can be smaller than the actual length of text in combobox */
3221 if (es
->buffer_limit
< (tl
- (e
-s
)))
3224 strl
= es
->buffer_limit
- (tl
- (e
-s
));
3227 if (!EDIT_MakeFit(es
, tl
- (e
- s
) + strl
))
3231 /* there is something to be deleted */
3232 TRACE("deleting stuff.\n");
3234 buf
= HeapAlloc(GetProcessHeap(), 0, (bufl
+ 1) * sizeof(WCHAR
));
3236 memcpy(buf
, es
->text
+ s
, bufl
* sizeof(WCHAR
));
3237 buf
[bufl
] = 0; /* ensure 0 termination */
3239 strcpyW(es
->text
+ s
, es
->text
+ e
);
3240 text_buffer_changed(es
);
3243 /* there is an insertion */
3244 tl
= get_text_length(es
);
3245 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
));
3246 for (p
= es
->text
+ tl
; p
>= es
->text
+ s
; p
--)
3248 for (i
= 0 , p
= es
->text
+ s
; i
< strl
; i
++)
3249 p
[i
] = lpsz_replace
[i
];
3250 if(es
->style
& ES_UPPERCASE
)
3251 CharUpperBuffW(p
, strl
);
3252 else if(es
->style
& ES_LOWERCASE
)
3253 CharLowerBuffW(p
, strl
);
3254 text_buffer_changed(es
);
3256 if (es
->style
& ES_MULTILINE
)
3258 INT st
= min(es
->selection_start
, es
->selection_end
);
3259 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
3261 hrgn
= CreateRectRgn(0, 0, 0, 0);
3262 EDIT_BuildLineDefs_ML(es
, st
, st
+ strl
,
3263 strl
- abs(es
->selection_end
- es
->selection_start
), hrgn
);
3264 /* if text is too long undo all changes */
3265 if (honor_limit
&& !(es
->style
& ES_AUTOVSCROLL
) && (es
->line_count
> vlc
)) {
3267 strcpyW(es
->text
+ e
, es
->text
+ e
+ strl
);
3269 for (i
= 0 , p
= es
->text
; i
< e
- s
; i
++)
3271 text_buffer_changed(es
);
3272 EDIT_BuildLineDefs_ML(es
, s
, e
,
3273 abs(es
->selection_end
- es
->selection_start
) - strl
, hrgn
);
3276 hrgn
= CreateRectRgn(0, 0, 0, 0);
3277 EDIT_NOTIFY_PARENT(es
, EN_MAXTEXT
);
3281 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
3282 EDIT_CalcLineWidth_SL(es
);
3283 /* remove chars that don't fit */
3284 if (honor_limit
&& !(es
->style
& ES_AUTOHSCROLL
) && (es
->text_width
> fw
)) {
3285 while ((es
->text_width
> fw
) && s
+ strl
>= s
) {
3286 strcpyW(es
->text
+ s
+ strl
- 1, es
->text
+ s
+ strl
);
3288 EDIT_CalcLineWidth_SL(es
);
3290 text_buffer_changed(es
);
3291 EDIT_NOTIFY_PARENT(es
, EN_MAXTEXT
);
3297 utl
= strlenW(es
->undo_text
);
3298 if (!es
->undo_insert_count
&& (*es
->undo_text
&& (s
== es
->undo_position
))) {
3299 /* undo-buffer is extended to the right */
3300 EDIT_MakeUndoFit(es
, utl
+ e
- s
);
3301 memcpy(es
->undo_text
+ utl
, buf
, (e
- s
)*sizeof(WCHAR
));
3302 (es
->undo_text
+ utl
)[e
- s
] = 0; /* ensure 0 termination */
3303 } else if (!es
->undo_insert_count
&& (*es
->undo_text
&& (e
== es
->undo_position
))) {
3304 /* undo-buffer is extended to the left */
3305 EDIT_MakeUndoFit(es
, utl
+ e
- s
);
3306 for (p
= es
->undo_text
+ utl
; p
>= es
->undo_text
; p
--)
3308 for (i
= 0 , p
= es
->undo_text
; i
< e
- s
; i
++)
3310 es
->undo_position
= s
;
3312 /* new undo-buffer */
3313 EDIT_MakeUndoFit(es
, e
- s
);
3314 memcpy(es
->undo_text
, buf
, (e
- s
)*sizeof(WCHAR
));
3315 es
->undo_text
[e
- s
] = 0; /* ensure 0 termination */
3316 es
->undo_position
= s
;
3318 /* any deletion makes the old insertion-undo invalid */
3319 es
->undo_insert_count
= 0;
3321 EDIT_EM_EmptyUndoBuffer(es
);
3325 if ((s
== es
->undo_position
) ||
3326 ((es
->undo_insert_count
) &&
3327 (s
== es
->undo_position
+ es
->undo_insert_count
)))
3329 * insertion is new and at delete position or
3330 * an extension to either left or right
3332 es
->undo_insert_count
+= strl
;
3334 /* new insertion undo */
3335 es
->undo_position
= s
;
3336 es
->undo_insert_count
= strl
;
3337 /* new insertion makes old delete-buffer invalid */
3338 *es
->undo_text
= '\0';
3341 EDIT_EM_EmptyUndoBuffer(es
);
3345 HeapFree(GetProcessHeap(), 0, buf
);
3349 /* If text has been deleted and we're right or center aligned then scroll rightward */
3350 if (es
->style
& (ES_RIGHT
| ES_CENTER
))
3352 INT delta
= strl
- abs(es
->selection_end
- es
->selection_start
);
3354 if (delta
< 0 && es
->x_offset
)
3356 if (abs(delta
) > es
->x_offset
)
3359 es
->x_offset
+= delta
;
3363 EDIT_EM_SetSel(es
, s
, s
, FALSE
);
3364 es
->flags
|= EF_MODIFIED
;
3365 if (send_update
) es
->flags
|= EF_UPDATE
;
3368 EDIT_UpdateTextRegion(es
, hrgn
, TRUE
);
3372 EDIT_UpdateText(es
, NULL
, TRUE
);
3374 EDIT_EM_ScrollCaret(es
);
3376 /* force scroll info update */
3377 EDIT_UpdateScrollInfo(es
);
3380 if(send_update
|| (es
->flags
& EF_UPDATE
))
3382 es
->flags
&= ~EF_UPDATE
;
3383 EDIT_NOTIFY_PARENT(es
, EN_CHANGE
);
3388 /*********************************************************************
3393 static LRESULT
EDIT_EM_Scroll(EDITSTATE
*es
, INT action
)
3397 if (!(es
->style
& ES_MULTILINE
))
3398 return (LRESULT
)FALSE
;
3408 if (es
->y_offset
< es
->line_count
- 1)
3413 dy
= -(es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
3416 if (es
->y_offset
< es
->line_count
- 1)
3417 dy
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
3420 return (LRESULT
)FALSE
;
3423 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
3424 /* check if we are going to move too far */
3425 if(es
->y_offset
+ dy
> es
->line_count
- vlc
)
3426 dy
= es
->line_count
- vlc
- es
->y_offset
;
3428 /* Notification is done in EDIT_EM_LineScroll */
3430 EDIT_EM_LineScroll(es
, 0, dy
);
3432 return MAKELONG((INT16
)dy
, (BOOL16
)TRUE
);
3436 /*********************************************************************
3441 static void EDIT_EM_ScrollCaret(EDITSTATE
*es
)
3443 if (es
->style
& ES_MULTILINE
) {
3447 INT cw
= es
->char_width
;
3452 l
= EDIT_EM_LineFromChar(es
, es
->selection_end
);
3453 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
));
3454 vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
3455 if (l
>= es
->y_offset
+ vlc
)
3456 dy
= l
- vlc
+ 1 - es
->y_offset
;
3457 if (l
< es
->y_offset
)
3458 dy
= l
- es
->y_offset
;
3459 ww
= es
->format_rect
.right
- es
->format_rect
.left
;
3460 if (x
< es
->format_rect
.left
)
3461 dx
= x
- es
->format_rect
.left
- ww
/ HSCROLL_FRACTION
/ cw
* cw
;
3462 if (x
> es
->format_rect
.right
)
3463 dx
= x
- es
->format_rect
.left
- (HSCROLL_FRACTION
- 1) * ww
/ HSCROLL_FRACTION
/ cw
* cw
;
3464 if (dy
|| dx
|| (es
->y_offset
&& (es
->line_count
- es
->y_offset
< vlc
)))
3466 /* check if we are going to move too far */
3467 if(es
->x_offset
+ dx
+ ww
> es
->text_width
)
3468 dx
= es
->text_width
- ww
- es
->x_offset
;
3469 if(dx
|| dy
|| (es
->y_offset
&& (es
->line_count
- es
->y_offset
< vlc
)))
3470 EDIT_EM_LineScroll_internal(es
, dx
, dy
);
3477 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
3478 format_width
= es
->format_rect
.right
- es
->format_rect
.left
;
3479 if (x
< es
->format_rect
.left
) {
3480 goal
= es
->format_rect
.left
+ format_width
/ HSCROLL_FRACTION
;
3483 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
3484 } while ((x
< goal
) && es
->x_offset
);
3485 /* FIXME: use ScrollWindow() somehow to improve performance */
3486 EDIT_UpdateText(es
, NULL
, TRUE
);
3487 } else if (x
> es
->format_rect
.right
) {
3489 INT len
= get_text_length(es
);
3490 goal
= es
->format_rect
.right
- format_width
/ HSCROLL_FRACTION
;
3493 x
= (short)LOWORD(EDIT_EM_PosFromChar(es
, es
->selection_end
, FALSE
));
3494 x_last
= (short)LOWORD(EDIT_EM_PosFromChar(es
, len
, FALSE
));
3495 } while ((x
> goal
) && (x_last
> es
->format_rect
.right
));
3496 /* FIXME: use ScrollWindow() somehow to improve performance */
3497 EDIT_UpdateText(es
, NULL
, TRUE
);
3501 if(es
->flags
& EF_FOCUSED
)
3502 EDIT_SetCaretPos(es
, es
->selection_end
, es
->flags
& EF_AFTER_WRAP
);
3506 /*********************************************************************
3510 * FIXME: ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
3513 static void EDIT_EM_SetHandle(EDITSTATE
*es
, HLOCAL hloc
)
3515 if (!(es
->style
& ES_MULTILINE
))
3519 WARN("called with NULL handle\n");
3523 EDIT_UnlockBuffer(es
, TRUE
);
3527 STACK16FRAME
* stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
3528 HANDLE16 oldDS
= stack16
->ds
;
3530 stack16
->ds
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
3531 LocalFree16(es
->hloc16
);
3532 stack16
->ds
= oldDS
;
3540 LocalFree(es
->hloc32A
);
3552 countA
= LocalSize(hloc
);
3553 textA
= LocalLock(hloc
);
3554 countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, NULL
, 0);
3555 if(!(hloc32W_new
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, countW
* sizeof(WCHAR
))))
3557 ERR("Could not allocate new unicode buffer\n");
3560 textW
= LocalLock(hloc32W_new
);
3561 MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, textW
, countW
);
3562 LocalUnlock(hloc32W_new
);
3566 LocalFree(es
->hloc32W
);
3568 es
->hloc32W
= hloc32W_new
;
3572 es
->buffer_size
= LocalSize(es
->hloc32W
)/sizeof(WCHAR
) - 1;
3574 es
->flags
|= EF_APP_HAS_HANDLE
;
3575 EDIT_LockBuffer(es
);
3577 es
->x_offset
= es
->y_offset
= 0;
3578 es
->selection_start
= es
->selection_end
= 0;
3579 EDIT_EM_EmptyUndoBuffer(es
);
3580 es
->flags
&= ~EF_MODIFIED
;
3581 es
->flags
&= ~EF_UPDATE
;
3582 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3583 EDIT_UpdateText(es
, NULL
, TRUE
);
3584 EDIT_EM_ScrollCaret(es
);
3585 /* force scroll info update */
3586 EDIT_UpdateScrollInfo(es
);
3590 /*********************************************************************
3594 * FIXME: ES_LOWERCASE, ES_UPPERCASE, ES_OEMCONVERT, ES_NUMBER ???
3597 static void EDIT_EM_SetHandle16(EDITSTATE
*es
, HLOCAL16 hloc
)
3599 STACK16FRAME
* stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
3600 HINSTANCE16 hInstance
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
3601 HANDLE16 oldDS
= stack16
->ds
;
3607 if (!(es
->style
& ES_MULTILINE
))
3611 WARN("called with NULL handle\n");
3615 EDIT_UnlockBuffer(es
, TRUE
);
3619 LocalFree(es
->hloc32A
);
3623 stack16
->ds
= hInstance
;
3624 countA
= LocalSize16(hloc
);
3625 textA
= MapSL(LocalLock16(hloc
));
3626 countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, NULL
, 0);
3627 if(!(hloc32W_new
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, countW
* sizeof(WCHAR
))))
3629 ERR("Could not allocate new unicode buffer\n");
3632 textW
= LocalLock(hloc32W_new
);
3633 MultiByteToWideChar(CP_ACP
, 0, textA
, countA
, textW
, countW
);
3634 LocalUnlock(hloc32W_new
);
3635 LocalUnlock16(hloc
);
3636 stack16
->ds
= oldDS
;
3639 LocalFree(es
->hloc32W
);
3641 es
->hloc32W
= hloc32W_new
;
3644 es
->buffer_size
= LocalSize(es
->hloc32W
)/sizeof(WCHAR
) - 1;
3646 es
->flags
|= EF_APP_HAS_HANDLE
;
3647 EDIT_LockBuffer(es
);
3649 es
->x_offset
= es
->y_offset
= 0;
3650 es
->selection_start
= es
->selection_end
= 0;
3651 EDIT_EM_EmptyUndoBuffer(es
);
3652 es
->flags
&= ~EF_MODIFIED
;
3653 es
->flags
&= ~EF_UPDATE
;
3654 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3655 EDIT_UpdateText(es
, NULL
, TRUE
);
3656 EDIT_EM_ScrollCaret(es
);
3657 /* force scroll info update */
3658 EDIT_UpdateScrollInfo(es
);
3662 /*********************************************************************
3666 * NOTE: this version currently implements WinNT limits
3669 static void EDIT_EM_SetLimitText(EDITSTATE
*es
, UINT limit
)
3671 if (!limit
) limit
= ~0u;
3672 if (!(es
->style
& ES_MULTILINE
)) limit
= min(limit
, 0x7ffffffe);
3673 es
->buffer_limit
= limit
;
3677 /*********************************************************************
3681 * EC_USEFONTINFO is used as a left or right value i.e. lParam and not as an
3682 * action wParam despite what the docs say. EC_USEFONTINFO calculates the
3683 * margin according to the textmetrics of the current font.
3685 * FIXME - With TrueType or vector fonts EC_USEFONTINFO currently sets one third
3686 * of the char's width as the margin, but this is not how Windows handles this.
3687 * For all other fonts Windows sets the margins to zero.
3689 * FIXME - When EC_USEFONTINFO is used the margins only change if the
3690 * edit control is equal to or larger than a certain size.
3691 * Interestingly if one subtracts both the left and right margins from
3692 * this size one always seems to get an even number. The extents of
3693 * the (four character) string "'**'" match this quite closely, so
3694 * we'll use this until we come up with a better idea.
3696 static int calc_min_set_margin_size(HDC dc
, INT left
, INT right
)
3698 WCHAR magic_string
[] = {'\'','*','*','\'', 0};
3701 GetTextExtentPointW(dc
, magic_string
, sizeof(magic_string
)/sizeof(WCHAR
) - 1, &sz
);
3702 return sz
.cx
+ left
+ right
;
3705 static void EDIT_EM_SetMargins(EDITSTATE
*es
, INT action
,
3706 WORD left
, WORD right
, BOOL repaint
)
3709 INT default_left_margin
= 0; /* in pixels */
3710 INT default_right_margin
= 0; /* in pixels */
3712 /* Set the default margins depending on the font */
3713 if (es
->font
&& (left
== EC_USEFONTINFO
|| right
== EC_USEFONTINFO
)) {
3714 HDC dc
= GetDC(es
->hwndSelf
);
3715 HFONT old_font
= SelectObject(dc
, es
->font
);
3716 GetTextMetricsW(dc
, &tm
);
3717 /* The default margins are only non zero for TrueType or Vector fonts */
3718 if (tm
.tmPitchAndFamily
& ( TMPF_VECTOR
| TMPF_TRUETYPE
)) {
3721 /* This must be calculated more exactly! But how? */
3722 default_left_margin
= tm
.tmAveCharWidth
/ 2;
3723 default_right_margin
= tm
.tmAveCharWidth
/ 2;
3724 min_size
= calc_min_set_margin_size(dc
, default_left_margin
, default_right_margin
);
3725 GetClientRect(es
->hwndSelf
, &rc
);
3726 if(rc
.right
- rc
.left
< min_size
) {
3727 default_left_margin
= es
->left_margin
;
3728 default_right_margin
= es
->right_margin
;
3731 SelectObject(dc
, old_font
);
3732 ReleaseDC(es
->hwndSelf
, dc
);
3735 if (action
& EC_LEFTMARGIN
) {
3736 es
->format_rect
.left
-= es
->left_margin
;
3737 if (left
!= EC_USEFONTINFO
)
3738 es
->left_margin
= left
;
3740 es
->left_margin
= default_left_margin
;
3741 es
->format_rect
.left
+= es
->left_margin
;
3744 if (action
& EC_RIGHTMARGIN
) {
3745 es
->format_rect
.right
+= es
->right_margin
;
3746 if (right
!= EC_USEFONTINFO
)
3747 es
->right_margin
= right
;
3749 es
->right_margin
= default_right_margin
;
3750 es
->format_rect
.right
-= es
->right_margin
;
3753 if (action
& (EC_LEFTMARGIN
| EC_RIGHTMARGIN
)) {
3754 EDIT_AdjustFormatRect(es
);
3755 if (repaint
) EDIT_UpdateText(es
, NULL
, TRUE
);
3758 TRACE("left=%d, right=%d\n", es
->left_margin
, es
->right_margin
);
3762 /*********************************************************************
3764 * EM_SETPASSWORDCHAR
3767 static void EDIT_EM_SetPasswordChar(EDITSTATE
*es
, WCHAR c
)
3771 if (es
->style
& ES_MULTILINE
)
3774 if (es
->password_char
== c
)
3777 style
= GetWindowLongW( es
->hwndSelf
, GWL_STYLE
);
3778 es
->password_char
= c
;
3780 SetWindowLongW( es
->hwndSelf
, GWL_STYLE
, style
| ES_PASSWORD
);
3781 es
->style
|= ES_PASSWORD
;
3783 SetWindowLongW( es
->hwndSelf
, GWL_STYLE
, style
& ~ES_PASSWORD
);
3784 es
->style
&= ~ES_PASSWORD
;
3786 EDIT_UpdateText(es
, NULL
, TRUE
);
3790 /*********************************************************************
3794 * note: unlike the specs say: the order of start and end
3795 * _is_ preserved in Windows. (i.e. start can be > end)
3796 * In other words: this handler is OK
3799 static void EDIT_EM_SetSel(EDITSTATE
*es
, UINT start
, UINT end
, BOOL after_wrap
)
3801 UINT old_start
= es
->selection_start
;
3802 UINT old_end
= es
->selection_end
;
3803 UINT len
= get_text_length(es
);
3805 if (start
== (UINT
)-1) {
3806 start
= es
->selection_end
;
3807 end
= es
->selection_end
;
3809 start
= min(start
, len
);
3810 end
= min(end
, len
);
3812 es
->selection_start
= start
;
3813 es
->selection_end
= end
;
3815 es
->flags
|= EF_AFTER_WRAP
;
3817 es
->flags
&= ~EF_AFTER_WRAP
;
3818 /* Compute the necessary invalidation region. */
3819 /* Note that we don't need to invalidate regions which have
3820 * "never" been selected, or those which are "still" selected.
3821 * In fact, every time we hit a selection boundary, we can
3822 * *toggle* whether we need to invalidate. Thus we can optimize by
3823 * *sorting* the interval endpoints. Let's assume that we sort them
3825 * start <= end <= old_start <= old_end
3826 * Knuth 5.3.1 (p 183) assures us that this can be done optimally
3827 * in 5 comparisons; i.e. it is impossible to do better than the
3829 ORDER_UINT(end
, old_end
);
3830 ORDER_UINT(start
, old_start
);
3831 ORDER_UINT(old_start
, old_end
);
3832 ORDER_UINT(start
, end
);
3833 /* Note that at this point 'end' and 'old_start' are not in order, but
3834 * start is definitely the min. and old_end is definitely the max. */
3835 if (end
!= old_start
)
3839 * ORDER_UINT32(end, old_start);
3840 * EDIT_InvalidateText(es, start, end);
3841 * EDIT_InvalidateText(es, old_start, old_end);
3842 * in place of the following if statement.
3843 * (That would complete the optimal five-comparison four-element sort.)
3845 if (old_start
> end
)
3847 EDIT_InvalidateText(es
, start
, end
);
3848 EDIT_InvalidateText(es
, old_start
, old_end
);
3852 EDIT_InvalidateText(es
, start
, old_start
);
3853 EDIT_InvalidateText(es
, end
, old_end
);
3856 else EDIT_InvalidateText(es
, start
, old_end
);
3860 /*********************************************************************
3865 static BOOL
EDIT_EM_SetTabStops(EDITSTATE
*es
, INT count
, const INT
*tabs
)
3867 if (!(es
->style
& ES_MULTILINE
))
3869 HeapFree(GetProcessHeap(), 0, es
->tabs
);
3870 es
->tabs_count
= count
;
3874 es
->tabs
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(INT
));
3875 memcpy(es
->tabs
, tabs
, count
* sizeof(INT
));
3881 /*********************************************************************
3886 static BOOL
EDIT_EM_SetTabStops16(EDITSTATE
*es
, INT count
, const INT16
*tabs
)
3888 if (!(es
->style
& ES_MULTILINE
))
3890 HeapFree(GetProcessHeap(), 0, es
->tabs
);
3891 es
->tabs_count
= count
;
3896 es
->tabs
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(INT
));
3897 for (i
= 0 ; i
< count
; i
++)
3898 es
->tabs
[i
] = *tabs
++;
3904 /*********************************************************************
3906 * EM_SETWORDBREAKPROC
3909 static void EDIT_EM_SetWordBreakProc(EDITSTATE
*es
, void *wbp
)
3911 if (es
->word_break_proc
== wbp
)
3914 es
->word_break_proc
= wbp
;
3915 es
->word_break_proc16
= NULL
;
3917 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_AUTOHSCROLL
)) {
3918 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3919 EDIT_UpdateText(es
, NULL
, TRUE
);
3924 /*********************************************************************
3926 * EM_SETWORDBREAKPROC16
3929 static void EDIT_EM_SetWordBreakProc16(EDITSTATE
*es
, EDITWORDBREAKPROC16 wbp
)
3931 if (es
->word_break_proc16
== wbp
)
3934 es
->word_break_proc
= NULL
;
3935 es
->word_break_proc16
= wbp
;
3936 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_AUTOHSCROLL
)) {
3937 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
3938 EDIT_UpdateText(es
, NULL
, TRUE
);
3943 /*********************************************************************
3948 static BOOL
EDIT_EM_Undo(EDITSTATE
*es
)
3953 /* As per MSDN spec, for a single-line edit control,
3954 the return value is always TRUE */
3955 if( es
->style
& ES_READONLY
)
3956 return !(es
->style
& ES_MULTILINE
);
3958 ulength
= strlenW(es
->undo_text
);
3960 utext
= HeapAlloc(GetProcessHeap(), 0, (ulength
+ 1) * sizeof(WCHAR
));
3962 strcpyW(utext
, es
->undo_text
);
3964 TRACE("before UNDO:insertion length = %d, deletion buffer = %s\n",
3965 es
->undo_insert_count
, debugstr_w(utext
));
3967 EDIT_EM_SetSel(es
, es
->undo_position
, es
->undo_position
+ es
->undo_insert_count
, FALSE
);
3968 EDIT_EM_EmptyUndoBuffer(es
);
3969 EDIT_EM_ReplaceSel(es
, TRUE
, utext
, TRUE
, TRUE
);
3970 EDIT_EM_SetSel(es
, es
->undo_position
, es
->undo_position
+ es
->undo_insert_count
, FALSE
);
3971 /* send the notification after the selection start and end are set */
3972 EDIT_NOTIFY_PARENT(es
, EN_CHANGE
);
3973 EDIT_EM_ScrollCaret(es
);
3974 HeapFree(GetProcessHeap(), 0, utext
);
3976 TRACE("after UNDO:insertion length = %d, deletion buffer = %s\n",
3977 es
->undo_insert_count
, debugstr_w(es
->undo_text
));
3982 /* Helper function for WM_CHAR
3984 * According to an MSDN blog article titled "Just because you're a control
3985 * doesn't mean that you're necessarily inside a dialog box," multiline edit
3986 * controls without ES_WANTRETURN would attempt to detect whether it is inside
3987 * a dialog box or not.
3989 static BOOL
EDIT_IsInsideDialog(EDITSTATE
*es
)
3996 pParent
= WIN_GetPtr(es
->hwndParent
);
3997 if (pParent
&& pParent
!= WND_OTHER_PROCESS
&& pParent
!= WND_DESKTOP
)
3999 if (pParent
->flags
& WIN_ISDIALOG
)
4001 WIN_ReleasePtr(pParent
);
4008 /*********************************************************************
4013 static LRESULT
EDIT_WM_Char(EDITSTATE
*es
, WCHAR c
)
4017 control
= GetKeyState(VK_CONTROL
) & 0x8000;
4021 /* If it's not a multiline edit box, it would be ignored below.
4022 * For multiline edit without ES_WANTRETURN, we have to make a
4025 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_WANTRETURN
))
4026 if (EDIT_IsInsideDialog(es
))
4029 if (es
->style
& ES_MULTILINE
) {
4030 if (es
->style
& ES_READONLY
) {
4031 EDIT_MoveHome(es
, FALSE
, FALSE
);
4032 EDIT_MoveDown_ML(es
, FALSE
);
4034 static const WCHAR cr_lfW
[] = {'\r','\n',0};
4035 EDIT_EM_ReplaceSel(es
, TRUE
, cr_lfW
, TRUE
, TRUE
);
4040 if ((es
->style
& ES_MULTILINE
) && !(es
->style
& ES_READONLY
))
4042 static const WCHAR tabW
[] = {'\t',0};
4043 if (EDIT_IsInsideDialog(es
))
4045 EDIT_EM_ReplaceSel(es
, TRUE
, tabW
, TRUE
, TRUE
);
4049 if (!(es
->style
& ES_READONLY
) && !control
) {
4050 if (es
->selection_start
!= es
->selection_end
)
4053 /* delete character left of caret */
4054 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
4055 EDIT_MoveBackward(es
, TRUE
);
4061 if (!(es
->style
& ES_PASSWORD
))
4062 SendMessageW(es
->hwndSelf
, WM_COPY
, 0, 0);
4065 if (!(es
->style
& ES_READONLY
))
4066 SendMessageW(es
->hwndSelf
, WM_PASTE
, 0, 0);
4069 if (!((es
->style
& ES_READONLY
) || (es
->style
& ES_PASSWORD
)))
4070 SendMessageW(es
->hwndSelf
, WM_CUT
, 0, 0);
4073 if (!(es
->style
& ES_READONLY
))
4074 SendMessageW(es
->hwndSelf
, WM_UNDO
, 0, 0);
4078 /*If Edit control style is ES_NUMBER allow users to key in only numeric values*/
4079 if( (es
->style
& ES_NUMBER
) && !( c
>= '0' && c
<= '9') )
4082 if (!(es
->style
& ES_READONLY
) && (c
>= ' ') && (c
!= 127)) {
4086 EDIT_EM_ReplaceSel(es
, TRUE
, str
, TRUE
, TRUE
);
4094 /*********************************************************************
4099 static void EDIT_WM_Command(EDITSTATE
*es
, INT code
, INT id
, HWND control
)
4101 if (code
|| control
)
4121 EDIT_EM_SetSel(es
, 0, (UINT
)-1, FALSE
);
4122 EDIT_EM_ScrollCaret(es
);
4125 ERR("unknown menu item, please report\n");
4131 /*********************************************************************
4135 * Note: the resource files resource/sysres_??.rc cannot define a
4136 * single popup menu. Hence we use a (dummy) menubar
4137 * containing the single popup menu as its first item.
4139 * FIXME: the message identifiers have been chosen arbitrarily,
4140 * hence we use MF_BYPOSITION.
4141 * We might as well use the "real" values (anybody knows ?)
4142 * The menu definition is in resources/sysres_??.rc.
4143 * Once these are OK, we better use MF_BYCOMMAND here
4144 * (as we do in EDIT_WM_Command()).
4147 static void EDIT_WM_ContextMenu(EDITSTATE
*es
, INT x
, INT y
)
4149 HMENU menu
= LoadMenuA(user32_module
, "EDITMENU");
4150 HMENU popup
= GetSubMenu(menu
, 0);
4151 UINT start
= es
->selection_start
;
4152 UINT end
= es
->selection_end
;
4154 ORDER_UINT(start
, end
);
4157 EnableMenuItem(popup
, 0, MF_BYPOSITION
| (EDIT_EM_CanUndo(es
) && !(es
->style
& ES_READONLY
) ? MF_ENABLED
: MF_GRAYED
));
4159 EnableMenuItem(popup
, 2, MF_BYPOSITION
| ((end
- start
) && !(es
->style
& ES_PASSWORD
) && !(es
->style
& ES_READONLY
) ? MF_ENABLED
: MF_GRAYED
));
4161 EnableMenuItem(popup
, 3, MF_BYPOSITION
| ((end
- start
) && !(es
->style
& ES_PASSWORD
) ? MF_ENABLED
: MF_GRAYED
));
4163 EnableMenuItem(popup
, 4, MF_BYPOSITION
| (IsClipboardFormatAvailable(CF_UNICODETEXT
) && !(es
->style
& ES_READONLY
) ? MF_ENABLED
: MF_GRAYED
));
4165 EnableMenuItem(popup
, 5, MF_BYPOSITION
| ((end
- start
) && !(es
->style
& ES_READONLY
) ? MF_ENABLED
: MF_GRAYED
));
4167 EnableMenuItem(popup
, 7, MF_BYPOSITION
| (start
|| (end
!= get_text_length(es
)) ? MF_ENABLED
: MF_GRAYED
));
4169 if (x
== -1 && y
== -1) /* passed via VK_APPS press/release */
4172 /* Windows places the menu at the edit's center in this case */
4173 GetClientRect(es
->hwndSelf
, &rc
);
4174 MapWindowPoints(es
->hwndSelf
, 0, (POINT
*)&rc
, 2);
4175 x
= rc
.left
+ (rc
.right
- rc
.left
) / 2;
4176 y
= rc
.top
+ (rc
.bottom
- rc
.top
) / 2;
4179 TrackPopupMenu(popup
, TPM_LEFTALIGN
| TPM_RIGHTBUTTON
, x
, y
, 0, es
->hwndSelf
, NULL
);
4184 /*********************************************************************
4189 static void EDIT_WM_Copy(EDITSTATE
*es
)
4191 INT s
= min(es
->selection_start
, es
->selection_end
);
4192 INT e
= max(es
->selection_start
, es
->selection_end
);
4200 hdst
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_DDESHARE
, (len
+ 1) * sizeof(WCHAR
));
4201 dst
= GlobalLock(hdst
);
4202 memcpy(dst
, es
->text
+ s
, len
* sizeof(WCHAR
));
4203 dst
[len
] = 0; /* ensure 0 termination */
4204 TRACE("%s\n", debugstr_w(dst
));
4206 OpenClipboard(es
->hwndSelf
);
4208 SetClipboardData(CF_UNICODETEXT
, hdst
);
4213 /*********************************************************************
4218 static LRESULT
EDIT_WM_Create(EDITSTATE
*es
, LPCWSTR name
)
4222 TRACE("%s\n", debugstr_w(name
));
4224 * To initialize some final structure members, we call some helper
4225 * functions. However, since the EDITSTATE is not consistent (i.e.
4226 * not fully initialized), we should be very careful which
4227 * functions can be called, and in what order.
4229 EDIT_WM_SetFont(es
, 0, FALSE
);
4230 EDIT_EM_EmptyUndoBuffer(es
);
4232 /* We need to calculate the format rect
4233 (applications may send EM_SETMARGINS before the control gets visible) */
4234 GetClientRect(es
->hwndSelf
, &clientRect
);
4235 EDIT_SetRectNP(es
, &clientRect
);
4237 if (name
&& *name
) {
4238 EDIT_EM_ReplaceSel(es
, FALSE
, name
, FALSE
, FALSE
);
4239 /* if we insert text to the editline, the text scrolls out
4240 * of the window, as the caret is placed after the insert
4241 * pos normally; thus we reset es->selection... to 0 and
4244 es
->selection_start
= es
->selection_end
= 0;
4245 /* Adobe Photoshop does NOT like this. and MSDN says that EN_CHANGE
4246 * Messages are only to be sent when the USER does something to
4247 * change the contents. So I am removing this EN_CHANGE
4249 * EDIT_NOTIFY_PARENT(es, EN_CHANGE);
4251 EDIT_EM_ScrollCaret(es
);
4253 /* force scroll info update */
4254 EDIT_UpdateScrollInfo(es
);
4255 /* The rule seems to return 1 here for success */
4256 /* Power Builder masked edit controls will crash */
4258 /* FIXME: is that in all cases so ? */
4263 /*********************************************************************
4268 static LRESULT
EDIT_WM_Destroy(EDITSTATE
*es
)
4273 LocalFree(es
->hloc32W
);
4276 LocalFree(es
->hloc32A
);
4279 STACK16FRAME
* stack16
= MapSL(PtrToUlong(NtCurrentTeb()->WOW32Reserved
));
4280 HANDLE16 oldDS
= stack16
->ds
;
4282 stack16
->ds
= GetWindowLongPtrW( es
->hwndSelf
, GWLP_HINSTANCE
);
4283 while (LocalUnlock16(es
->hloc16
)) ;
4284 LocalFree16(es
->hloc16
);
4285 stack16
->ds
= oldDS
;
4288 pc
= es
->first_line_def
;
4292 HeapFree(GetProcessHeap(), 0, pc
);
4296 SetWindowLongPtrW( es
->hwndSelf
, 0, 0 );
4297 HeapFree(GetProcessHeap(), 0, es
);
4303 /*********************************************************************
4308 static INT
EDIT_WM_GetText(const EDITSTATE
*es
, INT count
, LPWSTR dst
, BOOL unicode
)
4310 if(!count
) return 0;
4314 lstrcpynW(dst
, es
->text
, count
);
4315 return strlenW(dst
);
4319 LPSTR textA
= (LPSTR
)dst
;
4320 if (!WideCharToMultiByte(CP_ACP
, 0, es
->text
, -1, textA
, count
, NULL
, NULL
))
4321 textA
[count
- 1] = 0; /* ensure 0 termination */
4322 return strlen(textA
);
4326 /*********************************************************************
4331 static LRESULT
EDIT_WM_HScroll(EDITSTATE
*es
, INT action
, INT pos
)
4336 if (!(es
->style
& ES_MULTILINE
))
4339 if (!(es
->style
& ES_AUTOHSCROLL
))
4343 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4346 TRACE("SB_LINELEFT\n");
4348 dx
= -es
->char_width
;
4351 TRACE("SB_LINERIGHT\n");
4352 if (es
->x_offset
< es
->text_width
)
4353 dx
= es
->char_width
;
4356 TRACE("SB_PAGELEFT\n");
4358 dx
= -fw
/ HSCROLL_FRACTION
/ es
->char_width
* es
->char_width
;
4361 TRACE("SB_PAGERIGHT\n");
4362 if (es
->x_offset
< es
->text_width
)
4363 dx
= fw
/ HSCROLL_FRACTION
/ es
->char_width
* es
->char_width
;
4371 TRACE("SB_RIGHT\n");
4372 if (es
->x_offset
< es
->text_width
)
4373 dx
= es
->text_width
- es
->x_offset
;
4376 TRACE("SB_THUMBTRACK %d\n", pos
);
4377 es
->flags
|= EF_HSCROLL_TRACK
;
4378 if(es
->style
& WS_HSCROLL
)
4379 dx
= pos
- es
->x_offset
;
4384 if(pos
< 0 || pos
> 100) return 0;
4385 /* Assume default scroll range 0-100 */
4386 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4387 new_x
= pos
* (es
->text_width
- fw
) / 100;
4388 dx
= es
->text_width
? (new_x
- es
->x_offset
) : 0;
4391 case SB_THUMBPOSITION
:
4392 TRACE("SB_THUMBPOSITION %d\n", pos
);
4393 es
->flags
&= ~EF_HSCROLL_TRACK
;
4394 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_HSCROLL
)
4395 dx
= pos
- es
->x_offset
;
4400 if(pos
< 0 || pos
> 100) return 0;
4401 /* Assume default scroll range 0-100 */
4402 fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4403 new_x
= pos
* (es
->text_width
- fw
) / 100;
4404 dx
= es
->text_width
? (new_x
- es
->x_offset
) : 0;
4407 /* force scroll info update */
4408 EDIT_UpdateScrollInfo(es
);
4409 EDIT_NOTIFY_PARENT(es
, EN_HSCROLL
);
4413 TRACE("SB_ENDSCROLL\n");
4416 * FIXME : the next two are undocumented !
4417 * Are we doing the right thing ?
4418 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
4419 * although it's also a regular control message.
4421 case EM_GETTHUMB
: /* this one is used by NT notepad */
4425 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_HSCROLL
)
4426 ret
= GetScrollPos(es
->hwndSelf
, SB_HORZ
);
4429 /* Assume default scroll range 0-100 */
4430 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4431 ret
= es
->text_width
? es
->x_offset
* 100 / (es
->text_width
- fw
) : 0;
4433 TRACE("EM_GETTHUMB: returning %ld\n", ret
);
4436 case EM_LINESCROLL16
:
4437 TRACE("EM_LINESCROLL16\n");
4442 ERR("undocumented WM_HSCROLL action %d (0x%04x), please report\n",
4448 INT fw
= es
->format_rect
.right
- es
->format_rect
.left
;
4449 /* check if we are going to move too far */
4450 if(es
->x_offset
+ dx
+ fw
> es
->text_width
)
4451 dx
= es
->text_width
- fw
- es
->x_offset
;
4453 EDIT_EM_LineScroll_internal(es
, dx
, 0);
4459 /*********************************************************************
4464 static BOOL
EDIT_CheckCombo(EDITSTATE
*es
, UINT msg
, INT key
)
4466 HWND hLBox
= es
->hwndListBox
;
4474 hCombo
= GetParent(es
->hwndSelf
);
4478 TRACE_(combo
)("[%p]: handling msg %x (%x)\n", es
->hwndSelf
, msg
, key
);
4480 if (key
== VK_UP
|| key
== VK_DOWN
)
4482 if (SendMessageW(hCombo
, CB_GETEXTENDEDUI
, 0, 0))
4485 if (msg
== WM_KEYDOWN
|| nEUI
)
4486 bDropped
= (BOOL
)SendMessageW(hCombo
, CB_GETDROPPEDSTATE
, 0, 0);
4492 if (!bDropped
&& nEUI
&& (key
== VK_UP
|| key
== VK_DOWN
))
4494 /* make sure ComboLBox pops up */
4495 SendMessageW(hCombo
, CB_SETEXTENDEDUI
, FALSE
, 0);
4500 SendMessageW(hLBox
, WM_KEYDOWN
, (WPARAM
)key
, 0);
4503 case WM_SYSKEYDOWN
: /* Handle Alt+up/down arrows */
4505 SendMessageW(hCombo
, CB_SHOWDROPDOWN
, bDropped
? FALSE
: TRUE
, 0);
4507 SendMessageW(hLBox
, WM_KEYDOWN
, (WPARAM
)VK_F4
, 0);
4512 SendMessageW(hCombo
, CB_SETEXTENDEDUI
, TRUE
, 0);
4518 /*********************************************************************
4522 * Handling of special keys that don't produce a WM_CHAR
4523 * (i.e. non-printable keys) & Backspace & Delete
4526 static LRESULT
EDIT_WM_KeyDown(EDITSTATE
*es
, INT key
)
4531 if (GetKeyState(VK_MENU
) & 0x8000)
4534 shift
= GetKeyState(VK_SHIFT
) & 0x8000;
4535 control
= GetKeyState(VK_CONTROL
) & 0x8000;
4540 if (EDIT_CheckCombo(es
, WM_KEYDOWN
, key
) || key
== VK_F4
)
4545 if ((es
->style
& ES_MULTILINE
) && (key
== VK_UP
))
4546 EDIT_MoveUp_ML(es
, shift
);
4549 EDIT_MoveWordBackward(es
, shift
);
4551 EDIT_MoveBackward(es
, shift
);
4554 if (EDIT_CheckCombo(es
, WM_KEYDOWN
, key
))
4558 if ((es
->style
& ES_MULTILINE
) && (key
== VK_DOWN
))
4559 EDIT_MoveDown_ML(es
, shift
);
4561 EDIT_MoveWordForward(es
, shift
);
4563 EDIT_MoveForward(es
, shift
);
4566 EDIT_MoveHome(es
, shift
, control
);
4569 EDIT_MoveEnd(es
, shift
, control
);
4572 if (es
->style
& ES_MULTILINE
)
4573 EDIT_MovePageUp_ML(es
, shift
);
4575 EDIT_CheckCombo(es
, WM_KEYDOWN
, key
);
4578 if (es
->style
& ES_MULTILINE
)
4579 EDIT_MovePageDown_ML(es
, shift
);
4581 EDIT_CheckCombo(es
, WM_KEYDOWN
, key
);
4584 if (!(es
->style
& ES_READONLY
) && !(shift
&& control
)) {
4585 if (es
->selection_start
!= es
->selection_end
) {
4592 /* delete character left of caret */
4593 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
4594 EDIT_MoveBackward(es
, TRUE
);
4596 } else if (control
) {
4597 /* delete to end of line */
4598 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
4599 EDIT_MoveEnd(es
, TRUE
, FALSE
);
4602 /* delete character right of caret */
4603 EDIT_EM_SetSel(es
, (UINT
)-1, 0, FALSE
);
4604 EDIT_MoveForward(es
, TRUE
);
4612 if (!(es
->style
& ES_READONLY
))
4618 /* If the edit doesn't want the return send a message to the default object */
4619 if(!(es
->style
& ES_MULTILINE
) || !(es
->style
& ES_WANTRETURN
))
4624 if (!EDIT_IsInsideDialog(es
)) return 1;
4626 hwndParent
= GetParent(es
->hwndSelf
);
4627 dw
= SendMessageW( hwndParent
, DM_GETDEFID
, 0, 0 );
4628 if (HIWORD(dw
) == DC_HASDEFID
)
4630 SendMessageW( hwndParent
, WM_COMMAND
,
4631 MAKEWPARAM( LOWORD(dw
), BN_CLICKED
),
4632 (LPARAM
)GetDlgItem( hwndParent
, LOWORD(dw
) ) );
4635 SendMessageW( hwndParent
, WM_COMMAND
, IDOK
, (LPARAM
)GetDlgItem( hwndParent
, IDOK
) );
4639 if (!(es
->style
& ES_MULTILINE
))
4640 SendMessageW(GetParent(es
->hwndSelf
), WM_COMMAND
, IDCANCEL
, (LPARAM
)GetDlgItem( GetParent(es
->hwndSelf
), IDCANCEL
) );
4643 SendMessageW(es
->hwndParent
, WM_NEXTDLGCTL
, shift
, 0);
4650 /*********************************************************************
4655 static LRESULT
EDIT_WM_KillFocus(EDITSTATE
*es
)
4657 es
->flags
&= ~EF_FOCUSED
;
4659 if(!(es
->style
& ES_NOHIDESEL
))
4660 EDIT_InvalidateText(es
, es
->selection_start
, es
->selection_end
);
4661 EDIT_NOTIFY_PARENT(es
, EN_KILLFOCUS
);
4666 /*********************************************************************
4670 * The caret position has been set on the WM_LBUTTONDOWN message
4673 static LRESULT
EDIT_WM_LButtonDblClk(EDITSTATE
*es
)
4676 INT e
= es
->selection_end
;
4681 es
->bCaptureState
= TRUE
;
4682 SetCapture(es
->hwndSelf
);
4684 l
= EDIT_EM_LineFromChar(es
, e
);
4685 li
= EDIT_EM_LineIndex(es
, l
);
4686 ll
= EDIT_EM_LineLength(es
, e
);
4687 s
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_LEFT
);
4688 e
= li
+ EDIT_CallWordBreakProc(es
, li
, e
- li
, ll
, WB_RIGHT
);
4689 EDIT_EM_SetSel(es
, s
, e
, FALSE
);
4690 EDIT_EM_ScrollCaret(es
);
4691 es
->region_posx
= es
->region_posy
= 0;
4692 SetTimer(es
->hwndSelf
, 0, 100, NULL
);
4697 /*********************************************************************
4702 static LRESULT
EDIT_WM_LButtonDown(EDITSTATE
*es
, DWORD keys
, INT x
, INT y
)
4707 es
->bCaptureState
= TRUE
;
4708 SetCapture(es
->hwndSelf
);
4709 EDIT_ConfinePoint(es
, &x
, &y
);
4710 e
= EDIT_CharFromPos(es
, x
, y
, &after_wrap
);
4711 EDIT_EM_SetSel(es
, (keys
& MK_SHIFT
) ? es
->selection_start
: e
, e
, after_wrap
);
4712 EDIT_EM_ScrollCaret(es
);
4713 es
->region_posx
= es
->region_posy
= 0;
4714 SetTimer(es
->hwndSelf
, 0, 100, NULL
);
4716 if (!(es
->flags
& EF_FOCUSED
))
4717 SetFocus(es
->hwndSelf
);
4723 /*********************************************************************
4728 static LRESULT
EDIT_WM_LButtonUp(EDITSTATE
*es
)
4730 if (es
->bCaptureState
) {
4731 KillTimer(es
->hwndSelf
, 0);
4732 if (GetCapture() == es
->hwndSelf
) ReleaseCapture();
4734 es
->bCaptureState
= FALSE
;
4739 /*********************************************************************
4744 static LRESULT
EDIT_WM_MButtonDown(EDITSTATE
*es
)
4746 SendMessageW(es
->hwndSelf
, WM_PASTE
, 0, 0);
4751 /*********************************************************************
4756 static LRESULT
EDIT_WM_MouseMove(EDITSTATE
*es
, INT x
, INT y
)
4762 /* If the mouse has been captured by process other than the edit control itself,
4763 * the windows edit controls will not select the strings with mouse move.
4765 if (!es
->bCaptureState
|| GetCapture() != es
->hwndSelf
)
4769 * FIXME: gotta do some scrolling if outside client
4770 * area. Maybe reset the timer ?
4773 EDIT_ConfinePoint(es
, &x
, &y
);
4774 es
->region_posx
= (prex
< x
) ? -1 : ((prex
> x
) ? 1 : 0);
4775 es
->region_posy
= (prey
< y
) ? -1 : ((prey
> y
) ? 1 : 0);
4776 e
= EDIT_CharFromPos(es
, x
, y
, &after_wrap
);
4777 EDIT_EM_SetSel(es
, es
->selection_start
, e
, after_wrap
);
4778 EDIT_SetCaretPos(es
,es
->selection_end
,es
->flags
& EF_AFTER_WRAP
);
4783 /*********************************************************************
4787 * See also EDIT_WM_StyleChanged
4789 static LRESULT
EDIT_WM_NCCreate(HWND hwnd
, LPCREATESTRUCTW lpcs
, BOOL unicode
)
4794 TRACE("Creating %s edit control, style = %08x\n",
4795 unicode
? "Unicode" : "ANSI", lpcs
->style
);
4797 if (!(es
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*es
))))
4799 SetWindowLongPtrW( hwnd
, 0, (LONG_PTR
)es
);
4802 * Note: since the EDITSTATE has not been fully initialized yet,
4803 * we can't use any API calls that may send
4804 * WM_XXX messages before WM_NCCREATE is completed.
4807 es
->is_unicode
= unicode
;
4808 es
->style
= lpcs
->style
;
4810 es
->bEnableState
= !(es
->style
& WS_DISABLED
);
4812 es
->hwndSelf
= hwnd
;
4813 /* Save parent, which will be notified by EN_* messages */
4814 es
->hwndParent
= lpcs
->hwndParent
;
4816 if (es
->style
& ES_COMBO
)
4817 es
->hwndListBox
= GetDlgItem(es
->hwndParent
, ID_CB_LISTBOX
);
4819 /* FIXME: should we handle changes to WS_EX_RIGHT style after creation? */
4820 if (lpcs
->dwExStyle
& WS_EX_RIGHT
) es
->style
|= ES_RIGHT
;
4822 /* Number overrides lowercase overrides uppercase (at least it
4823 * does in Win95). However I'll bet that ES_NUMBER would be
4824 * invalid under Win 3.1.
4826 if (es
->style
& ES_NUMBER
) {
4827 ; /* do not override the ES_NUMBER */
4828 } else if (es
->style
& ES_LOWERCASE
) {
4829 es
->style
&= ~ES_UPPERCASE
;
4831 if (es
->style
& ES_MULTILINE
) {
4832 es
->buffer_limit
= BUFLIMIT_INITIAL
;
4833 if (es
->style
& WS_VSCROLL
)
4834 es
->style
|= ES_AUTOVSCROLL
;
4835 if (es
->style
& WS_HSCROLL
)
4836 es
->style
|= ES_AUTOHSCROLL
;
4837 es
->style
&= ~ES_PASSWORD
;
4838 if ((es
->style
& ES_CENTER
) || (es
->style
& ES_RIGHT
)) {
4839 /* Confirmed - RIGHT overrides CENTER */
4840 if (es
->style
& ES_RIGHT
)
4841 es
->style
&= ~ES_CENTER
;
4842 es
->style
&= ~WS_HSCROLL
;
4843 es
->style
&= ~ES_AUTOHSCROLL
;
4846 es
->buffer_limit
= BUFLIMIT_INITIAL
;
4847 if ((es
->style
& ES_RIGHT
) && (es
->style
& ES_CENTER
))
4848 es
->style
&= ~ES_CENTER
;
4849 es
->style
&= ~WS_HSCROLL
;
4850 es
->style
&= ~WS_VSCROLL
;
4851 if (es
->style
& ES_PASSWORD
)
4852 es
->password_char
= '*';
4855 alloc_size
= ROUND_TO_GROW((es
->buffer_size
+ 1) * sizeof(WCHAR
));
4856 if(!(es
->hloc32W
= LocalAlloc(LMEM_MOVEABLE
| LMEM_ZEROINIT
, alloc_size
)))
4858 es
->buffer_size
= LocalSize(es
->hloc32W
)/sizeof(WCHAR
) - 1;
4860 if (!(es
->undo_text
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (es
->buffer_size
+ 1) * sizeof(WCHAR
))))
4862 es
->undo_buffer_size
= es
->buffer_size
;
4864 if (es
->style
& ES_MULTILINE
)
4865 if (!(es
->first_line_def
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(LINEDEF
))))
4870 * In Win95 look and feel, the WS_BORDER style is replaced by the
4871 * WS_EX_CLIENTEDGE style for the edit control. This gives the edit
4872 * control a nonclient area so we don't need to draw the border.
4873 * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
4874 * a nonclient area and we should handle painting the border ourselves.
4876 * When making modifications please ensure that the code still works
4877 * for edit controls created directly with style 0x50800000, exStyle 0
4878 * (which should have a single pixel border)
4880 if (lpcs
->dwExStyle
& WS_EX_CLIENTEDGE
)
4881 es
->style
&= ~WS_BORDER
;
4882 else if (es
->style
& WS_BORDER
)
4883 SetWindowLongW(hwnd
, GWL_STYLE
, es
->style
& ~WS_BORDER
);
4888 /*********************************************************************
4893 static void EDIT_WM_Paint(EDITSTATE
*es
, HDC hdc
)
4906 BOOL rev
= es
->bEnableState
&&
4907 ((es
->flags
& EF_FOCUSED
) ||
4908 (es
->style
& ES_NOHIDESEL
));
4909 dc
= hdc
? hdc
: BeginPaint(es
->hwndSelf
, &ps
);
4911 GetClientRect(es
->hwndSelf
, &rcClient
);
4913 /* get the background brush */
4914 brush
= EDIT_NotifyCtlColor(es
, dc
);
4916 /* paint the border and the background */
4917 IntersectClipRect(dc
, rcClient
.left
, rcClient
.top
, rcClient
.right
, rcClient
.bottom
);
4919 if(es
->style
& WS_BORDER
) {
4920 bw
= GetSystemMetrics(SM_CXBORDER
);
4921 bh
= GetSystemMetrics(SM_CYBORDER
);
4923 if(es
->style
& ES_MULTILINE
) {
4924 if(es
->style
& WS_HSCROLL
) rc
.bottom
+=bh
;
4925 if(es
->style
& WS_VSCROLL
) rc
.right
+=bw
;
4928 /* Draw the frame. Same code as in nonclient.c */
4929 old_brush
= SelectObject(dc
, GetSysColorBrush(COLOR_WINDOWFRAME
));
4930 PatBlt(dc
, rc
.left
, rc
.top
, rc
.right
- rc
.left
, bh
, PATCOPY
);
4931 PatBlt(dc
, rc
.left
, rc
.top
, bw
, rc
.bottom
- rc
.top
, PATCOPY
);
4932 PatBlt(dc
, rc
.left
, rc
.bottom
- 1, rc
.right
- rc
.left
, -bw
, PATCOPY
);
4933 PatBlt(dc
, rc
.right
- 1, rc
.top
, -bw
, rc
.bottom
- rc
.top
, PATCOPY
);
4934 SelectObject(dc
, old_brush
);
4936 /* Keep the border clean */
4937 IntersectClipRect(dc
, rc
.left
+bw
, rc
.top
+bh
,
4938 max(rc
.right
-bw
, rc
.left
+bw
), max(rc
.bottom
-bh
, rc
.top
+bh
));
4941 GetClipBox(dc
, &rc
);
4942 FillRect(dc
, &rc
, brush
);
4944 IntersectClipRect(dc
, es
->format_rect
.left
,
4945 es
->format_rect
.top
,
4946 es
->format_rect
.right
,
4947 es
->format_rect
.bottom
);
4948 if (es
->style
& ES_MULTILINE
) {
4950 IntersectClipRect(dc
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
4953 old_font
= SelectObject(dc
, es
->font
);
4955 if (!es
->bEnableState
)
4956 SetTextColor(dc
, GetSysColor(COLOR_GRAYTEXT
));
4957 GetClipBox(dc
, &rcRgn
);
4958 if (es
->style
& ES_MULTILINE
) {
4959 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
4960 for (i
= es
->y_offset
; i
<= min(es
->y_offset
+ vlc
, es
->y_offset
+ es
->line_count
- 1) ; i
++) {
4961 EDIT_GetLineRect(es
, i
, 0, -1, &rcLine
);
4962 if (IntersectRect(&rc
, &rcRgn
, &rcLine
))
4963 EDIT_PaintLine(es
, dc
, i
, rev
);
4966 EDIT_GetLineRect(es
, 0, 0, -1, &rcLine
);
4967 if (IntersectRect(&rc
, &rcRgn
, &rcLine
))
4968 EDIT_PaintLine(es
, dc
, 0, rev
);
4971 SelectObject(dc
, old_font
);
4974 EndPaint(es
->hwndSelf
, &ps
);
4978 /*********************************************************************
4983 static void EDIT_WM_Paste(EDITSTATE
*es
)
4988 /* Protect read-only edit control from modification */
4989 if(es
->style
& ES_READONLY
)
4992 OpenClipboard(es
->hwndSelf
);
4993 if ((hsrc
= GetClipboardData(CF_UNICODETEXT
))) {
4994 src
= (LPWSTR
)GlobalLock(hsrc
);
4995 EDIT_EM_ReplaceSel(es
, TRUE
, src
, TRUE
, TRUE
);
4998 else if (es
->style
& ES_PASSWORD
) {
4999 /* clear selected text in password edit box even with empty clipboard */
5000 const WCHAR empty_strW
[] = { 0 };
5001 EDIT_EM_ReplaceSel(es
, TRUE
, empty_strW
, TRUE
, TRUE
);
5007 /*********************************************************************
5012 static void EDIT_WM_SetFocus(EDITSTATE
*es
)
5014 es
->flags
|= EF_FOCUSED
;
5016 if (!(es
->style
& ES_NOHIDESEL
))
5017 EDIT_InvalidateText(es
, es
->selection_start
, es
->selection_end
);
5019 /* single line edit updates itself */
5020 if (!(es
->style
& ES_MULTILINE
))
5022 HDC hdc
= GetDC(es
->hwndSelf
);
5023 EDIT_WM_Paint(es
, hdc
);
5024 ReleaseDC(es
->hwndSelf
, hdc
);
5027 CreateCaret(es
->hwndSelf
, 0, 2, es
->line_height
);
5028 EDIT_SetCaretPos(es
, es
->selection_end
,
5029 es
->flags
& EF_AFTER_WRAP
);
5030 ShowCaret(es
->hwndSelf
);
5031 EDIT_NOTIFY_PARENT(es
, EN_SETFOCUS
);
5035 /*********************************************************************
5039 * With Win95 look the margins are set to default font value unless
5040 * the system font (font == 0) is being set, in which case they are left
5044 static void EDIT_WM_SetFont(EDITSTATE
*es
, HFONT font
, BOOL redraw
)
5052 dc
= GetDC(es
->hwndSelf
);
5054 old_font
= SelectObject(dc
, font
);
5055 GetTextMetricsW(dc
, &tm
);
5056 es
->line_height
= tm
.tmHeight
;
5057 es
->char_width
= tm
.tmAveCharWidth
;
5059 SelectObject(dc
, old_font
);
5060 ReleaseDC(es
->hwndSelf
, dc
);
5062 /* Reset the format rect and the margins */
5063 GetClientRect(es
->hwndSelf
, &clientRect
);
5064 EDIT_SetRectNP(es
, &clientRect
);
5065 EDIT_EM_SetMargins(es
, EC_LEFTMARGIN
| EC_RIGHTMARGIN
,
5066 EC_USEFONTINFO
, EC_USEFONTINFO
, FALSE
);
5068 if (es
->style
& ES_MULTILINE
)
5069 EDIT_BuildLineDefs_ML(es
, 0, get_text_length(es
), 0, NULL
);
5071 EDIT_CalcLineWidth_SL(es
);
5074 EDIT_UpdateText(es
, NULL
, TRUE
);
5075 if (es
->flags
& EF_FOCUSED
) {
5077 CreateCaret(es
->hwndSelf
, 0, 2, es
->line_height
);
5078 EDIT_SetCaretPos(es
, es
->selection_end
,
5079 es
->flags
& EF_AFTER_WRAP
);
5080 ShowCaret(es
->hwndSelf
);
5085 /*********************************************************************
5090 * For multiline controls (ES_MULTILINE), reception of WM_SETTEXT triggers:
5091 * The modified flag is reset. No notifications are sent.
5093 * For single-line controls, reception of WM_SETTEXT triggers:
5094 * The modified flag is reset. EN_UPDATE and EN_CHANGE notifications are sent.
5097 static void EDIT_WM_SetText(EDITSTATE
*es
, LPCWSTR text
, BOOL unicode
)
5099 LPWSTR textW
= NULL
;
5100 if (!unicode
&& text
)
5102 LPCSTR textA
= (LPCSTR
)text
;
5103 INT countW
= MultiByteToWideChar(CP_ACP
, 0, textA
, -1, NULL
, 0);
5104 textW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
));
5106 MultiByteToWideChar(CP_ACP
, 0, textA
, -1, textW
, countW
);
5110 if (es
->flags
& EF_UPDATE
)
5111 /* fixed this bug once; complain if we see it about to happen again. */
5112 ERR("SetSel may generate UPDATE message whose handler may reset "
5115 EDIT_EM_SetSel(es
, 0, (UINT
)-1, FALSE
);
5118 TRACE("%s\n", debugstr_w(text
));
5119 EDIT_EM_ReplaceSel(es
, FALSE
, text
, FALSE
, FALSE
);
5121 HeapFree(GetProcessHeap(), 0, textW
);
5125 static const WCHAR empty_stringW
[] = {0};
5127 EDIT_EM_ReplaceSel(es
, FALSE
, empty_stringW
, FALSE
, FALSE
);
5130 es
->flags
&= ~EF_MODIFIED
;
5131 EDIT_EM_SetSel(es
, 0, 0, FALSE
);
5133 /* Send the notification after the selection start and end have been set
5134 * edit control doesn't send notification on WM_SETTEXT
5135 * if it is multiline, or it is part of combobox
5137 if( !((es
->style
& ES_MULTILINE
) || es
->hwndListBox
))
5139 EDIT_NOTIFY_PARENT(es
, EN_UPDATE
);
5140 EDIT_NOTIFY_PARENT(es
, EN_CHANGE
);
5142 EDIT_EM_ScrollCaret(es
);
5143 EDIT_UpdateScrollInfo(es
);
5147 /*********************************************************************
5152 static void EDIT_WM_Size(EDITSTATE
*es
, UINT action
, INT width
, INT height
)
5154 if ((action
== SIZE_MAXIMIZED
) || (action
== SIZE_RESTORED
)) {
5156 TRACE("width = %d, height = %d\n", width
, height
);
5157 SetRect(&rc
, 0, 0, width
, height
);
5158 EDIT_SetRectNP(es
, &rc
);
5159 EDIT_UpdateText(es
, NULL
, TRUE
);
5164 /*********************************************************************
5168 * This message is sent by SetWindowLong on having changed either the Style
5169 * or the extended style.
5171 * We ensure that the window's version of the styles and the EDITSTATE's agree.
5173 * See also EDIT_WM_NCCreate
5175 * It appears that the Windows version of the edit control allows the style
5176 * (as retrieved by GetWindowLong) to be any value and maintains an internal
5177 * style variable which will generally be different. In this function we
5178 * update the internal style based on what changed in the externally visible
5181 * Much of this content as based upon the MSDN, especially:
5182 * Platform SDK Documentation -> User Interface Services ->
5183 * Windows User Interface -> Edit Controls -> Edit Control Reference ->
5184 * Edit Control Styles
5186 static LRESULT
EDIT_WM_StyleChanged ( EDITSTATE
*es
, WPARAM which
, const STYLESTRUCT
*style
)
5188 if (GWL_STYLE
== which
) {
5189 DWORD style_change_mask
;
5191 /* Only a subset of changes can be applied after the control
5194 style_change_mask
= ES_UPPERCASE
| ES_LOWERCASE
|
5196 if (es
->style
& ES_MULTILINE
)
5197 style_change_mask
|= ES_WANTRETURN
;
5199 new_style
= style
->styleNew
& style_change_mask
;
5201 /* Number overrides lowercase overrides uppercase (at least it
5202 * does in Win95). However I'll bet that ES_NUMBER would be
5203 * invalid under Win 3.1.
5205 if (new_style
& ES_NUMBER
) {
5206 ; /* do not override the ES_NUMBER */
5207 } else if (new_style
& ES_LOWERCASE
) {
5208 new_style
&= ~ES_UPPERCASE
;
5211 es
->style
= (es
->style
& ~style_change_mask
) | new_style
;
5212 } else if (GWL_EXSTYLE
== which
) {
5213 ; /* FIXME - what is needed here */
5215 WARN ("Invalid style change %ld\n",which
);
5221 /*********************************************************************
5226 static LRESULT
EDIT_WM_SysKeyDown(EDITSTATE
*es
, INT key
, DWORD key_data
)
5228 if ((key
== VK_BACK
) && (key_data
& 0x2000)) {
5229 if (EDIT_EM_CanUndo(es
))
5232 } else if (key
== VK_UP
|| key
== VK_DOWN
) {
5233 if (EDIT_CheckCombo(es
, WM_SYSKEYDOWN
, key
))
5236 return DefWindowProcW(es
->hwndSelf
, WM_SYSKEYDOWN
, (WPARAM
)key
, (LPARAM
)key_data
);
5240 /*********************************************************************
5245 static void EDIT_WM_Timer(EDITSTATE
*es
)
5247 if (es
->region_posx
< 0) {
5248 EDIT_MoveBackward(es
, TRUE
);
5249 } else if (es
->region_posx
> 0) {
5250 EDIT_MoveForward(es
, TRUE
);
5253 * FIXME: gotta do some vertical scrolling here, like
5254 * EDIT_EM_LineScroll(hwnd, 0, 1);
5258 /*********************************************************************
5263 static LRESULT
EDIT_WM_VScroll(EDITSTATE
*es
, INT action
, INT pos
)
5267 if (!(es
->style
& ES_MULTILINE
))
5270 if (!(es
->style
& ES_AUTOVSCROLL
))
5279 TRACE("action %d (%s)\n", action
, (action
== SB_LINEUP
? "SB_LINEUP" :
5280 (action
== SB_LINEDOWN
? "SB_LINEDOWN" :
5281 (action
== SB_PAGEUP
? "SB_PAGEUP" :
5283 EDIT_EM_Scroll(es
, action
);
5290 TRACE("SB_BOTTOM\n");
5291 dy
= es
->line_count
- 1 - es
->y_offset
;
5294 TRACE("SB_THUMBTRACK %d\n", pos
);
5295 es
->flags
|= EF_VSCROLL_TRACK
;
5296 if(es
->style
& WS_VSCROLL
)
5297 dy
= pos
- es
->y_offset
;
5300 /* Assume default scroll range 0-100 */
5303 if(pos
< 0 || pos
> 100) return 0;
5304 vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
5305 new_y
= pos
* (es
->line_count
- vlc
) / 100;
5306 dy
= es
->line_count
? (new_y
- es
->y_offset
) : 0;
5307 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
5308 es
->line_count
, es
->y_offset
, pos
, dy
);
5311 case SB_THUMBPOSITION
:
5312 TRACE("SB_THUMBPOSITION %d\n", pos
);
5313 es
->flags
&= ~EF_VSCROLL_TRACK
;
5314 if(es
->style
& WS_VSCROLL
)
5315 dy
= pos
- es
->y_offset
;
5318 /* Assume default scroll range 0-100 */
5321 if(pos
< 0 || pos
> 100) return 0;
5322 vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
5323 new_y
= pos
* (es
->line_count
- vlc
) / 100;
5324 dy
= es
->line_count
? (new_y
- es
->y_offset
) : 0;
5325 TRACE("line_count=%d, y_offset=%d, pos=%d, dy = %d\n",
5326 es
->line_count
, es
->y_offset
, pos
, dy
);
5330 /* force scroll info update */
5331 EDIT_UpdateScrollInfo(es
);
5332 EDIT_NOTIFY_PARENT(es
, EN_VSCROLL
);
5336 TRACE("SB_ENDSCROLL\n");
5339 * FIXME : the next two are undocumented !
5340 * Are we doing the right thing ?
5341 * At least Win 3.1 Notepad makes use of EM_GETTHUMB this way,
5342 * although it's also a regular control message.
5344 case EM_GETTHUMB
: /* this one is used by NT notepad */
5348 if(GetWindowLongW( es
->hwndSelf
, GWL_STYLE
) & WS_VSCROLL
)
5349 ret
= GetScrollPos(es
->hwndSelf
, SB_VERT
);
5352 /* Assume default scroll range 0-100 */
5353 INT vlc
= (es
->format_rect
.bottom
- es
->format_rect
.top
) / es
->line_height
;
5354 ret
= es
->line_count
? es
->y_offset
* 100 / (es
->line_count
- vlc
) : 0;
5356 TRACE("EM_GETTHUMB: returning %ld\n", ret
);
5359 case EM_LINESCROLL16
:
5360 TRACE("EM_LINESCROLL16 %d\n", pos
);
5365 ERR("undocumented WM_VSCROLL action %d (0x%04x), please report\n",
5370 EDIT_EM_LineScroll(es
, 0, dy
);
5374 /*********************************************************************
5379 static void EDIT_UpdateTextRegion(EDITSTATE
*es
, HRGN hrgn
, BOOL bErase
)
5381 if (es
->flags
& EF_UPDATE
) {
5382 es
->flags
&= ~EF_UPDATE
;
5383 EDIT_NOTIFY_PARENT(es
, EN_UPDATE
);
5385 InvalidateRgn(es
->hwndSelf
, hrgn
, bErase
);
5389 /*********************************************************************
5394 static void EDIT_UpdateText(EDITSTATE
*es
, const RECT
*rc
, BOOL bErase
)
5396 if (es
->flags
& EF_UPDATE
) {
5397 es
->flags
&= ~EF_UPDATE
;
5398 EDIT_NOTIFY_PARENT(es
, EN_UPDATE
);
5400 InvalidateRect(es
->hwndSelf
, rc
, bErase
);
5403 /********************************************************************
5405 * The Following code is to handle inline editing from IMEs
5408 static void EDIT_GetCompositionStr(HIMC hIMC
, LPARAM CompFlag
, EDITSTATE
*es
)
5411 LPWSTR lpCompStr
= NULL
;
5412 LPSTR lpCompStrAttr
= NULL
;
5415 buflen
= ImmGetCompositionStringW(hIMC
, GCS_COMPSTR
, NULL
, 0);
5422 lpCompStr
= HeapAlloc(GetProcessHeap(),0,buflen
+ sizeof(WCHAR
));
5425 ERR("Unable to allocate IME CompositionString\n");
5430 ImmGetCompositionStringW(hIMC
, GCS_COMPSTR
, lpCompStr
, buflen
);
5431 lpCompStr
[buflen
/sizeof(WCHAR
)] = 0;
5433 if (CompFlag
& GCS_COMPATTR
)
5436 * We do not use the attributes yet. it would tell us what characters
5437 * are in transition and which are converted or decided upon
5439 dwBufLenAttr
= ImmGetCompositionStringW(hIMC
, GCS_COMPATTR
, NULL
, 0);
5443 lpCompStrAttr
= HeapAlloc(GetProcessHeap(),0,dwBufLenAttr
+1);
5446 ERR("Unable to allocate IME Attribute String\n");
5447 HeapFree(GetProcessHeap(),0,lpCompStr
);
5450 ImmGetCompositionStringW(hIMC
,GCS_COMPATTR
, lpCompStrAttr
,
5452 lpCompStrAttr
[dwBufLenAttr
] = 0;
5455 lpCompStrAttr
= NULL
;
5458 /* check for change in composition start */
5459 if (es
->selection_end
< es
->composition_start
)
5460 es
->composition_start
= es
->selection_end
;
5462 /* replace existing selection string */
5463 es
->selection_start
= es
->composition_start
;
5465 if (es
->composition_len
> 0)
5466 es
->selection_end
= es
->composition_start
+ es
->composition_len
;
5468 es
->selection_end
= es
->selection_start
;
5470 EDIT_EM_ReplaceSel(es
, FALSE
, lpCompStr
, TRUE
, TRUE
);
5471 es
->composition_len
= abs(es
->composition_start
- es
->selection_end
);
5473 es
->selection_start
= es
->composition_start
;
5474 es
->selection_end
= es
->selection_start
+ es
->composition_len
;
5476 HeapFree(GetProcessHeap(),0,lpCompStrAttr
);
5477 HeapFree(GetProcessHeap(),0,lpCompStr
);
5480 static void EDIT_GetResultStr(HIMC hIMC
, EDITSTATE
*es
)
5485 buflen
= ImmGetCompositionStringW(hIMC
, GCS_RESULTSTR
, NULL
, 0);
5491 lpResultStr
= HeapAlloc(GetProcessHeap(),0, buflen
+sizeof(WCHAR
));
5494 ERR("Unable to alloc buffer for IME string\n");
5498 ImmGetCompositionStringW(hIMC
, GCS_RESULTSTR
, lpResultStr
, buflen
);
5499 lpResultStr
[buflen
/sizeof(WCHAR
)] = 0;
5501 /* check for change in composition start */
5502 if (es
->selection_end
< es
->composition_start
)
5503 es
->composition_start
= es
->selection_end
;
5505 es
->selection_start
= es
->composition_start
;
5506 es
->selection_end
= es
->composition_start
+ es
->composition_len
;
5507 EDIT_EM_ReplaceSel(es
, TRUE
, lpResultStr
, TRUE
, TRUE
);
5508 es
->composition_start
= es
->selection_end
;
5509 es
->composition_len
= 0;
5511 HeapFree(GetProcessHeap(),0,lpResultStr
);
5514 static void EDIT_ImeComposition(HWND hwnd
, LPARAM CompFlag
, EDITSTATE
*es
)
5519 if (es
->composition_len
== 0 && es
->selection_start
!= es
->selection_end
)
5521 static const WCHAR empty_stringW
[] = {0};
5522 EDIT_EM_ReplaceSel(es
, TRUE
, empty_stringW
, TRUE
, TRUE
);
5523 es
->composition_start
= es
->selection_end
;
5526 hIMC
= ImmGetContext(hwnd
);
5530 if (CompFlag
& GCS_RESULTSTR
)
5531 EDIT_GetResultStr(hIMC
, es
);
5532 if (CompFlag
& GCS_COMPSTR
)
5533 EDIT_GetCompositionStr(hIMC
, CompFlag
, es
);
5534 cursor
= ImmGetCompositionStringW(hIMC
, GCS_CURSORPOS
, 0, 0);
5535 ImmReleaseContext(hwnd
, hIMC
);
5536 EDIT_SetCaretPos(es
, es
->selection_start
+ cursor
, es
->flags
& EF_AFTER_WRAP
);