Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Rhose's scratchpad

by Rhose (Priest)
on Jun 01, 2004 at 15:35 UTC ( [id://358136]=scratchpad: print w/replies, xml ) Need Help??

For radiantmatrix

I saw your question about stopping the 'X' from closing a Tk window, so I pulled up one of my old apps and started playing. If I add the following line after creating the window ($gMainWindow), the text "Mooo!" will be printed each time the 'X' is pressed.

$gMainWindow->protocol("WM_DELETE_WINDOW", sub{print "Mooo!\n";});

By adding this code:

$gMainWindow->protocol("WM_DELETE_WINDOW", sub{print "Mooo!\n";sleep 5;$gMainWindow->destroy;});

The text "Mooo!" is printed, the program pauses 5 seconds, then the window closes. So... using this sub, present the user with a "Yes/No" message box... if they select yes, use a $gMainWindow->destroy, otherwise continue with the program.

Does this help?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-20 13:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found