After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 353455 - Add API to beep a specific window
Add API to beep a specific window
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Backend: X11
2.10.x
Other All
: Normal enhancement
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks: 167783 373760 373766
 
 
Reported: 2006-08-29 19:01 UTC by Mariano Suárez-Alvarez
Modified: 2011-02-04 16:11 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add gdk_window_beep. (5.12 KB, patch)
2006-08-29 19:02 UTC, Mariano Suárez-Alvarez
none Details | Review

Description Mariano Suárez-Alvarez 2006-08-29 19:01:00 UTC
Currently, GDK only has gdk_display_beep and gdk_beep, which make a display beep. Yet using XKB it is possible to beep a *window* so that, for example, the window manager can flash its decorations; metacity, for example, listens to XkbBellNotify when XKB is available on the server. See bug #167783 for a specific instance of this.

The following patch adds a gtk_window_beep, with implemented in X11 using XkbBell when we HAVE_XKB and using a plain ol' gdk_display_beep on the window's display otherwise; on non-X11 the patch just calls gdk_beep: I do not know how to make a window beep anywhere else ;-)

If this gets commited, then one should go through the few calls to gdk_beep and gdk_display_beep in the gtk source, and replace them by gdk_window_beep...

This has a11y consequences, I guess.
Comment 1 Mariano Suárez-Alvarez 2006-08-29 19:02:17 UTC
Created attachment 71853 [details] [review]
Add gdk_window_beep.
Comment 2 Matthias Clasen 2006-08-29 19:40:46 UTC
Sounds like a very reasonable addition to me.
Comment 3 Behdad Esfahbod 2006-08-29 22:41:38 UTC
Ah cool; and then metacity can be made to do theurgency effect on those windows.
Comment 4 Matthias Clasen 2006-08-30 03:31:08 UTC
2006-08-29  Matthias Clasen  <mclasen@redhat.com>

	* gdk/gdkwindow.h: 
	* gdk/gdk.symbols: 
	* gdk/directfb/gdkwindow-directfb.c (gdk_window_beep): 
	* gdk/win32/gdkwindow-win32.c (gdk_window_beep): 
	* gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): 
	* gdk/x11/gdkwindow-x11.c (gdk_window_beep): Add a function
	to beep on a window. For X11, implement this with
	XkbBell.  (#353455, Mariano Suárez-Alvarez)