I use Tcl::Tk on a regular basis and really happy with this.
After some 10+ years of usage of this approach - I understood that this is the perfect balance of simplicity and power for my GUIs.
Nicer GUI libs often require more efforts during coding, so I haven't switched to these.

often I use pure Tcl CPAN module instead of Tcl::Tk, because I rarely actually need that perl/Tk syntax,

$int->call($widget,'method','submethod', -smth=>'val');
is quite enough, so perl/Tk syntax is an overkill
$widget->methodSubmethod(-smth=>'val');
given that most my GUI code is separated already into some place...

You can write to our mail list and we will answer all of your questions, tcltk at perl dot org, you're welcome :)


In reply to Re^3: Why is wxPerl slower than Win32GUI? by vkon
in thread Why is wxPerl slower than Win32GUI? by ZJ.Mike.2009

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.