wxPerl
wxPerl is a Perl module by Mattia Barbon, allowing the creation of graphical user interface (GUI) from Perl programming language. It is built as an XS-wrapper for the WxWidgets (C++ GUI widget toolkit). Various applications developed with wxPerl include Padre, a Perl IDE and Openkore, E-book reader. Like Perl and wxWidgets, wxPerl is free software.
Example
This is a simple "Hello world" module.
use Wx;
my $app = Wx::SimpleApp->new;
my $frame = Wx::Frame->new( undef, -1, 'Hello, world!' );
$frame->Show;
$app->MainLoop;
References
- ^ "Wx - interface to the wxWidgets cross-platform GUI toolkit". metacpan.org. Retrieved 2016-01-04.
External links
- wxPerl's web site
- wxPerl on CPAN
- wxPerl User Wiki
- CitrusPerl, a Perl distribution that includes wxPerl