NAME
SWT - Perl bindings for SWT
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;
DESCRIPTION
Warning: This package is marked EXPERIMENTAL and is a work in progress at the moment.
A Java-to-Perl rewrite of the popular IBM Eclipse Standard Widget Toolkit (SWT) cross-platform GUI library.
AUTHOR
Ahmad M. Zawawi, <ahmad.zawawi at gmail.com>
BUGS
Please report any bugs or feature requests to bug-swt at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SWT. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc SWT
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
LICENSE AND COPYRIGHT
Copyright 2011 Ahmad M. Zawawi <ahmad.zawawi@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.