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
|
#==============================================================================
# Contains the implementation of the scrollednotebook widget.
#
# Structure of the module:
# - Namespace initialization
# - Private procedure creating the default bindings
# - Public procedures
# - Private configuration procedures
# - Private procedures implementing the scrollednotebook widget command
# - Private callback procedure
# - Private procedures used in bindings
# - Private utility procedures
#
# Copyright (c) 2021-2024 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Namespace initialization
# ========================
#
namespace eval scrollutil::snb {
#
# The array configSpecs is used to handle configuration options. The names
# of its elements are the configuration options for the Scrollednotebook
# class. The value of an array element is a list containing the database
# name and class as well as an indicator specifying the widget to which the
# option applies: f stands for the frame, n for the notebook child, and w
# for the scrollednotebook widget itself.
#
# Command-Line Name {Database Name Database Class W}
# ----------------------------------------------------------
#
variable configSpecs
array set configSpecs {
-cursor {cursor Cursor f}
-forgetcommand {forgetCommand ForgetCommand w}
-height {height Height n}
-leavecommand {leaveCommand LeaveCommand w}
-movabletabs {movableTabs MovableTabs w}
-padding {padding Padding n}
-style {style Style n}
-takefocus {takeFocus TakeFocus f}
-width {width Width w}
}
#
# Extend the elements of the array configSpecs
#
lappend configSpecs(-cursor) ""
lappend configSpecs(-forgetcommand) ""
lappend configSpecs(-height) 0
lappend configSpecs(-leavecommand) ""
lappend configSpecs(-movabletabs) 1
lappend configSpecs(-padding) ""
lappend configSpecs(-style) "TNotebook"
lappend configSpecs(-takefocus) "ttk::takefocus"
lappend configSpecs(-width) 10c
variable configOpts [lsort [array names configSpecs]]
#
# Use a list to facilitate the handling of command options
#
variable cmdOpts [list add adjustsize attrib cget closetabstate configure \
forget hasattrib hastabattrib hide identify index \
insert instate notebookpath see select state style tab \
tabattrib tabs unsetattrib unsettabattrib]
#
# Array variable used in binding scripts for the class TNotebook:
#
variable stateArr
array set stateArr {
closeIdx ""
sourceIdx ""
targetIdx ""
}
variable userDataSupported [expr {$::tk_version >= 8.5 &&
[package vcompare $::tk_patchLevel "8.5a2"] >= 0}]
#
# Create the closetab element
#
proc createClosetabElement {} {
::scrollutil::createCloseImages
#
# The "hover" state is not supported by
# Tk versions earlier than 8.5.9 or 8.6b1.
#
variable hover "hover"
if {[package vsatisfies $::tk_patchLevel 8-8.5.9] ||
[package vsatisfies $::tk_patchLevel 8.6-8.6b1]} {
set hover "alternate"
}
#
# The "readonly" state below is used if the closetab element's state for
# the active tab was set to "disabled" via ::scrollutil::closetabstate.
#
set width [expr {[image width scrollutil_closeImg] +
[winfo pixels . 3p]}]
set sticky [expr {[tk windowingsystem] eq "aqua" ? "w" : "e"}]
ttk::style element create closetab image [list scrollutil_closeImg \
[list active pressed] scrollutil_closePressedImg \
[list active $hover !disabled] scrollutil_closeHoverImg \
[list active readonly] scrollutil_closeDisabledImg \
[list disabled] scrollutil_closeDisabledImg \
] -width $width -sticky $sticky
}
ttk::style theme settings default {
if {[lsearch -exact [ttk::style element names] "closetab"] < 0} {
createClosetabElement
}
}
::scrollutil::createLeftArrowImage
::scrollutil::createRightArrowImage
}
#
# Private procedure creating the default bindings
# ===============================================
#
#------------------------------------------------------------------------------
# scrollutil::snb::createBindings
#
# Creates the default bindings for the binding tags Scrollednotebook,
# ScrollednotebookMain, SnbNb, SnbLArrow, and SnbRArrow, and extends the
# default bindings for TNotebook. In addition, creates a <Destroy> binding for
# the binding tag DisabledClosetab.
#------------------------------------------------------------------------------
proc scrollutil::snb::createBindings {} {
bind Scrollednotebook <KeyPress> continue
bind Scrollednotebook <FocusIn> {
if {[focus -lastfor %W] eq "%W"} {
focus [%W.sf contentframe].nb
}
}
bind Scrollednotebook <Map> {
after 100 [list scrollutil::snb::onScrollednotebookMap %W]
}
bind Scrollednotebook <Destroy> {
namespace delete scrollutil::ns%W
catch {rename %W ""}
}
bind Scrollednotebook <<ThemeChanged>> {
scrollutil::snb::onThemeChanged %W
}
bindtags . [linsert [bindtags .] 1 ScrollednotebookMain]
foreach event {<<ThemeChanged>> <<LightAqua>> <<DarkAqua>>} {
bind ScrollednotebookMain $event {
scrollutil::snb::onThemeChanged %W
}
}
bind SnbNb <<NotebookTabChanged>> { scrollutil::snb::onNbTabChanged %W }
bind SnbLArrow <Enter> { %W instate !disabled { %W state active } }
bind SnbRArrow <Enter> { %W instate !disabled { %W state active } }
bind SnbLArrow <Leave> { %W state !active }
bind SnbRArrow <Leave> { %W state !active }
bind SnbLArrow <Button-1> {
%W instate !disabled { ttk::Repeatedly scrollutil::snb::seePrevTab %W }
}
bind SnbRArrow <Button-1> {
%W instate !disabled { ttk::Repeatedly scrollutil::snb::seeNextTab %W }
}
bind SnbLArrow <ButtonRelease-1> { ttk::CancelRepeat }
bind SnbRArrow <ButtonRelease-1> { ttk::CancelRepeat }
#
# Add support for moving and closing the ttk::notebook tabs with the mouse
#
bind TNotebook <Motion> { scrollutil::snb::onMotion %W %x %y }
bind TNotebook <Button-1> { scrollutil::snb::onButton1 %W %x %y }
bind TNotebook <B1-Motion> { scrollutil::snb::onB1Motion %W %x %y }
bind TNotebook <ButtonRelease-1> { scrollutil::snb::onButtonRel1 %W %x %y }
bind TNotebook <Escape> { scrollutil::snb::onEscape %W }
#
# Define the virtual event <<Button3>> and create a binding for it
#
event add <<Button3>> <Button-3>
if {[tk windowingsystem] eq "aqua"} {
event add <<Button3>> <Control-Button-1>
}
variable userDataSupported
if {$userDataSupported} {
bind TNotebook <<Button3>> { scrollutil::snb::onButton3 %W %x %y %X %Y }
}
#
# Implement the navigation between the ttk::notebook tabs via the mouse
# wheel (TIP 591). Use our own bindMouseWheel procedure rather than
# ttk::bindMouseWheel, which was not present in tile before Dec. 2008.
#
bind TNotebook <Enter> {
set scrollutil::xWheelEvents 0; set scrollutil::yWheelEvents 0
}
::scrollutil::bindMouseWheel TNotebook \
{%W instate disabled continue; scrollutil::snb::cycleTab1 %W}
variable ::scrollutil::touchpadScrollSupport
if {$touchpadScrollSupport} {
bind TNotebook <TouchpadScroll> {
%W instate disabled continue
if {%# %% 15 == 0} {
scrollutil::snb::cycleTab2 %W %D
}
}
}
bind DisabledClosetab <Destroy> {
unset -nocomplain scrollutil::closetabStateArr(%W)
}
}
#
# Public procedures
# =================
#
#------------------------------------------------------------------------------
# scrollutil::scrollednotebook
#
# Creates a new scrollednotebook widget whose name is specified as the first
# command-line argument, and configures it according to the options and their
# values given on the command line. Returns the name of the newly created
# widget.
#------------------------------------------------------------------------------
proc scrollutil::scrollednotebook args {
variable usingTile
if {!$usingTile} {
return -code error "package scrollutil_tile is not loaded"
}
variable snb::configSpecs
variable snb::configOpts
if {[llength $args] == 0} {
mwutil::wrongNumArgs "scrollednotebook pathName ?options?"
}
#
# Create a frame of the class Scrollednotebook
#
set win [lindex $args 0]
if {[catch {
ttk::frame $win -class Scrollednotebook -borderwidth 0 -relief flat \
-height 0 -width 0 -padding 0
} result] != 0} {
return -code error $result
}
#
# Create a namespace within the current one to hold the data of the widget
#
namespace eval ns$win {
#
# The following array holds various data for this widget
#
variable data
#
# The following arrays hold the overall
# and horizontal paddings of the panes
#
variable paddingArr
variable xPadArr
#
# The following array is used to hold arbitrary attributes
# and their values for this widget and its pages
#
variable attribs
}
#
# Initialize some components of data
#
upvar ::scrollutil::ns${win}::data data
foreach opt $configOpts {
set data($opt) [lindex $configSpecs($opt) 3]
}
#
# Create a scrollableframe and a ttk::notebook in its content frame
#
set sf [scrollableframe $win.sf -borderwidth 0 -contentheight 0 \
-contentwidth 0 -fitcontentheight 1 -relief flat -takefocus 0 \
-xscrollincrement 1 -yscrollcommand "" -yscrollincrement 1]
$sf autofillx 1 ;# sets/clears the -fitcontentwidth option dynamically
pack $sf -expand 1 -fill both
set cf [$sf contentframe]
set nb [ttk::notebook $cf.nb -height 0 -width 0]
pack $nb -expand 1 -fill both
bindtags $nb [linsert [bindtags $nb] 1 SnbNb]
#
# Create the left and right arrow buttons
#
set lArrow [ttk::label $win.lArrow -class SnbLArrow -borderwidth 2 \
-relief groove -padding 1 -takefocus 0 \
-image scrollutil_leftArrowImg]
set rArrow [ttk::label $win.rArrow -class SnbRArrow -borderwidth 2 \
-relief groove -padding 1 -takefocus 0 \
-image scrollutil_rightArrowImg]
#
# Used to suppress the flickering when scrolling with the arrow buttons:
#
set f [ttk::frame $win.f -borderwidth 0 -relief flat \
-height 0 -width 0 -padding 0 -takefocus 0]
place $f -bordermode outside -relwidth 1.0 -relheight 1.0
lower $f
array set data [list \
sf $sf \
cf $cf \
nb $nb \
lArrow $lArrow \
rArrow $rArrow \
arrowAction 0 \
currentPage "" \
]
#
# Configure the widget according to the command-line
# arguments and to the available database options
#
if {[catch {
mwutil::configureWidget $win configSpecs scrollutil::snb::doConfig \
scrollutil::snb::doCget [lrange $args 1 end] 1
} result] != 0} {
destroy $win
return -code error $result
}
#
# Move the original widget command into the namespace snb within the current
# one and create an alias of the original name for a new widget procedure
#
rename ::$win snb::$win
interp alias {} ::$win {} scrollutil::snb::scrollednotebookWidgetCmd $win
menu $win._m_e_n_u_ -tearoff 0
#
# Extend the library procedure ::ttk::notebook::ActivateTab
#
if {[llength [info commands ActivateTab]] == 0} {
rename ::ttk::notebook::ActivateTab ActivateTab
proc ::ttk::notebook::ActivateTab {nb tabIdx} {
if {[set snb [::scrollutil::snb::containingSnb $nb]] eq ""} {
::scrollutil::ActivateTab $nb $tabIdx
} else {
upvar ::scrollutil::ns${snb}::data data
set data(tabIdx) $tabIdx
if {![info exists data(activateId)]} {
set data(activateId) \
[after 100 [list scrollutil::snb::activateTab $snb]]
}
}
}
}
return $win
}
#------------------------------------------------------------------------------
# scrollutil::addclosetab
#
# Adds the closetab element to the tabs of a given ttk::notebook style.
#------------------------------------------------------------------------------
proc scrollutil::addclosetab nbStyle {
set tabStyle $nbStyle.Tab
set tabLayout [ttk::style layout $tabStyle]
if {[string first "Notebook.closetab" $tabLayout] >= 0} { ;# nothing to do
return 1
}
set oldStr1 "Notebook.label -side top -sticky {}" ;# most themes
set oldStr2 "Notebook.label -sticky nswe" ;# "classic" and "aqua" themes
if {[tk windowingsystem] eq "aqua"} {
set newStr "Notebook.closetab -side left -sticky {}\
Notebook.label -side right -sticky {}"
} else {
set newStr "Notebook.label -side left -sticky {}\
Notebook.closetab -side right -sticky {}"
}
foreach oldStr [list $oldStr1 $oldStr2] {
if {[set first [string first $oldStr $tabLayout]] >= 0} {
set last [expr {$first + [string length $oldStr] - 1}]
ttk::style layout $tabStyle \
[string replace $tabLayout $first $last $newStr]
return 1
}
}
return 0
}
#------------------------------------------------------------------------------
# scrollutil::removeclosetab
#
# Removes the closetab element from the tabs of a given ttk::notebook style.
#------------------------------------------------------------------------------
proc scrollutil::removeclosetab nbStyle {
set tabStyle $nbStyle.Tab
set tabLayout [ttk::style layout $tabStyle]
if {[string first "Notebook.closetab" $tabLayout] < 0} { ;# nothing to do
return 1
}
set oldStr1 "Notebook.label -side left -sticky {}\
Notebook.closetab -side right -sticky {}" ;# on x11/win32
set oldStr2 "Notebook.closetab -side left -sticky {}\
Notebook.label -side right -sticky {}" ;# on aqua
set currentTheme [mwutil::currentTheme]
if {$currentTheme eq "aqua" || $currentTheme eq "classic"} {
set newStr "Notebook.label -sticky nswe"
} else {
set newStr "Notebook.label -side top -sticky {}"
}
foreach oldStr [list $oldStr1 $oldStr2] {
if {[set first [string first $oldStr $tabLayout]] >= 0} {
set last [expr {$first + [string length $oldStr] - 1}]
ttk::style layout $tabStyle \
[string replace $tabLayout $first $last $newStr]
return 1
}
}
return 0
}
#------------------------------------------------------------------------------
# scrollutil::closetabstate
#
# Sets or queries the state of the closetab element of a given ttk::notebook or
# scrollednotebook tab.
#------------------------------------------------------------------------------
proc scrollutil::closetabstate {nb tabId args} {
if {![winfo exists $nb]} {
return -code error "bad window path name \"$nb\""
}
set class [winfo class $nb]
if {$class ne "TNotebook" && $class ne "Scrollednotebook"} {
return -code error \
"\"$nb\" is not a ttk::notebook or scrollednotebook widget"
}
if {[catch {$nb index $tabId} tabIdx] != 0} {
return -code error $tabIdx
} elseif {$tabIdx < 0} {
return -code error "tab index $tabId out of bounds"
}
set widget [lindex [$nb tabs] $tabIdx]
variable closetabStateArr
switch [llength $args] {
0 {
return [expr {[info exists closetabStateArr($widget)] ?
"disabled" : "normal"}]
}
1 {
set state [mwutil::fullOpt "closetab state" [lindex $args 0] \
{normal disabled}]
if {$state eq "disabled"} {
set closetabStateArr($widget) 0
set tagList [bindtags $widget]
if {[lsearch -exact $tagList "DisabledClosetab"] < 0} {
bindtags $widget [linsert $tagList 1 DisabledClosetab]
}
} elseif {[info exists closetabStateArr($widget)]} {
unset closetabStateArr($widget)
set tagList [bindtags $widget]
set idx [lsearch -exact $tagList "DisabledClosetab"]
bindtags $widget [lreplace $tagList $idx $idx]
}
return ""
}
default {
mwutil::wrongNumArgs \
"scrollutil::closetabstate notebook tabId ?normal|disabled?"
}
}
}
#
# Private configuration procedures
# ================================
#
#------------------------------------------------------------------------------
# scrollutil::snb::doConfig
#
# Applies the value val of the configuration option opt to the scrollednotebook
# widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::doConfig {win opt val} {
variable configSpecs
upvar ::scrollutil::ns${win}::data data
#
# Apply the value to the widget corresponding to the given option
#
switch [lindex $configSpecs($opt) 2] {
f {
#
# Apply the value to the frame and save the
# properly formatted value of val in data($opt)
#
$win configure $opt $val
set data($opt) [$win cget $opt]
switch -- $opt {
-cursor {
$data(sf) configure $opt $val
$data(nb) configure $opt $val
}
}
}
n {
#
# Apply the value to the notebook and save the
# properly formatted value of val in data($opt)
#
$data(nb) configure $opt $val
set data($opt) [$data(nb) cget $opt]
switch -- $opt {
-height {
$data(sf) configure $opt [winfo reqheight $data(nb)]
}
-style {
if {$val eq ""} {
set val TNotebook
}
set tabPos [ttk::style lookup $val -tabposition {} nw]
set lMan [winfo manager $data(lArrow)]
set rMan [winfo manager $data(rArrow)]
set pad [expr {$lMan eq "" && $rMan eq "" ? 0 : "3p"}]
switch -- [string index $tabPos 0] {
n { pack configure $data(sf) -pady [list $pad 0] }
s { pack configure $data(sf) -pady [list 0 $pad] }
default {
return -code error "only horizontal tab layouts\
are supported"
}
}
}
}
}
w {
switch -- $opt {
-forgetcommand -
-leavecommand {
set data($opt) $val
}
-movabletabs {
set data($opt) [expr {$val ? 1 : 0}]
}
-width {
set val [winfo pixels $win $val]
if {$val <= 0} {
$data(nb) configure $opt $val
$data(sf) configure $opt [winfo reqwidth $data(nb)]
set data($opt) $val
} else {
$data(sf) configure $opt $val
set data($opt) [$data(sf) cget $opt]
}
}
}
}
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::doCget
#
# Returns the value of the configuration option opt for the scrollednotebook
# widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::doCget {win opt} {
upvar ::scrollutil::ns${win}::data data
return $data($opt)
}
#
# Private procedures implementing the scrollednotebook widget command
# ===================================================================
#
#------------------------------------------------------------------------------
# scrollutil::snb::scrollednotebookWidgetCmd
#
# Processes the Tcl command corresponding to a scrollednotebook widget.
#------------------------------------------------------------------------------
proc scrollutil::snb::scrollednotebookWidgetCmd {win args} {
set argCount [llength $args]
if {$argCount == 0} {
mwutil::wrongNumArgs "$win option ?arg arg ...?"
}
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
variable cmdOpts
set cmd [mwutil::fullOpt "command" [lindex $args 0] $cmdOpts]
set argList [lrange $args 1 end]
switch $cmd {
add {
set widget [lindex $args 1]
set isNew [expr {[lsearch -exact [$nb tabs] $widget] < 0}]
if {[catch {eval [list $nb $cmd] $argList} result] != 0} {
return -code error $result
}
if {$isNew || [lsearch -glob $args "-p*"] >= 2} {
savePaddings $win $widget
updateNbWidth $win
}
return ""
}
adjustsize {
if {$argCount != 1} {
mwutil::wrongNumArgs "$win $cmd"
}
return [adjustsizeSubCmd $win]
}
attrib {
return [::scrollutil::attribSubCmd $win "widget" $argList]
}
cget {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd option"
}
#
# Return the value of the specified configuration option
#
variable configSpecs
set opt [mwutil::fullConfigOpt [lindex $args 1] configSpecs]
return $data($opt)
}
closetabstate {
if {$argCount < 2 || $argCount > 3} {
mwutil::wrongNumArgs "$win $cmd tab ?normal|disabled?"
}
set code [catch {
eval [list ::scrollutil::closetabstate $win] $argList
} result]
return -code $code $result
}
configure {
variable configSpecs
return [mwutil::configureSubCmd $win configSpecs \
scrollutil::snb::doConfig scrollutil::snb::doCget $argList]
}
forget {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd tab"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
if {[catch {$nb index $nbTabId} tabIdx] == 0 &&
$tabIdx >= 0 && $tabIdx < [$nb index end]} {
set widget [lindex [$nb tabs] $tabIdx]
if {[set forgetCmd $data(-forgetcommand)] ne "" &&
![uplevel #0 $forgetCmd [list $win $widget]]} {
return 0
}
}
if {[catch {$nb $cmd $nbTabId} result] != 0} {
return -code error $result
}
upvar ::scrollutil::ns${win}::attribs attribs
array unset attribs $widget-*
forgetPaddings $win $widget
updateNbWidth $win
return 1
}
hasattrib -
unsetattrib {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd name"
}
return [::scrollutil::${cmd}SubCmd $win "widget" [lindex $args 1]]
}
hastabattrib -
unsettabattrib {
if {$argCount != 3} {
mwutil::wrongNumArgs "$win $cmd tab name"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
if {[catch {$nb index $nbTabId} tabIdx] != 0} {
return -code error $tabIdx
} elseif {$tabIdx < 0 || $tabIdx >= [$nb index end]} {
return -code error "tab index $tabId out of bounds"
}
set first [string first "tab" $cmd]
set last [expr {$first + 2}]
set cmd [string replace $cmd $first $last] ;# (has|unset)attrib
set widget [lindex [$nb tabs] $tabIdx]
return [::scrollutil::${cmd}SubCmd $win $widget [lindex $args 2]]
}
hide {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd tab"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
set code [catch {$nb $cmd $nbTabId} result]
return -code $code $result
}
identify {
if {[catch {eval [list $nb $cmd] $argList} result] != 0} {
return -code error $result
}
set xIdx [expr {$argCount - 3}]
set x [lindex $argList $xIdx]
foreach {first last} [$data(sf) xview] {}
set cfWidth [winfo width $data(cf)]
incr x [expr {int($first * $cfWidth + 0.5)}]
set argList [lreplace $argList $xIdx $xIdx $x]
return [eval [list $nb $cmd] $argList]
}
index {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd tab"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
set code [catch {$nb $cmd $nbTabId} result]
return -code $code $result
}
insert {
set widget [lindex $args 2]
set isNew [expr {[lsearch -exact [$nb tabs] $widget] < 0}]
if {[catch {eval [list $nb $cmd] $argList} result] != 0} {
return -code error $result
}
if {$isNew || [lsearch -glob $args "-p*"] >= 3} {
savePaddings $win $widget
updateNbWidth $win
}
if {[::$win index $widget] == [::$win index current]} {
after idle [list scrollutil::snb::seeSubCmd $win $widget]
}
return ""
}
instate {
if {$argCount < 2 || $argCount > 3} {
mwutil::wrongNumArgs "$win $cmd stateSpec ?script?"
}
set stateSpec [lindex $args 1]
if {$argCount == 2} {
return [$nb instate $stateSpec]
} elseif {[$nb instate $stateSpec]} {
return -code [catch {uplevel 1 [lindex $args 2]}] ""
} else {
return ""
}
}
notebookpath {
if {$argCount != 1} {
mwutil::wrongNumArgs "$win $cmd"
}
return $nb
}
see {
if {$argCount != 2} {
mwutil::wrongNumArgs "$win $cmd tab"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
if {[catch {$nb index $nbTabId} tabIdx] != 0} {
return -code error $tabIdx
} elseif {$tabIdx < 0 || $tabIdx >= [$nb index end]} {
return -code error "tab index $tabId out of bounds"
}
set code [catch {seeSubCmd $win $tabIdx} result]
return -code $code $result
}
select {
switch $argCount {
1 { return [$nb $cmd] }
2 {
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
if {[catch {$nb index $nbTabId} tabIdx] != 0} {
return -code error $tabIdx
} elseif {$tabIdx < 0 || $tabIdx >= [$nb index end]} {
return -code error "tab index $tabId out of bounds"
}
#
# Adjust the horizontal padding of the pane corresponding
# to $tabIdx prior to selecting the tab -- this will
# quite significantly reduce the flickering effect
#
if {[$nb tab $tabIdx -state] eq "normal"} {
seeSubCmd $win $tabIdx
foreach {first last} [$data(sf) xview] {}
adjustXPad $win $tabIdx $first $last
}
$nb select $tabIdx
set widget [$nb select]
after idle [list scrollutil::snb::seeSubCmd $win $widget]
return ""
}
default { mwutil::wrongNumArgs "$win $cmd ?tab?" }
}
}
state {
if {[catch {eval [list $nb $cmd] $argList} result] != 0} {
return -code error $result
}
if {$argCount > 1} {
set stateSpec [expr {
[$nb instate disabled] ? "disabled" : "!disabled"}]
foreach w [list $data(lArrow) $data(rArrow)] {
$w state $stateSpec
}
}
return $result
}
style {
if {$argCount != 1} {
mwutil::wrongNumArgs "$win $cmd"
}
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
return $style
}
tab {
if {$argCount < 2} {
mwutil::wrongNumArgs \
"$win $cmd tab ?option ?value option value ...??"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
set argList [lreplace $argList 0 0 $nbTabId]
if {[catch {eval [list $nb $cmd] $argList} result] != 0} {
return -code error $result
}
set tabIdx [$nb index $nbTabId]
if {$argCount == 2} {
set idx [expr {[lsearch -exact $result "-padding"] + 1}]
set result \
[lreplace $result $idx $idx [origPadding $win $tabIdx]]
} elseif {$argCount == 3 && [string match "-p*" [lindex $args 2]]} {
set result [origPadding $win $tabIdx]
} elseif {$argCount > 3 && [lsearch -glob $args "-p*"] >= 2} {
set widget [lindex [$nb tabs] $tabIdx]
savePaddings $win $widget
updateNbWidth $win
}
return $result
}
tabattrib {
if {$argCount < 2} {
mwutil::wrongNumArgs \
"$win $cmd tab ?name ?value name value ...??"
}
set tabId [lindex $args 1]
set nbTabId [snbTabIdToNbTabId $win $tabId]
if {[catch {$nb index $nbTabId} tabIdx] != 0} {
return -code error $tabIdx
} elseif {$tabIdx < 0 || $tabIdx >= [$nb index end]} {
return -code error "tab index $tabId out of bounds"
}
set widget [lindex [$nb tabs] $tabIdx]
return [::scrollutil::attribSubCmd $win $widget \
[lrange $args 2 end]]
}
tabs {
set code [catch {eval [list $nb $cmd] $argList} result]
return -code $code $result
}
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::adjustsizeSubCmd
#
# Processes the scrollednotebook adjustsize subcommmand.
#------------------------------------------------------------------------------
proc scrollutil::snb::adjustsizeSubCmd win {
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
set maxWidth 0
foreach widget [$nb tabs] {
set padding [::$win tab $widget -padding]
foreach {l t r b} [mwutil::parsePadding $win $padding] {}
set reqWidth [expr {[winfo reqwidth $widget] + $l + $r}]
if {$reqWidth > $maxWidth} {
set maxWidth $reqWidth
}
}
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
if {[set padding [$nb cget -padding]] eq ""} {
set padding [ttk::style lookup $style -padding]
}
foreach {l t r b} [mwutil::parsePadding $win $padding] {}
incr maxWidth [expr {$l + $r}]
incr maxWidth [expr {[mwutil::currentTheme] eq "aqua" ? 18 : 4}]
::$win configure -width $maxWidth
update idletasks
if {[destroyed $win]} {
return ""
}
set maxHeight 0
foreach widget [$nb tabs] {
set padding [::$win tab $widget -padding]
foreach {l t r b} [mwutil::parsePadding $win $padding] {}
set reqHeight [expr {[winfo reqheight $widget] + $t + $b}]
if {$reqHeight > $maxHeight} {
set maxHeight $reqHeight
}
}
::$win configure -height $maxHeight
return ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::seeSubCmd
#
# Processes the scrollednotebook see subcommmand.
#------------------------------------------------------------------------------
proc scrollutil::snb::seeSubCmd {win nbTabId {dir ""}} {
if {[destroyed $win]} {
return ""
}
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
if {[string index $nbTabId 0] eq "." &&
[lsearch -exact [$nb tabs] $nbTabId] < 0} {
return ""
}
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
if {[set padding [$nb cget -padding]] eq ""} {
set padding [ttk::style lookup $style -padding]
}
foreach {l t r b} [mwutil::parsePadding $win $padding] {}
set tabIdx [$nb index $nbTabId]
if {[winfo height $nb] < 10 + $t + $b ||
[$nb tab $tabIdx -state] eq "hidden"} {
return ""
}
set sf $data(sf)
if {$tabIdx == [firstNonHiddenTab $nb]} {
foreach {leftTabIdx leftCompl rightTabIdx rightCompl} [tabsView $win] {}
if {$leftTabIdx == $tabIdx} {
if {!$leftCompl || $dir eq "R"} {
$sf xview moveto 0.0
}
} else {
$sf xview moveto 0.0
}
} elseif {$tabIdx == [lastNonHiddenTab $nb]} {
foreach {leftTabIdx leftCompl rightTabIdx rightCompl} [tabsView $win] {}
if {$rightTabIdx == $tabIdx} {
if {!$rightCompl || $dir eq "L"} {
$sf xview moveto 1.0
}
} else {
$sf xview moveto 1.0
}
}
#
# Bring the tab $tab of $nb into view
#
set y [yCoordForTabs $nb]
set x1 0
while {[set idx [$nb index @$x1,$y]] < 0 || $idx < $tabIdx} {
incr x1 10
}
incr x1 -10
while {[$nb index @$x1,$y] < $tabIdx} {
incr x1
}
set x2 $x1
while {[$nb index @$x2,$y] == $tabIdx} {
incr x2
}
$sf seerect $x1 0 $x2 0
return ""
}
#
# Private callback procedure
# ==========================
#
#------------------------------------------------------------------------------
# scrollutil::snb::adjustXPad
#
# This procedure is the value of the -xscrollcommand option of the
# scrollableframe contained in the scrollednotebook widget win. It adjusts the
# horizontal padding of the specified pane according to the xview values of the
# scrollableframe widget, and shows or hides the left and right arrows.
#------------------------------------------------------------------------------
proc scrollutil::snb::adjustXPad {win tabIdx first last} {
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
if {$tabIdx < 0 && [set tabIdx [$nb index current]] < 0} {
return ""
}
set cfWidth [winfo width $data(cf)]
foreach {left right} [origXPad $win $tabIdx] {}
incr left [expr {int($cfWidth * $first + 0.5)}]
incr right [expr {$cfWidth - int($cfWidth * $last + 0.5)}]
foreach {l top r bottom} \
[mwutil::parsePadding $win [origPadding $win $tabIdx]] {}
if {$data(arrowAction)} {
set data(arrowAction) 0
#
# Make sure that $win.f won't cover the tab row when raised
#
set y [yCoordForTabs $nb]
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
set tabPos [ttk::style lookup $style -tabposition {} nw]
set f $win.f
if {[string index $tabPos 0] eq "n"} {
incr y [winfo pixels $win 3p]
place configure $f -height "" -y [incr y 11] ;# -relheight 1.0
} else {
set height -[expr {[winfo height $win] - $y + 10}]
place configure $f -height $height -y "" ;# -relheight 1.0
}
#
# Suppress the flickering by temporarily laying $win.f over $win
#
raise $f
$nb tab $tabIdx -padding [list $left $top $right $bottom]
if {[tk windowingsystem] eq "win32"} {
update idletasks
if {[destroyed $win]} {
return ""
}
}
lower $f
} else {
$nb tab $tabIdx -padding [list $left $top $right $bottom]
}
showHideArrowsDelayed $win
}
#
# Private procedures used in bindings
# ===================================
#
#------------------------------------------------------------------------------
# scrollutil::snb::onScrollednotebookMap
#------------------------------------------------------------------------------
proc scrollutil::snb::onScrollednotebookMap win {
if {[destroyed $win]} {
return ""
}
upvar ::scrollutil::ns${win}::data data
set sf $data(sf)
set nb $data(nb)
$sf configure -height [winfo reqheight $nb]
if {$data(-width) <= 0} {
$sf configure -width [winfo reqwidth $nb]
}
$sf configure -xscrollcommand [list scrollutil::snb::adjustXPad $win -1]
updateNbWidth $win
onNbTabChanged $nb
}
#------------------------------------------------------------------------------
# scrollutil::snb::onThemeChanged
#------------------------------------------------------------------------------
proc scrollutil::snb::onThemeChanged w {
if {$w eq "."} {
::scrollutil::getForegroundColors normalFg disabledFg
::scrollutil::setImgForeground scrollutil_closeImg $normalFg
::scrollutil::setImgForeground scrollutil_closeDisabledImg $disabledFg
::scrollutil::setImgForeground scrollutil_leftArrowImg $normalFg
::scrollutil::setImgForeground scrollutil_rightArrowImg $normalFg
} else {
doConfig $w -style [doCget $w -style]
updateNbWidth $w
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::onNbTabChanged
#------------------------------------------------------------------------------
proc scrollutil::snb::onNbTabChanged nb {
set win [containingSnb $nb]
upvar ::scrollutil::ns${win}::data data
set currentPage $data(currentPage)
#
# Invoke the command specified as the value
# of the -leavecommand option if appropriate
#
set widget [$nb select]
if {$widget ne "" && $widget ne $currentPage &&
[lsearch -exact [$nb tabs] $currentPage] >= 0 &&
[$nb tab $currentPage -state] eq "normal" &&
[set cmd $data(-leavecommand)] ne ""} {
#
# Deactivate the mouse wheel bindings for the notebook while
# executing the command, which might pop up a message box
#
::scrollutil::bindMouseWheel $nb break
variable ::scrollutil::touchpadScrollSupport
if {$touchpadScrollSupport} {
bind $nb <TouchpadScroll> break
}
set result [uplevel #0 $cmd [list $win $currentPage]]
::scrollutil::bindMouseWheel $nb ""
if {$touchpadScrollSupport} {
bind $nb <TouchpadScroll> ""
}
if {!$result} {
#
# Restore the selection to $currentPage
#
bind $nb <<NotebookTabChanged>> {}
$nb select $currentPage
after idle [list scrollutil::snb::seeSubCmd $win $currentPage]
after 1 [list scrollutil::snb::restoreTabChangedBinding $nb]
return ""
}
}
set data(currentPage) $widget
event generate $win <<NotebookTabChanged>>
}
#------------------------------------------------------------------------------
# scrollutil::snb::restoreTabChangedBinding
#------------------------------------------------------------------------------
proc scrollutil::snb::restoreTabChangedBinding nb {
if {![winfo exists $nb] || [winfo class $nb] ne "TNotebook"} {
return ""
}
bind $nb <<NotebookTabChanged>> { scrollutil::snb::onNbTabChanged %W }
}
#------------------------------------------------------------------------------
# scrollutil::snb::seePrevTab
#------------------------------------------------------------------------------
proc scrollutil::snb::seePrevTab w {
set win [winfo parent $w]
upvar ::scrollutil::ns${win}::data data
set data(arrowAction) 1
set leftTabIdx $data(leftTabIdx)
set leftCompl $data(leftCompl)
set tabIdx [expr {$leftCompl ? [prevNonHiddenTab $data(nb) $leftTabIdx]
: $leftTabIdx}]
seeSubCmd $win $tabIdx L
}
#------------------------------------------------------------------------------
# scrollutil::snb::seeNextTab
#------------------------------------------------------------------------------
proc scrollutil::snb::seeNextTab w {
set win [winfo parent $w]
upvar ::scrollutil::ns${win}::data data
set data(arrowAction) 1
set rightTabIdx $data(rightTabIdx)
set rightCompl $data(rightCompl)
set tabIdx [expr {$rightCompl ? [nextNonHiddenTab $data(nb) $rightTabIdx]
: $rightTabIdx}]
seeSubCmd $win $tabIdx R
}
#------------------------------------------------------------------------------
# scrollutil::snb::onMotion
#------------------------------------------------------------------------------
proc scrollutil::snb::onMotion {nb x y} {
variable hover
if {[$nb identify $x $y] eq "closetab"} {
if {[::scrollutil::closetabstate $nb @$x,$y] eq "normal"} {
$nb state $hover
} else {
$nb state readonly
}
} else {
$nb state [list !$hover !readonly]
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::onButton1
#------------------------------------------------------------------------------
proc scrollutil::snb::onButton1 {nb x y} {
if {[$nb instate disabled] || [set tabIdx [$nb index @$x,$y]] < 0} {
return ""
}
variable stateArr
if {[$nb identify $x $y] eq "closetab"} {
if {[$nb tab $tabIdx -state] eq "normal" &&
[::scrollutil::closetabstate $nb $tabIdx] eq "normal"} {
$nb state pressed
set stateArr(closeIdx) $tabIdx
}
#
# The following trick activates the closetab element's
# dark red background color corresponding to the
# "pressed" state, which is necessary on some desktops:
#
event generate $nb <B1-Motion> -x $x -y $y
return ""
}
::ttk::notebook::ActivateTab $nb $tabIdx
if {[set snb [containingSnb $nb]] ne "" && ![::$snb cget -movabletabs]} {
return ""
}
set stateArr(sourceIdx) $tabIdx
set stateArr(cursor) [$nb cget -cursor]
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
set tabPos [ttk::style lookup $style -tabposition {} nw]
switch -- [string index $tabPos 0] {
n {
set stateArr(orient) h
while {[$nb index @$x,$y] >= 0} { incr y }
set stateArr(y) [incr y -10]
}
s {
set stateArr(orient) h
while {[$nb index @$x,$y] >= 0} { incr y -1 }
set stateArr(y) [incr y 10]
}
w {
set stateArr(orient) v
while {[$nb index @$x,$y] >= 0} { incr x }
set stateArr(x) [incr x -10]
}
e {
set stateArr(orient) v
while {[$nb index @$x,$y] >= 0} { incr x -1 }
set stateArr(x) [incr x 10]
}
default {
set stateArr(orient) h
while {[$nb index @$x,$y] >= 0} { incr y }
set stateArr(y) [incr y -10]
}
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::onB1Motion
#------------------------------------------------------------------------------
proc scrollutil::snb::onB1Motion {nb x y} {
variable stateArr
set tabIdx [$nb index @$x,$y]
if {[$nb identify $x $y] eq "closetab" && $tabIdx == $stateArr(closeIdx)} {
$nb state pressed
} else {
variable hover
$nb state [list !pressed !$hover]
}
if {[set sourceIdx $stateArr(sourceIdx)] < 0} {
return ""
}
if {$stateArr(orient) eq "h"} {
set y $stateArr(y)
} else {
set x $stateArr(x)
}
if {[set snb [containingSnb $nb]] ne ""} {
$snb.sf seerect $x $y $x $y
}
if {$tabIdx < 0 || $tabIdx == $sourceIdx} {
$nb configure -cursor $stateArr(cursor)
set stateArr(targetIdx) ""
} else {
if {$stateArr(orient) eq "h"} {
if {$tabIdx < $sourceIdx} {
$nb configure -cursor sb_left_arrow
} else {
$nb configure -cursor sb_right_arrow
}
} else {
if {$tabIdx < $sourceIdx} {
$nb configure -cursor sb_up_arrow
} else {
$nb configure -cursor sb_down_arrow
}
}
set stateArr(targetIdx) $tabIdx
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::onButtonRel1
#------------------------------------------------------------------------------
proc scrollutil::snb::onButtonRel1 {nb x y} {
variable hover
$nb state [list !pressed !$hover]
set snb [containingSnb $nb]
set w [expr {$snb eq "" ? $nb : $snb}]
variable stateArr
variable userDataSupported
if {[$nb identify $x $y] eq "closetab" &&
[set tabIdx [$nb index @$x,$y]] == $stateArr(closeIdx)} {
set widget [lindex [$nb tabs] $tabIdx]
if {$snb eq ""} {
if {$userDataSupported} {
event generate $w <<CloseTabRequested>> -data $tabIdx
set closed 0
} else {
$nb forget $tabIdx
set closed 1
}
} else {
set closed [::$snb forget $tabIdx]
}
if {$closed && $userDataSupported} {
event generate $w <<NotebookTabClosed>> -data $widget
}
set stateArr(closeIdx) ""
return ""
}
set stateArr(closeIdx) ""
if {$stateArr(targetIdx) >= 0} {
#
# Move the tab $sourceIdx of $w to the position $targetIdx
#
set sourceIdx $stateArr(sourceIdx)
set targetIdx $stateArr(targetIdx)
set widget [lindex [$nb tabs] $sourceIdx]
::$w insert $targetIdx $widget
$nb configure -cursor $stateArr(cursor)
if {$userDataSupported} {
event generate $w <<NotebookTabMoved>> \
-data [list $widget $targetIdx]
}
set stateArr(targetIdx) ""
}
set stateArr(sourceIdx) ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::onEscape
#------------------------------------------------------------------------------
proc scrollutil::snb::onEscape nb {
variable stateArr
if {$stateArr(targetIdx) >= 0} {
$nb configure -cursor $stateArr(cursor)
set stateArr(targetIdx) ""
}
set stateArr(sourceIdx) ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::onButton3
#------------------------------------------------------------------------------
proc scrollutil::snb::onButton3 {nb x y rootX rootY} {
if {[$nb instate disabled] || [set tabIdx [$nb index @$x,$y]] < 0} {
return ""
}
if {[set snb [containingSnb $nb]] eq ""} {
for {set n 0} {1} {incr n} {
set menu $nb._m_e_n_u_${n}_
if {[winfo exists $menu]} {
if {[winfo class $menu] eq "Menu"} {
break
}
} else {
menu $menu -tearoff no
break
}
}
} else {
set menu $snb._m_e_n_u_
}
$menu delete 0 end
set w [expr {$snb eq "" ? $nb : $snb}]
event generate $w <<MenuItemsRequested>> -data [list $menu $tabIdx]
after 100 [list scrollutil::snb::postMenu $menu $rootX $rootY]
}
#------------------------------------------------------------------------------
# scrollutil::snb::postMenu
#------------------------------------------------------------------------------
proc scrollutil::snb::postMenu {menu rootX rootY} {
#
# This is an "after 100" callback; check
# whether the menu exists and has items
#
if {![winfo exists $menu] || [winfo class $menu] ne "Menu" ||
[$menu index end] eq "none"} {
return ""
}
#
# For awthemes:
#
catch {ttk::theme::[mwutil::currentTheme]::setMenuColors $menu}
tk_popup $menu $rootX $rootY
}
#------------------------------------------------------------------------------
# scrollutil::snb::cycleTab1
#------------------------------------------------------------------------------
proc scrollutil::snb::cycleTab1 {win axis dir {divisor 1.0}} {
#
# Count both the <MouseWheel> and <Shift-MouseWheel>
# events, and ignore the non-dominant ones
#
variable ::scrollutil::xWheelEvents
variable ::scrollutil::yWheelEvents
incr ${axis}WheelEvents
if {($xWheelEvents + $yWheelEvents > 10) &&
($axis eq "x" && $xWheelEvents < $yWheelEvents ||
$axis eq "y" && $yWheelEvents < $xWheelEvents)} {
return ""
}
variable ::scrollutil::uniformWheelSupport
if {$uniformWheelSupport} {
ttk::notebook::CycleTab $win $dir $divisor
} else {
ttk::notebook::CycleTab $win $dir
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::cycleTab2
#------------------------------------------------------------------------------
proc scrollutil::snb::cycleTab2 {win dxdy} {
if {[set style [$win cget -style]] eq ""} {
set style TNotebook
}
set tabSide [string index [ttk::style lookup $style -tabposition {} nw] 0]
lassign [tk::PreciseScrollDeltas $dxdy] deltaX deltaY
if {$tabSide in {n s} && $deltaX != 0} {
ttk::notebook::CycleTab $win [expr {$deltaX < 0 ? -1 : 1}]
} elseif {$tabSide in {w e} && $deltaY != 0} {
ttk::notebook::CycleTab $win [expr {$deltaY < 0 ? -1 : 1}]
}
}
#
# Private utility procedures
# ==========================
#
#------------------------------------------------------------------------------
# scrollutil::snb::containingSnb
#
# Returns the scrollednotebook containing a given ttk::notebook widget.
#------------------------------------------------------------------------------
proc scrollutil::snb::containingSnb nb {
set par [winfo parent $nb]
while {[winfo exists $par]} {
if {[winfo class $par] eq "Scrollednotebook" &&
$nb eq "[$par.sf contentframe].nb"} {
return $par
} else {
set par [winfo parent $par]
}
}
return ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::nonHiddenTabCount
#
# Returns the number of nonhidden tabs of a given ttk::notebook widget.
#------------------------------------------------------------------------------
proc scrollutil::snb::nonHiddenTabCount nb {
set result 0
set tabCount [$nb index end]
for {set tabIdx 0} {$tabIdx < $tabCount} {incr tabIdx} {
if {[$nb tab $tabIdx -state] ne "hidden"} {
incr result
}
}
return $result
}
#------------------------------------------------------------------------------
# scrollutil::snb::nextNonHiddenTab
#
# Returns the index of the next nonhidden tab of a given ttk::notebook widget.
# It is assumed that -1 <= $tabIdx < [$nb index end].
#------------------------------------------------------------------------------
proc scrollutil::snb::nextNonHiddenTab {nb tabIdx} {
set tabCount [$nb index end]
for {incr tabIdx} {$tabIdx < $tabCount} {incr tabIdx} {
if {[$nb tab $tabIdx -state] ne "hidden"} {
return $tabIdx
}
}
return ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::prevNonHiddenTab
#
# Returns the index of the previous nonhidden tab of a given ttk::notebook
# widget. It is assumed that 0 <= $tabIdx <= [$nb index end].
#------------------------------------------------------------------------------
proc scrollutil::snb::prevNonHiddenTab {nb tabIdx} {
for {incr tabIdx -1} {$tabIdx >= 0} {incr tabIdx -1} {
if {[$nb tab $tabIdx -state] ne "hidden"} {
return $tabIdx
}
}
return ""
}
#------------------------------------------------------------------------------
# scrollutil::snb::firstNonHiddenTab
#
# Returns the index of the first nonhidden tab of a given ttk::notebook widget.
#------------------------------------------------------------------------------
proc scrollutil::snb::firstNonHiddenTab nb {
return [nextNonHiddenTab $nb -1]
}
#------------------------------------------------------------------------------
# scrollutil::snb::lastNonHiddenTab
#
# Returns the index of the last nonhidden tab of a given ttk::notebook widget.
#------------------------------------------------------------------------------
proc scrollutil::snb::lastNonHiddenTab nb {
return [prevNonHiddenTab $nb [$nb index end]]
}
#------------------------------------------------------------------------------
# scrollutil::snb::yCoordForTabs
#
# Returns a y coordinate within a given ttk::notebook widget which is suitable
# for tab indices of the form "@x,y".
#------------------------------------------------------------------------------
proc scrollutil::snb::yCoordForTabs nb {
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
set tabPos [ttk::style lookup $style -tabposition {} nw]
if {[set padding [$nb cget -padding]] eq ""} {
set padding [ttk::style lookup $style -padding]
}
foreach {l t r b} [mwutil::parsePadding $nb $padding] {}
switch -- $tabPos {
nw - sw { set x [expr {$l + 10}] }
n - s { set x [expr {[winfo width $nb] / 2}] }
ne - se { set x [expr {[winfo width $nb] - $r - 11}] }
}
set height [winfo height $nb]
if {[string index $tabPos 0] eq "n"} {
set y $height
while {$y >= 0 && [$nb index @$x,$y] < 0} {
incr y -10
}
incr y 10
while {[$nb index @$x,$y] < 0} {
incr y -1
}
return [incr y -9]
} else {
set y 0
while {$y < $height && [$nb index @$x,$y] < 0} {
incr y 10
}
incr y -10
while {[$nb index @$x,$y] < 0} {
incr y
}
return [incr y 9]
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::tabsView
#
# For a scrollednotebook widget win, the procedure returns a list consisting of
# the following 4 elements:
# - index of the first tab in window, for short "left tab";
# - a boolean indicating whether the left tab is fully visible;
# - index of the last tab in window, for short "right tab";
# - a boolean indicating whether the right tab is fully visible.
#------------------------------------------------------------------------------
proc scrollutil::snb::tabsView win {
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
if {[winfo height $nb] < 10 || [nonHiddenTabCount $nb] == 0} {
return {"" 0 "" 0}
}
if {[winfo ismapped $win]} {
update idletasks
if {[destroyed $win]} {
return {"" 0 "" 0}
}
}
foreach {first last} [$data(sf) xview] {}
set cfWidth [winfo width $data(cf)]
set leftX [expr {int($first * $cfWidth + 0.5)}]
set rightX [expr {int($last * $cfWidth + 0.5)}]
set y [yCoordForTabs $nb]
set x [expr {$leftX == 0 ? -9 : $leftX}]
while {$x < $rightX && [set leftTabIdx [$nb index @$x,$y]] < 0} {
incr x
}
set leftCompl [expr {[$nb index @[incr x -1],$y] != $leftTabIdx}]
set x [expr {$rightX == $cfWidth ? $rightX + 9 : $rightX - 1}]
while {$x >= $leftX && [set rightTabIdx [$nb index @$x,$y]] < 0} {
incr x -1
}
set rightCompl [expr {[$nb index @[incr x],$y] != $rightTabIdx}]
return [list $leftTabIdx $leftCompl $rightTabIdx $rightCompl]
}
#------------------------------------------------------------------------------
# scrollutil::snb::showHideArrowsDelayed
#
# Schedules the showHideArrowsDelayed proc for delayed execution.
#------------------------------------------------------------------------------
proc scrollutil::snb::showHideArrowsDelayed win {
upvar ::scrollutil::ns${win}::data data
if {![info exists data(arrowsId)]} {
set data(arrowsId) \
[after 100 [list scrollutil::snb::showHideArrows $win]]
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::showHideArrows
#
# Shows or hides the left and right arrows of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::showHideArrows win {
if {[destroyed $win]} {
return ""
}
upvar ::scrollutil::ns${win}::data data
unset data(arrowsId)
set nb $data(nb)
set sf $data(sf)
set lArrow $data(lArrow)
set rArrow $data(rArrow)
foreach {leftTabIdx leftCompl rightTabIdx rightCompl} [tabsView $win] {}
set data(leftTabIdx) $leftTabIdx
set data(leftCompl) $leftCompl
set data(rightTabIdx) $rightTabIdx
set data(rightCompl) $rightCompl
if {[set style [$nb cget -style]] eq ""} {
set style TNotebook
}
set tabPos [ttk::style lookup $style -tabposition {} nw]
set tabSide [string index $tabPos 0]
if {$leftTabIdx >= 0 &&
!($leftTabIdx == [firstNonHiddenTab $nb] && $leftCompl)} {
if {$tabSide eq "n"} {
place $lArrow -anchor nw -relx 0.0 -rely 0.0
} else {
place $lArrow -anchor sw -relx 0.0 -rely 1.0
}
} else {
place forget $lArrow
if {[string match "*scrollutil::snb::seePrevTab*" \
$::ttk::Repeat(script)]} {
::ttk::CancelRepeat
}
}
if {$rightTabIdx >= 0 &&
!($rightTabIdx == [lastNonHiddenTab $nb] && $rightCompl)} {
if {$tabSide eq "n"} {
place $rArrow -anchor ne -relx 1.0 -rely 0.0
} else {
place $rArrow -anchor se -relx 1.0 -rely 1.0
}
} else {
place forget $rArrow
if {[string match "*scrollutil::snb::seeNextTab*" \
$::ttk::Repeat(script)]} {
::ttk::CancelRepeat
}
}
set lMan [winfo manager $lArrow]
set rMan [winfo manager $rArrow]
set pad [expr {$lMan eq "" && $rMan eq "" ? 0 : "3p"}]
pack configure $sf -padx $pad
switch -- $tabSide {
n { pack configure $sf -pady [list $pad 0] }
s { pack configure $sf -pady [list 0 $pad] }
}
}
#------------------------------------------------------------------------------
# scrollutil::snb::activateTab
#
# Activates the tab data(tabIdx) of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::activateTab win {
if {[destroyed $win]} {
return ""
}
upvar ::scrollutil::ns${win}::data data
unset data(activateId)
set tabIdx $data(tabIdx)
set nb $data(nb)
#
# Adjust the horizontal padding of the pane corresponding to $tabIdx
# prior to selecting the tab via ::scrollutil::ActivateTab --
# this will quite significantly reduce the flickering effect
#
if {[$nb tab $tabIdx -state] eq "normal"} {
seeSubCmd $win $tabIdx
foreach {first last} [$data(sf) xview] {}
adjustXPad $win $tabIdx $first $last
}
::scrollutil::ActivateTab $nb $tabIdx
after idle [list scrollutil::snb::seeSubCmd $win [$nb select]]
}
#------------------------------------------------------------------------------
# scrollutil::snb::savePaddings
#
# Saves the overall and horizontal paddings of the pane identified by a given
# widget of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::savePaddings {win widget} {
upvar ::scrollutil::ns${win}::data data \
::scrollutil::ns${win}::paddingArr paddingArr \
::scrollutil::ns${win}::xPadArr xPadArr
set padding [$data(nb) tab $widget -padding]
set paddingArr($widget) $padding
foreach {l t r b} [mwutil::parsePadding $win $padding] {}
set xPadArr($widget) [list $l $r]
}
#------------------------------------------------------------------------------
# scrollutil::snb::forgetPaddings
#
# Forgets the overall and horizontal paddings of the pane identified by a given
# widget of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::forgetPaddings {win widget} {
upvar ::scrollutil::ns${win}::paddingArr paddingArr \
::scrollutil::ns${win}::xPadArr xPadArr
unset paddingArr($widget) xPadArr($widget)
}
#------------------------------------------------------------------------------
# scrollutil::snb::origPadding
#
# Returns the saved overall padding of the pane identified by a given tab index
# of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::origPadding {win tabIdx} {
upvar ::scrollutil::ns${win}::data data \
::scrollutil::ns${win}::paddingArr paddingArr
set widget [lindex [$data(nb) tabs] $tabIdx]
return $paddingArr($widget)
}
#------------------------------------------------------------------------------
# scrollutil::snb::origXPad
#
# Returns the saved horizontal padding of the pane identified by a given tab
# index of the scrollednotebook widget win.
#------------------------------------------------------------------------------
proc scrollutil::snb::origXPad {win tabIdx} {
upvar ::scrollutil::ns${win}::data data \
::scrollutil::ns${win}::xPadArr xPadArr
set widget [lindex [$data(nb) tabs] $tabIdx]
return $xPadArr($widget)
}
#------------------------------------------------------------------------------
# scrollutil::snb::updateNbWidth
#
# Updates the -width option of the notebook component of the scrollednotebook
# widget win and adjusts the current pane's horizontal padding.
#------------------------------------------------------------------------------
proc scrollutil::snb::updateNbWidth win {
upvar ::scrollutil::ns${win}::data data
set nb $data(nb)
set maxWidth 0
set tabIdx 0
foreach widget [$nb tabs] {
set width [winfo reqwidth $widget]
foreach {l r} [origXPad $win $tabIdx] {}
incr width [expr {$l + $r}]
if {$width > $maxWidth} {
set maxWidth $width
}
incr tabIdx
}
$nb configure -width $maxWidth
foreach {first last} [$data(sf) xview] {}
adjustXPad $win -1 $first $last
}
#------------------------------------------------------------------------------
# scrollutil::snb::destroyed
#
# Checks whether the scrollednotebook widget win got destroyed by some custom
# script.
#------------------------------------------------------------------------------
proc scrollutil::snb::destroyed win {
#
# A bit safer than using "winfo exists", because the widget might have
# been destroyed and its name reused for a new non-scrollednotebook widget:
#
return [expr {![array exists ::scrollutil::ns${win}::data] ||
[winfo class $win] ne "Scrollednotebook"}]
}
#------------------------------------------------------------------------------
# scrollutil::snb::snbTabIdToNbTabId
#
# If the scrollednotebook tab identifier tabId is of the form “@x,y” then
# returns a tab identifier of the same form, in which x is relative to the
# internal ttk::notebook widget; otherwise returns tabId unchanged.
#------------------------------------------------------------------------------
proc scrollutil::snb::snbTabIdToNbTabId {win tabId} {
upvar ::scrollutil::ns${win}::data data
##nagelfar ignore
if {[scan $tabId "@%d,%d%n" x y count] == 3 &&
$count == [string length $tabId]} {
foreach {first last} [$data(sf) xview] {}
set cfWidth [winfo width $data(cf)]
incr x [expr {int($first * $cfWidth + 0.5)}]
return "@$x,$y"
} else {
return $tabId
}
}
|