1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 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 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 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
|
//------------------------------------------------------------------------------
// <copyright file="Calendar.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.Threading;
using System.Globalization;
using System.ComponentModel;
using System;
using System.Web;
using System.Web.UI;
using System.Web.Util;
using System.Collections;
using System.ComponentModel.Design;
using System.Drawing;
using System.Text;
using System.IO;
using System.Reflection;
/// <devdoc>
/// <para>Displays a one-month calendar and allows the user to
/// view and select a specific day, week, or month.</para>
/// </devdoc>
[
ControlValueProperty("SelectedDate", typeof(DateTime), "1/1/0001"),
DataBindingHandler("System.Web.UI.Design.WebControls.CalendarDataBindingHandler, " + AssemblyRef.SystemDesign),
DefaultEvent("SelectionChanged"),
DefaultProperty("SelectedDate"),
Designer("System.Web.UI.Design.WebControls.CalendarDesigner, " + AssemblyRef.SystemDesign),
SupportsEventValidation
]
public class Calendar : WebControl, IPostBackEventHandler {
private static readonly object EventDayRender = new object();
private static readonly object EventSelectionChanged = new object();
private static readonly object EventVisibleMonthChanged = new object();
private TableItemStyle titleStyle;
private TableItemStyle nextPrevStyle;
private TableItemStyle dayHeaderStyle;
private TableItemStyle selectorStyle;
private TableItemStyle dayStyle;
private TableItemStyle otherMonthDayStyle;
private TableItemStyle todayDayStyle;
private TableItemStyle selectedDayStyle;
private TableItemStyle weekendDayStyle;
private string defaultButtonColorText;
private static readonly Color DefaultForeColor = Color.Black;
private Color defaultForeColor;
private ArrayList dateList;
private SelectedDatesCollection selectedDates;
private System.Globalization.Calendar threadCalendar;
private DateTime minSupportedDate;
private DateTime maxSupportedDate;
#if DEBUG
private bool threadCalendarInitialized;
#endif
private const string SELECT_RANGE_COMMAND = "R";
private const string NAVIGATE_MONTH_COMMAND = "V";
private static DateTime baseDate = new DateTime(2000, 1, 1);
private const int STYLEMASK_DAY = 16;
private const int STYLEMASK_UNIQUE = 15;
private const int STYLEMASK_SELECTED = 8;
private const int STYLEMASK_TODAY = 4;
private const int STYLEMASK_OTHERMONTH = 2;
private const int STYLEMASK_WEEKEND = 1;
private const string ROWBEGINTAG = "<tr>";
private const string ROWENDTAG = "</tr>";
// Cache commonly used strings. This improves performance and memory usage.
private const int cachedNumberMax = 31;
private static readonly string[] cachedNumbers = new string [] {
"0", "1", "2", "3", "4", "5", "6",
"7", "8", "9", "10", "11", "12", "13",
"14", "15", "16", "17", "18", "19", "20",
"21", "22", "23", "24", "25", "26", "27",
"28", "29", "30", "31",
};
/// <devdoc>
/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.Calendar'/> class.</para>
/// </devdoc>
public Calendar() : base(HtmlTextWriterTag.Table) {
}
[
Localizable(true),
DefaultValue(""),
WebCategory("Accessibility"),
WebSysDescription(SR.Calendar_Caption)
]
public virtual string Caption {
get {
string s = (string)ViewState["Caption"];
return (s != null) ? s : String.Empty;
}
set {
ViewState["Caption"] = value;
}
}
[
DefaultValue(TableCaptionAlign.NotSet),
WebCategory("Accessibility"),
WebSysDescription(SR.WebControl_CaptionAlign)
]
public virtual TableCaptionAlign CaptionAlign {
get {
object o = ViewState["CaptionAlign"];
return (o != null) ? (TableCaptionAlign)o : TableCaptionAlign.NotSet;
}
set {
if ((value < TableCaptionAlign.NotSet) ||
(value > TableCaptionAlign.Right)) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["CaptionAlign"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the amount of space between cells.</para>
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(2),
WebSysDescription(SR.Calendar_CellPadding)
]
public int CellPadding {
get {
object o = ViewState["CellPadding"];
return((o == null) ? 2 : (int)o);
}
set {
if (value < - 1 ) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["CellPadding"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the amount of space between the contents of a cell
/// and the cell's border.</para>
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(0),
WebSysDescription(SR.Calendar_CellSpacing)
]
public int CellSpacing {
get {
object o = ViewState["CellSpacing"];
return((o == null) ? 0 : (int)o);
}
set {
if (value < -1 ) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["CellSpacing"] = (int)value;
}
}
/// <devdoc>
/// <para> Gets the style property of the day-of-the-week header. This property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
WebSysDescription(SR.Calendar_DayHeaderStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle DayHeaderStyle {
get {
if (dayHeaderStyle == null) {
dayHeaderStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)dayHeaderStyle).TrackViewState();
}
return dayHeaderStyle;
}
}
/// <devdoc>
/// <para>Gets or sets
/// the format for the names of days.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(DayNameFormat.Short),
WebSysDescription(SR.Calendar_DayNameFormat)
]
public DayNameFormat DayNameFormat {
get {
object dnf = ViewState["DayNameFormat"];
return((dnf == null) ? DayNameFormat.Short : (DayNameFormat)dnf);
}
set {
if (value < DayNameFormat.Full || value > DayNameFormat.Shortest) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["DayNameFormat"] = value;
}
}
/// <devdoc>
/// <para> Gets the style properties for the days. This property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
DefaultValue(null),
WebSysDescription(SR.Calendar_DayStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle DayStyle {
get {
if (dayStyle == null) {
dayStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)dayStyle).TrackViewState();
}
return dayStyle;
}
}
/// <devdoc>
/// <para> Gets
/// or sets the day of the week to display in the calendar's first
/// column.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(FirstDayOfWeek.Default),
WebSysDescription(SR.Calendar_FirstDayOfWeek)
]
public FirstDayOfWeek FirstDayOfWeek {
get {
object o = ViewState["FirstDayOfWeek"];
return((o == null) ? FirstDayOfWeek.Default : (FirstDayOfWeek)o);
}
set {
if (value < FirstDayOfWeek.Sunday || value > FirstDayOfWeek.Default) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["FirstDayOfWeek"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the text shown for the next month
/// navigation hyperlink if the <see cref='System.Web.UI.WebControls.Calendar.ShowNextPrevMonth'/> property is set to
/// <see langword='true'/>.</para>
/// </devdoc>
[
Localizable(true),
WebCategory("Appearance"),
DefaultValue(">"),
WebSysDescription(SR.Calendar_NextMonthText)
]
public string NextMonthText {
get {
object s = ViewState["NextMonthText"];
return((s == null) ? ">" : (String) s);
}
set {
ViewState["NextMonthText"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the format of the next and previous month hyperlinks in the
/// title.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(NextPrevFormat.CustomText),
WebSysDescription(SR.Calendar_NextPrevFormat)
]
public NextPrevFormat NextPrevFormat {
get {
object npf = ViewState["NextPrevFormat"];
return((npf == null) ? NextPrevFormat.CustomText : (NextPrevFormat)npf);
}
set {
if (value < NextPrevFormat.CustomText || value > NextPrevFormat.FullMonth) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["NextPrevFormat"] = value;
}
}
/// <devdoc>
/// <para> Gets the style properties for the next/previous month navigators. This property is
/// read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
WebSysDescription(SR.Calendar_NextPrevStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle NextPrevStyle {
get {
if (nextPrevStyle == null) {
nextPrevStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)nextPrevStyle).TrackViewState();
}
return nextPrevStyle;
}
}
/// <devdoc>
/// <para>Gets the style properties for the days from the months preceding and following the current month.
/// This property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
DefaultValue(null),
WebSysDescription(SR.Calendar_OtherMonthDayStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle OtherMonthDayStyle {
get {
if (otherMonthDayStyle == null) {
otherMonthDayStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)otherMonthDayStyle).TrackViewState();
}
return otherMonthDayStyle;
}
}
/// <devdoc>
/// <para>Gets or sets the text shown for the previous month
/// navigation hyperlink if the <see cref='System.Web.UI.WebControls.Calendar.ShowNextPrevMonth'/> property is set to
/// <see langword='true'/>
/// .</para>
/// </devdoc>
[
Localizable(true),
WebCategory("Appearance"),
DefaultValue("<"),
WebSysDescription(SR.Calendar_PrevMonthText)
]
public string PrevMonthText {
get {
object s = ViewState["PrevMonthText"];
return((s == null) ? "<" : (String) s);
}
set {
ViewState["PrevMonthText"] = value;
}
}
public override bool SupportsDisabledAttribute {
get {
return RenderingCompatibility < VersionUtil.Framework40;
}
}
/// <devdoc>
/// <para>Gets or sets the date that is currently selected
/// date.</para>
/// </devdoc>
[
Bindable(true, BindingDirection.TwoWay),
DefaultValue(typeof(DateTime), "1/1/0001"),
WebSysDescription(SR.Calendar_SelectedDate)
]
public DateTime SelectedDate {
get {
if (SelectedDates.Count == 0) {
return DateTime.MinValue;
}
return SelectedDates[0];
}
set {
if (value == DateTime.MinValue) {
SelectedDates.Clear();
}
else {
SelectedDates.SelectRange(value, value);
}
}
}
/// <devdoc>
/// <para>Gets a collection of <see cref='System.DateTime' qualify='true'/> objects representing days selected on the <see cref='System.Web.UI.WebControls.Calendar'/>. This
/// property is read-only.</para>
/// </devdoc>
[
Browsable(false),
WebSysDescription(SR.Calendar_SelectedDates),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public SelectedDatesCollection SelectedDates {
get {
if (selectedDates == null) {
if (dateList == null) {
dateList = new ArrayList();
}
selectedDates = new SelectedDatesCollection(dateList);
}
return selectedDates;
}
}
/// <devdoc>
/// <para>Gets the style properties for the selected date. This property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
DefaultValue(null),
WebSysDescription(SR.Calendar_SelectedDayStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle SelectedDayStyle {
get {
if (selectedDayStyle == null) {
selectedDayStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)selectedDayStyle).TrackViewState();
}
return selectedDayStyle;
}
}
/// <devdoc>
/// <para>Gets or sets the date selection capabilities on the
/// <see cref='System.Web.UI.WebControls.Calendar'/>
/// to allow the user to select a day, week, or month.</para>
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(CalendarSelectionMode.Day),
WebSysDescription(SR.Calendar_SelectionMode)
]
public CalendarSelectionMode SelectionMode {
get {
object csm = ViewState["SelectionMode"];
return((csm == null) ? CalendarSelectionMode.Day : (CalendarSelectionMode)csm);
}
set {
if (value < CalendarSelectionMode.None || value > CalendarSelectionMode.DayWeekMonth) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["SelectionMode"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the text shown for the month selection in
/// the selector column if <see cref='System.Web.UI.WebControls.Calendar.SelectionMode'/> is
/// <see langword='CalendarSelectionMode.DayWeekMonth'/>.</para>
/// </devdoc>
[
Localizable(true),
WebCategory("Appearance"),
DefaultValue(">>"),
WebSysDescription(SR.Calendar_SelectMonthText)
]
public string SelectMonthText {
get {
object s = ViewState["SelectMonthText"];
return((s == null) ? ">>" : (String) s);
}
set {
ViewState["SelectMonthText"] = value;
}
}
/// <devdoc>
/// <para> Gets the style properties for the week and month selectors. This property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
WebSysDescription(SR.Calendar_SelectorStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle SelectorStyle {
get {
if (selectorStyle == null) {
selectorStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)selectorStyle).TrackViewState();
}
return selectorStyle;
}
}
/// <devdoc>
/// <para>Gets or sets the text shown for the week selection in
/// the selector column if <see cref='System.Web.UI.WebControls.Calendar.SelectionMode'/> is
/// <see langword='CalendarSelectionMode.DayWeek '/>or
/// <see langword='CalendarSelectionMode.DayWeekMonth'/>.</para>
/// </devdoc>
[
Localizable(true),
WebCategory("Appearance"),
DefaultValue(">"),
WebSysDescription(SR.Calendar_SelectWeekText)
]
public string SelectWeekText {
get {
object s = ViewState["SelectWeekText"];
return((s == null) ? ">" : (String) s);
}
set {
ViewState["SelectWeekText"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets
/// a value indicating whether the days of the week are displayed.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(true),
WebSysDescription(SR.Calendar_ShowDayHeader)
]
public bool ShowDayHeader {
get {
object b = ViewState["ShowDayHeader"];
return((b == null) ? true : (bool)b);
}
set {
ViewState["ShowDayHeader"] = value;
}
}
/// <devdoc>
/// <para>Gets or set
/// a value indicating whether days on the calendar are displayed with a border.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(false),
WebSysDescription(SR.Calendar_ShowGridLines)
]
public bool ShowGridLines {
get {
object b= ViewState["ShowGridLines"];
return((b == null) ? false : (bool)b);
}
set {
ViewState["ShowGridLines"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets a value indicating whether the <see cref='System.Web.UI.WebControls.Calendar'/>
/// displays the next and pervious month
/// hyperlinks in the title.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(true),
WebSysDescription(SR.Calendar_ShowNextPrevMonth)
]
public bool ShowNextPrevMonth {
get {
object b = ViewState["ShowNextPrevMonth"];
return((b == null) ? true : (bool)b);
}
set {
ViewState["ShowNextPrevMonth"] = value;
}
}
/// <devdoc>
/// <para> Gets or
/// sets a value indicating whether the title is displayed.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(true),
WebSysDescription(SR.Calendar_ShowTitle)
]
public bool ShowTitle {
get {
object b = ViewState["ShowTitle"];
return((b == null) ? true : (bool)b);
}
set {
ViewState["ShowTitle"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets how the month name is formatted in the title
/// bar.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(TitleFormat.MonthYear),
WebSysDescription(SR.Calendar_TitleFormat)
]
public TitleFormat TitleFormat {
get {
object tf = ViewState["TitleFormat"];
return((tf == null) ? TitleFormat.MonthYear : (TitleFormat)tf);
}
set {
if (value < TitleFormat.Month || value > TitleFormat.MonthYear) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["TitleFormat"] = value;
}
}
/// <devdoc>
/// <para>Gets the style properties of the <see cref='System.Web.UI.WebControls.Calendar'/> title. This property is
/// read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
WebSysDescription(SR.Calendar_TitleStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty),
]
public TableItemStyle TitleStyle {
get {
if (titleStyle == null) {
titleStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)titleStyle).TrackViewState();
}
return titleStyle;
}
}
/// <devdoc>
/// <para>Gets the style properties for today's date on the
/// <see cref='System.Web.UI.WebControls.Calendar'/>. This
/// property is read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
DefaultValue(null),
WebSysDescription(SR.Calendar_TodayDayStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle TodayDayStyle {
get {
if (todayDayStyle == null) {
todayDayStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)todayDayStyle).TrackViewState();
}
return todayDayStyle;
}
}
/// <devdoc>
/// <para>Gets or sets the value to use as today's date.</para>
/// </devdoc>
[
Browsable(false),
WebSysDescription(SR.Calendar_TodaysDate),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public DateTime TodaysDate {
get {
object o = ViewState["TodaysDate"];
return((o == null) ? DateTime.Today : (DateTime)o);
}
set {
ViewState["TodaysDate"] = value.Date;
}
}
[
DefaultValue(true),
WebCategory("Accessibility"),
WebSysDescription(SR.Table_UseAccessibleHeader)
]
public virtual bool UseAccessibleHeader {
get {
object o = ViewState["UseAccessibleHeader"];
return (o != null) ? (bool)o : true;
}
set {
ViewState["UseAccessibleHeader"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the date that specifies what month to display. The date can be
/// be any date within the month.</para>
/// </devdoc>
[
Bindable(true),
DefaultValue(typeof(DateTime), "1/1/0001"),
WebSysDescription(SR.Calendar_VisibleDate)
]
public DateTime VisibleDate {
get {
object o = ViewState["VisibleDate"];
return((o == null) ? DateTime.MinValue : (DateTime)o);
}
set {
ViewState["VisibleDate"] = value.Date;
}
}
/// <devdoc>
/// <para>Gets the style properties for the displaying weekend dates. This property is
/// read-only.</para>
/// </devdoc>
[
WebCategory("Styles"),
WebSysDescription(SR.Calendar_WeekendDayStyle),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty)
]
public TableItemStyle WeekendDayStyle {
get {
if (weekendDayStyle == null) {
weekendDayStyle = new TableItemStyle();
if (IsTrackingViewState)
((IStateManager)weekendDayStyle).TrackViewState();
}
return weekendDayStyle;
}
}
/// <devdoc>
/// <para>Occurs when each day is created in teh control hierarchy for the <see cref='System.Web.UI.WebControls.Calendar'/>.</para>
/// </devdoc>
[
WebCategory("Action"),
WebSysDescription(SR.Calendar_OnDayRender)
]
public event DayRenderEventHandler DayRender {
add {
Events.AddHandler(EventDayRender, value);
}
remove {
Events.RemoveHandler(EventDayRender, value);
}
}
/// <devdoc>
/// <para>Occurs when the user clicks on a day, week, or month
/// selector and changes the <see cref='System.Web.UI.WebControls.Calendar.SelectedDate'/>.</para>
/// </devdoc>
[
WebCategory("Action"),
WebSysDescription(SR.Calendar_OnSelectionChanged)
]
public event EventHandler SelectionChanged {
add {
Events.AddHandler(EventSelectionChanged, value);
}
remove {
Events.RemoveHandler(EventSelectionChanged, value);
}
}
/// <devdoc>
/// <para>Occurs when the
/// user clicks on the next or previous month <see cref='System.Web.UI.WebControls.Button'/> controls on the title.</para>
/// </devdoc>
[
WebCategory("Action"),
WebSysDescription(SR.Calendar_OnVisibleMonthChanged)
]
public event MonthChangedEventHandler VisibleMonthChanged {
add {
Events.AddHandler(EventVisibleMonthChanged, value);
}
remove {
Events.RemoveHandler(EventVisibleMonthChanged, value);
}
}
// Methods
/// <devdoc>
/// </devdoc>
private void ApplyTitleStyle(TableCell titleCell, Table titleTable, TableItemStyle titleStyle) {
// apply affects that affect the whole background to the cell
if (titleStyle.BackColor != Color.Empty) {
titleCell.BackColor = titleStyle.BackColor;
}
if (titleStyle.BorderColor != Color.Empty) {
titleCell.BorderColor = titleStyle.BorderColor;
}
if (titleStyle.BorderWidth != Unit.Empty) {
titleCell.BorderWidth= titleStyle.BorderWidth;
}
if (titleStyle.BorderStyle != BorderStyle.NotSet) {
titleCell.BorderStyle = titleStyle.BorderStyle;
}
if (titleStyle.Height != Unit.Empty) {
titleCell.Height = titleStyle.Height;
}
if (titleStyle.VerticalAlign != VerticalAlign.NotSet) {
titleCell.VerticalAlign = titleStyle.VerticalAlign;
}
// apply affects that affect everything else to the table
if (titleStyle.CssClass.Length > 0) {
titleTable.CssClass = titleStyle.CssClass;
}
else if (CssClass.Length > 0) {
titleTable.CssClass = CssClass;
}
if (titleStyle.ForeColor != Color.Empty) {
titleTable.ForeColor = titleStyle.ForeColor;
}
else if (ForeColor != Color.Empty) {
titleTable.ForeColor = ForeColor;
}
titleTable.Font.CopyFrom(titleStyle.Font);
titleTable.Font.MergeWith(this.Font);
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected override ControlCollection CreateControlCollection() {
return new InternalControlCollection(this);
}
/// <devdoc>
/// </devdoc>
private DateTime EffectiveVisibleDate() {
DateTime visDate = VisibleDate;
if (visDate.Equals(DateTime.MinValue)) {
visDate = TodaysDate;
}
// VSWhidbey 366243
if (IsMinSupportedYearMonth(visDate)) {
return minSupportedDate;
}
else {
return threadCalendar.AddDays(visDate, -(threadCalendar.GetDayOfMonth(visDate) - 1));
}
}
/// <devdoc>
/// </devdoc>
private DateTime FirstCalendarDay(DateTime visibleDate) {
DateTime firstDayOfMonth = visibleDate;
// VSWhidbey 366243
if (IsMinSupportedYearMonth(firstDayOfMonth)) {
return firstDayOfMonth;
}
int daysFromLastMonth = ((int)threadCalendar.GetDayOfWeek(firstDayOfMonth)) - NumericFirstDayOfWeek();
// Always display at least one day from the previous month
if (daysFromLastMonth <= 0) {
daysFromLastMonth += 7;
}
return threadCalendar.AddDays(firstDayOfMonth, -daysFromLastMonth);
}
/// <devdoc>
/// </devdoc>
private string GetCalendarButtonText(string eventArgument, string buttonText, string title, bool showLink, Color foreColor) {
if (showLink) {
StringBuilder sb = new StringBuilder();
sb.Append("<a href=\"");
sb.Append(Page.ClientScript.GetPostBackClientHyperlink(this, eventArgument, true));
// ForeColor needs to go on the actual link. This breaks the uplevel/downlevel rules a little bit,
// but it is worth doing so the day links do not change color when they go in the history on
// downlevel browsers. Otherwise, people get it confused with the selection mechanism.
sb.Append("\" style=\"color:");
sb.Append(foreColor.IsEmpty ? defaultButtonColorText : ColorTranslator.ToHtml(foreColor));
if (!String.IsNullOrEmpty(title)) {
sb.Append("\" title=\"");
sb.Append(title);
}
sb.Append("\">");
sb.Append(buttonText);
sb.Append("</a>");
return sb.ToString();
}
else {
return buttonText;
}
}
/// <devdoc>
/// </devdoc>
private int GetDefinedStyleMask() {
// Selected is always defined because it has default effects
int styleMask = STYLEMASK_SELECTED;
if (dayStyle != null && !dayStyle.IsEmpty)
styleMask |= STYLEMASK_DAY;
if (todayDayStyle != null && !todayDayStyle.IsEmpty)
styleMask |= STYLEMASK_TODAY;
if (otherMonthDayStyle != null && !otherMonthDayStyle.IsEmpty)
styleMask |= STYLEMASK_OTHERMONTH;
if (weekendDayStyle != null && !weekendDayStyle.IsEmpty)
styleMask |= STYLEMASK_WEEKEND;
return styleMask;
}
/// <devdoc>
/// </devdoc>
private string GetMonthName(int m, bool bFull) {
if (bFull) {
return DateTimeFormatInfo.CurrentInfo.GetMonthName(m);
}
else {
return DateTimeFormatInfo.CurrentInfo.GetAbbreviatedMonthName(m);
}
}
/// <devdoc>
/// <para>Determines if a <see cref='System.Web.UI.WebControls.CalendarSelectionMode'/>
/// contains week selectors.</para>
/// </devdoc>
protected bool HasWeekSelectors(CalendarSelectionMode selectionMode) {
return(selectionMode == CalendarSelectionMode.DayWeek
|| selectionMode == CalendarSelectionMode.DayWeekMonth);
}
private bool IsTheSameYearMonth(DateTime date1, DateTime date2) {
#if DEBUG
Debug.Assert(threadCalendarInitialized);
#endif
return (threadCalendar.GetEra(date1) == threadCalendar.GetEra(date2) &&
threadCalendar.GetYear(date1) == threadCalendar.GetYear(date2) &&
threadCalendar.GetMonth(date1) == threadCalendar.GetMonth(date2));
}
private bool IsMinSupportedYearMonth(DateTime date) {
#if DEBUG
Debug.Assert(threadCalendarInitialized);
#endif
return IsTheSameYearMonth(minSupportedDate, date);
}
private bool IsMaxSupportedYearMonth(DateTime date) {
#if DEBUG
Debug.Assert(threadCalendarInitialized);
#endif
return IsTheSameYearMonth(maxSupportedDate, date);
}
/// <internalonly/>
/// <devdoc>
/// <para>Loads a saved state of the <see cref='System.Web.UI.WebControls.Calendar'/>. </para>
/// </devdoc>
protected override void LoadViewState(object savedState) {
if (savedState != null) {
object[] myState = (object[])savedState;
if (myState[0] != null)
base.LoadViewState(myState[0]);
if (myState[1] != null)
((IStateManager)TitleStyle).LoadViewState(myState[1]);
if (myState[2] != null)
((IStateManager)NextPrevStyle).LoadViewState(myState[2]);
if (myState[3] != null)
((IStateManager)DayStyle).LoadViewState(myState[3]);
if (myState[4] != null)
((IStateManager)DayHeaderStyle).LoadViewState(myState[4]);
if (myState[5] != null)
((IStateManager)TodayDayStyle).LoadViewState(myState[5]);
if (myState[6] != null)
((IStateManager)WeekendDayStyle).LoadViewState(myState[6]);
if (myState[7] != null)
((IStateManager)OtherMonthDayStyle).LoadViewState(myState[7]);
if (myState[8] != null)
((IStateManager)SelectedDayStyle).LoadViewState(myState[8]);
if (myState[9] != null)
((IStateManager)SelectorStyle).LoadViewState(myState[9]);
ArrayList selDates = (ArrayList)ViewState["SD"];
if (selDates != null) {
dateList = selDates;
selectedDates = null; // reset wrapper collection
}
}
}
/// <internalonly/>
/// <devdoc>
/// <para>Marks the starting point to begin tracking and saving changes to the
/// control as part of the control viewstate.</para>
/// </devdoc>
protected override void TrackViewState() {
base.TrackViewState();
if (titleStyle != null)
((IStateManager)titleStyle).TrackViewState();
if (nextPrevStyle != null)
((IStateManager)nextPrevStyle).TrackViewState();
if (dayStyle != null)
((IStateManager)dayStyle).TrackViewState();
if (dayHeaderStyle != null)
((IStateManager)dayHeaderStyle).TrackViewState();
if (todayDayStyle != null)
((IStateManager)todayDayStyle).TrackViewState();
if (weekendDayStyle != null)
((IStateManager)weekendDayStyle).TrackViewState();
if (otherMonthDayStyle != null)
((IStateManager)otherMonthDayStyle).TrackViewState();
if (selectedDayStyle != null)
((IStateManager)selectedDayStyle).TrackViewState();
if (selectorStyle != null)
((IStateManager)selectorStyle).TrackViewState();
}
/// <devdoc>
/// </devdoc>
private int NumericFirstDayOfWeek() {
// Used globalized value by default
return(FirstDayOfWeek == FirstDayOfWeek.Default)
? (int) DateTimeFormatInfo.CurrentInfo.FirstDayOfWeek
: (int) FirstDayOfWeek;
}
/// <devdoc>
/// <para>Raises the <see langword='DayRender '/>event for a <see cref='System.Web.UI.WebControls.Calendar'/>.</para>
/// </devdoc>
protected virtual void OnDayRender(TableCell cell, CalendarDay day) {
DayRenderEventHandler handler = (DayRenderEventHandler)Events[EventDayRender];
if (handler != null) {
int absoluteDay = day.Date.Subtract(baseDate).Days;
// VSWhidbey 215383: We return null for selectUrl if a control is not in
// the page control tree.
string selectUrl = null;
Page page = Page;
if (page != null) {
string eventArgument = absoluteDay.ToString(CultureInfo.InvariantCulture);
selectUrl = Page.ClientScript.GetPostBackClientHyperlink(this, eventArgument, true);
}
handler(this, new DayRenderEventArgs(cell, day, selectUrl));
}
}
/// <devdoc>
/// <para>Raises the <see langword='SelectionChanged '/>event for a <see cref='System.Web.UI.WebControls.Calendar'/>.</para>
/// </devdoc>
protected virtual void OnSelectionChanged() {
EventHandler handler = (EventHandler)Events[EventSelectionChanged];
if (handler != null) {
handler(this, EventArgs.Empty);
}
}
/// <devdoc>
/// <para>Raises the <see langword='VisibleMonthChanged '/>event for a <see cref='System.Web.UI.WebControls.Calendar'/>.</para>
/// </devdoc>
protected virtual void OnVisibleMonthChanged(DateTime newDate, DateTime previousDate) {
MonthChangedEventHandler handler = (MonthChangedEventHandler)Events[EventVisibleMonthChanged];
if (handler != null) {
handler(this, new MonthChangedEventArgs(newDate, previousDate));
}
}
/// <internalonly/>
/// <devdoc>
/// <para>Raises events on post back for the <see cref='System.Web.UI.WebControls.Calendar'/> control.</para>
/// </devdoc>
protected virtual void RaisePostBackEvent(string eventArgument) {
ValidateEvent(UniqueID, eventArgument);
if (AdapterInternal != null) {
IPostBackEventHandler pbeh = AdapterInternal as IPostBackEventHandler;
if (pbeh != null) {
pbeh.RaisePostBackEvent(eventArgument);
}
} else {
if (String.Compare(eventArgument, 0, NAVIGATE_MONTH_COMMAND, 0, NAVIGATE_MONTH_COMMAND.Length, StringComparison.Ordinal) == 0) {
// Month navigation. The command starts with a "V" and the remainder is day difference from the
// base date.
DateTime oldDate = VisibleDate;
if (oldDate.Equals(DateTime.MinValue)) {
oldDate = TodaysDate;
}
int newDateDiff = Int32.Parse(eventArgument.Substring(NAVIGATE_MONTH_COMMAND.Length), CultureInfo.InvariantCulture);
VisibleDate = baseDate.AddDays(newDateDiff);
if (VisibleDate == DateTime.MinValue) {
// MinValue would make the calendar shows today's month instead because it
// is the default value of VisibleDate property, so we add a day to keep
// showing the first supported month.
// We assume the first supported month has more than one day.
VisibleDate = DateTimeFormatInfo.CurrentInfo.Calendar.AddDays(VisibleDate, 1);
}
OnVisibleMonthChanged(VisibleDate, oldDate);
}
else if (String.Compare(eventArgument, 0, SELECT_RANGE_COMMAND, 0, SELECT_RANGE_COMMAND.Length, StringComparison.Ordinal) == 0) {
// Range selection. The command starts with an "R". The remainder is an integer. When divided by 100
// the result is the day difference from the base date of the first day, and the remainder is the
// number of days to select.
int rangeValue = Int32.Parse(eventArgument.Substring(SELECT_RANGE_COMMAND.Length), CultureInfo.InvariantCulture);
int dayDiff = rangeValue / 100;
int dayRange = rangeValue % 100;
if (dayRange < 1) {
dayRange = 100 + dayRange;
dayDiff -= 1;
}
DateTime dt = baseDate.AddDays(dayDiff);
SelectRange(dt, dt.AddDays(dayRange - 1));
}
else {
// Single day selection. This is just a number which is the day difference from the base date.
int dayDiff = Int32.Parse(eventArgument, CultureInfo.InvariantCulture);
DateTime dt = baseDate.AddDays(dayDiff);
SelectRange(dt, dt);
}
}
}
void IPostBackEventHandler.RaisePostBackEvent(string eventArgument) {
RaisePostBackEvent(eventArgument);
}
/// <internalonly/>
protected internal override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
if (Page != null) {
Page.RegisterPostBackScript();
}
}
/// <internalonly/>
/// <devdoc>
/// <para>Displays the <see cref='System.Web.UI.WebControls.Calendar'/> control on the client.</para>
/// </devdoc>
protected internal override void Render(HtmlTextWriter writer) {
threadCalendar = DateTimeFormatInfo.CurrentInfo.Calendar;
minSupportedDate = threadCalendar.MinSupportedDateTime;
maxSupportedDate = threadCalendar.MaxSupportedDateTime;
#if DEBUG
threadCalendarInitialized = true;
#endif
DateTime visibleDate = EffectiveVisibleDate();
DateTime firstDay = FirstCalendarDay(visibleDate);
CalendarSelectionMode selectionMode = SelectionMode;
// Make sure we are in a form tag with runat=server.
if (Page != null) {
Page.VerifyRenderingInServerForm(this);
}
// We only want to display the link if we have a page, or if we are on the design surface
// If we can stops links being active on the Autoformat dialog, then we can remove this these checks.
Page page = Page;
bool buttonsActive;
if (page == null || DesignMode) {
buttonsActive = false;
}
else {
buttonsActive = IsEnabled;
}
defaultForeColor = ForeColor;
if (defaultForeColor == Color.Empty) {
defaultForeColor = DefaultForeColor;
}
defaultButtonColorText = ColorTranslator.ToHtml(defaultForeColor);
Table table = new Table();
if (ID != null) {
table.ID = ClientID;
}
table.CopyBaseAttributes(this);
if (ControlStyleCreated) {
table.ApplyStyle(ControlStyle);
}
table.Width = Width;
table.Height = Height;
table.CellPadding = CellPadding;
table.CellSpacing = CellSpacing;
// default look
if ((ControlStyleCreated == false) ||
(ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_BORDERWIDTH) == false) ||
BorderWidth.Equals(Unit.Empty)) {
table.BorderWidth = Unit.Pixel(1);
}
if (ShowGridLines) {
table.GridLines = GridLines.Both;
}
else {
table.GridLines = GridLines.None;
}
bool useAccessibleHeader = UseAccessibleHeader;
if (useAccessibleHeader) {
if (table.Attributes["title"] == null) {
table.Attributes["title"] = SR.GetString(SR.Calendar_TitleText);
}
}
string caption = Caption;
if (caption.Length > 0) {
table.Caption = caption;
table.CaptionAlign = CaptionAlign;
}
table.RenderBeginTag(writer);
if (ShowTitle) {
RenderTitle(writer, visibleDate, selectionMode, buttonsActive, useAccessibleHeader);
}
if (ShowDayHeader) {
RenderDayHeader(writer, visibleDate, selectionMode, buttonsActive, useAccessibleHeader);
}
RenderDays(writer, firstDay, visibleDate, selectionMode, buttonsActive, useAccessibleHeader);
table.RenderEndTag(writer);
}
private void RenderCalendarCell(HtmlTextWriter writer, TableItemStyle style, string text, string title, bool hasButton, string eventArgument) {
style.AddAttributesToRender(writer, this);
writer.RenderBeginTag(HtmlTextWriterTag.Td);
if (hasButton) {
// render the button
Color foreColor = style.ForeColor;
writer.Write("<a href=\"");
writer.Write(Page.ClientScript.GetPostBackClientHyperlink(this, eventArgument, true));
// ForeColor needs to go on the actual link. This breaks the uplevel/downlevel rules a little bit,
// but it is worth doing so the day links do not change color when they go in the history on
// downlevel browsers. Otherwise, people get it confused with the selection mechanism.
writer.Write("\" style=\"color:");
writer.Write(foreColor.IsEmpty ? defaultButtonColorText : ColorTranslator.ToHtml(foreColor));
if (!String.IsNullOrEmpty(title)) {
writer.Write("\" title=\"");
writer.Write(title);
}
writer.Write("\">");
writer.Write(text);
writer.Write("</a>");
}
else {
writer.Write(text);
}
writer.RenderEndTag();
}
private void RenderCalendarHeaderCell(HtmlTextWriter writer, TableItemStyle style, string text, string abbrText) {
style.AddAttributesToRender(writer, this);
writer.AddAttribute("abbr", abbrText);
writer.AddAttribute("scope", "col");
writer.RenderBeginTag(HtmlTextWriterTag.Th);
writer.Write(text);
writer.RenderEndTag();
}
/// <devdoc>
/// </devdoc>
private void RenderDayHeader(HtmlTextWriter writer, DateTime visibleDate, CalendarSelectionMode selectionMode, bool buttonsActive, bool useAccessibleHeader) {
writer.Write(ROWBEGINTAG);
DateTimeFormatInfo dtf = DateTimeFormatInfo.CurrentInfo;
if (HasWeekSelectors(selectionMode)) {
TableItemStyle monthSelectorStyle = new TableItemStyle();
monthSelectorStyle.HorizontalAlign = HorizontalAlign.Center;
// add the month selector button if required;
if (selectionMode == CalendarSelectionMode.DayWeekMonth) {
// Range selection. The command starts with an "R". The remainder is an integer. When divided by 100
// the result is the day difference from the base date of the first day, and the remainder is the
// number of days to select.
int startOffset = visibleDate.Subtract(baseDate).Days;
int monthLength = threadCalendar.GetDaysInMonth(threadCalendar.GetYear(visibleDate), threadCalendar.GetMonth(visibleDate), threadCalendar.GetEra(visibleDate));
if (IsMinSupportedYearMonth(visibleDate)) {
// The first supported month might not start with day 1
// (e.g. Sept 8 is the first supported date of JapaneseCalendar)
monthLength = monthLength - threadCalendar.GetDayOfMonth(visibleDate) + 1;
}
else if (IsMaxSupportedYearMonth(visibleDate)) {
// The last supported month might not have all days supported in that calendar month
// (e.g. April 3 is the last supported date of HijriCalendar)
monthLength = threadCalendar.GetDayOfMonth(maxSupportedDate);
}
string monthSelectKey = SELECT_RANGE_COMMAND + ((startOffset * 100) + monthLength).ToString(CultureInfo.InvariantCulture);
monthSelectorStyle.CopyFrom(SelectorStyle);
string selectMonthTitle = null;
if (useAccessibleHeader) {
selectMonthTitle = SR.GetString(SR.Calendar_SelectMonthTitle);
}
RenderCalendarCell(writer, monthSelectorStyle, SelectMonthText, selectMonthTitle, buttonsActive, monthSelectKey);
}
else {
// otherwise make it look like the header row
monthSelectorStyle.CopyFrom(DayHeaderStyle);
RenderCalendarCell(writer, monthSelectorStyle, string.Empty, null, false, null);
}
}
TableItemStyle dayNameStyle = new TableItemStyle();
dayNameStyle.HorizontalAlign = HorizontalAlign.Center;
dayNameStyle.CopyFrom(DayHeaderStyle);
DayNameFormat dayNameFormat = DayNameFormat;
int numericFirstDay = NumericFirstDayOfWeek();
for (int i = numericFirstDay; i < numericFirstDay + 7; i++) {
string dayName;
int dayOfWeek = i % 7;
switch (dayNameFormat) {
case DayNameFormat.FirstLetter:
dayName = dtf.GetDayName((DayOfWeek)dayOfWeek).Substring(0, 1);
break;
case DayNameFormat.FirstTwoLetters:
dayName = dtf.GetDayName((DayOfWeek)dayOfWeek).Substring(0, 2);
break;
case DayNameFormat.Full:
dayName = dtf.GetDayName((DayOfWeek)dayOfWeek);
break;
case DayNameFormat.Short:
dayName = dtf.GetAbbreviatedDayName((DayOfWeek)dayOfWeek);
break;
case DayNameFormat.Shortest:
dayName = dtf.GetShortestDayName((DayOfWeek)dayOfWeek);
break;
default:
Debug.Assert(false, "Unknown DayNameFormat value!");
goto case DayNameFormat.Short;
}
if (useAccessibleHeader) {
string fullDayName = dtf.GetDayName((DayOfWeek)dayOfWeek);
RenderCalendarHeaderCell(writer, dayNameStyle, dayName, fullDayName);
}
else {
RenderCalendarCell(writer, dayNameStyle, dayName, null, false, null);
}
}
writer.Write(ROWENDTAG);
}
/// <devdoc>
/// </devdoc>
private void RenderDays(HtmlTextWriter writer, DateTime firstDay, DateTime visibleDate, CalendarSelectionMode selectionMode, bool buttonsActive, bool useAccessibleHeader) {
// Now add the rows for the actual days
DateTime d = firstDay;
TableItemStyle weekSelectorStyle = null;
Unit defaultWidth;
bool hasWeekSelectors = HasWeekSelectors(selectionMode);
if (hasWeekSelectors) {
weekSelectorStyle = new TableItemStyle();
weekSelectorStyle.Width = Unit.Percentage(12);
weekSelectorStyle.HorizontalAlign = HorizontalAlign.Center;
weekSelectorStyle.CopyFrom(SelectorStyle);
defaultWidth = Unit.Percentage(12);
}
else {
defaultWidth = Unit.Percentage(14);
}
// This determines whether we need to call DateTime.ToString for each day. The only culture/calendar
// that requires this for now is the HebrewCalendar.
bool usesStandardDayDigits = !(threadCalendar is HebrewCalendar);
// This determines whether we can write out cells directly, or whether we have to create whole
// TableCell objects for each day.
bool hasRenderEvent = (this.GetType() != typeof(Calendar)
|| Events[EventDayRender] != null);
TableItemStyle [] cellStyles = new TableItemStyle[16];
int definedStyleMask = GetDefinedStyleMask();
DateTime todaysDate = TodaysDate;
string selectWeekText = SelectWeekText;
bool daysSelectable = buttonsActive && (selectionMode != CalendarSelectionMode.None);
int visibleDateMonth = threadCalendar.GetMonth(visibleDate);
int absoluteDay = firstDay.Subtract(baseDate).Days;
// VSWhidbey 480155: flag to indicate if forecolor needs to be set
// explicitly in design mode to mimic runtime rendering with the
// limitation of not supporting CSS class color setting.
bool inDesignSelectionMode = (DesignMode && SelectionMode != CalendarSelectionMode.None);
//------------------------------------------------------------------
// VSWhidbey 366243: The following variables are for boundary cases
// such as the current visible month is the first or the last
// supported month. They are used in the 'for' loops below.
// For the first supported month, calculate how many days to
// skip at the beginning of the first month. E.g. JapaneseCalendar
// starts at Sept 8.
int numOfFirstDaysToSkip = 0;
if (IsMinSupportedYearMonth(visibleDate)) {
numOfFirstDaysToSkip = (int)threadCalendar.GetDayOfWeek(firstDay) - NumericFirstDayOfWeek();
// If negative, it simply means the the index of the starting
// day name is greater than the day name of the first supported
// date. We add back 7 to get the number of days to skip.
if (numOfFirstDaysToSkip < 0) {
numOfFirstDaysToSkip += 7;
}
}
Debug.Assert(numOfFirstDaysToSkip < 7);
// For the last or second last supported month, initialize variables
// to identify the last supported date of the current calendar.
// e.g. The last supported date of HijriCalendar is April 3. When
// the second last monthh is shown, it can be the case that not all
// cells will be filled up.
bool passedLastSupportedDate = false;
DateTime secondLastMonth = threadCalendar.AddMonths(maxSupportedDate, -1);
bool lastOrSecondLastMonth = (IsMaxSupportedYearMonth(visibleDate) ||
IsTheSameYearMonth(secondLastMonth, visibleDate));
//------------------------------------------------------------------
for (int iRow = 0; iRow < 6; iRow++) {
if (passedLastSupportedDate) {
break;
}
writer.Write(ROWBEGINTAG);
// add week selector column and button if required
if (hasWeekSelectors) {
// Range selection. The command starts with an "R". The remainder is an integer. When divided by 100
// the result is the day difference from the base date of the first day, and the remainder is the
// number of days to select.
int dayDiffParameter = (absoluteDay * 100) + 7;
// Adjust the dayDiff for the first or the last supported month
if (numOfFirstDaysToSkip > 0) {
dayDiffParameter -= numOfFirstDaysToSkip;
}
else if (lastOrSecondLastMonth) {
int daysFromLastDate = maxSupportedDate.Subtract(d).Days;
if (daysFromLastDate < 6) {
dayDiffParameter -= (6 - daysFromLastDate);
}
}
string weekSelectKey = SELECT_RANGE_COMMAND + dayDiffParameter.ToString(CultureInfo.InvariantCulture);
string selectWeekTitle = null;
if (useAccessibleHeader) {
int weekOfMonth = iRow + 1;
selectWeekTitle = SR.GetString(SR.Calendar_SelectWeekTitle, weekOfMonth.ToString(CultureInfo.InvariantCulture));
}
RenderCalendarCell(writer, weekSelectorStyle, selectWeekText, selectWeekTitle, buttonsActive, weekSelectKey);
}
for (int iDay = 0; iDay < 7; iDay++) {
// Render empty cells for special cases to handle the first
// or last supported month.
if (numOfFirstDaysToSkip > 0) {
iDay += numOfFirstDaysToSkip;
for ( ; numOfFirstDaysToSkip > 0; numOfFirstDaysToSkip--) {
writer.RenderBeginTag(HtmlTextWriterTag.Td);
writer.RenderEndTag();
}
}
else if (passedLastSupportedDate) {
for ( ; iDay < 7; iDay++) {
writer.RenderBeginTag(HtmlTextWriterTag.Td);
writer.RenderEndTag();
}
break;
}
int dayOfWeek = (int)threadCalendar.GetDayOfWeek(d);
int dayOfMonth = threadCalendar.GetDayOfMonth(d);
string dayNumberText;
if ((dayOfMonth <= cachedNumberMax) && usesStandardDayDigits) {
dayNumberText = cachedNumbers[dayOfMonth];
}
else {
dayNumberText = d.ToString("dd", CultureInfo.CurrentCulture);
}
CalendarDay day = new CalendarDay(d,
(dayOfWeek == 0 || dayOfWeek == 6), // IsWeekend
d.Equals(todaysDate), // IsToday
(selectedDates != null) && selectedDates.Contains(d), // IsSelected
threadCalendar.GetMonth(d) != visibleDateMonth, // IsOtherMonth
dayNumberText // Number Text
);
int styleMask = STYLEMASK_DAY;
if (day.IsSelected)
styleMask |= STYLEMASK_SELECTED;
if (day.IsOtherMonth)
styleMask |= STYLEMASK_OTHERMONTH;
if (day.IsToday)
styleMask |= STYLEMASK_TODAY;
if (day.IsWeekend)
styleMask |= STYLEMASK_WEEKEND;
int dayStyleMask = definedStyleMask & styleMask;
// determine the unique portion of the mask for the current calendar,
// which will strip out the day style bit
int dayStyleID = dayStyleMask & STYLEMASK_UNIQUE;
TableItemStyle cellStyle = cellStyles[dayStyleID];
if (cellStyle == null) {
cellStyle = new TableItemStyle();
SetDayStyles(cellStyle, dayStyleMask, defaultWidth);
cellStyles[dayStyleID] = cellStyle;
}
string dayTitle = null;
if (useAccessibleHeader) {
dayTitle = d.ToString("m", CultureInfo.CurrentCulture);
}
if (hasRenderEvent) {
TableCell cdc = new TableCell();
cdc.ApplyStyle(cellStyle);
LiteralControl dayContent = new LiteralControl(dayNumberText);
cdc.Controls.Add(dayContent);
day.IsSelectable = daysSelectable;
OnDayRender(cdc, day);
// refresh the day content
dayContent.Text = GetCalendarButtonText(absoluteDay.ToString(CultureInfo.InvariantCulture),
dayNumberText,
dayTitle,
buttonsActive && day.IsSelectable,
cdc.ForeColor);
cdc.RenderControl(writer);
}
else {
// VSWhidbey 480155: In design mode we render days as
// texts instead of links so CSS class color setting is
// supported. But this differs in runtime rendering
// where CSS class color setting is not supported. To
// correctly mimic the forecolor of runtime rendering in
// design time, the default color, which is used in
// runtime rendering, is explicitly set in this case.
if (inDesignSelectionMode && cellStyle.ForeColor.IsEmpty) {
cellStyle.ForeColor = defaultForeColor;
}
RenderCalendarCell(writer, cellStyle, dayNumberText, dayTitle, daysSelectable, absoluteDay.ToString(CultureInfo.InvariantCulture));
}
Debug.Assert(!passedLastSupportedDate);
if (lastOrSecondLastMonth && d.Month == maxSupportedDate.Month && d.Day == maxSupportedDate.Day) {
passedLastSupportedDate = true;
}
else {
d = threadCalendar.AddDays(d, 1);
absoluteDay++;
}
}
writer.Write(ROWENDTAG);
}
}
/// <devdoc>
/// </devdoc>
private void RenderTitle(HtmlTextWriter writer, DateTime visibleDate, CalendarSelectionMode selectionMode, bool buttonsActive, bool useAccessibleHeader) {
writer.Write(ROWBEGINTAG);
TableCell titleCell = new TableCell();
Table titleTable = new Table();
// default title table/cell styles
titleCell.ColumnSpan = HasWeekSelectors(selectionMode) ? 8 : 7;
titleCell.BackColor = Color.Silver;
titleTable.GridLines = GridLines.None;
titleTable.Width = Unit.Percentage(100);
titleTable.CellSpacing = 0;
TableItemStyle titleStyle = TitleStyle;
ApplyTitleStyle(titleCell, titleTable, titleStyle);
titleCell.RenderBeginTag(writer);
titleTable.RenderBeginTag(writer);
writer.Write(ROWBEGINTAG);
NextPrevFormat nextPrevFormat = NextPrevFormat;
TableItemStyle nextPrevStyle = new TableItemStyle();
nextPrevStyle.Width = Unit.Percentage(15);
nextPrevStyle.CopyFrom(NextPrevStyle);
if (ShowNextPrevMonth) {
if (IsMinSupportedYearMonth(visibleDate)) {
writer.RenderBeginTag(HtmlTextWriterTag.Td);
writer.RenderEndTag();
}
else {
string prevMonthText;
if (nextPrevFormat == NextPrevFormat.ShortMonth || nextPrevFormat == NextPrevFormat.FullMonth) {
int monthNo = threadCalendar.GetMonth(threadCalendar.AddMonths(visibleDate, - 1));
prevMonthText = GetMonthName(monthNo, (nextPrevFormat == NextPrevFormat.FullMonth));
}
else {
prevMonthText = PrevMonthText;
}
// Month navigation. The command starts with a "V" and the remainder is day difference from the
// base date.
DateTime prevMonthDate;
// VSWhidbey 366243: Some calendar's min supported date is
// not the first day of the month (e.g. JapaneseCalendar.
// So if we are setting the second supported month, the prev
// month link should always point to the first supported
// date instead of the first day of the previous month.
DateTime secondSupportedMonth = threadCalendar.AddMonths(minSupportedDate, 1);
if (IsTheSameYearMonth(secondSupportedMonth, visibleDate)) {
prevMonthDate = minSupportedDate;
}
else {
prevMonthDate = threadCalendar.AddMonths(visibleDate, -1);
}
string prevMonthKey = NAVIGATE_MONTH_COMMAND + (prevMonthDate.Subtract(baseDate)).Days.ToString(CultureInfo.InvariantCulture);
string previousMonthTitle = null;
if (useAccessibleHeader) {
previousMonthTitle = SR.GetString(SR.Calendar_PreviousMonthTitle);
}
RenderCalendarCell(writer, nextPrevStyle, prevMonthText, previousMonthTitle, buttonsActive, prevMonthKey);
}
}
TableItemStyle cellMainStyle = new TableItemStyle();
if (titleStyle.HorizontalAlign != HorizontalAlign.NotSet) {
cellMainStyle.HorizontalAlign = titleStyle.HorizontalAlign;
}
else {
cellMainStyle.HorizontalAlign = HorizontalAlign.Center;
}
cellMainStyle.Wrap = titleStyle.Wrap;
cellMainStyle.Width = Unit.Percentage(70);
string titleText;
switch (TitleFormat) {
case TitleFormat.Month:
titleText = visibleDate.ToString("MMMM", CultureInfo.CurrentCulture);
break;
case TitleFormat.MonthYear:
string titlePattern = DateTimeFormatInfo.CurrentInfo.YearMonthPattern;
// Some cultures have a comma in their YearMonthPattern, which does not look
// right in a calendar. Use a fixed pattern for those.
if (titlePattern.IndexOf(',') >= 0) {
titlePattern = "MMMM yyyy";
}
titleText = visibleDate.ToString(titlePattern, CultureInfo.CurrentCulture);
break;
default:
Debug.Assert(false, "Unknown TitleFormat value!");
goto case TitleFormat.MonthYear;
}
RenderCalendarCell(writer, cellMainStyle, titleText, null, false, null);
if (ShowNextPrevMonth) {
if (IsMaxSupportedYearMonth(visibleDate)) {
writer.RenderBeginTag(HtmlTextWriterTag.Td);
writer.RenderEndTag();
}
else {
// Style for this one is identical bar
nextPrevStyle.HorizontalAlign = HorizontalAlign.Right;
string nextMonthText;
if (nextPrevFormat == NextPrevFormat.ShortMonth || nextPrevFormat == NextPrevFormat.FullMonth) {
int monthNo = threadCalendar.GetMonth(threadCalendar.AddMonths(visibleDate, 1));
nextMonthText = GetMonthName(monthNo, (nextPrevFormat == NextPrevFormat.FullMonth));
}
else {
nextMonthText = NextMonthText;
}
// Month navigation. The command starts with a "V" and the remainder is day difference from the
// base date.
DateTime nextMonthDate = threadCalendar.AddMonths(visibleDate, 1);
string nextMonthKey = NAVIGATE_MONTH_COMMAND + (nextMonthDate.Subtract(baseDate)).Days.ToString(CultureInfo.InvariantCulture);
string nextMonthTitle = null;
if (useAccessibleHeader) {
nextMonthTitle = SR.GetString(SR.Calendar_NextMonthTitle);
}
RenderCalendarCell(writer, nextPrevStyle, nextMonthText, nextMonthTitle, buttonsActive, nextMonthKey);
}
}
writer.Write(ROWENDTAG);
titleTable.RenderEndTag(writer);
titleCell.RenderEndTag(writer);
writer.Write(ROWENDTAG);
}
/// <internalonly/>
/// <devdoc>
/// <para>Stores the state of the System.Web.UI.WebControls.Calender.</para>
/// </devdoc>
protected override object SaveViewState() {
if (SelectedDates.Count > 0)
ViewState["SD"] = dateList;
object[] myState = new object[10];
myState[0] = base.SaveViewState();
myState[1] = (titleStyle != null) ? ((IStateManager)titleStyle).SaveViewState() : null;
myState[2] = (nextPrevStyle != null) ? ((IStateManager)nextPrevStyle).SaveViewState() : null;
myState[3] = (dayStyle != null) ? ((IStateManager)dayStyle).SaveViewState() : null;
myState[4] = (dayHeaderStyle != null) ? ((IStateManager)dayHeaderStyle).SaveViewState() : null;
myState[5] = (todayDayStyle != null) ? ((IStateManager)todayDayStyle).SaveViewState() : null;
myState[6] = (weekendDayStyle != null) ? ((IStateManager)weekendDayStyle).SaveViewState() : null;
myState[7] = (otherMonthDayStyle != null) ? ((IStateManager)otherMonthDayStyle).SaveViewState() : null;
myState[8] = (selectedDayStyle != null) ? ((IStateManager)selectedDayStyle).SaveViewState() : null;
myState[9] = (selectorStyle != null) ? ((IStateManager)selectorStyle).SaveViewState() : null;
for (int i = 0; i<myState.Length; i++) {
if (myState[i] != null)
return myState;
}
return null;
}
private void SelectRange(DateTime dateFrom, DateTime dateTo) {
Debug.Assert(dateFrom <= dateTo, "Bad Date Range");
// see if this range differs in any way from the current range
// these checks will determine this because the colleciton is sorted
TimeSpan ts = dateTo - dateFrom;
if (SelectedDates.Count != ts.Days + 1
|| SelectedDates[0] != dateFrom
|| SelectedDates[SelectedDates.Count - 1] != dateTo) {
SelectedDates.SelectRange(dateFrom, dateTo);
OnSelectionChanged();
}
}
/// <devdoc>
/// </devdoc>
private void SetDayStyles(TableItemStyle style, int styleMask, Unit defaultWidth) {
// default day styles
style.Width = defaultWidth;
style.HorizontalAlign = HorizontalAlign.Center;
if ((styleMask & STYLEMASK_DAY) != 0) {
style.CopyFrom(DayStyle);
}
if ((styleMask & STYLEMASK_WEEKEND) != 0) {
style.CopyFrom(WeekendDayStyle);
}
if ((styleMask & STYLEMASK_OTHERMONTH) != 0) {
style.CopyFrom(OtherMonthDayStyle);
}
if ((styleMask & STYLEMASK_TODAY) != 0) {
style.CopyFrom(TodayDayStyle);
}
if ((styleMask & STYLEMASK_SELECTED) != 0) {
// default selected day style
style.ForeColor = Color.White;
style.BackColor = Color.Silver;
style.CopyFrom(SelectedDayStyle);
}
}
}
}
|