#!../bltwish

source bltDemo.tcl

image create photo bgTile -file ./images/chalk.gif
image create photo label1 -file ./images/mini-book1.gif
image create photo label2 -file ./images/mini-book2.gif

tabset .t -relief raised \
    -tabborderwidth 1 -gap 1 -selectpad 2 \
	-font fixed \
    -bg red -borderwidth 0 -highlightthickness 0 \
    -scrollcommand { .s set } \
    -rotate 0 

#option add *iPadX 4
#option add *iPadY 2

frame .f -height 3i -bg darkolivegreen2  -bd 2 -relief raised
.t insert end First \
    -image label1 \
    -anchor center \
    -selectbackground darkolivegreen2  \
    Again Next another test of \
    a -image label2 widget 

scrollbar .s -command { .t view } -orient horizontal
table . \
    .t 0,0 -fill both \
    .f 1,0 -fill both \
    .s 2,0 -fill x 

table configure . r1 -resize none
focus .t

