2 * Date and time picker control
4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 1999, 2000 Alex Priem <alexp@sci.kun.nl>
6 * Copyright 2000 Chris Morgan <cmorgan@wpi.edu>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * This code was audited for completeness against the documented features
25 * of Comctl32.dll version 6.0 on Oct. 20, 2004, by Dimitrie O. Paun.
27 * Unless otherwise noted, we believe this code to be complete, as per
28 * the specification mentioned above.
29 * If you discover missing features, or bugs, please note them below.
33 * -- DTS_SHORTDATECENTURYFORMAT
55 #include "wine/debug.h"
56 #include "wine/unicode.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(datetime);
70 RECT rcClient; /* rect around the edge of the window */
71 RECT rcDraw; /* rect inside of the border */
72 RECT checkbox; /* checkbox allowing the control to be enabled/disabled */
73 RECT calbutton; /* button that toggles the dropdown of the monthcal control */
74 BOOL bCalDepressed; /* TRUE = cal button is depressed */
77 int nrFieldsAllocated;
85 } DATETIME_INFO, *LPDATETIME_INFO;
88 extern int MONTHCAL_MonthLength(int month, int year);
90 /* this list of defines is closely related to `allowedformatchars' defined
91 * in datetime.c; the high nibble indicates the `base type' of the format
93 * Do not change without first reading DATETIME_UseFormat.
97 #define DT_END_FORMAT 0
98 #define ONEDIGITDAY 0x01
99 #define TWODIGITDAY 0x02
100 #define THREECHARDAY 0x03
102 #define ONEDIGIT12HOUR 0x11
103 #define TWODIGIT12HOUR 0x12
104 #define ONEDIGIT24HOUR 0x21
105 #define TWODIGIT24HOUR 0x22
106 #define ONEDIGITMINUTE 0x31
107 #define TWODIGITMINUTE 0x32
108 #define ONEDIGITMONTH 0x41
109 #define TWODIGITMONTH 0x42
110 #define THREECHARMONTH 0x43
111 #define FULLMONTH 0x44
112 #define ONEDIGITSECOND 0x51
113 #define TWODIGITSECOND 0x52
114 #define ONELETTERAMPM 0x61
115 #define TWOLETTERAMPM 0x62
116 #define ONEDIGITYEAR 0x71
117 #define TWODIGITYEAR 0x72
118 #define INVALIDFULLYEAR 0x73 /* FIXME - yyy is not valid - we'll treat it as yyyy */
119 #define FULLYEAR 0x74
120 #define FORMATCALLBACK 0x81 /* -> maximum of 0x80 callbacks possible */
121 #define FORMATCALLMASK 0x80
122 #define DT_STRING 0x0100
124 #define DTHT_DATEFIELD 0xff /* for hit-testing */
127 #define DTHT_CHECKBOX 0x200 /* these should end at '00' , to make */
128 #define DTHT_MCPOPUP 0x300 /* & DTHT_DATEFIELD 0 when DATETIME_KeyDown */
129 #define DTHT_GOTFOCUS 0x400 /* tests for date-fields */
131 static BOOL DATETIME_SendSimpleNotify (DATETIME_INFO *infoPtr, UINT code);
132 static BOOL DATETIME_SendDateTimeChangeNotify (DATETIME_INFO *infoPtr);
133 extern void MONTHCAL_CopyTime(const SYSTEMTIME *from, SYSTEMTIME *to);
134 static const WCHAR allowedformatchars[] = {'d', 'h', 'H', 'm', 'M', 's', 't', 'y', 'X', '\'', 0};
135 static const int maxrepetition [] = {4,2,2,2,4,2,2,4,-1,-1};
139 DATETIME_GetSystemTime (DATETIME_INFO *infoPtr, SYSTEMTIME *lprgSysTimeArray)
141 if (!lprgSysTimeArray) return GDT_NONE;
143 if ((infoPtr->dwStyle & DTS_SHOWNONE) &&
144 (SendMessageW (infoPtr->hwndCheckbut, BM_GETCHECK, 0, 0) == BST_UNCHECKED))
147 MONTHCAL_CopyTime (&infoPtr->date, lprgSysTimeArray);
154 DATETIME_SetSystemTime (DATETIME_INFO *infoPtr, DWORD flag, SYSTEMTIME *lprgSysTimeArray)
156 if (!lprgSysTimeArray) return 0;
158 TRACE("%04d/%02d/%02d %02d:%02d:%02d\n",
159 lprgSysTimeArray->wYear, lprgSysTimeArray->wMonth, lprgSysTimeArray->wDay,
160 lprgSysTimeArray->wHour, lprgSysTimeArray->wMinute, lprgSysTimeArray->wSecond);
162 if (flag == GDT_VALID) {
163 infoPtr->dateValid = TRUE;
164 MONTHCAL_CopyTime (lprgSysTimeArray, &infoPtr->date);
165 SendMessageW (infoPtr->hMonthCal, MCM_SETCURSEL, 0, (LPARAM)(&infoPtr->date));
166 SendMessageW (infoPtr->hwndCheckbut, BM_SETCHECK, BST_CHECKED, 0);
167 } else if (flag == GDT_NONE) {
168 infoPtr->dateValid = FALSE;
169 SendMessageW (infoPtr->hwndCheckbut, BM_SETCHECK, BST_UNCHECKED, 0);
172 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
178 * Split up a formattxt in actions.
179 * See ms documentation for the meaning of the letter codes/'specifiers'.
182 * *'dddddd' is handled as 'dddd' plus 'dd'.
183 * *unrecognized formats are strings (here given the type DT_STRING;
184 * start of the string is encoded in lower bits of DT_STRING.
185 * Therefore, 'string' ends finally up as '<show seconds>tring'.
189 DATETIME_UseFormat (DATETIME_INFO *infoPtr, LPCWSTR formattxt)
193 int *nrFields = &infoPtr->nrFields;
196 infoPtr->fieldspec[*nrFields] = 0;
197 len = strlenW(allowedformatchars);
200 for (i = 0; formattxt[i]; i++) {
201 TRACE ("\n%d %c:", i, formattxt[i]);
202 for (j = 0; j < len; j++) {
203 if (allowedformatchars[j]==formattxt[i]) {
204 TRACE ("%c[%d,%x]", allowedformatchars[j], *nrFields, infoPtr->fieldspec[*nrFields]);
205 if ((*nrFields==0) && (infoPtr->fieldspec[*nrFields]==0)) {
206 infoPtr->fieldspec[*nrFields] = (j<<4) + 1;
209 if (infoPtr->fieldspec[*nrFields] >> 4 != j) {
211 infoPtr->fieldspec[*nrFields] = (j<<4) + 1;
214 if ((infoPtr->fieldspec[*nrFields] & 0x0f) == maxrepetition[j]) {
216 infoPtr->fieldspec[*nrFields] = (j<<4) + 1;
219 infoPtr->fieldspec[*nrFields]++;
221 } /* if allowedformatchar */
224 /* char is not a specifier: handle char like a string */
226 if ((*nrFields==0) && (infoPtr->fieldspec[*nrFields]==0)) {
227 infoPtr->fieldspec[*nrFields] = DT_STRING + k;
228 infoPtr->buflen[*nrFields] = 0;
229 } else if ((infoPtr->fieldspec[*nrFields] & DT_STRING) != DT_STRING) {
231 infoPtr->fieldspec[*nrFields] = DT_STRING + k;
232 infoPtr->buflen[*nrFields] = 0;
234 infoPtr->textbuf[k] = formattxt[i];
236 infoPtr->buflen[*nrFields]++;
239 if (*nrFields == infoPtr->nrFieldsAllocated) {
240 FIXME ("out of memory; should reallocate. crash ahead.\n");
246 if (infoPtr->fieldspec[*nrFields] != 0) (*nrFields)++;
251 DATETIME_SetFormatW (DATETIME_INFO *infoPtr, LPCWSTR lpszFormat)
254 WCHAR format_buf[80];
257 if (infoPtr->dwStyle & DTS_LONGDATEFORMAT)
258 format_item = LOCALE_SLONGDATE;
259 else if (infoPtr->dwStyle & DTS_TIMEFORMAT)
260 format_item = LOCALE_STIMEFORMAT;
261 else /* DTS_SHORTDATEFORMAT */
262 format_item = LOCALE_SSHORTDATE;
263 GetLocaleInfoW( GetSystemDefaultLCID(), format_item, format_buf, sizeof(format_buf)/sizeof(format_buf[0]));
264 lpszFormat = format_buf;
267 DATETIME_UseFormat (infoPtr, lpszFormat);
269 return infoPtr->nrFields;
274 DATETIME_SetFormatA (DATETIME_INFO *infoPtr, LPCSTR lpszFormat)
278 INT len = MultiByteToWideChar(CP_ACP, 0, lpszFormat, -1, NULL, 0);
279 LPWSTR wstr = Alloc(len * sizeof(WCHAR));
280 if (wstr) MultiByteToWideChar(CP_ACP, 0, lpszFormat, -1, wstr, len);
281 retval = DATETIME_SetFormatW (infoPtr, wstr);
286 return DATETIME_SetFormatW (infoPtr, 0);
292 DATETIME_ReturnTxt (DATETIME_INFO *infoPtr, int count, LPWSTR result, int resultSize)
294 static const WCHAR fmt_dW[] = { '%', 'd', 0 };
295 static const WCHAR fmt__2dW[] = { '%', '.', '2', 'd', 0 };
296 static const WCHAR fmt__3sW[] = { '%', '.', '3', 's', 0 };
297 SYSTEMTIME date = infoPtr->date;
302 TRACE ("%d,%d\n", infoPtr->nrFields, count);
303 if (count>infoPtr->nrFields || count < 0) {
304 WARN ("buffer overrun, have %d want %d\n", infoPtr->nrFields, count);
308 if (!infoPtr->fieldspec) return;
310 spec = infoPtr->fieldspec[count];
311 if (spec & DT_STRING) {
312 int txtlen = infoPtr->buflen[count];
314 if (txtlen > resultSize)
315 txtlen = resultSize - 1;
316 memcpy (result, infoPtr->textbuf + (spec &~ DT_STRING), txtlen * sizeof(WCHAR));
318 TRACE ("arg%d=%x->[%s]\n", count, infoPtr->fieldspec[count], debugstr_w(result));
328 wsprintfW (result, fmt_dW, date.wDay);
331 wsprintfW (result, fmt__2dW, date.wDay);
334 GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_SABBREVDAYNAME1+(date.wDayOfWeek+6)%7, result, 4);
335 /*wsprintfW (result,"%.3s",days[date.wDayOfWeek]);*/
338 GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_SDAYNAME1+(date.wDayOfWeek+6)%7, result, resultSize);
341 wsprintfW (result, fmt_dW, date.wHour - (date.wHour > 12 ? 12 : 0));
344 wsprintfW (result, fmt__2dW, date.wHour - (date.wHour > 12 ? 12 : 0));
347 wsprintfW (result, fmt_dW, date.wHour);
350 wsprintfW (result, fmt__2dW, date.wHour);
353 wsprintfW (result, fmt_dW, date.wSecond);
356 wsprintfW (result, fmt__2dW, date.wSecond);
359 wsprintfW (result, fmt_dW, date.wMinute);
362 wsprintfW (result, fmt__2dW, date.wMinute);
365 wsprintfW (result, fmt_dW, date.wMonth);
368 wsprintfW (result, fmt__2dW, date.wMonth);
371 GetLocaleInfoW(GetSystemDefaultLCID(), LOCALE_SMONTHNAME1+date.wMonth -1,
372 buffer, sizeof(buffer)/sizeof(buffer[0]));
373 wsprintfW (result, fmt__3sW, buffer);
376 GetLocaleInfoW(GetSystemDefaultLCID(),LOCALE_SMONTHNAME1+date.wMonth -1,
380 result[0] = (date.wHour < 12 ? 'A' : 'P');
384 result[0] = (date.wHour < 12 ? 'A' : 'P');
389 FIXME ("Not implemented\n");
394 wsprintfW (result, fmt_dW, date.wYear-10* (int) floor(date.wYear/10));
397 wsprintfW (result, fmt__2dW, date.wYear-100* (int) floor(date.wYear/100));
399 case INVALIDFULLYEAR:
401 wsprintfW (result, fmt_dW, date.wYear);
405 TRACE ("arg%d=%x->[%s]\n", count, infoPtr->fieldspec[count], debugstr_w(result));
408 static int wrap(int val, int delta, int minVal, int maxVal)
411 if (delta == INT_MIN || val < minVal) return maxVal;
412 if (delta == INT_MAX || val > maxVal) return minVal;
417 DATETIME_IncreaseField (DATETIME_INFO *infoPtr, int number, int delta)
419 SYSTEMTIME *date = &infoPtr->date;
421 TRACE ("%d\n", number);
422 if ((number > infoPtr->nrFields) || (number < 0)) return;
424 if ((infoPtr->fieldspec[number] & DTHT_DATEFIELD) == 0) return;
426 switch (infoPtr->fieldspec[number]) {
430 date->wYear = wrap(date->wYear, delta, 1752, 9999);
436 date->wMonth = wrap(date->wMonth, delta, 1, 12);
443 date->wDay = wrap(date->wDay, delta, 1, MONTHCAL_MonthLength(date->wMonth, date->wYear));
453 date->wHour = wrap(date->wHour, delta, 0, 23);
457 date->wMinute = wrap(date->wMinute, delta, 0, 59);
461 date->wSecond = wrap(date->wSecond, delta, 0, 59);
464 FIXME ("Not implemented\n");
468 /* FYI: On 1752/9/14 the calendar changed and England and the
469 * American colonies changed to the Gregorian calendar. This change
470 * involved having September 14th follow September 2nd. So no date
471 * algorithm works before that date.
473 if (10000 * date->wYear + 100 * date->wMonth + date->wDay < 17520914) {
485 DATETIME_Refresh (DATETIME_INFO *infoPtr, HDC hdc)
489 RECT *rcDraw = &infoPtr->rcDraw;
490 RECT *rcClient = &infoPtr->rcClient;
491 RECT *calbutton = &infoPtr->calbutton;
492 RECT *checkbox = &infoPtr->checkbox;
495 COLORREF oldBk, oldTextColor;
497 /* draw control edge */
499 hbr = CreateSolidBrush(RGB(255, 255, 255));
500 FillRect(hdc, rcClient, hbr);
501 DrawEdge(hdc, rcClient, EDGE_SUNKEN, BF_RECT);
504 if (infoPtr->dateValid) {
505 HFONT oldFont = SelectObject (hdc, infoPtr->hFont);
508 DATETIME_ReturnTxt (infoPtr, 0, txt, sizeof(txt)/sizeof(txt[0]));
509 GetTextExtentPoint32W (hdc, txt, strlenW(txt), &size);
510 rcDraw->bottom = size.cy + 2;
512 prevright = checkbox->right = ((infoPtr->dwStyle & DTS_SHOWNONE) ? 18 : 2);
514 for (i = 0; i < infoPtr->nrFields; i++) {
515 DATETIME_ReturnTxt (infoPtr, i, txt, sizeof(txt)/sizeof(txt[0]));
516 GetTextExtentPoint32W (hdc, txt, strlenW(txt), &size);
517 field = &infoPtr->fieldRect[i];
518 field->left = prevright;
519 field->right = prevright+size.cx;
520 field->top = rcDraw->top;
521 field->bottom = rcDraw->bottom;
522 prevright = field->right;
524 if ((infoPtr->haveFocus) && (i == infoPtr->select)) {
525 hbr = CreateSolidBrush (GetSysColor (COLOR_ACTIVECAPTION));
526 FillRect(hdc, field, hbr);
527 oldBk = SetBkColor (hdc, GetSysColor(COLOR_ACTIVECAPTION));
528 oldTextColor = SetTextColor (hdc, GetSysColor(COLOR_WINDOW));
530 DrawTextW (hdc, txt, strlenW(txt), field, DT_RIGHT | DT_VCENTER | DT_SINGLELINE);
531 SetBkColor (hdc, oldBk);
532 SetTextColor (hdc, oldTextColor);
534 DrawTextW ( hdc, txt, strlenW(txt), field, DT_RIGHT | DT_VCENTER | DT_SINGLELINE );
536 SelectObject (hdc, oldFont);
539 if (!(infoPtr->dwStyle & DTS_UPDOWN)) {
540 DrawFrameControl(hdc, calbutton, DFC_SCROLL,
541 DFCS_SCROLLDOWN | (infoPtr->bCalDepressed ? DFCS_PUSHED : 0) |
542 (infoPtr->dwStyle & WS_DISABLED ? DFCS_INACTIVE : 0) );
548 DATETIME_HitTest (DATETIME_INFO *infoPtr, POINT pt)
552 TRACE ("%ld, %ld\n", pt.x, pt.y);
554 if (PtInRect (&infoPtr->calbutton, pt)) return DTHT_MCPOPUP;
555 if (PtInRect (&infoPtr->checkbox, pt)) return DTHT_CHECKBOX;
557 for (i=0; i < infoPtr->nrFields; i++) {
558 if (PtInRect (&infoPtr->fieldRect[i], pt)) return i;
566 DATETIME_LButtonDown (DATETIME_INFO *infoPtr, WORD wKey, POINTS pts)
568 POINT pt = { pts.x, pts.y };
569 int old = infoPtr->select;
570 int new = DATETIME_HitTest (infoPtr, pt);
572 /* FIXME: might be conditions where we don't want to update infoPtr->select */
573 infoPtr->select = new;
575 if (infoPtr->select != old)
576 infoPtr->haveFocus = DTHT_GOTFOCUS;
578 if (infoPtr->select == DTHT_MCPOPUP) {
579 /* FIXME: button actually is only depressed during dropdown of the */
580 /* calendar control and when the mouse is over the button window */
581 infoPtr->bCalDepressed = TRUE;
583 /* recalculate the position of the monthcal popup */
584 if(infoPtr->dwStyle & DTS_RIGHTALIGN)
585 infoPtr->monthcal_pos.x = infoPtr->rcClient.right -
586 ((infoPtr->calbutton.right - infoPtr->calbutton.left) + 200);
588 infoPtr->monthcal_pos.x = 8;
590 infoPtr->monthcal_pos.y = infoPtr->rcClient.bottom;
591 ClientToScreen (infoPtr->hwndSelf, &(infoPtr->monthcal_pos));
592 /* FIXME My Windoze has cx=about 200, but it probably depends on font size etc */
593 SetWindowPos(infoPtr->hMonthCal, 0, infoPtr->monthcal_pos.x, infoPtr->monthcal_pos.y, 200, 150, 0);
595 if(IsWindowVisible(infoPtr->hMonthCal)) {
596 ShowWindow(infoPtr->hMonthCal, SW_HIDE);
598 SYSTEMTIME *lprgSysTimeArray = &infoPtr->date;
599 TRACE("update calendar %04d/%02d/%02d\n",
600 lprgSysTimeArray->wYear, lprgSysTimeArray->wMonth, lprgSysTimeArray->wDay);
601 SendMessageW(infoPtr->hMonthCal, MCM_SETCURSEL, 0, (LPARAM)(&infoPtr->date));
602 ShowWindow(infoPtr->hMonthCal, SW_SHOW);
605 TRACE ("dt:%p mc:%p mc parent:%p, desktop:%p\n",
606 infoPtr->hwndSelf, infoPtr->hMonthCal, infoPtr->hwndNotify, GetDesktopWindow ());
607 DATETIME_SendSimpleNotify (infoPtr, DTN_DROPDOWN);
610 InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
617 DATETIME_LButtonUp (DATETIME_INFO *infoPtr, WORD wKey, POINTS pts)
619 if(infoPtr->bCalDepressed == TRUE) {
620 infoPtr->bCalDepressed = FALSE;
621 InvalidateRect(infoPtr->hwndSelf, &(infoPtr->calbutton), TRUE);
629 DATETIME_Paint (DATETIME_INFO *infoPtr, HDC hdc)
633 hdc = BeginPaint (infoPtr->hwndSelf, &ps);
634 DATETIME_Refresh (infoPtr, hdc);
635 EndPaint (infoPtr->hwndSelf, &ps);
637 DATETIME_Refresh (infoPtr, hdc);
644 DATETIME_Button_Command (DATETIME_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
646 if( HIWORD(wParam) == BN_CLICKED) {
647 DWORD state = SendMessageW((HWND)lParam, BM_GETCHECK, 0, 0);
648 infoPtr->dateValid = (state == BST_CHECKED);
649 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
657 DATETIME_Command (DATETIME_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
659 TRACE("hwndbutton = %p\n", infoPtr->hwndCheckbut);
660 if(infoPtr->hwndCheckbut == (HWND)lParam)
661 return DATETIME_Button_Command(infoPtr, wParam, lParam);
667 DATETIME_Notify (DATETIME_INFO *infoPtr, int idCtrl, LPNMHDR lpnmh)
669 TRACE ("Got notification %x from %p\n", lpnmh->code, lpnmh->hwndFrom);
670 TRACE ("info: %p %p %p\n", infoPtr->hwndSelf, infoPtr->hMonthCal, infoPtr->hUpdown);
672 if (lpnmh->code == MCN_SELECT) {
673 ShowWindow(infoPtr->hMonthCal, SW_HIDE);
674 infoPtr->dateValid = TRUE;
675 SendMessageW (infoPtr->hMonthCal, MCM_GETCURSEL, 0, (LPARAM)&infoPtr->date);
676 TRACE("got from calendar %04d/%02d/%02d\n",
677 infoPtr->date.wYear, infoPtr->date.wMonth, infoPtr->date.wDay);
678 SendMessageW (infoPtr->hwndCheckbut, BM_SETCHECK, BST_CHECKED, 0);
679 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
680 DATETIME_SendDateTimeChangeNotify (infoPtr);
687 DATETIME_KeyDown (DATETIME_INFO *infoPtr, DWORD vkCode, LPARAM flags)
689 int fieldNum = infoPtr->select & DTHT_DATEFIELD;
692 if (!(infoPtr->haveFocus)) return 0;
693 if ((fieldNum==0) && (infoPtr->select)) return 0;
695 if (infoPtr->select & FORMATCALLMASK) {
696 FIXME ("Callbacks not implemented yet\n");
702 DATETIME_IncreaseField (infoPtr, fieldNum, 1);
703 DATETIME_SendDateTimeChangeNotify (infoPtr);
707 DATETIME_IncreaseField (infoPtr, fieldNum, -1);
708 DATETIME_SendDateTimeChangeNotify (infoPtr);
711 DATETIME_IncreaseField (infoPtr, fieldNum, INT_MIN);
712 DATETIME_SendDateTimeChangeNotify (infoPtr);
715 DATETIME_IncreaseField (infoPtr, fieldNum, INT_MAX);
716 DATETIME_SendDateTimeChangeNotify (infoPtr);
720 if (infoPtr->select == 0) {
721 infoPtr->select = infoPtr->nrFields - 1;
726 } while ((infoPtr->fieldspec[infoPtr->select] & DT_STRING) && (wrap<2));
731 if (infoPtr->select==infoPtr->nrFields) {
735 } while ((infoPtr->fieldspec[infoPtr->select] & DT_STRING) && (wrap<2));
739 InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
746 DATETIME_KillFocus (DATETIME_INFO *infoPtr, HWND lostFocus)
748 if (infoPtr->haveFocus) {
749 DATETIME_SendSimpleNotify (infoPtr, NM_KILLFOCUS);
750 infoPtr->haveFocus = 0;
753 InvalidateRect (infoPtr->hwndSelf, NULL, TRUE);
760 DATETIME_SetFocus (DATETIME_INFO *infoPtr, HWND lostFocus)
762 if (infoPtr->haveFocus == 0) {
763 DATETIME_SendSimpleNotify (infoPtr, NM_SETFOCUS);
764 infoPtr->haveFocus = DTHT_GOTFOCUS;
767 InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
774 DATETIME_SendDateTimeChangeNotify (DATETIME_INFO *infoPtr)
776 NMDATETIMECHANGE dtdtc;
778 dtdtc.nmhdr.hwndFrom = infoPtr->hwndSelf;
779 dtdtc.nmhdr.idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
780 dtdtc.nmhdr.code = DTN_DATETIMECHANGE;
782 dtdtc.dwFlags = (infoPtr->dwStyle & DTS_SHOWNONE) ? GDT_NONE : GDT_VALID;
784 MONTHCAL_CopyTime (&infoPtr->date, &dtdtc.st);
785 return (BOOL) SendMessageW (infoPtr->hwndNotify, WM_NOTIFY,
786 (WPARAM)dtdtc.nmhdr.idFrom, (LPARAM)&dtdtc);
791 DATETIME_SendSimpleNotify (DATETIME_INFO *infoPtr, UINT code)
796 nmhdr.hwndFrom = infoPtr->hwndSelf;
797 nmhdr.idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
800 return (BOOL) SendMessageW (infoPtr->hwndNotify, WM_NOTIFY,
801 (WPARAM)nmhdr.idFrom, (LPARAM)&nmhdr);
805 DATETIME_Size (DATETIME_INFO *infoPtr, WORD flags, INT width, INT height)
808 infoPtr->rcClient.bottom = height;
809 infoPtr->rcClient.right = width;
811 TRACE("Height=%ld, Width=%ld\n", infoPtr->rcClient.bottom, infoPtr->rcClient.right);
813 /* use DrawEdge to adjust the size of rcEdge to get rcDraw */
814 memcpy((&infoPtr->rcDraw), (&infoPtr->rcClient), sizeof(infoPtr->rcDraw));
816 DrawEdge(NULL, &(infoPtr->rcDraw), EDGE_SUNKEN, BF_RECT | BF_ADJUST);
818 /* set the size of the button that drops the calendar down */
819 /* FIXME: account for style that allows button on left side */
820 infoPtr->calbutton.top = infoPtr->rcDraw.top;
821 infoPtr->calbutton.bottom= infoPtr->rcDraw.bottom;
822 infoPtr->calbutton.left = infoPtr->rcDraw.right-15;
823 infoPtr->calbutton.right = infoPtr->rcDraw.right;
825 /* set enable/disable button size for show none style being enabled */
826 /* FIXME: these dimensions are completely incorrect */
827 infoPtr->checkbox.top = infoPtr->rcDraw.top;
828 infoPtr->checkbox.bottom = infoPtr->rcDraw.bottom;
829 infoPtr->checkbox.left = infoPtr->rcDraw.left;
830 infoPtr->checkbox.right = infoPtr->rcDraw.left + 10;
832 /* update the position of the monthcal control */
833 if(infoPtr->dwStyle & DTS_RIGHTALIGN)
834 infoPtr->monthcal_pos.x = infoPtr->rcClient.right - ((infoPtr->calbutton.right -
835 infoPtr->calbutton.left) + 145);
837 infoPtr->monthcal_pos.x = 8;
839 infoPtr->monthcal_pos.y = infoPtr->rcClient.bottom;
840 ClientToScreen (infoPtr->hwndSelf, &(infoPtr->monthcal_pos));
841 SetWindowPos(infoPtr->hMonthCal, 0, infoPtr->monthcal_pos.x, infoPtr->monthcal_pos.y, 145, 150, 0);
843 InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
850 DATETIME_StyleChanged(DATETIME_INFO *infoPtr, WPARAM wStyleType, LPSTYLESTRUCT lpss)
852 static const WCHAR buttonW[] = { 'b', 'u', 't', 't', 'o', 'n', 0 };
854 TRACE("(styletype=%x, styleOld=0x%08lx, styleNew=0x%08lx)\n",
855 wStyleType, lpss->styleOld, lpss->styleNew);
857 if (wStyleType != GWL_STYLE) return 0;
859 infoPtr->dwStyle = lpss->styleNew;
861 if ( !(lpss->styleOld & DTS_SHOWNONE) && (lpss->styleNew & DTS_SHOWNONE) ) {
862 infoPtr->hwndCheckbut = CreateWindowExW (0, buttonW, 0, WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX,
863 2, 2, 13, 13, infoPtr->hwndSelf, 0,
864 (HINSTANCE)GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_HINSTANCE), 0);
865 SendMessageW (infoPtr->hwndCheckbut, BM_SETCHECK, 1, 0);
867 if ( (lpss->styleOld & DTS_SHOWNONE) && !(lpss->styleNew & DTS_SHOWNONE) ) {
868 DestroyWindow(infoPtr->hwndCheckbut);
869 infoPtr->hwndCheckbut = 0;
871 if ( !(lpss->styleOld & DTS_UPDOWN) && (lpss->styleNew & DTS_UPDOWN) ) {
872 infoPtr->hUpdown = CreateUpDownControl (WS_CHILD | WS_BORDER | WS_VISIBLE, 120, 1, 20, 20,
873 infoPtr->hwndSelf, 1, 0, 0, UD_MAXVAL, UD_MINVAL, 0);
875 if ( (lpss->styleOld & DTS_UPDOWN) && !(lpss->styleNew & DTS_UPDOWN) ) {
876 DestroyWindow(infoPtr->hUpdown);
877 infoPtr->hUpdown = 0;
880 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
886 DATETIME_Create (HWND hwnd, LPCREATESTRUCTW lpcs)
888 static const WCHAR SysMonthCal32W[] = { 'S', 'y', 's', 'M', 'o', 'n', 't', 'h', 'C', 'a', 'l', '3', '2', 0 };
889 DATETIME_INFO *infoPtr = (DATETIME_INFO *)Alloc (sizeof(DATETIME_INFO));
890 STYLESTRUCT ss = { 0, lpcs->style };
892 if (!infoPtr) return -1;
894 infoPtr->hwndSelf = hwnd;
895 infoPtr->dwStyle = lpcs->style;
897 infoPtr->nrFieldsAllocated = 32;
898 infoPtr->fieldspec = (int *) Alloc (infoPtr->nrFieldsAllocated * sizeof(int));
899 infoPtr->fieldRect = (RECT *) Alloc (infoPtr->nrFieldsAllocated * sizeof(RECT));
900 infoPtr->buflen = (int *) Alloc (infoPtr->nrFieldsAllocated * sizeof(int));
901 infoPtr->hwndNotify = lpcs->hwndParent;
903 DATETIME_StyleChanged(infoPtr, GWL_STYLE, &ss);
904 DATETIME_SetFormatW (infoPtr, 0);
906 /* create the monthcal control */
907 infoPtr->hMonthCal = CreateWindowExW (0, SysMonthCal32W, 0, WS_BORDER | WS_POPUP | WS_CLIPSIBLINGS,
908 0, 0, 0, 0, infoPtr->hwndSelf, 0, 0, 0);
910 /* initialize info structure */
911 GetSystemTime (&infoPtr->date);
912 infoPtr->dateValid = TRUE;
913 infoPtr->hFont = GetStockObject(DEFAULT_GUI_FONT);
915 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
923 DATETIME_Destroy (DATETIME_INFO *infoPtr)
925 if (infoPtr->hwndCheckbut)
926 DestroyWindow(infoPtr->hwndCheckbut);
927 if (infoPtr->hUpdown)
928 DestroyWindow(infoPtr->hUpdown);
929 if (infoPtr->hMonthCal)
930 DestroyWindow(infoPtr->hMonthCal);
931 SetWindowLongPtrW( infoPtr->hwndSelf, 0, 0 ); /* clear infoPtr */
937 static LRESULT WINAPI
938 DATETIME_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
940 DATETIME_INFO *infoPtr = ((DATETIME_INFO *)GetWindowLongPtrW (hwnd, 0));
943 TRACE ("%x, %x, %lx\n", uMsg, wParam, lParam);
945 if (!infoPtr && (uMsg != WM_CREATE))
946 return DefWindowProcW( hwnd, uMsg, wParam, lParam );
950 case DTM_GETSYSTEMTIME:
951 return DATETIME_GetSystemTime (infoPtr, (SYSTEMTIME *) lParam);
953 case DTM_SETSYSTEMTIME:
954 return DATETIME_SetSystemTime (infoPtr, wParam, (SYSTEMTIME *) lParam);
957 ret = SendMessageW (infoPtr->hMonthCal, MCM_GETRANGE, wParam, lParam);
958 return ret ? ret : 1; /* bug emulation */
961 return SendMessageW (infoPtr->hMonthCal, MCM_SETRANGE, wParam, lParam);
964 return DATETIME_SetFormatA (infoPtr, (LPCSTR)lParam);
967 return DATETIME_SetFormatW (infoPtr, (LPCWSTR)lParam);
969 case DTM_GETMONTHCAL:
970 return (LRESULT)infoPtr->hMonthCal;
973 return SendMessageW (infoPtr->hMonthCal, MCM_SETCOLOR, wParam, lParam);
976 return SendMessageW (infoPtr->hMonthCal, MCM_GETCOLOR, wParam, 0);
979 return SendMessageW (infoPtr->hMonthCal, WM_SETFONT, wParam, lParam);
982 return SendMessageW (infoPtr->hMonthCal, WM_GETFONT, wParam, lParam);
985 return DATETIME_Notify (infoPtr, (int)wParam, (LPNMHDR)lParam);
988 return DLGC_WANTARROWS | DLGC_WANTCHARS;
991 return DATETIME_Paint (infoPtr, (HDC)wParam);
994 return DATETIME_KeyDown (infoPtr, wParam, lParam);
997 return DATETIME_KillFocus (infoPtr, (HWND)wParam);
1000 return DATETIME_SetFocus (infoPtr, (HWND)wParam);
1003 return DATETIME_Size (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1005 case WM_LBUTTONDOWN:
1006 return DATETIME_LButtonDown (infoPtr, (WORD)wParam, MAKEPOINTS(lParam));
1009 return DATETIME_LButtonUp (infoPtr, (WORD)wParam, MAKEPOINTS(lParam));
1012 return DATETIME_Create (hwnd, (LPCREATESTRUCTW)lParam);
1015 return DATETIME_Destroy (infoPtr);
1018 return DATETIME_Command (infoPtr, wParam, lParam);
1020 case WM_STYLECHANGED:
1021 return DATETIME_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
1024 if ((uMsg >= WM_USER) && (uMsg < WM_APP))
1025 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
1026 uMsg, wParam, lParam);
1027 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1034 DATETIME_Register (void)
1038 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1039 wndClass.style = CS_GLOBALCLASS;
1040 wndClass.lpfnWndProc = DATETIME_WindowProc;
1041 wndClass.cbClsExtra = 0;
1042 wndClass.cbWndExtra = sizeof(DATETIME_INFO *);
1043 wndClass.hCursor = LoadCursorW (0, (LPCWSTR)IDC_ARROW);
1044 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
1045 wndClass.lpszClassName = DATETIMEPICK_CLASSW;
1047 RegisterClassW (&wndClass);
1052 DATETIME_Unregister (void)
1054 UnregisterClassW (DATETIMEPICK_CLASSW, NULL);