http://www.perlmonks.org?node_id=381195


in reply to Is there a really perlish user interface module, or something?

I agree with the already expressed sentiments about Tk (I've used it a bit and found it useful).

Recently I've been using PerlQt.

The GUI builder (qt designer) is very easy to use and actually works pretty well with Perl.

Here's a program that demonstrates your popup message box:

#!/usr/local/bin/perl use warnings; use strict; use Qt; my $a = Qt::Application(); my $ret = Qt::MessageBox::information(undef, $0, 'Are you sure you want to quit?' +, 'Yes', 'No'); exit $ret;
  • Comment on Re: Is there a really perlish user interface module, or something?
  • Download Code