Subject: Re: X programming
To: David Guynn <dguynn@geocities.com>
From: Oleg Polyanski <luke@eed.miee.ru>
List: port-i386
Date: 02/12/1999 01:06:41
> If I was to begin X programming, what toolkit should I use for max.
> NetBSD compatibility? Is GTK+ an option?
>
may you would like to start X programming in tcl/tk? look, this is
the simplest program that draws window and a button inside this window:
#!/usr/pkg/bin/wish8.0
pack [button .b -text "Through the looking glass"]
that's all. but even if you don't want to write programms in tcl, you
may use tk interface from perl or from python or from scheme or even from C
programms. tk is the real thing.
gtk is an option too but it seems to me that tk is much easier to learn
(and to start with too) so i highly recommend it.