
Wx::Perl::Dialog::Simple - a set of simple dialogs (a partial Zenity clone in wxPerl)

As a module:
use Wx::Perl::Dialog::Simple; my $name = entry(title => "What is your name?"); message(text => "How are you $name today?\n");
On the command line try
wxer --help

There are some common option for every dialog
title
window-icon NA
width NA
height NA

Dialogs
Display a text entry dialog
Generic dialog, with two buttons and a place for some control. It needs 4 parameters: 3 subroutines and a hash-ref
dialog(
sub { create_and_return_the_control },
sub { setup_data_in_the control },
sub { fetch_and_return_data_from_the_control },
{
title => "",
other arguments,
}
);


Copyright 2008 Gabor Szabo. http://www.szabgab.com/

This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.

There is no warranty whatsoever. If you lose data or your hair because of this program, that's your problem.

To Mattia Barbon for providing WxPerl.
The idea was taken from the Zenity project.