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 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 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 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
|
/** ***** BEGIN LICENSE BLOCK *****
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Components.utils.import("resource:///modules/activity/activityModules.js");
Components.utils.import("resource:///modules/errUtils.js");
Components.utils.import("resource:///modules/folderUtils.jsm");
Components.utils.import("resource:///modules/IOUtils.js");
Components.utils.import("resource:///modules/jsTreeSelection.js");
Components.utils.import("resource:///modules/MailConsts.js");
Components.utils.import("resource:///modules/mailInstrumentation.js");
Components.utils.import("resource:///modules/mailnewsMigrator.js");
Components.utils.import("resource:///modules/mailServices.js");
Components.utils.import("resource:///modules/msgDBCacheManager.js");
Components.utils.import("resource:///modules/sessionStoreManager.js");
Components.utils.import("resource:///modules/summaryFrameManager.js");
Components.utils.import("resource:///modules/MailUtils.js");
Components.utils.import("resource://gre/modules/Services.jsm");
/* This is where functions related to the 3 pane window are kept */
// from MailNewsTypes.h
var nsMsgKey_None = 0xFFFFFFFF;
var nsMsgViewIndex_None = 0xFFFFFFFF;
var kMailCheckOncePrefName = "mail.startup.enabledMailCheckOnce";
var kStandardPaneConfig = 0;
var kWidePaneConfig = 1;
var kVerticalPaneConfig = 2;
var kNumFolderViews = 4; // total number of folder views
/** widget with id=messagepanebox, initialized by GetMessagePane() */
var gMessagePane;
/** widget with id=messagepaneboxwrapper, initialized by GetMessagePaneWrapper() */
var gMessagePaneWrapper;
var gThreadAndMessagePaneSplitter = null;
/**
* Tracks whether the right mouse button changed the selection or not. If the
* user right clicks on the selection, it stays the same. If they click outside
* of it, we alter the selection (but not the current index) to be the row they
* clicked on.
*
* The value of this variable is an object with "view" and "selection" keys
* and values. The view value is the view whose selection we saved off, and
* the selection value is the selection object we saved off.
*/
var gRightMouseButtonSavedSelection = null;
var gNewAccountToLoad = null;
var gDisplayStartupPage = false;
// The object in charge of managing the mail summary pane
var gSummaryFrameManager;
// the folderListener object
var folderListener = {
OnItemAdded: function(parentItem, item) { },
OnItemRemoved: function(parentItem, item) { },
OnItemPropertyChanged: function(item, property, oldValue, newValue) { },
OnItemIntPropertyChanged: function(item, property, oldValue, newValue) {
if (item == gFolderDisplay.displayedFolder) {
if(property.toString() == "TotalMessages" || property.toString() == "TotalUnreadMessages") {
UpdateStatusMessageCounts(gFolderDisplay.displayedFolder);
}
}
},
OnItemBoolPropertyChanged: function(item, property, oldValue, newValue) { },
OnItemUnicharPropertyChanged: function(item, property, oldValue, newValue) { },
OnItemPropertyFlagChanged: function(item, property, oldFlag, newFlag) { },
OnItemEvent: function(folder, event) {
var eventType = event.toString();
if (eventType == "ImapHdrDownloaded") {
if (folder) {
var imapFolder = folder.QueryInterface(Components.interfaces.nsIMsgImapMailFolder);
if (imapFolder) {
var hdrParser = imapFolder.hdrParser;
if (hdrParser) {
var msgHdr = hdrParser.GetNewMsgHdr();
if (msgHdr)
{
var hdrs = hdrParser.headers;
if (hdrs && hdrs.indexOf("X-attachment-size:") > 0) {
msgHdr.OrFlags(Components.interfaces.nsMsgMessageFlags
.Attachment);
}
if (hdrs && hdrs.indexOf("X-image-size:") > 0) {
msgHdr.setStringProperty("imageSize", "1");
}
}
}
}
}
}
else if (eventType == "JunkStatusChanged") {
HandleJunkStatusChanged(folder);
}
}
}
/*
* Listen for Lightweight Theme styling changes and update the theme accordingly.
*/
var LightweightThemeListener = {
_modifiedStyles: [],
init: function () {
XPCOMUtils.defineLazyGetter(this, "styleSheet", function() {
for (let i = document.styleSheets.length - 1; i >= 0; i--) {
let sheet = document.styleSheets[i];
if (sheet.href == "chrome://messenger/skin/messengerLWTheme.css")
return sheet;
}
});
Services.obs.addObserver(this, "lightweight-theme-styling-update", false);
Services.obs.addObserver(this, "lightweight-theme-optimized", false);
if (document.documentElement.hasAttribute("lwtheme"))
this.updateStyleSheet(document.documentElement.style.backgroundImage);
},
uninit: function () {
Services.obs.removeObserver(this, "lightweight-theme-styling-update");
Services.obs.removeObserver(this, "lightweight-theme-optimized");
},
/**
* Append the headerImage to the background-image property of all rulesets in
* messengerLWTheme.css.
*
* @param headerImage - a string containing a CSS image for the lightweight
* theme header.
*/
updateStyleSheet: function(headerImage) {
if (!this.styleSheet)
return;
for (let i = 0; i < this.styleSheet.cssRules.length; i++) {
let rule = this.styleSheet.cssRules[i];
if (!rule.style.backgroundImage)
continue;
if (!this._modifiedStyles[i])
this._modifiedStyles[i] = { backgroundImage: rule.style.backgroundImage };
rule.style.backgroundImage = this._modifiedStyles[i].backgroundImage + ", " + headerImage;
}
},
// nsIObserver
observe: function (aSubject, aTopic, aData) {
if ((aTopic != "lightweight-theme-styling-update" && aTopic != "lightweight-theme-optimized") ||
!this.styleSheet)
return;
if (aTopic == "lightweight-theme-optimized" && aSubject != window)
return;
let themeData = JSON.parse(aData);
if (!themeData)
return;
this.updateStyleSheet("url(" + themeData.headerURL + ")");
},
};
function ServerContainsFolder(server, folder)
{
if (!folder || !server)
return false;
return server.equals(folder.server);
}
function SelectServer(server)
{
gFolderTreeView.selectFolder(server.rootFolder);
}
// we have this incoming server listener in case we need to
// alter the folder pane selection when a server is removed
// or changed (currently, when the real username or real hostname change)
var gThreePaneIncomingServerListener = {
onServerLoaded: function(server) {},
onServerUnloaded: function(server) {
let defaultServer;
try {
defaultServer = accountManager.defaultAccount.incomingServer;
} catch (e) {
// If there is no default server we have nothing to do.
return;
}
var selectedFolders = GetSelectedMsgFolders();
for (var i = 0; i < selectedFolders.length; i++) {
if (ServerContainsFolder(server, selectedFolders[i])) {
SelectServer(defaultServer);
// we've made a new selection, we're done
return;
}
}
// if nothing is selected at this point, better go select the default
// this could happen if nothing was selected when the server was removed
selectedFolders = GetSelectedMsgFolders();
if (selectedFolders.length == 0) {
SelectServer(defaultServer);
}
},
onServerChanged: function(server) {
// if the current selected folder is on the server that changed
// and that server is an imap or news server,
// we need to update the selection.
// on those server types, we'll be reconnecting to the server
// and our currently selected folder will need to be reloaded
// or worse, be invalid.
if (server.type != "imap" && server.type !="nntp")
return;
var selectedFolders = GetSelectedMsgFolders();
for (var i = 0; i < selectedFolders.length; i++) {
// if the selected item is a server, we don't have to update
// the selection
if (!(selectedFolders[i].isServer) && ServerContainsFolder(server, selectedFolders[i])) {
SelectServer(server);
// we've made a new selection, we're done
return;
}
}
}
}
// aMsgWindowInitialized: false if we are calling from the onload handler, otherwise true
function UpdateMailPaneConfig(aMsgWindowInitialized) {
const dynamicIds = ["messagesBox", "mailContent", "threadPaneBox"];
const layouts = ["standard", "wide", "vertical"];
var layoutView = Services.prefs.getIntPref("mail.pane_config.dynamic");
// Ensure valid value; hard fail if not.
layoutView = dynamicIds[layoutView] ? layoutView : kStandardPaneConfig;
var desiredId = dynamicIds[layoutView];
document.getElementById("mailContent")
.setAttribute("layout", layouts[layoutView]);
var messagePaneBoxWrapper = GetMessagePaneWrapper();
if (messagePaneBoxWrapper.parentNode.id != desiredId) {
ClearAttachmentList();
var hdrToolbox = document.getElementById("header-view-toolbox");
var hdrToolbar = document.getElementById("header-view-toolbar");
var firstPermanentChild = hdrToolbar.firstPermanentChild;
var lastPermanentChild = hdrToolbar.lastPermanentChild;
var messagePaneSplitter = GetThreadAndMessagePaneSplitter();
var desiredParent = document.getElementById(desiredId);
// Here the message pane including the header pane is moved to the
// new layout by the appendChild() method below. As described in bug
// 519956 only elements in the DOM tree are copied to the new place
// whereas javascript class variables of DOM tree elements get lost.
// In this case the ToolboxPalette, Toolbarset first/lastPermanentChild
// are removed which results in the message header pane not being
// customizable any more. A workaround for this problem is to clone
// them first and add them to the DOM tree after the message pane has
// been moved.
var cloneToolboxPalette;
var cloneToolbarset;
if (hdrToolbox.palette) {
cloneToolboxPalette = hdrToolbox.palette.cloneNode(true);
}
if (hdrToolbox.toolbarset) {
cloneToolbarset = hdrToolbox.toolbarset.cloneNode(true);
}
// See Bug 381992. The ctor for the browser element will fire again when we
// re-insert the messagePaneBoxWrapper back into the document. But the dtor
// doesn't fire when the element is removed from the document. Manually
// call destroy here to avoid a nasty leak.
document.getElementById("messagepane").destroy();
let footerBox = desiredParent.lastChild;
if (footerBox && footerBox.id == "msg-footer-notification-box") {
desiredParent.insertBefore(messagePaneSplitter, footerBox);
desiredParent.insertBefore(messagePaneBoxWrapper, footerBox);
} else {
desiredParent.appendChild(messagePaneSplitter);
desiredParent.appendChild(messagePaneBoxWrapper);
}
hdrToolbox.palette = cloneToolboxPalette;
hdrToolbox.toolbarset = cloneToolbarset;
hdrToolbar = document.getElementById("header-view-toolbar");
hdrToolbar.firstPermanentChild = firstPermanentChild;
hdrToolbar.lastPermanentChild = lastPermanentChild;
messagePaneSplitter.orient = desiredParent.orient;
if (aMsgWindowInitialized)
{
messenger.setWindow(null, null);
messenger.setWindow(window, msgWindow);
ReloadMessage();
}
// The quick filter bar gets badly lied to due to standard XUL/XBL problems,
// so we need to generate synthetic notifications after a delay on those
// nodes that care about overflow. The 'lie' comes in the form of being
// given (at startup) an overflow event with a tiny clientWidth (100), then
// a more tiny resize event (clientWidth = 32), then a resize event that
// claims the entire horizontal space is allocated to us
// (clientWidth = 1036). It would appear that when the messagepane's XBL
// binding (or maybe the splitter's?) finally activates, the quick filter
// pane gets resized down without any notification.
// Our solution tries to be generic and help out any code with an onoverflow
// handler. We will also generate an onresize notification if it turns out
// that onoverflow is not appropriate (and such a handler is registered).
// This does require that XUL attributes were used to register the handlers
// rather than addEventListener.
// The choice of the delay is basically a kludge because something like 10ms
// may be insufficient to ensure we get enqueued after whatever triggers
// the layout discontinuity. (We need to wait for a paint to happen to
// trigger the XBL binding, and then there may be more complexities...)
setTimeout(function UpdateMailPaneConfig_deferredFixup() {
let threadPaneBox = document.getElementById("threadPaneBox");
let overflowNodes =
threadPaneBox.querySelectorAll("[onoverflow]");
for (let iNode = 0; iNode < overflowNodes.length; iNode++) {
let node = overflowNodes[iNode];
if (node.scrollWidth > node.clientWidth) {
let e = document.createEvent("HTMLEvents");
e.initEvent("overflow", false, false);
node.dispatchEvent(e);
}
else if (node.onresize) {
let e = document.createEvent("HTMLEvents");
e.initEvent("resize", false, false);
node.dispatchEvent(e);
}
}
}, 1500);
}
}
var MailPrefObserver = {
observe: function(subject, topic, prefName) {
// verify that we're changing the mail pane config pref
if (topic == "nsPref:changed")
{
if (prefName == "mail.pane_config.dynamic")
UpdateMailPaneConfig(true);
else if (prefName == "mail.showCondensedAddresses")
{
var currentDisplayNameVersion;
var threadTree = document.getElementById("threadTree");
currentDisplayNameVersion =
Services.prefs.getIntPref("mail.displayname.version");
Services.prefs.setIntPref("mail.displayname.version",
++currentDisplayNameVersion);
//refresh the thread pane
threadTree.treeBoxObject.invalidate();
}
}
}
};
/**
* Called on startup if there are no accounts.
*/
function AutoConfigWizard(okCallback)
{
let suppressDialogs = false;
// Try to get the suppression pref that we stashed away in accountProvisionerTab.js.
// If it doesn't exist, nsIPrefBranch throws, so we eat it silently and move along.
try {
suppressDialogs = Services.prefs.getBoolPref("mail.provider.suppress_dialog_on_startup");
} catch(e) {};
if (suppressDialogs) {
// Looks like we were in the middle of filling out an account form. We
// won't display the dialogs in that case.
Services.prefs.clearUserPref("mail.provider.suppress_dialog_on_startup");
okCallback();
return;
}
if (Services.prefs.getBoolPref("mail.provider.enabled")) {
Services.obs.addObserver({
observe: function(aSubject, aTopic, aData) {
if (aTopic == "mail-tabs-session-restored" && aSubject === window) {
// We're done here, unregister this observer.
Services.obs.removeObserver(this, "mail-tabs-session-restored");
NewMailAccountProvisioner(msgWindow, { okCallback: null });
}
}
}, "mail-tabs-session-restored", false);
okCallback();
}
else
NewMailAccount(msgWindow, okCallback);
}
/**
* Called on startup to initialize various parts of the main window
*/
function OnLoadMessenger()
{
migrateMailnews();
// Rig up our TabsInTitlebar early so that we can catch any resize events.
TabsInTitlebar.init();
// Listen for Lightweight Theme styling changes and update the theme accordingly.
LightweightThemeListener.init();
// update the pane config before we exit onload otherwise the user may see a flicker if we poke the document
// in delayedOnLoadMessenger...
UpdateMailPaneConfig(false);
document.loadBindingDocument('chrome://global/content/bindings/textbox.xml');
#ifdef XP_WIN
// On Win8 set an attribute when the window frame color is too dark for black text.
if (window.matchMedia("(-moz-os-version: windows-win8)").matches &&
window.matchMedia("(-moz-windows-default-theme)").matches) {
let windows8WindowFrameColor = Cu.import("resource:///modules/Windows8WindowFrameColor.jsm", {}).Windows8WindowFrameColor;
let windowFrameColor = windows8WindowFrameColor.get();
// Formula from W3C's WCAG 2.0 spec's color ratio and relative luminance,
// section 1.3.4, http://www.w3.org/TR/WCAG20/ .
windowFrameColor = windowFrameColor.map((color) => {
if (color <= 10) {
return color / 255 / 12.92;
}
return Math.pow(((color / 255) + 0.055) / 1.055, 2.4);
});
let backgroundLuminance = windowFrameColor[0] * 0.2126 +
windowFrameColor[1] * 0.7152 +
windowFrameColor[2] * 0.0722;
let foregroundLuminance = 0; // Default to black for foreground text.
let contrastRatio = (backgroundLuminance + 0.05) / (foregroundLuminance + 0.05);
if (contrastRatio < 3) {
document.documentElement.setAttribute("darkwindowframe", "true");
}
}
#endif
ToolbarIconColor.init();
// Set a sane starting width/height for all resolutions on new profiles.
// Do this before the window loads.
if (!document.documentElement.hasAttribute("width"))
{
// Prefer 1024xfull height.
let defaultHeight = screen.availHeight;
let defaultWidth = (screen.availWidth <= 1024) ? screen.availWidth : 1024;
// On small screens, default to maximized state.
if (defaultHeight <= 600)
document.documentElement.setAttribute("sizemode", "maximized");
document.documentElement.setAttribute("width", defaultWidth);
document.documentElement.setAttribute("height", defaultHeight);
// Make sure we're safe at the left/top edge of screen
document.documentElement.setAttribute("screenX", screen.availLeft);
document.documentElement.setAttribute("screenY", screen.availTop);
}
Services.prefs.addObserver("mail.pane_config.dynamic", MailPrefObserver, false);
Services.prefs.addObserver("mail.showCondensedAddresses", MailPrefObserver,
false);
MailOfflineMgr.init();
CreateMailWindowGlobals();
GetMessagePaneWrapper().collapsed = true;
msgDBCacheManager.init();
Services.search.init();
// This needs to be before we throw up the account wizard on first run.
try {
mailInstrumentationManager.init();
} catch(ex) {logException(ex);}
// - initialize tabmail system
// Do this before LoadPostAccountWizard since that code selects the first
// folder for display, and we want gFolderDisplay setup and ready to handle
// that event chain.
// Also, we definitely need to register the tab type prior to the call to
// specialTabs.openSpecialTabsOnStartup below.
let tabmail = document.getElementById('tabmail');
if (tabmail)
{
// mailTabType is defined in mailTabs.js
tabmail.registerTabType(mailTabType);
// glodaFacetTab* in glodaFacetTab.js
tabmail.registerTabType(glodaFacetTabType);
QuickFilterBarMuxer._init();
tabmail.registerTabMonitor(GlodaSearchBoxTabMonitor);
tabmail.registerTabMonitor(statusMessageCountsMonitor);
tabmail.openFirstTab();
}
// Install the light-weight theme handlers
let panelcontainer = document.getElementById("tabpanelcontainer");
if (panelcontainer) {
panelcontainer.addEventListener("InstallBrowserTheme",
LightWeightThemeWebInstaller, false, true);
panelcontainer.addEventListener("PreviewBrowserTheme",
LightWeightThemeWebInstaller, false, true);
panelcontainer.addEventListener("ResetBrowserThemePreview",
LightWeightThemeWebInstaller, false, true);
}
Services.obs.addObserver(gPluginHandler.pluginCrashed, "plugin-crashed", false);
// This also registers the contentTabType ("contentTab")
specialTabs.openSpecialTabsOnStartup();
preferencesTabType.initialize();
// accountProvisionerTabType is defined in accountProvisionerTab.js
tabmail.registerTabType(accountProvisionerTabType);
// verifyAccounts returns true if the callback won't be called
// We also don't want the account wizard to open if any sort of account exists
if (verifyAccounts(LoadPostAccountWizard, false, AutoConfigWizard))
LoadPostAccountWizard();
// Set up the summary frame manager to handle loading pages in the
// multi-message pane
gSummaryFrameManager = new SummaryFrameManager(
document.getElementById("multimessage"));
window.addEventListener("AppCommand", HandleAppCommandEvent, true);
}
function LoadPostAccountWizard()
{
InitMsgWindow();
messenger.setWindow(window, msgWindow);
InitPanes();
MigrateAttachmentDownloadStore();
MigrateJunkMailSettings();
MigrateFolderViews();
MigrateOpenMessageBehavior();
Components.utils.import("resource:///modules/mailMigrator.js");
MailMigrator.migratePostAccountWizard();
accountManager.setSpecialFolders();
try {
accountManager.loadVirtualFolders();
} catch (e) {Components.utils.reportError(e);}
accountManager.addIncomingServerListener(gThreePaneIncomingServerListener);
gPhishingDetector.init();
AddToSession();
//need to add to session before trying to load start folder otherwise listeners aren't
//set up correctly.
let startFolderURI = null, startMsgHdr = null;
if ("arguments" in window && window.arguments.length > 0)
{
let arg0 = window.arguments[0];
// If the argument is a string, it is either a folder URI or a feed URI
if (typeof arg0 == "string")
{
// filter our any feed urls that came in as arguments to the new window...
if (arg0.toLowerCase().startsWith("feed:"))
{
let feedHandler = Components.classes["@mozilla.org/newsblog-feed-downloader;1"]
.getService(Components.interfaces.nsINewsBlogFeedDownloader);
if (feedHandler)
feedHandler.subscribeToFeed(arg0, null, msgWindow);
}
else
{
startFolderURI = arg0;
}
}
else if (arg0)
{
// arg0 is an object
if (("wrappedJSObject" in arg0) && arg0.wrappedJSObject)
arg0 = arg0.wrappedJSObject;
startMsgHdr = ("msgHdr" in arg0) ? arg0.msgHdr : null;
}
}
function completeStartup() {
// Check whether we need to show the default client dialog
// First, check the shell service
var nsIShellService = Components.interfaces.nsIShellService;
if (nsIShellService) {
var shellService;
var defaultAccount;
try {
shellService = Components.classes["@mozilla.org/mail/shell-service;1"].getService(nsIShellService);
defaultAccount = accountManager.defaultAccount;
} catch (ex) {}
// Next, try loading the search integration module
// We'll get a null SearchIntegration if we don't have one
Components.utils.import("resource:///modules/SearchIntegration.js");
// Show the default client dialog only if
// EITHER: we have at least one account, and we aren't already the default
// for mail,
// OR: we have the search integration module, the OS version is suitable,
// and the first run hasn't already been completed.
// Needs to be shown outside the he normal load sequence so it doesn't appear
// before any other displays, in the wrong place of the screen.
if ((shellService && defaultAccount && shellService.shouldCheckDefaultClient
&& !shellService.isDefaultClient(true, nsIShellService.MAIL)) ||
(SearchIntegration && !SearchIntegration.osVersionTooLow &&
!SearchIntegration.osComponentsNotRunning && !SearchIntegration.firstRunDone)) {
window.openDialog("chrome://messenger/content/systemIntegrationDialog.xul",
"SystemIntegration", "modal,centerscreen,chrome,resizable=no");
// On windows, there seems to be a delay between setting TB as the
// default client, and the isDefaultClient check succeeding.
if (shellService.isDefaultClient(true, nsIShellService.MAIL))
Services.obs.notifyObservers(window, "mail:setAsDefault", null);
}
}
// All core modal dialogs are done, the user can now interact with the 3-pane window
Services.obs.notifyObservers(window, "mail-startup-done", null);
}
setTimeout(completeStartup, 0);
// FIX ME - later we will be able to use onload from the overlay
OnLoadMsgHeaderPane();
//Set focus to the Thread Pane the first time the window is opened.
SetFocusThreadPane();
// initialize the customizeDone method on the customizeable toolbar
var toolbox = document.getElementById("mail-toolbox");
toolbox.customizeDone = function(aEvent) { MailToolboxCustomizeDone(aEvent, "CustomizeMailToolbar"); };
var toolbarset = document.getElementById('customToolbars');
toolbox.toolbarset = toolbarset;
// XXX Do not select the folder until the window displays or the threadpane
// will be at minimum size. We used to have
// gFolderDisplay.ensureRowIsVisible use settimeout itself to defer that
// calculation, but that was ugly. Also, in theory we will open the window
// faster if we let the event loop start doing things sooner.
if (startMsgHdr)
window.setTimeout(loadStartMsgHdr, 0, startMsgHdr);
else
window.setTimeout(loadStartFolder, 0, startFolderURI);
}
function HandleAppCommandEvent(evt)
{
evt.stopPropagation();
switch (evt.command) {
case "Back":
goDoCommand('cmd_goBack');
break;
case "Forward":
goDoCommand('cmd_goForward');
break;
case "Stop":
msgWindow.StopUrls();
break;
case "Search":
goDoCommand('cmd_search');
break;
case "Bookmarks":
toAddressBook();
break;
case "Home":
case "Reload":
default:
break;
}
}
/**
* Look for another 3-pane window.
*/
function FindOther3PaneWindow()
{
// XXX We'd like to use getZOrderDOMWindowEnumerator here, but it doesn't work
// on Linux
let enumerator = Services.wm.getEnumerator("mail:3pane");
while (enumerator.hasMoreElements()) {
let win = enumerator.getNext();
if (win != window)
return win;
}
return null;
}
/**
* Called by messenger.xul:onunload, the 3-pane window inside of tabs window.
* It's being unloaded! Right now!
*/
function OnUnloadMessenger()
{
Services.obs.notifyObservers(window, "mail-unloading-messenger", null);
accountManager.removeIncomingServerListener(gThreePaneIncomingServerListener);
Services.prefs.removeObserver("mail.pane_config.dynamic", MailPrefObserver);
Services.prefs.removeObserver("mail.showCondensedAddresses", MailPrefObserver);
sessionStoreManager.unloadingWindow(window);
TabsInTitlebar.uninit();
ToolbarIconColor.uninit();
LightweightThemeListener.uninit();
let tabmail = document.getElementById("tabmail");
tabmail._teardown();
MailServices.mailSession.RemoveFolderListener(folderListener);
gPhishingDetector.shutdown();
Services.obs.removeObserver(gPluginHandler.pluginCrashed, "plugin-crashed");
// FIX ME - later we will be able to use onload from the overlay
OnUnloadMsgHeaderPane();
UnloadPanes();
OnMailWindowUnload();
try {
mailInstrumentationManager.uninit();
} catch (ex) {logException(ex);}
}
/**
* Called by the session store manager periodically and at shutdown to get
* the state of this window for persistence.
*/
function getWindowStateForSessionPersistence()
{
let tabmail = document.getElementById('tabmail');
let tabsState = tabmail.persistTabs();
return { type: "3pane", tabs: tabsState };
}
/**
* Attempt to restore our tab states. This should only be called by
* |loadStartFolder| or |loadStartMsgHdr|.
*
* @param aDontRestoreFirstTab If this is true, the first tab will not be
* restored, and will continue to retain focus at
* the end. This is needed if the window was opened
* with a folder or a message as an argument.
*
* @return true if the restoration was successful, false otherwise.
*/
function atStartupRestoreTabs(aDontRestoreFirstTab) {
let state = sessionStoreManager.loadingWindow(window);
if (state) {
let tabsState = state.tabs;
let tabmail = document.getElementById("tabmail");
tabmail.restoreTabs(tabsState, aDontRestoreFirstTab);
}
// it's now safe to load extra Tabs.
setTimeout(loadExtraTabs, 0);
Services.obs.notifyObservers(window, "mail-tabs-session-restored", null);
return state ? true : false;
}
/**
* Loads and restores tabs upon opening a window by evaluating window.arguments[1].
*
* The type of the object is specified by it's action property. It can be
* either "restore" or "open". "restore" invokes tabmail.restoreTab() for each
* item in the tabs array. While "open" invokes tabmail.openTab() for each item.
*
* In case a tab can't be restored it will fail silently
*
* the object need at least the following properties:
*
* {
* action = "restore" | "open"
* tabs = [];
* }
*
*/
function loadExtraTabs()
{
if (!("arguments" in window) || window.arguments.length < 2)
return;
let tab = window.arguments[1];
if ((!tab) || (typeof tab != "object"))
return;
let tabmail = document.getElementById("tabmail");
// we got no action, so suppose its "legacy" code
if (!("action" in tab)) {
if ("tabType" in tab)
tabmail.openTab(tab.tabType, tab.tabParams);
return;
}
if (!("tabs" in tab))
return;
// this is used if a tab is detached to a new window.
if (tab.action == "restore") {
for (let i = 0; i < tab.tabs.length; i++)
tabmail.restoreTab(tab.tabs[i]);
// we currently do not support opening in background or opening a
// special position. So select the last tab opened.
tabmail.switchToTab(tabmail.tabInfo[tabmail.tabInfo.length-1])
return;
}
if (tab.action == "open") {
for (let i = 0; i < tab.tabs.length; i++)
if("tabType" in tabs.tab[i])
tabmail.openTab(tabs.tab[i].tabType,tabs.tab[i].tabParams);
return;
}
}
/**
* Loads the given message header at window open. Exactly one out of this and
* |loadStartFolder| should be called.
*
* @param aStartMsgHdr The message header to load at window open
*/
function loadStartMsgHdr(aStartMsgHdr)
{
// We'll just clobber the default tab
atStartupRestoreTabs(true);
MsgDisplayMessageInFolderTab(aStartMsgHdr);
}
function loadStartFolder(initialUri)
{
var defaultServer = null;
var startFolder;
var isLoginAtStartUpEnabled = false;
// If a URI was explicitly specified, we'll just clobber the default tab
let loadFolder = !atStartupRestoreTabs(!!initialUri);
if (initialUri)
loadFolder = true;
//First get default account
try
{
if(initialUri)
startFolder = MailUtils.getFolderForURI(initialUri);
else
{
try {
var defaultAccount = accountManager.defaultAccount;
} catch (x) {
return; // exception caused by no default account, ignore it.
}
defaultServer = defaultAccount.incomingServer;
var rootMsgFolder = defaultServer.rootMsgFolder;
startFolder = rootMsgFolder;
// Enable check new mail once by turning checkmail pref 'on' to bring
// all users to one plane. This allows all users to go to Inbox. User can
// always go to server settings panel and turn off "Check for new mail at startup"
if (!Services.prefs.getBoolPref(kMailCheckOncePrefName))
{
Services.prefs.setBoolPref(kMailCheckOncePrefName, true);
defaultServer.loginAtStartUp = true;
}
// Get the user pref to see if the login at startup is enabled for default account
isLoginAtStartUpEnabled = defaultServer.loginAtStartUp;
// Get Inbox only if login at startup is enabled.
if (isLoginAtStartUpEnabled)
{
//now find Inbox
var outNumFolders = new Object();
const kInboxFlag = Components.interfaces.nsMsgFolderFlags.Inbox;
var inboxFolder = rootMsgFolder.getFolderWithFlags(kInboxFlag);
if (!inboxFolder) return;
startFolder = inboxFolder;
}
}
// it is possible we were given an initial uri and we need to subscribe or try to add
// the folder. i.e. the user just clicked on a news folder they aren't subscribed to from a browser
// the news url comes in here.
// Perform biff on the server to check for new mail, except for imap
// or a pop3 account that is deferred or deferred to,
// or the case where initialUri is non-null (non-startup)
if (!initialUri && isLoginAtStartUpEnabled
&& !defaultServer.isDeferredTo &&
defaultServer.rootFolder == defaultServer.rootMsgFolder)
defaultServer.performBiff(msgWindow);
if (loadFolder) {
try {
gFolderTreeView.selectFolder(startFolder);
} catch(ex) {
// This means we tried to select a folder that isn't in the current
// view. Just select the first one in the view then.
if (gFolderTreeView._rowMap.length)
gFolderTreeView.selectFolder(gFolderTreeView._rowMap[0]._folder);
}
}
}
catch(ex)
{
// this is the case where we're trying to auto-subscribe to a folder.
if (initialUri && !startFolder.parent)
{
// hack to force display of thread pane.
ShowingThreadPane();
messenger.loadURL(window, initialUri);
return;
}
Components.utils.reportError(ex);
}
MsgGetMessagesForAllServers(defaultServer);
if (MailOfflineMgr.isOnline()) {
// Check if we shut down offline, and restarted online, in which case
// we may have offline events to playback. Since this is not a pref
// the user should set, it's not in mailnews.js, so we need a try catch.
let playbackOfflineEvents = false;
try {
playbackOfflineEvents = Services.prefs.getBoolPref("mailnews.playback_offline");
}
catch(ex) {}
if (playbackOfflineEvents)
{
Services.prefs.setBoolPref("mailnews.playback_offline", false);
MailOfflineMgr.offlineManager.goOnline(false, true, msgWindow);
}
// If appropriate, send unsent messages. This may end up prompting the user,
// so we need to get it out of the flow of the normal load sequence.
setTimeout(function checkUnsent() {
if (MailOfflineMgr.shouldSendUnsentMessages())
SendUnsentMessages();
}, 0);
}
}
function AddToSession()
{
var nsIFolderListener = Components.interfaces.nsIFolderListener;
var notifyFlags = nsIFolderListener.intPropertyChanged | nsIFolderListener.event;
MailServices.mailSession.AddFolderListener(folderListener, notifyFlags);
}
function InitPanes()
{
gFolderTreeView.load(document.getElementById("folderTree"),
"folderTree.json");
var folderTree = document.getElementById("folderTree");
folderTree.addEventListener("click",FolderPaneOnClick,true);
folderTree.addEventListener("mousedown",TreeOnMouseDown,true);
var threadTree = document.getElementById("threadTree");
threadTree.addEventListener("click",ThreadTreeOnClick,true);
OnLoadThreadPane();
SetupCommandUpdateHandlers();
}
function UnloadPanes()
{
var threadTree = document.getElementById("threadTree");
threadTree.removeEventListener("click",ThreadTreeOnClick,true);
var folderTree = document.getElementById("folderTree");
folderTree.removeEventListener("click",FolderPaneOnClick,true);
folderTree.removeEventListener("mousedown",TreeOnMouseDown,true);
gFolderTreeView.unload("folderTree.json");
UnloadCommandUpdateHandlers();
}
function OnLoadThreadPane()
{
// Use an observer to watch the columns element so that we get a notification
// whenever attributes on the columns change.
let observer = new MutationObserver(function handleMutations(mutations) {
gFolderDisplay.hintColumnsChanged();
});
observer.observe(document.getElementById("threadCols"), {
attributes: true,
subtree: true,
attributeFilter: ["hidden", "ordinal"]
});
}
/* Functions for accessing particular parts of the window*/
function GetMessagePane()
{
if (!gMessagePane)
gMessagePane = document.getElementById("messagepanebox");
return gMessagePane;
}
function GetMessagePaneWrapper()
{
if (!gMessagePaneWrapper)
gMessagePaneWrapper = document.getElementById("messagepaneboxwrapper");
return gMessagePaneWrapper;
}
function GetMessagePaneFrame()
{
// We must use the message pane element directly here, as other tabs can
// have browser elements as well (which could be set to content-primary,
// which would confuse things with a window.content return).
return document.getElementById("messagepane").contentWindow;
}
function getMailToolbox()
{
return document.getElementById("mail-toolbox");
}
function FindInSidebar(currentWindow, id)
{
var item = currentWindow.document.getElementById(id);
if (item)
return item;
for (var i = 0; i < currentWindow.frames.length; ++i)
{
var frameItem = FindInSidebar(currentWindow.frames[i], id);
if (frameItem)
return frameItem;
}
return null;
}
function GetThreadAndMessagePaneSplitter()
{
if (!gThreadAndMessagePaneSplitter)
gThreadAndMessagePaneSplitter = document.getElementById('threadpane-splitter');
return gThreadAndMessagePaneSplitter;
}
function IsMessagePaneCollapsed()
{
return document.getElementById("threadpane-splitter")
.getAttribute("state") == "collapsed";
}
function ClearThreadPaneSelection()
{
gFolderDisplay.clearSelection();
}
function ClearMessagePane()
{
// hide the message header view AND the message pane...
HideMessageHeaderPane();
gMessageNotificationBar.clearMsgNotifications();
ClearPendingReadTimer();
try {
// This can fail because cloning imap URI's can fail if the username
// has been cleared by docshell/base/nsDefaultURIFixup.cpp.
let messagePane = GetMessagePaneFrame();
// If we don't do this check, no one else does and we do a non-trivial
// amount of work. So do the check.
if (messagePane.location.href != "about:blank")
messagePane.location.href = "about:blank";
} catch(ex) {
logException(ex, false, "error clearing message pane");
}
}
/**
* When right-clicks happen, we do not want to corrupt the underlying
* selection. The right-click is a transient selection. So, unless the
* user is right-clicking on the current selection, we create a new
* selection object (thanks to JSTreeSelection) and set that as the
* current/transient selection.
*
* It is up you to call RestoreSelectionWithoutContentLoad to clean up when we
* are done.
*
* @param aSingleSelect Should the selection we create be a single selection?
* This is relevant if the row being clicked on is already part of the
* selection. If it is part of the selection and !aSingleSelect, then we
* leave the selection as is. If it is part of the selection and
* aSingleSelect then we create a transient single-row selection.
*/
function ChangeSelectionWithoutContentLoad(event, tree, aSingleSelect)
{
var treeBoxObj = tree.treeBoxObject;
if (!treeBoxObj) {
event.stopPropagation();
return;
}
var treeSelection = treeBoxObj.view.selection;
var row = treeBoxObj.getRowAt(event.clientX, event.clientY);
// Only do something if:
// - the row is valid
// - it's not already selected (or we want a single selection)
if (row >= 0 &&
(aSingleSelect || !treeSelection.isSelected(row))) {
// Check if the row is exactly the existing selection. In that case
// there is no need to create a bogus selection.
if (treeSelection.count == 1) {
let minObj = {};
treeSelection.getRangeAt(0, minObj, {});
if (minObj.value == row) {
event.stopPropagation();
return;
}
}
let transientSelection = new JSTreeSelection(treeBoxObj);
transientSelection.logAdjustSelectionForReplay();
gRightMouseButtonSavedSelection = {
view: treeBoxObj.view,
realSelection: treeSelection,
transientSelection: transientSelection
};
var saveCurrentIndex = treeSelection.currentIndex;
// tell it to log calls to adjustSelection
// attach it to the view
treeBoxObj.view.selection = transientSelection;
// Don't generate any selection events! (we never set this to false, because
// that would generate an event, and we never need one of those from this
// selection object.
transientSelection.selectEventsSuppressed = true;
transientSelection.select(row);
transientSelection.currentIndex = saveCurrentIndex;
treeBoxObj.ensureRowIsVisible(row);
}
event.stopPropagation();
}
function TreeOnMouseDown(event)
{
// Detect right mouse click and change the highlight to the row
// where the click happened without loading the message headers in
// the Folder or Thread Pane.
// Same for middle click, which will open the folder/message in a tab.
if (event.button == 2 || event.button == 1)
{
// We want a single selection if this is a middle-click (button 1)
ChangeSelectionWithoutContentLoad(event, event.target.parentNode,
event.button == 1);
}
}
function FolderPaneContextMenuNewTab(event)
{
var bgLoad = Services.prefs.getBoolPref("mail.tabs.loadInBackground");
if (event.shiftKey)
bgLoad = !bgLoad;
MsgOpenNewTabForFolder(bgLoad);
}
function FolderPaneOnClick(event)
{
var folderTree = document.getElementById("folderTree");
// Middle click on a folder opens the folder in a tab
if (event.button == 1 && event.originalTarget.localName != "slider" &&
event.originalTarget.localName != "scrollbarbutton")
{
FolderPaneContextMenuNewTab(event);
RestoreSelectionWithoutContentLoad(folderTree);
}
else if (event.button == 0)
{
var row = {};
var col = {};
var elt = {};
folderTree.treeBoxObject.getCellAt(event.clientX, event.clientY, row, col, elt);
if (row.value == -1) {
if (event.originalTarget.localName == "treecol")
{
// clicking on the name column in the folder pane should not sort
event.stopPropagation();
}
}
else if ((event.originalTarget.localName == "slider") ||
(event.originalTarget.localName == "scrollbarbutton")) {
event.stopPropagation();
}
}
}
function OpenMessageInNewTab(event)
{
if (!gFolderDisplay.selectedMessage)
return;
var bgLoad = Services.prefs.getBoolPref("mail.tabs.loadInBackground");
if (event.shiftKey)
bgLoad = !bgLoad;
document.getElementById("tabmail").openTab("message",
{msgHdr: gFolderDisplay.selectedMessage,
viewWrapperToClone: gFolderDisplay.view,
background: bgLoad});
}
function OpenContainingFolder()
{
if (!gFolderDisplay.selectedMessage)
return;
MailUtils.displayMessageInFolderTab(gFolderDisplay.selectedMessage);
}
function ThreadTreeOnClick(event)
{
var threadTree = document.getElementById("threadTree");
// Middle click on a message opens the message in a tab
if (event.button == 1 && event.originalTarget.localName != "slider" &&
event.originalTarget.localName != "scrollbarbutton")
{
OpenMessageInNewTab(event);
RestoreSelectionWithoutContentLoad(threadTree);
}
}
function GetSelectedMsgFolders()
{
return gFolderTreeView.getSelectedFolders();
}
function SelectFolder(folderUri)
{
gFolderTreeView.selectFolder(MailUtils.getFolderForURI(folderUri));
}
function ReloadMessage()
{
if (!gFolderDisplay.selectedMessage)
return;
let view = gFolderDisplay.view.dbView;
if (view)
view.reloadMessage();
}
// Some of the per account junk mail settings have been
// converted to global prefs. Let's try to migrate some
// of those settings from the default account.
function MigrateJunkMailSettings()
{
var junkMailSettingsVersion = Services.prefs.getIntPref("mail.spam.version");
if (!junkMailSettingsVersion)
{
// Get the default account, check to see if we have values for our
// globally migrated prefs.
var defaultAccount;
try {
defaultAccount = accountManager.defaultAccount;
} catch (ex) {}
if (defaultAccount && defaultAccount.incomingServer)
{
// we only care about
var prefix = "mail.server." + defaultAccount.incomingServer.key + ".";
if (Services.prefs.prefHasUserValue(prefix + "manualMark"))
{
Services.prefs.setBoolPref("mail.spam.manualMark",
Services.prefs.getBoolPref(prefix + "manualMark"));
}
if (Services.prefs.prefHasUserValue(prefix + "manualMarkMode"))
{
Services.prefs.setIntPref("mail.spam.manualMarkMode",
Services.prefs.getIntPref(prefix + "manualMarkMode"));
}
if (Services.prefs.prefHasUserValue(prefix + "spamLoggingEnabled"))
{
Services.prefs.setBoolPref("mail.spam.logging.enabled",
Services.prefs.getBoolPref(prefix + "spamLoggingEnabled"));
}
if (Services.prefs.prefHasUserValue(prefix + "markAsReadOnSpam"))
{
Services.prefs.setBoolPref("mail.spam.markAsReadOnSpam",
Services.prefs.getBoolPref(prefix + "markAsReadOnSpam"));
}
}
// bump the version so we don't bother doing this again.
Services.prefs.setIntPref("mail.spam.version", 1);
}
}
// The first time a user runs a build that supports folder views, pre-populate the favorite folders list
// with the existing INBOX folders.
function MigrateFolderViews()
{
var folderViewsVersion = Services.prefs.getIntPref("mail.folder.views.version");
if (!folderViewsVersion)
{
var servers = accountManager.allServers;
var server;
var inbox;
for (var index = 0; index < servers.length; index++)
{
server = servers.queryElementAt(index, Components.interfaces.nsIMsgIncomingServer);
if (server)
{
inbox = GetInboxFolder(server);
if (inbox)
inbox.setFlag(Components.interfaces.nsMsgFolderFlags.Favorite);
}
}
Services.prefs.setIntPref("mail.folder.views.version", 1);
}
}
// Thunderbird has been storing old attachment download meta data in downloads.rdf
// even though there was no way to show or clean up this data. Now that we are using
// the new download manager in toolkit, we don't want to present this old data.
// To migrate to the new download manager, remove downloads.rdf.
function MigrateAttachmentDownloadStore()
{
var attachmentStoreVersion = Services.prefs.getIntPref("mail.attachment.store.version");
if (!attachmentStoreVersion)
{
var downloadsFile = Services.dirsvc.get("DLoads", Components.interfaces.nsIFile);
if (downloadsFile && downloadsFile.exists())
downloadsFile.remove(false);
// bump the version so we don't bother doing this again.
Services.prefs.setIntPref("mail.attachment.store.version", 1);
}
}
// Do a one-time migration of the old mailnews.reuse_message_window pref to the
// newer mail.openMessageBehavior. This does the migration only if the old pref
// is defined.
function MigrateOpenMessageBehavior()
{
let openMessageBehaviorVersion = Services.prefs.getIntPref(
"mail.openMessageBehavior.version");
if (!openMessageBehaviorVersion)
{
let reuseMessageWindow;
try {
reuseMessageWindow = Services.prefs.getBoolPref(
"mailnews.reuse_message_window");
}
catch (e) {}
// Don't touch this if it isn't defined
if (reuseMessageWindow === true)
Services.prefs.setIntPref("mail.openMessageBehavior",
MailConsts.OpenMessageBehavior.EXISTING_WINDOW);
else if (reuseMessageWindow === false)
Services.prefs.setIntPref("mail.openMessageBehavior",
MailConsts.OpenMessageBehavior.NEW_TAB);
Services.prefs.setIntPref("mail.openMessageBehavior.version", 1);
}
}
function ThreadPaneOnDragStart(aEvent) {
if (aEvent.originalTarget.localName != "treechildren")
return;
let messageUris = gFolderDisplay.selectedMessageUris;
if (!messageUris)
return;
gFolderDisplay.hintAboutToDeleteMessages();
let messengerBundle = document.getElementById("bundle_messenger");
let noSubjectString = messengerBundle.getString("defaultSaveMessageAsFileName");
if (noSubjectString.endsWith(".eml"))
noSubjectString = noSubjectString.slice(0, -4);
let longSubjectTruncator = messengerBundle.getString("longMsgSubjectTruncator");
// Clip the subject string to 124 chars to avoid problems on Windows,
// see NS_MAX_FILEDESCRIPTOR in m-c/widget/windows/nsDataObj.cpp .
const maxUncutNameLength = 124;
let maxCutNameLength = maxUncutNameLength - longSubjectTruncator.length;
let messages = new Map();
for (let [index, msgUri] of messageUris.entries()) {
let msgService = messenger.messageServiceFromURI(msgUri);
let msgHdr = msgService.messageURIToMsgHdr(msgUri);
let subject = msgHdr.mime2DecodedSubject || "";
if (msgHdr.flags & Components.interfaces.nsMsgMessageFlags.HasRe)
subject = "Re: " + subject;
let uniqueFileName;
// If there is no subject, use a default name.
// If subject needs to be truncated, add a truncation character to indicate it.
if (!subject) {
uniqueFileName = noSubjectString;
} else {
uniqueFileName = (subject.length <= maxUncutNameLength) ?
subject : subject.substr(0, maxCutNameLength) + longSubjectTruncator;
}
let msgFileName = validateFileName(uniqueFileName);
let msgFileNameLowerCase = msgFileName.toLocaleLowerCase();
while (true) {
if (!messages[msgFileNameLowerCase]) {
messages[msgFileNameLowerCase] = 1;
break;
}
else {
let postfix = "-" + messages[msgFileNameLowerCase];
messages[msgFileNameLowerCase]++;
msgFileName = msgFileName + postfix;
msgFileNameLowerCase = msgFileNameLowerCase + postfix;
}
}
msgFileName = msgFileName + ".eml";
let msgUrl = {};
msgService.GetUrlForUri(msgUri, msgUrl, null);
aEvent.dataTransfer.mozSetDataAt("text/x-moz-message", msgUri, index);
aEvent.dataTransfer.mozSetDataAt("text/x-moz-url", msgUrl.value.spec, index);
aEvent.dataTransfer.mozSetDataAt("application/x-moz-file-promise-url",
msgUrl.value.spec + "?fileName=" +
encodeURIComponent(msgFileName), index);
aEvent.dataTransfer.mozSetDataAt("application/x-moz-file-promise",
new messageFlavorDataProvider(), index);
}
aEvent.dataTransfer.effectAllowed = "copyMove";
aEvent.dataTransfer.addElement(aEvent.originalTarget);
}
function messageFlavorDataProvider() {
}
messageFlavorDataProvider.prototype = {
QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsIFlavorDataProvider,
Components.interfaces.nsISupports]),
getFlavorData : function(aTransferable, aFlavor, aData, aDataLen) {
if (aFlavor !== "application/x-moz-file-promise") {
return;
}
let fileUriPrimitive = {};
let dataSize = {};
aTransferable.getTransferData("application/x-moz-file-promise-url",
fileUriPrimitive, dataSize);
let fileUriStr = fileUriPrimitive.value.QueryInterface(Components.interfaces.nsISupportsString);
let fileUri = Services.io.newURI(fileUriStr.data, null, null);
let fileUrl = fileUri.QueryInterface(Components.interfaces.nsIURL);
let fileName = fileUrl.fileName;
let destDirPrimitive = {};
aTransferable.getTransferData("application/x-moz-file-promise-dir",
destDirPrimitive, dataSize);
let destDirectory = destDirPrimitive.value.QueryInterface(Components.interfaces.nsILocalFile);
let file = destDirectory.clone();
file.append(fileName);
let messageUriPrimitive = {};
aTransferable.getTransferData("text/x-moz-message", messageUriPrimitive, dataSize);
let messageUri = messageUriPrimitive.value.QueryInterface(Components.interfaces.nsISupportsString);
messenger.saveAs(messageUri.data, true, null, decodeURIComponent(file.path), true);
}
}
/**
* Returns a new filename that is guaranteed to not be in the Set
* of existing names.
*
* Example use:
* suggestUniqueFileName("testname", ".txt", new Set("testname", "testname1"))
* returns "testname2.txt"
* Does not check file system for existing files.
*
* @param aIdentifier proposed filename
* @param aType extension
* @param aExistingNames a Set of names already in use
*/
function suggestUniqueFileName(aIdentifier, aType, aExistingNames) {
let suffix = 1;
let base = validateFileName(aIdentifier);
let suggestion = base + aType;
while(true) {
if (!aExistingNames.has(suggestion))
break;
suggestion = base + suffix + aType;
suffix++;
}
return suggestion;
}
function ThreadPaneOnDragOver(aEvent) {
let ds = Components.classes["@mozilla.org/widget/dragservice;1"]
.getService(Components.interfaces.nsIDragService)
.getCurrentSession();
ds.canDrop = false;
if (!gFolderDisplay.displayedFolder.canFileMessages)
return;
let dt = aEvent.dataTransfer;
if (Array.indexOf(dt.mozTypesAt(0), "application/x-moz-file") != -1) {
let extFile = dt.mozGetDataAt("application/x-moz-file", 0)
.QueryInterface(Components.interfaces.nsIFile);
if (extFile.isFile()) {
let len = extFile.leafName.length;
if (len > 4 && extFile.leafName.toLowerCase().endsWith(".eml"))
ds.canDrop = true;
}
}
}
function ThreadPaneOnDrop(aEvent) {
let dt = aEvent.dataTransfer;
for (let i = 0; i < dt.mozItemCount; i++) {
let extFile = dt.mozGetDataAt("application/x-moz-file", i)
.QueryInterface(Components.interfaces.nsIFile);
if (extFile.isFile()) {
let len = extFile.leafName.length;
if (len > 4 && extFile.leafName.toLowerCase().endsWith(".eml"))
MailServices.copy.CopyFileMessage(extFile, gFolderDisplay.displayedFolder,
null, false, 1, "", null, msgWindow);
}
}
}
var LightWeightThemeWebInstaller = {
handleEvent: function (event) {
switch (event.type) {
case "InstallBrowserTheme":
case "PreviewBrowserTheme":
case "ResetBrowserThemePreview":
// ignore requests from background tabs
if (event.target.ownerDocument.defaultView.top != content)
return;
}
switch (event.type) {
case "InstallBrowserTheme":
this._installRequest(event);
break;
case "PreviewBrowserTheme":
this._preview(event);
break;
case "ResetBrowserThemePreview":
this._resetPreview(event);
break;
case "pagehide":
this._resetPreview();
break;
}
},
onTabTitleChanged: function (aTab) {
},
onTabSwitched: function (aTab, aOldTab) {
this._resetPreview();
},
get _manager () {
let temp = {};
Components.utils.import("resource://gre/modules/LightweightThemeManager.jsm", temp);
delete this._manager;
return this._manager = temp.LightweightThemeManager;
},
_installRequest: function (event) {
let node = event.target;
let data = this._getThemeFromNode(node);
if (!data)
return;
if (this._isAllowed(node)) {
this._install(data);
return;
}
let messengerBundle = document.getElementById("bundle_messenger");
let buttons = [{
label: messengerBundle.getString("lwthemeInstallRequest.allowButton"),
accessKey: messengerBundle.getString("lwthemeInstallRequest.allowButton.accesskey"),
callback: function () {
LightWeightThemeWebInstaller._install(data);
}
}];
this._removePreviousNotifications();
let message =
messengerBundle.getFormattedString("lwthemeInstallRequest.message",
[node.ownerDocument.location.host]);
let notificationBox = this._getNotificationBox();
let notificationBar =
notificationBox.appendNotification(message, "lwtheme-install-request", "",
notificationBox.PRIORITY_INFO_MEDIUM,
buttons);
notificationBar.persistence = 1;
},
_install: function (newTheme) {
let previousTheme = this._manager.currentTheme;
this._manager.currentTheme = newTheme;
if (this._manager.currentTheme &&
this._manager.currentTheme.id == newTheme.id)
this._postInstallNotification(newTheme, previousTheme);
},
_postInstallNotification: function (newTheme, previousTheme) {
function text(id) {
return document.getElementById("bundle_messenger")
.getString("lwthemePostInstallNotification." + id);
}
let buttons = [{
label: text("undoButton"),
accessKey: text("undoButton.accesskey"),
callback: function () {
LightWeightThemeWebInstaller._manager.forgetUsedTheme(newTheme.id);
LightWeightThemeWebInstaller._manager.currentTheme = previousTheme;
}
}, {
label: text("manageButton"),
accessKey: text("manageButton.accesskey"),
callback: function () {
openAddonsMgr("addons://list/theme");
}
}];
this._removePreviousNotifications();
let notificationBox = this._getNotificationBox();
let notificationBar =
notificationBox.appendNotification(text("message"),
"lwtheme-install-notification", "",
notificationBox.PRIORITY_INFO_MEDIUM,
buttons);
notificationBar.persistence = 1;
notificationBar.timeout = Date.now() + 20000; // 20 seconds
},
_removePreviousNotifications: function () {
let box = this._getNotificationBox();
["lwtheme-install-request",
"lwtheme-install-notification"].forEach(function (value) {
var notification = box.getNotificationWithValue(value);
if (notification)
box.removeNotification(notification);
});
},
_previewWindow: null,
_preview: function (event) {
if (!this._isAllowed(event.target))
return;
let data = this._getThemeFromNode(event.target);
if (!data)
return;
this._resetPreview();
this._previewWindow = event.target.ownerDocument.defaultView;
this._previewWindow.addEventListener("pagehide", this, true);
document.getElementById('tabmail').registerTabMonitor(this);
this._manager.previewTheme(data);
},
_resetPreview: function (event) {
if (!this._previewWindow ||
event && !this._isAllowed(event.target))
return;
this._previewWindow.removeEventListener("pagehide", this, true);
this._previewWindow = null;
document.getElementById('tabmail').unregisterTabMonitor(this);
this._manager.resetPreview();
},
_isAllowed: function (node) {
let uri = node.ownerDocument.documentURIObject;
return Services.perms.testPermission(uri, "install") == Services.perms.ALLOW_ACTION;
},
_getNotificationBox: function () {
// Try and get the notification box for the selected tab.
let browser = document.getElementById('tabmail').getBrowserForSelectedTab();
// The messagepane doesn't have a notification bar yet.
if (browser && browser.parentNode.tagName == "notificationbox")
return browser.parentNode;
// Otherwise, default to the global notificationbox
return document.getElementById("mail-notification-box");
},
_getThemeFromNode: function (node) {
return this._manager.parseTheme(node.getAttribute("data-browsertheme"),
node.baseURI);
}
}
/**
* Initialize and attach the HTML5 context menu to the specified menupopup
* during the onpopupshowing event.
*
* @param menuPopup the menupopup element
* @param event the event responsible for showing the popup
*/
function InitPageMenu(menuPopup, event) {
if (event.target != menuPopup)
return;
PageMenuParent.buildAndAddToPopup(menuPopup.triggerNode, menuPopup);
if (menuPopup.children.length == 0)
event.preventDefault();
}
var TabsInTitlebar = {
init: function () {
#ifdef CAN_DRAW_IN_TITLEBAR
// Don't trust the initial value of the sizemode attribute; wait for the
// resize event.
this._readPref();
Services.prefs.addObserver(this._drawInTitlePref, this, false);
Services.prefs.addObserver(this._autoHidePref, this, false);
this.allowedBy("sizemode", false);
window.addEventListener("resize", function (event) {
if (event.target != window)
return;
TabsInTitlebar.allowedBy("sizemode", true);
}, false);
// We need to update the appearance of the titlebar when the menu changes
// from the active to the inactive state. We can't, however, rely on
// DOMMenuBarInactive, because the menu fires this event and then removes
// the inactive attribute after an event-loop spin.
//
// Because updating the appearance involves sampling the heights and
// margins of various elements, it's important that the layout be more or
// less settled before updating the titlebar. So instead of listening to
// DOMMenuBarActive and DOMMenuBarInactive, we use a MutationObserver to
// watch the "invalid" attribute directly.
let menu = document.getElementById("mail-toolbar-menubar2");
this._menuObserver = new MutationObserver(this._onMenuMutate);
this._menuObserver.observe(menu, {attributes: true});
let sizeMode = document.getElementById("messengerWindow");
this._sizeModeObserver = new MutationObserver(this._onSizeModeMutate);
this._sizeModeObserver.observe(sizeMode, {attributes: true});
this._initialized = true;
#endif
},
allowedBy: function (condition, allow) {
#ifdef CAN_DRAW_IN_TITLEBAR
if (allow) {
if (condition in this._disallowed) {
delete this._disallowed[condition];
this._update(true);
}
} else {
if (!(condition in this._disallowed)) {
this._disallowed[condition] = null;
this._update(true);
}
}
#endif
},
updateAppearance: function updateAppearance(aForce) {
#ifdef CAN_DRAW_IN_TITLEBAR
this._update(aForce);
#endif
},
get enabled() {
return document.documentElement.getAttribute("tabsintitlebar") == "true";
},
#ifdef CAN_DRAW_IN_TITLEBAR
observe: function (subject, topic, data) {
if (topic == "nsPref:changed")
this._readPref();
},
_onMenuMutate: function (aMutations) {
for (let mutation of aMutations) {
if (mutation.attributeName == "inactive" ||
mutation.attributeName == "autohide") {
TabsInTitlebar._update(true);
return;
}
}
},
_onSizeModeMutate: function (aMutations) {
for (let mutation of aMutations) {
if (mutation.attributeName == "sizemode") {
TabsInTitlebar._update(true);
return;
}
}
},
_initialized: false,
_disallowed: {},
_drawInTitlePref: "mail.tabs.drawInTitlebar",
_autoHidePref: "mail.tabs.autoHide",
_lastSizeMode: null,
_readPref: function () {
// check is only true when drawInTitlebar=true and autoHide=false
let check = Services.prefs.getBoolPref(this._drawInTitlePref) &&
!Services.prefs.getBoolPref(this._autoHidePref);
this.allowedBy("pref", check);
},
_update: function (aForce=false) {
function $(id) { return document.getElementById(id); }
function rect(ele) { return ele.getBoundingClientRect(); }
function verticalMargins(cstyle) { return parseFloat(cstyle.marginBottom) + parseFloat(cstyle.marginTop); }
if (!this._initialized || window.fullScreen)
return;
let allowed = true;
if (!aForce) {
// _update is called on resize events, because the window is not ready
// after sizemode events. However, we only care about the event when the
// sizemode is different from the last time we updated the appearance of
// the tabs in the titlebar.
let sizemode = document.documentElement.getAttribute("sizemode");
if (this._lastSizeMode == sizemode) {
return;
}
this._lastSizeMode = sizemode;
}
for (let something in this._disallowed) {
allowed = false;
break;
}
let titlebar = $("titlebar");
let titlebarContent = $("titlebar-content");
let menubar = $("mail-toolbar-menubar2");
if (allowed) {
// We set the tabsintitlebar attribute first so that our CSS for
// tabsintitlebar manifests before we do our measurements.
document.documentElement.setAttribute("tabsintitlebar", "true");
updateTitlebarDisplay();
// Try to avoid reflows in this code by calculating dimensions first and
// then later set the properties affecting layout together in a batch.
// Get the full height of the tabs toolbar:
let tabsToolbar = $("tabs-toolbar");
let fullTabsHeight = rect(tabsToolbar).height;
let gNavToolbox = $("navigation-toolbox");
// Buttons first:
let captionButtonsBoxWidth = rect($("titlebar-buttonbox")).width;
#ifdef XP_MACOSX
let secondaryButtonWidth = rect($("titlebar-fullscreen-button")).width;
#endif
// Get the height and margins separately for the menubar
let menuHeight = rect(menubar).height;
let menuStyles = window.getComputedStyle(menubar);
let fullMenuHeight = verticalMargins(menuStyles) + menuHeight;
let tabsStyles = window.getComputedStyle(tabsToolbar);
fullTabsHeight += verticalMargins(tabsStyles);
// If the #tabmail overlaps the tabbar using negative margins, we need to
// take those into account so we don't overlap it
let tabmailMarginTop = parseFloat(window.getComputedStyle($("tabmail")).marginTop);
tabmailMarginTop = Math.min(tabmailMarginTop, 0);
// And get the height of what's in the titlebar:
let titlebarContentHeight = rect(titlebarContent).height;
// Begin setting CSS properties which will cause a reflow
// If the menubar is around (menuHeight is non-zero), try to adjust
// its full height (i.e. including margins) to match the titlebar,
// by changing the menubar's bottom padding
if (menuHeight) {
// Calculate the difference between the titlebar's height and that of
// the menubar
let menuTitlebarDelta = titlebarContentHeight - fullMenuHeight;
let paddingBottom;
// The titlebar is bigger:
if (menuTitlebarDelta > 0) {
fullMenuHeight += menuTitlebarDelta;
// If there is already padding on the menubar, we need to add that
// to the difference so the total padding is correct:
if ((paddingBottom = menuStyles.paddingBottom)) {
menuTitlebarDelta += parseFloat(paddingBottom);
}
menubar.style.paddingBottom = menuTitlebarDelta + "px";
// The menubar is bigger, but has bottom padding we can remove:
} else if (menuTitlebarDelta < 0 && (paddingBottom = menuStyles.paddingBottom)) {
let existingPadding = parseFloat(paddingBottom);
// menuTitlebarDelta is negative; work out what's left, but don't set
// negative padding:
let desiredPadding = Math.max(0, existingPadding + menuTitlebarDelta);
menubar.style.paddingBottom = desiredPadding + "px";
// We've changed the menu height now:
fullMenuHeight += desiredPadding - existingPadding;
}
}
// Next, we calculate how much we need to stretch the titlebar down to
// go all the way to the bottom of the tab strip, if necessary.
let tabAndMenuHeight = fullTabsHeight + fullMenuHeight;
if (tabAndMenuHeight > titlebarContentHeight) {
// We need to increase the titlebar content's outer height
// (ie including margins) to match the tab and menu height:
let extraMargin = tabAndMenuHeight - titlebarContentHeight;
// We need to reduce the height by the amount of navbar overlap
// (this value is 0 or negative):
extraMargin += tabmailMarginTop;
// On non-OSX, we can just use bottom margin:
#ifndef XP_MACOSX
titlebarContent.style.marginBottom = extraMargin + "px";
#endif
titlebarContentHeight += extraMargin;
} else {
titlebarContent.style.removeProperty("margin-bottom");
}
// Then we bring up the titlebar by the same amount, but we add any
// negative margin:
titlebar.style.marginBottom = "-" + titlebarContentHeight + "px";
// Finally, size the placeholders:
#ifdef XP_MACOSX
this._sizePlaceholder("fullscreen-button", secondaryButtonWidth);
#endif
this._sizePlaceholder("caption-buttons", captionButtonsBoxWidth);
if (!this._draghandles) {
this._draghandles = {};
let tmp = {};
Components.utils.import("resource://gre/modules/WindowDraggingUtils.jsm", tmp);
let mouseDownCheck = function () {
return !this._dragBindingAlive && TabsInTitlebar.enabled;
};
this._draghandles.tabsToolbar = new tmp.WindowDraggingElement(tabsToolbar);
this._draghandles.tabsToolbar.mouseDownCheck = mouseDownCheck;
this._draghandles.navToolbox = new tmp.WindowDraggingElement(gNavToolbox);
this._draghandles.navToolbox.mouseDownCheck = mouseDownCheck;
}
} else {
document.documentElement.removeAttribute("tabsintitlebar");
updateTitlebarDisplay();
// Reset the margins and padding that might have been modified:
titlebarContent.style.marginTop = "";
titlebarContent.style.marginBottom = "";
titlebar.style.marginBottom = "";
menubar.style.paddingBottom = "";
}
ToolbarIconColor.inferFromText();
},
_sizePlaceholder: function (type, width) {
Array.forEach(document.querySelectorAll(".titlebar-placeholder[type='"+ type +"']"),
function (node) { node.width = width; });
},
#endif
uninit: function () {
#ifdef CAN_DRAW_IN_TITLEBAR
this._initialized = false;
Services.prefs.removeObserver(this._drawInTitlePref, this);
Services.prefs.removeObserver(this._autoHidePref, this);
this._menuObserver.disconnect();
#endif
}
};
#ifdef CAN_DRAW_IN_TITLEBAR
function updateTitlebarDisplay() {
#ifdef XP_MACOSX
// OS X and the other platforms differ enough to necessitate this kind of
// special-casing. Like the other platforms where we CAN_DRAW_IN_TITLEBAR,
// we draw in the OS X titlebar when putting the tabs up there. However, OS X
// also draws in the titlebar when a lightweight theme is applied, regardless
// of whether or not the tabs are drawn in the titlebar.
if (TabsInTitlebar.enabled) {
document.documentElement.setAttribute("chromemargin-nonlwtheme", "0,2,2,2");
document.documentElement.setAttribute("chromemargin", "0,2,2,2");
document.documentElement.setAttribute("tabsintitlebar", "true");
} else {
// We set chromemargin-nonlwtheme to "" instead of removing it as a way of
// making sure that LightweightThemeConsumer doesn't take it upon itself to
// detect this value again if and when we do a lwtheme state change.
document.documentElement.setAttribute("chromemargin-nonlwtheme", "");
let hasLWTheme = document.documentElement.hasAttribute("lwtheme");
if (hasLWTheme) {
document.documentElement.setAttribute("chromemargin", "0,2,2,2");
} else {
document.documentElement.removeAttribute("chromemargin");
}
}
#else
document.getElementById("titlebar").hidden = !TabsInTitlebar.enabled;
if (TabsInTitlebar.enabled)
document.documentElement.setAttribute("chromemargin", "0,2,2,2");
else
document.documentElement.removeAttribute("chromemargin");
#endif
}
#endif
/* Draw */
function onTitlebarMaxClick() {
if (window.windowState == window.STATE_MAXIMIZED)
window.restore();
else
window.maximize();
}
|