How to Beep with GTK ????

2001-07-12 Thread Flavio Alberto Lopes Soares
Hello, I need to emitt one beep when something in my program happens, I used printf("\a"); or printf("\n%c\n",7); but it only works if I call my program from prompt line and I don't want this. Theres a GTK command that emit sounds like a "Beep" ? Thanks for any help and excuse my ugly english

Re: How to Beep with GTK ????

2001-07-12 Thread Paul Davis
>Theres a GTK command that emit sounds like a "Beep" ? gdk_beep() its use is deprecated (by me, at least). you may, for example, have a deaf user. it is better to find other ways to signal the user. --p ___ gtk-list mailing list [EMAIL PROTECTED]

Re: How to Beep with GTK ????

2001-07-12 Thread Joe Pfeiffer
>Theres a GTK command that emit sounds like a "Beep" ? gdk_beep() its use is deprecated (by me, at least). you may, for example, have a deaf user. it is better to find other ways to signal the user. Or, for that matter, the user may have just turned off the beep... it st