Version 4 of gnocl::abiwidget

Updated 2010-09-20 19:31:17 by WJG

[WJG} (20/09/2010) I'm pleased to announce the first release of the Tcl/Gnocl bindings to the Gtk+ AbiWidget, providing access to the key functionality the rendering canvas at the heart of the Gnome Desktop AbiWord processor.

Get it from here

Here's the expected screenshot..

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

And sample script..

#!/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