diff options
author | ericm <ericm> | 1999-11-17 22:13:02 (GMT) |
---|---|---|
committer | ericm <ericm> | 1999-11-17 22:13:02 (GMT) |
commit | 0d1c77ca4797bd6bfc72ff240cee6e2476890944 (patch) | |
tree | f2ba86105c2c141a3dcad92057d2de9ec4a44236 /tests/listbox.test | |
parent | e280e2f50c959dd7115b8f01b7b56e5c59b385d3 (diff) | |
download | tk-0d1c77ca4797bd6bfc72ff240cee6e2476890944.zip tk-0d1c77ca4797bd6bfc72ff240cee6e2476890944.tar.gz tk-0d1c77ca4797bd6bfc72ff240cee6e2476890944.tar.bz2 |
* tests/listbox.test: Added tests for ListboxUpdateHScrollbar.
* generic/tkListbox.c: Changed some old static buffers to base
size on TCL_DOUBLLE_SPACE instead of (completely) hardcoding the size.
Diffstat (limited to 'tests/listbox.test')
-rw-r--r-- | tests/listbox.test | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/tests/listbox.test b/tests/listbox.test index b5efd58..d753251 100644 --- a/tests/listbox.test +++ b/tests/listbox.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: listbox.test,v 1.5 1999/11/17 21:56:37 ericm Exp $ +# RCS: @(#) $Id: listbox.test,v 1.6 1999/11/17 22:13:03 ericm Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -1803,7 +1803,48 @@ test listbox-21.8 {ListboxListVarProc, test selection after listvar mod} { set x [list a b c] .l curselection } 2 +test listbox-21.9 {ListboxListVarProc, test hscrollbar after listvar mod} { + catch {destroy .l} + catch {unset x} + set log {} + listbox .l -font $fixed -width 10 -xscrollcommand "record x" -listvar x + pack .l + update + lappend x "0000000000" + update + lappend x "00000000000000000000" + update + set log +} [list {x 0 1} {x 0 1} {x 0 0.5}] +test listbox-21.10 {ListboxListVarProc, test hscrollbar after listvar mod} { + catch {destroy .l} + catch {unset x} + set log {} + listbox .l -font $fixed -width 10 -xscrollcommand "record x" -listvar x + pack .l + update + lappend x "0000000000" + update + lappend x "00000000000000000000" + update + set x [list "0000000000"] + update + set log +} [list {x 0 1} {x 0 1} {x 0 0.5} {x 0 1}] +# UpdateHScrollbar +test listbox-22.1 {UpdateHScrollbar} { + catch {destroy .l} + set log {} + listbox .l -font $fixed -width 10 -xscrollcommand "record x" + pack .l + update + .l insert end "0000000000" + update + .l insert end "00000000000000000000" + update + set log +} [list {x 0 1} {x 0 1} {x 0 0.5}] resetGridInfo catch {destroy .l2} |