monthcal.c 65.6 KB
Newer Older
1 2 3 4
/*
 * comctl32 month calendar unit tests
 *
 * Copyright (C) 2006 Vitaliy Margolen
5
 * Copyright (C) 2007 Farshad Agah
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21 22 23 24 25 26 27 28 29 30
 */

#include <stdarg.h>

#include "windef.h"
#include "winbase.h"
#include "winuser.h"

#include "commctrl.h"

#include "wine/test.h"
31
#include "v6util.h"
32
#include <windows.h>
33
#include "msg.h"
34 35

#define expect(expected, got) ok(expected == got, "Expected %d, got %d\n", expected, got);
36
#define expect_hex(expected, got) ok(expected == got, "Expected %x, got %x\n", expected, got);
37
#define expect_d(expected, got) ok(abs((expected) - (got)) <= 2, "Expected %d, got %d\n", expected, got);
38

39 40 41 42
#define NUM_MSG_SEQUENCES   2
#define PARENT_SEQ_INDEX    0
#define MONTHCAL_SEQ_INDEX  1

43 44
#define SEL_NOTIFY_TEST_ID  100

45 46
static struct msg_sequence *sequences[NUM_MSG_SEQUENCES];

47 48
static HWND parent_wnd;

49 50 51 52 53 54 55
static const struct message create_parent_window_seq[] = {
    { WM_GETMINMAXINFO, sent },
    { WM_NCCREATE, sent },
    { WM_NCCALCSIZE, sent|wparam, 0 },
    { WM_CREATE, sent },
    { WM_SHOWWINDOW, sent|wparam, 1 },
    { WM_WINDOWPOSCHANGING, sent|wparam, 0 },
56
    { WM_QUERYNEWPALETTE, sent|optional },
57 58
    { WM_WINDOWPOSCHANGING, sent|wparam|optional, 0 },
    { WM_WINDOWPOSCHANGED, sent|optional },
59
    { WM_ACTIVATEAPP, sent|wparam, 1 },
60
    { WM_NCACTIVATE, sent },
61 62 63 64 65 66 67 68 69 70 71 72 73 74
    { WM_ACTIVATE, sent|wparam, 1 },
    { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 },
    { WM_IME_NOTIFY, sent|defwinproc|optional },
    { WM_SETFOCUS, sent|wparam|defwinproc, 0 },
    /* Win9x adds SWP_NOZORDER below */
    { WM_WINDOWPOSCHANGED, sent, /*|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE*/ },
    { WM_NCCALCSIZE, sent|wparam|optional, 1 },
    { WM_SIZE, sent },
    { WM_MOVE, sent },
    { 0 }
};

static const struct message create_monthcal_control_seq[] = {
    { WM_NOTIFYFORMAT, sent|lparam, 0, NF_QUERY },
75
    { WM_QUERYUISTATE, sent|optional },
76 77 78 79 80 81 82
    { WM_GETFONT, sent },
    { WM_PARENTNOTIFY, sent|wparam, WM_CREATE},
    { 0 }
};

static const struct message create_monthcal_multi_sel_style_seq[] = {
    { WM_NOTIFYFORMAT, sent|lparam, 0, NF_QUERY },
83
    { WM_QUERYUISTATE, sent|optional },
84
    { WM_GETFONT, sent },
85
    { WM_PARENTNOTIFY, sent },
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    { 0 }
};

static const struct message monthcal_curr_date_seq[] = {
    { MCM_SETCURSEL, sent|wparam, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
    { MCM_SETCURSEL, sent|wparam, 0},
    { MCM_SETCURSEL, sent|wparam, 0},
    { MCM_GETCURSEL, sent|wparam, 0},
    { MCM_GETCURSEL, sent|wparam|lparam, 0, 0},
    { 0 }
};

static const struct message monthcal_first_day_seq[] = {
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

102
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, -5},
103 104
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

105
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, -4},
106 107
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

108
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, -3},
109 110
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

111
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, -2},
112 113
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

114 115 116 117 118 119 120 121 122 123
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, -1},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 1},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 2},
124 125
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

126
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 3},
127
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},
128 129 130 131 132 133 134

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 4},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 5},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

135
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 6},
136 137 138 139 140 141 142 143 144 145
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 7},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 8},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 9},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},
146

147 148 149 150
    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 10},
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},

    { MCM_SETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 11},
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
    { MCM_GETFIRSTDAYOFWEEK, sent|wparam|lparam, 0, 0},
    { 0 }
};

static const struct message monthcal_unicode_seq[] = {
    { MCM_GETUNICODEFORMAT, sent|wparam|lparam, 0, 0},
    { MCM_SETUNICODEFORMAT, sent|wparam|lparam, 1, 0},
    { MCM_GETUNICODEFORMAT, sent|wparam|lparam, 0, 0},
    { MCM_SETUNICODEFORMAT, sent|wparam|lparam, 0, 0},
    { MCM_GETUNICODEFORMAT, sent|wparam|lparam, 0, 0},
    { MCM_SETUNICODEFORMAT, sent|wparam|lparam, 1, 0},
    { 0 }
};

static const struct message monthcal_hit_test_seq[] = {
166 167
    { MCM_SETCURSEL, sent|wparam, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
168 169 170 171 172 173 174 175 176 177
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_HITTEST, sent|wparam, 0},
178 179 180
    { 0 }
};

181 182 183 184 185
static const struct message monthcal_todaylink_seq[] = {
    { MCM_HITTEST, sent|wparam, 0},
    { MCM_SETTODAY, sent|wparam, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
    { MCM_GETTODAY, sent|wparam, 0},
186
    { WM_LBUTTONDOWN, sent|wparam, MK_LBUTTON},
187 188 189 190 191 192
    { WM_CAPTURECHANGED, sent|wparam|lparam|defwinproc, 0, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
    { MCM_GETCURSEL, sent|wparam, 0},
    { 0 }
};

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
static const struct message monthcal_today_seq[] = {
    { MCM_SETTODAY, sent|wparam, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
    { MCM_GETTODAY, sent|wparam, 0},
    { MCM_SETTODAY, sent|wparam, 0},
    { WM_PAINT, sent|wparam|lparam|defwinproc, 0, 0},
    { MCM_GETTODAY, sent|wparam, 0},
    { 0 }
};

static const struct message monthcal_scroll_seq[] = {
    { MCM_SETMONTHDELTA, sent|wparam|lparam, 2, 0},
    { MCM_SETMONTHDELTA, sent|wparam|lparam, 3, 0},
    { MCM_GETMONTHDELTA, sent|wparam|lparam, 0, 0},
    { MCM_SETMONTHDELTA, sent|wparam|lparam, 12, 0},
    { MCM_GETMONTHDELTA, sent|wparam|lparam, 0, 0},
    { MCM_SETMONTHDELTA, sent|wparam|lparam, 15, 0},
    { MCM_GETMONTHDELTA, sent|wparam|lparam, 0, 0},
    { MCM_SETMONTHDELTA, sent|wparam|lparam, -5, 0},
    { MCM_GETMONTHDELTA, sent|wparam|lparam, 0, 0},
    { 0 }
};

216 217 218 219 220 221
static const struct message monthcal_monthrange_seq[] = {
    { MCM_GETMONTHRANGE, sent|wparam, GMR_VISIBLE},
    { MCM_GETMONTHRANGE, sent|wparam, GMR_DAYSTATE},
    { 0 }
};

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
static const struct message monthcal_max_sel_day_seq[] = {
    { MCM_SETMAXSELCOUNT, sent|wparam|lparam, 5, 0},
    { MCM_GETMAXSELCOUNT, sent|wparam|lparam, 0, 0},
    { MCM_SETMAXSELCOUNT, sent|wparam|lparam, 15, 0},
    { MCM_GETMAXSELCOUNT, sent|wparam|lparam, 0, 0},
    { MCM_SETMAXSELCOUNT, sent|wparam|lparam, -1, 0},
    { MCM_GETMAXSELCOUNT, sent|wparam|lparam, 0, 0},
    { 0 }
};

/* expected message sequence for parent*/
static const struct message destroy_monthcal_parent_msgs_seq[] = {
    { WM_PARENTNOTIFY, sent|wparam, WM_DESTROY},
    { 0 }
};

/* expected message sequence for child*/
static const struct message destroy_monthcal_child_msgs_seq[] = {
240
    { 0x0090, sent|optional }, /* Vista */
241 242 243 244 245 246 247 248 249
    { WM_SHOWWINDOW, sent|wparam|lparam, 0, 0},
    { WM_WINDOWPOSCHANGING, sent|wparam, 0},
    { WM_WINDOWPOSCHANGED, sent|wparam, 0},
    { WM_DESTROY, sent|wparam|lparam, 0, 0},
    { WM_NCDESTROY, sent|wparam|lparam, 0, 0},
    { 0 }
};

static const struct message destroy_monthcal_multi_sel_style_seq[] = {
250
    { 0x0090, sent|optional }, /* Vista */
251 252 253
    { WM_SHOWWINDOW, sent|wparam|lparam, 0, 0},
    { WM_WINDOWPOSCHANGING, sent|wparam, 0},
    { WM_WINDOWPOSCHANGED, sent|wparam, 0},
254 255 256 257 258
    { WM_DESTROY, sent|wparam|lparam, 0, 0},
    { WM_NCDESTROY, sent|wparam|lparam, 0, 0},
    { 0 }
};

259
static void test_monthcal(void)
260 261
{
    HWND hwnd;
262
    SYSTEMTIME st[2], st1[2], today;
263
    int res, month_range;
264
    DWORD limits;
265 266 267 268

    hwnd = CreateWindowA(MONTHCAL_CLASSA, "MonthCal", WS_POPUP | WS_VISIBLE, CW_USEDEFAULT,
                         0, 300, 300, 0, 0, NULL, NULL);
    ok(hwnd != NULL, "Failed to create MonthCal\n");
269 270 271

    /* test range just after creation */
    memset(&st, 0xcc, sizeof(st));
272
    limits = SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st);
273 274 275 276 277 278 279 280 281
    ok(limits == 0 ||
       broken(limits == GDTR_MIN), /* comctl32 <= 4.70 */
       "No limits should be set (%d)\n", limits);
    if (limits == GDTR_MIN)
    {
        win_skip("comctl32 <= 4.70 is broken\n");
        DestroyWindow(hwnd);
        return;
    }
282

283 284 285 286 287 288 289 290 291
    ok(0 == st[0].wYear ||
       broken(1752 == st[0].wYear), /* comctl32 <= 4.72 */
       "Expected 0, got %d\n", st[0].wYear);
    ok(0 == st[0].wMonth ||
       broken(9 == st[0].wMonth), /* comctl32 <= 4.72 */
       "Expected 0, got %d\n", st[0].wMonth);
    ok(0 == st[0].wDay ||
       broken(14 == st[0].wDay), /* comctl32 <= 4.72 */
       "Expected 0, got %d\n", st[0].wDay);
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
    expect(0, st[0].wDayOfWeek);
    expect(0, st[0].wHour);
    expect(0, st[0].wMinute);
    expect(0, st[0].wSecond);
    expect(0, st[0].wMilliseconds);

    expect(0, st[1].wYear);
    expect(0, st[1].wMonth);
    expect(0, st[1].wDay);
    expect(0, st[1].wDayOfWeek);
    expect(0, st[1].wHour);
    expect(0, st[1].wMinute);
    expect(0, st[1].wSecond);
    expect(0, st[1].wMilliseconds);

307 308 309
    GetSystemTime(&st[0]);
    st[1] = st[0];

310
    SendMessageA(hwnd, MCM_GETTODAY, 0, (LPARAM)&today);
311

312 313 314 315
    /* Invalid date/time */
    st[0].wYear  = 2000;
    /* Time should not matter */
    st[1].wHour = st[1].wMinute = st[1].wSecond = 70;
316
    st[1].wMilliseconds = 1200;
317
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set MAX limit\n");
318 319 320 321 322 323
    /* invalid timestamp is written back with today data and msecs untouched */
    expect(today.wHour, st[1].wHour);
    expect(today.wMinute, st[1].wMinute);
    expect(today.wSecond, st[1].wSecond);
    expect(1200, st[1].wMilliseconds);

324
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
325
    ok(st1[0].wYear != 2000, "Lower limit changed\n");
326 327 328 329 330 331 332 333 334 335 336
    /* invalid timestamp should be replaced with today data, except msecs */
    expect(today.wHour, st1[1].wHour);
    expect(today.wMinute, st1[1].wMinute);
    expect(today.wSecond, st1[1].wSecond);
    expect(1200, st1[1].wMilliseconds);

    /* Invalid date/time with invalid milliseconds only */
    GetSystemTime(&st[0]);
    st[1] = st[0];
    /* Time should not matter */
    st[1].wMilliseconds = 1200;
337
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set MAX limit\n");
338 339 340 341 342 343 344
    /* invalid milliseconds field doesn't lead to invalid timestamp */
    expect(st[0].wHour,   st[1].wHour);
    expect(st[0].wMinute, st[1].wMinute);
    expect(st[0].wSecond, st[1].wSecond);
    expect(1200, st[1].wMilliseconds);

    GetSystemTime(&st[0]);
345 346

    st[1].wMonth = 0;
347 348 349
    ok(!SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st),
            "Should have failed to set limits\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
350
    ok(st1[0].wYear != 2000, "Lower limit changed\n");
351 352 353
    ok(!SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st),
            "Should have failed to set MAX limit\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
354
    ok(st1[0].wYear != 2000, "Lower limit changed\n");
355

356
    GetSystemTime(&st[0]);
357
    st[0].wDay = 20;
358 359 360
    st[0].wMonth = 5;
    st[1] = st[0];

361
    month_range = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st1);
362
    st[1].wMonth--;
363 364 365
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st),
            "Failed to set both min and max limits\n");
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st1);
366
    ok(res == month_range, "Invalid month range (%d)\n", res);
367 368
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == (GDTR_MIN|GDTR_MAX),
            "Limits should be set\n");
369

370
    st[1].wMonth += 2;
371 372 373
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st),
            "Failed to set both min and max limits\n");
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st1);
374 375
    ok(res == month_range, "Invalid month range (%d)\n", res);

376
    st[1].wYear --;
377 378
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st),
            "Failed to set both min and max limits\n");
379
    st[1].wYear += 1;
380 381
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st),
            "Failed to set both min and max limits\n");
382 383

    st[1].wMonth -= 3;
384 385 386
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set max limit\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX,
            "Only MAX limit should be set\n");
387
    st[1].wMonth += 4;
388
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set max limit\n");
389
    st[1].wYear -= 3;
390
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set max limit\n");
391
    st[1].wYear += 4;
392 393 394
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set max limit\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX,
            "Only MAX limit should be set\n");
395

396 397
    /* set both limits, then set max < min */
    GetSystemTime(&st[0]);
398
    st[0].wDay = 25;
399 400
    st[1] = st[0];
    st[1].wYear++;
401 402 403
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN|GDTR_MAX, (LPARAM)st), "Failed to set limits\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == (GDTR_MIN|GDTR_MAX),
            "Min limit expected\n");
404
    st[1].wYear -= 2;
405 406
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Failed to set limits\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "Max limit expected\n");
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427

    expect(0, st1[0].wYear);
    expect(0, st1[0].wMonth);
    expect(0, st1[0].wDay);
    expect(0, st1[0].wDayOfWeek);
    expect(0, st1[0].wHour);
    expect(0, st1[0].wMinute);
    expect(0, st1[0].wSecond);
    expect(0, st1[0].wMilliseconds);

    expect(st[1].wYear,      st1[1].wYear);
    expect(st[1].wMonth,     st1[1].wMonth);
    expect(st[1].wDay,       st1[1].wDay);
    expect(st[1].wDayOfWeek, st1[1].wDayOfWeek);
    expect(st[1].wHour,      st1[1].wHour);
    expect(st[1].wMinute,    st1[1].wMinute);
    expect(st[1].wSecond,    st1[1].wSecond);
    expect(st[1].wMilliseconds, st1[1].wMilliseconds);

    st[1] = st[0];
    st[1].wYear++;
428 429 430
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN|GDTR_MAX, (LPARAM)st), "Failed to set limits\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == (GDTR_MIN|GDTR_MAX),
            "Min limit expected\n");
431
    st[0].wYear++; /* start == end now */
432 433
    ok(SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN, (LPARAM)st), "Failed to set limits\n");
    ok(SendMessageA(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MIN, "Min limit expected\n");
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452

    expect(st[0].wYear,      st1[0].wYear);
    expect(st[0].wMonth,     st1[0].wMonth);
    expect(st[0].wDay,       st1[0].wDay);
    expect(st[0].wDayOfWeek, st1[0].wDayOfWeek);
    expect(st[0].wHour,      st1[0].wHour);
    expect(st[0].wMinute,    st1[0].wMinute);
    expect(st[0].wSecond,    st1[0].wSecond);
    expect(st[0].wMilliseconds, st1[0].wMilliseconds);

    expect(0, st1[1].wYear);
    expect(0, st1[1].wMonth);
    expect(0, st1[1].wDay);
    expect(0, st1[1].wDayOfWeek);
    expect(0, st1[1].wHour);
    expect(0, st1[1].wMinute);
    expect(0, st1[1].wSecond);
    expect(0, st1[1].wMilliseconds);

453 454 455
    DestroyWindow(hwnd);
}

456 457
static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
458
    static LONG defwndproc_counter = 0;
459 460 461
    LRESULT ret;
    struct message msg;

462 463 464
    /* log system messages, except for painting */
    if (message < WM_USER &&
        message != WM_PAINT &&
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
        message != WM_ERASEBKGND &&
        message != WM_NCPAINT &&
        message != WM_NCHITTEST &&
        message != WM_GETTEXT &&
        message != WM_GETICON &&
        message != WM_DEVICECHANGE)
    {
        msg.message = message;
        msg.flags = sent|wparam|lparam;
        if (defwndproc_counter) msg.flags |= defwinproc;
        msg.wParam = wParam;
        msg.lParam = lParam;
        add_message(sequences, PARENT_SEQ_INDEX, &msg);
    }

480 481 482 483 484 485 486 487
    if (message == WM_NOTIFY)
    {
        NMHDR *hdr = (NMHDR*)lParam;
        switch (hdr->code)
        {
          case MCN_GETDAYSTATE:
          {
            NMDAYSTATE *nmstate = (NMDAYSTATE*)lParam;
488
            static MONTHDAYSTATE months[14] = { 0 };
489 490 491 492 493 494 495 496 497

            ok(nmstate->cDayState > 0, "got %d\n", nmstate->cDayState);
            ok(nmstate->cDayState <= 14, "got %d\n", nmstate->cDayState);
            ok(nmstate->prgDayState != NULL, "got %p\n", nmstate->prgDayState);

            nmstate->prgDayState = months;

            return TRUE;
          }
498 499 500 501 502
          case MCN_SELECT:
          case MCN_SELCHANGE:
          {
            NMSELCHANGE *nmchg = (NMSELCHANGE*)lParam;
            SYSTEMTIME st[2];
503
            BOOL is_multisel = GetWindowLongPtrA(nmchg->nmhdr.hwndFrom, GWL_STYLE) & MCS_MULTISELECT;
504

505
            if(GetWindowLongPtrA(nmchg->nmhdr.hwndFrom, GWLP_ID) != SEL_NOTIFY_TEST_ID)
506
              break;
507 508
            SendMessageA(nmchg->nmhdr.hwndFrom, is_multisel ? MCM_GETSELRANGE : MCM_GETCURSEL,
                    0, (LPARAM)st);
509 510 511

            expect(st[0].wYear,  nmchg->stSelStart.wYear);
            expect(st[0].wMonth, nmchg->stSelStart.wMonth);
512
            expect(0,            nmchg->stSelStart.wDayOfWeek);
513 514 515 516 517 518
            expect(st[0].wDay,   nmchg->stSelStart.wDay);

            if(is_multisel)
            {
              expect(st[1].wYear,  nmchg->stSelEnd.wYear);
              expect(st[1].wMonth, nmchg->stSelEnd.wMonth);
519
              expect(0,            nmchg->stSelEnd.wDayOfWeek);
520 521 522
              expect(st[1].wDay,   nmchg->stSelEnd.wDay);
            }
            else
523
              ok(!(nmchg->stSelEnd.wYear | nmchg->stSelEnd.wMonth |
524 525 526 527 528 529
                        nmchg->stSelEnd.wDayOfWeek | nmchg->stSelEnd.wDay |
                        nmchg->stSelEnd.wHour | nmchg->stSelEnd.wMinute |
                        nmchg->stSelEnd.wSecond | nmchg->stSelEnd.wMilliseconds),
                        "Non-zero member in stSelEnd\n");
            return TRUE;
          }
530 531 532 533 534
          default:
            break;
        }
    }

535 536 537 538 539 540 541
    defwndproc_counter++;
    ret = DefWindowProcA(hwnd, message, wParam, lParam);
    defwndproc_counter--;

    return ret;
}

542
static BOOL register_parent_wnd_class(void)
543 544 545 546 547 548 549 550 551
{
    WNDCLASSA cls;

    cls.style = 0;
    cls.lpfnWndProc = parent_wnd_proc;
    cls.cbClsExtra = 0;
    cls.cbWndExtra = 0;
    cls.hInstance = GetModuleHandleA(NULL);
    cls.hIcon = 0;
552
    cls.hCursor = LoadCursorA(0, (LPCSTR)IDC_ARROW);
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
    cls.hbrBackground = GetStockObject(WHITE_BRUSH);
    cls.lpszMenuName = NULL;
    cls.lpszClassName = "Month-Cal test parent class";
    return RegisterClassA(&cls);
}

static HWND create_parent_window(void)
{
    HWND hwnd;

    InitCommonControls();

    /* flush message sequences, so we can check the new sequence by the end of function */
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

    if (!register_parent_wnd_class())
        return NULL;

571 572 573
    hwnd = CreateWindowExA(0, "Month-Cal test parent class", "Month-Cal test parent window",
            WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE,
            0, 0, 500, 500, GetDesktopWindow(), NULL, GetModuleHandleA(NULL), NULL);
574
    ok(hwnd != NULL, "failed to create parent wnd\n");
575 576

    /* check for message sequences */
577
    ok_sequence(sequences, PARENT_SEQ_INDEX, create_parent_window_seq, "create parent window", FALSE);
578 579 580 581 582 583

    return hwnd;
}

static LRESULT WINAPI monthcal_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
584
    WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
585
    static LONG defwndproc_counter = 0;
586 587 588 589 590 591 592 593
    LRESULT ret;
    struct message msg;

    msg.message = message;
    msg.flags = sent|wparam|lparam;
    if (defwndproc_counter) msg.flags |= defwinproc;
    msg.wParam = wParam;
    msg.lParam = lParam;
594
    msg.id = 0;
595 596
    add_message(sequences, MONTHCAL_SEQ_INDEX, &msg);

597 598 599 600 601 602 603 604
    /* some debug output for style changing */
    if ((message == WM_STYLECHANGING ||
         message == WM_STYLECHANGED) && lParam)
    {
        STYLESTRUCT *style = (STYLESTRUCT*)lParam;
        trace("\told style: 0x%08x, new style: 0x%08x\n", style->styleOld, style->styleNew);
    }

605
    defwndproc_counter++;
606
    ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
607 608 609 610 611
    defwndproc_counter--;

    return ret;
}

612
static HWND create_monthcal_control(DWORD style)
613
{
614
    WNDPROC oldproc;
615
    RECT rect;
616
    HWND hwnd;
617
    BOOL ret;
618

619 620
    hwnd = CreateWindowExA(0, MONTHCAL_CLASSA, "", WS_CHILD | WS_BORDER | WS_VISIBLE | style,
                    0, 0, 300, 400, parent_wnd, NULL, GetModuleHandleA(NULL), NULL);
621
    ok(hwnd != NULL, "failed to create monthcal wnd\n");
622
    if (!hwnd) return NULL;
623

624 625 626
    oldproc = (WNDPROC)SetWindowLongPtrA(hwnd, GWLP_WNDPROC,
                                        (LONG_PTR)monthcal_subclass_proc);
    SetWindowLongPtrA(hwnd, GWLP_USERDATA, (LONG_PTR)oldproc);
627

628
    SendMessageA(hwnd, WM_SETFONT, (WPARAM)GetStockObject(SYSTEM_FONT), 0);
629

630 631 632 633 634 635 636
    /* make sure calendar grid is 2x1 */
    ret = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&rect);
    ok(ret, "got %d\n", ret);

    ret = SetWindowPos(hwnd, NULL, 0, 0, rect.right * 5 / 2, rect.bottom * 3 / 2, SWP_NOMOVE);
    ok(ret, "got %d\n", ret);

637 638 639
    return hwnd;
}

640 641 642

/* Setter and Getters Tests */

643
static void test_color(void)
644
{
645
    COLORREF color, prev;
646 647 648
    HWND hwnd;

    hwnd = create_monthcal_control(0);
649

650
    /* invalid color index */
651
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TRAILINGTEXT + 1, 0);
652
    expect(~0u, color);
653
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TRAILINGTEXT + 1, RGB(255,255,255));
654
    expect(~0u, prev);
655

656 657
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_BACKGROUND, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_BACKGROUND, RGB(0,0,0));
658
    expect(color, prev);
659
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_BACKGROUND, 0);
660
    expect(RGB(0,0,0), color);
661
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_BACKGROUND, RGB(255,255,255));
662
    expect(color, prev);
663
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_BACKGROUND, 0);
664 665
    expect(RGB(255,255,255), color);

666 667
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_MONTHBK, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_MONTHBK, RGB(0,0,0));
668
    expect(color, prev);
669
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_MONTHBK, 0);
670
    expect(RGB(0,0,0), color);
671
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_MONTHBK, RGB(255,255,255));
672
    expect(color, prev);
673
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_MONTHBK, 0);
674 675
    expect(RGB(255,255,255), color);

676 677
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TEXT, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TEXT, RGB(0,0,0));
678
    expect(color, prev);
679
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TEXT, 0);
680
    expect(RGB(0,0,0), color);
681
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TEXT, RGB(255,255,255));
682
    expect(color, prev);
683
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TEXT, 0);
684 685
    expect(RGB(255,255,255), color);

686 687
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLEBK, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TITLEBK, RGB(0,0,0));
688
    expect(color, prev);
689
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLEBK, 0);
690
    expect(RGB(0,0,0), color);
691
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TITLEBK, RGB(255,255,255));
692
    expect(color, prev);
693
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLEBK, 0);
694 695
    expect(RGB(255,255,255), color);

696 697
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLETEXT, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TITLETEXT, RGB(0,0,0));
698
    expect(color, prev);
699
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLETEXT, 0);
700
    expect(RGB(0,0,0), color);
701
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TITLETEXT, RGB(255,255,255));
702
    expect(color, prev);
703
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TITLETEXT, 0);
704 705
    expect(RGB(255,255,255), color);

706 707
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TRAILINGTEXT, 0);
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TRAILINGTEXT, RGB(0,0,0));
708
    expect(color, prev);
709
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TRAILINGTEXT, 0);
710
    expect(RGB(0,0,0), color);
711
    prev = SendMessageA(hwnd, MCM_SETCOLOR, MCSC_TRAILINGTEXT, RGB(255,255,255));
712
    expect(color, prev);
713
    color = SendMessageA(hwnd, MCM_GETCOLOR, MCSC_TRAILINGTEXT, 0);
714
    expect(RGB(255,255,255), color);
715 716

    DestroyWindow(hwnd);
717 718
}

719
static void test_currdate(void)
720 721 722
{
    SYSTEMTIME st_original, st_new, st_test;
    int res;
723 724 725
    HWND hwnd;

    hwnd = create_monthcal_control(0);
726

727 728
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

729 730 731 732 733 734 735 736 737 738 739 740 741
    /* Setter and Getters for current date selected */
    st_original.wYear = 2000;
    st_original.wMonth = 11;
    st_original.wDay = 28;
    st_original.wHour = 11;
    st_original.wMinute = 59;
    st_original.wSecond = 30;
    st_original.wMilliseconds = 0;
    st_original.wDayOfWeek = 0;

    st_new = st_test = st_original;

    /* Should not validate the time */
742
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_test);
743 744 745 746
    expect(1,res);

    /* Overflow matters, check for wDay */
    st_test.wDay += 4;
747
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_test);
748
    expect(0,res);
749 750 751 752 753 754 755

    /* correct wDay before checking for wMonth */
    st_test.wDay -= 4;
    expect(st_original.wDay, st_test.wDay);

    /* Overflow matters, check for wMonth */
    st_test.wMonth += 4;
756
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_test);
757
    expect(0,res);
758 759 760 761 762 763 764 765 766

    /* checking if gets the information right, modify st_new */
    st_new.wYear += 4;
    st_new.wMonth += 4;
    st_new.wDay += 4;
    st_new.wHour += 4;
    st_new.wMinute += 4;
    st_new.wSecond += 4;

767
    res = SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st_new);
768 769 770 771 772
    expect(1, res);

    /* st_new change to st_origin, above settings with overflow */
    /* should not change the current settings */
    expect(st_original.wYear, st_new.wYear);
773
    expect(st_original.wMonth, st_new.wMonth);
774
    expect(st_original.wDay, st_new.wDay);
775 776 777 778 779 780 781 782 783
    ok(st_original.wHour == st_new.wHour ||
       broken(0 == st_new.wHour), /* comctl32 <= 4.70 */
       "Expected %d, got %d\n", st_original.wHour, st_new.wHour);
    ok(st_original.wMinute == st_new.wMinute ||
       broken(0 == st_new.wMinute), /* comctl32 <= 4.70 */
       "Expected %d, got %d\n", st_original.wMinute, st_new.wMinute);
    ok(st_original.wSecond == st_new.wSecond ||
       broken(0 == st_new.wSecond), /* comctl32 <= 4.70 */
       "Expected %d, got %d\n", st_original.wSecond, st_new.wSecond);
784

785
    /* lparam cannot be NULL */
786
    res = SendMessageA(hwnd, MCM_GETCURSEL, 0, 0);
787
    expect(0, res);
788 789

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_curr_date_seq, "monthcal currDate", TRUE);
790

791 792 793 794 795
    /* December, 31, 9999 is the maximum allowed date */
    memset(&st_new, 0, sizeof(st_new));
    st_new.wYear = 9999;
    st_new.wMonth = 12;
    st_new.wDay = 31;
796
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_new);
797 798
    expect(1, res);
    memset(&st_test, 0, sizeof(st_test));
799
    res = SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st_test);
800 801 802 803 804 805 806 807 808 809 810 811
    expect(1, res);
    expect(st_new.wYear, st_test.wYear);
    expect(st_new.wMonth, st_test.wMonth);
    expect(st_new.wDay, st_test.wDay);
    expect(st_new.wHour, st_test.wHour);
    expect(st_new.wMinute, st_test.wMinute);
    expect(st_new.wSecond, st_test.wSecond);
    /* try one day later */
    st_original = st_new;
    st_new.wYear = 10000;
    st_new.wMonth = 1;
    st_new.wDay = 1;
812
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_new);
813 814 815 816 817 818
    ok(0 == res ||
       broken(1 == res), /* comctl32 <= 4.72 */
       "Expected 0, got %d\n", res);
    if (0 == res)
    {
        memset(&st_test, 0, sizeof(st_test));
819
        res = SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st_test);
820 821 822 823 824 825 826 827
        expect(1, res);
        expect(st_original.wYear, st_test.wYear);
        expect(st_original.wMonth, st_test.wMonth);
        expect(st_original.wDay, st_test.wDay);
        expect(st_original.wHour, st_test.wHour);
        expect(st_original.wMinute, st_test.wMinute);
        expect(st_original.wSecond, st_test.wSecond);
    }
828

829 830 831 832 833
    /* setting selection equal to current reports success even if out range */
    memset(&st_new, 0, sizeof(st_new));
    st_new.wYear = 2009;
    st_new.wDay  = 5;
    st_new.wMonth = 10;
834
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_new);
835 836 837 838 839
    expect(1, res);
    memset(&st_test, 0, sizeof(st_test));
    st_test.wYear = 2009;
    st_test.wDay  = 6;
    st_test.wMonth = 10;
840
    res = SendMessageA(hwnd, MCM_SETRANGE, GDTR_MIN, (LPARAM)&st_test);
841 842
    expect(1, res);
    /* set to current again */
843
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_new);
844 845
    expect(1, res);

846 847 848 849 850 851
    /* set with invalid day of week */
    memset(&st_test, 0, sizeof(st_test));
    st_test.wYear = 2009;
    st_test.wDay  = 7;
    st_test.wMonth = 10;
    st_test.wDayOfWeek = 100;
852
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st_test);
853
    expect(1, res);
854 855

    memset(&st_test, 0, sizeof(st_test));
856
    res = SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st_test);
857 858
    expect(1, res);
    expect(2009, st_test.wYear);
859
    expect(7, st_test.wDay);
860
    expect(10, st_test.wMonth);
861
    expect(3, st_test.wDayOfWeek);
862

863
    DestroyWindow(hwnd);
864 865
}

866
static void test_firstDay(void)
867
{
868
    int res, fday, i, prev;
869
    CHAR b[128], caltype[3];
870
    LCID lcid = LOCALE_USER_DEFAULT;
871
    HWND hwnd;
872 873 874 875 876 877 878 879 880 881 882
    LRESULT ret;

    SetLastError(0xdeadbeef);
    ret = GetLocaleInfoA(lcid, LOCALE_ICALENDARTYPE, caltype, 3);
    if (ret == 0) {
        skip("Must know local calendar type (%x)\n", GetLastError());
        return;
    } else if (atoi(caltype) != CAL_GREGORIAN) {
        skip("MonthCalendar Control only supports Gregorian calendar (type: %s)\n", caltype);
        return;
    }
883 884

    hwnd = create_monthcal_control(0);
885

886 887
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

888
    /* Setter and Getters for first day of week */
889
    /* check for locale first day */
890
    if(GetLocaleInfoA(lcid, LOCALE_IFIRSTDAYOFWEEK, b, 128)){
891
        fday = atoi(b);
892
        res = SendMessageA(hwnd, MCM_GETFIRSTDAYOFWEEK, 0, 0);
893 894
        expect(fday, res);
        prev = fday;
895

896 897 898
        /* checking for the values that actually will be stored as */
        /* current first day when we set a new value */
        for (i = -5; i < 12; i++){
899
            res = SendMessageA(hwnd, MCM_SETFIRSTDAYOFWEEK, 0, i);
900
            expect(prev, res);
901
            res = SendMessageA(hwnd, MCM_GETFIRSTDAYOFWEEK, 0, 0);
902 903 904 905 906
            prev = res;

            if (i == -1){
                expect(MAKELONG(fday, FALSE), res);
            }else if (i >= 7){
907 908
                /* out of range sets max first day of week, locale is ignored */
                expect(MAKELONG(6, TRUE), res);
909 910 911
            }else{
                expect(MAKELONG(i, TRUE), res);
            }
912 913
        }

914 915 916 917
        ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_first_day_seq, "monthcal firstDay", FALSE);

    }else{
        skip("Cannot retrieve first day of the week\n");
918
    }
919

920
    DestroyWindow(hwnd);
921 922
}

923
static void test_unicode(void)
924 925
{
    int res, temp;
926 927 928
    HWND hwnd;

    hwnd = create_monthcal_control(0);
929

930 931
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

932 933 934
    /* Setter and Getters for Unicode format */

    /* getting the current settings */
935
    temp = SendMessageA(hwnd, MCM_GETUNICODEFORMAT, 0, 0);
936 937

    /* setting to 1, should return previous settings */
938
    res = SendMessageA(hwnd, MCM_SETUNICODEFORMAT, 1, 0);
939 940 941
    expect(temp, res);

    /* current setting is 1, so, should return 1 */
942
    res = SendMessageA(hwnd, MCM_GETUNICODEFORMAT, 0, 0);
943 944 945
    ok(1 == res ||
       broken(0 == res), /* comctl32 <= 4.70 */
       "Expected 1, got %d\n", res);
946 947

    /* setting to 0, should return previous settings */
948
    res = SendMessageA(hwnd, MCM_SETUNICODEFORMAT, 0, 0);
949 950 951
    ok(1 == res ||
       broken(0 == res), /* comctl32 <= 4.70 */
       "Expected 1, got %d\n", res);
952 953

    /* current setting is 0, so, it should return 0 */
954
    res = SendMessageA(hwnd, MCM_GETUNICODEFORMAT, 0, 0);
955 956 957
    expect(0, res);

    /* should return previous settings */
958
    res = SendMessageA(hwnd, MCM_SETUNICODEFORMAT, 1, 0);
959
    expect(0, res);
960 961

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_unicode_seq, "monthcal unicode", FALSE);
962 963

    DestroyWindow(hwnd);
964 965
}

966
static void test_hittest(void)
967
{
968 969 970
    typedef struct hittest_test
    {
	UINT ht;
971
        BOOL  todo;
972 973 974
    } hittest_test_t;

    static const hittest_test_t title_hits[] = {
975
        /* Start is the same everywhere */
976 977
        { MCHT_TITLE,        FALSE },
        { MCHT_TITLEBTNPREV, FALSE },
978 979
        /* The middle piece is only tested for presence of items */
        /* End is the same everywhere */
980 981 982
        { MCHT_TITLEBTNNEXT, FALSE },
        { MCHT_TITLE,        FALSE },
        { MCHT_NOWHERE,      TRUE }
983 984
    };

985
    MCHITTESTINFO mchit;
986
    UINT res, old_res;
987
    SYSTEMTIME st;
988 989
    LONG x;
    UINT title_index;
990
    HWND hwnd;
991
    RECT r;
992 993 994
    char yearmonth[80], *locale_month, *locale_year;
    int month_count, year_count;
    BOOL in_the_middle;
995 996 997

    memset(&mchit, 0, sizeof(MCHITTESTINFO));

998 999
    hwnd = create_monthcal_control(0);

1000 1001 1002 1003
    /* test with invalid structure size */
    mchit.cbSize = MCHITTESTINFO_V1_SIZE - 1;
    mchit.pt.x = 0;
    mchit.pt.y = 0;
1004
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1005 1006
    expect(0, mchit.pt.x);
    expect(0, mchit.pt.y);
1007
    expect(~0u, res);
1008 1009
    expect(0, mchit.uHit);
    /* test with invalid pointer */
1010
    res = SendMessageA(hwnd, MCM_HITTEST, 0, 0);
1011
    expect(~0u, res);
1012

1013
    /* resize control to display single Calendar */
1014
    res = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
1015 1016 1017 1018 1019 1020 1021 1022
    if (res == 0)
    {
        win_skip("Message MCM_GETMINREQRECT unsupported. Skipping.\n");
        DestroyWindow(hwnd);
        return;
    }
    MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE);

1023 1024
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1025 1026 1027 1028 1029 1030 1031 1032 1033
    st.wYear = 2007;
    st.wMonth = 4;
    st.wDay = 11;
    st.wHour = 1;
    st.wMinute = 0;
    st.wSecond = 0;
    st.wMilliseconds = 0;
    st.wDayOfWeek = 0;

1034
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st);
1035 1036
    expect(1,res);

1037
    /* (0, 0) is the top left of the control - title */
1038
    mchit.cbSize = MCHITTESTINFO_V1_SIZE;
1039 1040
    mchit.pt.x = 0;
    mchit.pt.y = 0;
1041
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1042 1043 1044
    expect(0, mchit.pt.x);
    expect(0, mchit.pt.y);
    expect(mchit.uHit, res);
1045
    expect_hex(MCHT_TITLE, res);
1046

1047 1048 1049
    /* bottom right of the control and should not be active */
    mchit.pt.x = r.right;
    mchit.pt.y = r.bottom;
1050
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1051 1052
    expect(r.right,  mchit.pt.x);
    expect(r.bottom, mchit.pt.y);
1053
    expect(mchit.uHit, res);
1054
    todo_wine expect_hex(MCHT_NOWHERE, res);
1055

1056 1057 1058
    /* completely out of the control, should not be active */
    mchit.pt.x = 2 * r.right;
    mchit.pt.y = 2 * r.bottom;
1059
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1060 1061
    expect(2 * r.right, mchit.pt.x);
    expect(2 * r.bottom, mchit.pt.y);
1062
    expect(mchit.uHit, res);
1063
    todo_wine expect_hex(MCHT_NOWHERE, res);
1064

1065 1066 1067
    /* in active area - day of the week */
    mchit.pt.x = r.right / 2;
    mchit.pt.y = r.bottom / 2;
1068
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1069 1070
    expect(r.right / 2, mchit.pt.x);
    expect(r.bottom / 2, mchit.pt.y);
1071
    expect(mchit.uHit, res);
1072
    expect_hex(MCHT_CALENDARDATE, res);
1073

1074 1075 1076
    /* in active area - day of the week #2 */
    mchit.pt.x = r.right / 14; /* half of first day rect */
    mchit.pt.y = r.bottom / 2;
1077
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1078 1079
    expect(r.right / 14, mchit.pt.x);
    expect(r.bottom / 2, mchit.pt.y);
1080
    expect(mchit.uHit, res);
1081
    expect_hex(MCHT_CALENDARDATE, res);
1082

1083 1084 1085
    /* in active area - date from prev month */
    mchit.pt.x = r.right / 14; /* half of first day rect */
    mchit.pt.y = 6 * r.bottom / 19;
1086
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1087 1088
    expect(r.right / 14, mchit.pt.x);
    expect(6 * r.bottom / 19, mchit.pt.y);
1089
    expect(mchit.uHit, res);
1090
    expect_hex(MCHT_CALENDARDATEPREV, res);
1091

1092 1093
if (0)
{
1094 1095 1096
    /* (125, 115) is in active area - date from this month */
    mchit.pt.x = 125;
    mchit.pt.y = 115;
1097
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1098 1099 1100
    expect(125, mchit.pt.x);
    expect(115, mchit.pt.y);
    expect(mchit.uHit, res);
1101
    expect(MCHT_CALENDARDATE, res);
1102
}
1103

1104 1105 1106
    /* in active area - date from next month */
    mchit.pt.x = 11 * r.right / 14;
    mchit.pt.y = 16 * r.bottom / 19;
1107
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1108 1109
    expect(11 * r.right / 14, mchit.pt.x);
    expect(16 * r.bottom / 19, mchit.pt.y);
1110
    expect(mchit.uHit, res);
1111
    expect_hex(MCHT_CALENDARDATENEXT, res);
1112

1113 1114 1115
    /* in active area - today link */
    mchit.pt.x = r.right / 14;
    mchit.pt.y = 18 * r.bottom / 19;
1116
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1117 1118
    expect(r.right / 14, mchit.pt.x);
    expect(18 * r.bottom / 19, mchit.pt.y);
1119
    expect(mchit.uHit, res);
1120
    expect_hex(MCHT_TODAYLINK, res);
1121

1122 1123 1124
    /* in active area - today link */
    mchit.pt.x = r.right / 2;
    mchit.pt.y = 18 * r.bottom / 19;
1125
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1126 1127
    expect(r.right / 2, mchit.pt.x);
    expect(18 * r.bottom / 19, mchit.pt.y);
1128
    expect(mchit.uHit, res);
1129
    expect_hex(MCHT_TODAYLINK, res);
1130

1131 1132 1133
    /* in active area - today link */
    mchit.pt.x = r.right / 10;
    mchit.pt.y = 18 * r.bottom / 19;
1134
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1135 1136
    expect(r.right / 10, mchit.pt.x);
    expect(18 * r.bottom / 19, mchit.pt.y);
1137
    expect(mchit.uHit, res);
1138
    expect_hex(MCHT_TODAYLINK, res);
1139

1140
    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_hit_test_seq, "monthcal hit test", TRUE);
1141 1142 1143 1144

    /* The horizontal position of title bar elements depends on locale (y pos
       is constant), so we sample across a horizontal line and make sure we
       find all elements. */
1145 1146

    /* Get the format of the title */
1147
    GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SYEARMONTH, yearmonth, 80);
1148 1149 1150 1151
    /* Find out if we have a month and/or year */
    locale_year = strstr(yearmonth, "y");
    locale_month = strstr(yearmonth, "M");

1152
    mchit.pt.x = 0;
1153
    mchit.pt.y = (5/2) * r.bottom / 19;
1154
    title_index = 0;
1155
    old_res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1156
    expect_hex(title_hits[title_index].ht, old_res);
1157

1158 1159
    in_the_middle = FALSE;
    month_count = year_count = 0;
1160
    for (x = 0; x < r.right; x++){
1161
        mchit.pt.x = x;
1162
        res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1163
        expect(x, mchit.pt.x);
1164
        expect((5/2) * r.bottom / 19, mchit.pt.y);
1165
        expect(mchit.uHit, res);
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
        if (res != old_res) {

            if (old_res == MCHT_TITLEBTNPREV)
                in_the_middle = TRUE;

            if (res == MCHT_TITLEBTNNEXT)
                in_the_middle = FALSE;

            if (in_the_middle) {
                if (res == MCHT_TITLEMONTH)
                    month_count++;
                else if (res == MCHT_TITLEYEAR)
                    year_count++;
            } else {
                title_index++;

                if (sizeof(title_hits) / sizeof(title_hits[0]) <= title_index)
                    break;

                if (title_hits[title_index].todo) {
                    todo_wine
                    ok(title_hits[title_index].ht == res, "Expected %x, got %x, pos %d\n",
                                                          title_hits[title_index].ht, res, x);
                } else {
                    ok(title_hits[title_index].ht == res, "Expected %x, got %x, pos %d\n",
                                                          title_hits[title_index].ht, res, x);
                }
1193
            }
1194
            old_res = res;
1195 1196
        }
    }
1197

1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
    /* There are some limits, even if LOCALE_SYEARMONTH contains rubbish
     * or no month/year indicators at all */
    if (locale_month)
        todo_wine ok(month_count == 1, "Expected 1 month item, got %d\n", month_count);
    else
        ok(month_count <= 1, "Too many month items: %d\n", month_count);

    if (locale_year)
        todo_wine ok(year_count == 1, "Expected 1 year item, got %d\n", year_count);
    else
        ok(year_count <= 1, "Too many year items: %d\n", year_count);

    todo_wine ok(month_count + year_count >= 1, "Not enough month and year items\n");

    ok(r.right <= x && title_index + 1 == sizeof(title_hits) / sizeof(title_hits[0]),
       "Wrong title layout\n");
1214 1215

    DestroyWindow(hwnd);
1216 1217
}

1218
static void test_todaylink(void)
1219 1220 1221
{
    MCHITTESTINFO mchit;
    SYSTEMTIME st_test, st_new;
1222
    UINT res;
1223
    HWND hwnd;
1224
    RECT r;
1225 1226 1227

    memset(&mchit, 0, sizeof(MCHITTESTINFO));

1228 1229
    hwnd = create_monthcal_control(0);

1230
    res = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
1231
    expect(1, res);
1232 1233
    MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE);

1234 1235
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1236
    /* hit active area - today link */
1237
    mchit.cbSize = MCHITTESTINFO_V1_SIZE;
1238 1239
    mchit.pt.x = r.right / 14;
    mchit.pt.y = 18 * r.bottom / 19;
1240
    res = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1241 1242
    expect(r.right / 14, mchit.pt.x);
    expect(18 * r.bottom / 19, mchit.pt.y);
1243
    expect(mchit.uHit, res);
1244
    expect(MCHT_TODAYLINK, res);
1245 1246 1247 1248 1249

    st_test.wDay = 1;
    st_test.wMonth = 1;
    st_test.wYear = 2005;

1250
    res = SendMessageA(hwnd, MCM_SETTODAY, 0, (LPARAM)&st_test);
1251
    expect(0, res);
1252

1253
    memset(&st_new, 0, sizeof(st_new));
1254
    res = SendMessageA(hwnd, MCM_GETTODAY, 0, (LPARAM)&st_new);
1255 1256 1257 1258 1259
    expect(1, res);
    expect(1, st_new.wDay);
    expect(1, st_new.wMonth);
    expect(2005, st_new.wYear);

1260
    res = SendMessageA(hwnd, WM_LBUTTONDOWN, MK_LBUTTON, MAKELONG(mchit.pt.x, mchit.pt.y));
1261 1262
    expect(0, res);

1263
    memset(&st_new, 0, sizeof(st_new));
1264
    res = SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st_new);
1265 1266 1267 1268 1269 1270
    expect(1, res);
    expect(1, st_new.wDay);
    expect(1, st_new.wMonth);
    expect(2005, st_new.wYear);

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_todaylink_seq, "monthcal hit test", TRUE);
1271 1272

    DestroyWindow(hwnd);
1273 1274
}

1275
static void test_today(void)
1276 1277 1278
{
    SYSTEMTIME st_test, st_new;
    int res;
1279 1280 1281
    HWND hwnd;

    hwnd = create_monthcal_control(0);
1282

1283 1284
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1285 1286 1287
    /* Setter and Getters for "today" information */

    /* check for overflow, should be ok */
1288
    memset(&st_test, 0, sizeof(st_test));
1289 1290 1291 1292 1293 1294
    st_test.wDay = 38;
    st_test.wMonth = 38;

    st_new.wDay = 27;
    st_new.wMonth = 27;

1295
    res = SendMessageA(hwnd, MCM_SETTODAY, 0, (LPARAM)&st_test);
1296
    expect(0, res);
1297

1298
    res = SendMessageA(hwnd, MCM_GETTODAY, 0, (LPARAM)&st_new);
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
    expect(1, res);

    /* st_test should not change */
    expect(38, st_test.wDay);
    expect(38, st_test.wMonth);

    /* st_new should change, overflow does not matter */
    expect(38, st_new.wDay);
    expect(38, st_new.wMonth);

    /* check for zero, should be ok*/
    st_test.wDay = 0;
    st_test.wMonth = 0;

1313
    res = SendMessageA(hwnd, MCM_SETTODAY, 0, (LPARAM)&st_test);
1314
    expect(0, res);
1315

1316
    res = SendMessageA(hwnd, MCM_GETTODAY, 0, (LPARAM)&st_new);
1317 1318 1319 1320 1321 1322 1323 1324 1325
    expect(1, res);

    /* st_test should not change */
    expect(0, st_test.wDay);
    expect(0, st_test.wMonth);

    /* st_new should change to zero*/
    expect(0, st_new.wDay);
    expect(0, st_new.wMonth);
1326 1327

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_today_seq, "monthcal today", TRUE);
1328 1329

    DestroyWindow(hwnd);
1330 1331
}

1332
static void test_scroll(void)
1333 1334
{
    int res;
1335 1336 1337
    HWND hwnd;

    hwnd = create_monthcal_control(0);
1338

1339
    res = SendMessageA(hwnd, MCM_GETMONTHDELTA, 0, 0);
1340 1341
    expect(2, res);

1342 1343
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1344
    /* Setter and Getters for scroll rate */
1345
    res = SendMessageA(hwnd, MCM_SETMONTHDELTA, 2, 0);
1346 1347
    expect(0, res);

1348
    res = SendMessageA(hwnd, MCM_SETMONTHDELTA, 3, 0);
1349
    expect(2, res);
1350
    res = SendMessageA(hwnd, MCM_GETMONTHDELTA, 0, 0);
1351 1352
    expect(3, res);

1353
    res = SendMessageA(hwnd, MCM_SETMONTHDELTA, 12, 0);
1354
    expect(3, res);
1355
    res = SendMessageA(hwnd, MCM_GETMONTHDELTA, 0, 0);
1356 1357
    expect(12, res);

1358
    res = SendMessageA(hwnd, MCM_SETMONTHDELTA, 15, 0);
1359
    expect(12, res);
1360
    res = SendMessageA(hwnd, MCM_GETMONTHDELTA, 0, 0);
1361 1362
    expect(15, res);

1363
    res = SendMessageA(hwnd, MCM_SETMONTHDELTA, -5, 0);
1364
    expect(15, res);
1365
    res = SendMessageA(hwnd, MCM_GETMONTHDELTA, 0, 0);
1366
    expect(-5, res);
1367 1368

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_scroll_seq, "monthcal scroll", FALSE);
1369 1370

    DestroyWindow(hwnd);
1371 1372
}

1373
static void test_monthrange(void)
1374 1375
{
    int res;
1376 1377
    SYSTEMTIME st_visible[2], st_daystate[2], st;
    HWND hwnd;
1378
    RECT r;
1379 1380

    hwnd = create_monthcal_control(0);
1381

1382 1383
    memset(&st_visible, 0, sizeof(st_visible));
    memset(&st_daystate, 0, sizeof(st_daystate));
1384

1385 1386 1387 1388 1389 1390 1391 1392 1393
    st.wYear = 2000;
    st.wMonth = 11;
    st.wDay = 28;
    st.wHour = 11;
    st.wMinute = 59;
    st.wSecond = 30;
    st.wMilliseconds = 0;
    st.wDayOfWeek = 0;

1394
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st);
1395 1396
    expect(1,res);

1397
    /* to be locale independent */
1398
    SendMessageA(hwnd, MCM_SETFIRSTDAYOFWEEK, 0, (LPARAM)6);
1399

1400
    res = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
1401 1402 1403 1404
    expect(TRUE, res);
    /* resize control to display two Calendars */
    MoveWindow(hwnd, 0, 0, r.right, (5/2)*r.bottom, FALSE);

1405 1406
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1407
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st_visible);
1408
    expect(2, res);
1409 1410 1411 1412
    expect(2000, st_visible[0].wYear);
    expect(11, st_visible[0].wMonth);
    expect(1, st_visible[0].wDay);
    expect(2000, st_visible[1].wYear);
1413 1414
    expect(12, st_visible[1].wMonth);
    expect(31, st_visible[1].wDay);
1415

1416
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_DAYSTATE, (LPARAM)st_daystate);
1417
    expect(4, res);
1418 1419 1420
    expect(2000, st_daystate[0].wYear);
    expect(10, st_daystate[0].wMonth);
    expect(29, st_daystate[0].wDay);
1421 1422 1423
    expect(2001, st_daystate[1].wYear);
    expect(1, st_daystate[1].wMonth);
    expect(6, st_daystate[1].wDay);
1424 1425

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_monthrange_seq, "monthcal monthrange", FALSE);
1426

1427
    /* with null date array parameter */
1428
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, 0);
1429 1430
    expect(2, res);

1431
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_DAYSTATE, 0);
1432 1433
    expect(4, res);

1434 1435 1436 1437 1438 1439 1440 1441
    /* resize control to display single Calendar */
    MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE);

    memset(&st, 0, sizeof(st));
    st.wMonth = 9;
    st.wYear  = 1752;
    st.wDay   = 14;

1442
    res = SendMessageA(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st);
1443 1444 1445
    expect(1, res);

    /* September 1752 has 19 days */
1446
    res = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st_visible);
1447 1448 1449 1450
    expect(1, res);

    expect(1752, st_visible[0].wYear);
    expect(9, st_visible[0].wMonth);
1451 1452 1453
    ok(14 == st_visible[0].wDay ||
       broken(1 == st_visible[0].wDay), /* comctl32 <= 4.72 */
       "Expected 14, got %d\n", st_visible[0].wDay);
1454 1455 1456 1457 1458

    expect(1752, st_visible[1].wYear);
    expect(9, st_visible[1].wMonth);
    expect(19, st_visible[1].wDay);

1459
    DestroyWindow(hwnd);
1460 1461
}

1462
static void test_maxselday(void)
1463 1464
{
    int res;
1465
    HWND hwnd;
1466 1467 1468 1469
    DWORD style;

    hwnd = create_monthcal_control(0);
    /* if no style specified default to 1 */
1470
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1471
    expect(1, res);
1472
    res = SendMessageA(hwnd, MCM_SETMAXSELCOUNT, 5, 0);
1473
    expect(0, res);
1474
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1475
    expect(1, res);
1476 1477

    /* try to set style */
1478 1479 1480
    style = GetWindowLongA(hwnd, GWL_STYLE);
    SetWindowLongA(hwnd, GWL_STYLE, style | MCS_MULTISELECT);
    style = GetWindowLongA(hwnd, GWL_STYLE);
1481 1482
    ok(!(style & MCS_MULTISELECT), "Expected MCS_MULTISELECT not to be set\n");
    DestroyWindow(hwnd);
1483 1484

    hwnd = create_monthcal_control(MCS_MULTISELECT);
1485
    /* try to remove style */
1486 1487 1488
    style = GetWindowLongA(hwnd, GWL_STYLE);
    SetWindowLongA(hwnd, GWL_STYLE, style & ~MCS_MULTISELECT);
    style = GetWindowLongA(hwnd, GWL_STYLE);
1489 1490 1491 1492 1493 1494
    ok(style & MCS_MULTISELECT, "Expected MCS_MULTISELECT to be set\n");
    DestroyWindow(hwnd);

    hwnd = create_monthcal_control(MCS_MULTISELECT);

    /* default width is a week */
1495
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1496
    expect(7, res);
1497

1498 1499
    flush_sequences(sequences, NUM_MSG_SEQUENCES);

1500
    /* Setter and Getters for max selected days */
1501
    res = SendMessageA(hwnd, MCM_SETMAXSELCOUNT, 5, 0);
1502
    expect(1, res);
1503
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1504 1505
    expect(5, res);

1506
    res = SendMessageA(hwnd, MCM_SETMAXSELCOUNT, 15, 0);
1507
    expect(1, res);
1508
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1509 1510
    expect(15, res);

1511
    /* test invalid value */
1512
    res = SendMessageA(hwnd, MCM_SETMAXSELCOUNT, -1, 0);
1513
    expect(0, res);
1514
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1515
    expect(15, res);
1516 1517

    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_max_sel_day_seq, "monthcal MaxSelDay", FALSE);
1518

1519
    /* zero value is invalid too */
1520
    res = SendMessageA(hwnd, MCM_SETMAXSELCOUNT, 0, 0);
1521
    expect(0, res);
1522
    res = SendMessageA(hwnd, MCM_GETMAXSELCOUNT, 0, 0);
1523 1524
    expect(15, res);

1525
    DestroyWindow(hwnd);
1526 1527
}

1528
static void test_size(void)
1529 1530 1531 1532 1533
{
    int res;
    RECT r1, r2;
    HFONT hFont1, hFont2;
    LOGFONTA logfont;
1534 1535 1536
    HWND hwnd;

    hwnd = create_monthcal_control(0);
1537 1538 1539 1540 1541 1542 1543 1544 1545 1546

    lstrcpyA(logfont.lfFaceName, "Arial");
    memset(&logfont, 0, sizeof(logfont));
    logfont.lfHeight = 12;
    hFont1 = CreateFontIndirectA(&logfont);

    logfont.lfHeight = 24;
    hFont2 = CreateFontIndirectA(&logfont);

    /* initialize to a font we can compare against */
1547 1548 1549
    SendMessageA(hwnd, WM_SETFONT, (WPARAM)hFont1, 0);
    res = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r1);
    ok(res, "SendMessageA(MCM_GETMINREQRECT) failed\n");
1550 1551

    /* check that setting a larger font results in an larger rect */
1552 1553 1554
    SendMessageA(hwnd, WM_SETFONT, (WPARAM)hFont2, 0);
    res = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r2);
    ok(res, "SendMessageA(MCM_GETMINREQRECT) failed\n");
1555 1556 1557 1558 1559

    OffsetRect(&r1, -r1.left, -r1.top);
    OffsetRect(&r2, -r2.left, -r2.top);

    ok(r1.bottom < r2.bottom, "Failed to get larger rect with larger font\n");
1560 1561 1562 1563

    DestroyWindow(hwnd);
}

1564
static void test_create(void)
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
{
    HWND hwnd;

    flush_sequences(sequences, NUM_MSG_SEQUENCES);

    hwnd = create_monthcal_control(0);
    ok_sequence(sequences, PARENT_SEQ_INDEX, create_monthcal_control_seq, "create monthcal control", TRUE);

    DestroyWindow(hwnd);

    flush_sequences(sequences, NUM_MSG_SEQUENCES);
    hwnd = create_monthcal_control(MCS_MULTISELECT);
    ok_sequence(sequences, PARENT_SEQ_INDEX, create_monthcal_multi_sel_style_seq, "create monthcal (multi sel style)", TRUE);
    DestroyWindow(hwnd);
}

1581
static void test_destroy(void)
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
{
    HWND hwnd;

    hwnd = create_monthcal_control(0);
    flush_sequences(sequences, NUM_MSG_SEQUENCES);
    DestroyWindow(hwnd);
    ok_sequence(sequences, PARENT_SEQ_INDEX, destroy_monthcal_parent_msgs_seq, "Destroy monthcal (parent msg)", FALSE);
    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, destroy_monthcal_child_msgs_seq, "Destroy monthcal (child msg)", FALSE);

    /* MCS_MULTISELECT */
    hwnd = create_monthcal_control(MCS_MULTISELECT);
    flush_sequences(sequences, NUM_MSG_SEQUENCES);
    DestroyWindow(hwnd);
    ok_sequence(sequences, MONTHCAL_SEQ_INDEX, destroy_monthcal_multi_sel_style_seq, "Destroy monthcal (multi sel style)", FALSE);
1596
}
1597

1598
static void test_selrange(void)
1599 1600
{
    HWND hwnd;
1601
    SYSTEMTIME st, range[2], range2[2];
1602
    BOOL ret, old_comctl32 = FALSE;
1603 1604 1605 1606

    hwnd = create_monthcal_control(MCS_MULTISELECT);

    /* just after creation selection should start and end today */
1607
    ret = SendMessageA(hwnd, MCM_GETTODAY, 0, (LPARAM)&st);
1608 1609
    expect(TRUE, ret);

1610
    memset(range, 0xcc, sizeof(range));
1611
    ret = SendMessageA(hwnd, MCM_GETSELRANGE, 0, (LPARAM)range);
1612 1613 1614 1615
    expect(TRUE, ret);
    expect(st.wYear,      range[0].wYear);
    expect(st.wMonth,     range[0].wMonth);
    expect(st.wDay,       range[0].wDay);
1616
    if (range[0].wDayOfWeek != st.wDayOfWeek)
1617 1618 1619 1620 1621 1622
    {
        win_skip("comctl32 <= 4.70 doesn't set some values\n");
        old_comctl32 = TRUE;
    }
    else
    {
1623 1624 1625 1626 1627
        expect(st.wDayOfWeek, range[0].wDayOfWeek);
        expect(st.wHour,      range[0].wHour);
        expect(st.wMinute,    range[0].wMinute);
        expect(st.wSecond,    range[0].wSecond);
        expect(st.wMilliseconds, range[0].wMilliseconds);
1628
    }
1629 1630 1631 1632

    expect(st.wYear,      range[1].wYear);
    expect(st.wMonth,     range[1].wMonth);
    expect(st.wDay,       range[1].wDay);
1633 1634 1635 1636 1637 1638 1639 1640
    if (!old_comctl32)
    {
        expect(st.wDayOfWeek, range[1].wDayOfWeek);
        expect(st.wHour,      range[1].wHour);
        expect(st.wMinute,    range[1].wMinute);
        expect(st.wSecond,    range[1].wSecond);
        expect(st.wMilliseconds, range[1].wMilliseconds);
    }
1641

1642 1643 1644 1645 1646 1647 1648 1649
    /* bounds are swapped if min > max */
    memset(&range[0], 0, sizeof(range[0]));
    range[0].wYear  = 2009;
    range[0].wMonth = 10;
    range[0].wDay   = 5;
    range[1] = range[0];
    range[1].wDay   = 3;

1650
    ret = SendMessageA(hwnd, MCM_SETSELRANGE, 0, (LPARAM)range);
1651 1652
    expect(TRUE, ret);

1653
    ret = SendMessageA(hwnd, MCM_GETSELRANGE, 0, (LPARAM)range2);
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
    expect(TRUE, ret);

    expect(range[1].wYear,      range2[0].wYear);
    expect(range[1].wMonth,     range2[0].wMonth);
    expect(range[1].wDay,       range2[0].wDay);
    expect(6, range2[0].wDayOfWeek);
    expect(range[1].wHour,      range2[0].wHour);
    expect(range[1].wMinute,    range2[0].wMinute);
    expect(range[1].wSecond,    range2[0].wSecond);
    expect(range[1].wMilliseconds, range2[0].wMilliseconds);

    expect(range[0].wYear,      range2[1].wYear);
    expect(range[0].wMonth,     range2[1].wMonth);
    expect(range[0].wDay,       range2[1].wDay);
    expect(1, range2[1].wDayOfWeek);
    expect(range[0].wHour,      range2[1].wHour);
    expect(range[0].wMinute,    range2[1].wMinute);
    expect(range[0].wSecond,    range2[1].wSecond);
    expect(range[0].wMilliseconds, range2[1].wMilliseconds);

1674 1675 1676 1677 1678 1679 1680
    /* try with range larger than maximum configured */
    memset(&range[0], 0, sizeof(range[0]));
    range[0].wYear  = 2009;
    range[0].wMonth = 10;
    range[0].wDay   = 1;
    range[1] = range[0];

1681
    ret = SendMessageA(hwnd, MCM_SETSELRANGE, 0, (LPARAM)range);
1682 1683 1684 1685 1686 1687
    expect(TRUE, ret);

    range[1] = range[0];
    /* default max. range is 7 days */
    range[1].wDay = 8;

1688
    ret = SendMessageA(hwnd, MCM_SETSELRANGE, 0, (LPARAM)range);
1689 1690
    expect(FALSE, ret);

1691
    ret = SendMessageA(hwnd, MCM_GETSELRANGE, 0, (LPARAM)range2);
1692 1693 1694 1695 1696 1697 1698 1699 1700
    expect(TRUE, ret);

    expect(range[0].wYear,  range2[0].wYear);
    expect(range[0].wMonth, range2[0].wMonth);
    expect(range[0].wDay,   range2[0].wDay);
    expect(range[0].wYear,  range2[1].wYear);
    expect(range[0].wMonth, range2[1].wMonth);
    expect(range[0].wDay,   range2[1].wDay);

1701 1702 1703
    DestroyWindow(hwnd);
}

1704 1705 1706 1707 1708 1709 1710 1711
static void test_killfocus(void)
{
    HWND hwnd;
    DWORD style;

    hwnd = create_monthcal_control(0);

    /* make parent invisible */
1712 1713
    style = GetWindowLongA(parent_wnd, GWL_STYLE);
    SetWindowLongA(parent_wnd, GWL_STYLE, style & ~WS_VISIBLE);
1714

1715
    SendMessageA(hwnd, WM_KILLFOCUS, (WPARAM)GetDesktopWindow(), 0);
1716

1717
    style = GetWindowLongA(hwnd, GWL_STYLE);
1718 1719
    ok(style & WS_VISIBLE, "Expected WS_VISIBLE to be set\n");

1720 1721
    style = GetWindowLongA(parent_wnd, GWL_STYLE);
    SetWindowLongA(parent_wnd, GWL_STYLE, style | WS_VISIBLE);
1722 1723 1724 1725

    DestroyWindow(hwnd);
}

1726 1727 1728 1729 1730 1731 1732 1733
static void test_hittest_v6(void)
{
    MCHITTESTINFO mchit;
    DWORD ret;
    HWND hwnd;
    RECT r;

    hwnd = create_monthcal_control(0);
1734
    SendMessageA(hwnd, MCM_SETCALENDARBORDER, TRUE, 0);
1735

1736
    SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
1737 1738 1739 1740 1741 1742 1743
    /* reserving some area around calendar */
    MoveWindow(hwnd, 0, 0, r.right * 3 / 2, r.bottom * 3 / 2, FALSE);
    mchit.cbSize = sizeof(MCHITTESTINFO);
    mchit.pt.x = mchit.pt.y = 0;
    mchit.iOffset = -1;
    mchit.iRow = -1;
    mchit.iCol = -1;
1744
    ret = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1745
    if (ret == ~0u)
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
    {
        win_skip("Only MCHITTESTINFO_V1 supported\n");
        DestroyWindow(hwnd);
        return;
    }
    todo_wine expect_hex(MCHT_NOWHERE, ret);
    expect(-1, mchit.iOffset);
    expect(-1, mchit.iRow);
    expect(-1, mchit.iCol);

    MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE);
    mchit.pt.x = r.right / 2;
    mchit.pt.y = r.bottom / 2;
    mchit.iOffset = -1;
1760
    ret = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1761
    expect_hex(MCHT_CALENDARDATE, ret);
1762
    expect(0, mchit.iOffset);
1763 1764 1765 1766 1767 1768 1769 1770

    /* over day area */
    mchit.pt.x = r.right / (7*2);
    mchit.pt.y = r.bottom / 2;
    mchit.iOffset = -1;
    mchit.iCol = mchit.iRow = -1;
    mchit.uHit = 0;
    mchit.rc.left = mchit.rc.right = mchit.rc.top = mchit.rc.bottom = -1;
1771
    ret = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1772 1773
    expect_hex(MCHT_CALENDARDATE, ret);
    expect_hex(MCHT_CALENDARDATE, mchit.uHit);
1774 1775 1776
    expect(0, mchit.iOffset);
    expect(2, mchit.iRow);
    expect(0, mchit.iCol);
1777
    /* returned a one day rectangle */
1778 1779
    expect_d(r.right / 7, mchit.rc.right - mchit.rc.left);
    expect_d(r.bottom / 10, mchit.rc.bottom - mchit.rc.top);
1780 1781 1782 1783 1784 1785 1786 1787

    /* title */
    mchit.pt.x = 1;
    mchit.pt.y = 1;
    mchit.iOffset = -1;
    mchit.iCol = mchit.iRow = -1;
    mchit.uHit = 0;
    mchit.rc.left = mchit.rc.right = mchit.rc.top = mchit.rc.bottom = -1;
1788
    ret = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1789 1790
    expect_hex(MCHT_TITLE, ret);
    expect_hex(MCHT_TITLE, mchit.uHit);
1791
    expect(0, mchit.iOffset);
1792 1793
    expect(-1, mchit.iRow);
    expect(-1, mchit.iCol);
1794 1795 1796 1797
    expect(0, mchit.rc.left);
    expect(0, mchit.rc.top);
    expect_d(r.right, mchit.rc.right);
    ok(mchit.rc.bottom > 0, "got %d\n", mchit.rc.bottom);
1798 1799 1800 1801 1802 1803 1804

    /* between two calendars */
    MoveWindow(hwnd, 0, 0, r.right * 5/2, r.bottom, FALSE);
    mchit.pt.x = r.right / (5*4);
    mchit.pt.y = r.bottom / 2;
    mchit.iOffset = -2;
    mchit.iCol = mchit.iRow = -2;
1805
    mchit.uHit = ~0;
1806
    mchit.rc.left = mchit.rc.right = mchit.rc.top = mchit.rc.bottom = -1;
1807
    ret = SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
    todo_wine expect_hex(MCHT_NOWHERE, ret);
    todo_wine expect_hex(MCHT_NOWHERE, mchit.uHit);
    expect(-2, mchit.iOffset);
    expect(-2, mchit.iRow);
    expect(-2, mchit.iCol);
    todo_wine expect(0, mchit.rc.left);
    todo_wine expect(0, mchit.rc.top);
    todo_wine expect_d(r.right * 5/2, mchit.rc.right);
    todo_wine expect_d(r.bottom, mchit.rc.bottom);

    DestroyWindow(hwnd);
}

static void test_get_set_border(void)
{
    HWND hwnd;
    DWORD ret;

    hwnd = create_monthcal_control(0);

    /* a non-default value */
1829
    ret = SendMessageA(hwnd, MCM_SETCALENDARBORDER, TRUE, 10);
1830 1831
    expect(0, ret);

1832
    ret = SendMessageA(hwnd, MCM_GETCALENDARBORDER, 0, 0);
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845

    if (ret != 10)
    {
        skip("MCM_GET/SETCALENDARBORDER not supported\n");
        DestroyWindow(hwnd);
        return;
    }

    expect(10, ret);

    DestroyWindow(hwnd);
}

1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
static void test_MCM_SIZERECTTOMIN(void)
{
    HWND hwnd;
    DWORD ret;
    RECT r, r2;

    hwnd = create_monthcal_control(0);

    ret = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r2);
    if (ret == 0)
    {
        win_skip("Message MCM_GETMINREQRECT unsupported. Skipping.\n");
        DestroyWindow(hwnd);
        return;
    }

    ret = SendMessageA(hwnd, MCM_SIZERECTTOMIN, 0, 0);
    ok(ret == 0, "got %d\n", ret);

    r.left = r.right = r.top = r.bottom = 0;
    ret = SendMessageA(hwnd, MCM_SIZERECTTOMIN, 0, (LPARAM)&r);
    if (ret == 0)
    {
        skip("Message MCM_SIZERECTTOMIN unsupported. Skipping.\n");
        DestroyWindow(hwnd);
        return;
    }
    ok(ret == 1, "got %d\n", ret);
    ok(r.left == 0 && r.right > 0, "got %d, %d\n", r.left, r.right);

    r = r2;
    ret = SendMessageA(hwnd, MCM_SIZERECTTOMIN, 0, (LPARAM)&r);
    ok(ret == 1, "got %d\n", ret);

    r2.right = (r2.right - r2.left) * 3;
    r2.bottom = (r2.bottom - r2.top) * 3;
    r2.left = r2.top = 0;
    ret = SendMessageA(hwnd, MCM_SIZERECTTOMIN, 0, (LPARAM)&r2);
    ok(ret == 1, "got %d\n", ret);

    DestroyWindow(hwnd);
}

1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
static void test_MCM_GETCALENDARCOUNT(void)
{
    HWND hwnd;
    DWORD ret;

    hwnd = create_monthcal_control(0);

    ret = SendMessageA(hwnd, MCM_GETCALENDARCOUNT, 0, 0);
    if (ret == 0)
    {
        win_skip("Message MCM_GETCALENDARCOUNT unsupported. Skipping.\n");
        DestroyWindow(hwnd);
        return;
    }

1904
    expect(2, ret);
1905 1906 1907 1908

    DestroyWindow(hwnd);
}

1909 1910 1911 1912 1913
static void test_daystate(void)
{
    MONTHDAYSTATE state[4];
    DWORD ret, style;
    HWND hwnd;
1914
    RECT r;
1915 1916 1917 1918

    /* without MCS_DAYSTATE */
    hwnd = create_monthcal_control(0);

1919
    ret = SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
1920 1921 1922 1923 1924
    expect(TRUE, ret);

    /* resize control to display two Calendars */
    MoveWindow(hwnd, 0, 0, r.right, (5/2)*r.bottom, FALSE);

1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966
    ret = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_DAYSTATE, 0);
    expect(4, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 4, (LPARAM)&state);
    expect(0, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 2, (LPARAM)&state);
    expect(0, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 0, 0);
    expect(0, ret);

    /* try to switch on */
    SetWindowLongA(hwnd, GWL_STYLE, GetWindowLongA(hwnd, GWL_STYLE) | MCS_DAYSTATE);
    style = GetWindowLongA(hwnd, GWL_STYLE);
    ok((style & MCS_DAYSTATE) == 0, "got 0x%08x\n", style);

    DestroyWindow(hwnd);

    /* with MCS_DAYSTATE */
    hwnd = create_monthcal_control(MCS_DAYSTATE);

    ret = SendMessageA(hwnd, MCM_GETMONTHRANGE, GMR_DAYSTATE, 0);
    expect(4, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 4, (LPARAM)&state);
    expect(1, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 2, (LPARAM)&state);
    expect(0, ret);

    ret = SendMessageA(hwnd, MCM_SETDAYSTATE, 0, 0);
    expect(0, ret);

    /* try to switch off */
    SetWindowLongA(hwnd, GWL_STYLE, GetWindowLongA(hwnd, GWL_STYLE) & ~MCS_DAYSTATE);
    style = GetWindowLongA(hwnd, GWL_STYLE);
    ok((style & MCS_DAYSTATE) == MCS_DAYSTATE, "got 0x%08x\n", style);

    DestroyWindow(hwnd);
}

1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
static void test_sel_notify(void)
{
    typedef struct
    {
        DWORD       val;
        const char* name;
    } Monthcal_style;

    HWND hwnd;
    RECT rc;
    MCHITTESTINFO mchit = {sizeof(MCHITTESTINFO)};
    SYSTEMTIME st;
    Monthcal_style styles[] = {
        {MCS_NOTODAY,                    "MCS_NOTODAY"},
        {MCS_NOTODAY | MCS_MULTISELECT,  "MCS_NOTODAY | MCS_MULTISELECT"},
        {MCS_DAYSTATE,                   "MCS_DAYSTATE"},
        {MCS_DAYSTATE | MCS_MULTISELECT, "MCS_DAYSTATE | MCS_MULTISELECT"}
    };
    int i;

    for(i = 0; i < sizeof styles / sizeof styles[0]; i++)
    {
        hwnd = create_monthcal_control(styles[i].val);
1990 1991
        SetWindowLongPtrA(hwnd, GWLP_ID, SEL_NOTIFY_TEST_ID);
        SendMessageA(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&rc);
1992 1993 1994 1995 1996
        MoveWindow(hwnd, 0, 0, rc.right, rc.bottom, FALSE);
        /* Simulate mouse click on some unselected day to generate
            MCN_SELECT and MCN_SELCHANGE notifications */
        mchit.pt.x = rc.right / 2;
        mchit.pt.y = rc.bottom / 2;
1997 1998
        SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
        SendMessageA(hwnd, MCM_GETCURSEL, 0, (LPARAM)&st);
1999 2000 2001
        while(st.wDay == mchit.st.wDay) /* Ensure that mchit.pt points to unselected day */
        {
            mchit.pt.y++;
2002
            SendMessageA(hwnd, MCM_HITTEST, 0, (LPARAM)&mchit);
2003
        }
2004 2005
        SendMessageA(hwnd, WM_LBUTTONDOWN, 0, MAKELPARAM(mchit.pt.x, mchit.pt.y));
        SendMessageA(hwnd, WM_LBUTTONUP, 0, MAKELPARAM(mchit.pt.x, mchit.pt.y));
2006 2007 2008 2009
        DestroyWindow(hwnd);
    }
}

2010 2011
START_TEST(monthcal)
{
2012 2013
    BOOL (WINAPI *pInitCommonControlsEx)(const INITCOMMONCONTROLSEX*);
    INITCOMMONCONTROLSEX iccex;
2014 2015 2016 2017
    HMODULE hComctl32;

    ULONG_PTR ctx_cookie;
    HANDLE hCtx;
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029

    hComctl32 = GetModuleHandleA("comctl32.dll");
    pInitCommonControlsEx = (void*)GetProcAddress(hComctl32, "InitCommonControlsEx");
    if (!pInitCommonControlsEx)
    {
        skip("InitCommonControlsEx() is missing. Skipping the tests\n");
        return;
    }
    iccex.dwSize = sizeof(iccex);
    iccex.dwICC  = ICC_DATE_CLASSES;
    pInitCommonControlsEx(&iccex);

2030
    test_monthcal();
2031

2032 2033 2034 2035
    init_msg_sequences(sequences, NUM_MSG_SEQUENCES);

    parent_wnd = create_parent_window();

2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049
    test_create();
    test_destroy();
    test_color();
    test_currdate();
    test_firstDay();
    test_unicode();
    test_today();
    test_scroll();
    test_monthrange();
    test_hittest();
    test_todaylink();
    test_size();
    test_maxselday();
    test_selrange();
2050
    test_killfocus();
2051
    test_daystate();
2052
    test_sel_notify();
2053

2054 2055 2056 2057 2058 2059 2060 2061
    if (!load_v6_module(&ctx_cookie, &hCtx))
    {
        DestroyWindow(parent_wnd);
        return;
    }

    test_hittest_v6();
    test_get_set_border();
2062
    test_MCM_SIZERECTTOMIN();
2063
    test_MCM_GETCALENDARCOUNT();
2064 2065 2066

    unload_v6_module(ctx_cookie, hCtx);

2067
    DestroyWindow(parent_wnd);
2068
}