wxPerl

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
wxPerl
Developer(s) Mattia Barbon
Stable release Wx-0.9928 / December 21, 2015; 8 years ago (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. Lua error in package.lua at line 80: module 'strict' not found.

External links


<templatestyles src="Asbox/styles.css"></templatestyles>