Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Is there a really perlish user interface module, or something?

by ctilmes (Vicar)
on Aug 09, 2004 at 11:25 UTC ( [id://381195]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://381195]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (9)
As of 2024-04-25 11:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found