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
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(ipaddress
);
61 static const WCHAR IP_SUBCLASS_PROP
[] = L
"CCIP32SubclassInfo";
68 static LRESULT CALLBACK
69 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
71 static void IPADDRESS_UpdateText (const IPADDRESS_INFO
*infoPtr
)
79 for (i
= 0; i
< 4; i
++) {
80 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
83 /* empty edit treated as zero */
89 SetWindowTextW(infoPtr
->Self
, ip
);
92 static LRESULT
IPADDRESS_Notify (const IPADDRESS_INFO
*infoPtr
, UINT command
)
94 HWND hwnd
= infoPtr
->Self
;
96 TRACE("(command=%x)\n", command
);
98 return SendMessageW (infoPtr
->Notify
, WM_COMMAND
,
99 MAKEWPARAM (GetWindowLongPtrW (hwnd
, GWLP_ID
), command
), (LPARAM
)hwnd
);
102 static INT
IPADDRESS_IPNotify (const IPADDRESS_INFO
*infoPtr
, INT field
, INT value
)
106 TRACE("(field=%x, value=%d)\n", field
, value
);
108 nmip
.hdr
.hwndFrom
= infoPtr
->Self
;
109 nmip
.hdr
.idFrom
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
110 nmip
.hdr
.code
= IPN_FIELDCHANGED
;
115 SendMessageW (infoPtr
->Notify
, WM_NOTIFY
, nmip
.hdr
.idFrom
, (LPARAM
)&nmip
);
117 TRACE("<-- %d\n", nmip
.iValue
);
123 static int IPADDRESS_GetPartIndex(const IPADDRESS_INFO
*infoPtr
, HWND hwnd
)
127 TRACE("(hwnd=%p)\n", hwnd
);
129 for (i
= 0; i
< 4; i
++)
130 if (infoPtr
->Part
[i
].EditHwnd
== hwnd
) return i
;
136 static LRESULT
IPADDRESS_Draw (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
139 COLORREF bgCol
, fgCol
;
141 int i
, state
= ETS_NORMAL
;
145 GetClientRect (infoPtr
->Self
, &rect
);
147 theme
= GetWindowTheme (infoPtr
->Self
);
150 DWORD dwStyle
= GetWindowLongW (infoPtr
->Self
, GWL_STYLE
);
152 if (!infoPtr
->Enabled
)
153 state
= ETS_DISABLED
;
154 else if (dwStyle
& ES_READONLY
)
155 state
= ETS_READONLY
;
156 else if (GetFocus() == infoPtr
->Self
)
159 GetThemeColor(theme
, EP_EDITTEXT
, state
, TMT_FILLCOLOR
, &bgCol
);
160 GetThemeColor(theme
, EP_EDITTEXT
, state
, TMT_TEXTCOLOR
, &fgCol
);
162 if (IsThemeBackgroundPartiallyTransparent (theme
, EP_EDITTEXT
, state
))
163 DrawThemeParentBackground(infoPtr
->Self
, hdc
, &rect
);
164 DrawThemeBackground (theme
, hdc
, EP_EDITTEXT
, state
, &rect
, 0);
166 if (infoPtr
->Enabled
) {
167 bgCol
= comctl32_color
.clrWindow
;
168 fgCol
= comctl32_color
.clrWindowText
;
170 bgCol
= comctl32_color
.clr3dFace
;
171 fgCol
= comctl32_color
.clrGrayText
;
174 FillRect (hdc
, &rect
, (HBRUSH
)(DWORD_PTR
)(bgCol
+1));
175 DrawEdge (hdc
, &rect
, EDGE_SUNKEN
, BF_RECT
| BF_ADJUST
);
178 SetBkColor (hdc
, bgCol
);
179 SetTextColor(hdc
, fgCol
);
181 for (i
= 0; i
< 3; i
++) {
182 GetWindowRect (infoPtr
->Part
[i
].EditHwnd
, &rcPart
);
183 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
184 rect
.left
= rcPart
.right
;
185 GetWindowRect (infoPtr
->Part
[i
+1].EditHwnd
, &rcPart
);
186 MapWindowPoints( 0, infoPtr
->Self
, (POINT
*)&rcPart
, 2 );
187 rect
.right
= rcPart
.left
;
190 DrawThemeText(theme
, hdc
, EP_EDITTEXT
, state
, L
".", 1, DT_SINGLELINE
| DT_CENTER
| DT_BOTTOM
, 0, &rect
);
192 DrawTextW(hdc
, L
".", 1, &rect
, DT_SINGLELINE
| DT_CENTER
| DT_BOTTOM
);
199 static LRESULT
IPADDRESS_Create (HWND hwnd
, const CREATESTRUCTA
*lpCreate
)
201 IPADDRESS_INFO
*infoPtr
;
204 HFONT hFont
, hSysFont
;
205 LOGFONTW logFont
, logSysFont
;
209 SetWindowLongW (hwnd
, GWL_STYLE
,
210 GetWindowLongW(hwnd
, GWL_STYLE
) & ~WS_BORDER
);
212 infoPtr
= Alloc (sizeof(*infoPtr
));
213 if (!infoPtr
) return -1;
214 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
216 GetClientRect (hwnd
, &rcClient
);
218 fieldsize
= (rcClient
.right
- rcClient
.left
) / 4;
220 edit
.top
= rcClient
.top
+ 2;
221 edit
.bottom
= rcClient
.bottom
- 2;
223 infoPtr
->Self
= hwnd
;
224 infoPtr
->Enabled
= TRUE
;
225 infoPtr
->Notify
= lpCreate
->hwndParent
;
227 hSysFont
= GetStockObject(ANSI_VAR_FONT
);
228 GetObjectW(hSysFont
, sizeof(LOGFONTW
), &logSysFont
);
229 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
230 lstrcpyW(logFont
.lfFaceName
, logSysFont
.lfFaceName
);
231 hFont
= CreateFontIndirectW(&logFont
);
233 for (i
= 0; i
< 4; i
++) {
234 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
236 part
->LowerLimit
= 0;
237 part
->UpperLimit
= 255;
238 edit
.left
= rcClient
.left
+ i
*fieldsize
+ 6;
239 edit
.right
= rcClient
.left
+ (i
+1)*fieldsize
- 2;
241 CreateWindowW (WC_EDITW
, NULL
, WS_CHILD
| WS_VISIBLE
| ES_CENTER
,
242 edit
.left
, edit
.top
, edit
.right
- edit
.left
,
243 edit
.bottom
- edit
.top
, hwnd
, (HMENU
) 1,
244 (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
), NULL
);
245 SendMessageW(part
->EditHwnd
, WM_SETFONT
, (WPARAM
) hFont
, FALSE
);
246 SetPropW(part
->EditHwnd
, IP_SUBCLASS_PROP
, hwnd
);
247 part
->OrigProc
= (WNDPROC
)
248 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
,
249 (DWORD_PTR
)IPADDRESS_SubclassProc
);
250 EnableWindow(part
->EditHwnd
, infoPtr
->Enabled
);
253 IPADDRESS_UpdateText (infoPtr
);
254 OpenThemeData (infoPtr
->Self
, WC_EDITW
);
260 static LRESULT
IPADDRESS_Destroy (IPADDRESS_INFO
*infoPtr
)
267 for (i
= 0; i
< 4; i
++) {
268 IPPART_INFO
* part
= &infoPtr
->Part
[i
];
269 SetWindowLongPtrW (part
->EditHwnd
, GWLP_WNDPROC
, (DWORD_PTR
)part
->OrigProc
);
272 SetWindowLongPtrW (infoPtr
->Self
, 0, 0);
273 theme
= GetWindowTheme (infoPtr
->Self
);
274 CloseThemeData (theme
);
280 static LRESULT
IPADDRESS_Enable (IPADDRESS_INFO
*infoPtr
, BOOL enabled
)
284 infoPtr
->Enabled
= enabled
;
286 for (i
= 0; i
< 4; i
++)
287 EnableWindow(infoPtr
->Part
[i
].EditHwnd
, enabled
);
289 InvalidateRgn(infoPtr
->Self
, NULL
, FALSE
);
294 static LRESULT
IPADDRESS_Paint (const IPADDRESS_INFO
*infoPtr
, HDC hdc
)
300 if (hdc
) return IPADDRESS_Draw (infoPtr
, hdc
);
302 hdc
= BeginPaint (infoPtr
->Self
, &ps
);
303 IPADDRESS_Draw (infoPtr
, hdc
);
304 EndPaint (infoPtr
->Self
, &ps
);
309 static BOOL
IPADDRESS_IsBlank (const IPADDRESS_INFO
*infoPtr
)
315 for (i
= 0; i
< 4; i
++)
316 if (GetWindowTextLengthW (infoPtr
->Part
[i
].EditHwnd
)) return FALSE
;
322 static int IPADDRESS_GetAddress (const IPADDRESS_INFO
*infoPtr
, LPDWORD ip_address
)
330 for (i
= 0; i
< 4; i
++) {
332 if (GetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, field
, 4))
333 ip_addr
+= wcstol(field
, NULL
, 10);
337 *ip_address
= ip_addr
;
343 static BOOL
IPADDRESS_SetRange (IPADDRESS_INFO
*infoPtr
, int index
, WORD range
)
347 if ( (index
< 0) || (index
> 3) ) return FALSE
;
349 infoPtr
->Part
[index
].LowerLimit
= range
& 0xFF;
350 infoPtr
->Part
[index
].UpperLimit
= (range
>> 8) & 0xFF;
356 static LRESULT
IPADDRESS_ClearAddress (const IPADDRESS_INFO
*infoPtr
)
362 for (i
= 0; i
< 4; i
++)
363 SetWindowTextW (infoPtr
->Part
[i
].EditHwnd
, L
"");
369 static LRESULT
IPADDRESS_SetAddress (const IPADDRESS_INFO
*infoPtr
, DWORD ip_address
)
376 for (i
= 3; i
>= 0; i
--) {
377 const IPPART_INFO
* part
= &infoPtr
->Part
[i
];
378 int value
= ip_address
& 0xff;
379 if ( (value
>= part
->LowerLimit
) && (value
<= part
->UpperLimit
) ) {
380 wsprintfW (buf
, L
"%d", value
);
381 SetWindowTextW (part
->EditHwnd
, buf
);
382 IPADDRESS_Notify (infoPtr
, EN_CHANGE
);
391 static LRESULT
IPADDRESS_SetFocusToField (const IPADDRESS_INFO
*infoPtr
, INT index
)
393 TRACE("%d\n", index
);
395 if (index
> 3 || index
< 0) index
=0;
397 SendMessageW (infoPtr
->Part
[index
].EditHwnd
, EM_SETSEL
, 0, -1);
398 SetFocus (infoPtr
->Part
[index
].EditHwnd
);
404 static BOOL
IPADDRESS_ConstrainField (const IPADDRESS_INFO
*infoPtr
, int currentfield
)
406 const IPPART_INFO
*part
;
407 int curValue
, newValue
;
410 TRACE("(currentfield=%d)\n", currentfield
);
412 if (currentfield
< 0 || currentfield
> 3) return FALSE
;
414 part
= &infoPtr
->Part
[currentfield
];
415 if (!GetWindowTextW (part
->EditHwnd
, field
, 4)) return FALSE
;
417 curValue
= wcstol(field
, NULL
, 10);
418 TRACE(" curValue=%d\n", curValue
);
420 newValue
= IPADDRESS_IPNotify(infoPtr
, currentfield
, curValue
);
421 TRACE(" newValue=%d\n", newValue
);
423 if (newValue
< part
->LowerLimit
) newValue
= part
->LowerLimit
;
424 if (newValue
> part
->UpperLimit
) newValue
= part
->UpperLimit
;
426 if (newValue
== curValue
) return FALSE
;
428 wsprintfW (field
, L
"%d", newValue
);
429 TRACE(" field=%s\n", debugstr_w(field
));
430 return SetWindowTextW (part
->EditHwnd
, field
);
434 static BOOL
IPADDRESS_GotoNextField (const IPADDRESS_INFO
*infoPtr
, int cur
, int sel
)
438 if(cur
>= -1 && cur
< 4) {
439 IPADDRESS_ConstrainField(infoPtr
, cur
);
442 const IPPART_INFO
*next
= &infoPtr
->Part
[cur
+ 1];
443 int start
= 0, end
= 0;
444 SetFocus (next
->EditHwnd
);
445 if (sel
!= POS_DEFAULT
) {
446 if (sel
== POS_RIGHT
)
447 start
= end
= GetWindowTextLengthW(next
->EditHwnd
);
448 else if (sel
== POS_SELALL
)
450 SendMessageW(next
->EditHwnd
, EM_SETSEL
, start
, end
);
459 static LRESULT
IPADDRESS_ThemeChanged (const IPADDRESS_INFO
*infoPtr
)
461 HTHEME theme
= GetWindowTheme (infoPtr
->Self
);
462 CloseThemeData (theme
);
463 theme
= OpenThemeData (theme
, WC_EDITW
);
464 InvalidateRect (infoPtr
->Self
, NULL
, TRUE
);
469 * period: move and select the text in the next field to the right if
470 * the current field is not empty(l!=0), we are not in the
471 * left most position, and nothing is selected(startsel==endsel)
473 * spacebar: same behavior as period
475 * alpha characters: completely ignored
477 * digits: accepted when field text length < 2 ignored otherwise.
478 * when 3 numbers have been entered into the field the value
479 * of the field is checked, if the field value exceeds the
480 * maximum value and is changed the field remains the current
481 * field, otherwise focus moves to the field to the right
483 * tab: change focus from the current ipaddress control to the next
484 * control in the tab order
486 * right arrow: move to the field on the right to the left most
487 * position in that field if no text is selected,
488 * we are in the right most position in the field,
489 * we are not in the right most field
491 * left arrow: move to the field on the left to the right most
492 * position in that field if no text is selected,
493 * we are in the left most position in the current field
494 * and we are not in the left most field
496 * backspace: delete the character to the left of the cursor position,
497 * if none are present move to the field on the left if
498 * we are not in the left most field and delete the right
499 * most digit in that field while keeping the cursor
500 * on the right side of the field
503 IPADDRESS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
505 HWND Self
= GetPropW (hwnd
, IP_SUBCLASS_PROP
);
506 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (Self
, 0);
507 CHAR c
= (CHAR
)wParam
;
508 INT index
, len
= 0, startsel
, endsel
;
511 TRACE("hwnd %p, msg 0x%x, wparam %#Ix, lparam %#Ix\n", hwnd
, uMsg
, wParam
, lParam
);
513 if ((index
= IPADDRESS_GetPartIndex(infoPtr
, hwnd
)) < 0)
515 ERR("We subclassed the wrong window! (hwnd=%p)\n", hwnd
);
518 part
= &infoPtr
->Part
[index
];
520 if (uMsg
== WM_CHAR
|| uMsg
== WM_KEYDOWN
) {
521 len
= GetWindowTextLengthW (hwnd
);
522 SendMessageW(hwnd
, EM_GETSEL
, (WPARAM
)&startsel
, (LPARAM
)&endsel
);
527 if(len
== 2 && startsel
==endsel
&& endsel
==len
) {
528 /* process the digit press before we check the field */
529 int return_val
= CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
531 /* if the field value was changed stay at the current field */
532 if(!IPADDRESS_ConstrainField(infoPtr
, index
))
533 IPADDRESS_GotoNextField (infoPtr
, index
, POS_DEFAULT
);
536 } else if (len
== 3 && startsel
==endsel
&& endsel
==len
)
537 IPADDRESS_GotoNextField (infoPtr
, index
, POS_SELALL
);
538 else if (len
< 3 || startsel
!= endsel
) break;
539 } else if(c
== '.' || c
== ' ') {
540 if(len
&& startsel
==endsel
&& startsel
!= 0) {
541 IPADDRESS_GotoNextField(infoPtr
, index
, POS_SELALL
);
543 } else if (c
== VK_BACK
) break;
549 if(startsel
==endsel
&& startsel
==len
) {
550 IPADDRESS_GotoNextField(infoPtr
, index
, POS_LEFT
);
555 if(startsel
==0 && startsel
==endsel
&& index
> 0) {
556 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
561 if(startsel
==endsel
&& startsel
==0 && index
> 0) {
562 IPPART_INFO
*prev
= &infoPtr
->Part
[index
-1];
565 if(GetWindowTextW(prev
->EditHwnd
, val
, 5)) {
566 val
[lstrlenW(val
) - 1] = 0;
567 SetWindowTextW(prev
->EditHwnd
, val
);
570 IPADDRESS_GotoNextField(infoPtr
, index
- 2, POS_RIGHT
);
577 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
578 IPADDRESS_Notify(infoPtr
, EN_KILLFOCUS
);
581 if (IPADDRESS_GetPartIndex(infoPtr
, (HWND
)wParam
) < 0)
582 IPADDRESS_Notify(infoPtr
, EN_SETFOCUS
);
585 return CallWindowProcW (part
->OrigProc
, hwnd
, uMsg
, wParam
, lParam
);
589 static LRESULT WINAPI
590 IPADDRESS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
592 IPADDRESS_INFO
*infoPtr
= (IPADDRESS_INFO
*)GetWindowLongPtrW (hwnd
, 0);
594 TRACE("hwnd %p, msg 0x%x, wparam %#Ix, lparam %#Ix\n", hwnd
, uMsg
, wParam
, lParam
);
596 if (!infoPtr
&& (uMsg
!= WM_CREATE
))
597 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
602 return IPADDRESS_Create (hwnd
, (LPCREATESTRUCTA
)lParam
);
605 return IPADDRESS_Destroy (infoPtr
);
608 return IPADDRESS_Enable (infoPtr
, (BOOL
)wParam
);
611 return IPADDRESS_Paint (infoPtr
, (HDC
)wParam
);
614 switch(wParam
>> 16) {
616 IPADDRESS_UpdateText(infoPtr
);
617 IPADDRESS_Notify(infoPtr
, EN_CHANGE
);
620 IPADDRESS_ConstrainField(infoPtr
, IPADDRESS_GetPartIndex(infoPtr
, (HWND
)lParam
));
625 case WM_SYSCOLORCHANGE
:
626 COMCTL32_RefreshSysColors();
629 case WM_THEMECHANGED
:
630 return IPADDRESS_ThemeChanged (infoPtr
);
632 case IPM_CLEARADDRESS
:
633 return IPADDRESS_ClearAddress (infoPtr
);
636 return IPADDRESS_SetAddress (infoPtr
, (DWORD
)lParam
);
639 return IPADDRESS_GetAddress (infoPtr
, (LPDWORD
)lParam
);
642 return IPADDRESS_SetRange (infoPtr
, (int)wParam
, (WORD
)lParam
);
645 return IPADDRESS_SetFocusToField (infoPtr
, (int)wParam
);
648 return IPADDRESS_IsBlank (infoPtr
);
651 IPADDRESS_SetFocusToField (infoPtr
, 0);
655 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
656 ERR("unknown msg %04x, wp %Ix, lp %Ix\n", uMsg
, wParam
, lParam
);
657 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
663 void IPADDRESS_Register (void)
667 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
668 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_HREDRAW
| CS_VREDRAW
;
669 wndClass
.lpfnWndProc
= IPADDRESS_WindowProc
;
670 wndClass
.cbClsExtra
= 0;
671 wndClass
.cbWndExtra
= sizeof(IPADDRESS_INFO
*);
672 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_IBEAM
);
673 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
674 wndClass
.lpszClassName
= WC_IPADDRESSW
;
676 RegisterClassW (&wndClass
);
680 void IPADDRESS_Unregister (void)
682 UnregisterClassW (WC_IPADDRESSW
, NULL
);