4 * Copyright 2002 Dimitrie O. Paun
5 * Copyright 1999 Chris Morgan<cmorgan@wpi.edu>
6 * Copyright 1999 James Abbatiello<abbeyj@wpi.edu>
7 * Copyright 1998, 1999 Eric Kohl
8 * Copyright 1998 Alex Priem <alexp@sci.kun.nl>
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 * This code was audited for completeness against the documented features
27 * of Comctl32.dll version 6.0 on Sep. 9, 2002, by Dimitrie O. Paun.
29 * Unless otherwise noted, we believe this code to be complete, as per
30 * the specification mentioned above.
31 * If you discover missing features, or bugs, please note them below.
51 #include "wine/unicode.h"
52 #include "wine/debug.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(ipaddress
);
72 static const WCHAR IP_SUBCLASS_PROP
[] =
73 { 'C', 'C', 'I', 'P', '3', '2', 'S', 'u', 'b', 'c', 'l', 'a', 's', 's', 'I', 'n', 'f', 'o', 0 };
80 static LRESULT CALLBACK
81 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
83 static void IPADDRESS_UpdateText (const IPADDRESS_INFO
*infoPtr
)
85 static const WCHAR zero
[] = {'0', 0};
86 static const WCHAR dot
[] = {'.', 0};
93 for (i
= 0; i
< 4; i
++) {
94 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
97 /* empty edit treated as zero */
103 SetWindowTextW(infoPtr
->Self
, ip
);
106 static LRESULT
IPADDRESS_Notify (const IPADDRESS_INFO
*infoPtr
, UINT command
)
108 HWND hwnd
= infoPtr
->Self
;
110 TRACE("(command=%x)\n", command
);
112 return SendMessageW (infoPtr
->Notify
, WM_COMMAND
,
113 MAKEWPARAM (GetWindowLongPtrW (hwnd
, GWLP_ID
), command
), (LPARAM
)hwnd
);
116 static INT
IPADDRESS_IPNotify (const IPADDRESS_INFO
*infoPtr
, INT field
, INT value
)
120 TRACE("(field=%x, value=%d)\n", field
, value
);
122 nmip
.hdr
.hwndFrom
= infoPtr
->Self
;
123 nmip
.hdr
.idFrom
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
124 nmip
.hdr
.code
= IPN_FIELDCHANGED
;
129 SendMessageW (infoPtr
->Notify
, WM_NOTIFY
, nmip
.hdr
.idFrom
, (LPARAM
)&nmip
);
131 TRACE("<-- %d\n", nmip
.iValue
);
137 static int IPADDRESS_GetPartIndex(const IPADDRESS_INFO
*infoPtr
, HWND hwnd
)
141 TRACE("(hwnd=%p)\n", hwnd
);
143 for (i
= 0; i
< 4; i
++)
144 if (infoPtr
->Part
[i
].EditHwnd
== hwnd
) return i
;
146 ERR("We subclassed the wrong window! (hwnd=%p)\n", hwnd
);
151 static LRESULT
IPADDRESS_Draw (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
153 static const WCHAR dotW
[] = { '.', 0 };
155 COLORREF bgCol
, fgCol
;
157 int i
, state
= ETS_NORMAL
;
161 GetClientRect (infoPtr
->Self
, &rect
);
163 theme
= OpenThemeData(infoPtr
->Self
, WC_EDITW
);
166 DWORD dwStyle
= GetWindowLongW (infoPtr
->Self
, GWL_STYLE
);
168 if (!infoPtr
->Enabled
)
169 state
= ETS_DISABLED
;
170 else if (dwStyle
& ES_READONLY
)
171 state
= ETS_READONLY
;
172 else if (GetFocus() == infoPtr
->Self
)
175 GetThemeColor(theme
, EP_EDITTEXT
, state
, TMT_FILLCOLOR
, &bgCol
);
176 GetThemeColor(theme
, EP_EDITTEXT
, state
, TMT_TEXTCOLOR
, &fgCol
);
178 if (IsThemeBackgroundPartiallyTransparent (theme
, EP_EDITTEXT
, state
))
179 DrawThemeParentBackground(infoPtr
->Self
, hdc
, &rect
);
180 DrawThemeBackground (theme
, hdc
, EP_EDITTEXT
, state
, &rect
, 0);
182 if (infoPtr
->Enabled
) {
183 bgCol
= comctl32_color
.clrWindow
;
184 fgCol
= comctl32_color
.clrWindowText
;
186 bgCol
= comctl32_color
.clr3dFace
;
187 fgCol
= comctl32_color
.clrGrayText
;
190 FillRect (hdc
, &rect
, (HBRUSH
)(DWORD_PTR
)(bgCol
+1));
191 DrawEdge (hdc
, &rect
, EDGE_SUNKEN
, BF_RECT
| BF_ADJUST
);
194 SetBkColor (hdc
, bgCol
);
195 SetTextColor(hdc
, fgCol
);
197 for (i
= 0; i
< 3; i
++) {
198 GetWindowRect (infoPtr
->Part
[i
].EditHwnd
, &rcPart
);
199 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
200 rect
.left
= rcPart
.right
;
201 GetWindowRect (infoPtr
->Part
[i
+1].EditHwnd
, &rcPart
);
202 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
203 rect
.right
= rcPart
.left
;
206 DrawThemeText(theme
, hdc
, EP_EDITTEXT
, state
, dotW
, 1, DT_SINGLELINE
| DT_CENTER
| DT_BOTTOM
, 0, &rect
);
208 DrawTextW(hdc
, dotW
, 1, &rect
, DT_SINGLELINE
| DT_CENTER
| DT_BOTTOM
);
212 CloseThemeData(theme
);
218 static LRESULT
IPADDRESS_Create (HWND hwnd
, const CREATESTRUCTA
*lpCreate
)
220 IPADDRESS_INFO
*infoPtr
;
223 HFONT hFont
, hSysFont
;
224 LOGFONTW logFont
, logSysFont
;
228 SetWindowLongW (hwnd
, GWL_STYLE
,
229 GetWindowLongW(hwnd
, GWL_STYLE
) & ~WS_BORDER
);
231 infoPtr
= Alloc (sizeof(IPADDRESS_INFO
));
232 if (!infoPtr
) return -1;
233 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
235 GetClientRect (hwnd
, &rcClient
);
237 fieldsize
= (rcClient
.right
- rcClient
.left
) / 4;
239 edit
.top
= rcClient
.top
+ 2;
240 edit
.bottom
= rcClient
.bottom
- 2;
242 infoPtr
->Self
= hwnd
;
243 infoPtr
->Enabled
= TRUE
;
244 infoPtr
->Notify
= lpCreate
->hwndParent
;
246 hSysFont
= GetStockObject(ANSI_VAR_FONT
);
247 GetObjectW(hSysFont
, sizeof(LOGFONTW
), &logSysFont
);
248 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
249 strcpyW(logFont
.lfFaceName
, logSysFont
.lfFaceName
);
250 hFont
= CreateFontIndirectW(&logFont
);
252 for (i
= 0; i
< 4; i
++) {
253 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
255 part
->LowerLimit
= 0;
256 part
->UpperLimit
= 255;
257 edit
.left
= rcClient
.left
+ i
*fieldsize
+ 6;
258 edit
.right
= rcClient
.left
+ (i
+1)*fieldsize
- 2;
260 CreateWindowW (WC_EDITW
, NULL
, WS_CHILD
| WS_VISIBLE
| ES_CENTER
,
261 edit
.left
, edit
.top
, edit
.right
- edit
.left
,
262 edit
.bottom
- edit
.top
, hwnd
, (HMENU
) 1,
263 (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
), NULL
);
264 SendMessageW(part
->EditHwnd
, WM_SETFONT
, (WPARAM
) hFont
, FALSE
);
265 SetPropW(part
->EditHwnd
, IP_SUBCLASS_PROP
, hwnd
);
266 part
->OrigProc
= (WNDPROC
)
267 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
,
268 (DWORD_PTR
)IPADDRESS_SubclassProc
);
269 EnableWindow(part
->EditHwnd
, infoPtr
->Enabled
);
272 IPADDRESS_UpdateText (infoPtr
);
278 static LRESULT
IPADDRESS_Destroy (IPADDRESS_INFO
*infoPtr
)
284 for (i
= 0; i
< 4; i
++) {
285 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
286 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
, (DWORD_PTR
)part
->OrigProc
);
289 SetWindowLongPtrW (infoPtr
->Self
, 0, 0);
295 static LRESULT
IPADDRESS_Enable (IPADDRESS_INFO
*infoPtr
, BOOL enabled
)
299 infoPtr
->Enabled
= enabled
;
301 for (i
= 0; i
< 4; i
++)
302 EnableWindow(infoPtr
->Part
[i
].EditHwnd
, enabled
);
304 InvalidateRgn(infoPtr
->Self
, NULL
, FALSE
);
309 static LRESULT
IPADDRESS_Paint (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
315 if (hdc
) return IPADDRESS_Draw (infoPtr
, hdc
);
317 hdc
= BeginPaint (infoPtr
->Self
, &ps
);
318 IPADDRESS_Draw (infoPtr
, hdc
);
319 EndPaint (infoPtr
->Self
, &ps
);
324 static BOOL
IPADDRESS_IsBlank (const IPADDRESS_INFO
*infoPtr
)
330 for (i
= 0; i
< 4; i
++)
331 if (GetWindowTextLengthW (infoPtr
->Part
[i
].EditHwnd
)) return FALSE
;
337 static int IPADDRESS_GetAddress (const IPADDRESS_INFO
*infoPtr
, LPDWORD ip_address
)
345 for (i
= 0; i
< 4; i
++) {
347 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
348 ip_addr
+= atolW(field
);
352 *ip_address
= ip_addr
;
358 static BOOL
IPADDRESS_SetRange (IPADDRESS_INFO
*infoPtr
, int index
, WORD range
)
362 if ( (index
< 0) || (index
> 3) ) return FALSE
;
364 infoPtr
->Part
[index
].LowerLimit
= range
& 0xFF;
365 infoPtr
->Part
[index
].UpperLimit
= (range
>> 8) & 0xFF;
371 static void IPADDRESS_ClearAddress (const IPADDRESS_INFO
*infoPtr
)
373 static const WCHAR nil
[] = { 0 };
378 for (i
= 0; i
< 4; i
++)
379 SetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, nil
);
383 static LRESULT
IPADDRESS_SetAddress (const IPADDRESS_INFO
*infoPtr
, DWORD ip_address
)
386 static const WCHAR fmt
[] = { '%', 'd', 0 };
391 for (i
= 3; i
>= 0; i
--) {
392 const IPPART_INFO
* part
= &infoPtr
->Part
[i
];
393 int value
= ip_address
& 0xff;
394 if ( (value
>= part
->LowerLimit
) && (value
<= part
->UpperLimit
) ) {
395 wsprintfW (buf
, fmt
, value
);
396 SetWindowTextW (part
->EditHwnd
, buf
);
397 IPADDRESS_Notify (infoPtr
, EN_CHANGE
);
406 static void IPADDRESS_SetFocusToField (const IPADDRESS_INFO
*infoPtr
, INT index
)
408 TRACE("(index=%d)\n", index
);
410 if (index
> 3 || index
< 0) index
=0;
412 SetFocus (infoPtr
->Part
[index
].EditHwnd
);
416 static BOOL
IPADDRESS_ConstrainField (const IPADDRESS_INFO
*infoPtr
, int currentfield
)
418 static const WCHAR fmt
[] = { '%', 'd', 0 };
419 const IPPART_INFO
*part
;
420 int curValue
, newValue
;
423 TRACE("(currentfield=%d)\n", currentfield
);
425 if (currentfield
< 0 || currentfield
> 3) return FALSE
;
427 part
= &infoPtr
->Part
[currentfield
];
428 if (!GetWindowTextW (part
->EditHwnd
, field
, 4)) return FALSE
;
430 curValue
= atoiW(field
);
431 TRACE(" curValue=%d\n", curValue
);
433 newValue
= IPADDRESS_IPNotify(infoPtr
, currentfield
, curValue
);
434 TRACE(" newValue=%d\n", newValue
);
436 if (newValue
< part
->LowerLimit
) newValue
= part
->LowerLimit
;
437 if (newValue
> part
->UpperLimit
) newValue
= part
->UpperLimit
;
439 if (newValue
== curValue
) return FALSE
;
441 wsprintfW (field
, fmt
, newValue
);
442 TRACE(" field=%s\n", debugstr_w(field
));
443 return SetWindowTextW (part
->EditHwnd
, field
);
447 static BOOL
IPADDRESS_GotoNextField (const IPADDRESS_INFO
*infoPtr
, int cur
, int sel
)
451 if(cur
>= -1 && cur
< 4) {
452 IPADDRESS_ConstrainField(infoPtr
, cur
);
455 const IPPART_INFO
*next
= &infoPtr
->Part
[cur
+ 1];
456 int start
= 0, end
= 0;
457 SetFocus (next
->EditHwnd
);
458 if (sel
!= POS_DEFAULT
) {
459 if (sel
== POS_RIGHT
)
460 start
= end
= GetWindowTextLengthW(next
->EditHwnd
);
461 else if (sel
== POS_SELALL
)
463 SendMessageW(next
->EditHwnd
, EM_SETSEL
, start
, end
);
474 * period: move and select the text in the next field to the right if
475 * the current field is not empty(l!=0), we are not in the
476 * left most position, and nothing is selected(startsel==endsel)
478 * spacebar: same behavior as period
480 * alpha characters: completely ignored
482 * digits: accepted when field text length < 2 ignored otherwise.
483 * when 3 numbers have been entered into the field the value
484 * of the field is checked, if the field value exceeds the
485 * maximum value and is changed the field remains the current
486 * field, otherwise focus moves to the field to the right
488 * tab: change focus from the current ipaddress control to the next
489 * control in the tab order
491 * right arrow: move to the field on the right to the left most
492 * position in that field if no text is selected,
493 * we are in the right most position in the field,
494 * we are not in the right most field
496 * left arrow: move to the field on the left to the right most
497 * position in that field if no text is selected,
498 * we are in the left most position in the current field
499 * and we are not in the left most field
501 * backspace: delete the character to the left of the cursor position,
502 * if none are present move to the field on the left if
503 * we are not in the left most field and delete the right
504 * most digit in that field while keeping the cursor
505 * on the right side of the field
508 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
510 HWND Self
= GetPropW (hwnd
, IP_SUBCLASS_PROP
);
511 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (Self
, 0);
512 CHAR c
= (CHAR
)wParam
;
513 INT index
, len
= 0, startsel
, endsel
;
516 TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd
, uMsg
, wParam
, lParam
);
518 if ( (index
= IPADDRESS_GetPartIndex(infoPtr
, hwnd
)) < 0) return 0;
519 part
= &infoPtr
->Part
[index
];
521 if (uMsg
== WM_CHAR
|| uMsg
== WM_KEYDOWN
) {
522 len
= GetWindowTextLengthW (hwnd
);
523 SendMessageW(hwnd
, EM_GETSEL
, (WPARAM
)&startsel
, (LPARAM
)&endsel
);
528 if(len
== 2 && startsel
==endsel
&& endsel
==len
) {
529 /* process the digit press before we check the field */
530 int return_val
= CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
532 /* if the field value was changed stay at the current field */
533 if(!IPADDRESS_ConstrainField(infoPtr
, index
))
534 IPADDRESS_GotoNextField (infoPtr
, index
, POS_DEFAULT
);
537 } else if (len
== 3 && startsel
==endsel
&& endsel
==len
)
538 IPADDRESS_GotoNextField (infoPtr
, index
, POS_SELALL
);
539 else if (len
< 3 || startsel
!= endsel
) break;
540 } else if(c
== '.' || c
== ' ') {
541 if(len
&& startsel
==endsel
&& startsel
!= 0) {
542 IPADDRESS_GotoNextField(infoPtr
, index
, POS_SELALL
);
544 } else if (c
== VK_BACK
) break;
550 if(startsel
==endsel
&& startsel
==len
) {
551 IPADDRESS_GotoNextField(infoPtr
, index
, POS_LEFT
);
556 if(startsel
==0 && startsel
==endsel
&& index
> 0) {
557 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
562 if(startsel
==endsel
&& startsel
==0 && index
> 0) {
563 IPPART_INFO
*prev
= &infoPtr
->Part
[index
-1];
566 if(GetWindowTextW(prev
->EditHwnd
, val
, 5)) {
567 val
[lstrlenW(val
) - 1] = 0;
568 SetWindowTextW(prev
->EditHwnd
, val
);
571 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
578 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
579 IPADDRESS_Notify(infoPtr
, EN_KILLFOCUS
);
582 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
583 IPADDRESS_Notify(infoPtr
, EN_SETFOCUS
);
586 return CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
590 static LRESULT WINAPI
591 IPADDRESS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
593 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (hwnd
, 0);
595 TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd
, uMsg
, wParam
, lParam
);
597 if (!infoPtr
&& (uMsg
!= WM_CREATE
))
598 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
603 return IPADDRESS_Create (hwnd
, (LPCREATESTRUCTA
)lParam
);
606 return IPADDRESS_Destroy (infoPtr
);
609 return IPADDRESS_Enable (infoPtr
, (BOOL
)wParam
);
612 return IPADDRESS_Paint (infoPtr
, (HDC
)wParam
);
615 switch(wParam
>> 16) {
617 IPADDRESS_UpdateText(infoPtr
);
618 IPADDRESS_Notify(infoPtr
, EN_CHANGE
);
621 IPADDRESS_ConstrainField(infoPtr
, IPADDRESS_GetPartIndex(infoPtr
, (HWND
)lParam
));
626 case WM_SYSCOLORCHANGE
:
627 COMCTL32_RefreshSysColors();
630 case IPM_CLEARADDRESS
:
631 IPADDRESS_ClearAddress (infoPtr
);
635 return IPADDRESS_SetAddress (infoPtr
, (DWORD
)lParam
);
638 return IPADDRESS_GetAddress (infoPtr
, (LPDWORD
)lParam
);
641 return IPADDRESS_SetRange (infoPtr
, (int)wParam
, (WORD
)lParam
);
644 IPADDRESS_SetFocusToField (infoPtr
, (int)wParam
);
648 return IPADDRESS_IsBlank (infoPtr
);
651 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
652 ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg
, wParam
, lParam
);
653 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
659 void IPADDRESS_Register (void)
663 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
664 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_HREDRAW
| CS_VREDRAW
;
665 wndClass
.lpfnWndProc
= IPADDRESS_WindowProc
;
666 wndClass
.cbClsExtra
= 0;
667 wndClass
.cbWndExtra
= sizeof(IPADDRESS_INFO
*);
668 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_IBEAM
);
669 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
670 wndClass
.lpszClassName
= WC_IPADDRESSW
;
672 RegisterClassW (&wndClass
);
676 void IPADDRESS_Unregister (void)
678 UnregisterClassW (WC_IPADDRESSW
, NULL
);