in reply to Re^5: Applications of Perl\Tk
in thread Applications of Perl\Tk
Your overall point is a good one, but Tk::StatusBar is a poor example since it is a pure-perl widget, and wxStatusBar is the interface to the underlying systems native status bar
You can get color text in a wxStatusbar, see How do I destroy a control after its creation in wxPerl?
Or you can create the equivalent of Tk::StatusBar for wxPerl (and call it Wx::Perl::StatusBar ) by copying StatusBar.pm, and swapping Tk::Frame for Wx::Frame, Tk::ProgressBar for Wx::ProgressDialog, Tk::Label for Wx::StaticText, in about 10 minutes :)
|
|---|