SWT is a Java-to-Perl rewrite of the popular IBM Eclipse Standard Widget Toolkit (SWT) cross-platform GUI library.
SYNOPSIS
use strict;
use warnings;
use SWT;
my $display = Display->new;
my $shell = Shell->new($display);
$shell->set_text('Hello, world!');
$shell->open();
# Set up the event loop
while (!$shell->is_disposed) {
# sleep if no more entries in event queue
$display->sleep if !$display->read_and_dispatch;
}
$display->dispose;
Product's homepage
Requirements:
· Perl
Limitations:
· This package is marked EXPERIMENTAL and is a work in progress at the moment.