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>
7 * Copyright 2012 Owen Rudge for CodeWeavers
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * -- DTS_SHORTDATECENTURYFORMAT
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(datetime
);
62 RECT rcClient
; /* rect around the edge of the window */
63 RECT rcDraw
; /* rect inside of the border */
64 RECT checkbox
; /* checkbox allowing the control to be enabled/disabled */
65 RECT calbutton
; /* button that toggles the dropdown of the monthcal control */
66 BOOL bCalDepressed
; /* TRUE = cal button is depressed */
67 BOOL bCalHot
; /* TRUE if calendar button is hovered */
68 BOOL bDropdownEnabled
;
70 WCHAR charsEntered
[4];
73 int nrFieldsAllocated
;
82 } DATETIME_INFO
, *LPDATETIME_INFO
;
85 extern int MONTHCAL_MonthLength(int month
, int year
);
86 extern int MONTHCAL_CalculateDayOfWeek(SYSTEMTIME
*date
, BOOL inplace
);
88 /* this list of defines is closely related to `allowedformatchars' defined
89 * in datetime.c; the high nibble indicates the `base type' of the format
91 * Do not change without first reading DATETIME_UseFormat.
95 #define DT_END_FORMAT 0
96 #define ONEDIGITDAY 0x01
97 #define TWODIGITDAY 0x02
98 #define THREECHARDAY 0x03
100 #define ONEDIGIT12HOUR 0x11
101 #define TWODIGIT12HOUR 0x12
102 #define ONEDIGIT24HOUR 0x21
103 #define TWODIGIT24HOUR 0x22
104 #define ONEDIGITMINUTE 0x31
105 #define TWODIGITMINUTE 0x32
106 #define ONEDIGITMONTH 0x41
107 #define TWODIGITMONTH 0x42
108 #define THREECHARMONTH 0x43
109 #define FULLMONTH 0x44
110 #define ONEDIGITSECOND 0x51
111 #define TWODIGITSECOND 0x52
112 #define ONELETTERAMPM 0x61
113 #define TWOLETTERAMPM 0x62
114 #define ONEDIGITYEAR 0x71
115 #define TWODIGITYEAR 0x72
116 #define INVALIDFULLYEAR 0x73 /* FIXME - yyy is not valid - we'll treat it as yyyy */
117 #define FULLYEAR 0x74
118 #define FORMATCALLBACK 0x81 /* -> maximum of 0x80 callbacks possible */
119 #define FORMATCALLMASK 0x80
120 #define DT_STRING 0x0100
122 #define DTHT_DATEFIELD 0xff /* for hit-testing */
124 #define DTHT_NONE 0x1000
125 #define DTHT_CHECKBOX 0x2000 /* these should end at '00' , to make */
126 #define DTHT_MCPOPUP 0x3000 /* & DTHT_DATEFIELD 0 when DATETIME_KeyDown */
127 #define DTHT_GOTFOCUS 0x4000 /* tests for date-fields */
128 #define DTHT_NODATEMASK 0xf000 /* to mask check and drop down from others */
130 static BOOL
DATETIME_SendSimpleNotify (const DATETIME_INFO
*infoPtr
, UINT code
);
131 static BOOL
DATETIME_SendDateTimeChangeNotify (const DATETIME_INFO
*infoPtr
);
132 static const WCHAR allowedformatchars
[] = L
"dhHmMstyX";
133 static const int maxrepetition
[] = {4,2,2,2,4,2,2,4,-1};
134 static const WCHAR
*themeClass
= WC_SCROLLBARW
;
136 /* valid date limits */
137 static const SYSTEMTIME max_allowed_date
= { .wYear
= 9999, .wMonth
= 12, .wDayOfWeek
= 0, .wDay
= 31 };
138 static const SYSTEMTIME min_allowed_date
= { .wYear
= 1752, .wMonth
= 9, .wDayOfWeek
= 0, .wDay
= 14 };
141 DATETIME_GetSystemTime (const DATETIME_INFO
*infoPtr
, SYSTEMTIME
*systime
)
143 if (!systime
) return GDT_NONE
;
145 if ((infoPtr
->dwStyle
& DTS_SHOWNONE
) &&
146 (SendMessageW (infoPtr
->hwndCheckbut
, BM_GETCHECK
, 0, 0) == BST_UNCHECKED
))
149 *systime
= infoPtr
->date
;
154 /* Checks value is within configured date range
158 * [I] infoPtr : valid pointer to control data
159 * [I] date : pointer to valid date data to check
163 * TRUE - date within configured range
164 * FALSE - date is outside configured range
166 static BOOL
DATETIME_IsDateInValidRange(const DATETIME_INFO
*infoPtr
, const SYSTEMTIME
*date
)
171 if ((MONTHCAL_CompareSystemTime(date
, &max_allowed_date
) == 1) ||
172 (MONTHCAL_CompareSystemTime(date
, &min_allowed_date
) == -1))
175 limits
= SendMessageW (infoPtr
->hMonthCal
, MCM_GETRANGE
, 0, (LPARAM
)range
);
177 if (limits
& GDTR_MAX
)
179 if (MONTHCAL_CompareSystemTime(date
, &range
[1]) == 1)
183 if (limits
& GDTR_MIN
)
185 if (MONTHCAL_CompareSystemTime(date
, &range
[0]) == -1)
193 DATETIME_SetSystemTime (DATETIME_INFO
*infoPtr
, DWORD flag
, const SYSTEMTIME
*systime
)
195 if (!systime
) return FALSE
;
197 TRACE("%04d/%02d/%02d %02d:%02d:%02d\n",
198 systime
->wYear
, systime
->wMonth
, systime
->wDay
,
199 systime
->wHour
, systime
->wMinute
, systime
->wSecond
);
201 if (flag
== GDT_VALID
) {
202 if (systime
->wYear
== 0 ||
203 systime
->wMonth
< 1 || systime
->wMonth
> 12 ||
205 systime
->wDay
> MONTHCAL_MonthLength(systime
->wMonth
, systime
->wYear
) ||
206 systime
->wHour
> 23 ||
207 systime
->wMinute
> 59 ||
208 systime
->wSecond
> 59 ||
209 systime
->wMilliseconds
> 999
213 /* Windows returns true if the date is valid but outside the limits set */
214 if (!DATETIME_IsDateInValidRange(infoPtr
, systime
))
217 infoPtr
->dateValid
= TRUE
;
218 infoPtr
->date
= *systime
;
219 /* always store a valid day of week */
220 MONTHCAL_CalculateDayOfWeek(&infoPtr
->date
, TRUE
);
222 SendMessageW (infoPtr
->hMonthCal
, MCM_SETCURSEL
, 0, (LPARAM
)(&infoPtr
->date
));
223 SendMessageW (infoPtr
->hwndCheckbut
, BM_SETCHECK
, BST_CHECKED
, 0);
224 } else if ((infoPtr
->dwStyle
& DTS_SHOWNONE
) && (flag
== GDT_NONE
)) {
225 infoPtr
->dateValid
= FALSE
;
226 SendMessageW (infoPtr
->hwndCheckbut
, BM_SETCHECK
, BST_UNCHECKED
, 0);
231 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
237 * Split up a formattxt in actions.
238 * See ms documentation for the meaning of the letter codes/'specifiers'.
241 * *'dddddd' is handled as 'dddd' plus 'dd'.
242 * *unrecognized formats are strings (here given the type DT_STRING;
243 * start of the string is encoded in lower bits of DT_STRING.
244 * Therefore, 'string' ends up as '<show seconds>tring'.
248 DATETIME_UseFormat (DATETIME_INFO
*infoPtr
, LPCWSTR formattxt
)
252 BOOL inside_literal
= FALSE
; /* inside '...' */
253 int *nrFields
= &infoPtr
->nrFields
;
256 infoPtr
->fieldspec
[*nrFields
] = 0;
257 len
= lstrlenW(allowedformatchars
);
260 for (i
= 0; formattxt
[i
]; i
++) {
261 TRACE ("\n%d %c:", i
, formattxt
[i
]);
262 if (!inside_literal
) {
263 for (j
= 0; j
< len
; j
++) {
264 if (allowedformatchars
[j
]==formattxt
[i
]) {
265 TRACE ("%c[%d,%x]", allowedformatchars
[j
], *nrFields
, infoPtr
->fieldspec
[*nrFields
]);
266 if ((*nrFields
==0) && (infoPtr
->fieldspec
[*nrFields
]==0)) {
267 infoPtr
->fieldspec
[*nrFields
] = (j
<<4) + 1;
270 if (infoPtr
->fieldspec
[*nrFields
] >> 4 != j
) {
272 infoPtr
->fieldspec
[*nrFields
] = (j
<<4) + 1;
275 if ((infoPtr
->fieldspec
[*nrFields
] & 0x0f) == maxrepetition
[j
]) {
277 infoPtr
->fieldspec
[*nrFields
] = (j
<<4) + 1;
280 infoPtr
->fieldspec
[*nrFields
]++;
282 } /* if allowedformatchar */
288 if (formattxt
[i
] == '\'')
290 inside_literal
= !inside_literal
;
294 /* char is not a specifier: handle char like a string */
296 if ((*nrFields
==0) && (infoPtr
->fieldspec
[*nrFields
]==0)) {
297 infoPtr
->fieldspec
[*nrFields
] = DT_STRING
+ k
;
298 infoPtr
->buflen
[*nrFields
] = 0;
299 } else if ((infoPtr
->fieldspec
[*nrFields
] & DT_STRING
) != DT_STRING
) {
301 infoPtr
->fieldspec
[*nrFields
] = DT_STRING
+ k
;
302 infoPtr
->buflen
[*nrFields
] = 0;
304 infoPtr
->textbuf
[k
] = formattxt
[i
];
306 infoPtr
->buflen
[*nrFields
]++;
309 if (*nrFields
== infoPtr
->nrFieldsAllocated
) {
310 FIXME ("out of memory; should reallocate. crash ahead.\n");
316 if (infoPtr
->fieldspec
[*nrFields
] != 0) (*nrFields
)++;
321 DATETIME_SetFormatW (DATETIME_INFO
*infoPtr
, LPCWSTR format
)
323 WCHAR format_buf
[80];
328 if ((infoPtr
->dwStyle
& DTS_SHORTDATECENTURYFORMAT
) == DTS_SHORTDATECENTURYFORMAT
)
329 format_item
= LOCALE_SSHORTDATE
;
330 else if ((infoPtr
->dwStyle
& DTS_LONGDATEFORMAT
) == DTS_LONGDATEFORMAT
)
331 format_item
= LOCALE_SLONGDATE
;
332 else if ((infoPtr
->dwStyle
& DTS_TIMEFORMAT
) == DTS_TIMEFORMAT
)
333 format_item
= LOCALE_STIMEFORMAT
;
334 else /* DTS_SHORTDATEFORMAT */
335 format_item
= LOCALE_SSHORTDATE
;
336 GetLocaleInfoW(LOCALE_USER_DEFAULT
, format_item
, format_buf
, ARRAY_SIZE(format_buf
));
340 DATETIME_UseFormat (infoPtr
, format
);
341 InvalidateRect (infoPtr
->hwndSelf
, NULL
, TRUE
);
348 DATETIME_SetFormatA (DATETIME_INFO
*infoPtr
, LPCSTR lpszFormat
)
352 INT len
= MultiByteToWideChar(CP_ACP
, 0, lpszFormat
, -1, NULL
, 0);
353 LPWSTR wstr
= Alloc(len
* sizeof(WCHAR
));
354 if (wstr
) MultiByteToWideChar(CP_ACP
, 0, lpszFormat
, -1, wstr
, len
);
355 retval
= DATETIME_SetFormatW (infoPtr
, wstr
);
360 return DATETIME_SetFormatW (infoPtr
, 0);
366 DATETIME_ReturnTxt (const DATETIME_INFO
*infoPtr
, int count
, LPWSTR result
, int resultSize
)
368 SYSTEMTIME date
= infoPtr
->date
;
373 TRACE ("%d,%d\n", infoPtr
->nrFields
, count
);
374 if (count
>infoPtr
->nrFields
|| count
< 0) {
375 WARN ("buffer overrun, have %d want %d\n", infoPtr
->nrFields
, count
);
379 if (!infoPtr
->fieldspec
) return;
381 spec
= infoPtr
->fieldspec
[count
];
382 if (spec
& DT_STRING
) {
383 int txtlen
= infoPtr
->buflen
[count
];
385 if (txtlen
> resultSize
)
386 txtlen
= resultSize
- 1;
387 memcpy (result
, infoPtr
->textbuf
+ (spec
&~ DT_STRING
), txtlen
* sizeof(WCHAR
));
389 TRACE ("arg%d=%x->[%s]\n", count
, infoPtr
->fieldspec
[count
], debugstr_w(result
));
399 wsprintfW (result
, L
"%d", date
.wDay
);
402 wsprintfW (result
, L
"%.2d", date
.wDay
);
405 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_SABBREVDAYNAME1
+(date
.wDayOfWeek
+6)%7, result
, 4);
406 /*wsprintfW (result,"%.3s",days[date.wDayOfWeek]);*/
409 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_SDAYNAME1
+(date
.wDayOfWeek
+6)%7, result
, resultSize
);
412 if (date
.wHour
== 0) {
418 wsprintfW (result
, L
"%d", date
.wHour
- (date
.wHour
> 12 ? 12 : 0));
421 if (date
.wHour
== 0) {
427 wsprintfW (result
, L
"%.2d", date
.wHour
- (date
.wHour
> 12 ? 12 : 0));
430 wsprintfW (result
, L
"%d", date
.wHour
);
433 wsprintfW (result
, L
"%.2d", date
.wHour
);
436 wsprintfW (result
, L
"%d", date
.wSecond
);
439 wsprintfW (result
, L
"%.2d", date
.wSecond
);
442 wsprintfW (result
, L
"%d", date
.wMinute
);
445 wsprintfW (result
, L
"%.2d", date
.wMinute
);
448 wsprintfW (result
, L
"%d", date
.wMonth
);
451 wsprintfW (result
, L
"%.2d", date
.wMonth
);
454 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_SMONTHNAME1
+date
.wMonth
-1, buffer
, ARRAY_SIZE(buffer
));
455 wsprintfW (result
, L
"%s.3s", buffer
);
458 GetLocaleInfoW(LOCALE_USER_DEFAULT
, LOCALE_SMONTHNAME1
+date
.wMonth
-1,
462 result
[0] = (date
.wHour
< 12 ? 'A' : 'P');
466 result
[0] = (date
.wHour
< 12 ? 'A' : 'P');
471 FIXME ("Not implemented\n");
476 wsprintfW (result
, L
"%d", date
.wYear
% 10);
479 wsprintfW (result
, L
"%.2d", date
.wYear
% 100);
481 case INVALIDFULLYEAR
:
483 wsprintfW (result
, L
"%d", date
.wYear
);
487 TRACE ("arg%d=%x->[%s]\n", count
, infoPtr
->fieldspec
[count
], debugstr_w(result
));
490 static int wrap(int val
, int delta
, int minVal
, int maxVal
)
493 if (delta
== INT_MIN
|| val
< minVal
) return maxVal
;
494 if (delta
== INT_MAX
|| val
> maxVal
) return minVal
;
499 DATETIME_IncreaseField (DATETIME_INFO
*infoPtr
, int number
, int delta
)
501 SYSTEMTIME
*date
= &infoPtr
->date
;
506 TRACE ("%d\n", number
);
507 if ((number
> infoPtr
->nrFields
) || (number
< 0)) return;
509 if ((infoPtr
->fieldspec
[number
] & DTHT_DATEFIELD
) == 0) return;
511 switch (infoPtr
->fieldspec
[number
]) {
515 if (delta
== INT_MIN
)
517 else if (delta
== INT_MAX
)
520 date
->wYear
= max(min(date
->wYear
+ delta
, 9999), 1752);
522 if (date
->wDay
> MONTHCAL_MonthLength(date
->wMonth
, date
->wYear
))
523 /* This can happen when moving away from a leap year. */
524 date
->wDay
= MONTHCAL_MonthLength(date
->wMonth
, date
->wYear
);
525 MONTHCAL_CalculateDayOfWeek(date
, TRUE
);
531 date
->wMonth
= wrap(date
->wMonth
, delta
, 1, 12);
532 MONTHCAL_CalculateDayOfWeek(date
, TRUE
);
539 date
->wDay
= wrap(date
->wDay
, delta
, 1, MONTHCAL_MonthLength(date
->wMonth
, date
->wYear
));
540 MONTHCAL_CalculateDayOfWeek(date
, TRUE
);
550 date
->wHour
= wrap(date
->wHour
, delta
, 0, 23);
554 date
->wMinute
= wrap(date
->wMinute
, delta
, 0, 59);
558 date
->wSecond
= wrap(date
->wSecond
, delta
, 0, 59);
561 FIXME ("Not implemented\n");
565 /* FYI: On 1752/9/14 the calendar changed and England and the
566 * American colonies changed to the Gregorian calendar. This change
567 * involved having September 14th follow September 2nd. So no date
568 * algorithm works before that date.
570 if (10000 * date
->wYear
+ 100 * date
->wMonth
+ date
->wDay
< 17520914) {
579 /* Ensure time is within bounds */
580 limits
= SendMessageW (infoPtr
->hMonthCal
, MCM_GETRANGE
, 0, (LPARAM
)range
);
583 if (limits
& (min
? GDTR_MIN
: GDTR_MAX
))
585 int i
= (min
? 0 : 1);
587 if (MONTHCAL_CompareSystemTime(date
, &range
[i
]) == (min
? -1 : 1))
589 date
->wYear
= range
[i
].wYear
;
590 date
->wMonth
= range
[i
].wMonth
;
591 date
->wDayOfWeek
= range
[i
].wDayOfWeek
;
592 date
->wDay
= range
[i
].wDay
;
593 date
->wHour
= range
[i
].wHour
;
594 date
->wMinute
= range
[i
].wMinute
;
595 date
->wSecond
= range
[i
].wSecond
;
596 date
->wMilliseconds
= range
[i
].wMilliseconds
;
601 static int DATETIME_GetFieldWidth (const DATETIME_INFO
*infoPtr
, HDC hdc
, int count
)
603 /* fields are a fixed width, determined by the largest possible string */
604 /* presumably, these widths should be language dependent */
610 if (!infoPtr
->fieldspec
) return 0;
612 spec
= infoPtr
->fieldspec
[count
];
613 if (spec
& DT_STRING
) {
614 int txtlen
= infoPtr
->buflen
[count
];
618 memcpy (buffer
, infoPtr
->textbuf
+ (spec
&~ DT_STRING
), txtlen
* sizeof(WCHAR
));
631 /* these seem to use a two byte field */
641 case INVALIDFULLYEAR
:
655 /* choose locale data type and fallback string */
659 lctype
= LOCALE_SABBREVDAYNAME1
;
664 lctype
= LOCALE_SDAYNAME1
;
669 lctype
= LOCALE_SABBREVMONTHNAME1
;
672 default: /* FULLMONTH */
674 lctype
= LOCALE_SMONTHNAME1
;
680 for (i
= 0; i
< max_count
; i
++)
682 if(GetLocaleInfoW(LOCALE_USER_DEFAULT
, lctype
+ i
,
683 buffer
, ARRAY_SIZE(buffer
)))
685 GetTextExtentPoint32W(hdc
, buffer
, lstrlenW(buffer
), &size
);
686 if (size
.cx
> cx
) cx
= size
.cx
;
688 else /* locale independent fallback on failure */
690 GetTextExtentPoint32W(hdc
, fall
, lstrlenW(fall
), &size
);
708 GetTextExtentPoint32W (hdc
, bufptr
, lstrlenW(bufptr
), &size
);
713 DATETIME_Refresh (DATETIME_INFO
*infoPtr
, HDC hdc
)
720 if (infoPtr
->dateValid
) {
723 RECT
*rcDraw
= &infoPtr
->rcDraw
;
725 COLORREF oldTextColor
;
726 HFONT oldFont
= SelectObject (hdc
, infoPtr
->hFont
);
727 INT oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
730 DATETIME_ReturnTxt (infoPtr
, 0, txt
, ARRAY_SIZE(txt
));
731 GetTextExtentPoint32W (hdc
, txt
, lstrlenW(txt
), &size
);
732 rcDraw
->bottom
= size
.cy
+ 2;
734 prevright
= infoPtr
->checkbox
.right
= ((infoPtr
->dwStyle
& DTS_SHOWNONE
) ? 18 : 2);
736 for (i
= 0; i
< infoPtr
->nrFields
; i
++) {
737 DATETIME_ReturnTxt (infoPtr
, i
, txt
, ARRAY_SIZE(txt
));
738 GetTextExtentPoint32W (hdc
, txt
, lstrlenW(txt
), &size
);
739 field
= &infoPtr
->fieldRect
[i
];
740 field
->left
= prevright
;
741 field
->right
= prevright
+ DATETIME_GetFieldWidth (infoPtr
, hdc
, i
);
742 field
->top
= rcDraw
->top
;
743 field
->bottom
= rcDraw
->bottom
;
744 prevright
= field
->right
;
746 if (infoPtr
->dwStyle
& WS_DISABLED
)
747 oldTextColor
= SetTextColor (hdc
, comctl32_color
.clrGrayText
);
748 else if ((infoPtr
->haveFocus
) && (i
== infoPtr
->select
)) {
751 /* fill if focused */
752 HBRUSH hbr
= CreateSolidBrush (comctl32_color
.clrActiveCaption
);
754 if (infoPtr
->nCharsEntered
)
756 memcpy(txt
, infoPtr
->charsEntered
, infoPtr
->nCharsEntered
* sizeof(WCHAR
));
757 txt
[infoPtr
->nCharsEntered
] = 0;
758 GetTextExtentPoint32W (hdc
, txt
, lstrlenW(txt
), &size
);
761 SetRect(&selection
, 0, 0, size
.cx
, size
.cy
);
762 /* center rectangle */
763 OffsetRect(&selection
, (field
->right
+ field
->left
- size
.cx
)/2,
764 (field
->bottom
- size
.cy
)/2);
766 FillRect(hdc
, &selection
, hbr
);
768 oldTextColor
= SetTextColor (hdc
, comctl32_color
.clrWindow
);
771 oldTextColor
= SetTextColor (hdc
, comctl32_color
.clrWindowText
);
773 /* draw the date text using the colour set above */
774 DrawTextW (hdc
, txt
, lstrlenW(txt
), field
, DT_CENTER
| DT_VCENTER
| DT_SINGLELINE
);
775 SetTextColor (hdc
, oldTextColor
);
777 SetBkMode (hdc
, oldBkMode
);
778 SelectObject (hdc
, oldFont
);
781 if (infoPtr
->dwStyle
& DTS_UPDOWN
)
784 theme
= GetWindowTheme(infoPtr
->hwndSelf
);
787 if (infoPtr
->dwStyle
& WS_DISABLED
)
788 state
= ABS_DOWNDISABLED
;
789 else if (infoPtr
->bCalDepressed
)
790 state
= ABS_DOWNPRESSED
;
791 else if (infoPtr
->bCalHot
)
794 state
= ABS_DOWNNORMAL
;
796 if (IsThemeBackgroundPartiallyTransparent(theme
, SBP_ARROWBTN
, state
))
797 DrawThemeParentBackground(infoPtr
->hwndSelf
, hdc
, &infoPtr
->calbutton
);
798 DrawThemeBackground(theme
, hdc
, SBP_ARROWBTN
, state
, &infoPtr
->calbutton
, NULL
);
802 DrawFrameControl(hdc
, &infoPtr
->calbutton
, DFC_SCROLL
,
803 DFCS_SCROLLDOWN
| (infoPtr
->bCalDepressed
? DFCS_PUSHED
: 0) |
804 (infoPtr
->dwStyle
& WS_DISABLED
? DFCS_INACTIVE
: 0) );
810 DATETIME_HitTest (const DATETIME_INFO
*infoPtr
, POINT pt
)
814 TRACE ("%s\n", wine_dbgstr_point(&pt
));
816 if (PtInRect (&infoPtr
->calbutton
, pt
)) return DTHT_MCPOPUP
;
817 if (PtInRect (&infoPtr
->checkbox
, pt
)) return DTHT_CHECKBOX
;
819 for (i
= 0; i
< infoPtr
->nrFields
; i
++) {
820 if (PtInRect (&infoPtr
->fieldRect
[i
], pt
)) return i
;
826 /* Returns index of the nearest preceding date field from given,
827 or -1 if none was found */
828 static int DATETIME_GetPrevDateField(const DATETIME_INFO
*infoPtr
, int i
)
830 for(--i
; i
>= 0; i
--)
832 if (infoPtr
->fieldspec
[i
] & DTHT_DATEFIELD
) return i
;
838 DATETIME_ApplySelectedField (DATETIME_INFO
*infoPtr
)
840 int fieldNum
= infoPtr
->select
& DTHT_DATEFIELD
;
842 BOOL clamp_day
= FALSE
;
843 SYSTEMTIME date
= infoPtr
->date
;
846 if (infoPtr
->select
== -1 || infoPtr
->nCharsEntered
== 0)
849 if ((infoPtr
->fieldspec
[fieldNum
] == ONELETTERAMPM
) ||
850 (infoPtr
->fieldspec
[fieldNum
] == TWOLETTERAMPM
))
851 val
= infoPtr
->charsEntered
[0];
853 for (i
=0; i
<infoPtr
->nCharsEntered
; i
++)
854 val
= val
* 10 + infoPtr
->charsEntered
[i
] - '0';
857 infoPtr
->nCharsEntered
= 0;
859 switch (infoPtr
->fieldspec
[fieldNum
]) {
862 oldyear
= date
.wYear
;
863 date
.wYear
= date
.wYear
- (date
.wYear
%100) + val
;
865 if (DATETIME_IsDateInValidRange(infoPtr
, &date
))
868 date
.wYear
= oldyear
;
871 case INVALIDFULLYEAR
:
873 oldyear
= date
.wYear
;
876 if (DATETIME_IsDateInValidRange(infoPtr
, &date
))
879 date
.wYear
= oldyear
;
899 if (date
.wHour
>= 12) /* preserve current AM/PM state */
900 date
.wHour
= (val
== 12 ? 12 : val
+ 12);
902 date
.wHour
= (val
== 12 ? 0 : val
);
919 if (val
== 'a' || val
== 'A') {
920 if (date
.wHour
>= 12)
922 } else if (val
== 'p' || val
== 'P') {
929 if (clamp_day
&& date
.wDay
> MONTHCAL_MonthLength(date
.wMonth
, date
.wYear
))
930 date
.wDay
= MONTHCAL_MonthLength(date
.wMonth
, date
.wYear
);
932 if (DATETIME_SetSystemTime(infoPtr
, GDT_VALID
, &date
))
933 DATETIME_SendDateTimeChangeNotify (infoPtr
);
937 DATETIME_SetSelectedField (DATETIME_INFO
*infoPtr
, int select
)
939 DATETIME_ApplySelectedField(infoPtr
);
941 infoPtr
->select
= select
;
942 infoPtr
->nCharsEntered
= 0;
946 DATETIME_LButtonDown (DATETIME_INFO
*infoPtr
, INT x
, INT y
)
953 new = DATETIME_HitTest (infoPtr
, pt
);
955 SetFocus(infoPtr
->hwndSelf
);
957 if (!(new & DTHT_NODATEMASK
) || (new == DTHT_NONE
))
959 if (new == DTHT_NONE
)
960 new = infoPtr
->nrFields
- 1;
963 /* hitting string part moves selection to next date field to left */
964 if (infoPtr
->fieldspec
[new] & DT_STRING
)
966 new = DATETIME_GetPrevDateField(infoPtr
, new);
967 if (new == -1) return 0;
969 /* never select full day of week */
970 if (infoPtr
->fieldspec
[new] == FULLDAY
) return 0;
974 DATETIME_SetSelectedField(infoPtr
, new);
976 if (infoPtr
->select
== DTHT_MCPOPUP
) {
979 SendMessageW(infoPtr
->hMonthCal
, MCM_GETMINREQRECT
, 0, (LPARAM
)&rcMonthCal
);
981 /* FIXME: button actually is only depressed during dropdown of the */
982 /* calendar control and when the mouse is over the button window */
983 infoPtr
->bCalDepressed
= TRUE
;
985 /* recalculate the position of the monthcal popup */
986 if(infoPtr
->dwStyle
& DTS_RIGHTALIGN
)
987 pos
.x
= infoPtr
->calbutton
.left
- (rcMonthCal
.right
- rcMonthCal
.left
);
989 /* FIXME: this should be after the area reserved for the checkbox */
990 pos
.x
= infoPtr
->rcDraw
.left
;
992 pos
.y
= infoPtr
->rcClient
.bottom
;
993 OffsetRect( &rcMonthCal
, pos
.x
, pos
.y
);
994 MapWindowPoints( infoPtr
->hwndSelf
, 0, (POINT
*)&rcMonthCal
, 2 );
995 SetWindowPos(infoPtr
->hMonthCal
, 0, rcMonthCal
.left
, rcMonthCal
.top
,
996 rcMonthCal
.right
- rcMonthCal
.left
, rcMonthCal
.bottom
- rcMonthCal
.top
, 0);
998 if(IsWindowVisible(infoPtr
->hMonthCal
)) {
999 ShowWindow(infoPtr
->hMonthCal
, SW_HIDE
);
1000 infoPtr
->bDropdownEnabled
= FALSE
;
1001 DATETIME_SendSimpleNotify (infoPtr
, DTN_CLOSEUP
);
1003 const SYSTEMTIME
*lprgSysTimeArray
= &infoPtr
->date
;
1004 TRACE("update calendar %04d/%02d/%02d\n",
1005 lprgSysTimeArray
->wYear
, lprgSysTimeArray
->wMonth
, lprgSysTimeArray
->wDay
);
1006 SendMessageW(infoPtr
->hMonthCal
, MCM_SETCURSEL
, 0, (LPARAM
)(&infoPtr
->date
));
1008 if (infoPtr
->bDropdownEnabled
) {
1009 ShowWindow(infoPtr
->hMonthCal
, SW_SHOW
);
1010 DATETIME_SendSimpleNotify (infoPtr
, DTN_DROPDOWN
);
1012 infoPtr
->bDropdownEnabled
= TRUE
;
1015 TRACE ("dt:%p mc:%p mc parent:%p, desktop:%p\n",
1016 infoPtr
->hwndSelf
, infoPtr
->hMonthCal
, infoPtr
->hwndNotify
, GetDesktopWindow ());
1019 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1026 DATETIME_LButtonUp (DATETIME_INFO
*infoPtr
)
1028 if(infoPtr
->bCalDepressed
) {
1029 infoPtr
->bCalDepressed
= FALSE
;
1030 InvalidateRect(infoPtr
->hwndSelf
, &(infoPtr
->calbutton
), TRUE
);
1038 DATETIME_Paint (DATETIME_INFO
*infoPtr
, HDC hdc
)
1042 hdc
= BeginPaint (infoPtr
->hwndSelf
, &ps
);
1043 DATETIME_Refresh (infoPtr
, hdc
);
1044 EndPaint (infoPtr
->hwndSelf
, &ps
);
1046 DATETIME_Refresh (infoPtr
, hdc
);
1049 /* Not a click on the dropdown box, enabled it */
1050 infoPtr
->bDropdownEnabled
= TRUE
;
1057 DATETIME_Button_Command (DATETIME_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1059 if( HIWORD(wParam
) == BN_CLICKED
) {
1060 DWORD state
= SendMessageW((HWND
)lParam
, BM_GETCHECK
, 0, 0);
1061 infoPtr
->dateValid
= (state
== BST_CHECKED
);
1062 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1063 DATETIME_SendDateTimeChangeNotify(infoPtr
);
1071 DATETIME_Command (DATETIME_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1073 TRACE("hwndbutton = %p\n", infoPtr
->hwndCheckbut
);
1074 if(infoPtr
->hwndCheckbut
== (HWND
)lParam
)
1075 return DATETIME_Button_Command(infoPtr
, wParam
, lParam
);
1081 DATETIME_Enable (DATETIME_INFO
*infoPtr
, BOOL bEnable
)
1083 TRACE("%p %s\n", infoPtr
, bEnable
? "TRUE" : "FALSE");
1085 infoPtr
->dwStyle
&= ~WS_DISABLED
;
1087 infoPtr
->dwStyle
|= WS_DISABLED
;
1089 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1096 DATETIME_EraseBackground (const DATETIME_INFO
*infoPtr
, HDC hdc
)
1098 HBRUSH hBrush
, hSolidBrush
= NULL
;
1101 if (infoPtr
->dwStyle
& WS_DISABLED
)
1102 hBrush
= hSolidBrush
= CreateSolidBrush(comctl32_color
.clrBtnFace
);
1105 hBrush
= (HBRUSH
)SendMessageW(infoPtr
->hwndNotify
, WM_CTLCOLOREDIT
,
1106 (WPARAM
)hdc
, (LPARAM
)infoPtr
->hwndSelf
);
1108 hBrush
= hSolidBrush
= CreateSolidBrush(comctl32_color
.clrWindow
);
1111 GetClientRect (infoPtr
->hwndSelf
, &rc
);
1113 FillRect (hdc
, &rc
, hBrush
);
1116 DeleteObject(hSolidBrush
);
1123 DATETIME_Notify (DATETIME_INFO
*infoPtr
, const NMHDR
*lpnmh
)
1125 TRACE ("Got notification %x from %p\n", lpnmh
->code
, lpnmh
->hwndFrom
);
1126 TRACE ("info: %p %p %p\n", infoPtr
->hwndSelf
, infoPtr
->hMonthCal
, infoPtr
->hUpdown
);
1128 if (lpnmh
->code
== MCN_SELECT
) {
1129 ShowWindow(infoPtr
->hMonthCal
, SW_HIDE
);
1130 infoPtr
->dateValid
= TRUE
;
1131 SendMessageW (infoPtr
->hMonthCal
, MCM_GETCURSEL
, 0, (LPARAM
)&infoPtr
->date
);
1132 TRACE("got from calendar %04d/%02d/%02d day of week %d\n",
1133 infoPtr
->date
.wYear
, infoPtr
->date
.wMonth
, infoPtr
->date
.wDay
, infoPtr
->date
.wDayOfWeek
);
1134 SendMessageW (infoPtr
->hwndCheckbut
, BM_SETCHECK
, BST_CHECKED
, 0);
1135 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1136 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1137 DATETIME_SendSimpleNotify(infoPtr
, DTN_CLOSEUP
);
1139 if ((lpnmh
->hwndFrom
== infoPtr
->hUpdown
) && (lpnmh
->code
== UDN_DELTAPOS
)) {
1140 const NM_UPDOWN
*lpnmud
= (const NM_UPDOWN
*)lpnmh
;
1141 TRACE("Delta pos %d\n", lpnmud
->iDelta
);
1142 infoPtr
->pendingUpdown
= lpnmud
->iDelta
;
1149 DATETIME_KeyDown (DATETIME_INFO
*infoPtr
, DWORD vkCode
)
1151 int fieldNum
= infoPtr
->select
& DTHT_DATEFIELD
;
1155 if (!(infoPtr
->haveFocus
)) return 0;
1156 if ((fieldNum
==0) && (infoPtr
->select
)) return 0;
1158 if (infoPtr
->select
& FORMATCALLMASK
) {
1159 FIXME ("Callbacks not implemented yet\n");
1165 infoPtr
->nCharsEntered
= 0;
1166 DATETIME_IncreaseField (infoPtr
, fieldNum
, 1);
1167 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1171 infoPtr
->nCharsEntered
= 0;
1172 DATETIME_IncreaseField (infoPtr
, fieldNum
, -1);
1173 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1176 infoPtr
->nCharsEntered
= 0;
1177 DATETIME_IncreaseField (infoPtr
, fieldNum
, INT_MIN
);
1178 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1181 infoPtr
->nCharsEntered
= 0;
1182 DATETIME_IncreaseField (infoPtr
, fieldNum
, INT_MAX
);
1183 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1186 new = infoPtr
->select
;
1194 } while ((infoPtr
->fieldspec
[new] & DT_STRING
) && (wrap
<2));
1195 if (new != infoPtr
->select
)
1196 DATETIME_SetSelectedField(infoPtr
, new);
1199 new = infoPtr
->select
;
1202 if (new==infoPtr
->nrFields
) {
1206 } while ((infoPtr
->fieldspec
[new] & DT_STRING
) && (wrap
<2));
1207 if (new != infoPtr
->select
)
1208 DATETIME_SetSelectedField(infoPtr
, new);
1212 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1219 DATETIME_Char (DATETIME_INFO
*infoPtr
, WPARAM vkCode
)
1221 int fieldNum
, fieldSpec
;
1223 fieldNum
= infoPtr
->select
& DTHT_DATEFIELD
;
1224 fieldSpec
= infoPtr
->fieldspec
[fieldNum
];
1226 if (fieldSpec
== ONELETTERAMPM
|| fieldSpec
== TWOLETTERAMPM
) {
1227 infoPtr
->charsEntered
[0] = vkCode
;
1228 infoPtr
->nCharsEntered
= 1;
1230 DATETIME_ApplySelectedField(infoPtr
);
1231 } else if (vkCode
>= '0' && vkCode
<= '9') {
1234 infoPtr
->charsEntered
[infoPtr
->nCharsEntered
++] = vkCode
;
1236 if (fieldSpec
== INVALIDFULLYEAR
|| fieldSpec
== FULLYEAR
)
1241 if ((fieldSpec
== ONEDIGIT12HOUR
||
1242 fieldSpec
== TWODIGIT12HOUR
||
1243 fieldSpec
== ONEDIGIT24HOUR
||
1244 fieldSpec
== TWODIGIT24HOUR
) &&
1245 (infoPtr
->nCharsEntered
== 1))
1251 if (maxChars
== infoPtr
->nCharsEntered
)
1252 DATETIME_ApplySelectedField(infoPtr
);
1260 DATETIME_VScroll (DATETIME_INFO
*infoPtr
, WORD wScroll
)
1262 int fieldNum
= infoPtr
->select
& DTHT_DATEFIELD
;
1264 if ((SHORT
)LOWORD(wScroll
) != SB_THUMBPOSITION
) return 0;
1265 if (!(infoPtr
->haveFocus
)) return 0;
1266 if ((fieldNum
==0) && (infoPtr
->select
)) return 0;
1268 if (infoPtr
->pendingUpdown
>= 0) {
1269 DATETIME_IncreaseField (infoPtr
, fieldNum
, 1);
1270 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1273 DATETIME_IncreaseField (infoPtr
, fieldNum
, -1);
1274 DATETIME_SendDateTimeChangeNotify (infoPtr
);
1277 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1284 DATETIME_KillFocus (DATETIME_INFO
*infoPtr
, HWND lostFocus
)
1286 TRACE("lost focus to %p\n", lostFocus
);
1288 if (infoPtr
->haveFocus
) {
1289 DATETIME_SendSimpleNotify (infoPtr
, NM_KILLFOCUS
);
1290 infoPtr
->haveFocus
= 0;
1291 DATETIME_SetSelectedField (infoPtr
, -1);
1294 InvalidateRect (infoPtr
->hwndSelf
, NULL
, TRUE
);
1301 DATETIME_NCCreate (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
1303 DWORD dwExStyle
= GetWindowLongW(hwnd
, GWL_EXSTYLE
);
1304 /* force control to have client edge */
1305 dwExStyle
|= WS_EX_CLIENTEDGE
;
1306 SetWindowLongW(hwnd
, GWL_EXSTYLE
, dwExStyle
);
1311 static LRESULT
DATETIME_NCPaint (HWND hwnd
, HRGN region
)
1320 theme
= OpenThemeDataForDpi(NULL
, WC_EDITW
, GetDpiForWindow(hwnd
));
1322 return DefWindowProcW(hwnd
, WM_NCPAINT
, (WPARAM
)region
, 0);
1324 exStyle
= GetWindowLongW(hwnd
, GWL_EXSTYLE
);
1325 if (!(exStyle
& WS_EX_CLIENTEDGE
))
1327 CloseThemeData(theme
);
1328 return DefWindowProcW(hwnd
, WM_NCPAINT
, (WPARAM
)region
, 0);
1331 cxEdge
= GetSystemMetrics(SM_CXEDGE
);
1332 cyEdge
= GetSystemMetrics(SM_CYEDGE
);
1333 GetWindowRect(hwnd
, &r
);
1335 /* New clipping region passed to default proc to exclude border */
1336 clipRgn
= CreateRectRgn(r
.left
+ cxEdge
, r
.top
+ cyEdge
, r
.right
- cxEdge
, r
.bottom
- cyEdge
);
1337 if (region
!= (HRGN
)1)
1338 CombineRgn(clipRgn
, clipRgn
, region
, RGN_AND
);
1339 OffsetRect(&r
, -r
.left
, -r
.top
);
1341 dc
= GetDCEx(hwnd
, region
, DCX_WINDOW
| DCX_INTERSECTRGN
);
1342 if (IsThemeBackgroundPartiallyTransparent(theme
, 0, 0))
1343 DrawThemeParentBackground(hwnd
, dc
, &r
);
1344 DrawThemeBackground(theme
, dc
, 0, 0, &r
, 0);
1345 ReleaseDC(hwnd
, dc
);
1346 CloseThemeData(theme
);
1348 /* Call default proc to get the scrollbars etc. also painted */
1349 DefWindowProcW(hwnd
, WM_NCPAINT
, (WPARAM
)clipRgn
, 0);
1350 DeleteObject(clipRgn
);
1354 static LRESULT
DATETIME_MouseMove (DATETIME_INFO
*infoPtr
, LONG x
, LONG y
)
1356 TRACKMOUSEEVENT event
;
1362 hot
= PtInRect(&infoPtr
->calbutton
, point
);
1363 if (hot
!= infoPtr
->bCalHot
)
1365 infoPtr
->bCalHot
= hot
;
1366 RedrawWindow(infoPtr
->hwndSelf
, &infoPtr
->calbutton
, 0, RDW_INVALIDATE
| RDW_UPDATENOW
);
1372 event
.cbSize
= sizeof(TRACKMOUSEEVENT
);
1373 event
.dwFlags
= TME_QUERY
;
1374 if (!TrackMouseEvent(&event
) || event
.hwndTrack
!= infoPtr
->hwndSelf
|| !(event
.dwFlags
& TME_LEAVE
))
1376 event
.hwndTrack
= infoPtr
->hwndSelf
;
1377 event
.dwFlags
= TME_LEAVE
;
1378 TrackMouseEvent(&event
);
1384 static LRESULT
DATETIME_MouseLeave (DATETIME_INFO
*infoPtr
)
1386 infoPtr
->bCalHot
= FALSE
;
1387 RedrawWindow(infoPtr
->hwndSelf
, &infoPtr
->calbutton
, 0, RDW_INVALIDATE
| RDW_UPDATENOW
);
1392 DATETIME_SetFocus (DATETIME_INFO
*infoPtr
, HWND lostFocus
)
1394 TRACE("got focus from %p\n", lostFocus
);
1396 /* if monthcal is open and it loses focus, close monthcal */
1397 if (infoPtr
->hMonthCal
&& (lostFocus
== infoPtr
->hMonthCal
) &&
1398 IsWindowVisible(infoPtr
->hMonthCal
))
1400 ShowWindow(infoPtr
->hMonthCal
, SW_HIDE
);
1401 DATETIME_SendSimpleNotify(infoPtr
, DTN_CLOSEUP
);
1402 /* note: this get triggered even if monthcal loses focus to a dropdown
1403 * box click, which occurs without an intermediate WM_PAINT call
1405 infoPtr
->bDropdownEnabled
= FALSE
;
1409 if (infoPtr
->haveFocus
== 0) {
1410 DATETIME_SendSimpleNotify (infoPtr
, NM_SETFOCUS
);
1411 infoPtr
->haveFocus
= DTHT_GOTFOCUS
;
1414 InvalidateRect(infoPtr
->hwndSelf
, NULL
, FALSE
);
1421 DATETIME_SendDateTimeChangeNotify (const DATETIME_INFO
*infoPtr
)
1423 NMDATETIMECHANGE dtdtc
;
1425 dtdtc
.nmhdr
.hwndFrom
= infoPtr
->hwndSelf
;
1426 dtdtc
.nmhdr
.idFrom
= GetWindowLongPtrW(infoPtr
->hwndSelf
, GWLP_ID
);
1427 dtdtc
.nmhdr
.code
= DTN_DATETIMECHANGE
;
1429 dtdtc
.dwFlags
= infoPtr
->dateValid
? GDT_VALID
: GDT_NONE
;
1431 dtdtc
.st
= infoPtr
->date
;
1432 return (BOOL
) SendMessageW (infoPtr
->hwndNotify
, WM_NOTIFY
,
1433 dtdtc
.nmhdr
.idFrom
, (LPARAM
)&dtdtc
);
1438 DATETIME_SendSimpleNotify (const DATETIME_INFO
*infoPtr
, UINT code
)
1442 TRACE("%x\n", code
);
1443 nmhdr
.hwndFrom
= infoPtr
->hwndSelf
;
1444 nmhdr
.idFrom
= GetWindowLongPtrW(infoPtr
->hwndSelf
, GWLP_ID
);
1447 return (BOOL
) SendMessageW (infoPtr
->hwndNotify
, WM_NOTIFY
,
1448 nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
1452 DATETIME_Size (DATETIME_INFO
*infoPtr
, INT width
, INT height
)
1455 infoPtr
->rcClient
.bottom
= height
;
1456 infoPtr
->rcClient
.right
= width
;
1458 TRACE("Height=%d, Width=%d\n", infoPtr
->rcClient
.bottom
, infoPtr
->rcClient
.right
);
1460 infoPtr
->rcDraw
= infoPtr
->rcClient
;
1462 if (infoPtr
->dwStyle
& DTS_UPDOWN
) {
1463 SetWindowPos(infoPtr
->hUpdown
, NULL
,
1464 infoPtr
->rcClient
.right
-14, 0,
1465 15, infoPtr
->rcClient
.bottom
- infoPtr
->rcClient
.top
,
1466 SWP_NOACTIVATE
| SWP_NOZORDER
);
1469 /* set the size of the button that drops the calendar down */
1470 /* FIXME: account for style that allows button on left side */
1471 infoPtr
->calbutton
.top
= infoPtr
->rcDraw
.top
;
1472 infoPtr
->calbutton
.bottom
= infoPtr
->rcDraw
.bottom
;
1473 infoPtr
->calbutton
.left
= infoPtr
->rcDraw
.right
-15;
1474 infoPtr
->calbutton
.right
= infoPtr
->rcDraw
.right
;
1477 /* set enable/disable button size for show none style being enabled */
1478 /* FIXME: these dimensions are completely incorrect */
1479 infoPtr
->checkbox
.top
= infoPtr
->rcDraw
.top
;
1480 infoPtr
->checkbox
.bottom
= infoPtr
->rcDraw
.bottom
;
1481 infoPtr
->checkbox
.left
= infoPtr
->rcDraw
.left
;
1482 infoPtr
->checkbox
.right
= infoPtr
->rcDraw
.left
+ 10;
1484 InvalidateRect(infoPtr
->hwndSelf
, NULL
, FALSE
);
1490 DATETIME_StyleChanging(DATETIME_INFO
*infoPtr
, WPARAM wStyleType
, STYLESTRUCT
*lpss
)
1492 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
1493 wStyleType
, lpss
->styleOld
, lpss
->styleNew
);
1495 /* block DTS_SHOWNONE change */
1496 if ((lpss
->styleNew
^ lpss
->styleOld
) & DTS_SHOWNONE
)
1498 if (lpss
->styleOld
& DTS_SHOWNONE
)
1499 lpss
->styleNew
|= DTS_SHOWNONE
;
1501 lpss
->styleNew
&= ~DTS_SHOWNONE
;
1508 DATETIME_StyleChanged(DATETIME_INFO
*infoPtr
, WPARAM wStyleType
, const STYLESTRUCT
*lpss
)
1510 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
1511 wStyleType
, lpss
->styleOld
, lpss
->styleNew
);
1513 if (wStyleType
!= GWL_STYLE
) return 0;
1515 infoPtr
->dwStyle
= lpss
->styleNew
;
1517 if ( !(lpss
->styleOld
& DTS_SHOWNONE
) && (lpss
->styleNew
& DTS_SHOWNONE
) ) {
1518 infoPtr
->hwndCheckbut
= CreateWindowExW (0, WC_BUTTONW
, 0, WS_CHILD
| WS_VISIBLE
| BS_AUTOCHECKBOX
,
1519 2, 2, 13, 13, infoPtr
->hwndSelf
, 0,
1520 (HINSTANCE
)GetWindowLongPtrW (infoPtr
->hwndSelf
, GWLP_HINSTANCE
), 0);
1521 SendMessageW (infoPtr
->hwndCheckbut
, BM_SETCHECK
, infoPtr
->dateValid
? 1 : 0, 0);
1523 if ( (lpss
->styleOld
& DTS_SHOWNONE
) && !(lpss
->styleNew
& DTS_SHOWNONE
) ) {
1524 DestroyWindow(infoPtr
->hwndCheckbut
);
1525 infoPtr
->hwndCheckbut
= 0;
1527 if ( !(lpss
->styleOld
& DTS_UPDOWN
) && (lpss
->styleNew
& DTS_UPDOWN
) ) {
1528 infoPtr
->hUpdown
= CreateUpDownControl (WS_CHILD
| WS_BORDER
| WS_VISIBLE
, 120, 1, 20, 20,
1529 infoPtr
->hwndSelf
, 1, 0, 0, UD_MAXVAL
, UD_MINVAL
, 0);
1531 if ( (lpss
->styleOld
& DTS_UPDOWN
) && !(lpss
->styleNew
& DTS_UPDOWN
) ) {
1532 DestroyWindow(infoPtr
->hUpdown
);
1533 infoPtr
->hUpdown
= 0;
1536 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1540 static LRESULT
DATETIME_ThemeChanged (DATETIME_INFO
*infoPtr
)
1544 theme
= GetWindowTheme(infoPtr
->hwndSelf
);
1545 CloseThemeData(theme
);
1546 OpenThemeData(infoPtr
->hwndSelf
, themeClass
);
1547 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1551 static BOOL
DATETIME_GetIdealSize(DATETIME_INFO
*infoPtr
, SIZE
*size
)
1560 size
->cx
= size
->cy
= 0;
1562 hdc
= GetDC(infoPtr
->hwndSelf
);
1563 oldFont
= SelectObject(hdc
, infoPtr
->hFont
);
1565 /* Get text font height */
1566 DATETIME_ReturnTxt(infoPtr
, 0, txt
, ARRAY_SIZE(txt
));
1567 GetTextExtentPoint32W(hdc
, txt
, lstrlenW(txt
), &field_size
);
1568 size
->cy
= field_size
.cy
;
1570 /* Get text font width */
1571 for (i
= 0; i
< infoPtr
->nrFields
; i
++)
1573 size
->cx
+= DATETIME_GetFieldWidth(infoPtr
, hdc
, i
);
1576 SelectObject(hdc
, oldFont
);
1577 ReleaseDC(infoPtr
->hwndSelf
, hdc
);
1579 if (infoPtr
->dwStyle
& DTS_UPDOWN
)
1581 GetWindowRect(infoPtr
->hUpdown
, &rect
);
1582 size
->cx
+= rect
.right
- rect
.left
;
1586 size
->cx
+= infoPtr
->calbutton
.right
- infoPtr
->calbutton
.left
;
1589 if (infoPtr
->dwStyle
& DTS_SHOWNONE
)
1591 size
->cx
+= infoPtr
->checkbox
.right
- infoPtr
->checkbox
.left
;
1594 /* Add space between controls for them not to get too close */
1598 TRACE("cx=%d cy=%d\n", size
->cx
, size
->cy
);
1603 DATETIME_SetFont (DATETIME_INFO
*infoPtr
, HFONT font
, BOOL repaint
)
1605 infoPtr
->hFont
= font
;
1606 if (repaint
) InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1612 DATETIME_Create (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
1614 DATETIME_INFO
*infoPtr
= Alloc (sizeof(DATETIME_INFO
));
1615 STYLESTRUCT ss
= { 0, lpcs
->style
};
1617 if (!infoPtr
) return -1;
1619 infoPtr
->hwndSelf
= hwnd
;
1620 infoPtr
->dwStyle
= lpcs
->style
;
1622 infoPtr
->nrFieldsAllocated
= 32;
1623 infoPtr
->fieldspec
= Alloc (infoPtr
->nrFieldsAllocated
* sizeof(int));
1624 infoPtr
->fieldRect
= Alloc (infoPtr
->nrFieldsAllocated
* sizeof(RECT
));
1625 infoPtr
->buflen
= Alloc (infoPtr
->nrFieldsAllocated
* sizeof(int));
1626 infoPtr
->hwndNotify
= lpcs
->hwndParent
;
1627 infoPtr
->select
= -1; /* initially, nothing is selected */
1628 infoPtr
->bDropdownEnabled
= TRUE
;
1629 infoPtr
->bCalHot
= FALSE
;
1631 DATETIME_StyleChanged(infoPtr
, GWL_STYLE
, &ss
);
1632 DATETIME_SetFormatW (infoPtr
, 0);
1634 /* create the monthcal control */
1635 infoPtr
->hMonthCal
= CreateWindowExW (0, MONTHCAL_CLASSW
, 0, WS_BORDER
| WS_POPUP
| WS_CLIPSIBLINGS
,
1636 0, 0, 0, 0, infoPtr
->hwndSelf
, 0, 0, 0);
1638 /* initialize info structure */
1639 GetLocalTime (&infoPtr
->date
);
1640 infoPtr
->dateValid
= TRUE
;
1641 infoPtr
->hFont
= GetStockObject(DEFAULT_GUI_FONT
);
1643 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
1644 OpenThemeData(hwnd
, themeClass
);
1652 DATETIME_Destroy (DATETIME_INFO
*infoPtr
)
1656 theme
= GetWindowTheme(infoPtr
->hwndSelf
);
1657 CloseThemeData(theme
);
1659 if (infoPtr
->hwndCheckbut
)
1660 DestroyWindow(infoPtr
->hwndCheckbut
);
1661 if (infoPtr
->hUpdown
)
1662 DestroyWindow(infoPtr
->hUpdown
);
1663 if (infoPtr
->hMonthCal
)
1664 DestroyWindow(infoPtr
->hMonthCal
);
1665 SetWindowLongPtrW( infoPtr
->hwndSelf
, 0, 0 ); /* clear infoPtr */
1666 Free (infoPtr
->buflen
);
1667 Free (infoPtr
->fieldRect
);
1668 Free (infoPtr
->fieldspec
);
1675 DATETIME_GetText (const DATETIME_INFO
*infoPtr
, INT count
, LPWSTR dst
)
1680 if (!dst
|| (count
<= 0)) return 0;
1683 for (i
= 0; i
< infoPtr
->nrFields
; i
++)
1685 DATETIME_ReturnTxt(infoPtr
, i
, buf
, ARRAY_SIZE(buf
));
1686 if ((lstrlenW(dst
) + lstrlenW(buf
)) < count
)
1690 return lstrlenW(dst
);
1693 static int DATETIME_GetTextLength(const DATETIME_INFO
*info
)
1698 TRACE("%p.\n", info
);
1700 for (i
= 0; i
< info
->nrFields
; i
++)
1702 DATETIME_ReturnTxt(info
, i
, buffer
, ARRAY_SIZE(buffer
));
1703 length
+= lstrlenW(buffer
);
1708 static LRESULT WINAPI
1709 DATETIME_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1711 DATETIME_INFO
*infoPtr
= ((DATETIME_INFO
*)GetWindowLongPtrW (hwnd
, 0));
1713 TRACE ("%x, %lx, %lx\n", uMsg
, wParam
, lParam
);
1715 if (!infoPtr
&& (uMsg
!= WM_CREATE
) && (uMsg
!= WM_NCCREATE
))
1716 return DefWindowProcW( hwnd
, uMsg
, wParam
, lParam
);
1720 case DTM_GETSYSTEMTIME
:
1721 return DATETIME_GetSystemTime (infoPtr
, (SYSTEMTIME
*) lParam
);
1723 case DTM_SETSYSTEMTIME
:
1724 return DATETIME_SetSystemTime (infoPtr
, wParam
, (SYSTEMTIME
*) lParam
);
1727 return SendMessageW (infoPtr
->hMonthCal
, MCM_GETRANGE
, wParam
, lParam
);
1730 return SendMessageW (infoPtr
->hMonthCal
, MCM_SETRANGE
, wParam
, lParam
);
1732 case DTM_SETFORMATA
:
1733 return DATETIME_SetFormatA (infoPtr
, (LPCSTR
)lParam
);
1735 case DTM_SETFORMATW
:
1736 return DATETIME_SetFormatW (infoPtr
, (LPCWSTR
)lParam
);
1738 case DTM_GETMONTHCAL
:
1739 return (LRESULT
)infoPtr
->hMonthCal
;
1741 case DTM_SETMCCOLOR
:
1742 return SendMessageW (infoPtr
->hMonthCal
, MCM_SETCOLOR
, wParam
, lParam
);
1744 case DTM_GETMCCOLOR
:
1745 return SendMessageW (infoPtr
->hMonthCal
, MCM_GETCOLOR
, wParam
, 0);
1748 return SendMessageW (infoPtr
->hMonthCal
, WM_SETFONT
, wParam
, lParam
);
1751 return SendMessageW (infoPtr
->hMonthCal
, WM_GETFONT
, wParam
, lParam
);
1753 case DTM_GETIDEALSIZE
:
1754 return DATETIME_GetIdealSize(infoPtr
, (SIZE
*)lParam
);
1757 return DATETIME_Notify (infoPtr
, (LPNMHDR
)lParam
);
1760 return DATETIME_Enable (infoPtr
, (BOOL
)wParam
);
1763 return DATETIME_EraseBackground (infoPtr
, (HDC
)wParam
);
1766 return DLGC_WANTARROWS
| DLGC_WANTCHARS
;
1768 case WM_PRINTCLIENT
:
1770 return DATETIME_Paint (infoPtr
, (HDC
)wParam
);
1773 return DATETIME_KeyDown (infoPtr
, wParam
);
1776 return DATETIME_Char (infoPtr
, wParam
);
1779 return DATETIME_KillFocus (infoPtr
, (HWND
)wParam
);
1782 return DATETIME_NCCreate (hwnd
, (LPCREATESTRUCTW
)lParam
);
1785 return DATETIME_NCPaint(hwnd
, (HRGN
)wParam
);
1788 return DATETIME_MouseMove(infoPtr
, (SHORT
)LOWORD(lParam
), (SHORT
)HIWORD(lParam
));
1791 return DATETIME_MouseLeave(infoPtr
);
1794 return DATETIME_SetFocus (infoPtr
, (HWND
)wParam
);
1797 return DATETIME_Size (infoPtr
, (SHORT
)LOWORD(lParam
), (SHORT
)HIWORD(lParam
));
1799 case WM_LBUTTONDOWN
:
1800 return DATETIME_LButtonDown (infoPtr
, (SHORT
)LOWORD(lParam
), (SHORT
)HIWORD(lParam
));
1803 return DATETIME_LButtonUp (infoPtr
);
1806 return DATETIME_VScroll (infoPtr
, (WORD
)wParam
);
1809 return DATETIME_Create (hwnd
, (LPCREATESTRUCTW
)lParam
);
1812 return DATETIME_Destroy (infoPtr
);
1815 return DATETIME_Command (infoPtr
, wParam
, lParam
);
1817 case WM_STYLECHANGING
:
1818 return DATETIME_StyleChanging(infoPtr
, wParam
, (LPSTYLESTRUCT
)lParam
);
1820 case WM_STYLECHANGED
:
1821 return DATETIME_StyleChanged(infoPtr
, wParam
, (LPSTYLESTRUCT
)lParam
);
1823 case WM_THEMECHANGED
:
1824 return DATETIME_ThemeChanged(infoPtr
);
1827 return DATETIME_SetFont(infoPtr
, (HFONT
)wParam
, (BOOL
)lParam
);
1830 return (LRESULT
) infoPtr
->hFont
;
1833 return (LRESULT
) DATETIME_GetText(infoPtr
, wParam
, (LPWSTR
)lParam
);
1835 case WM_GETTEXTLENGTH
:
1836 return (LRESULT
)DATETIME_GetTextLength(infoPtr
);
1842 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
1843 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
1844 uMsg
, wParam
, lParam
);
1845 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
1851 DATETIME_Register (void)
1855 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
1856 wndClass
.style
= CS_GLOBALCLASS
;
1857 wndClass
.lpfnWndProc
= DATETIME_WindowProc
;
1858 wndClass
.cbClsExtra
= 0;
1859 wndClass
.cbWndExtra
= sizeof(DATETIME_INFO
*);
1860 wndClass
.hCursor
= LoadCursorW (0, (LPCWSTR
)IDC_ARROW
);
1861 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
1862 wndClass
.lpszClassName
= DATETIMEPICK_CLASSW
;
1864 RegisterClassW (&wndClass
);
1869 DATETIME_Unregister (void)
1871 UnregisterClassW (DATETIMEPICK_CLASSW
, NULL
);