in reply to Why is wxPerl slower than Win32GUI?

just for the record - Tcl::Tk is faster than perl/Tk, approximately twice
  • Comment on Re: Why is wxPerl slower than Win32GUI?

Replies are listed 'Best First'.
Re^2: Why is wxPerl slower than Win32GUI?
by japh2963 (Novice) on Feb 05, 2015 at 03:29 UTC
    few years later... is this what you all are still using? Or is there something else? Or is this all still solid?
      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 :)