in reply to Gtk2-Perl 1.020 released

Just out of curiosity, what don't you like about Perl/Tk?

Replies are listed 'Best First'.
Re: Re: Gtk2-Perl 1.020 released
by thewalledcity (Friar) on Dec 12, 2003 at 23:22 UTC
    Perl/TK looks terrible IMHO
Re^2: Gtk2-Perl 1.020 released
by Aristotle (Chancellor) on Dec 14, 2003 at 17:32 UTC

    Instantiating widgets by calling a factory method in its container-to-be is weird. Having widgets pack themselves is odd. Passing references and having the widgets update when the variable changes is strange. I get a distinct feeling of "ick" when working with Tk or reading Tk code.

    In Gtk2, you instantiate a widget by calling its class's constructor, pass it to its container to pack it, and use its accessor methods to change its state. This is how I expect responsibilities to be distributed in any sane class library.

    Makeshifts last the longest.