in reply to Re^4: Applications of Perl\Tk
in thread Applications of Perl\Tk
So if I want to create GUI using perl what is advisable to use? Tcl or Tk or Tkx?
Add wxPerl to the list of the GUI toolkits and choose one (or more), based on the features that any of the libraries provides.
One can make a choice only after he learns at least at a basic level how to use them, and what are the differences between the widget capabilities. There are subtle, but important differences between the implementations, for example Tk::StatusBar labels can have color text and can be centered, but in wxPerl that's not yet implemented (at least in wxwidgets 2.8.11. This is not so important for the functionality of the application, but you got the point ...), on the other hand wxPerl has other advantages over PerlTk, including the fact that it is developed actively.
What I mean is that you can implement a MVC pattern, an use any of the toolkits to create the view part of the application, you even can experiment with more than one toolkit. I have a experimental project of a database application on GitHub that uses PerlTk and wxPerl for the View part of the implementation (https://github.com/stefansbv/Tpda3)
Regards, Stefan
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Applications of Perl\Tk
by Anonymous Monk on May 14, 2011 at 12:09 UTC |