#!/bin/sh
# \
	exec itkwish -f "$0" ${1+"$@"}

option add *textBackground white

frame .f1 -relief ridge -borderwidth 2;
fileselectionbox .f1.fsb

frame .f2 -relief ridge -borderwidth 2;
label .f2.l -text {File selection box style}
buttonbox .f2.bb

.f2.bb add motif -text Motif -command ".f1.fsb configure -style motif";
.f2.bb add notif -text {Better Than Motif} \
    -command ".f1.fsb configure -style notif";


pack .f1 .f1.fsb -padx 10 -pady 10 -fill both -expand yes
pack .f2 -fill x -padx 10 -pady 10
pack .f2.l .f2.bb
