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 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <tools/debug.hxx>
#include <svtools/brwbox.hxx>
#include "datwin.hxx"
#include <svtools/colorcfg.hxx>
#include <vcl/salgtype.hxx>
#include <tools/multisel.hxx>
#include <algorithm>
using namespace ::com::sun::star::datatransfer;
#define getDataWindow() ((BrowserDataWin*)pDataWin)
//===================================================================
DBG_NAMEEX(BrowseBox)
//===================================================================
extern const char* BrowseBoxCheckInvariants( const void * pVoid );
//===================================================================
void BrowseBox::StartDrag( sal_Int8 /* _nAction */, const Point& /* _rPosPixel */ )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// not interested in this event
}
//===================================================================
sal_Int8 BrowseBox::AcceptDrop( const AcceptDropEvent& _rEvt )
{
BrowserDataWin* pDataWindow = static_cast<BrowserDataWin*>(pDataWin);
AcceptDropEvent aTransformed( _rEvt );
aTransformed.maPosPixel = pDataWindow->ScreenToOutputPixel( OutputToScreenPixel( _rEvt.maPosPixel ) );
return pDataWindow->AcceptDrop( aTransformed );
}
//===================================================================
sal_Int8 BrowseBox::ExecuteDrop( const ExecuteDropEvent& _rEvt )
{
BrowserDataWin* pDataWindow = static_cast<BrowserDataWin*>(pDataWin);
ExecuteDropEvent aTransformed( _rEvt );
aTransformed.maPosPixel = pDataWindow->ScreenToOutputPixel( OutputToScreenPixel( _rEvt.maPosPixel ) );
return pDataWindow->ExecuteDrop( aTransformed );
}
//===================================================================
sal_Int8 BrowseBox::AcceptDrop( const BrowserAcceptDropEvent& )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// not interested in this event
return DND_ACTION_NONE;
}
//===================================================================
sal_Int8 BrowseBox::ExecuteDrop( const BrowserExecuteDropEvent& )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// not interested in this event
return DND_ACTION_NONE;
}
//===================================================================
void* BrowseBox::implGetDataFlavors() const
{
if (static_cast<BrowserDataWin*>(pDataWin)->bCallingDropCallback)
return &static_cast<BrowserDataWin*>(pDataWin)->GetDataFlavorExVector();
return &GetDataFlavorExVector();
}
//===================================================================
sal_Bool BrowseBox::IsDropFormatSupported( SotFormatStringId _nFormat )
{
if ( static_cast< BrowserDataWin* >( pDataWin )->bCallingDropCallback )
return static_cast< BrowserDataWin* >( pDataWin )->IsDropFormatSupported( _nFormat );
return DropTargetHelper::IsDropFormatSupported( _nFormat );
}
//===================================================================
sal_Bool BrowseBox::IsDropFormatSupported( SotFormatStringId _nFormat ) const
{
return const_cast< BrowseBox* >( this )->IsDropFormatSupported( _nFormat );
}
//===================================================================
sal_Bool BrowseBox::IsDropFormatSupported( const DataFlavor& _rFlavor )
{
if ( static_cast< BrowserDataWin* >( pDataWin )->bCallingDropCallback )
return static_cast< BrowserDataWin* >( pDataWin )->IsDropFormatSupported( _rFlavor );
return DropTargetHelper::IsDropFormatSupported( _rFlavor );
}
//===================================================================
sal_Bool BrowseBox::IsDropFormatSupported( const DataFlavor& _rFlavor ) const
{
return const_cast< BrowseBox* >( this )->IsDropFormatSupported( _rFlavor );
}
//===================================================================
void BrowseBox::Command( const CommandEvent& rEvt )
{
if ( !getDataWindow()->bInCommand )
Control::Command( rEvt );
}
//===================================================================
void BrowseBox::StateChanged( StateChangedType nStateChange )
{
Control::StateChanged( nStateChange );
if ( STATE_CHANGE_MIRRORING == nStateChange )
{
getDataWindow()->EnableRTL( IsRTLEnabled() );
HeaderBar* pHeaderBar = getDataWindow()->pHeaderBar;
if ( pHeaderBar )
pHeaderBar->EnableRTL( IsRTLEnabled() );
aHScroll.EnableRTL( IsRTLEnabled() );
if( pVScroll )
pVScroll->EnableRTL( IsRTLEnabled() );
Resize();
}
else if ( STATE_CHANGE_INITSHOW == nStateChange )
{
bBootstrapped = sal_True; // muss zuerst gesetzt werden!
Resize();
if ( bMultiSelection )
uRow.pSel->SetTotalRange( Range( 0, nRowCount - 1 ) );
if ( nRowCount == 0 )
nCurRow = BROWSER_ENDOFSELECTION;
else if ( nCurRow == BROWSER_ENDOFSELECTION )
nCurRow = 0;
if ( HasFocus() )
{
bSelectionIsVisible = sal_True;
bHasFocus = sal_True;
}
UpdateScrollbars();
AutoSizeLastColumn();
CursorMoved();
}
else if (STATE_CHANGE_ZOOM == nStateChange)
{
pDataWin->SetZoom(GetZoom());
HeaderBar* pHeaderBar = getDataWindow()->pHeaderBar;
if (pHeaderBar)
pHeaderBar->SetZoom(GetZoom());
// let the cols calc their new widths and adjust the header bar
for ( size_t nPos = 0; nPos < pCols->size(); ++nPos )
{
(*pCols)[ nPos ]->ZoomChanged(GetZoom());
if ( pHeaderBar )
pHeaderBar->SetItemSize( (*pCols)[ nPos ]->GetId(), (*pCols)[ nPos ]->Width() );
}
// all our controls have to be repositioned
Resize();
}
else if (STATE_CHANGE_ENABLE == nStateChange)
{
// do we have a handle column?
sal_Bool bHandleCol = !pCols->empty() && (0 == (*pCols)[ 0 ]->GetId());
// do we have a header bar
sal_Bool bHeaderBar = (NULL != static_cast<BrowserDataWin&>(GetDataWindow()).pHeaderBar);
if ( nTitleLines
&& ( !bHeaderBar
|| bHandleCol
)
)
// we draw the text in our header bar in a color dependent on the enabled state. So if this state changed
// -> redraw
Invalidate(Rectangle(Point(0, 0), Size(GetOutputSizePixel().Width(), GetTitleHeight() - 1)));
}
}
//===================================================================
void BrowseBox::Select()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
void BrowseBox::DoubleClick( const BrowserMouseEvent & )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
long BrowseBox::QueryMinimumRowHeight()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
return CalcZoom( 5 );
}
//-------------------------------------------------------------------
void BrowseBox::ImplStartTracking()
{
DBG_CHKTHIS( BrowseBox, BrowseBoxCheckInvariants );
}
//-------------------------------------------------------------------
void BrowseBox::ImplTracking()
{
DBG_CHKTHIS( BrowseBox, BrowseBoxCheckInvariants );
}
//-------------------------------------------------------------------
void BrowseBox::ImplEndTracking()
{
DBG_CHKTHIS( BrowseBox, BrowseBoxCheckInvariants );
}
//-------------------------------------------------------------------
void BrowseBox::RowHeightChanged()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
long BrowseBox::QueryColumnResize( sal_uInt16, long nWidth )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
return nWidth;
}
//-------------------------------------------------------------------
void BrowseBox::ColumnResized( sal_uInt16 )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
void BrowseBox::ColumnMoved( sal_uInt16 )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
void BrowseBox::StartScroll()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
DoHideCursor( "StartScroll" );
}
//-------------------------------------------------------------------
void BrowseBox::EndScroll()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
UpdateScrollbars();
AutoSizeLastColumn();
DoShowCursor( "EndScroll" );
}
//-------------------------------------------------------------------
#ifdef _MSC_VER
#pragma optimize( "", off )
#endif
void BrowseBox::ToggleSelection( sal_Bool bForce )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// selection highlight-toggling allowed?
if ( bHideSelect )
return;
if ( !bForce &&
( bNotToggleSel || !IsUpdateMode() || !bSelectionIsVisible ) )
return;
// only highlight painted areas!
bNotToggleSel = sal_True;
if ( sal_False && !getDataWindow()->bInPaint )
pDataWin->Update();
// accumulate areas of rows to highlight
RectangleList aHighlightList;
long nLastRowInRect = 0; // fuer den CFront
// Handle-Column nicht highlighten
BrowserColumn *pFirstCol = pCols->empty() ? NULL : (*pCols)[ 0 ];
long nOfsX = (!pFirstCol || pFirstCol->GetId()) ? 0 : pFirstCol->Width();
// accumulate old row selection
long nBottomRow = nTopRow +
pDataWin->GetOutputSizePixel().Height() / GetDataRowHeight();
if ( nBottomRow > GetRowCount() && GetRowCount() )
nBottomRow = GetRowCount();
for ( long nRow = bMultiSelection ? uRow.pSel->FirstSelected() : uRow.nSel;
nRow != BROWSER_ENDOFSELECTION && nRow <= nBottomRow;
nRow = bMultiSelection ? uRow.pSel->NextSelected() : BROWSER_ENDOFSELECTION )
{
if ( nRow < nTopRow )
continue;
Rectangle aAddRect(
Point( nOfsX, (nRow-nTopRow)*GetDataRowHeight() ),
Size( pDataWin->GetSizePixel().Width(), GetDataRowHeight() ) );
if ( aHighlightList.size() && nLastRowInRect == ( nRow - 1 ) )
aHighlightList[ 0 ]->Union( aAddRect );
else
aHighlightList.insert( aHighlightList.begin(), new Rectangle( aAddRect ) );
nLastRowInRect = nRow;
}
// unhighlight the old selection (if any)
for ( size_t i = aHighlightList.size(); i > 0; )
{
Rectangle *pRect = aHighlightList[ --i ];
pDataWin->Invalidate( *pRect );
delete pRect;
}
aHighlightList.clear();
// unhighlight old column selection (if any)
for ( long nColId = pColSel ? pColSel->FirstSelected() : BROWSER_ENDOFSELECTION;
nColId != BROWSER_ENDOFSELECTION;
nColId = pColSel->NextSelected() )
{
Rectangle aRect( GetFieldRectPixel(nCurRow,
(*pCols)[ nColId ]->GetId(),
sal_False ) );
aRect.Left() -= MIN_COLUMNWIDTH;
aRect.Right() += MIN_COLUMNWIDTH;
aRect.Top() = 0;
aRect.Bottom() = pDataWin->GetOutputSizePixel().Height();
pDataWin->Invalidate( aRect );
}
bNotToggleSel = sal_False;
}
#ifdef _MSC_VER
#pragma optimize( "", on )
#endif
//-------------------------------------------------------------------
void BrowseBox::DrawCursor()
{
sal_Bool bReallyHide = sal_False;
if ( SMART_CURSOR_HIDE == bHideCursor )
{
if ( !GetSelectRowCount() && !GetSelectColumnCount() )
bReallyHide = sal_True;
}
else if ( HARD_CURSOR_HIDE == bHideCursor )
{
bReallyHide = sal_True;
}
bReallyHide |= !bSelectionIsVisible || !IsUpdateMode() || bScrolling || nCurRow < 0;
if (PaintCursorIfHiddenOnce())
bReallyHide |= ( GetCursorHideCount() > 1 );
else
bReallyHide |= ( GetCursorHideCount() > 0 );
// keine Cursor auf Handle-Column
if ( nCurColId == 0 )
nCurColId = GetColumnId(1);
// Cursor-Rechteck berechnen
Rectangle aCursor;
if ( bColumnCursor )
{
aCursor = GetFieldRectPixel( nCurRow, nCurColId, sal_False );
aCursor.Left() -= MIN_COLUMNWIDTH;
aCursor.Right() += 1;
aCursor.Bottom() += 1;
}
else
aCursor = Rectangle(
Point( ( !pCols->empty() && (*pCols)[ 0 ]->GetId() == 0 ) ?
(*pCols)[ 0 ]->Width() : 0,
(nCurRow - nTopRow) * GetDataRowHeight() + 1 ),
Size( pDataWin->GetOutputSizePixel().Width() + 1,
GetDataRowHeight() - 2 ) );
if ( bHLines )
{
if ( !bMultiSelection )
--aCursor.Top();
--aCursor.Bottom();
}
if (m_aCursorColor == COL_TRANSPARENT)
{
// auf diesem Plattformen funktioniert der StarView-Focus richtig
if ( bReallyHide )
((Control*)pDataWin)->HideFocus();
else
((Control*)pDataWin)->ShowFocus( aCursor );
}
else
{
Color rCol = bReallyHide ? pDataWin->GetFillColor() : m_aCursorColor;
Color aOldFillColor = pDataWin->GetFillColor();
Color aOldLineColor = pDataWin->GetLineColor();
pDataWin->SetFillColor();
pDataWin->SetLineColor( rCol );
pDataWin->DrawRect( aCursor );
pDataWin->SetLineColor( aOldLineColor );
pDataWin->SetFillColor( aOldFillColor );
}
}
//-------------------------------------------------------------------
sal_uLong BrowseBox::GetColumnWidth( sal_uInt16 nId ) const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
sal_uInt16 nItemPos = GetColumnPos( nId );
if ( nItemPos >= pCols->size() )
return 0;
return (*pCols)[ nItemPos ]->Width();
}
//-------------------------------------------------------------------
sal_uInt16 BrowseBox::GetColumnId( sal_uInt16 nPos ) const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( nPos >= pCols->size() )
return BROWSER_INVALIDID;
return (*pCols)[ nPos ]->GetId();
}
//-------------------------------------------------------------------
sal_uInt16 BrowseBox::GetColumnPos( sal_uInt16 nId ) const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
for ( sal_uInt16 nPos = 0; nPos < pCols->size(); ++nPos )
if ( (*pCols)[ nPos ]->GetId() == nId )
return nPos;
return BROWSER_INVALIDID;
}
//-------------------------------------------------------------------
sal_Bool BrowseBox::IsFrozen( sal_uInt16 nColumnId ) const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
for ( size_t nPos = 0; nPos < pCols->size(); ++nPos )
if ( (*pCols)[ nPos ]->GetId() == nColumnId )
return (*pCols)[ nPos ]->IsFrozen();
return sal_False;
}
//-------------------------------------------------------------------
void BrowseBox::ExpandRowSelection( const BrowserMouseEvent& rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
DoHideCursor( "ExpandRowSelection" );
// expand the last selection
if ( bMultiSelection )
{
Range aJustifiedRange( aSelRange );
aJustifiedRange.Justify();
sal_Bool bSelectThis = ( bSelect != aJustifiedRange.IsInside( rEvt.GetRow() ) );
if ( aJustifiedRange.IsInside( rEvt.GetRow() ) )
{
// down and up
while ( rEvt.GetRow() < aSelRange.Max() )
{ // ZTC/Mac bug - dont put these statemants together!
SelectRow( aSelRange.Max(), bSelectThis, sal_True );
--aSelRange.Max();
}
while ( rEvt.GetRow() > aSelRange.Max() )
{ // ZTC/Mac bug - dont put these statemants together!
SelectRow( aSelRange.Max(), bSelectThis, sal_True );
++aSelRange.Max();
}
}
else
{
// up and down
sal_Bool bOldSelecting = bSelecting;
bSelecting = sal_True;
while ( rEvt.GetRow() < aSelRange.Max() )
{ // ZTC/Mac bug - dont put these statemants together!
--aSelRange.Max();
if ( !IsRowSelected( aSelRange.Max() ) )
{
SelectRow( aSelRange.Max(), bSelectThis, sal_True );
bSelect = sal_True;
}
}
while ( rEvt.GetRow() > aSelRange.Max() )
{ // ZTC/Mac bug - dont put these statemants together!
++aSelRange.Max();
if ( !IsRowSelected( aSelRange.Max() ) )
{
SelectRow( aSelRange.Max(), bSelectThis, sal_True );
bSelect = sal_True;
}
}
bSelecting = bOldSelecting;
if ( bSelect )
Select();
}
}
else
if ( !bMultiSelection || !IsRowSelected( rEvt.GetRow() ) )
SelectRow( rEvt.GetRow(), sal_True );
GoToRow( rEvt.GetRow(), sal_False );
DoShowCursor( "ExpandRowSelection" );
}
//-------------------------------------------------------------------
void BrowseBox::Resize()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( !bBootstrapped && IsReallyVisible() )
BrowseBox::StateChanged( STATE_CHANGE_INITSHOW );
if ( pCols->empty() )
{
getDataWindow()->bResizeOnPaint = sal_True;
return;
}
getDataWindow()->bResizeOnPaint = sal_False;
// calc the size of the scrollbars
// (we can't ask the scrollbars for their widths cause if we're zoomed they still have to be
// resized - which is done in UpdateScrollbars)
sal_uLong nSBSize = GetSettings().GetStyleSettings().GetScrollBarSize();
if (IsZoom())
nSBSize = (sal_uLong)(nSBSize * (double)GetZoom());
DoHideCursor( "Resize" );
sal_uInt16 nOldVisibleRows = 0;
//fdo#42694, post #i111125# GetDataRowHeight() can be 0
if (GetDataRowHeight())
nOldVisibleRows = (sal_uInt16)(pDataWin->GetOutputSizePixel().Height() / GetDataRowHeight() + 1);
// did we need a horiz. scroll bar oder gibt es eine Control Area?
if ( !getDataWindow()->bNoHScroll &&
( ( pCols->size() - FrozenColCount() ) > 1 ) )
aHScroll.Show();
else
aHScroll.Hide();
// calculate the size of the data window
long nDataHeight = GetOutputSizePixel().Height() - GetTitleHeight();
if ( aHScroll.IsVisible() || ( nControlAreaWidth != USHRT_MAX ) )
nDataHeight -= nSBSize;
long nDataWidth = GetOutputSizePixel().Width();
if ( pVScroll->IsVisible() )
nDataWidth -= nSBSize;
// adjust position and size of data window
pDataWin->SetPosSizePixel(
Point( 0, GetTitleHeight() ),
Size( nDataWidth, nDataHeight ) );
sal_uInt16 nVisibleRows = 0;
if (GetDataRowHeight())
nVisibleRows = (sal_uInt16)(pDataWin->GetOutputSizePixel().Height() / GetDataRowHeight() + 1);
// TopRow ist unveraendert, aber die Anzahl sichtbarer Zeilen hat sich
// geaendert
if ( nVisibleRows != nOldVisibleRows )
VisibleRowsChanged(nTopRow, nVisibleRows);
UpdateScrollbars();
// Control-Area
Rectangle aInvalidArea( GetControlArea() );
aInvalidArea.Right() = GetOutputSizePixel().Width();
aInvalidArea.Left() = 0;
Invalidate( aInvalidArea );
// external header-bar
HeaderBar* pHeaderBar = getDataWindow()->pHeaderBar;
if ( pHeaderBar )
{
// Handle-Column beruecksichtigen
BrowserColumn *pFirstCol = (*pCols)[ 0 ];
long nOfsX = pFirstCol->GetId() ? 0 : pFirstCol->Width();
pHeaderBar->SetPosSizePixel( Point( nOfsX, 0 ), Size( GetOutputSizePixel().Width() - nOfsX, GetTitleHeight() ) );
}
AutoSizeLastColumn(); // adjust last column width
DoShowCursor( "Resize" );
}
//-------------------------------------------------------------------
void BrowseBox::Paint( const Rectangle& rRect )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// initializations
if ( !bBootstrapped && IsReallyVisible() )
BrowseBox::StateChanged( STATE_CHANGE_INITSHOW );
if ( pCols->empty() )
return;
BrowserColumn *pFirstCol = (*pCols)[ 0 ];
sal_Bool bHandleCol = pFirstCol && pFirstCol->GetId() == 0;
sal_Bool bHeaderBar = getDataWindow()->pHeaderBar != NULL;
// draw delimitational lines
if ( !getDataWindow()->bNoHScroll )
DrawLine( Point( 0, aHScroll.GetPosPixel().Y() ),
Point( GetOutputSizePixel().Width(),
aHScroll.GetPosPixel().Y() ) );
if ( nTitleLines )
{
if ( !bHeaderBar )
DrawLine( Point( 0, GetTitleHeight() - 1 ),
Point( GetOutputSizePixel().Width(),
GetTitleHeight() - 1 ) );
else if ( bHandleCol )
DrawLine( Point( 0, GetTitleHeight() - 1 ),
Point( pFirstCol->Width(), GetTitleHeight() - 1 ) );
}
// Title Bar
// Wenn es eine Handle Column gibt und die Headerbar verfuegbar ist, dann nur
// die HandleColumn
// Handle-Column beruecksichtigen
if ( nTitleLines && (!bHeaderBar || bHandleCol) )
{
// iterate through columns to redraw
long nX = 0;
size_t nCol;
for ( nCol = 0;
nCol < pCols->size() && nX < rRect.Right();
++nCol )
{
// skip invisible colums between frozen and scrollable area
if ( nCol < nFirstCol && !(*pCols)[ nCol ]->IsFrozen() )
nCol = nFirstCol;
// nur die HandleCol ?
if (bHeaderBar && bHandleCol && nCol > 0)
break;
BrowserColumn *pCol = (*pCols)[ nCol ];
// draw the column and increment position
if ( pCol->Width() > 4 )
{
ButtonFrame aButtonFrame( Point( nX, 0 ),
Size( pCol->Width()-1, GetTitleHeight()-1 ),
pCol->Title(), sal_False, sal_False,
0 != (BROWSER_COLUMN_TITLEABBREVATION&pCol->Flags()),
!IsEnabled());
aButtonFrame.Draw( *this );
DrawLine( Point( nX + pCol->Width() - 1, 0 ),
Point( nX + pCol->Width() - 1, GetTitleHeight()-1 ) );
}
else
{
Color aOldFillColor = GetFillColor();
SetFillColor( Color( COL_BLACK ) );
DrawRect( Rectangle( Point( nX, 0 ), Size( pCol->Width(), GetTitleHeight() - 1 ) ) );
SetFillColor( aOldFillColor );
}
// skip column
nX += pCol->Width();
}
// retouching
if ( !bHeaderBar && nCol == pCols->size() )
{
const StyleSettings &rSettings = GetSettings().GetStyleSettings();
Color aColFace( rSettings.GetFaceColor() );
Color aOldFillColor = GetFillColor();
Color aOldLineColor = GetLineColor();
SetFillColor( aColFace );
SetLineColor( aColFace );
DrawRect( Rectangle(
Point( nX, 0 ),
Point( rRect.Right(), GetTitleHeight() - 2 ) ) );
SetFillColor( aOldFillColor); // aOldLineColor ); oj 09.02.00 seems to be a copy&paste bug
SetLineColor( aOldLineColor); // aOldFillColor );
}
}
}
//-------------------------------------------------------------------
void BrowseBox::PaintRow( OutputDevice&, const Rectangle& )
{
}
//-------------------------------------------------------------------
void BrowseBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags )
{
sal_Bool bDrawSelection = (nFlags & WINDOW_DRAW_NOSELECTION) == 0;
// we need pixel coordinates
Size aRealSize = pDev->LogicToPixel(rSize);
Point aRealPos = pDev->LogicToPixel(rPos);
if ((rSize.Width() < 3) || (rSize.Height() < 3))
// we want to have two pixels frame ...
return;
Font aFont = GetDataWindow().GetDrawPixelFont( pDev );
// the 'normal' painting uses always the data window as device to output to, so we have to calc the new font
// relative to the data wins current settings
pDev->Push();
pDev->SetMapMode();
pDev->SetFont( aFont );
// draw a frame
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
pDev->SetLineColor(rStyleSettings.GetDarkShadowColor());
pDev->DrawLine(Point(aRealPos.X(), aRealPos.Y()),
Point(aRealPos.X(), aRealPos.Y() + aRealSize.Height() - 1));
pDev->DrawLine(Point(aRealPos.X(), aRealPos.Y()),
Point(aRealPos.X() + aRealSize.Width() - 1, aRealPos.Y()));
pDev->SetLineColor(rStyleSettings.GetShadowColor());
pDev->DrawLine(Point(aRealPos.X() + aRealSize.Width() - 1, aRealPos.Y() + 1),
Point(aRealPos.X() + aRealSize.Width() - 1, aRealPos.Y() + aRealSize.Height() - 1));
pDev->DrawLine(Point(aRealPos.X() + aRealSize.Width() - 1, aRealPos.Y() + aRealSize.Height() - 1),
Point(aRealPos.X() + 1, aRealPos.Y() + aRealSize.Height() - 1));
HeaderBar* pBar = getDataWindow()->pHeaderBar;
// we're drawing onto a foreign device, so we have to fake the DataRowHeight for the subsequent ImplPaintData
// (as it is based on the settings of our data window, not the foreign device)
if (!nDataRowHeight)
ImpGetDataRowHeight();
long nHeightLogic = PixelToLogic(Size(0, nDataRowHeight), MAP_10TH_MM).Height();
long nForeignHeightPixel = pDev->LogicToPixel(Size(0, nHeightLogic), MAP_10TH_MM).Height();
long nOriginalHeight = nDataRowHeight;
nDataRowHeight = nForeignHeightPixel;
// this counts for the column widths, too
size_t nPos;
for ( nPos = 0; nPos < pCols->size(); ++nPos )
{
BrowserColumn* pCurrent = (*pCols)[ nPos ];
long nWidthLogic = PixelToLogic(Size(pCurrent->Width(), 0), MAP_10TH_MM).Width();
long nForeignWidthPixel = pDev->LogicToPixel(Size(nWidthLogic, 0), MAP_10TH_MM).Width();
pCurrent->SetWidth(nForeignWidthPixel, GetZoom());
if ( pBar )
pBar->SetItemSize( pCurrent->GetId(), pCurrent->Width() );
}
// a smaller area for the content
++aRealPos.X();
++aRealPos.Y();
aRealSize.Width() -= 2;
aRealSize.Height() -= 2;
// let the header bar draw itself
if ( pBar )
{
// the title height with respect to the font set for the given device
long nTitleHeight = PixelToLogic(Size(0, GetTitleHeight()), MAP_10TH_MM).Height();
nTitleHeight = pDev->LogicToPixel(Size(0, nTitleHeight), MAP_10TH_MM).Height();
BrowserColumn* pFirstCol = !pCols->empty() ? (*pCols)[ 0 ] : NULL;
Point aHeaderPos(pFirstCol && (pFirstCol->GetId() == 0) ? pFirstCol->Width() : 0, 0);
Size aHeaderSize(aRealSize.Width() - aHeaderPos.X(), nTitleHeight);
aHeaderPos += aRealPos;
// do this before converting to logics !
// the header's draw expects logic coordinates, again
aHeaderPos = pDev->PixelToLogic(aHeaderPos);
aHeaderSize = pDev->PixelToLogic(aHeaderSize);
pBar->Draw(pDev, aHeaderPos, aHeaderSize, nFlags);
// draw the "upper left cell" (the intersection between the header bar and the handle column)
if (( pFirstCol->GetId() == 0 ) && ( pFirstCol->Width() > 4 ))
{
ButtonFrame aButtonFrame( aRealPos,
Size( pFirstCol->Width()-1, nTitleHeight-1 ),
pFirstCol->Title(), sal_False, sal_False, sal_False, !IsEnabled());
aButtonFrame.Draw( *pDev );
pDev->Push( PUSH_LINECOLOR );
pDev->SetLineColor( Color( COL_BLACK ) );
pDev->DrawLine( Point( aRealPos.X(), aRealPos.Y() + nTitleHeight-1 ),
Point( aRealPos.X() + pFirstCol->Width() - 1, aRealPos.Y() + nTitleHeight-1 ) );
pDev->DrawLine( Point( aRealPos.X() + pFirstCol->Width() - 1, aRealPos.Y() ),
Point( aRealPos.X() + pFirstCol->Width() - 1, aRealPos.Y() + nTitleHeight-1 ) );
pDev->Pop();
}
aRealPos.Y() += aHeaderSize.Height();
aRealSize.Height() -= aHeaderSize.Height();
}
// draw our own content (with clipping)
Region aRegion(Rectangle(aRealPos, aRealSize));
pDev->SetClipRegion( pDev->PixelToLogic( aRegion ) );
// do we have to paint the background
sal_Bool bBackground = !(nFlags & WINDOW_DRAW_NOBACKGROUND) && GetDataWindow().IsControlBackground();
if ( bBackground )
{
Rectangle aRect( aRealPos, aRealSize );
pDev->SetFillColor( GetDataWindow().GetControlBackground() );
pDev->DrawRect( aRect );
}
ImplPaintData( *pDev, Rectangle( aRealPos, aRealSize ), sal_True, bDrawSelection );
// restore the column widths/data row height
nDataRowHeight = nOriginalHeight;
for ( nPos = 0; nPos < pCols->size(); ++nPos )
{
BrowserColumn* pCurrent = (*pCols)[ nPos ];
long nForeignWidthLogic = pDev->PixelToLogic(Size(pCurrent->Width(), 0), MAP_10TH_MM).Width();
long nWidthPixel = LogicToPixel(Size(nForeignWidthLogic, 0), MAP_10TH_MM).Width();
pCurrent->SetWidth(nWidthPixel, GetZoom());
if ( pBar )
pBar->SetItemSize( pCurrent->GetId(), pCurrent->Width() );
}
pDev->Pop();
}
//-------------------------------------------------------------------
void BrowseBox::ImplPaintData(OutputDevice& _rOut, const Rectangle& _rRect, sal_Bool _bForeignDevice, sal_Bool _bDrawSelections)
{
Point aOverallAreaPos = _bForeignDevice ? _rRect.TopLeft() : Point(0,0);
Size aOverallAreaSize = _bForeignDevice ? _rRect.GetSize() : GetDataWindow().GetOutputSizePixel();
Point aOverallAreaBRPos = _bForeignDevice ? _rRect.BottomRight() : Point( aOverallAreaSize.Width(), aOverallAreaSize.Height() );
long nDataRowHeigt = GetDataRowHeight();
// compute relative rows to redraw
sal_uLong nRelTopRow = 0;
sal_uLong nRelBottomRow = aOverallAreaSize.Height();
if (!_bForeignDevice && nDataRowHeigt)
{
nRelTopRow = ((sal_uLong)_rRect.Top() / nDataRowHeigt);
nRelBottomRow = (sal_uLong)(_rRect.Bottom()) / nDataRowHeigt;
}
// cache frequently used values
Point aPos( aOverallAreaPos.X(), nRelTopRow * nDataRowHeigt + aOverallAreaPos.Y() );
_rOut.SetLineColor( Color( COL_WHITE ) );
const AllSettings& rAllSets = _rOut.GetSettings();
const StyleSettings &rSettings = rAllSets.GetStyleSettings();
const Color &rHighlightTextColor = rSettings.GetHighlightTextColor();
const Color &rHighlightFillColor = rSettings.GetHighlightColor();
Color aOldTextColor = _rOut.GetTextColor();
Color aOldFillColor = _rOut.GetFillColor();
Color aOldLineColor = _rOut.GetLineColor();
long nHLineX = 0 == (*pCols)[ 0 ]->GetId() ? (*pCols)[ 0 ]->Width() : 0;
nHLineX += aOverallAreaPos.X();
Color aDelimiterLineColor( ::svtools::ColorConfig().GetColorValue( ::svtools::CALCGRID ).nColor );
// redraw the invalid fields
for ( sal_uLong nRelRow = nRelTopRow;
nRelRow <= nRelBottomRow && (sal_uLong)nTopRow+nRelRow < (sal_uLong)nRowCount;
++nRelRow, aPos.Y() += nDataRowHeigt )
{
// get row
// Zur Sicherheit auf zul"assigen Bereich abfragen:
DBG_ASSERT( (sal_uInt16)(nTopRow+nRelRow) < nRowCount, "BrowseBox::ImplPaintData: invalid seek" );
if ( (nTopRow+long(nRelRow)) < 0 || (sal_uInt16)(nTopRow+nRelRow) >= nRowCount )
continue;
// prepare row
sal_uLong nRow = nTopRow+nRelRow;
if ( !SeekRow( nRow) ) {
OSL_FAIL("BrowseBox::ImplPaintData: SeekRow gescheitert");
}
_rOut.SetClipRegion();
aPos.X() = aOverallAreaPos.X();
// #73325# don't paint the row outside the painting rectangle (DG)
// prepare auto-highlight
Rectangle aRowRect( Point( _rRect.TopLeft().X(), aPos.Y() ),
Size( _rRect.GetSize().Width(), nDataRowHeigt ) );
PaintRow( _rOut, aRowRect );
sal_Bool bRowSelected = _bDrawSelections
&& !bHideSelect
&& IsRowSelected( nRow );
if ( bRowSelected )
{
_rOut.SetTextColor( rHighlightTextColor );
_rOut.SetFillColor( rHighlightFillColor );
_rOut.SetLineColor();
_rOut.DrawRect( aRowRect );
}
// iterate through columns to redraw
size_t nCol;
for ( nCol = 0; nCol < pCols->size(); ++nCol )
{
// get column
BrowserColumn *pCol = (*pCols)[ nCol ];
// at end of invalid area
if ( aPos.X() >= _rRect.Right() )
break;
// skip invisible colums between frozen and scrollable area
if ( nCol < nFirstCol && !pCol->IsFrozen() )
{
nCol = nFirstCol;
pCol = (nCol < pCols->size() ) ? (*pCols)[ nCol ] : NULL;
if (!pCol)
{ // FS - 21.05.99 - 66325
// ist zwar eigentlich woanders (an der richtigen Stelle) gefixt, aber sicher ist sicher ...
OSL_FAIL("BrowseBox::PaintData : nFirstCol is probably invalid !");
break;
}
}
// prepare Column-AutoHighlight
sal_Bool bColAutoHighlight = _bDrawSelections
&& bColumnCursor
&& IsColumnSelected( pCol->GetId() );
if ( bColAutoHighlight )
{
_rOut.SetClipRegion();
_rOut.SetTextColor( rHighlightTextColor );
_rOut.SetFillColor( rHighlightFillColor );
_rOut.SetLineColor();
Rectangle aFieldRect( aPos,
Size( pCol->Width(), nDataRowHeigt ) );
_rOut.DrawRect( aFieldRect );
}
if (!m_bFocusOnlyCursor && (pCol->GetId() == GetCurColumnId()) && (nRow == (sal_uLong)GetCurRow()))
DrawCursor();
// draw a single field
// #63864#, Sonst wird auch etwas gezeichnet, bsp Handle Column
if (pCol->Width())
{
// clip the column's output to the field area
if (_bForeignDevice)
{ // (not neccessary if painting onto the data window)
Size aFieldSize(pCol->Width(), nDataRowHeigt);
if (aPos.X() + aFieldSize.Width() > aOverallAreaBRPos.X())
aFieldSize.Width() = aOverallAreaBRPos.X() - aPos.X();
if (aPos.Y() + aFieldSize.Height() > aOverallAreaBRPos.Y() + 1)
{
// for non-handle cols we don't clip vertically : we just don't draw the cell if the line isn't completely visible
if (pCol->GetId() != 0)
continue;
aFieldSize.Height() = aOverallAreaBRPos.Y() + 1 - aPos.Y();
}
Region aClipToField(Rectangle(aPos, aFieldSize));
_rOut.SetClipRegion(aClipToField);
}
pCol->Draw( *this, _rOut, aPos, sal_False );
if (_bForeignDevice)
_rOut.SetClipRegion();
}
// reset Column-auto-highlight
if ( bColAutoHighlight )
{
_rOut.SetTextColor( aOldTextColor );
_rOut.SetFillColor( aOldFillColor );
_rOut.SetLineColor( aOldLineColor );
}
// skip column
aPos.X() += pCol->Width();
}
// reset auto-highlight
if ( bRowSelected )
{
_rOut.SetTextColor( aOldTextColor );
_rOut.SetFillColor( aOldFillColor );
_rOut.SetLineColor( aOldLineColor );
}
if ( bHLines )
{
// draw horizontal delimitation lines
_rOut.SetClipRegion();
_rOut.Push( PUSH_LINECOLOR );
_rOut.SetLineColor( aDelimiterLineColor );
long nY = aPos.Y() + nDataRowHeigt - 1;
if (nY <= aOverallAreaBRPos.Y())
_rOut.DrawLine( Point( nHLineX, nY ),
Point( bVLines
? std::min(long(long(aPos.X()) - 1), aOverallAreaBRPos.X())
: aOverallAreaBRPos.X(),
nY ) );
_rOut.Pop();
}
}
if (aPos.Y() > aOverallAreaBRPos.Y() + 1)
aPos.Y() = aOverallAreaBRPos.Y() + 1;
// needed for some of the following drawing
// retouching
_rOut.SetClipRegion();
aOldLineColor = _rOut.GetLineColor();
aOldFillColor = _rOut.GetFillColor();
_rOut.SetFillColor( rSettings.GetFaceColor() );
if ( !pCols->empty() && ( (*pCols)[ 0 ]->GetId() == 0 ) && ( aPos.Y() <= _rRect.Bottom() ) )
{
// fill rectangle gray below handle column
// DG: fill it only until the end of the drawing rect and not to the end, as this may overpaint handle columns
_rOut.SetLineColor( Color( COL_BLACK ) );
_rOut.DrawRect( Rectangle(
Point( aOverallAreaPos.X() - 1, aPos.Y() - 1 ),
Point( aOverallAreaPos.X() + (*pCols)[ 0 ]->Width() - 1,
_rRect.Bottom() + 1) ) );
}
_rOut.SetFillColor( aOldFillColor );
// draw vertical delimitational line between frozen and scrollable cols
_rOut.SetLineColor( COL_BLACK );
long nFrozenWidth = GetFrozenWidth()-1;
_rOut.DrawLine( Point( aOverallAreaPos.X() + nFrozenWidth, aPos.Y() ),
Point( aOverallAreaPos.X() + nFrozenWidth, bHLines
? aPos.Y() - 1
: aOverallAreaBRPos.Y() ) );
// draw vertical delimitational lines?
if ( bVLines )
{
_rOut.SetLineColor( aDelimiterLineColor );
Point aVertPos( aOverallAreaPos.X() - 1, aOverallAreaPos.Y() );
long nDeltaY = aOverallAreaBRPos.Y();
for ( size_t nCol = 0; nCol < pCols->size(); ++nCol )
{
// get column
BrowserColumn *pCol = (*pCols)[ nCol ];
// skip invisible colums between frozen and scrollable area
if ( nCol < nFirstCol && !pCol->IsFrozen() )
{
nCol = nFirstCol;
pCol = (*pCols)[ nCol ];
}
// skip column
aVertPos.X() += pCol->Width();
// at end of invalid area
// invalid area is first reached when X > Right
// and not >=
if ( aVertPos.X() > _rRect.Right() )
break;
// draw a single line
if ( pCol->GetId() != 0 )
_rOut.DrawLine( aVertPos, Point( aVertPos.X(),
bHLines
? aPos.Y() - 1
: aPos.Y() + nDeltaY ) );
}
}
_rOut.SetLineColor( aOldLineColor );
}
//-------------------------------------------------------------------
void BrowseBox::PaintData( Window& rWin, const Rectangle& rRect )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( !bBootstrapped && IsReallyVisible() )
BrowseBox::StateChanged( STATE_CHANGE_INITSHOW );
// initializations
if ( !pCols || pCols->empty() || !rWin.IsUpdateMode() )
return;
if ( getDataWindow()->bResizeOnPaint )
Resize();
// MI: wer war das denn? Window::Update();
ImplPaintData(rWin, rRect, sal_False, sal_True);
}
//-------------------------------------------------------------------
void BrowseBox::UpdateScrollbars()
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( !bBootstrapped || !IsUpdateMode() )
return;
// Rekursionsschutz
BrowserDataWin *pBDW = (BrowserDataWin*) pDataWin;
if ( pBDW->bInUpdateScrollbars )
{
pBDW->bHadRecursion = sal_True;
return;
}
pBDW->bInUpdateScrollbars = sal_True;
// the size of the corner window (and the width of the VSB/height of the HSB)
sal_uLong nCornerSize = GetSettings().GetStyleSettings().GetScrollBarSize();
if (IsZoom())
nCornerSize = (sal_uLong)(nCornerSize * (double)GetZoom());
sal_Bool bNeedsVScroll = sal_False;
long nMaxRows = 0;
if (GetDataRowHeight())
{
// needs VScroll?
nMaxRows = (pDataWin->GetSizePixel().Height()) / GetDataRowHeight();
bNeedsVScroll = getDataWindow()->bAutoVScroll
? nTopRow || ( nRowCount > nMaxRows )
: !getDataWindow()->bNoVScroll;
}
Size aDataWinSize = pDataWin->GetSizePixel();
if ( !bNeedsVScroll )
{
if ( pVScroll->IsVisible() )
{
pVScroll->Hide();
Size aNewSize( aDataWinSize );
aNewSize.Width() = GetOutputSizePixel().Width();
aDataWinSize = aNewSize;
}
}
else if ( !pVScroll->IsVisible() )
{
Size aNewSize( aDataWinSize );
aNewSize.Width() = GetOutputSizePixel().Width() - nCornerSize;
aDataWinSize = aNewSize;
}
// needs HScroll?
sal_uLong nLastCol = GetColumnAtXPosPixel( aDataWinSize.Width() - 1 );
sal_uInt16 nFrozenCols = FrozenColCount();
sal_Bool bNeedsHScroll = getDataWindow()->bAutoHScroll
? ( nFirstCol > nFrozenCols ) || ( nLastCol <= pCols->size() )
: !getDataWindow()->bNoHScroll;
if ( !bNeedsHScroll )
{
if ( aHScroll.IsVisible() )
{
aHScroll.Hide();
}
aDataWinSize.Height() = GetOutputSizePixel().Height() - GetTitleHeight();
if ( nControlAreaWidth != USHRT_MAX )
aDataWinSize.Height() -= nCornerSize;
}
else if ( !aHScroll.IsVisible() )
{
Size aNewSize( aDataWinSize );
aNewSize.Height() = GetOutputSizePixel().Height() - GetTitleHeight() - nCornerSize;
aDataWinSize = aNewSize;
}
// adjust position and Width of horizontal scrollbar
sal_uLong nHScrX = nControlAreaWidth == USHRT_MAX
? 0
: nControlAreaWidth;
aHScroll.SetPosSizePixel(
Point( nHScrX, GetOutputSizePixel().Height() - nCornerSize ),
Size( aDataWinSize.Width() - nHScrX, nCornerSize ) );
// Scrollable Columns insgesamt
short nScrollCols = short(pCols->size()) - (short)nFrozenCols;
// Sichtbare Columns
short nVisibleHSize = nLastCol == BROWSER_INVALIDID
? (short)( pCols->size() - nFirstCol )
: (short)( nLastCol - nFirstCol );
short nRange = Max( nScrollCols, (short)0 );
aHScroll.SetVisibleSize( nVisibleHSize );
aHScroll.SetRange( Range( 0, nRange ));
if ( bNeedsHScroll && !aHScroll.IsVisible() )
aHScroll.Show();
// adjust position and height of vertical scrollbar
pVScroll->SetPageSize( nMaxRows );
if ( nTopRow > nRowCount )
{
nTopRow = nRowCount - 1;
OSL_FAIL("BrowseBox: nTopRow > nRowCount");
}
if ( pVScroll->GetThumbPos() != nTopRow )
pVScroll->SetThumbPos( nTopRow );
long nVisibleSize = Min( Min( nRowCount, nMaxRows ), long(nRowCount-nTopRow) );
pVScroll->SetVisibleSize( nVisibleSize ? nVisibleSize : 1 );
pVScroll->SetRange( Range( 0, nRowCount ) );
pVScroll->SetPosSizePixel(
Point( aDataWinSize.Width(), GetTitleHeight() ),
Size( nCornerSize, aDataWinSize.Height()) );
long nLclDataRowHeight = GetDataRowHeight();
if ( nLclDataRowHeight > 0 && nRowCount < long( aDataWinSize.Height() / nLclDataRowHeight ) )
ScrollRows( -nTopRow );
if ( bNeedsVScroll && !pVScroll->IsVisible() )
pVScroll->Show();
pDataWin->SetPosSizePixel(
Point( 0, GetTitleHeight() ),
aDataWinSize );
// needs corner-window?
// (do that AFTER positioning BOTH scrollbars)
sal_uLong nActualCorderWidth = 0;
if (aHScroll.IsVisible() && pVScroll && pVScroll->IsVisible() )
{
// if we have both scrollbars, the corner window fills the point of intersection of these two
nActualCorderWidth = nCornerSize;
}
else if ( !aHScroll.IsVisible() && ( nControlAreaWidth != USHRT_MAX ) )
{
// if we have no horizontal scrollbar, but a control area, we need the corner window to
// fill the space between the control are and the right border
nActualCorderWidth = GetOutputSizePixel().Width() - nControlAreaWidth;
}
if ( nActualCorderWidth )
{
if ( !getDataWindow()->pCornerWin )
getDataWindow()->pCornerWin = new ScrollBarBox( this, 0 );
getDataWindow()->pCornerWin->SetPosSizePixel(
Point( GetOutputSizePixel().Width() - nActualCorderWidth, aHScroll.GetPosPixel().Y() ),
Size( nActualCorderWidth, nCornerSize ) );
getDataWindow()->pCornerWin->Show();
}
else
DELETEZ( getDataWindow()->pCornerWin );
// ggf. Headerbar mitscrollen
if ( getDataWindow()->pHeaderBar )
{
long nWidth = 0;
for ( size_t nCol = 0;
nCol < pCols->size() && nCol < nFirstCol;
++nCol )
{
// HandleColumn nicht
if ( (*pCols)[ nCol ]->GetId() )
nWidth += (*pCols)[ nCol ]->Width();
}
getDataWindow()->pHeaderBar->SetOffset( nWidth );
}
pBDW->bInUpdateScrollbars = sal_False;
if ( pBDW->bHadRecursion )
{
pBDW->bHadRecursion = sal_False;
UpdateScrollbars();
}
}
//-------------------------------------------------------------------
void BrowseBox::SetUpdateMode( sal_Bool bUpdate )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
sal_Bool bWasUpdate = IsUpdateMode();
if ( bWasUpdate == bUpdate )
return;
Control::SetUpdateMode( bUpdate );
// OV
// Wenn an der BrowseBox WB_CLIPCHILDREN gesetzt ist (wg. Flackerminimierung),
// wird das Datenfenster nicht von SetUpdateMode invalidiert.
if( bUpdate )
getDataWindow()->Invalidate();
getDataWindow()->SetUpdateMode( bUpdate );
if ( bUpdate )
{
if ( bBootstrapped )
{
UpdateScrollbars();
AutoSizeLastColumn();
}
DoShowCursor( "SetUpdateMode" );
}
else
DoHideCursor( "SetUpdateMode" );
}
//-------------------------------------------------------------------
sal_Bool BrowseBox::GetUpdateMode() const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
return getDataWindow()->IsUpdateMode();
}
//-------------------------------------------------------------------
long BrowseBox::GetFrozenWidth() const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
long nWidth = 0;
for ( size_t nCol = 0;
nCol < pCols->size() && (*pCols)[ nCol ]->IsFrozen();
++nCol )
nWidth += (*pCols)[ nCol ]->Width();
return nWidth;
}
//-------------------------------------------------------------------
void BrowseBox::ColumnInserted( sal_uInt16 nPos )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( pColSel )
pColSel->Insert( nPos );
UpdateScrollbars();
}
//-------------------------------------------------------------------
sal_uInt16 BrowseBox::FrozenColCount() const
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
sal_uInt16 nCol;
for ( nCol = 0;
nCol < pCols->size() && (*pCols)[ nCol ]->IsFrozen();
++nCol )
/* empty loop */;
return nCol;
}
//-------------------------------------------------------------------
IMPL_LINK(BrowseBox,ScrollHdl,ScrollBar*,pBar)
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( pBar->GetDelta() == 0 )
return 0;
if ( pBar->GetDelta() < 0 && getDataWindow()->bNoScrollBack )
{
UpdateScrollbars();
return 0;
}
if ( pBar == &aHScroll )
ScrollColumns( aHScroll.GetDelta() );
if ( pBar == pVScroll )
ScrollRows( pVScroll->GetDelta() );
return 0;
}
//-------------------------------------------------------------------
IMPL_LINK( BrowseBox,EndScrollHdl,ScrollBar*, EMPTYARG )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// kein Focus grabben!
/// GrabFocus();
if ( getDataWindow()->bNoScrollBack )
{
EndScroll();
return 0;
}
return 0;
}
//-------------------------------------------------------------------
IMPL_LINK( BrowseBox, StartDragHdl, HeaderBar*, pBar )
{
pBar->SetDragSize( pDataWin->GetOutputSizePixel().Height() );
return 0;
}
//-------------------------------------------------------------------
// MI: es wurde immer nur die 1. Spalte resized
#ifdef _MSC_VER
#pragma optimize("",off)
#endif
void BrowseBox::MouseButtonDown( const MouseEvent& rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
GrabFocus();
// onl< mouse events in the title-line are supported
const Point &rEvtPos = rEvt.GetPosPixel();
if ( rEvtPos.Y() >= GetTitleHeight() )
return;
long nX = 0;
long nWidth = GetOutputSizePixel().Width();
for ( size_t nCol = 0; nCol < pCols->size() && nX < nWidth; ++nCol )
{
// is this column visible?
BrowserColumn *pCol = (*pCols)[ nCol ];
if ( pCol->IsFrozen() || nCol >= nFirstCol )
{
// compute right end of column
long nR = nX + pCol->Width() - 1;
// at the end of a column (and not handle column)?
if ( pCol->GetId() && Abs( nR - rEvtPos.X() ) < 2 )
{
// start resizing the column
bResizing = sal_True;
nResizeCol = nCol;
nDragX = nResizeX = rEvtPos.X();
SetPointer( Pointer( POINTER_HSPLIT ) );
CaptureMouse();
pDataWin->DrawLine( Point( nDragX, 0 ),
Point( nDragX, pDataWin->GetSizePixel().Height() ) );
nMinResizeX = nX + MIN_COLUMNWIDTH;
return;
}
else if ( nX < rEvtPos.X() && nR > rEvtPos.X() )
{
MouseButtonDown( BrowserMouseEvent(
this, rEvt, -1, nCol, pCol->GetId(), Rectangle() ) );
return;
}
nX = nR + 1;
}
}
// event occurred out of data area
if ( rEvt.IsRight() )
pDataWin->Command(
CommandEvent( Point( 1, LONG_MAX ), COMMAND_CONTEXTMENU, sal_True ) );
else
SetNoSelection();
}
#ifdef _MSC_VER
#pragma optimize("",on)
#endif
//-------------------------------------------------------------------
void BrowseBox::MouseMove( const MouseEvent& rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
OSL_TRACE( "BrowseBox::MouseMove( MouseEvent )" );
Pointer aNewPointer;
sal_uInt16 nX = 0;
for ( size_t nCol = 0;
nCol < pCols->size() &&
( nX + (*pCols)[ nCol ]->Width() ) < sal_uInt16(GetOutputSizePixel().Width());
++nCol )
// is this column visible?
if ( (*pCols)[ nCol ]->IsFrozen() || nCol >= nFirstCol )
{
// compute right end of column
BrowserColumn *pCol = (*pCols)[ nCol ];
sal_uInt16 nR = (sal_uInt16)(nX + pCol->Width() - 1);
// show resize-pointer?
if ( bResizing || ( pCol->GetId() &&
Abs( ((long) nR ) - rEvt.GetPosPixel().X() ) < MIN_COLUMNWIDTH ) )
{
aNewPointer = Pointer( POINTER_HSPLIT );
if ( bResizing )
{
// alte Hilfslinie loeschen
pDataWin->HideTracking() ;
// erlaubte breite abholen und neues Delta
nDragX = Max( rEvt.GetPosPixel().X(), nMinResizeX );
long nDeltaX = nDragX - nResizeX;
sal_uInt16 nId = GetColumnId(nResizeCol);
sal_uLong nOldWidth = GetColumnWidth(nId);
nDragX = QueryColumnResize( GetColumnId(nResizeCol),
nOldWidth + nDeltaX )
+ nResizeX - nOldWidth;
// neue Hilfslinie zeichnen
pDataWin->ShowTracking( Rectangle( Point( nDragX, 0 ),
Size( 1, pDataWin->GetSizePixel().Height() ) ),
SHOWTRACK_SPLIT|SHOWTRACK_WINDOW );
}
}
nX = nR + 1;
}
SetPointer( aNewPointer );
}
//-------------------------------------------------------------------
void BrowseBox::MouseButtonUp( const MouseEvent & rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
if ( bResizing )
{
// Hilfslinie loeschen
pDataWin->HideTracking();
// width changed?
nDragX = Max( rEvt.GetPosPixel().X(), nMinResizeX );
if ( (nDragX - nResizeX) != (long)(*pCols)[ nResizeCol ]->Width() )
{
// resize column
long nMaxX = pDataWin->GetSizePixel().Width();
nDragX = Min( nDragX, nMaxX );
long nDeltaX = nDragX - nResizeX;
sal_uInt16 nId = GetColumnId(nResizeCol);
SetColumnWidth( GetColumnId(nResizeCol), GetColumnWidth(nId) + nDeltaX );
ColumnResized( nId );
}
// end action
SetPointer( Pointer() );
ReleaseMouse();
bResizing = sal_False;
}
else
MouseButtonUp( BrowserMouseEvent( (BrowserDataWin*)pDataWin,
MouseEvent( Point( rEvt.GetPosPixel().X(),
rEvt.GetPosPixel().Y() - pDataWin->GetPosPixel().Y() ),
rEvt.GetClicks(), rEvt.GetMode(), rEvt.GetButtons(),
rEvt.GetModifier() ) ) );
}
//-------------------------------------------------------------------
sal_Bool bExtendedMode = sal_False;
sal_Bool bFieldMode = sal_False;
void BrowseBox::MouseButtonDown( const BrowserMouseEvent& rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
GrabFocus();
// adjust selection while and after double-click
if ( rEvt.GetClicks() == 2 )
{
SetNoSelection();
if ( rEvt.GetRow() >= 0 )
{
GoToRow( rEvt.GetRow() );
SelectRow( rEvt.GetRow(), sal_True, sal_False );
}
else
{
if ( bColumnCursor && rEvt.GetColumn() != 0 )
{
if ( rEvt.GetColumn() < pCols->size() )
SelectColumnPos( rEvt.GetColumn(), sal_True, sal_False);
}
}
DoubleClick( rEvt );
}
// selections
else if ( ( rEvt.GetMode() & ( MOUSE_SELECT | MOUSE_SIMPLECLICK ) ) &&
( bColumnCursor || rEvt.GetRow() >= 0 ) )
{
if ( rEvt.GetClicks() == 1 )
{
// initialise flags
bHit = sal_False;
a1stPoint =
a2ndPoint = PixelToLogic( rEvt.GetPosPixel() );
// selection out of range?
if ( rEvt.GetRow() >= nRowCount ||
rEvt.GetColumnId() == BROWSER_INVALIDID )
{
SetNoSelection();
return;
}
// while selecting, no cursor
bSelecting = sal_True;
DoHideCursor( "MouseButtonDown" );
// DataRow?
if ( rEvt.GetRow() >= 0 )
{
// Zeilenselektion?
if ( rEvt.GetColumnId() == 0 || !bColumnCursor )
{
if ( bMultiSelection )
{
// remove column-selection, if exists
if ( pColSel && pColSel->GetSelectCount() )
{
ToggleSelection();
if ( bMultiSelection )
uRow.pSel->SelectAll(sal_False);
else
uRow.nSel = BROWSER_ENDOFSELECTION;
if ( pColSel )
pColSel->SelectAll(sal_False);
bSelect = sal_True;
}
// expanding mode?
if ( rEvt.GetMode() & MOUSE_RANGESELECT )
{
// select the further touched rows too
bSelect = sal_True;
ExpandRowSelection( rEvt );
return;
}
// click in the selected area?
else if ( IsRowSelected( rEvt.GetRow() ) )
{
// auf Drag&Drop warten
bHit = sal_True;
bExtendedMode = MOUSE_MULTISELECT ==
( rEvt.GetMode() & MOUSE_MULTISELECT );
return;
}
// extension mode?
else if ( rEvt.GetMode() & MOUSE_MULTISELECT )
{
// determine the new selection range
// and selection/deselection
aSelRange = Range( rEvt.GetRow(), rEvt.GetRow() );
SelectRow( rEvt.GetRow(),
!uRow.pSel->IsSelected( rEvt.GetRow() ) );
bSelect = sal_True;
return;
}
}
// select directly
SetNoSelection();
GoToRow( rEvt.GetRow() );
SelectRow( rEvt.GetRow(), sal_True );
aSelRange = Range( rEvt.GetRow(), rEvt.GetRow() );
bSelect = sal_True;
}
else // Column/Field-Selection
{
// click in selected column
if ( IsColumnSelected( rEvt.GetColumn() ) ||
IsRowSelected( rEvt.GetRow() ) )
{
bHit = sal_True;
bFieldMode = sal_True;
return;
}
SetNoSelection();
GoToRowColumnId( rEvt.GetRow(), rEvt.GetColumnId() );
bSelect = sal_True;
}
}
else
{
if ( bMultiSelection && rEvt.GetColumnId() == 0 )
{
// toggle all-selection
if ( uRow.pSel->GetSelectCount() > ( GetRowCount() / 2 ) )
SetNoSelection();
else
SelectAll();
}
else
SelectColumnId( rEvt.GetColumnId(), sal_True, sal_False );
}
// ggf. Cursor wieder an
bSelecting = sal_False;
DoShowCursor( "MouseButtonDown" );
if ( bSelect )
Select();
}
}
}
//-------------------------------------------------------------------
void BrowseBox::MouseMove( const BrowserMouseEvent& )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
}
//-------------------------------------------------------------------
void BrowseBox::MouseButtonUp( const BrowserMouseEvent &rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
// D&D was possible, but did not occur
if ( bHit )
{
aSelRange = Range( rEvt.GetRow(), rEvt.GetRow() );
if ( bExtendedMode )
SelectRow( rEvt.GetRow(), sal_False );
else
{
SetNoSelection();
if ( bFieldMode )
GoToRowColumnId( rEvt.GetRow(), rEvt.GetColumnId() );
else
{
GoToRow( rEvt.GetRow() );
SelectRow( rEvt.GetRow(), sal_True );
}
}
bSelect = sal_True;
bExtendedMode = sal_False;
bFieldMode = sal_False;
bHit = sal_False;
}
// activate cursor
if ( bSelecting )
{
bSelecting = sal_False;
DoShowCursor( "MouseButtonUp" );
if ( bSelect )
Select();
}
}
//-------------------------------------------------------------------
void BrowseBox::KeyInput( const KeyEvent& rEvt )
{
if ( !ProcessKey( rEvt ) )
Control::KeyInput( rEvt );
}
//-------------------------------------------------------------------
sal_Bool BrowseBox::ProcessKey( const KeyEvent& rEvt )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
sal_uInt16 nCode = rEvt.GetKeyCode().GetCode();
sal_Bool bShift = rEvt.GetKeyCode().IsShift();
sal_Bool bCtrl = rEvt.GetKeyCode().IsMod1();
sal_Bool bAlt = rEvt.GetKeyCode().IsMod2();
sal_uInt16 nId = BROWSER_NONE;
if ( !bAlt && !bCtrl && !bShift )
{
switch ( nCode )
{
case KEY_DOWN: nId = BROWSER_CURSORDOWN; break;
case KEY_UP: nId = BROWSER_CURSORUP; break;
case KEY_HOME: nId = BROWSER_CURSORHOME; break;
case KEY_END: nId = BROWSER_CURSOREND; break;
case KEY_TAB:
if ( !bColumnCursor )
break;
case KEY_RIGHT: nId = BROWSER_CURSORRIGHT; break;
case KEY_LEFT: nId = BROWSER_CURSORLEFT; break;
case KEY_SPACE: nId = BROWSER_SELECT; break;
}
if ( BROWSER_NONE != nId )
SetNoSelection();
switch ( nCode )
{
case KEY_PAGEDOWN: nId = BROWSER_CURSORPAGEDOWN; break;
case KEY_PAGEUP: nId = BROWSER_CURSORPAGEUP; break;
}
}
if ( !bAlt && !bCtrl && bShift )
switch ( nCode )
{
case KEY_DOWN: nId = BROWSER_SELECTDOWN; break;
case KEY_UP: nId = BROWSER_SELECTUP; break;
case KEY_TAB:
if ( !bColumnCursor )
break;
nId = BROWSER_CURSORLEFT; break;
case KEY_HOME: nId = BROWSER_SELECTHOME; break;
case KEY_END: nId = BROWSER_SELECTEND; break;
}
if ( !bAlt && bCtrl && !bShift )
switch ( nCode )
{
case KEY_DOWN: nId = BROWSER_CURSORDOWN; break;
case KEY_UP: nId = BROWSER_CURSORUP; break;
case KEY_PAGEDOWN: nId = BROWSER_CURSORENDOFFILE; break;
case KEY_PAGEUP: nId = BROWSER_CURSORTOPOFFILE; break;
case KEY_HOME: nId = BROWSER_CURSORTOPOFSCREEN; break;
case KEY_END: nId = BROWSER_CURSORENDOFSCREEN; break;
case KEY_SPACE: nId = BROWSER_ENHANCESELECTION; break;
case KEY_LEFT: nId = BROWSER_MOVECOLUMNLEFT; break;
case KEY_RIGHT: nId = BROWSER_MOVECOLUMNRIGHT; break;
}
if ( nId != BROWSER_NONE )
Dispatch( nId );
return nId != BROWSER_NONE;
}
//-------------------------------------------------------------------
void BrowseBox::Dispatch( sal_uInt16 nId )
{
DBG_CHKTHIS(BrowseBox,BrowseBoxCheckInvariants);
long nRowsOnPage = pDataWin->GetSizePixel().Height() / GetDataRowHeight();
sal_Bool bDone = sal_False;
switch ( nId )
{
case BROWSER_SELECTCOLUMN:
if ( ColCount() )
SelectColumnId( GetCurColumnId() );
break;
case BROWSER_CURSORDOWN:
if ( ( GetCurRow() + 1 ) < nRowCount )
bDone = GoToRow( GetCurRow() + 1, sal_False );
break;
case BROWSER_CURSORUP:
if ( GetCurRow() > 0 )
bDone = GoToRow( GetCurRow() - 1, sal_False );
break;
case BROWSER_SELECTHOME:
if ( GetRowCount() )
{
DoHideCursor( "BROWSER_SELECTHOME" );
for ( long nRow = GetCurRow(); nRow >= 0; --nRow )
SelectRow( nRow );
GoToRow( 0, sal_True );
DoShowCursor( "BROWSER_SELECTHOME" );
}
break;
case BROWSER_SELECTEND:
if ( GetRowCount() )
{
DoHideCursor( "BROWSER_SELECTEND" );
long nRows = GetRowCount();
for ( long nRow = GetCurRow(); nRow < nRows; ++nRow )
SelectRow( nRow );
GoToRow( GetRowCount() - 1, sal_True );
DoShowCursor( "BROWSER_SELECTEND" );
}
break;
case BROWSER_SELECTDOWN:
{
if ( GetRowCount() && ( GetCurRow() + 1 ) < nRowCount )
{
// deselect the current row, if it isn't the first
// and there is no other selected row above
long nRow = GetCurRow();
sal_Bool bLocalSelect = ( !IsRowSelected( nRow ) ||
GetSelectRowCount() == 1 || IsRowSelected( nRow - 1 ) );
SelectRow( nRow, bLocalSelect, sal_True );
bDone = GoToRow( GetCurRow() + 1 , sal_False );
if ( bDone )
SelectRow( GetCurRow(), sal_True, sal_True );
}
else
bDone = ScrollRows( 1 ) != 0;
break;
}
case BROWSER_SELECTUP:
if ( GetRowCount() )
{
// deselect the current row, if it isn't the first
// and there is no other selected row under
long nRow = GetCurRow();
sal_Bool bLocalSelect = ( !IsRowSelected( nRow ) ||
GetSelectRowCount() == 1 || IsRowSelected( nRow + 1 ) );
SelectRow( nCurRow, bLocalSelect, sal_True );
bDone = GoToRow( nRow - 1 , sal_False );
if ( bDone )
SelectRow( GetCurRow(), sal_True, sal_True );
}
break;
case BROWSER_CURSORPAGEDOWN:
bDone = (sal_Bool)ScrollRows( nRowsOnPage );
break;
case BROWSER_CURSORPAGEUP:
bDone = (sal_Bool)ScrollRows( -nRowsOnPage );
break;
case BROWSER_CURSOREND:
if ( bColumnCursor )
{
sal_uInt16 nNewId = GetColumnId(ColCount() -1);
bDone = (nNewId != 0) && GoToColumnId( nNewId );
break;
}
case BROWSER_CURSORENDOFFILE:
bDone = GoToRow( nRowCount - 1, sal_False );
break;
case BROWSER_CURSORRIGHT:
if ( bColumnCursor )
{
sal_uInt16 nNewPos = GetColumnPos( GetCurColumnId() ) + 1;
sal_uInt16 nNewId = GetColumnId( nNewPos );
if (nNewId != BROWSER_INVALIDID) // At end of row ?
bDone = GoToColumnId( nNewId );
else
{
sal_uInt16 nColId = GetColumnId(0);
if ( nColId == BROWSER_INVALIDID || nColId == HandleColumnId )
nColId = GetColumnId(1);
if ( GetRowCount() )
bDone = ( nCurRow < GetRowCount() - 1 ) && GoToRowColumnId( nCurRow + 1, nColId );
else if ( ColCount() )
GoToColumnId( nColId );
}
}
else
bDone = ScrollColumns( 1 ) != 0;
break;
case BROWSER_CURSORHOME:
if ( bColumnCursor )
{
sal_uInt16 nNewId = GetColumnId(1);
bDone = (nNewId != 0) && GoToColumnId( nNewId );
break;
}
case BROWSER_CURSORTOPOFFILE:
bDone = GoToRow( 0, sal_False );
break;
case BROWSER_CURSORLEFT:
if ( bColumnCursor )
{
sal_uInt16 nNewPos = GetColumnPos( GetCurColumnId() ) - 1;
sal_uInt16 nNewId = GetColumnId( nNewPos );
if (nNewId != 0)
bDone = GoToColumnId( nNewId );
else
{
if ( GetRowCount() )
bDone = (nCurRow > 0) && GoToRowColumnId(nCurRow - 1, GetColumnId(ColCount() -1));
else if ( ColCount() )
GoToColumnId( GetColumnId(ColCount() -1) );
}
}
else
bDone = ScrollColumns( -1 ) != 0;
break;
case BROWSER_ENHANCESELECTION:
if ( GetRowCount() )
SelectRow( GetCurRow(), !IsRowSelected( GetCurRow() ), sal_True );
bDone = sal_True;
break;
case BROWSER_SELECT:
if ( GetRowCount() )
SelectRow( GetCurRow(), !IsRowSelected( GetCurRow() ), sal_False );
bDone = sal_True;
break;
case BROWSER_MOVECOLUMNLEFT:
case BROWSER_MOVECOLUMNRIGHT:
{ // check if column moving is allowed
BrowserHeader* pHeaderBar = getDataWindow()->pHeaderBar;
if ( pHeaderBar && pHeaderBar->IsDragable() )
{
sal_uInt16 nColId = GetCurColumnId();
sal_Bool bColumnSelected = IsColumnSelected(nColId);
sal_uInt16 nNewPos = GetColumnPos(nColId);
sal_Bool bMoveAllowed = sal_False;
if ( BROWSER_MOVECOLUMNLEFT == nId && nNewPos > 1 )
--nNewPos,bMoveAllowed = sal_True;
else if ( BROWSER_MOVECOLUMNRIGHT == nId && nNewPos < (ColCount()-1) )
++nNewPos,bMoveAllowed = sal_True;
if ( bMoveAllowed )
{
SetColumnPos( nColId, nNewPos );
ColumnMoved( nColId );
MakeFieldVisible(GetCurRow(),nColId,sal_True);
if ( bColumnSelected )
SelectColumnId(nColId);
}
}
}
break;
}
//! return bDone;
}
//-------------------------------------------------------------------
void BrowseBox::SetCursorColor(const Color& _rCol)
{
if (_rCol == m_aCursorColor)
return;
// ensure the cursor is hidden
DoHideCursor("SetCursorColor");
if (!m_bFocusOnlyCursor)
DoHideCursor("SetCursorColor - force");
m_aCursorColor = _rCol;
if (!m_bFocusOnlyCursor)
DoShowCursor("SetCursorColor - force");
DoShowCursor("SetCursorColor");
}
// -----------------------------------------------------------------------------
Rectangle BrowseBox::calcHeaderRect(sal_Bool _bIsColumnBar,sal_Bool _bOnScreen)
{
Window* pParent = NULL;
if ( !_bOnScreen )
pParent = GetAccessibleParentWindow();
Point aTopLeft;
long nWidth;
long nHeight;
if ( _bIsColumnBar )
{
nWidth = GetDataWindow().GetOutputSizePixel().Width();
nHeight = GetDataRowHeight();
}
else
{
aTopLeft.Y() = GetDataRowHeight();
nWidth = GetColumnWidth(0);
nHeight = GetWindowExtentsRelative( pParent ).GetHeight() - aTopLeft.Y() - GetControlArea().GetSize().B();
}
aTopLeft += GetWindowExtentsRelative( pParent ).TopLeft();
return Rectangle(aTopLeft,Size(nWidth,nHeight));
}
// -----------------------------------------------------------------------------
Rectangle BrowseBox::calcTableRect(sal_Bool _bOnScreen)
{
Window* pParent = NULL;
if ( !_bOnScreen )
pParent = GetAccessibleParentWindow();
Rectangle aRect( GetWindowExtentsRelative( pParent ) );
Rectangle aRowBar = calcHeaderRect(sal_False,pParent == NULL);
long nX = aRowBar.Right() - aRect.Left();
long nY = aRowBar.Top() - aRect.Top();
Size aSize(aRect.GetSize());
return Rectangle(aRowBar.TopRight(), Size(aSize.A() - nX, aSize.B() - nY - aHScroll.GetSizePixel().Height()) );
}
// -----------------------------------------------------------------------------
Rectangle BrowseBox::GetFieldRectPixelAbs( sal_Int32 _nRowId,sal_uInt16 _nColId, sal_Bool /*_bIsHeader*/, sal_Bool _bOnScreen )
{
Window* pParent = NULL;
if ( !_bOnScreen )
pParent = GetAccessibleParentWindow();
Rectangle aRect = GetFieldRectPixel(_nRowId,_nColId,_bOnScreen);
Point aTopLeft = aRect.TopLeft();
aTopLeft += GetWindowExtentsRelative( pParent ).TopLeft();
return Rectangle(aTopLeft,aRect.GetSize());
}
// ------------------------------------------------------------------------- EOF
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|