gnocl::calendar

WJG (22/05/09) With the inclusion of support for the GtkCalendar widget, Gnocl's implementation of the Gtk Core widget set is now complete. Here's a screen shot and a sample script to show how it works.

http://wjgiddings.googlepages.com/Screenshot-gnoclcalendar.png

#---------------
# Author:   William J Giddings
# Date:     07/05/09
#---------------
#!/bin/sh
# the next line restarts using tclsh \
exec tclsh "$0" "$@"
#---------------

package require Gnocl

set cal [gnocl::calendar]

gnocl::window -child $cal -title gnocl::calendar
gnocl::mainLoop