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 61853 - Urgency hint
Urgency hint
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
2.0.x
Other All
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
: 99678 (view as bug list)
Depends on:
Blocks: 88060
 
 
Reported: 2001-10-06 19:13 UTC by Havoc Pennington
Modified: 2011-02-04 16:18 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Havoc Pennington 2001-10-06 19:13:04 UTC
The EWMH spec says we are supposed to use the urgency hint (info, warning) 
for dialogs. We can figure this hint out for GtkMessageDialog and set it.
Comment 1 Matthias Clasen 2002-11-27 08:17:06 UTC
*** Bug 99678 has been marked as a duplicate of this bug. ***
Comment 2 Olivier Crête 2002-11-27 15:43:18 UTC
Err the difference in the dupe is that we should be able to set it for
any window like any other hint... and it would be nice if it was not
"future"... Allowing it to be set by the programmer would not be much
work I think..
Comment 3 Olivier Crête 2004-05-31 14:59:10 UTC
This has been open for two years. I know that at least gaim and gnomeicu set the
hint by using the X api directly.. it would be nice if Gtk supported that.. 
Comment 4 Ross Burton 2005-01-14 16:33:33 UTC
As MS Windows supports a very similar feature (it causes the window title and
entry in the task bar to flash) I think this should be added to GTK+.

gtk_window_set_urgency(GtkWindow *window, gboolean urgent);

should do the job.
Comment 5 Ross Burton 2005-01-18 16:56:27 UTC
Today I discovered http://www.people.virginia.edu/~mse5q/blink/ has libwnck and
Metacity patches to use this.  If these are applied then we'd have the ability
to actually see the urgency hint in GNOME...
Comment 6 Robert McQueen 2005-05-31 16:30:24 UTC
Bug #120406 has the patch for Metacity support, bug #120439 has the (now merged)
patch for libwnck tasklist support. This would be a useful API to add now that
we're finally getting support for it in the other relevant components.
Comment 7 Matthias Clasen 2005-06-08 16:36:38 UTC
Ross, do you have a patch ?
Comment 8 Ross Burton 2005-06-08 16:44:09 UTC
Not too hand, but I'll try and make one shortly.
Comment 9 Matthias Clasen 2005-06-17 20:19:44 UTC
Too late, Ross

2005-06-17  Matthias Clasen  <mclasen@redhat.com>

	Support the ICCCM urgency hint.  (#61858, Havoc Pennington)
	
	* gtk/gtk.symbols: 
	* gtk/gtkwindow.[hc]: Add a GtkWindow::urgency-hint property
	with getter and setter.

	* gdk/gdk.symbols: 
	* gdk/gdkwindow.h: 
	* gdk/x11/gdkwindow-x11.c (gdk_window_set_urgency_hint): 
	Add a setter for the urgency hint.

	* gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store
	urgency hint here.

	* gdk/x11/gdkwindow-x11.c (update_wm_hints): Set the urgency
	hint in the WM_HINTS property when appropriate.