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.
48 #include "wine/unicode.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(ipaddress
);
69 static const WCHAR IP_SUBCLASS_PROP
[] =
70 { 'C', 'C', 'I', 'P', '3', '2', 'S', 'u', 'b', 'c', 'l', 'a', 's', 's', 'I', 'n', 'f', 'o', 0 };
77 static LRESULT CALLBACK
78 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
80 static void IPADDRESS_UpdateText (const IPADDRESS_INFO
*infoPtr
)
82 static const WCHAR zero
[] = {'0', 0};
83 static const WCHAR dot
[] = {'.', 0};
90 for (i
= 0; i
< 4; i
++) {
91 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
94 /* empty edit treated as zero */
100 SetWindowTextW(infoPtr
->Self
, ip
);
103 static LRESULT
IPADDRESS_Notify (const IPADDRESS_INFO
*infoPtr
, UINT command
)
105 HWND hwnd
= infoPtr
->Self
;
107 TRACE("(command=%x)\n", command
);
109 return SendMessageW (infoPtr
->Notify
, WM_COMMAND
,
110 MAKEWPARAM (GetWindowLongPtrW (hwnd
, GWLP_ID
), command
), (LPARAM
)hwnd
);
113 static INT
IPADDRESS_IPNotify (const IPADDRESS_INFO
*infoPtr
, INT field
, INT value
)
117 TRACE("(field=%x, value=%d)\n", field
, value
);
119 nmip
.hdr
.hwndFrom
= infoPtr
->Self
;
120 nmip
.hdr
.idFrom
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
121 nmip
.hdr
.code
= IPN_FIELDCHANGED
;
126 SendMessageW (infoPtr
->Notify
, WM_NOTIFY
, nmip
.hdr
.idFrom
, (LPARAM
)&nmip
);
128 TRACE("<-- %d\n", nmip
.iValue
);
134 static int IPADDRESS_GetPartIndex(const IPADDRESS_INFO
*infoPtr
, HWND hwnd
)
138 TRACE("(hwnd=%p)\n", hwnd
);
140 for (i
= 0; i
< 4; i
++)
141 if (infoPtr
->Part
[i
].EditHwnd
== hwnd
) return i
;
143 ERR("We subclassed the wrong window! (hwnd=%p)\n", hwnd
);
148 static LRESULT
IPADDRESS_Draw (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
150 static const WCHAR dotW
[] = { '.', 0 };
152 COLORREF bgCol
, fgCol
;
157 GetClientRect (infoPtr
->Self
, &rect
);
159 if (infoPtr
->Enabled
) {
160 bgCol
= comctl32_color
.clrWindow
;
161 fgCol
= comctl32_color
.clrWindowText
;
163 bgCol
= comctl32_color
.clr3dFace
;
164 fgCol
= comctl32_color
.clrGrayText
;
167 FillRect (hdc
, &rect
, (HBRUSH
)(DWORD_PTR
)(bgCol
+1));
168 DrawEdge (hdc
, &rect
, EDGE_SUNKEN
, BF_RECT
| BF_ADJUST
);
170 SetBkColor (hdc
, bgCol
);
171 SetTextColor(hdc
, fgCol
);
173 for (i
= 0; i
< 3; i
++) {
174 GetWindowRect (infoPtr
->Part
[i
].EditHwnd
, &rcPart
);
175 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
176 rect
.left
= rcPart
.right
;
177 GetWindowRect (infoPtr
->Part
[i
+1].EditHwnd
, &rcPart
);
178 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
179 rect
.right
= rcPart
.left
;
180 DrawTextW(hdc
, dotW
, 1, &rect
, DT_SINGLELINE
| DT_CENTER
| DT_BOTTOM
);
187 static LRESULT
IPADDRESS_Create (HWND hwnd
, const CREATESTRUCTA
*lpCreate
)
189 IPADDRESS_INFO
*infoPtr
;
192 HFONT hFont
, hSysFont
;
193 LOGFONTW logFont
, logSysFont
;
197 SetWindowLongW (hwnd
, GWL_STYLE
,
198 GetWindowLongW(hwnd
, GWL_STYLE
) & ~WS_BORDER
);
200 infoPtr
= Alloc (sizeof(IPADDRESS_INFO
));
201 if (!infoPtr
) return -1;
202 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
204 GetClientRect (hwnd
, &rcClient
);
206 fieldsize
= (rcClient
.right
- rcClient
.left
) / 4;
208 edit
.top
= rcClient
.top
+ 2;
209 edit
.bottom
= rcClient
.bottom
- 2;
211 infoPtr
->Self
= hwnd
;
212 infoPtr
->Enabled
= TRUE
;
213 infoPtr
->Notify
= lpCreate
->hwndParent
;
215 hSysFont
= GetStockObject(ANSI_VAR_FONT
);
216 GetObjectW(hSysFont
, sizeof(LOGFONTW
), &logSysFont
);
217 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
218 strcpyW(logFont
.lfFaceName
, logSysFont
.lfFaceName
);
219 hFont
= CreateFontIndirectW(&logFont
);
221 for (i
= 0; i
< 4; i
++) {
222 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
224 part
->LowerLimit
= 0;
225 part
->UpperLimit
= 255;
226 edit
.left
= rcClient
.left
+ i
*fieldsize
+ 6;
227 edit
.right
= rcClient
.left
+ (i
+1)*fieldsize
- 2;
229 CreateWindowW (WC_EDITW
, NULL
, WS_CHILD
| WS_VISIBLE
| ES_CENTER
,
230 edit
.left
, edit
.top
, edit
.right
- edit
.left
,
231 edit
.bottom
- edit
.top
, hwnd
, (HMENU
) 1,
232 (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
), NULL
);
233 SendMessageW(part
->EditHwnd
, WM_SETFONT
, (WPARAM
) hFont
, FALSE
);
234 SetPropW(part
->EditHwnd
, IP_SUBCLASS_PROP
, hwnd
);
235 part
->OrigProc
= (WNDPROC
)
236 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
,
237 (DWORD_PTR
)IPADDRESS_SubclassProc
);
238 EnableWindow(part
->EditHwnd
, infoPtr
->Enabled
);
241 IPADDRESS_UpdateText (infoPtr
);
247 static LRESULT
IPADDRESS_Destroy (IPADDRESS_INFO
*infoPtr
)
253 for (i
= 0; i
< 4; i
++) {
254 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
255 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
, (DWORD_PTR
)part
->OrigProc
);
258 SetWindowLongPtrW (infoPtr
->Self
, 0, 0);
264 static LRESULT
IPADDRESS_Enable (IPADDRESS_INFO
*infoPtr
, BOOL enabled
)
268 infoPtr
->Enabled
= enabled
;
270 for (i
= 0; i
< 4; i
++)
271 EnableWindow(infoPtr
->Part
[i
].EditHwnd
, enabled
);
273 InvalidateRgn(infoPtr
->Self
, NULL
, FALSE
);
278 static LRESULT
IPADDRESS_Paint (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
284 if (hdc
) return IPADDRESS_Draw (infoPtr
, hdc
);
286 hdc
= BeginPaint (infoPtr
->Self
, &ps
);
287 IPADDRESS_Draw (infoPtr
, hdc
);
288 EndPaint (infoPtr
->Self
, &ps
);
293 static BOOL
IPADDRESS_IsBlank (const IPADDRESS_INFO
*infoPtr
)
299 for (i
= 0; i
< 4; i
++)
300 if (GetWindowTextLengthW (infoPtr
->Part
[i
].EditHwnd
)) return FALSE
;
306 static int IPADDRESS_GetAddress (const IPADDRESS_INFO
*infoPtr
, LPDWORD ip_address
)
314 for (i
= 0; i
< 4; i
++) {
316 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
317 ip_addr
+= atolW(field
);
321 *ip_address
= ip_addr
;
327 static BOOL
IPADDRESS_SetRange (IPADDRESS_INFO
*infoPtr
, int index
, WORD range
)
331 if ( (index
< 0) || (index
> 3) ) return FALSE
;
333 infoPtr
->Part
[index
].LowerLimit
= range
& 0xFF;
334 infoPtr
->Part
[index
].UpperLimit
= (range
>> 8) & 0xFF;
340 static void IPADDRESS_ClearAddress (const IPADDRESS_INFO
*infoPtr
)
342 static const WCHAR nil
[] = { 0 };
347 for (i
= 0; i
< 4; i
++)
348 SetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, nil
);
352 static LRESULT
IPADDRESS_SetAddress (const IPADDRESS_INFO
*infoPtr
, DWORD ip_address
)
355 static const WCHAR fmt
[] = { '%', 'd', 0 };
360 for (i
= 3; i
>= 0; i
--) {
361 const IPPART_INFO
* part
= &infoPtr
->Part
[i
];
362 int value
= ip_address
& 0xff;
363 if ( (value
>= part
->LowerLimit
) && (value
<= part
->UpperLimit
) ) {
364 wsprintfW (buf
, fmt
, value
);
365 SetWindowTextW (part
->EditHwnd
, buf
);
366 IPADDRESS_Notify (infoPtr
, EN_CHANGE
);
375 static void IPADDRESS_SetFocusToField (const IPADDRESS_INFO
*infoPtr
, INT index
)
377 TRACE("(index=%d)\n", index
);
379 if (index
> 3 || index
< 0) index
=0;
381 SetFocus (infoPtr
->Part
[index
].EditHwnd
);
385 static BOOL
IPADDRESS_ConstrainField (const IPADDRESS_INFO
*infoPtr
, int currentfield
)
387 static const WCHAR fmt
[] = { '%', 'd', 0 };
388 const IPPART_INFO
*part
;
389 int curValue
, newValue
;
392 TRACE("(currentfield=%d)\n", currentfield
);
394 if (currentfield
< 0 || currentfield
> 3) return FALSE
;
396 part
= &infoPtr
->Part
[currentfield
];
397 if (!GetWindowTextW (part
->EditHwnd
, field
, 4)) return FALSE
;
399 curValue
= atoiW(field
);
400 TRACE(" curValue=%d\n", curValue
);
402 newValue
= IPADDRESS_IPNotify(infoPtr
, currentfield
, curValue
);
403 TRACE(" newValue=%d\n", newValue
);
405 if (newValue
< part
->LowerLimit
) newValue
= part
->LowerLimit
;
406 if (newValue
> part
->UpperLimit
) newValue
= part
->UpperLimit
;
408 if (newValue
== curValue
) return FALSE
;
410 wsprintfW (field
, fmt
, newValue
);
411 TRACE(" field=%s\n", debugstr_w(field
));
412 return SetWindowTextW (part
->EditHwnd
, field
);
416 static BOOL
IPADDRESS_GotoNextField (const IPADDRESS_INFO
*infoPtr
, int cur
, int sel
)
420 if(cur
>= -1 && cur
< 4) {
421 IPADDRESS_ConstrainField(infoPtr
, cur
);
424 const IPPART_INFO
*next
= &infoPtr
->Part
[cur
+ 1];
425 int start
= 0, end
= 0;
426 SetFocus (next
->EditHwnd
);
427 if (sel
!= POS_DEFAULT
) {
428 if (sel
== POS_RIGHT
)
429 start
= end
= GetWindowTextLengthW(next
->EditHwnd
);
430 else if (sel
== POS_SELALL
)
432 SendMessageW(next
->EditHwnd
, EM_SETSEL
, start
, end
);
443 * period: move and select the text in the next field to the right if
444 * the current field is not empty(l!=0), we are not in the
445 * left most position, and nothing is selected(startsel==endsel)
447 * spacebar: same behavior as period
449 * alpha characters: completely ignored
451 * digits: accepted when field text length < 2 ignored otherwise.
452 * when 3 numbers have been entered into the field the value
453 * of the field is checked, if the field value exceeds the
454 * maximum value and is changed the field remains the current
455 * field, otherwise focus moves to the field to the right
457 * tab: change focus from the current ipaddress control to the next
458 * control in the tab order
460 * right arrow: move to the field on the right to the left most
461 * position in that field if no text is selected,
462 * we are in the right most position in the field,
463 * we are not in the right most field
465 * left arrow: move to the field on the left to the right most
466 * position in that field if no text is selected,
467 * we are in the left most position in the current field
468 * and we are not in the left most field
470 * backspace: delete the character to the left of the cursor position,
471 * if none are present move to the field on the left if
472 * we are not in the left most field and delete the right
473 * most digit in that field while keeping the cursor
474 * on the right side of the field
477 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
479 HWND Self
= GetPropW (hwnd
, IP_SUBCLASS_PROP
);
480 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (Self
, 0);
481 CHAR c
= (CHAR
)wParam
;
482 INT index
, len
= 0, startsel
, endsel
;
485 TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd
, uMsg
, wParam
, lParam
);
487 if ( (index
= IPADDRESS_GetPartIndex(infoPtr
, hwnd
)) < 0) return 0;
488 part
= &infoPtr
->Part
[index
];
490 if (uMsg
== WM_CHAR
|| uMsg
== WM_KEYDOWN
) {
491 len
= GetWindowTextLengthW (hwnd
);
492 SendMessageW(hwnd
, EM_GETSEL
, (WPARAM
)&startsel
, (LPARAM
)&endsel
);
497 if(len
== 2 && startsel
==endsel
&& endsel
==len
) {
498 /* process the digit press before we check the field */
499 int return_val
= CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
501 /* if the field value was changed stay at the current field */
502 if(!IPADDRESS_ConstrainField(infoPtr
, index
))
503 IPADDRESS_GotoNextField (infoPtr
, index
, POS_DEFAULT
);
506 } else if (len
== 3 && startsel
==endsel
&& endsel
==len
)
507 IPADDRESS_GotoNextField (infoPtr
, index
, POS_SELALL
);
508 else if (len
< 3 || startsel
!= endsel
) break;
509 } else if(c
== '.' || c
== ' ') {
510 if(len
&& startsel
==endsel
&& startsel
!= 0) {
511 IPADDRESS_GotoNextField(infoPtr
, index
, POS_SELALL
);
513 } else if (c
== VK_BACK
) break;
519 if(startsel
==endsel
&& startsel
==len
) {
520 IPADDRESS_GotoNextField(infoPtr
, index
, POS_LEFT
);
525 if(startsel
==0 && startsel
==endsel
&& index
> 0) {
526 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
531 if(startsel
==endsel
&& startsel
==0 && index
> 0) {
532 IPPART_INFO
*prev
= &infoPtr
->Part
[index
-1];
535 if(GetWindowTextW(prev
->EditHwnd
, val
, 5)) {
536 val
[lstrlenW(val
) - 1] = 0;
537 SetWindowTextW(prev
->EditHwnd
, val
);
540 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
547 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
548 IPADDRESS_Notify(infoPtr
, EN_KILLFOCUS
);
551 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
552 IPADDRESS_Notify(infoPtr
, EN_SETFOCUS
);
555 return CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
559 static LRESULT WINAPI
560 IPADDRESS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
562 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (hwnd
, 0);
564 TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd
, uMsg
, wParam
, lParam
);
566 if (!infoPtr
&& (uMsg
!= WM_CREATE
))
567 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
572 return IPADDRESS_Create (hwnd
, (LPCREATESTRUCTA
)lParam
);
575 return IPADDRESS_Destroy (infoPtr
);
578 return IPADDRESS_Enable (infoPtr
, (BOOL
)wParam
);
581 return IPADDRESS_Paint (infoPtr
, (HDC
)wParam
);
584 switch(wParam
>> 16) {
586 IPADDRESS_UpdateText(infoPtr
);
587 IPADDRESS_Notify(infoPtr
, EN_CHANGE
);
590 IPADDRESS_ConstrainField(infoPtr
, IPADDRESS_GetPartIndex(infoPtr
, (HWND
)lParam
));
595 case WM_SYSCOLORCHANGE
:
596 COMCTL32_RefreshSysColors();
599 case IPM_CLEARADDRESS
:
600 IPADDRESS_ClearAddress (infoPtr
);
604 return IPADDRESS_SetAddress (infoPtr
, (DWORD
)lParam
);
607 return IPADDRESS_GetAddress (infoPtr
, (LPDWORD
)lParam
);
610 return IPADDRESS_SetRange (infoPtr
, (int)wParam
, (WORD
)lParam
);
613 IPADDRESS_SetFocusToField (infoPtr
, (int)wParam
);
617 return IPADDRESS_IsBlank (infoPtr
);
620 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
621 ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg
, wParam
, lParam
);
622 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
628 void IPADDRESS_Register (void)
632 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
633 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_HREDRAW
| CS_VREDRAW
;
634 wndClass
.lpfnWndProc
= IPADDRESS_WindowProc
;
635 wndClass
.cbClsExtra
= 0;
636 wndClass
.cbWndExtra
= sizeof(IPADDRESS_INFO
*);
637 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_IBEAM
);
638 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
639 wndClass
.lpszClassName
= WC_IPADDRESSW
;
641 RegisterClassW (&wndClass
);
645 void IPADDRESS_Unregister (void)
647 UnregisterClassW (WC_IPADDRESSW
, NULL
);