RE: GTK & BSD
- Posted by irv mullins <irvm at ellijay.com> May 14, 2004
- 576 views
Ron Tarrant wrote: ... > The problems all stem from four areas: > > 1) manipulating fonts, > 2) drawing on a pixmap (at least I think that's what it is), > 3) something to do with glist's, > 4) and something subtle with gobject's > > All the rest work fine except for spitting out that strange error I > mentioned in my previous message. I'll keep at it and see where it ends > up. Well, this helps to narrow down the problem. It would be interesting to test these one at a time, with very simple programs. For example, with fonts, I would try to determine if *all* font calls fail, or just calls to use some particular font (which might not exist or exists but can't be located). Something like the following:
include gtk2/wrapper.e constant fnt = font("Courier 16") -- experiment with this atom win, lbl win = window("Font Test") lbl = label("This is a test") set(lbl,"Font",fnt) addto(win,lbl) show(win) main()
Regards, Irv