summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorculler <culler>2019-04-11 04:43:43 (GMT)
committerculler <culler>2019-04-11 04:43:43 (GMT)
commite53120a76ad8ad0a46a5d77a18008a67000027e4 (patch)
tree14d8d8909a02ebc11a23fd1d560ee228c1b3fc1f /tests
parent7b41d9a93736a9bbd8380873a0386779354ba46d (diff)
parent71b7db434ab281ba494f9fb0235b6d3c88bf8530 (diff)
downloadtk-e53120a76ad8ad0a46a5d77a18008a67000027e4.zip
tk-e53120a76ad8ad0a46a5d77a18008a67000027e4.tar.gz
tk-e53120a76ad8ad0a46a5d77a18008a67000027e4.tar.bz2
Support for Apple's Dark Mode and many improvements to the Aqua theme.
Diffstat (limited to 'tests')
-rw-r--r--tests/ttk/scrollbar.test32
-rw-r--r--tests/unixEmbed.test1
2 files changed, 25 insertions, 8 deletions
diff --git a/tests/ttk/scrollbar.test b/tests/ttk/scrollbar.test
index c7cab13..f563085 100644
--- a/tests/ttk/scrollbar.test
+++ b/tests/ttk/scrollbar.test
@@ -4,16 +4,26 @@ loadTestedCommands
testConstraint coreScrollbar [expr {[tk windowingsystem] eq "aqua"}]
-test scrollbar-swapout-1 "Use core scrollbars on OSX..." -constraints {
- coreScrollbar
+# Before 2019 the code in library/ttk/scrollbar.tcl would replace the
+# constructor of ttk::scrollbar with the constructor of tk::scrollbar
+# unless the -class or -style options were specified..
+# Now there is an implementation of ttk::scrollbar for macOS. The
+# tests are left in place, though, except that scrollbar-swapout-1
+# test was changed to expect the class to be TScrollbar instead of
+# Scrollbar.
+
+test scrollbar-swapout-1 "Don't use core scrollbars on OSX..." \
+ -constraints {
+ coreScrollbar
} -body {
ttk::scrollbar .sb -command "yadda"
list [winfo class .sb] [.sb cget -command]
-} -result [list Scrollbar yadda] -cleanup {
- destroy .sb
+} -result [list TScrollbar yadda] -cleanup {
+ destroy .sb
}
-test scrollbar-swapout-2 "... unless -style is specified ..." -constraints {
+test scrollbar-swapout-2 "... regardless of whether -style ..." \
+-constraints {
coreScrollbar
} -body {
ttk::style layout Vertical.Custom.TScrollbar \
@@ -24,7 +34,7 @@ test scrollbar-swapout-2 "... unless -style is specified ..." -constraints {
destroy .sb
}
-test scrollbar-swapout-3 "... or -class." -constraints {
+test scrollbar-swapout-3 "... or -class is specified." -constraints {
coreScrollbar
} -body {
ttk::scrollbar .sb -command "yadda" -class Custom.TScrollbar
@@ -44,13 +54,19 @@ test scrollbar-1.1 "Set method" -body {
test scrollbar-1.2 "Set orientation" -body {
.tsb configure -orient vertical
- set w [winfo reqwidth .tsb] ; set h [winfo reqheight .tsb]
+ pack .tsb -side right -anchor e -expand 1 -fill y
+ wm geometry . 200x200
+ update
+ set w [winfo width .tsb] ; set h [winfo height .tsb]
expr {$h > $w}
} -result 1
test scrollbar-1.3 "Change orientation" -body {
.tsb configure -orient horizontal
- set w [winfo reqwidth .tsb] ; set h [winfo reqheight .tsb]
+ pack .tsb -side bottom -anchor s -expand 1 -fill x
+ wm geometry . 200x200
+ update
+ set w [winfo width .tsb] ; set h [winfo height .tsb]
expr {$h < $w}
} -result 1
diff --git a/tests/unixEmbed.test b/tests/unixEmbed.test
index 99f7265..a29995f 100644
--- a/tests/unixEmbed.test
+++ b/tests/unixEmbed.test
@@ -1234,6 +1234,7 @@ test unixEmbed-10.1 {geometry propagation in tkUnixWm.c/UpdateGeometryInfo} -con
deleteWindows
} -body {
frame .f1 -container 1 -width 200 -height 50
+ update
pack .f1
update
toplevel .t1 -use [winfo id .f1] -width 150 -height 80