d3d11: Remove null dxgi object checks.
[wine.git] / dlls / comctl32 / ipaddress.c
blob146a5a5ae1f98aae64898a195507f64df6910233
1 /*
2 * IP Address control
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
25 #include <ctype.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <string.h>
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "winnls.h"
36 #include "commctrl.h"
37 #include "comctl32.h"
38 #include "uxtheme.h"
39 #include "vsstyle.h"
40 #include "vssym32.h"
41 #include "wine/debug.h"
42 #include "wine/heap.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(ipaddress);
46 typedef struct
48 HWND EditHwnd;
49 INT LowerLimit;
50 INT UpperLimit;
51 WNDPROC OrigProc;
52 } IPPART_INFO;
54 typedef struct
56 HWND Self;
57 HWND Notify;
58 BOOL Enabled;
59 IPPART_INFO Part[4];
60 } IPADDRESS_INFO;
62 static const WCHAR IP_SUBCLASS_PROP[] = L"CCIP32SubclassInfo";
64 #define POS_DEFAULT 0
65 #define POS_LEFT 1
66 #define POS_RIGHT 2
67 #define POS_SELALL 3
69 static LRESULT CALLBACK
70 IPADDRESS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
72 static void IPADDRESS_UpdateText (const IPADDRESS_INFO *infoPtr)
74 WCHAR field[4];
75 WCHAR ip[16];
76 INT i;
78 ip[0] = 0;
80 for (i = 0; i < 4; i++) {
81 if (GetWindowTextW (infoPtr->Part[i].EditHwnd, field, 4))
82 lstrcatW(ip, field);
83 else
84 /* empty edit treated as zero */
85 lstrcatW(ip, L"0");
86 if (i != 3)
87 lstrcatW(ip, L".");
90 SetWindowTextW(infoPtr->Self, ip);
93 static LRESULT IPADDRESS_Notify (const IPADDRESS_INFO *infoPtr, UINT command)
95 HWND hwnd = infoPtr->Self;
97 TRACE("(command=%x)\n", command);
99 return SendMessageW (infoPtr->Notify, WM_COMMAND,
100 MAKEWPARAM (GetWindowLongPtrW (hwnd, GWLP_ID), command), (LPARAM)hwnd);
103 static INT IPADDRESS_IPNotify (const IPADDRESS_INFO *infoPtr, INT field, INT value)
105 NMIPADDRESS nmip;
107 TRACE("(field=%x, value=%d)\n", field, value);
109 nmip.hdr.hwndFrom = infoPtr->Self;
110 nmip.hdr.idFrom = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
111 nmip.hdr.code = IPN_FIELDCHANGED;
113 nmip.iField = field;
114 nmip.iValue = value;
116 SendMessageW (infoPtr->Notify, WM_NOTIFY, nmip.hdr.idFrom, (LPARAM)&nmip);
118 TRACE("<-- %d\n", nmip.iValue);
120 return nmip.iValue;
124 static int IPADDRESS_GetPartIndex(const IPADDRESS_INFO *infoPtr, HWND hwnd)
126 int i;
128 TRACE("(hwnd=%p)\n", hwnd);
130 for (i = 0; i < 4; i++)
131 if (infoPtr->Part[i].EditHwnd == hwnd) return i;
133 return -1;
137 static LRESULT IPADDRESS_Draw (const IPADDRESS_INFO *infoPtr, HDC hdc)
139 RECT rect, rcPart;
140 COLORREF bgCol, fgCol;
141 HTHEME theme;
142 int i, state = ETS_NORMAL;
144 TRACE("\n");
146 GetClientRect (infoPtr->Self, &rect);
148 theme = GetWindowTheme (infoPtr->Self);
150 if (theme) {
151 DWORD dwStyle = GetWindowLongW (infoPtr->Self, GWL_STYLE);
153 if (!infoPtr->Enabled)
154 state = ETS_DISABLED;
155 else if (dwStyle & ES_READONLY)
156 state = ETS_READONLY;
157 else if (GetFocus() == infoPtr->Self)
158 state = ETS_FOCUSED;
160 GetThemeColor(theme, EP_EDITTEXT, state, TMT_FILLCOLOR, &bgCol);
161 GetThemeColor(theme, EP_EDITTEXT, state, TMT_TEXTCOLOR, &fgCol);
163 if (IsThemeBackgroundPartiallyTransparent (theme, EP_EDITTEXT, state))
164 DrawThemeParentBackground(infoPtr->Self, hdc, &rect);
165 DrawThemeBackground (theme, hdc, EP_EDITTEXT, state, &rect, 0);
166 } else {
167 if (infoPtr->Enabled) {
168 bgCol = comctl32_color.clrWindow;
169 fgCol = comctl32_color.clrWindowText;
170 } else {
171 bgCol = comctl32_color.clr3dFace;
172 fgCol = comctl32_color.clrGrayText;
175 FillRect (hdc, &rect, (HBRUSH)(DWORD_PTR)(bgCol+1));
176 DrawEdge (hdc, &rect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
179 SetBkColor (hdc, bgCol);
180 SetTextColor(hdc, fgCol);
182 for (i = 0; i < 3; i++) {
183 GetWindowRect (infoPtr->Part[i].EditHwnd, &rcPart);
184 MapWindowPoints( 0, infoPtr->Self, (POINT *)&rcPart, 2 );
185 rect.left = rcPart.right;
186 GetWindowRect (infoPtr->Part[i+1].EditHwnd, &rcPart);
187 MapWindowPoints( 0, infoPtr->Self, (POINT *)&rcPart, 2 );
188 rect.right = rcPart.left;
190 if (theme)
191 DrawThemeText(theme, hdc, EP_EDITTEXT, state, L".", 1, DT_SINGLELINE | DT_CENTER | DT_BOTTOM, 0, &rect);
192 else
193 DrawTextW(hdc, L".", 1, &rect, DT_SINGLELINE | DT_CENTER | DT_BOTTOM);
196 return 0;
200 static LRESULT IPADDRESS_Create (HWND hwnd, const CREATESTRUCTA *lpCreate)
202 IPADDRESS_INFO *infoPtr;
203 RECT rcClient, edit;
204 int i, fieldsize;
205 HFONT hFont, hSysFont;
206 LOGFONTW logFont, logSysFont;
208 TRACE("\n");
210 SetWindowLongW (hwnd, GWL_STYLE,
211 GetWindowLongW(hwnd, GWL_STYLE) & ~WS_BORDER);
213 infoPtr = heap_alloc_zero (sizeof(*infoPtr));
214 if (!infoPtr) return -1;
215 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
217 GetClientRect (hwnd, &rcClient);
219 fieldsize = (rcClient.right - rcClient.left) / 4;
221 edit.top = rcClient.top + 2;
222 edit.bottom = rcClient.bottom - 2;
224 infoPtr->Self = hwnd;
225 infoPtr->Enabled = TRUE;
226 infoPtr->Notify = lpCreate->hwndParent;
228 hSysFont = GetStockObject(ANSI_VAR_FONT);
229 GetObjectW(hSysFont, sizeof(LOGFONTW), &logSysFont);
230 SystemParametersInfoW(SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
231 lstrcpyW(logFont.lfFaceName, logSysFont.lfFaceName);
232 hFont = CreateFontIndirectW(&logFont);
234 for (i = 0; i < 4; i++) {
235 IPPART_INFO* part = &infoPtr->Part[i];
237 part->LowerLimit = 0;
238 part->UpperLimit = 255;
239 edit.left = rcClient.left + i*fieldsize + 6;
240 edit.right = rcClient.left + (i+1)*fieldsize - 2;
241 part->EditHwnd =
242 CreateWindowW (WC_EDITW, NULL, WS_CHILD | WS_VISIBLE | ES_CENTER,
243 edit.left, edit.top, edit.right - edit.left,
244 edit.bottom - edit.top, hwnd, (HMENU) 1,
245 (HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE), NULL);
246 SendMessageW(part->EditHwnd, WM_SETFONT, (WPARAM) hFont, FALSE);
247 SetPropW(part->EditHwnd, IP_SUBCLASS_PROP, hwnd);
248 part->OrigProc = (WNDPROC)
249 SetWindowLongPtrW (part->EditHwnd, GWLP_WNDPROC,
250 (DWORD_PTR)IPADDRESS_SubclassProc);
251 EnableWindow(part->EditHwnd, infoPtr->Enabled);
254 IPADDRESS_UpdateText (infoPtr);
255 OpenThemeData (infoPtr->Self, WC_EDITW);
257 return 0;
261 static LRESULT IPADDRESS_Destroy (IPADDRESS_INFO *infoPtr)
263 HTHEME theme;
264 int i;
266 TRACE("\n");
268 for (i = 0; i < 4; i++) {
269 IPPART_INFO* part = &infoPtr->Part[i];
270 SetWindowLongPtrW (part->EditHwnd, GWLP_WNDPROC, (DWORD_PTR)part->OrigProc);
273 SetWindowLongPtrW (infoPtr->Self, 0, 0);
274 theme = GetWindowTheme (infoPtr->Self);
275 CloseThemeData (theme);
276 heap_free (infoPtr);
277 return 0;
281 static LRESULT IPADDRESS_Enable (IPADDRESS_INFO *infoPtr, BOOL enabled)
283 int i;
285 infoPtr->Enabled = enabled;
287 for (i = 0; i < 4; i++)
288 EnableWindow(infoPtr->Part[i].EditHwnd, enabled);
290 InvalidateRgn(infoPtr->Self, NULL, FALSE);
291 return 0;
295 static LRESULT IPADDRESS_Paint (const IPADDRESS_INFO *infoPtr, HDC hdc)
297 PAINTSTRUCT ps;
299 TRACE("\n");
301 if (hdc) return IPADDRESS_Draw (infoPtr, hdc);
303 hdc = BeginPaint (infoPtr->Self, &ps);
304 IPADDRESS_Draw (infoPtr, hdc);
305 EndPaint (infoPtr->Self, &ps);
306 return 0;
310 static BOOL IPADDRESS_IsBlank (const IPADDRESS_INFO *infoPtr)
312 int i;
314 TRACE("\n");
316 for (i = 0; i < 4; i++)
317 if (GetWindowTextLengthW (infoPtr->Part[i].EditHwnd)) return FALSE;
319 return TRUE;
323 static int IPADDRESS_GetAddress (const IPADDRESS_INFO *infoPtr, LPDWORD ip_address)
325 WCHAR field[5];
326 int i, invalid = 0;
327 DWORD ip_addr = 0;
329 TRACE("\n");
331 for (i = 0; i < 4; i++) {
332 ip_addr *= 256;
333 if (GetWindowTextW (infoPtr->Part[i].EditHwnd, field, 4))
334 ip_addr += wcstol(field, NULL, 10);
335 else
336 invalid++;
338 *ip_address = ip_addr;
340 return 4 - invalid;
344 static BOOL IPADDRESS_SetRange (IPADDRESS_INFO *infoPtr, int index, WORD range)
346 TRACE("\n");
348 if ( (index < 0) || (index > 3) ) return FALSE;
350 infoPtr->Part[index].LowerLimit = range & 0xFF;
351 infoPtr->Part[index].UpperLimit = (range >> 8) & 0xFF;
353 return TRUE;
357 static LRESULT IPADDRESS_ClearAddress (const IPADDRESS_INFO *infoPtr)
359 int i;
361 TRACE("\n");
363 for (i = 0; i < 4; i++)
364 SetWindowTextW (infoPtr->Part[i].EditHwnd, L"");
366 return 1;
370 static LRESULT IPADDRESS_SetAddress (const IPADDRESS_INFO *infoPtr, DWORD ip_address)
372 WCHAR buf[20];
373 int i;
375 TRACE("\n");
377 for (i = 3; i >= 0; i--) {
378 const IPPART_INFO* part = &infoPtr->Part[i];
379 int value = ip_address & 0xff;
380 if ( (value >= part->LowerLimit) && (value <= part->UpperLimit) ) {
381 wsprintfW (buf, L"%d", value);
382 SetWindowTextW (part->EditHwnd, buf);
383 IPADDRESS_Notify (infoPtr, EN_CHANGE);
385 ip_address >>= 8;
388 return TRUE;
392 static LRESULT IPADDRESS_SetFocusToField (const IPADDRESS_INFO *infoPtr, INT index)
394 TRACE("%d\n", index);
396 if (index > 3 || index < 0) index=0;
398 SendMessageW (infoPtr->Part[index].EditHwnd, EM_SETSEL, 0, -1);
399 SetFocus (infoPtr->Part[index].EditHwnd);
401 return 1;
405 static BOOL IPADDRESS_ConstrainField (const IPADDRESS_INFO *infoPtr, int currentfield)
407 const IPPART_INFO *part;
408 int curValue, newValue;
409 WCHAR field[10];
411 TRACE("(currentfield=%d)\n", currentfield);
413 if (currentfield < 0 || currentfield > 3) return FALSE;
415 part = &infoPtr->Part[currentfield];
416 if (!GetWindowTextW (part->EditHwnd, field, 4)) return FALSE;
418 curValue = wcstol(field, NULL, 10);
419 TRACE(" curValue=%d\n", curValue);
421 newValue = IPADDRESS_IPNotify(infoPtr, currentfield, curValue);
422 TRACE(" newValue=%d\n", newValue);
424 if (newValue < part->LowerLimit) newValue = part->LowerLimit;
425 if (newValue > part->UpperLimit) newValue = part->UpperLimit;
427 if (newValue == curValue) return FALSE;
429 wsprintfW (field, L"%d", newValue);
430 TRACE(" field=%s\n", debugstr_w(field));
431 return SetWindowTextW (part->EditHwnd, field);
435 static BOOL IPADDRESS_GotoNextField (const IPADDRESS_INFO *infoPtr, int cur, int sel)
437 TRACE("\n");
439 if(cur >= -1 && cur < 4) {
440 IPADDRESS_ConstrainField(infoPtr, cur);
442 if(cur < 3) {
443 const IPPART_INFO *next = &infoPtr->Part[cur + 1];
444 int start = 0, end = 0;
445 SetFocus (next->EditHwnd);
446 if (sel != POS_DEFAULT) {
447 if (sel == POS_RIGHT)
448 start = end = GetWindowTextLengthW(next->EditHwnd);
449 else if (sel == POS_SELALL)
450 end = -1;
451 SendMessageW(next->EditHwnd, EM_SETSEL, start, end);
453 return TRUE;
457 return FALSE;
460 static LRESULT IPADDRESS_ThemeChanged (const IPADDRESS_INFO *infoPtr)
462 HTHEME theme = GetWindowTheme (infoPtr->Self);
463 CloseThemeData (theme);
464 theme = OpenThemeData (theme, WC_EDITW);
465 InvalidateRect (infoPtr->Self, NULL, TRUE);
466 return 0;
470 * period: move and select the text in the next field to the right if
471 * the current field is not empty(l!=0), we are not in the
472 * left most position, and nothing is selected(startsel==endsel)
474 * spacebar: same behavior as period
476 * alpha characters: completely ignored
478 * digits: accepted when field text length < 2 ignored otherwise.
479 * when 3 numbers have been entered into the field the value
480 * of the field is checked, if the field value exceeds the
481 * maximum value and is changed the field remains the current
482 * field, otherwise focus moves to the field to the right
484 * tab: change focus from the current ipaddress control to the next
485 * control in the tab order
487 * right arrow: move to the field on the right to the left most
488 * position in that field if no text is selected,
489 * we are in the right most position in the field,
490 * we are not in the right most field
492 * left arrow: move to the field on the left to the right most
493 * position in that field if no text is selected,
494 * we are in the left most position in the current field
495 * and we are not in the left most field
497 * backspace: delete the character to the left of the cursor position,
498 * if none are present move to the field on the left if
499 * we are not in the left most field and delete the right
500 * most digit in that field while keeping the cursor
501 * on the right side of the field
503 LRESULT CALLBACK
504 IPADDRESS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
506 HWND Self = GetPropW (hwnd, IP_SUBCLASS_PROP);
507 IPADDRESS_INFO *infoPtr = (IPADDRESS_INFO *)GetWindowLongPtrW (Self, 0);
508 CHAR c = (CHAR)wParam;
509 INT index, len = 0, startsel, endsel;
510 IPPART_INFO *part;
512 TRACE("hwnd %p, msg 0x%x, wparam %#Ix, lparam %#Ix\n", hwnd, uMsg, wParam, lParam);
514 if ((index = IPADDRESS_GetPartIndex(infoPtr, hwnd)) < 0)
516 ERR("We subclassed the wrong window! (hwnd=%p)\n", hwnd);
517 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);
525 switch (uMsg) {
526 case WM_CHAR:
527 if(isdigit(c)) {
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);
536 return return_val;
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;
545 return 0;
547 case WM_KEYDOWN:
548 switch(c) {
549 case VK_RIGHT:
550 if(startsel==endsel && startsel==len) {
551 IPADDRESS_GotoNextField(infoPtr, index, POS_LEFT);
552 return 0;
554 break;
555 case VK_LEFT:
556 if(startsel==0 && startsel==endsel && index > 0) {
557 IPADDRESS_GotoNextField(infoPtr, index - 2, POS_RIGHT);
558 return 0;
560 break;
561 case VK_BACK:
562 if(startsel==endsel && startsel==0 && index > 0) {
563 IPPART_INFO *prev = &infoPtr->Part[index-1];
564 WCHAR val[10];
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);
572 return 0;
574 break;
576 break;
577 case WM_KILLFOCUS:
578 if (IPADDRESS_GetPartIndex(infoPtr, (HWND)wParam) < 0)
579 IPADDRESS_Notify(infoPtr, EN_KILLFOCUS);
580 break;
581 case WM_SETFOCUS:
582 if (IPADDRESS_GetPartIndex(infoPtr, (HWND)wParam) < 0)
583 IPADDRESS_Notify(infoPtr, EN_SETFOCUS);
584 break;
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 %#Ix, lparam %#Ix\n", hwnd, uMsg, wParam, lParam);
597 if (!infoPtr && (uMsg != WM_CREATE))
598 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
600 switch (uMsg)
602 case WM_CREATE:
603 return IPADDRESS_Create (hwnd, (LPCREATESTRUCTA)lParam);
605 case WM_DESTROY:
606 return IPADDRESS_Destroy (infoPtr);
608 case WM_ENABLE:
609 return IPADDRESS_Enable (infoPtr, (BOOL)wParam);
611 case WM_PAINT:
612 return IPADDRESS_Paint (infoPtr, (HDC)wParam);
614 case WM_COMMAND:
615 switch(wParam >> 16) {
616 case EN_CHANGE:
617 IPADDRESS_UpdateText(infoPtr);
618 IPADDRESS_Notify(infoPtr, EN_CHANGE);
619 break;
620 case EN_KILLFOCUS:
621 IPADDRESS_ConstrainField(infoPtr, IPADDRESS_GetPartIndex(infoPtr, (HWND)lParam));
622 break;
624 break;
626 case WM_SYSCOLORCHANGE:
627 COMCTL32_RefreshSysColors();
628 return 0;
630 case WM_THEMECHANGED:
631 return IPADDRESS_ThemeChanged (infoPtr);
633 case IPM_CLEARADDRESS:
634 return IPADDRESS_ClearAddress (infoPtr);
636 case IPM_SETADDRESS:
637 return IPADDRESS_SetAddress (infoPtr, (DWORD)lParam);
639 case IPM_GETADDRESS:
640 return IPADDRESS_GetAddress (infoPtr, (LPDWORD)lParam);
642 case IPM_SETRANGE:
643 return IPADDRESS_SetRange (infoPtr, (int)wParam, (WORD)lParam);
645 case IPM_SETFOCUS:
646 return IPADDRESS_SetFocusToField (infoPtr, (int)wParam);
648 case IPM_ISBLANK:
649 return IPADDRESS_IsBlank (infoPtr);
651 case WM_SETFOCUS:
652 IPADDRESS_SetFocusToField (infoPtr, 0);
653 break;
655 default:
656 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
657 ERR("unknown msg %04x, wp %Ix, lp %Ix\n", uMsg, wParam, lParam);
658 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
660 return 0;
664 void IPADDRESS_Register (void)
666 WNDCLASSW wndClass;
668 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
669 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW;
670 wndClass.lpfnWndProc = IPADDRESS_WindowProc;
671 wndClass.cbClsExtra = 0;
672 wndClass.cbWndExtra = sizeof(IPADDRESS_INFO *);
673 wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_IBEAM);
674 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
675 wndClass.lpszClassName = WC_IPADDRESSW;
677 RegisterClassW (&wndClass);
681 void IPADDRESS_Unregister (void)
683 UnregisterClassW (WC_IPADDRESSW, NULL);