ipaddress.c 17.3 KB
Newer Older
1 2
/*
 * IP Address control
3
 *
4 5 6
 * Copyright 2002 Dimitrie O. Paun
 * Copyright 1999 Chris Morgan<cmorgan@wpi.edu>
 * Copyright 1999 James Abbatiello<abbeyj@wpi.edu>
7
 * Copyright 1998, 1999 Eric Kohl
8
 * Copyright 1998 Alex Priem <alexp@sci.kun.nl>
9
 *
10 11 12 13 14 15 16 17 18 19 20 21
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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
23
 *
24 25 26 27 28
 * NOTE
 * 
 * This code was audited for completeness against the documented features
 * of Comctl32.dll version 6.0 on Sep. 9, 2002, by Dimitrie O. Paun.
 * 
Robert Shearman's avatar
Robert Shearman committed
29
 * Unless otherwise noted, we believe this code to be complete, as per
30 31 32
 * the specification mentioned above.
 * If you discover missing features, or bugs, please note them below.
 * 
33 34
 */

35 36
#include <ctype.h>
#include <stdlib.h>
37
#include <stdarg.h>
38
#include <stdio.h>
39
#include <string.h>
40

41
#include "windef.h"
42
#include "winbase.h"
43 44 45
#include "wingdi.h"
#include "winuser.h"
#include "winnls.h"
46
#include "commctrl.h"
47
#include "comctl32.h"
48
#include "wine/unicode.h"
49
#include "wine/debug.h"
50

51
WINE_DEFAULT_DEBUG_CHANNEL(ipaddress);
52

53 54
typedef struct
{
55 56 57 58 59
    HWND     EditHwnd;
    INT      LowerLimit;
    INT      UpperLimit;
    WNDPROC  OrigProc;
} IPPART_INFO;
60 61 62

typedef struct
{
63
    HWND	Self;
64
    HWND	Notify;
Felix Nawothnig's avatar
Felix Nawothnig committed
65
    BOOL	Enabled;
66 67
    IPPART_INFO	Part[4];
} IPADDRESS_INFO;
68

69 70 71
static const WCHAR IP_SUBCLASS_PROP[] = 
    { 'C', 'C', 'I', 'P', '3', '2', 'S', 'u', 'b', 'c', 'l', 'a', 's', 's', 'I', 'n', 'f', 'o', 0 };

72 73 74 75
#define POS_DEFAULT	0
#define POS_LEFT	1
#define POS_RIGHT	2
#define POS_SELALL	3
76 77

static LRESULT CALLBACK
78
IPADDRESS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
79

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
static void IPADDRESS_UpdateText (const IPADDRESS_INFO *infoPtr)
{
    static const WCHAR zero[2] = {'0', 0};
    static const WCHAR dot[2]  = {'.', 0};
    WCHAR field[4];
    WCHAR ip[16];
    INT i;

    ip[0] = 0;

    for (i = 0; i < 4; i++) {
        if (GetWindowTextW (infoPtr->Part[i].EditHwnd, field, 4))
            strcatW(ip, field);
        else
            /* empty edit treated as zero */
            strcatW(ip, zero);
        if (i != 3)
            strcatW(ip, dot);
    }

    SetWindowTextW(infoPtr->Self, ip);
}

103
static LRESULT IPADDRESS_Notify (const IPADDRESS_INFO *infoPtr, UINT command)
104
{
105
    HWND hwnd = infoPtr->Self;
106

107
    TRACE("(command=%x)\n", command);
108

109
    return SendMessageW (infoPtr->Notify, WM_COMMAND,
110
             MAKEWPARAM (GetWindowLongPtrW (hwnd, GWLP_ID), command), (LPARAM)hwnd);
111 112
}

113
static INT IPADDRESS_IPNotify (const IPADDRESS_INFO *infoPtr, INT field, INT value)
114
{
115
    NMIPADDRESS nmip;
116

117
    TRACE("(field=%x, value=%d)\n", field, value);
118

119
    nmip.hdr.hwndFrom = infoPtr->Self;
120
    nmip.hdr.idFrom   = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
121
    nmip.hdr.code     = IPN_FIELDCHANGED;
122

123 124
    nmip.iField = field;
    nmip.iValue = value;
125

126
    SendMessageW (infoPtr->Notify, WM_NOTIFY, nmip.hdr.idFrom, (LPARAM)&nmip);
127

128
    TRACE("<-- %d\n", nmip.iValue);
129

130
    return nmip.iValue;
131
}
132 133


134
static int IPADDRESS_GetPartIndex(const IPADDRESS_INFO *infoPtr, HWND hwnd)
135
{
136
    int i;
137

138
    TRACE("(hwnd=%p)\n", hwnd);
139 140

    for (i = 0; i < 4; i++)
141
        if (infoPtr->Part[i].EditHwnd == hwnd) return i;
142

143
    ERR("We subclassed the wrong window! (hwnd=%p)\n", hwnd);
144
    return -1;
145 146 147
}


148
static LRESULT IPADDRESS_Draw (const IPADDRESS_INFO *infoPtr, HDC hdc)
149
{
150
    static const WCHAR dotW[] = { '.', 0 };
151 152
    RECT rect, rcPart;
    POINT pt;
Felix Nawothnig's avatar
Felix Nawothnig committed
153
    COLORREF bgCol, fgCol;
154
    int i;
155

156
    TRACE("\n");
157

158
    GetClientRect (infoPtr->Self, &rect);
Felix Nawothnig's avatar
Felix Nawothnig committed
159 160

    if (infoPtr->Enabled) {
161 162
        bgCol = comctl32_color.clrWindow;
        fgCol = comctl32_color.clrWindowText;
Felix Nawothnig's avatar
Felix Nawothnig committed
163
    } else {
164 165
        bgCol = comctl32_color.clr3dFace;
        fgCol = comctl32_color.clrGrayText;
Felix Nawothnig's avatar
Felix Nawothnig committed
166 167
    }
    
Frank Richter's avatar
Frank Richter committed
168
    FillRect (hdc, &rect, (HBRUSH)(DWORD_PTR)(bgCol+1));
169
    DrawEdge (hdc, &rect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
Felix Nawothnig's avatar
Felix Nawothnig committed
170
    
171 172
    SetBkColor  (hdc, bgCol);
    SetTextColor(hdc, fgCol);
173 174 175 176 177

    for (i = 0; i < 3; i++) {
        GetWindowRect (infoPtr->Part[i].EditHwnd, &rcPart);
	pt.x = rcPart.right;
	ScreenToClient(infoPtr->Self, &pt);
178
	rect.left = pt.x;
179 180 181 182
	GetWindowRect (infoPtr->Part[i+1].EditHwnd, &rcPart);
	pt.x = rcPart.left;
	ScreenToClient(infoPtr->Self, &pt);
	rect.right = pt.x;
183
	DrawTextW(hdc, dotW, 1, &rect, DT_SINGLELINE | DT_CENTER | DT_BOTTOM);
184
    }
185

186
    return 0;
187
}
188 189


190
static LRESULT IPADDRESS_Create (HWND hwnd, const CREATESTRUCTA *lpCreate)
191
{
192 193 194
    IPADDRESS_INFO *infoPtr;
    RECT rcClient, edit;
    int i, fieldsize;
195 196
    HFONT hFont, hSysFont;
    LOGFONTW logFont, logSysFont;
197 198

    TRACE("\n");
199

200 201
    SetWindowLongW (hwnd, GWL_STYLE,
		    GetWindowLongW(hwnd, GWL_STYLE) & ~WS_BORDER);
202

203
    infoPtr = Alloc (sizeof(IPADDRESS_INFO));
204
    if (!infoPtr) return -1;
205
    SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
206

207
    GetClientRect (hwnd, &rcClient);
208

209
    fieldsize = (rcClient.right - rcClient.left) / 4;
210

211 212
    edit.top    = rcClient.top + 2;
    edit.bottom = rcClient.bottom - 2;
213

214
    infoPtr->Self = hwnd;
215
    infoPtr->Enabled = TRUE;
216
    infoPtr->Notify = lpCreate->hwndParent;
217

218
    hSysFont = GetStockObject(ANSI_VAR_FONT);
219 220 221 222 223
    GetObjectW(hSysFont, sizeof(LOGFONTW), &logSysFont);
    SystemParametersInfoW(SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
    strcpyW(logFont.lfFaceName, logSysFont.lfFaceName);
    hFont = CreateFontIndirectW(&logFont);

224 225
    for (i = 0; i < 4; i++) {
	IPPART_INFO* part = &infoPtr->Part[i];
226

227 228 229 230 231
	part->LowerLimit = 0;
	part->UpperLimit = 255;
        edit.left = rcClient.left + i*fieldsize + 6;
        edit.right = rcClient.left + (i+1)*fieldsize - 2;
        part->EditHwnd =
232
		CreateWindowW (WC_EDITW, NULL, WS_CHILD | WS_VISIBLE | ES_CENTER,
233 234
                               edit.left, edit.top, edit.right - edit.left,
			       edit.bottom - edit.top, hwnd, (HMENU) 1,
235
			       (HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE), NULL);
236
        SendMessageW(part->EditHwnd, WM_SETFONT, (WPARAM) hFont, FALSE);
237
	SetPropW(part->EditHwnd, IP_SUBCLASS_PROP, hwnd);
238
        part->OrigProc = (WNDPROC)
239 240
		SetWindowLongPtrW (part->EditHwnd, GWLP_WNDPROC,
				(DWORD_PTR)IPADDRESS_SubclassProc);
241
        EnableWindow(part->EditHwnd, infoPtr->Enabled);
242
    }
243

244 245
    IPADDRESS_UpdateText (infoPtr);

246
    return 0;
247
}
248 249


250
static LRESULT IPADDRESS_Destroy (IPADDRESS_INFO *infoPtr)
251
{
252
    int i;
253

254
    TRACE("\n");
255

256 257
    for (i = 0; i < 4; i++) {
	IPPART_INFO* part = &infoPtr->Part[i];
258
        SetWindowLongPtrW (part->EditHwnd, GWLP_WNDPROC, (DWORD_PTR)part->OrigProc);
259
    }
260

261
    SetWindowLongPtrW (infoPtr->Self, 0, 0);
262
    Free (infoPtr);
263
    return 0;
264 265 266
}


Felix Nawothnig's avatar
Felix Nawothnig committed
267 268 269 270 271 272 273 274 275 276 277 278 279 280
static LRESULT IPADDRESS_Enable (IPADDRESS_INFO *infoPtr, BOOL enabled)
{
    int i;

    infoPtr->Enabled = enabled;

    for (i = 0; i < 4; i++)
        EnableWindow(infoPtr->Part[i].EditHwnd, enabled);

    InvalidateRgn(infoPtr->Self, NULL, FALSE);
    return 0;
}


281
static LRESULT IPADDRESS_Paint (const IPADDRESS_INFO *infoPtr, HDC hdc)
282
{
283
    PAINTSTRUCT ps;
284

285
    TRACE("\n");
286

287
    if (hdc) return IPADDRESS_Draw (infoPtr, hdc);
288

289 290 291 292
    hdc = BeginPaint (infoPtr->Self, &ps);
    IPADDRESS_Draw (infoPtr, hdc);
    EndPaint (infoPtr->Self, &ps);
    return 0;
293 294 295
}


296
static BOOL IPADDRESS_IsBlank (const IPADDRESS_INFO *infoPtr)
297
{
298
    int i;
299

300
    TRACE("\n");
301

302 303 304 305
    for (i = 0; i < 4; i++)
        if (GetWindowTextLengthW (infoPtr->Part[i].EditHwnd)) return FALSE;

    return TRUE;
306 307
}

308

309
static int IPADDRESS_GetAddress (const IPADDRESS_INFO *infoPtr, LPDWORD ip_address)
310
{
311 312 313
    WCHAR field[5];
    int i, invalid = 0;
    DWORD ip_addr = 0;
314

315
    TRACE("\n");
316

317 318
    for (i = 0; i < 4; i++) {
        ip_addr *= 256;
319
        if (GetWindowTextW (infoPtr->Part[i].EditHwnd, field, 4))
320
  	    ip_addr += atolW(field);
321 322 323 324
	else
	    invalid++;
    }
    *ip_address = ip_addr;
325

326
    return 4 - invalid;
327 328
}

329

330
static BOOL IPADDRESS_SetRange (IPADDRESS_INFO *infoPtr, int index, WORD range)
331
{
332
    TRACE("\n");
333

334
    if ( (index < 0) || (index > 3) ) return FALSE;
335

336 337 338 339
    infoPtr->Part[index].LowerLimit = range & 0xFF;
    infoPtr->Part[index].UpperLimit = (range >> 8)  & 0xFF;

    return TRUE;
340 341 342
}


343
static void IPADDRESS_ClearAddress (const IPADDRESS_INFO *infoPtr)
344
{
Alexandre Julliard's avatar
Alexandre Julliard committed
345
    WCHAR nil[1] = { 0 };
346
    int i;
347

348
    TRACE("\n");
349

350
    for (i = 0; i < 4; i++)
351
        SetWindowTextW (infoPtr->Part[i].EditHwnd, nil);
352 353
}

354

355
static LRESULT IPADDRESS_SetAddress (const IPADDRESS_INFO *infoPtr, DWORD ip_address)
356
{
357 358
    WCHAR buf[20];
    static const WCHAR fmt[] = { '%', 'd', 0 };
359 360 361
    int i;

    TRACE("\n");
362

363
    for (i = 3; i >= 0; i--) {
364
	const IPPART_INFO* part = &infoPtr->Part[i];
365 366
        int value = ip_address & 0xff;
	if ( (value >= part->LowerLimit) && (value <= part->UpperLimit) ) {
367
	    wsprintfW (buf, fmt, value);
368 369 370 371 372
	    SetWindowTextW (part->EditHwnd, buf);
	    IPADDRESS_Notify (infoPtr, EN_CHANGE);
        }
        ip_address >>= 8;
    }
373

374
    return TRUE;
375
}
376 377


378
static void IPADDRESS_SetFocusToField (const IPADDRESS_INFO *infoPtr, INT index)
379
{
380
    TRACE("(index=%d)\n", index);
381

Alex Zorach's avatar
Alex Zorach committed
382
    if (index > 3 || index < 0) index=0;
383

384
    SetFocus (infoPtr->Part[index].EditHwnd);
385 386 387
}


388
static BOOL IPADDRESS_ConstrainField (const IPADDRESS_INFO *infoPtr, int currentfield)
389
{
390
    const IPPART_INFO *part = &infoPtr->Part[currentfield];
391 392
    WCHAR field[10];
    static const WCHAR fmt[] = { '%', 'd', 0 };
393
    int curValue, newValue;
394

395
    TRACE("(currentfield=%d)\n", currentfield);
396

397
    if (currentfield < 0 || currentfield > 3) return FALSE;
398

399
    if (!GetWindowTextW (part->EditHwnd, field, 4)) return FALSE;
400

401
    curValue = atoiW(field);
402
    TRACE("  curValue=%d\n", curValue);
403

404 405 406 407 408
    newValue = IPADDRESS_IPNotify(infoPtr, currentfield, curValue);
    TRACE("  newValue=%d\n", newValue);

    if (newValue < part->LowerLimit) newValue = part->LowerLimit;
    if (newValue > part->UpperLimit) newValue = part->UpperLimit;
409

410
    if (newValue == curValue) return FALSE;
411

412
    wsprintfW (field, fmt, newValue);
413
    TRACE("  field=%s\n", debugstr_w(field));
414
    return SetWindowTextW (part->EditHwnd, field);
415
}
416 417


418
static BOOL IPADDRESS_GotoNextField (const IPADDRESS_INFO *infoPtr, int cur, int sel)
419
{
420 421 422 423
    TRACE("\n");

    if(cur >= -1 && cur < 4) {
	IPADDRESS_ConstrainField(infoPtr, cur);
424

425
	if(cur < 3) {
426
	    const IPPART_INFO *next = &infoPtr->Part[cur + 1];
427 428 429 430 431 432 433 434 435 436 437
	    int start = 0, end = 0;
            SetFocus (next->EditHwnd);
	    if (sel != POS_DEFAULT) {
		if (sel == POS_RIGHT)
		    start = end = GetWindowTextLengthW(next->EditHwnd);
		else if (sel == POS_SELALL)
		    end = -1;
	        SendMessageW(next->EditHwnd, EM_SETSEL, start, end);
	    }
	    return TRUE;
	}
438

439
    }
440
    return FALSE;
441 442 443
}


444 445 446 447 448 449 450 451 452
/*
 * period: move and select the text in the next field to the right if
 *         the current field is not empty(l!=0), we are not in the
 *         left most position, and nothing is selected(startsel==endsel)
 *
 * spacebar: same behavior as period
 *
 * alpha characters: completely ignored
 *
453 454 455 456 457
 * digits: accepted when field text length < 2 ignored otherwise.
 *         when 3 numbers have been entered into the field the value
 *         of the field is checked, if the field value exceeds the
 *         maximum value and is changed the field remains the current
 *         field, otherwise focus moves to the field to the right
458
 *
459 460
 * tab: change focus from the current ipaddress control to the next
 *      control in the tab order
461
 *
462 463 464 465
 * right arrow: move to the field on the right to the left most
 *              position in that field if no text is selected,
 *              we are in the right most position in the field,
 *              we are not in the right most field
466
 *
467 468 469 470
 * left arrow: move to the field on the left to the right most
 *             position in that field if no text is selected,
 *             we are in the left most position in the current field
 *             and we are not in the left most field
471
 *
472 473 474 475 476
 * backspace: delete the character to the left of the cursor position,
 *            if none are present move to the field on the left if
 *            we are not in the left most field and delete the right
 *            most digit in that field while keeping the cursor
 *            on the right side of the field
477
 */
478
LRESULT CALLBACK
479
IPADDRESS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
480
{
481
    HWND Self = GetPropW (hwnd, IP_SUBCLASS_PROP);
482
    IPADDRESS_INFO *infoPtr = (IPADDRESS_INFO *)GetWindowLongPtrW (Self, 0);
483 484 485
    CHAR c = (CHAR)wParam;
    INT index, len = 0, startsel, endsel;
    IPPART_INFO *part;
486

487
    TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd, uMsg, wParam, lParam);
488

489 490
    if ( (index = IPADDRESS_GetPartIndex(infoPtr, hwnd)) < 0) return 0;
    part = &infoPtr->Part[index];
491

492 493 494
    if (uMsg == WM_CHAR || uMsg == WM_KEYDOWN) {
	len = GetWindowTextLengthW (hwnd);
	SendMessageW(hwnd, EM_GETSEL, (WPARAM)&startsel, (LPARAM)&endsel);
495
    }
496
    switch (uMsg) {
497
 	case WM_CHAR:
498 499 500 501
 	    if(isdigit(c)) {
		if(len == 2 && startsel==endsel && endsel==len) {
		    /* process the digit press before we check the field */
		    int return_val = CallWindowProcW (part->OrigProc, hwnd, uMsg, wParam, lParam);
502

503 504 505 506 507 508 509
		    /* if the field value was changed stay at the current field */
		    if(!IPADDRESS_ConstrainField(infoPtr, index))
			IPADDRESS_GotoNextField (infoPtr, index, POS_DEFAULT);

		    return return_val;
		} else if (len == 3 && startsel==endsel && endsel==len)
		    IPADDRESS_GotoNextField (infoPtr, index, POS_SELALL);
510
		else if (len < 3 || startsel != endsel) break;
511 512
	    } else if(c == '.' || c == ' ') {
		if(len && startsel==endsel && startsel != 0) {
513
		    IPADDRESS_GotoNextField(infoPtr, index, POS_SELALL);
514 515 516
		}
 	    } else if (c == VK_BACK) break;
	    return 0;
517

518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
	case WM_KEYDOWN:
	    switch(c) {
		case VK_RIGHT:
		    if(startsel==endsel && startsel==len) {
			IPADDRESS_GotoNextField(infoPtr, index, POS_LEFT);
			return 0;
		    }
		    break;
		case VK_LEFT:
		    if(startsel==0 && startsel==endsel && index > 0) {
			IPADDRESS_GotoNextField(infoPtr, index - 2, POS_RIGHT);
			return 0;
		    }
		    break;
		case VK_BACK:
		    if(startsel==endsel && startsel==0 && index > 0) {
			IPPART_INFO *prev = &infoPtr->Part[index-1];
			WCHAR val[10];
536

537 538 539 540
			if(GetWindowTextW(prev->EditHwnd, val, 5)) {
			    val[lstrlenW(val) - 1] = 0;
			    SetWindowTextW(prev->EditHwnd, val);
			}
541

542 543 544 545
			IPADDRESS_GotoNextField(infoPtr, index - 2, POS_RIGHT);
			return 0;
		    }
		    break;
546
	    }
547 548 549 550 551 552 553 554 555 556 557
	    break;
	case WM_KILLFOCUS:
	    if (IPADDRESS_GetPartIndex(infoPtr, (HWND)wParam) < 0)
		IPADDRESS_Notify(infoPtr, EN_KILLFOCUS);
	    break;
	case WM_SETFOCUS:
	    if (IPADDRESS_GetPartIndex(infoPtr, (HWND)wParam) < 0)
		IPADDRESS_Notify(infoPtr, EN_SETFOCUS);
	    break;
    }
    return CallWindowProcW (part->OrigProc, hwnd, uMsg, wParam, lParam);
558
}
559

560

561
static LRESULT WINAPI
562
IPADDRESS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
563
{
564
    IPADDRESS_INFO *infoPtr = (IPADDRESS_INFO *)GetWindowLongPtrW (hwnd, 0);
565

566
    TRACE("(hwnd=%p msg=0x%x wparam=0x%lx lparam=0x%lx)\n", hwnd, uMsg, wParam, lParam);
567

568 569
    if (!infoPtr && (uMsg != WM_CREATE))
        return DefWindowProcW (hwnd, uMsg, wParam, lParam);
570

571 572 573
    switch (uMsg)
    {
	case WM_CREATE:
574
	    return IPADDRESS_Create (hwnd, (LPCREATESTRUCTA)lParam);
575 576 577 578

	case WM_DESTROY:
	    return IPADDRESS_Destroy (infoPtr);

Felix Nawothnig's avatar
Felix Nawothnig committed
579 580 581
	case WM_ENABLE:
	    return IPADDRESS_Enable (infoPtr, (BOOL)wParam);

582 583 584 585 586 587
	case WM_PAINT:
	    return IPADDRESS_Paint (infoPtr, (HDC)wParam);

	case WM_COMMAND:
	    switch(wParam >> 16) {
		case EN_CHANGE:
588
		    IPADDRESS_UpdateText(infoPtr);
589 590 591 592 593 594 595 596
		    IPADDRESS_Notify(infoPtr, EN_CHANGE);
		    break;
		case EN_KILLFOCUS:
		    IPADDRESS_ConstrainField(infoPtr, IPADDRESS_GetPartIndex(infoPtr, (HWND)lParam));
		    break;
	    }
	    break;

597 598 599 600
        case WM_SYSCOLORCHANGE:
            COMCTL32_RefreshSysColors();
            return 0;

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
        case IPM_CLEARADDRESS:
            IPADDRESS_ClearAddress (infoPtr);
	    break;

        case IPM_SETADDRESS:
            return IPADDRESS_SetAddress (infoPtr, (DWORD)lParam);

        case IPM_GETADDRESS:
 	    return IPADDRESS_GetAddress (infoPtr, (LPDWORD)lParam);

	case IPM_SETRANGE:
	    return IPADDRESS_SetRange (infoPtr, (int)wParam, (WORD)lParam);

	case IPM_SETFOCUS:
	    IPADDRESS_SetFocusToField (infoPtr, (int)wParam);
	    break;

	case IPM_ISBLANK:
	    return IPADDRESS_IsBlank (infoPtr);

	default:
622
	    if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
623
		ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
624
	    return DefWindowProcW (hwnd, uMsg, wParam, lParam);
625 626 627 628 629
    }
    return 0;
}


630
void IPADDRESS_Register (void)
631
{
632 633 634
    WNDCLASSW wndClass;

    ZeroMemory (&wndClass, sizeof(WNDCLASSW));
635 636
    wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW;
    wndClass.lpfnWndProc   = IPADDRESS_WindowProc;
637 638
    wndClass.cbClsExtra    = 0;
    wndClass.cbWndExtra    = sizeof(IPADDRESS_INFO *);
639
    wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_IBEAM);
640
    wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
641
    wndClass.lpszClassName = WC_IPADDRESSW;
642

643
    RegisterClassW (&wndClass);
644 645
}

646

647
void IPADDRESS_Unregister (void)
648
{
649
    UnregisterClassW (WC_IPADDRESSW, NULL);
650
}