Version 2 of gnocl::abiwidget

Updated 2010-09-20 19:16:26 by WJG

This is an empty page.

here

http://lh4.ggpht.com/_yaFgKvuZ36o/TJeqoYzXMAI/AAAAAAAAAvw/mSujfnSt6AY/s800/abiwidget.png

#!/bin/sh
# the next line restarts using tclsh \
exec tclsh "$0" "$@"

package require Gnocl
package require GnoclAbiWidget

set aw1 [gnocl::abiwidget]

# pack int a toplevel window
gnocl::window \
        -child $aw1 \
        -defaultWidth 640 \
        -defaultHeight 400 \
        -onDelete { exit }

$aw1 insert table

$aw1 load [pwd]/test.abw

$aw1 view print

gnocl::mainLoop