wxPerl

wxPerl
Developer(s) Mattia Barbon
Stable release
Wx-0.9928 / December 21, 2015 (2015-12-21)[1]
Development status Active
Written in C++ / Perl
Operating system Cross-platform
License GNU General Public License or Artistic License
Website www.wxperl.it

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

  1. "Wx - interface to the wxWidgets cross-platform GUI toolkit". metacpan.org. Retrieved 2016-01-04.


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.