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
|
# ::utils::win::Centre
#
# Centres a window on the screen.
#
proc ::utils::win::Centre {w} {
if { $::docking::USE_DOCKING } { return }
wm withdraw $w
update idletasks
set x [expr {[winfo screenwidth $w]/2 - [winfo reqwidth $w]/2 \
- [winfo vrootx .]}]
set y [expr {[winfo screenheight $w]/2 - [winfo reqheight $w]/2 \
- [winfo vrooty .]}]
wm geom $w +$x+$y
wm deiconify $w
}
################################################################################
# Scrolledframe.tcl file integrated here for convenience
################################################################################
if {[info exists ::scrolledframe::version]} { return }
namespace eval ::scrolledframe {
# beginning of ::scrolledframe namespace definition
namespace export scrolledframe
# ==============================
#
# scrolledframe
set version 0.9.1
set (debug,place) 0
#
# a scrolled frame
#
# (C) 2003, ulis
#
# NOL licence (No Obligation Licence)
#
# Changes (C) 2004, KJN
#
# NOL licence (No Obligation Licence)
# ==============================
#
# Hacked package, no documentation, sorry
# See example at bottom
#
# ------------------------------
# v 0.9.1
# automatic scroll on resize
# ==============================
package provide Scrolledframe $version
# --------------
#
# create a scrolled frame
#
# --------------
# parm1: widget name
# parm2: options key/value list
# --------------
proc scrolledframe {w args} \
{
variable {}
# create a scrolled frame
frame $w
# trap the reference
rename $w ::scrolledframe::_$w
# redirect to dispatch
interp alias {} $w {} ::scrolledframe::dispatch $w
# create scrollable internal frame
frame $w.scrolled -highlightt 0 -padx 0 -pady 0
# place it
place $w.scrolled -in $w -x 0 -y 0
if {$(debug,place)} { puts "place $w.scrolled -in $w -x 0 -y 0" } ;#DEBUG
# init internal data
set ($w:vheight) 0
set ($w:vwidth) 0
set ($w:vtop) 0
set ($w:vleft) 0
set ($w:xscroll) ""
set ($w:yscroll) ""
set ($w:width) 0
set ($w:height) 0
set ($w:fillx) 0
set ($w:filly) 0
# configure
if {$args != ""} { uplevel 1 ::scrolledframe::config $w $args }
# bind <Configure>
bind $w <Configure> [namespace code [list resize $w]]
bind $w.scrolled <Configure> [namespace code [list resize $w]]
# return widget ref
return $w
}
# --------------
#
# dispatch the trapped command
#
# --------------
# parm1: widget name
# parm2: operation
# parm2: operation args
# --------------
proc dispatch {w cmd args} \
{
variable {}
switch -glob -- $cmd \
{
con* { uplevel 1 [linsert $args 0 ::scrolledframe::config $w] }
xvi* { uplevel 1 [linsert $args 0 ::scrolledframe::xview $w] }
yvi* { uplevel 1 [linsert $args 0 ::scrolledframe::yview $w] }
default { uplevel 1 [linsert $args 0 ::scrolledframe::_$w $cmd] }
}
}
# --------------
# configure operation
#
# configure the widget
# --------------
# parm1: widget name
# parm2: options
# --------------
proc config {w args} \
{
variable {}
set options {}
set flag 0
foreach {key value} $args \
{
switch -glob -- $key \
{
-fill \
{
# new fill option: what should the scrolled object do if it is smaller than the viewing window?
if {$value == "none"} {
set ($w:fillx) 0
set ($w:filly) 0
} elseif {$value == "x"} {
set ($w:fillx) 1
set ($w:filly) 0
} elseif {$value == "y"} {
set ($w:fillx) 0
set ($w:filly) 1
} elseif {$value == "both"} {
set ($w:fillx) 1
set ($w:filly) 1
} else {
error "invalid value: should be \"$w configure -fill value\", where \"value\" is \"x\", \"y\", \"none\", or \"both\""
}
resize $w force
set flag 1
}
-xsc* \
{
# new xscroll option
set ($w:xscroll) $value
set flag 1
}
-ysc* \
{
# new yscroll option
set ($w:yscroll) $value
set flag 1
}
default { lappend options $key $value }
}
}
# check if needed
if {!$flag || $options != ""} \
{
# call frame config
uplevel 1 [linsert $options 0 ::scrolledframe::_$w config]
}
}
# --------------
# resize proc
#
# Update the scrollbars if necessary, in response to a change in either the viewing window
# or the scrolled object.
# Replaces the old resize and the old vresize
# A <Configure> call may mean any change to the viewing window or the scrolled object.
# We only need to resize the scrollbars if the size of one of these objects has changed.
# Usually the window sizes have not changed, and so the proc will not resize the scrollbars.
# --------------
# parm1: widget name
# parm2: pass anything to force resize even if dimensions are unchanged
# --------------
proc resize {w args} \
{
variable {}
set force [llength $args]
set _vheight $($w:vheight)
set _vwidth $($w:vwidth)
# compute new height & width
set ($w:vheight) [winfo reqheight $w.scrolled]
set ($w:vwidth) [winfo reqwidth $w.scrolled]
# The size may have changed, e.g. by manual resizing of the window
set _height $($w:height)
set _width $($w:width)
set ($w:height) [winfo height $w] ;# gives the actual height of the viewing window
set ($w:width) [winfo width $w] ;# gives the actual width of the viewing window
if {$force || $($w:vheight) != $_vheight || $($w:height) != $_height} {
# resize the vertical scroll bar
yview $w scroll 0 unit
# yset $w
}
if {$force || $($w:vwidth) != $_vwidth || $($w:width) != $_width} {
# resize the horizontal scroll bar
xview $w scroll 0 unit
# xset $w
}
} ;# end proc resize
# --------------
# xset proc
#
# resize the visible part
# --------------
# parm1: widget name
# --------------
proc xset {w} \
{
variable {}
# call the xscroll command
set cmd $($w:xscroll)
if {$cmd != ""} { catch { eval $cmd [xview $w] } }
}
# --------------
# yset proc
#
# resize the visible part
# --------------
# parm1: widget name
# --------------
proc yset {w} \
{
variable {}
# call the yscroll command
set cmd $($w:yscroll)
if {$cmd != ""} { catch { eval $cmd [yview $w] } }
}
# -------------
# xview
#
# called on horizontal scrolling
# -------------
# parm1: widget path
# parm2: optional moveto or scroll
# parm3: fraction if parm2 == moveto, count unit if parm2 == scroll
# -------------
# return: scrolling info if parm2 is empty
# -------------
proc xview {w {cmd ""} args} \
{
variable {}
# check args
set len [llength $args]
switch -glob -- $cmd \
{
"" {set args {}}
mov* \
{ if {$len != 1} { error "wrong # args: should be \"$w xview moveto fraction\"" } }
scr* \
{ if {$len != 2} { error "wrong # args: should be \"$w xview scroll count unit\"" } }
default \
{ error "unknown operation \"$cmd\": should be empty, moveto or scroll" }
}
# save old values:
set _vleft $($w:vleft)
set _vwidth $($w:vwidth)
set _width $($w:width)
# compute new vleft
set count ""
switch $len \
{
0 \
{
# return fractions
if {$_vwidth == 0} { return {0 1} }
set first [expr {double($_vleft) / $_vwidth}]
set last [expr {double($_vleft + $_width) / $_vwidth}]
if {$last > 1.0} { return {0 1} }
return [list [format %g $first] [format %g $last]]
}
1 \
{
# absolute movement
set vleft [expr {int(double($args) * $_vwidth)}]
}
2 \
{
# relative movement
foreach {count unit} $args break
if {[string match p* $unit]} { set count [expr {$count * 9}] }
set vleft [expr {$_vleft + $count * 0.1 * $_width}]
}
}
if {$vleft + $_width > $_vwidth} { set vleft [expr {$_vwidth - $_width}] }
if {$vleft < 0} { set vleft 0 }
if {$vleft != $_vleft || $count == 0} \
{
set ($w:vleft) $vleft
xset $w
if {$($w:fillx) && ($_vwidth < $_width || $($w:xscroll) == "") } {
# "scrolled object" is not scrolled, because it is too small or because no scrollbar was requested
# fillx means that, in these cases, we must tell the object what its width should be
place $w.scrolled -in $w -x [expr {-$vleft}] -width $_width
if {$(debug,place)} { puts "place $w.scrolled -in $w -x [expr {-$vleft}] -width $_width" } ;#DEBUG
} else {
place $w.scrolled -in $w -x [expr {-$vleft}] -width {}
if {$(debug,place)} { puts "place $w.scrolled -in $w -x [expr {-$vleft}] -width {}" } ;#DEBUG
}
}
}
# -------------
# yview
#
# called on vertical scrolling
# -------------
# parm1: widget path
# parm2: optional moveto or scroll
# parm3: fraction if parm2 == moveto, count unit if parm2 == scroll
# -------------
# return: scrolling info if parm2 is empty
# -------------
proc yview {w {cmd ""} args} \
{
variable {}
# check args
set len [llength $args]
switch -glob -- $cmd \
{
"" {set args {}}
mov* \
{ if {$len != 1} { error "wrong # args: should be \"$w yview moveto fraction\"" } }
scr* \
{ if {$len != 2} { error "wrong # args: should be \"$w yview scroll count unit\"" } }
default \
{ error "unknown operation \"$cmd\": should be empty, moveto or scroll" }
}
# save old values
set _vtop $($w:vtop)
set _vheight $($w:vheight)
# set _height [winfo height $w]
set _height $($w:height)
# compute new vtop
set count ""
switch $len \
{
0 \
{
# return fractions
if {$_vheight == 0} { return {0 1} }
set first [expr {double($_vtop) / $_vheight}]
set last [expr {double($_vtop + $_height) / $_vheight}]
if {$last > 1.0} { return {0 1} }
return [list [format %g $first] [format %g $last]]
}
1 \
{
# absolute movement
set vtop [expr {int(double($args) * $_vheight)}]
}
2 \
{
# relative movement
foreach {count unit} $args break
if {[string match p* $unit]} { set count [expr {$count * 9}] }
set vtop [expr {$_vtop + $count * 0.1 * $_height}]
}
}
if {$vtop + $_height > $_vheight} { set vtop [expr {$_vheight - $_height}] }
if {$vtop < 0} { set vtop 0 }
if {$vtop != $_vtop || $count == 0} \
{
set ($w:vtop) $vtop
yset $w
if {$($w:filly) && ($_vheight < $_height || $($w:yscroll) == "")} {
# "scrolled object" is not scrolled, because it is too small or because no scrollbar was requested
# filly means that, in these cases, we must tell the object what its height should be
place $w.scrolled -in $w -y [expr {-$vtop}] -height $_height
if {$(debug,place)} { puts "place $w.scrolled -in $w -y [expr {-$vtop}] -height $_height" } ;#DEBUG
} else {
place $w.scrolled -in $w -y [expr {-$vtop}] -height {}
if {$(debug,place)} { puts "place $w.scrolled -in $w -y [expr {-$vtop}] -height {}" } ;#DEBUG
}
}
}
# end of ::scrolledframe namespace definition
}
################################################################################
#
# DockingFramework
#
# Code is inspired by
# http://wiki.tcl.tk/21846
# which is published under BSD license
#
################################################################################
image create photo bluetriangle -data {
R0lGODlhCAAIAKECADNBUEFYb////////yH5BAEKAAIALAAAAAAIAAgAAAINlI8pAe2wHjSs
JaayKgA7
}
namespace eval docking {
# associates notebook to paned window
variable tbs
# keep tracks of active tab for each notebook
array set activeTab {}
# associates notebook with a boolean value indicating the tab has changed
array set changedTab {}
variable tbcnt 0
array set notebook_name {}
# redraw takes some time : skip some events
variable lastConfigureEvent 0
variable deltaConfigureEvent 400
# set to 1 to inhibit autostart of engines when restoring the default layout at startup
set restore_running 0
}
################################################################################
proc ::docking::handleConfigureEvent { cmd } {
variable lastConfigureEvent
variable deltaConfigureEvent
after cancel "eval $cmd"
set t [clock clicks -milliseconds]
if { [expr $t - $lastConfigureEvent ] < $deltaConfigureEvent } {
after [ expr $deltaConfigureEvent + $lastConfigureEvent -$t ] "eval $cmd"
} else {
set lastConfigureEvent $t
eval $cmd
# Necessary on MacOs to refresh user interface
# update idletasks
}
}
################################################################################
# find notebook, corresponding to path
proc ::docking::find_tbn {path} {
variable tbs
if {$path==""} { return $path }
# already a managed notebook?
if {[info exists tbs($path)]} {
return $path
}
# managed notebooks have the form .toplevel.tbn#
# pages within notebooks should also have the path .toplevel.page#
set spath [split $path "."]
if {[winfo toplevel $path]=="."} {
set path [join [lrange $path 0 1] "."]
} else {
set path [join [lrange $path 0 2] "."]
}
# is it a managed notebook?
if {[info exists tbs($path)]} {
return $path
}
# try to find notebook that manages this page
foreach tb [array names tbs] {
if {[get_class $tb] != "TNotebook"} {
continue
}
if {[lsearch -exact [$tb tabs] $path]>=0} {
return $tb
}
}
return {}
}
################################################################################
# added paned window of other direction, move a notebook there and create a new notebook
proc ::docking::embed_tbn {tbn anchor} {
variable tbcnt
variable tbs
set pw $tbs($tbn)
if {$anchor=="w" || $anchor=="e"} {
set orient "horizontal"
} else {
set orient "vertical"
}
# create new paned window
set npw [ttk::panedwindow $pw.pw$tbcnt -orient $orient ]
incr tbcnt
# move old notebook
set i [lsearch -exact [$pw panes] $tbn]
$pw forget $tbn
if {$i>=[llength [$pw panes]]} {
$pw add $npw -weight 1
} else {
$pw insert $i $npw -weight 1
}
# add new notebook
set ntb [ttk::notebook [winfo toplevel $pw].tb$tbcnt]
incr tbcnt
set tbs($tbn) $npw
set tbs($ntb) $npw
# make sure correct order
if {$anchor=="n" || $anchor=="w"} {
$npw add $ntb -weight 1
$npw add $tbn -weight 1
} else {
$npw add $tbn -weight 1
$npw add $ntb -weight 1
}
return $ntb
}
################################################################################
# add a new notebook to the side anchor of the notebook tbn
proc ::docking::add_tbn {tbn anchor} {
variable tbcnt
variable tbs
set pw $tbs($tbn)
set orient [$pw cget -orient]
# if orientation of the uplevel panedwindow is consistent with anchor, just add the pane
if {$orient=="horizontal" && ($anchor=="w" || $anchor=="e")} {
set i [lsearch -exact [$pw panes] $tbn]
if {$anchor=="e"} { incr i }
set tbn [ttk::notebook [winfo toplevel $pw].tb$tbcnt]
incr tbcnt
set tbs($tbn) $pw
if {$i>=[llength [$pw panes]]} {
$pw add $tbn -weight 1
} else {
$pw insert $i $tbn -weight 1
}
} elseif {$orient=="vertical" && ($anchor=="n" || $anchor=="s")} {
set i [lsearch -exact [$pw panes] $tbn]
if {$anchor=="s"} { incr i}
set tbn [ttk::notebook [winfo toplevel $pw].tb$tbcnt]
incr tbcnt
set tbs($tbn) $pw
if {$i>=[llength [$pw panes]]} {
$pw add $tbn -weight 1
} else {
$pw insert $i $tbn -weight 1
}
} else {
# orientation of the uplevel panedwindow is opposite to the anchor
# need to add new panedwindow
set tbn [embed_tbn $tbn $anchor]
}
return $tbn
}
################################################################################
proc ::docking::get_class {path} {
if {![winfo exists $path]} {
return ""
}
return [lindex [bindtags $path] 1]
}
################################################################################
# always keep .pw paned window
proc ::docking::_cleanup_tabs {srctab} {
variable tbs
# if srctab is empty, then remove it
if {[llength [$srctab tabs]]==0} {
destroy $srctab
set pw $tbs($srctab)
unset tbs($srctab)
while {[llength [$pw panes]]==0} {
set parent [winfo parent $pw]
if {$pw == ".pw"} {
break
}
destroy $pw
set pw $parent
}
}
}
################################################################################
# cleans up a window when it was closed without calling the notebook menu
proc ::docking::cleanup { w { origin "" } } {
variable tbs
if { ! $::docking::USE_DOCKING } { return }
# if the destroy event came from a sub-widget, do nothing. Necessary because if a widget is destroyed, it sends a destroy event to
# its containing window
if { [ string last "." $origin ] > 0 } {
return
}
set dockw ".fdock[string range $w 1 end]"
catch {
bind $w <Destroy> {}
bind $dockw <Destroy> {}
}
# Maybe during Scid closing, some race conditions lead to exceptions ? In case, catch this by default
catch {
foreach nb [array names tbs] {
if { [lsearch [$nb tabs] $dockw ] != -1 } {
$nb forget $dockw
destroy $dockw
::docking::_cleanup_tabs $nb
return
}
}
}
# Make sure the frame is destroyed
if { [winfo exists $dockw]} {
destroy $dockw
}
array unset ::docking::notebook_name $dockw
}
################################################################################
proc ::docking::isUndocked { w } {
set w ".fdock[string range $w 1 end]"
return [info exists ::docking::notebook_name($w)]
}
################################################################################
proc ::docking::move_tab {srctab dsttab} {
variable tbs
# move tab
set f [$srctab select]
set o [$srctab tab $f]
$srctab forget $f
eval $dsttab add $f $o
raise $f
$dsttab select $f
_cleanup_tabs $srctab
}
variable ::docking::c_path {}
################################################################################
proc ::docking::start_motion {path} {
variable c_path
if {[winfo exists .ctxtMenu]} {
destroy .ctxtMenu
}
if {$path!=$c_path} {
set c_path [find_tbn $path]
}
}
################################################################################
proc ::docking::motion {path} {
variable c_path
if {$c_path==""} { return }
$c_path configure -cursor exchange
}
################################################################################
proc ::docking::end_motion {w x y} {
variable c_path
bind TNotebook <ButtonRelease-1> [namespace code {::docking::show_menu %W %X %Y}]
if {$c_path==""} { return }
set path [winfo containing $x $y]
if {$path == ""} {
return
}
$path configure -cursor {}
set t [find_tbn $path]
if {$t!=""} {
if {$t==$c_path} {
# we stayed on the same notebook, so display the menu
show_menu $w $x $y
if {[$c_path identify [expr $x-[winfo rootx $c_path]] [expr $y-[winfo rooty $c_path]]]!=""} {
set c_path {}
return
}
}
if {$t!=$c_path} {
move_tab $c_path $t
}
}
set c_path {}
setTabStatus
}
################################################################################
proc ::docking::show_menu { path x y} {
variable c_path
if {[winfo exists .ctxtMenu]} {
destroy .ctxtMenu
}
if {$path!=$c_path} {
set c_path [find_tbn $path]
}
# HACK ! Because notebooks may also be used inside internal windows
if {! [info exists ::docking::changedTab($c_path)] } {
return
}
# display window's menu (workaround for windows where the menu
# of embedded toplevels is not displayed. The menu must be of the form $w.menu
# if the tab has changed, don't display the menu at once (wait a second click)
if { $::docking::changedTab($c_path) == 1 } {
set ::docking::changedTab($c_path) 0
} else {
# the tab was already active, show the menu
set f [$c_path select]
set m [getMenu $f]
if { [winfo exists $m] } {
tk_popup $m [winfo pointerx .] [winfo pointery .]
}
}
}
################################################################################
# returns the menu name of a toplevel window (must be in the form $w.menu)
# f is the frame embedding the toplevel (.fdock$w)
proc ::docking::getMenu {f} {
if { [scan $f ".fdock%s" tl] != 1 || $f == ".fdockmain"} {
return ""
}
return ".$tl.menu"
}
################################################################################
# Toggles menu visibility
# f is the frame embedding the toplevel (.fdock$w)
proc ::docking::setMenuVisibility { f show } {
if { [scan $f ".fdock%s" tl] != 1 || $f == ".fdockmain"} {
return
}
set tl ".$tl"
if { $show == "true" || $show == "1" } {
$tl configure -menu "$tl.menu"
} else {
$tl configure -menu {}
}
}
################################################################################
proc ::docking::tabChanged {path} {
update
# HACK ! Because notebooks may also be used inside internal windows
if { ! [ info exists ::docking::activeTab($path)] } {
return
}
if { [$path select] != $::docking::activeTab($path)} {
set ::docking::activeTab($path) [$path select]
set ::docking::changedTab($path) 1
}
}
################################################################################
bind TNotebook <ButtonRelease-1> {::docking::show_menu %W %X %Y}
bind TNotebook <ButtonPress-1> +[ list ::docking::start_motion %W ]
bind TNotebook <B1-Motion> {
::docking::motion %W
bind TNotebook <ButtonRelease-1> {::docking::end_motion %W %X %Y}
}
bind TNotebook <Escape> {
if {[winfo exists .ctxtMenu]} {
destroy .ctxtMenu
}
}
bind TNotebook <ButtonPress-$::MB3> {::docking::ctx_menu %W}
bind TNotebook <<NotebookTabChanged>> {::docking::tabChanged %W}
################################################################################
#
################################################################################
proc ::docking::ctx_cmd {path anchor} {
variable c_path
if {$path!=$c_path} {
set c_path [find_tbn $path]
}
if {$c_path==""} {
puts "WARNING c_path null in ctx_cmd"
return
}
set tbn [add_tbn $path $anchor]
move_tab $c_path $tbn
set c_path {}
setTabStatus
}
################################################################################
proc ::docking::ctx_menu {w} {
# HACK ! Because notebooks may also be used inside internal windows
if {! [info exists ::docking::changedTab($w)] } {
return
}
update idletasks
set mctxt .ctxtMenu
if { [winfo exists $mctxt] } {
destroy $mctxt
}
menu $mctxt -tearoff 0
set state "normal"
if { [llength [$w tabs]] == "1"} {
set state "disabled"
}
$mctxt add command -label [ ::tr DockTop ] -state $state -command "::docking::ctx_cmd $w n"
$mctxt add command -label [ ::tr DockBottom ] -state $state -command "::docking::ctx_cmd $w s"
$mctxt add command -label [ ::tr DockLeft ] -state $state -command "::docking::ctx_cmd $w w"
$mctxt add command -label [ ::tr DockRight ] -state $state -command "::docking::ctx_cmd $w e"
$mctxt add separator
# Main board can not be closed or undocked
if { [$w select] != ".fdockmain" } {
$mctxt add command -label [ ::tr Undock ] -command "::docking::undock $w"
$mctxt add command -label [ ::tr Close ] -command " ::docking::close $w"
} else {
$mctxt add checkbutton -label [::tr "showGameInfo"] -variable ::showGameInfo -command ::toggleGameInfo
$mctxt add checkbutton -label [::tr "autoResizeBoard"] -variable ::autoResizeBoard -command ::docking::toggleAutoResizeBoard
}
tk_popup $mctxt [winfo pointerx .] [winfo pointery .]
}
################################################################################
proc ::docking::toggleAutoResizeBoard {} {
::resizeMainBoard
set m .menu.options.board
if {$::autoResizeBoard} {
$m entryconfigure 0 -state disabled
} else {
$m entryconfigure 0 -state normal
}
}
################################################################################
proc ::docking::close {w} {
set tabid [$w select]
$w forget $tabid
destroy $tabid
_cleanup_tabs $w
setTabStatus
}
################################################################################
proc ::docking::undock {srctab} {
variable tbs
if {[llength [$srctab tabs]]==1 && [llength [array names tbs]]==1} { return }
set f [$srctab select]
set name [$srctab tab $f -text]
set o [$srctab tab $f]
$srctab forget $f
_cleanup_tabs $srctab
wm manage $f
setMenuVisibility $f true
wm title $f $name
# Uncomment this code to dock windows that have been previously undocked
# wm protocol $f WM_DELETE_WINDOW [namespace code [list __dock $f]]
wm deiconify $f
set ::docking::notebook_name($f) [list $srctab $o]
setTabStatus
}
################################################################################
proc ::docking::__dock {wnd} {
variable tbs
setMenuVisibility $wnd false
set name [wm title $wnd]
wm withdraw $wnd
wm forget $wnd
set d $::docking::notebook_name($wnd)
set dsttab [lindex $d 0]
set o [lindex $d 1]
if {![winfo exists $dsttab]} {
set dsttab [lindex [array names tbs] 0]
}
eval $dsttab add $wnd $o
raise $wnd
$dsttab select $wnd
}
################################################################################
proc ::docking::add_tab {path anchor args} {
variable tbs
if { $::docking::layout_dest_notebook == ""} {
# scan all tabs to find the most suitable
set dsttab {}
foreach tb [array names tbs] {
set x [winfo rootx $tb]
set y [winfo rooty $tb]
set w [winfo width $tb]
set h [winfo height $tb]
switch $anchor {
n { set rel {$y < $_y} }
w { set rel {$x < $_x} }
s { set rel {$y > $_y} }
e { set rel {$x > $_x} }
}
if {$dsttab==""} {
set dsttab $tb
set _x $x
set _y $y
} elseif { [expr $rel] } {
set dsttab $tb
set _x $x
set _y $y
}
}
} else {
set dsttab $::docking::layout_dest_notebook
}
set title $path
eval [list $dsttab add $path] $args -text "$title"
setMenuMark $dsttab $path
$dsttab select $path
}
################################################################################
# display a blue triangle showing the tab has a menu associated
proc ::docking::setMenuMark { nb tab} {
if { $tab == ".fdockpgnWin" || [string match "\.fdocktreeWin*" $tab] || $tab == ".fdockccWindow" || \
$tab == ".fdockoprepWin" } {
$nb tab $tab -image bluetriangle -compound left
}
}
################################################################################
# Layout management
################################################################################
set ::docking::layout_tbcnt 0
# associates pw -> notebook list
array set ::docking::layout_notebook {}
# associates notebook -> list of tabs
array set ::docking::layout_tabs {}
# the notebook into which to create a new tab
set ::docking::layout_dest_notebook ""
################################################################################
# saves layout (bail out if some windows cannot be restored like FICS)
proc ::docking::layout_save { slot } {
if {[winfo exists .fics]} {
tk_messageBox -title Scid -icon question -type ok -message "Cannot save layout with FICS opened"
return
}
if {[winfo exists .oprepWin]} {
tk_messageBox -title Scid -icon question -type ok -message "Cannot save layout with opening report opened"
return
}
# on Windows the geometry is false if the window was maximized (x and y offsets are the ones before the maximization)
set geometry [wm geometry .]
if {[wm state .] == "zoomed"} {
if { [scan $geometry "%dx%d+%d+%d" w h x y] == 4 } {
set geometry "${w}x${h}+0+0"
}
}
set ::docking::layout_list($slot) [list [list "MainWindowGeometry" $geometry] ]
lappend ::docking::layout_list($slot) [ layout_save_pw .pw ]
}
################################################################################
proc ::docking::layout_save_pw {pw} {
set ret {}
# record sash position for each panes
set sashpos {}
for {set i 0} {$i < [ expr [llength [$pw panes]] -1]} {incr i} {
lappend sashpos [$pw sashpos $i]
}
lappend ret [list $pw [$pw cget -orient ] $sashpos ]
foreach p [$pw panes] {
if {[get_class $p] == "TNotebook"} {
lappend ret [list "TNotebook" $p [$p tabs] ]
}
if {[get_class $p] == "TPanedwindow"} {
lappend ret [ list "TPanedwindow" [layout_save_pw $p] ]
}
}
return $ret
}
################################################################################
# restores paned windows and internal notebooks
proc ::docking::layout_restore_pw { data } {
foreach elt $data {
update idletasks
set type [lindex $elt 0]
if {$type == "MainWindowGeometry"} {
wm geometry . [lindex $elt 1]
layout_restore_pw [lindex $data 1]
break
} elseif {$type == "TPanedwindow"} {
layout_restore_pw [lindex $elt 1]
} elseif {$type == "TNotebook"} {
set name [lindex $elt 1]
set tabs [lindex $elt 2]
::docking::layout_restore_nb $pw $name $tabs
} else {
set pw [lindex $elt 0]
set orient [lindex $elt 1]
# we have sash geometry
if {[llength $elt] > 2} {
lappend ::docking::sashpos [ list $pw [lindex $elt 2] ]
}
if { $pw == ".pw"} { continue }
# build a new pw
ttk::panedwindow $pw -orient $orient
set parent [string range $pw 0 [expr [string last "." $pw ]-1 ] ]
$parent add $pw -weight 1
}
}
}
################################################################################
# Sash position
################################################################################
proc ::docking::restoreGeometry {} {
foreach elt $::docking::sashpos {
update idletasks
set pw [lindex $elt 0]
set sash [lindex $elt 1]
set i 0
foreach pos $sash {
$pw sashpos $i $pos
incr i
}
}
}
################################################################################
# restores a notebook in a pre-existing panedwindow
# panewindow -> pw
# widget name -> name
# data to make tabs -> data (list of names wich can be used to trigger the correct windows)
proc ::docking::layout_restore_nb { pw name tabs} {
variable tbcnt
variable tbs
set nb [ttk::notebook $name]
incr tbcnt
if {[scan $name ".tb%d" tmp] == 1} {
if {$tmp >= $tbcnt} {
set tbcnt [ expr $tmp +1]
}
}
set tbs($nb) $pw
$pw add $nb -weight 1
set ::docking::tbs($nb) $pw
set ::docking::layout_dest_notebook $nb
foreach d $tabs {
if { $d == ".fdockmain" } {
$nb add $d -text $::tr(Board)
raise $d
}
if { $d == ".fdockpgnWin" } { ::pgn::OpenClose ; ::pgn::Refresh 1 }
if { $d == ".fdockanalysisWin1" } { ::makeAnalysisWin 1 0 }
if { $d == ".fdockanalysisWin2" } { ::makeAnalysisWin 2 0 }
if { $d == ".fdockbaseWin" } { ::windows::switcher::Open }
if { $d == ".fdockbookWin" } { ::book::open }
if { $d == ".fdockecograph" } { ::windows::eco::OpenClose }
if { $d == ".fdocktbWin" } { ::tb::Open }
if { $d == ".fdockcommentWin" } { ::commenteditor::Open }
if { $d == ".fdockglistWin" } {::windows::gamelist::Open}
if { $d == ".fdockccWindow" } {::CorrespondenceChess::CCWindow}
if { [ scan $d ".fdocktreeWin%d" base ] == 1 } { ::tree::make $base}
}
# force the selection of first tab
$nb select [ lindex [ $nb tabs] 0 ]
set ::docking::layout_dest_notebook ""
}
################################################################################
proc ::docking::layout_restore { slot } {
variable tbcnt
variable tbs
bind TNotebook <<NotebookTabChanged>> {}
# if no layout recorded, return
if { $::docking::layout_list($slot) == {} } {
return
}
closeAll {.pw}
set tbcnt 0
array set ::docking::notebook_name {}
array set ::docking::tbs {}
set ::docking::sashpos {}
layout_restore_pw $::docking::layout_list($slot)
restoreGeometry
array set ::docking::activeTab {}
setTabStatus
bind TNotebook <<NotebookTabChanged>> {::docking::tabChanged %W}
}
################################################################################
# for every notebook, keeps track of the last selected tab to see if the local menu can be popped up or not
proc ::docking::setTabStatus { } {
variable tbs
array set ::docking::activeTab {}
array set ::docking::changedTab {}
foreach nb [array names tbs] {
set ::docking::activeTab($nb) [$nb select]
set ::docking::changedTab($nb) 0
}
}
################################################################################
# erase all mapped windows, except .main
proc ::docking::closeAll {pw} {
foreach p [$pw panes] {
if {[get_class $p] == "TPanedwindow"} {
::docking::closeAll $p
}
if {[get_class $p] == "TNotebook"} {
foreach tabid [$p tabs] {
$p forget $tabid
if {$tabid != ".fdockmain"} {
destroy $tabid
}
_cleanup_tabs $p
}
}
}
}
################################################################################
if {$::docking::USE_DOCKING} {
pack [ttk::panedwindow .pw -orient vertical] -fill both -expand true
.pw add [ttk::notebook .nb] -weight 1
set docking::tbs(.nb) .pw
}
createToplevel .main
::docking::setTabStatus
|