blob: 9fa98a33f787e20d6a3a54d9c3c59d5a3efd622c (
plain)
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
|
# This file is a Tcl script to test out the procedures in the file
# tkBitmap.c. It is organized in the standard white-box fashion for
# Tcl tests.
#
# Copyright (c) 1998 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) bitmap.test 1.1 97/12/24 15:17:34
if {[info procs test] != "test"} {
source defs
}
if {[info commands testbitmap] != "testbitmap"} {
puts "testbitmap command not available; skipping tests"
return
}
eval destroy [winfo children .]
wm geometry . {}
raise .
test bitmap-1.1 {Tk_AllocBitmapFromObj - converting internal reps} {
set x gray25
lindex $x 0
destroy .b1
button .b1 -bitmap $x
lindex $x 0
testbitmap gray25
} {{1 0}}
test bitmap-1.2 {Tk_AllocBitmapFromObj - discard stale bitmap} {
set x gray25
destroy .b1 .b2
button .b1 -bitmap $x
destroy .b1
set result {}
lappend result [testbitmap gray25]
button .b2 -bitmap $x
lappend result [testbitmap gray25]
} {{} {{1 1}}}
test bitmap-1.3 {Tk_AllocBitmapFromObj - reuse existing bitmap} {
set x gray25
destroy .b1 .b2
button .b1 -bitmap $x
set result {}
lappend result [testbitmap gray25]
button .b2 -bitmap $x
pack .b1 .b2 -side top
lappend result [testbitmap gray25]
} {{1 1}} {{2 1}}
test bitmap-2.1 {Tk_GetBitmap procedure} {
destroy .b1
list [catch {button .b1 -bitmap bad_name} msg] $msg
} {1 {bitmap "bad_name" not defined}}
test bitmap-2.2 {Tk_GetBitmap procedure} {
destroy .b1
list [catch {button .b1 -bitmap @xyzzy} msg] $msg
} {1 {error reading bitmap file "xyzzy"}}
test bitmap-3.1 {Tk_FreeBitmapFromObj - reference counts} {
set x questhead
destroy .b1 .b2 .b3
button .b1 -bitmap $x
button .b3 -bitmap $x
button .b2 -bitmap $x
set result {}
lappend result [testbitmap questhead]
destroy .b1
lappend result [testbitmap questhead]
destroy .b2
lappend result [testbitmap questhead]
destroy .b3
lappend result [testbitmap questhead]
} {{{3 1}} {{2 1}} {{1 1}} {}}
test bitmap-4.1 {FreeBitmapObjProc} {
destroy .b
set x [format questhead]
button .b -bitmap $x
set y [format questhead]
.b configure -bitmap $y
set z [format questhead]
.b configure -bitmap $z
set result {}
lappend result [testbitmap questhead]
set x red
lappend result [testbitmap questhead]
set z 32
lappend result [testbitmap questhead]
destroy .b
lappend result [testbitmap questhead]
set y bogus
set result
} {{{1 3}} {{1 2}} {{1 1}} {}}
destroy .t
|