wxPerl
Developer(s) | Mattia Barbon |
---|---|
Stable release |
Wx-0.9928
/ December 21, 2015[1] |
Development status | Active |
Written in | C++ / Perl |
Operating system | Cross-platform |
License | GNU General Public License or Artistic License |
Website |
www |
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
This article is issued from Wikipedia - version of the 1/5/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.